From a12ba1bdd19aa3d001d8b1af353cd5af8aa0bd8d Mon Sep 17 00:00:00 2001 From: Jason Lernerman Date: Mon, 14 Sep 2026 15:44:19 -0400 Subject: [PATCH 01/14] agent_simulation: repeat scenarios within a run for pass@k / pass^k A run today holds exactly one job per scenario, so a single flaky attempt is indistinguishable from a broken scenario. `Create.Request.repeats` asks for k attempts of every scenario in one run; each Job carries the `scenario_id` and 1-based `attempt` it belongs to so jobs group back into scenarios. `RunMetrics.pass_at_k` (at least one attempt passed) and `pass_pow_k` (every attempt passed) summarize the run over scenarios. --- .changeset/simulation-repeats.md | 6 +++ livekit/livekit_agent_simulation.pb.go | 66 ++++++++++++++++++++---- protobufs/livekit_agent_simulation.proto | 11 ++++ 3 files changed, 72 insertions(+), 11 deletions(-) create mode 100644 .changeset/simulation-repeats.md diff --git a/.changeset/simulation-repeats.md b/.changeset/simulation-repeats.md new file mode 100644 index 000000000..c282b7657 --- /dev/null +++ b/.changeset/simulation-repeats.md @@ -0,0 +1,6 @@ +--- +"github.com/livekit/protocol": patch +"@livekit/protocol": patch +--- + +agent_simulation: repeat scenarios within a run for pass@k / pass^k diff --git a/livekit/livekit_agent_simulation.pb.go b/livekit/livekit_agent_simulation.pb.go index 16126d697..c8501b856 100644 --- a/livekit/livekit_agent_simulation.pb.go +++ b/livekit/livekit_agent_simulation.pb.go @@ -15,7 +15,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: // protoc-gen-go v1.36.12 -// protoc v7.35.1 +// protoc v5.28.2 // source: livekit_agent_simulation.proto package livekit @@ -322,7 +322,9 @@ type SimulationRun struct { // List responses carry it without the summary blob itself. IssueCount *int32 `protobuf:"varint,21,opt,name=issue_count,json=issueCount,proto3,oneof" json:"issue_count,omitempty"` // The pipeline this run came from; unset when it did not come from one. - Ci *SimulationRun_CI `protobuf:"bytes,22,opt,name=ci,proto3,oneof" json:"ci,omitempty"` + Ci *SimulationRun_CI `protobuf:"bytes,22,opt,name=ci,proto3,oneof" json:"ci,omitempty"` + // Attempts per scenario; 1 when not repeated. + Repeats int32 `protobuf:"varint,23,opt,name=repeats,proto3" json:"repeats,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } @@ -504,6 +506,13 @@ func (x *SimulationRun) GetCi() *SimulationRun_CI { return nil } +func (x *SimulationRun) GetRepeats() int32 { + if x != nil { + return x.Repeats + } + return 0 +} + // A single scenario, mirroring one entry in a scenarios.yaml file. Scenarios // are no longer stored server-side; the yaml file is the source of truth. type Scenario struct { @@ -803,7 +812,13 @@ type SimulationRun_Job struct { RoomId string `protobuf:"bytes,12,opt,name=room_id,json=roomId,proto3" json:"room_id,omitempty"` Usage *SimulationRun_Job_Usage `protobuf:"bytes,13,opt,name=usage,proto3" json:"usage,omitempty"` // Quality metrics for this job's call. Unset when the job produced none. - Metrics *SimulationRun_JobMetrics `protobuf:"bytes,14,opt,name=metrics,proto3" json:"metrics,omitempty"` + Metrics *SimulationRun_JobMetrics `protobuf:"bytes,14,opt,name=metrics,proto3" json:"metrics,omitempty"` + // The Scenario.id this job ran; empty for generated runs. Every attempt + // of one scenario shares it, so a run's jobs group back into scenarios. + ScenarioId string `protobuf:"bytes,15,opt,name=scenario_id,json=scenarioId,proto3" json:"scenario_id,omitempty"` + // 1-based attempt of that scenario within the run; always 1 when the run's + // repeats is 1. + Attempt int32 `protobuf:"varint,16,opt,name=attempt,proto3" json:"attempt,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } @@ -929,6 +944,20 @@ func (x *SimulationRun_Job) GetMetrics() *SimulationRun_JobMetrics { return nil } +func (x *SimulationRun_Job) GetScenarioId() string { + if x != nil { + return x.ScenarioId + } + return "" +} + +func (x *SimulationRun_Job) GetAttempt() int32 { + if x != nil { + return x.Attempt + } + return 0 +} + type SimulationRun_JobMetrics struct { state protoimpl.MessageState `protogen:"open.v1"` TaskCompletion *float32 `protobuf:"fixed32,3,opt,name=task_completion,json=taskCompletion,proto3,oneof" json:"task_completion,omitempty"` // the scenario verdict as 1/0 @@ -2288,8 +2317,11 @@ type SimulationRun_Create_Request struct { LowQualityMicrophone bool `protobuf:"varint,11,opt,name=low_quality_microphone,json=lowQualityMicrophone,proto3" json:"low_quality_microphone,omitempty"` PacketLoss bool `protobuf:"varint,12,opt,name=packet_loss,json=packetLoss,proto3" json:"packet_loss,omitempty"` Ci *SimulationRun_CI `protobuf:"bytes,13,opt,name=ci,proto3,oneof" json:"ci,omitempty"` - unknownFields protoimpl.UnknownFields - sizeCache protoimpl.SizeCache + // Attempts per scenario; 0/unset = 1. Requires scenario_group. The run + // holds scenarios × repeats jobs, subject to the usual job cap. + Repeats int32 `protobuf:"varint,14,opt,name=repeats,proto3" json:"repeats,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache } func (x *SimulationRun_Create_Request) Reset() { @@ -2399,6 +2431,13 @@ func (x *SimulationRun_Create_Request) GetCi() *SimulationRun_CI { return nil } +func (x *SimulationRun_Create_Request) GetRepeats() int32 { + if x != nil { + return x.Repeats + } + return 0 +} + type SimulationRun_Create_Response struct { state protoimpl.MessageState `protogen:"open.v1"` SimulationRunId string `protobuf:"bytes,1,opt,name=simulation_run_id,json=simulationRunId,proto3" json:"simulation_run_id,omitempty"` @@ -3241,7 +3280,7 @@ const file_livekit_agent_simulation_proto_rawDesc = "" + "\n" + "suggestion\x18\x02 \x01(\tR\n" + "suggestion\x12\x14\n" + - "\x05label\x18\x03 \x01(\tR\x05label\"\x85L\n" + + "\x05label\x18\x03 \x01(\tR\x05label\"\xf4L\n" + "\rSimulationRun\x12\x0e\n" + "\x02id\x18\x01 \x01(\tR\x02id\x12\x1d\n" + "\n" + @@ -3268,7 +3307,8 @@ const file_livekit_agent_simulation_proto_rawDesc = "" + "\fsummary_zstd\x18\x14 \x01(\fR\vsummaryZstd\x12$\n" + "\vissue_count\x18\x15 \x01(\x05H\x00R\n" + "issueCount\x88\x01\x01\x12.\n" + - "\x02ci\x18\x16 \x01(\v2\x19.livekit.SimulationRun.CIH\x01R\x02ci\x88\x01\x01\x1a\xd6\x05\n" + + "\x02ci\x18\x16 \x01(\v2\x19.livekit.SimulationRun.CIH\x01R\x02ci\x88\x01\x01\x12\x18\n" + + "\arepeats\x18\x17 \x01(\x05R\arepeats\x1a\x91\x06\n" + "\x03Job\x12\x0e\n" + "\x02id\x18\x01 \x01(\tR\x02id\x129\n" + "\x06status\x18\x02 \x01(\x0e2!.livekit.SimulationRun.Job.StatusR\x06status\x12\"\n" + @@ -3284,7 +3324,10 @@ const file_livekit_agent_simulation_proto_rawDesc = "" + "\bended_at\x18\v \x01(\v2\x1a.google.protobuf.TimestampR\aendedAt\x12\x17\n" + "\aroom_id\x18\f \x01(\tR\x06roomId\x126\n" + "\x05usage\x18\r \x01(\v2 .livekit.SimulationRun.Job.UsageR\x05usage\x12;\n" + - "\ametrics\x18\x0e \x01(\v2!.livekit.SimulationRun.JobMetricsR\ametrics\x1a]\n" + + "\ametrics\x18\x0e \x01(\v2!.livekit.SimulationRun.JobMetricsR\ametrics\x12\x1f\n" + + "\vscenario_id\x18\x0f \x01(\tR\n" + + "scenarioId\x12\x18\n" + + "\aattempt\x18\x10 \x01(\x05R\aattempt\x1a]\n" + "\x05Usage\x12(\n" + "\x10text_turns_count\x18\x01 \x01(\x05R\x0etextTurnsCount\x12*\n" + "\x11audio_turns_count\x18\x02 \x01(\x05R\x0faudioTurnsCount\"o\n" + @@ -3485,8 +3528,8 @@ const file_livekit_agent_simulation_proto_rawDesc = "" + "\x03ref\x18\x03 \x01(\tR\x03ref\x12!\n" + "\fpull_request\x18\x04 \x01(\tR\vpullRequest\x12\x17\n" + "\arun_url\x18\x05 \x01(\tR\x06runUrl\x12\x14\n" + - "\x05actor\x18\x06 \x01(\tR\x05actor\x1a\xae\x05\n" + - "\x06Create\x1a\x95\x04\n" + + "\x05actor\x18\x06 \x01(\tR\x05actor\x1a\xc8\x05\n" + + "\x06Create\x1a\xaf\x04\n" + "\aRequest\x12\x1d\n" + "\n" + "project_id\x18\x01 \x01(\tR\tprojectId\x12\x1d\n" + @@ -3502,7 +3545,8 @@ const file_livekit_agent_simulation_proto_rawDesc = "" + "\x16low_quality_microphone\x18\v \x01(\bR\x14lowQualityMicrophone\x12\x1f\n" + "\vpacket_loss\x18\f \x01(\bR\n" + "packetLoss\x12.\n" + - "\x02ci\x18\r \x01(\v2\x19.livekit.SimulationRun.CIH\x02R\x02ci\x88\x01\x01B\x11\n" + + "\x02ci\x18\r \x01(\v2\x19.livekit.SimulationRun.CIH\x02R\x02ci\x88\x01\x01\x12\x18\n" + + "\arepeats\x18\x0e \x01(\x05R\arepeatsB\x11\n" + "\x0f_scenario_groupB\x0e\n" + "\f_concurrencyB\x05\n" + "\x03_ciJ\x04\b\x03\x10\x04R\x11agent_description\x1a\x8b\x01\n" + diff --git a/protobufs/livekit_agent_simulation.proto b/protobufs/livekit_agent_simulation.proto index bd4574dbd..ae7800196 100644 --- a/protobufs/livekit_agent_simulation.proto +++ b/protobufs/livekit_agent_simulation.proto @@ -75,6 +75,12 @@ message SimulationRun { Usage usage = 13; // Quality metrics for this job's call. Unset when the job produced none. JobMetrics metrics = 14; + // The Scenario.id this job ran; empty for generated runs. Every attempt + // of one scenario shares it, so a run's jobs group back into scenarios. + string scenario_id = 15; + // 1-based attempt of that scenario within the run; always 1 when the run's + // repeats is 1. + int32 attempt = 16; message Usage { int32 text_turns_count = 1; @@ -254,6 +260,9 @@ message SimulationRun { bool low_quality_microphone = 11; bool packet_loss = 12; optional CI ci = 13; + // Attempts per scenario; 0/unset = 1. Requires scenario_group. The run + // holds scenarios × repeats jobs, subject to the usual job cap. + int32 repeats = 14; } message Response { string simulation_run_id = 1; @@ -375,6 +384,8 @@ message SimulationRun { optional int32 issue_count = 21; // The pipeline this run came from; unset when it did not come from one. optional CI ci = 22; + // Attempts per scenario; 1 when not repeated. + int32 repeats = 23; message Usage { int32 text_turns_count = 1; From 4935fc863770ec72f10a5cb3fea8dcdaed8800e1 Mon Sep 17 00:00:00 2001 From: Jason Lernerman Date: Tue, 15 Sep 2026 15:34:11 -0400 Subject: [PATCH 02/14] agent_simulation: rename repeats to samples --- livekit/livekit_agent_simulation.pb.go | 22 +++++++++++----------- protobufs/livekit_agent_simulation.proto | 10 +++++----- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/livekit/livekit_agent_simulation.pb.go b/livekit/livekit_agent_simulation.pb.go index c8501b856..d0763ce7c 100644 --- a/livekit/livekit_agent_simulation.pb.go +++ b/livekit/livekit_agent_simulation.pb.go @@ -323,8 +323,8 @@ type SimulationRun struct { IssueCount *int32 `protobuf:"varint,21,opt,name=issue_count,json=issueCount,proto3,oneof" json:"issue_count,omitempty"` // The pipeline this run came from; unset when it did not come from one. Ci *SimulationRun_CI `protobuf:"bytes,22,opt,name=ci,proto3,oneof" json:"ci,omitempty"` - // Attempts per scenario; 1 when not repeated. - Repeats int32 `protobuf:"varint,23,opt,name=repeats,proto3" json:"repeats,omitempty"` + // Samples per scenario; 1 when run once. + Samples int32 `protobuf:"varint,23,opt,name=samples,proto3" json:"samples,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } @@ -506,9 +506,9 @@ func (x *SimulationRun) GetCi() *SimulationRun_CI { return nil } -func (x *SimulationRun) GetRepeats() int32 { +func (x *SimulationRun) GetSamples() int32 { if x != nil { - return x.Repeats + return x.Samples } return 0 } @@ -817,7 +817,7 @@ type SimulationRun_Job struct { // of one scenario shares it, so a run's jobs group back into scenarios. ScenarioId string `protobuf:"bytes,15,opt,name=scenario_id,json=scenarioId,proto3" json:"scenario_id,omitempty"` // 1-based attempt of that scenario within the run; always 1 when the run's - // repeats is 1. + // samples is 1. Attempt int32 `protobuf:"varint,16,opt,name=attempt,proto3" json:"attempt,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache @@ -2318,8 +2318,8 @@ type SimulationRun_Create_Request struct { PacketLoss bool `protobuf:"varint,12,opt,name=packet_loss,json=packetLoss,proto3" json:"packet_loss,omitempty"` Ci *SimulationRun_CI `protobuf:"bytes,13,opt,name=ci,proto3,oneof" json:"ci,omitempty"` // Attempts per scenario; 0/unset = 1. Requires scenario_group. The run - // holds scenarios × repeats jobs, subject to the usual job cap. - Repeats int32 `protobuf:"varint,14,opt,name=repeats,proto3" json:"repeats,omitempty"` + // holds scenarios × samples jobs, subject to the usual job cap. + Samples int32 `protobuf:"varint,14,opt,name=samples,proto3" json:"samples,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } @@ -2431,9 +2431,9 @@ func (x *SimulationRun_Create_Request) GetCi() *SimulationRun_CI { return nil } -func (x *SimulationRun_Create_Request) GetRepeats() int32 { +func (x *SimulationRun_Create_Request) GetSamples() int32 { if x != nil { - return x.Repeats + return x.Samples } return 0 } @@ -3308,7 +3308,7 @@ const file_livekit_agent_simulation_proto_rawDesc = "" + "\vissue_count\x18\x15 \x01(\x05H\x00R\n" + "issueCount\x88\x01\x01\x12.\n" + "\x02ci\x18\x16 \x01(\v2\x19.livekit.SimulationRun.CIH\x01R\x02ci\x88\x01\x01\x12\x18\n" + - "\arepeats\x18\x17 \x01(\x05R\arepeats\x1a\x91\x06\n" + + "\asamples\x18\x17 \x01(\x05R\asamples\x1a\x91\x06\n" + "\x03Job\x12\x0e\n" + "\x02id\x18\x01 \x01(\tR\x02id\x129\n" + "\x06status\x18\x02 \x01(\x0e2!.livekit.SimulationRun.Job.StatusR\x06status\x12\"\n" + @@ -3546,7 +3546,7 @@ const file_livekit_agent_simulation_proto_rawDesc = "" + "\vpacket_loss\x18\f \x01(\bR\n" + "packetLoss\x12.\n" + "\x02ci\x18\r \x01(\v2\x19.livekit.SimulationRun.CIH\x02R\x02ci\x88\x01\x01\x12\x18\n" + - "\arepeats\x18\x0e \x01(\x05R\arepeatsB\x11\n" + + "\asamples\x18\x0e \x01(\x05R\asamplesB\x11\n" + "\x0f_scenario_groupB\x0e\n" + "\f_concurrencyB\x05\n" + "\x03_ciJ\x04\b\x03\x10\x04R\x11agent_description\x1a\x8b\x01\n" + diff --git a/protobufs/livekit_agent_simulation.proto b/protobufs/livekit_agent_simulation.proto index ae7800196..247364fd8 100644 --- a/protobufs/livekit_agent_simulation.proto +++ b/protobufs/livekit_agent_simulation.proto @@ -79,7 +79,7 @@ message SimulationRun { // of one scenario shares it, so a run's jobs group back into scenarios. string scenario_id = 15; // 1-based attempt of that scenario within the run; always 1 when the run's - // repeats is 1. + // samples is 1. int32 attempt = 16; message Usage { @@ -261,8 +261,8 @@ message SimulationRun { bool packet_loss = 12; optional CI ci = 13; // Attempts per scenario; 0/unset = 1. Requires scenario_group. The run - // holds scenarios × repeats jobs, subject to the usual job cap. - int32 repeats = 14; + // holds scenarios × samples jobs, subject to the usual job cap. + int32 samples = 14; } message Response { string simulation_run_id = 1; @@ -384,8 +384,8 @@ message SimulationRun { optional int32 issue_count = 21; // The pipeline this run came from; unset when it did not come from one. optional CI ci = 22; - // Attempts per scenario; 1 when not repeated. - int32 repeats = 23; + // Samples per scenario; 1 when run once. + int32 samples = 23; message Usage { int32 text_turns_count = 1; From 01c4ea01bf7f3313ec239b49b9f72a3ecc6d78f4 Mon Sep 17 00:00:00 2001 From: Jason Lernerman Date: Tue, 15 Sep 2026 15:34:15 -0400 Subject: [PATCH 03/14] agent_simulation: rename Job.attempt to sample --- livekit/livekit_agent_simulation.pb.go | 20 ++++++++++---------- protobufs/livekit_agent_simulation.proto | 8 ++++---- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/livekit/livekit_agent_simulation.pb.go b/livekit/livekit_agent_simulation.pb.go index d0763ce7c..90724eca1 100644 --- a/livekit/livekit_agent_simulation.pb.go +++ b/livekit/livekit_agent_simulation.pb.go @@ -813,12 +813,12 @@ type SimulationRun_Job struct { Usage *SimulationRun_Job_Usage `protobuf:"bytes,13,opt,name=usage,proto3" json:"usage,omitempty"` // Quality metrics for this job's call. Unset when the job produced none. Metrics *SimulationRun_JobMetrics `protobuf:"bytes,14,opt,name=metrics,proto3" json:"metrics,omitempty"` - // The Scenario.id this job ran; empty for generated runs. Every attempt + // The Scenario.id this job ran; empty for generated runs. Every sample // of one scenario shares it, so a run's jobs group back into scenarios. ScenarioId string `protobuf:"bytes,15,opt,name=scenario_id,json=scenarioId,proto3" json:"scenario_id,omitempty"` - // 1-based attempt of that scenario within the run; always 1 when the run's + // 1-based sample of that scenario within the run; always 1 when the run's // samples is 1. - Attempt int32 `protobuf:"varint,16,opt,name=attempt,proto3" json:"attempt,omitempty"` + Sample int32 `protobuf:"varint,16,opt,name=sample,proto3" json:"sample,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } @@ -951,9 +951,9 @@ func (x *SimulationRun_Job) GetScenarioId() string { return "" } -func (x *SimulationRun_Job) GetAttempt() int32 { +func (x *SimulationRun_Job) GetSample() int32 { if x != nil { - return x.Attempt + return x.Sample } return 0 } @@ -2317,7 +2317,7 @@ type SimulationRun_Create_Request struct { LowQualityMicrophone bool `protobuf:"varint,11,opt,name=low_quality_microphone,json=lowQualityMicrophone,proto3" json:"low_quality_microphone,omitempty"` PacketLoss bool `protobuf:"varint,12,opt,name=packet_loss,json=packetLoss,proto3" json:"packet_loss,omitempty"` Ci *SimulationRun_CI `protobuf:"bytes,13,opt,name=ci,proto3,oneof" json:"ci,omitempty"` - // Attempts per scenario; 0/unset = 1. Requires scenario_group. The run + // Samples per scenario; 0/unset = 1. Requires scenario_group. The run // holds scenarios × samples jobs, subject to the usual job cap. Samples int32 `protobuf:"varint,14,opt,name=samples,proto3" json:"samples,omitempty"` unknownFields protoimpl.UnknownFields @@ -3280,7 +3280,7 @@ const file_livekit_agent_simulation_proto_rawDesc = "" + "\n" + "suggestion\x18\x02 \x01(\tR\n" + "suggestion\x12\x14\n" + - "\x05label\x18\x03 \x01(\tR\x05label\"\xf4L\n" + + "\x05label\x18\x03 \x01(\tR\x05label\"\xf2L\n" + "\rSimulationRun\x12\x0e\n" + "\x02id\x18\x01 \x01(\tR\x02id\x12\x1d\n" + "\n" + @@ -3308,7 +3308,7 @@ const file_livekit_agent_simulation_proto_rawDesc = "" + "\vissue_count\x18\x15 \x01(\x05H\x00R\n" + "issueCount\x88\x01\x01\x12.\n" + "\x02ci\x18\x16 \x01(\v2\x19.livekit.SimulationRun.CIH\x01R\x02ci\x88\x01\x01\x12\x18\n" + - "\asamples\x18\x17 \x01(\x05R\asamples\x1a\x91\x06\n" + + "\asamples\x18\x17 \x01(\x05R\asamples\x1a\x8f\x06\n" + "\x03Job\x12\x0e\n" + "\x02id\x18\x01 \x01(\tR\x02id\x129\n" + "\x06status\x18\x02 \x01(\x0e2!.livekit.SimulationRun.Job.StatusR\x06status\x12\"\n" + @@ -3326,8 +3326,8 @@ const file_livekit_agent_simulation_proto_rawDesc = "" + "\x05usage\x18\r \x01(\v2 .livekit.SimulationRun.Job.UsageR\x05usage\x12;\n" + "\ametrics\x18\x0e \x01(\v2!.livekit.SimulationRun.JobMetricsR\ametrics\x12\x1f\n" + "\vscenario_id\x18\x0f \x01(\tR\n" + - "scenarioId\x12\x18\n" + - "\aattempt\x18\x10 \x01(\x05R\aattempt\x1a]\n" + + "scenarioId\x12\x16\n" + + "\x06sample\x18\x10 \x01(\x05R\x06sample\x1a]\n" + "\x05Usage\x12(\n" + "\x10text_turns_count\x18\x01 \x01(\x05R\x0etextTurnsCount\x12*\n" + "\x11audio_turns_count\x18\x02 \x01(\x05R\x0faudioTurnsCount\"o\n" + diff --git a/protobufs/livekit_agent_simulation.proto b/protobufs/livekit_agent_simulation.proto index 247364fd8..bc8c02e35 100644 --- a/protobufs/livekit_agent_simulation.proto +++ b/protobufs/livekit_agent_simulation.proto @@ -75,12 +75,12 @@ message SimulationRun { Usage usage = 13; // Quality metrics for this job's call. Unset when the job produced none. JobMetrics metrics = 14; - // The Scenario.id this job ran; empty for generated runs. Every attempt + // The Scenario.id this job ran; empty for generated runs. Every sample // of one scenario shares it, so a run's jobs group back into scenarios. string scenario_id = 15; - // 1-based attempt of that scenario within the run; always 1 when the run's + // 1-based sample of that scenario within the run; always 1 when the run's // samples is 1. - int32 attempt = 16; + int32 sample = 16; message Usage { int32 text_turns_count = 1; @@ -260,7 +260,7 @@ message SimulationRun { bool low_quality_microphone = 11; bool packet_loss = 12; optional CI ci = 13; - // Attempts per scenario; 0/unset = 1. Requires scenario_group. The run + // Samples per scenario; 0/unset = 1. Requires scenario_group. The run // holds scenarios × samples jobs, subject to the usual job cap. int32 samples = 14; } From 9e315e1c67fb538f3f55352c5a9a8d97ec98f2d9 Mon Sep 17 00:00:00 2001 From: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 15 Sep 2026 19:35:02 +0000 Subject: [PATCH 04/14] generated protobuf --- livekit/livekit_agent_simulation.pb.go | 2 +- livekit/livekit_agent_simulation.twirp.go | 498 +++++++++++----------- 2 files changed, 251 insertions(+), 249 deletions(-) diff --git a/livekit/livekit_agent_simulation.pb.go b/livekit/livekit_agent_simulation.pb.go index 90724eca1..ef86c3792 100644 --- a/livekit/livekit_agent_simulation.pb.go +++ b/livekit/livekit_agent_simulation.pb.go @@ -15,7 +15,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: // protoc-gen-go v1.36.12 -// protoc v5.28.2 +// protoc v7.35.1 // source: livekit_agent_simulation.proto package livekit diff --git a/livekit/livekit_agent_simulation.twirp.go b/livekit/livekit_agent_simulation.twirp.go index 696f9b142..8a982468c 100644 --- a/livekit/livekit_agent_simulation.twirp.go +++ b/livekit/livekit_agent_simulation.twirp.go @@ -2191,253 +2191,255 @@ func (s *agentSimulationServer) PathPrefix() string { } var twirpFileDescriptor10 = []byte{ - // 3957 bytes of a gzipped FileDescriptorProto + // 3995 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x5a, 0xcd, 0x6f, 0x1c, 0x47, - 0x76, 0xd7, 0x7c, 0xcf, 0xbc, 0xe1, 0x70, 0x86, 0xc5, 0x0f, 0x8d, 0xda, 0x5f, 0xb2, 0x6c, 0xef, - 0x6a, 0x2d, 0x2f, 0xa5, 0x70, 0xad, 0x75, 0x28, 0xaf, 0x37, 0xe1, 0x90, 0xb4, 0x86, 0x0a, 0x49, - 0xd1, 0x35, 0x43, 0x24, 0xeb, 0x60, 0xd1, 0x68, 0x76, 0x97, 0x86, 0x2d, 0xf5, 0x74, 0x8d, 0xbb, - 0xaa, 0x25, 0x71, 0x81, 0x1c, 0x02, 0x6c, 0x00, 0x03, 0x39, 0x25, 0x40, 0xee, 0x0b, 0x04, 0x41, - 0x90, 0x3d, 0xe4, 0x12, 0xe4, 0x98, 0x4b, 0x80, 0x9c, 0x83, 0x20, 0x40, 0xfe, 0x88, 0xdc, 0x73, - 0x0f, 0xea, 0x55, 0x75, 0x4f, 0xcf, 0x17, 0x49, 0x2d, 0x6c, 0x20, 0x87, 0xdc, 0xba, 0xde, 0x7b, - 0x55, 0xf5, 0xfa, 0xd5, 0xfb, 0xbd, 0x7a, 0x55, 0xaf, 0xe0, 0xdd, 0xc0, 0x7f, 0xc9, 0x5e, 0xf8, - 0xd2, 0x76, 0x06, 0x2c, 0x94, 0xb6, 0xf0, 0x87, 0x71, 0xe0, 0x48, 0x9f, 0x87, 0x9b, 0xa3, 0x88, - 0x4b, 0x4e, 0x2a, 0x86, 0x6f, 0xbd, 0x8f, 0x02, 0xf7, 0xa7, 0xc4, 0x99, 0x10, 0xa9, 0xac, 0xf5, - 0xee, 0x80, 0xf3, 0x41, 0xc0, 0xee, 0x63, 0xeb, 0x2c, 0x7e, 0x76, 0xdf, 0x8b, 0xa3, 0xcc, 0x58, - 0xd6, 0x7b, 0xd3, 0x7c, 0xe9, 0x0f, 0x99, 0x90, 0xce, 0x70, 0x64, 0x04, 0x6e, 0x25, 0xa3, 0xbb, - 0x01, 0x8f, 0x3d, 0x3d, 0x87, 0x61, 0xad, 0x25, 0xac, 0x21, 0xf7, 0x58, 0x20, 0x34, 0xf5, 0xce, - 0x7f, 0x14, 0x60, 0xad, 0x97, 0xaa, 0x4c, 0xe3, 0xb0, 0x17, 0x0f, 0x87, 0x4e, 0x74, 0x41, 0x36, - 0xa0, 0x3c, 0x72, 0x84, 0x60, 0x5e, 0x3b, 0x77, 0x3b, 0x77, 0xb7, 0x44, 0x4d, 0x4b, 0xd1, 0x9f, - 0x39, 0x7e, 0xc0, 0xbc, 0x76, 0x5e, 0xd3, 0x75, 0x8b, 0xbc, 0x03, 0x30, 0xe0, 0x7e, 0x38, 0xb0, - 0x5f, 0xb1, 0x20, 0x68, 0x17, 0x6e, 0xe7, 0xee, 0xd6, 0x68, 0x0d, 0x29, 0x7f, 0xcc, 0x82, 0x40, - 0xb1, 0x25, 0xb7, 0xfd, 0xe1, 0x28, 0xe2, 0x2f, 0x59, 0xbb, 0xa8, 0xd9, 0x92, 0x1f, 0x68, 0x02, - 0xf9, 0x1c, 0xca, 0xbe, 0x10, 0x31, 0x13, 0xed, 0xd2, 0xed, 0xc2, 0xdd, 0xfa, 0xd6, 0x07, 0x9b, - 0x46, 0xdb, 0xcd, 0x79, 0xca, 0x6d, 0x1e, 0x28, 0x59, 0x6a, 0xba, 0x90, 0xaf, 0x60, 0xc9, 0x3d, - 0x77, 0xa4, 0x7d, 0xee, 0x0b, 0xc9, 0xa3, 0x8b, 0x76, 0x19, 0x87, 0xd8, 0xbc, 0x7c, 0x88, 0xdd, - 0x73, 0x47, 0x76, 0x75, 0x87, 0xfd, 0x50, 0x46, 0x17, 0xb4, 0xee, 0x8e, 0x29, 0xd6, 0xd7, 0xd0, - 0x9a, 0x16, 0x20, 0x2d, 0x28, 0xbc, 0x60, 0x17, 0x68, 0x8e, 0x1a, 0x55, 0x9f, 0xe4, 0x01, 0x94, - 0x5e, 0x3a, 0x41, 0xcc, 0xd0, 0x14, 0xf5, 0x2d, 0x2b, 0x9d, 0x51, 0xdb, 0x5d, 0x8d, 0xb0, 0xcb, - 0x43, 0xc9, 0x5e, 0x4b, 0xaa, 0x05, 0x1f, 0xe5, 0x7f, 0x3f, 0x67, 0xd9, 0x50, 0x42, 0xfd, 0xc9, - 0x6d, 0xa8, 0x7b, 0x4c, 0xb8, 0x91, 0x3f, 0x52, 0xba, 0x99, 0x81, 0xb3, 0x24, 0xf2, 0x2e, 0x80, - 0x88, 0x07, 0x03, 0x26, 0x50, 0x20, 0x8f, 0x02, 0x19, 0x0a, 0x59, 0x83, 0x52, 0xe0, 0x9c, 0xb1, - 0xc4, 0xde, 0xba, 0x71, 0xe7, 0x2f, 0x0e, 0xa1, 0x31, 0xf1, 0xcf, 0x64, 0x19, 0xf2, 0xbe, 0x67, - 0x26, 0xc8, 0xfb, 0xb8, 0x58, 0xa3, 0x88, 0x3f, 0x67, 0xae, 0xb4, 0x7d, 0xcf, 0x8c, 0x5b, 0x33, - 0x94, 0x03, 0x8f, 0x3c, 0x84, 0xb2, 0x90, 0x8e, 0x8c, 0x05, 0x8e, 0xbb, 0xbc, 0xf5, 0xce, 0x7c, - 0x53, 0x6e, 0xf6, 0x50, 0x88, 0x1a, 0x61, 0x72, 0x0f, 0x56, 0xb4, 0x53, 0x67, 0xff, 0x4a, 0x2f, - 0x75, 0x0b, 0x19, 0x7b, 0x99, 0x5f, 0x5b, 0x83, 0x12, 0x8b, 0x22, 0x1e, 0xb5, 0x4b, 0x5a, 0x75, - 0x6c, 0x90, 0x6d, 0x00, 0x37, 0x62, 0x8e, 0x64, 0x9e, 0xed, 0xc8, 0x76, 0xd9, 0x98, 0x55, 0x7b, - 0xfd, 0x66, 0xe2, 0xf5, 0x9b, 0xfd, 0xc4, 0xeb, 0x69, 0xcd, 0x48, 0xef, 0x48, 0xb2, 0x09, 0xc5, - 0xe7, 0xfc, 0x4c, 0xb4, 0x2b, 0xb8, 0xfa, 0xd6, 0x02, 0x95, 0x9f, 0xf0, 0x33, 0x8a, 0x72, 0xca, - 0x06, 0x5a, 0xdb, 0xd0, 0x19, 0xb2, 0x76, 0x4d, 0xdb, 0x00, 0x29, 0xc7, 0xce, 0x90, 0x91, 0x2f, - 0x60, 0x59, 0xb8, 0x2c, 0x74, 0x22, 0x9f, 0xdb, 0x83, 0x88, 0xc7, 0xa3, 0x36, 0xa0, 0x36, 0x1b, - 0xe3, 0x81, 0x0d, 0xfb, 0xb1, 0xe2, 0xd2, 0x86, 0xc8, 0x36, 0xc9, 0x43, 0xa8, 0xb2, 0xd0, 0xd3, - 0xbf, 0x51, 0xbf, 0xf2, 0x37, 0x2a, 0x28, 0xbb, 0x23, 0xc9, 0x5b, 0x50, 0x7b, 0xce, 0xcf, 0x6c, - 0x97, 0xc7, 0xa1, 0x6c, 0x2f, 0x21, 0xc0, 0xaa, 0xcf, 0xf9, 0xd9, 0xae, 0x6a, 0x93, 0xf7, 0x61, - 0x49, 0x83, 0xd0, 0xf0, 0x1b, 0xc8, 0xaf, 0x6b, 0x5a, 0x2a, 0xa2, 0xf1, 0x68, 0x44, 0x96, 0xb5, - 0x88, 0xa6, 0x69, 0x91, 0x1f, 0x42, 0x33, 0x8c, 0x87, 0x99, 0x38, 0x25, 0xda, 0x4d, 0x94, 0x5a, - 0x0e, 0xe3, 0xe1, 0xd8, 0x58, 0x82, 0x6c, 0x41, 0x29, 0x16, 0xce, 0x80, 0xb5, 0x5b, 0xa8, 0xff, - 0xdb, 0x0b, 0x2c, 0x7a, 0xaa, 0x64, 0xa8, 0x16, 0x55, 0x2e, 0xed, 0xf2, 0xd0, 0x8d, 0xa3, 0x88, - 0x85, 0xee, 0x45, 0x7b, 0x45, 0x4f, 0x9f, 0x21, 0x91, 0x7b, 0x50, 0x54, 0x01, 0xa8, 0x4d, 0xd0, - 0xb3, 0x6e, 0xce, 0x19, 0xf4, 0x88, 0x7b, 0x8c, 0xa2, 0x10, 0xf9, 0x1c, 0x2a, 0x43, 0x26, 0x23, - 0xdf, 0x15, 0xed, 0x55, 0x54, 0xe2, 0xfd, 0x05, 0x4a, 0xd0, 0x38, 0x3c, 0xd2, 0x82, 0x34, 0xe9, - 0xa1, 0x6c, 0x21, 0x34, 0xd8, 0xed, 0x5f, 0x09, 0xe9, 0xb5, 0xd7, 0x6e, 0xe7, 0xee, 0x2e, 0xd1, - 0xba, 0xa1, 0x7d, 0x2d, 0xa4, 0x47, 0x3e, 0x84, 0x3a, 0xc6, 0x10, 0x63, 0xad, 0x75, 0xa5, 0x6e, - 0xf7, 0x06, 0x05, 0x24, 0xa2, 0xb9, 0xbe, 0xcd, 0xe5, 0xc8, 0x26, 0xe4, 0x5d, 0xbf, 0xbd, 0x81, - 0x0a, 0xdc, 0x5a, 0xa0, 0xc0, 0xee, 0x41, 0x37, 0x47, 0xf3, 0xae, 0xff, 0x6d, 0x2e, 0x67, 0xfd, - 0x57, 0x09, 0x0a, 0x4f, 0xf8, 0xd9, 0x0c, 0xea, 0xb6, 0x53, 0x58, 0xe5, 0xf1, 0xe7, 0xdf, 0x5f, - 0xec, 0xa3, 0xd3, 0xd0, 0xba, 0x03, 0x4b, 0x7e, 0x28, 0x64, 0x14, 0xbb, 0x7a, 0xc5, 0x34, 0xde, - 0x27, 0x68, 0x63, 0x44, 0x15, 0xb3, 0x88, 0xfa, 0x31, 0x10, 0xed, 0xe6, 0xec, 0xf5, 0x88, 0xb9, - 0xd2, 0xac, 0xb8, 0x06, 0x9d, 0x86, 0xeb, 0x7e, 0x86, 0x31, 0x8e, 0x28, 0xe5, 0x4c, 0x44, 0x21, - 0x04, 0x8a, 0xd2, 0x19, 0x68, 0x6c, 0xd5, 0x28, 0x7e, 0x2b, 0x57, 0x8d, 0x38, 0x1f, 0x6a, 0xf8, - 0x54, 0x51, 0xba, 0xaa, 0x08, 0x88, 0x9e, 0x6d, 0x00, 0x21, 0x9d, 0xc8, 0xe0, 0x18, 0xae, 0xc6, - 0xb1, 0x91, 0xde, 0x91, 0xbf, 0x2b, 0x72, 0x6e, 0x42, 0x05, 0xd5, 0xf1, 0x3d, 0xc4, 0x4d, 0x8d, - 0x96, 0x55, 0xf3, 0xc0, 0x23, 0x3f, 0x4d, 0xdc, 0xb8, 0x81, 0x83, 0xdd, 0xbe, 0xc4, 0xe8, 0x13, - 0xae, 0x9c, 0xf1, 0xbd, 0xe5, 0x4b, 0x7d, 0xef, 0x09, 0x3f, 0x9b, 0xf6, 0x3d, 0xeb, 0x97, 0x50, - 0xc2, 0xc1, 0xc8, 0x5d, 0x68, 0xa9, 0xf8, 0x6f, 0xcb, 0x38, 0x0a, 0x85, 0x71, 0x33, 0xbd, 0xa1, - 0x2e, 0x2b, 0x7a, 0x5f, 0x91, 0x35, 0x2e, 0x3f, 0x86, 0x15, 0x27, 0xf6, 0x7c, 0x3e, 0x21, 0xaa, - 0xf7, 0xd8, 0x26, 0x32, 0xc6, 0xb2, 0x77, 0x38, 0x94, 0xb5, 0x83, 0x10, 0x02, 0xcb, 0xbd, 0xfe, - 0x4e, 0xff, 0xb4, 0x67, 0x9f, 0xec, 0x1f, 0xef, 0x1d, 0x1c, 0x3f, 0x6e, 0xdd, 0xc8, 0xd0, 0xe8, - 0xe9, 0xf1, 0xb1, 0xa2, 0xe5, 0xc8, 0x1a, 0xb4, 0x0c, 0x6d, 0xf7, 0xe9, 0xd1, 0xc9, 0xe1, 0x7e, - 0x7f, 0x7f, 0xaf, 0x95, 0x27, 0x2b, 0xd0, 0x30, 0xd4, 0x2f, 0x77, 0x0e, 0x0e, 0xf7, 0xf7, 0x5a, - 0x85, 0xac, 0xe0, 0xce, 0xf1, 0xee, 0xfe, 0xa1, 0xa2, 0x16, 0x9f, 0x14, 0xab, 0xb5, 0x16, 0x58, - 0x7f, 0xff, 0x11, 0xc0, 0xf8, 0x6f, 0xc9, 0x27, 0xd0, 0x94, 0x8e, 0x78, 0x61, 0xbb, 0x7c, 0x38, - 0x0a, 0x18, 0x46, 0x7b, 0xe5, 0x97, 0xf9, 0xee, 0x0d, 0xba, 0xac, 0x18, 0xbb, 0x29, 0x5d, 0xa1, - 0xe8, 0x2e, 0x34, 0xf8, 0x4b, 0x16, 0x39, 0x41, 0x60, 0x0b, 0x97, 0x47, 0x0c, 0xf1, 0x98, 0xef, - 0xe6, 0xe8, 0x92, 0x21, 0xf7, 0x14, 0x55, 0x49, 0x7e, 0x06, 0x05, 0x21, 0x25, 0xba, 0x71, 0x7d, - 0xeb, 0xa3, 0x2b, 0xad, 0xbe, 0xd9, 0xeb, 0xf7, 0xa9, 0xea, 0xa1, 0x3a, 0x06, 0xc1, 0x10, 0x9d, - 0xfb, 0x5a, 0x1d, 0x0f, 0x0f, 0x8f, 0xa8, 0xea, 0xa1, 0x3a, 0x4a, 0x29, 0xcc, 0x7e, 0x73, 0x8d, - 0x8e, 0xfd, 0x7e, 0x8f, 0xaa, 0x1e, 0x84, 0xc2, 0x92, 0xcb, 0xc3, 0x97, 0x2c, 0x12, 0x28, 0xd6, - 0xae, 0xe0, 0x08, 0x9b, 0x57, 0x8f, 0xb0, 0x9b, 0xe9, 0x45, 0x27, 0xc6, 0x20, 0x3f, 0x83, 0x12, - 0xba, 0x40, 0xbb, 0x86, 0x3b, 0xd9, 0x0f, 0xae, 0xa1, 0x4e, 0x1c, 0x85, 0x54, 0x77, 0x22, 0xef, - 0x41, 0xfd, 0x79, 0xec, 0x0d, 0x98, 0x4e, 0xf3, 0x10, 0x7a, 0x35, 0x0a, 0x48, 0x52, 0x81, 0x35, - 0x20, 0x9f, 0x00, 0x39, 0x77, 0x84, 0x1d, 0xb1, 0x21, 0x97, 0x2c, 0xc9, 0x3f, 0x11, 0x33, 0x55, - 0xda, 0x3a, 0x77, 0x04, 0x45, 0x46, 0x4f, 0xd3, 0xc9, 0xc7, 0x90, 0x97, 0x0f, 0x0c, 0x74, 0x2e, - 0xc3, 0x61, 0x5e, 0x3e, 0x20, 0x1f, 0xe9, 0xe0, 0xef, 0x0b, 0x16, 0x32, 0xa1, 0x51, 0x93, 0xef, - 0xe6, 0x69, 0x96, 0xa8, 0x96, 0x77, 0x1b, 0x36, 0xe2, 0x30, 0x64, 0x2e, 0x13, 0x42, 0xc5, 0x66, - 0xc9, 0x79, 0x60, 0xbb, 0x4e, 0x10, 0xe8, 0x7d, 0xa8, 0xda, 0x2d, 0xd0, 0xb5, 0x0c, 0xbf, 0xcf, - 0x79, 0xb0, 0xab, 0xb8, 0x3a, 0x12, 0xb7, 0xfc, 0xf0, 0x19, 0x8f, 0x86, 0x68, 0x05, 0x3b, 0xe0, - 0x42, 0xe0, 0xee, 0x54, 0xed, 0x16, 0x69, 0x33, 0xc3, 0x39, 0xe4, 0x7a, 0xaa, 0x9f, 0xc2, 0x5a, - 0xc4, 0xbc, 0x38, 0xf4, 0x1c, 0x95, 0x6a, 0x4b, 0x47, 0xb2, 0x21, 0x0b, 0xa5, 0xc0, 0x7d, 0xa9, - 0xda, 0x2d, 0xd1, 0xd5, 0x94, 0xdb, 0x4b, 0x99, 0xda, 0x03, 0xd7, 0x47, 0x9c, 0x47, 0xf6, 0x37, - 0xb1, 0x4e, 0xb4, 0xec, 0x6f, 0x62, 0x27, 0xf0, 0xe5, 0x05, 0xee, 0x5a, 0xd5, 0x6e, 0x99, 0xae, - 0x2a, 0xf6, 0x57, 0x86, 0xfb, 0x95, 0x66, 0xaa, 0x8e, 0x3f, 0x87, 0x76, 0x76, 0x2d, 0xed, 0x51, - 0xc4, 0x07, 0x91, 0x31, 0xf1, 0x2a, 0xda, 0xa3, 0x42, 0x6f, 0x66, 0x25, 0x4e, 0xc6, 0x02, 0x6a, - 0xeb, 0xf8, 0xeb, 0x32, 0x14, 0x7a, 0xfd, 0x3e, 0x59, 0x87, 0xc2, 0x2b, 0x16, 0x61, 0xa4, 0x50, - 0x70, 0x52, 0x0d, 0x35, 0xfc, 0x2d, 0x28, 0xbd, 0xe2, 0x91, 0xa7, 0x37, 0x90, 0x46, 0x37, 0x47, - 0x75, 0x53, 0xb1, 0x3e, 0x84, 0xba, 0xfa, 0xb6, 0x31, 0xea, 0xeb, 0x0d, 0xa2, 0xd1, 0xcd, 0x53, - 0x50, 0xc4, 0x7d, 0xa4, 0x29, 0xa9, 0x75, 0x28, 0xb8, 0x4c, 0xef, 0x10, 0xf9, 0x6e, 0x81, 0xaa, - 0x86, 0x19, 0xd7, 0x3d, 0x77, 0x22, 0x81, 0x69, 0x50, 0xa3, 0x5b, 0xa4, 0xba, 0x69, 0xc6, 0x55, - 0xdf, 0xc9, 0xb8, 0x80, 0x02, 0x25, 0x0a, 0x8a, 0x38, 0x1e, 0xf7, 0x23, 0x58, 0x12, 0x52, 0x25, - 0x7e, 0x81, 0x73, 0x61, 0x0f, 0x05, 0xee, 0x07, 0x8d, 0x6e, 0x99, 0x82, 0x90, 0x72, 0x4f, 0x11, - 0x8f, 0x50, 0x6c, 0x0b, 0x08, 0x0b, 0xa5, 0x2f, 0x2f, 0xec, 0x88, 0xb9, 0x7c, 0x10, 0xfa, 0x08, - 0x9a, 0xba, 0x31, 0xcc, 0x8a, 0xe6, 0xd1, 0x31, 0xcb, 0xac, 0x39, 0xd2, 0x7d, 0x26, 0xec, 0x58, - 0x4a, 0x16, 0x31, 0x1d, 0xe1, 0x1b, 0xdd, 0x2a, 0x6d, 0x26, 0x9c, 0x53, 0xcd, 0x50, 0xf2, 0x9f, - 0xc2, 0x6a, 0x2a, 0x6f, 0x66, 0xf9, 0x15, 0xf3, 0xd0, 0x85, 0x1b, 0xdd, 0x1a, 0x25, 0x09, 0x93, - 0xa6, 0x3c, 0x13, 0x9d, 0xc6, 0x9a, 0x39, 0x41, 0x60, 0xbc, 0x17, 0xe8, 0x52, 0xaa, 0x94, 0x13, - 0x04, 0x4a, 0xf2, 0x0f, 0xe0, 0x56, 0x3a, 0xbe, 0xe3, 0x7e, 0x13, 0xfb, 0x11, 0xf3, 0x52, 0xc5, - 0x9a, 0x38, 0x4b, 0x9d, 0xde, 0x4c, 0x44, 0x76, 0x8c, 0x44, 0x46, 0xc1, 0x7d, 0x78, 0x7b, 0x76, - 0x80, 0x8c, 0xa6, 0x2d, 0x1c, 0x63, 0x89, 0x5a, 0xd3, 0x63, 0x4c, 0x68, 0xdc, 0x29, 0x43, 0xd1, - 0x7e, 0xc5, 0xa2, 0x4e, 0x15, 0xca, 0x36, 0x7a, 0x41, 0x67, 0x19, 0x96, 0xec, 0x8c, 0x0f, 0xa0, - 0x84, 0x6b, 0x24, 0x70, 0x3d, 0x51, 0x22, 0xb3, 0x9a, 0x9d, 0x26, 0x34, 0xec, 0xec, 0xba, 0x75, - 0xd6, 0x61, 0xd5, 0x9e, 0x5d, 0xa1, 0xce, 0x2a, 0xac, 0xd8, 0xd3, 0x8b, 0xd0, 0xd9, 0x80, 0x35, - 0x7b, 0x8e, 0xa5, 0x3b, 0x2d, 0x58, 0xb6, 0x27, 0x6c, 0xd9, 0x79, 0x1b, 0x2c, 0x7b, 0xa1, 0xcd, - 0x3a, 0xef, 0xc1, 0x3b, 0xf6, 0x65, 0x06, 0xb1, 0x7e, 0x93, 0x83, 0xc2, 0xe1, 0xe1, 0x11, 0x79, - 0x1b, 0x2a, 0x52, 0x3e, 0x93, 0xca, 0xbf, 0x72, 0x68, 0xa3, 0x1b, 0xb4, 0xac, 0x08, 0xda, 0xb7, - 0x34, 0x57, 0x28, 0x6e, 0x82, 0x0e, 0xc5, 0x15, 0x9a, 0x7b, 0x1f, 0x56, 0x24, 0x7f, 0xc1, 0x42, - 0x61, 0x8f, 0x58, 0x64, 0x0b, 0xe6, 0xf2, 0xd0, 0x33, 0xbb, 0x55, 0x9e, 0x36, 0x35, 0xeb, 0x84, - 0x45, 0x3d, 0x64, 0x28, 0xf3, 0x02, 0x54, 0x6d, 0x33, 0x5b, 0xf2, 0xad, 0xc6, 0xee, 0xac, 0x01, - 0xb1, 0x67, 0x46, 0xb2, 0x7e, 0x5d, 0x86, 0x42, 0xbf, 0xdf, 0x33, 0x4a, 0x9c, 0x8d, 0x95, 0xd0, - 0x2a, 0x9e, 0x1d, 0x25, 0xe8, 0x53, 0xa8, 0x2e, 0x98, 0x8d, 0x6f, 0x06, 0xd5, 0x15, 0x03, 0xda, - 0x85, 0xa8, 0xd6, 0xb0, 0x2a, 0x2c, 0x40, 0x75, 0x0d, 0xc7, 0x2d, 0xce, 0xa2, 0x3a, 0x01, 0xed, - 0x42, 0x54, 0xd7, 0x13, 0xb8, 0x4e, 0xa2, 0x7a, 0x3e, 0x5c, 0x97, 0xdf, 0x18, 0xae, 0xcd, 0x37, - 0x87, 0x6b, 0xeb, 0x0d, 0xe1, 0xba, 0xf2, 0x3b, 0xc1, 0x95, 0x7c, 0x07, 0x70, 0x5d, 0xbd, 0x1e, - 0x5c, 0x8d, 0x0f, 0x29, 0xd7, 0xf8, 0x4e, 0xa0, 0xfb, 0x7f, 0x12, 0xa9, 0xff, 0x53, 0x81, 0xa5, - 0x6c, 0x66, 0x83, 0xb0, 0x8b, 0xa3, 0xd0, 0x96, 0xce, 0x0b, 0x3f, 0x1c, 0x98, 0xc4, 0x2f, 0xd9, - 0xd5, 0x9a, 0x8a, 0xd5, 0x47, 0x4e, 0x9a, 0xfb, 0x7d, 0x0e, 0xed, 0x73, 0xe6, 0x28, 0x43, 0x6c, - 0x31, 0x3b, 0x70, 0xa4, 0x3a, 0x33, 0xda, 0xa3, 0x87, 0x0f, 0x12, 0x44, 0x95, 0xba, 0x39, 0xba, - 0x86, 0x12, 0xfb, 0x5b, 0xec, 0x50, 0xf3, 0x4f, 0x1e, 0x3e, 0xd0, 0xf8, 0x9a, 0xdf, 0x79, 0xfb, - 0xa1, 0xea, 0x5c, 0xc0, 0xce, 0xf9, 0xd9, 0xce, 0xdb, 0x0f, 0x2f, 0xed, 0xbc, 0xad, 0x3a, 0x17, - 0xb1, 0x73, 0x61, 0x4e, 0xe7, 0x6d, 0xdd, 0xf9, 0x13, 0x68, 0x49, 0x7f, 0xc8, 0x6c, 0xc9, 0xed, - 0x0b, 0x9f, 0x05, 0x9e, 0xea, 0x54, 0x32, 0x7b, 0x69, 0x43, 0x71, 0xfa, 0xfc, 0x17, 0x8a, 0x9e, - 0x4c, 0x75, 0x93, 0x71, 0x69, 0x0f, 0x7d, 0x31, 0x8a, 0x98, 0xe7, 0xe3, 0xf9, 0xcd, 0x24, 0xfc, - 0x65, 0x03, 0xd5, 0x75, 0xc6, 0xe5, 0x51, 0x96, 0x9f, 0x9e, 0x46, 0x4d, 0x1e, 0x1d, 0x38, 0x23, - 0x1b, 0xef, 0x06, 0x31, 0x6a, 0xe4, 0xbb, 0x65, 0x9d, 0x47, 0x07, 0xce, 0x88, 0x2a, 0xaa, 0x89, - 0x79, 0x89, 0xa4, 0x18, 0x31, 0xe6, 0x9e, 0x8f, 0x77, 0xe6, 0x0a, 0x6d, 0x1a, 0x56, 0x0f, 0x39, - 0x5a, 0xaf, 0x7b, 0xd0, 0x94, 0x5c, 0x3a, 0x41, 0x46, 0xbc, 0x66, 0xa0, 0xdb, 0x40, 0x46, 0x56, - 0xf8, 0x33, 0x58, 0x77, 0x5e, 0xbd, 0x78, 0xa5, 0x2c, 0x26, 0xfc, 0x80, 0x85, 0x6e, 0x72, 0x8a, - 0xae, 0x1b, 0xe8, 0xae, 0x1a, 0x76, 0x4f, 0x73, 0x33, 0xc7, 0xe9, 0x56, 0x1c, 0x3a, 0xa1, 0x78, - 0xa5, 0x7c, 0x4a, 0x9f, 0x76, 0xcc, 0x86, 0x0e, 0xb4, 0x39, 0xe6, 0xe0, 0x71, 0x47, 0xc9, 0x7f, - 0x01, 0xed, 0x67, 0x4e, 0x20, 0x98, 0xed, 0x87, 0x92, 0x45, 0x51, 0x3c, 0xca, 0x98, 0xab, 0x61, - 0x00, 0xbc, 0x81, 0x12, 0x07, 0x19, 0x81, 0x74, 0xba, 0x1f, 0xc1, 0x72, 0x76, 0x45, 0x87, 0xc2, - 0x84, 0xa3, 0x25, 0xba, 0xc4, 0xd2, 0x85, 0xc4, 0x5f, 0xd2, 0xb1, 0x7d, 0xda, 0x5d, 0x3b, 0x6f, - 0xc1, 0x2d, 0x7b, 0x91, 0x4f, 0x2e, 0x62, 0xa2, 0xcf, 0x2d, 0x64, 0x2a, 0x9f, 0x42, 0xa4, 0x4e, - 0xfb, 0x4c, 0xc7, 0x82, 0xb6, 0xbd, 0xc0, 0x35, 0x10, 0xad, 0x13, 0x2b, 0x8f, 0xfa, 0xce, 0xac, - 0x70, 0x87, 0x40, 0xcb, 0x9e, 0x5a, 0xc6, 0x4e, 0x1b, 0x36, 0xec, 0xb9, 0xab, 0x85, 0x6a, 0x4c, - 0x2f, 0x07, 0x2a, 0xbe, 0xc8, 0xe6, 0x9d, 0x15, 0x68, 0xda, 0x93, 0x16, 0xb5, 0x7e, 0x5b, 0x81, - 0xa2, 0x5a, 0x2f, 0xb2, 0x06, 0x25, 0x3f, 0xf4, 0xd8, 0x6b, 0xbd, 0x41, 0x53, 0xdd, 0x20, 0xf7, - 0xa0, 0x18, 0xf1, 0x80, 0x99, 0x6b, 0x8f, 0x9b, 0x73, 0xae, 0x49, 0x29, 0x0f, 0x18, 0x45, 0x21, - 0xf2, 0x2e, 0x54, 0xf1, 0x32, 0x20, 0x01, 0xad, 0xda, 0x43, 0x2b, 0x48, 0xd1, 0x7e, 0x67, 0x41, - 0x99, 0x85, 0x5e, 0x82, 0x4a, 0x4c, 0x82, 0x59, 0x68, 0x80, 0x35, 0x9d, 0x86, 0x96, 0x92, 0x2c, - 0x78, 0x32, 0x0d, 0xfd, 0x00, 0xea, 0x41, 0x30, 0x4c, 0xb6, 0x77, 0x83, 0xb9, 0x02, 0xad, 0x05, - 0xc1, 0xb0, 0x9f, 0xe6, 0x13, 0x63, 0x21, 0xcc, 0x29, 0x2a, 0x06, 0xcd, 0x46, 0x48, 0xa4, 0x49, - 0x07, 0x0a, 0x8d, 0x34, 0xb0, 0xf2, 0xdd, 0x12, 0x2d, 0x2b, 0x81, 0x51, 0x32, 0x84, 0x94, 0x22, - 0x09, 0xfb, 0x06, 0x4b, 0x65, 0x5a, 0x93, 0x52, 0xf4, 0xd3, 0xa4, 0x60, 0xd6, 0x3f, 0xc1, 0x40, - 0x74, 0xda, 0x3f, 0xc9, 0xa7, 0xb0, 0x36, 0xeb, 0x4e, 0x43, 0xbd, 0x7d, 0x97, 0xba, 0x55, 0xba, - 0x32, 0x15, 0x9e, 0x16, 0xc7, 0xa6, 0x25, 0x83, 0xd1, 0xd9, 0xd8, 0x34, 0x37, 0x62, 0x37, 0xcc, - 0xee, 0x3a, 0x2f, 0x62, 0xcf, 0x3d, 0xf5, 0xd5, 0x67, 0x4e, 0x7d, 0x0f, 0x60, 0x65, 0xc6, 0xb1, - 0xcd, 0x81, 0x6f, 0x89, 0xb6, 0xa6, 0xa3, 0x9d, 0xd6, 0xbb, 0x39, 0xe5, 0xb2, 0xe6, 0xac, 0xd7, - 0xa0, 0xcb, 0x93, 0xa1, 0x45, 0xdb, 0x1a, 0xc6, 0x6e, 0x6c, 0x0e, 0x78, 0xcb, 0x34, 0x43, 0x53, - 0x00, 0xaf, 0x43, 0xcd, 0x4e, 0x9c, 0xab, 0x53, 0x83, 0x8a, 0xad, 0x3d, 0x69, 0x36, 0x0f, 0x56, - 0xbb, 0x6d, 0xc6, 0x45, 0xb2, 0x6d, 0x91, 0x64, 0x84, 0x66, 0xe1, 0x91, 0x97, 0x59, 0xe6, 0x39, - 0xf8, 0xe8, 0xdc, 0x84, 0x75, 0x7b, 0xde, 0xca, 0xcd, 0x0f, 0x02, 0xf3, 0xc3, 0x10, 0x26, 0x00, - 0x63, 0x9b, 0xa2, 0xd4, 0x8c, 0x45, 0x11, 0xfc, 0x53, 0x56, 0xeb, 0x34, 0xa0, 0x9e, 0x81, 0xb8, - 0x8e, 0x0f, 0x93, 0xf7, 0x36, 0x69, 0x6c, 0x49, 0x6f, 0x67, 0x66, 0xa6, 0xbb, 0x05, 0x37, 0xed, - 0xf9, 0xc7, 0x76, 0xfc, 0x89, 0xe9, 0x63, 0x39, 0xfe, 0xf2, 0xbc, 0xb3, 0x37, 0x86, 0xa2, 0xb9, - 0x87, 0x6b, 0x8c, 0x3a, 0x8b, 0x4e, 0xcf, 0x4f, 0x8a, 0xd5, 0x5c, 0x2b, 0xff, 0xa4, 0x58, 0xcd, - 0xb7, 0x0a, 0x74, 0xd9, 0x71, 0xdd, 0x38, 0x72, 0xdc, 0x0b, 0xad, 0x2b, 0x6d, 0xb1, 0xd7, 0x23, - 0x16, 0xf9, 0x18, 0xd5, 0x90, 0x62, 0xfd, 0x67, 0x11, 0x60, 0x7c, 0x27, 0x4c, 0x7e, 0x0f, 0x48, - 0x7a, 0x99, 0x3f, 0x72, 0x84, 0x50, 0xf1, 0x93, 0xa5, 0x97, 0x55, 0xad, 0x84, 0x77, 0xe2, 0x08, - 0x41, 0x1d, 0xc9, 0xe6, 0x5e, 0x57, 0xc1, 0xff, 0x5f, 0x57, 0xcd, 0xbd, 0xae, 0x9a, 0xc2, 0x7f, - 0x75, 0xc1, 0xad, 0xcf, 0x65, 0x37, 0x23, 0x35, 0x73, 0x1d, 0x71, 0xc9, 0xcd, 0x08, 0xe6, 0xbb, - 0xb3, 0x6b, 0x78, 0x0d, 0xc7, 0xfd, 0x0e, 0xbd, 0xea, 0x6f, 0x73, 0x90, 0xdf, 0x3d, 0x20, 0x16, - 0x54, 0x47, 0x11, 0x7f, 0xe9, 0x7b, 0xe6, 0x86, 0xa6, 0x46, 0xd3, 0x36, 0x79, 0x07, 0xc0, 0xe5, - 0xc3, 0xa1, 0x2f, 0x6d, 0x71, 0xee, 0x24, 0x95, 0x35, 0x4d, 0xe9, 0x9d, 0x3b, 0xa4, 0x05, 0x85, - 0x88, 0x3d, 0x33, 0xd7, 0xf7, 0xea, 0x13, 0x8b, 0x3a, 0x71, 0x10, 0xd8, 0x11, 0x43, 0x3c, 0x98, - 0xcb, 0xfb, 0xba, 0xa2, 0x51, 0x4d, 0xc2, 0xab, 0xed, 0x38, 0xb4, 0xe3, 0x28, 0x30, 0xf7, 0xf6, - 0xe5, 0x28, 0x0e, 0x4f, 0xa3, 0x40, 0xed, 0xb6, 0x8e, 0x2b, 0x79, 0x94, 0x5c, 0xd6, 0x63, 0xc3, - 0xfa, 0xc7, 0x12, 0x94, 0x77, 0xb1, 0x2c, 0x66, 0xfd, 0x4d, 0x11, 0x2a, 0xc9, 0x28, 0x93, 0x35, - 0xbf, 0xdc, 0x74, 0xcd, 0x6f, 0xb2, 0x1c, 0x96, 0x9f, 0x2e, 0x87, 0xcd, 0xa9, 0x1a, 0x15, 0xe7, - 0x56, 0x8d, 0x36, 0xa0, 0x1c, 0xb1, 0x81, 0x5a, 0xd5, 0xb2, 0xd1, 0x15, 0x5b, 0xa4, 0x33, 0x53, - 0x4f, 0xab, 0x5c, 0x56, 0x4f, 0xeb, 0xde, 0x98, 0xaa, 0xa8, 0x65, 0xb6, 0x9a, 0xa4, 0xba, 0x54, - 0x35, 0xe7, 0x81, 0x2c, 0x51, 0xa7, 0xb1, 0xba, 0xc4, 0x54, 0xbb, 0x4e, 0x89, 0xe9, 0x47, 0xd0, - 0x3a, 0x73, 0xdc, 0x17, 0x4a, 0xa5, 0xd0, 0xb3, 0x43, 0xee, 0x0b, 0x0d, 0xf5, 0x2a, 0x6d, 0x8e, - 0xe9, 0xc7, 0x8a, 0x4c, 0x3e, 0x85, 0x8d, 0x80, 0xbf, 0x4a, 0xc2, 0x95, 0x3d, 0xf4, 0xdd, 0x88, - 0x8f, 0xce, 0x79, 0xc8, 0x70, 0x03, 0xae, 0xd2, 0xb5, 0x80, 0xbf, 0x32, 0x77, 0x81, 0x47, 0x29, - 0x8f, 0xbc, 0x07, 0xf5, 0x91, 0xe3, 0xbe, 0x60, 0x52, 0x5f, 0x57, 0xea, 0x8b, 0x56, 0xd0, 0xa4, - 0x43, 0x2e, 0x84, 0x29, 0x2f, 0x35, 0xae, 0x2a, 0x2f, 0xe5, 0x4d, 0x79, 0x09, 0xf7, 0x97, 0x49, - 0x53, 0xa6, 0x3e, 0x6f, 0x8c, 0xd0, 0x29, 0x41, 0xc1, 0x76, 0xfd, 0x27, 0xc5, 0x6a, 0xa1, 0x55, - 0xa4, 0xb3, 0x45, 0x59, 0xeb, 0x2f, 0x73, 0x50, 0xa5, 0x4c, 0x8c, 0x78, 0x28, 0x18, 0xf9, 0x18, - 0x56, 0xc6, 0xcb, 0x6a, 0x2b, 0x4f, 0x4b, 0xfd, 0xa3, 0x29, 0xb2, 0x5a, 0x1c, 0x78, 0xa4, 0x07, - 0x1b, 0xa3, 0x88, 0x09, 0x7f, 0x10, 0x32, 0xcf, 0x1e, 0x71, 0x21, 0x53, 0xbf, 0xd5, 0x25, 0xf0, - 0x71, 0xa5, 0xf8, 0x24, 0x11, 0x3b, 0xe1, 0x42, 0x1a, 0x1f, 0xa4, 0x6b, 0xa3, 0x39, 0x54, 0xeb, - 0x37, 0x39, 0x58, 0xdd, 0xe5, 0xe1, 0x33, 0x3f, 0x1a, 0xf6, 0x78, 0x1c, 0xb9, 0xec, 0x74, 0x14, - 0x70, 0xc7, 0xb3, 0xfe, 0xec, 0xda, 0xce, 0x3b, 0xf7, 0x17, 0xf2, 0xf3, 0x7f, 0xe1, 0x87, 0xd0, - 0x74, 0xb9, 0xc7, 0xd4, 0x41, 0x36, 0xba, 0x18, 0x71, 0x3f, 0x94, 0x06, 0x8e, 0xcb, 0x8a, 0xbc, - 0x9f, 0x52, 0x2d, 0x18, 0xdb, 0xc8, 0xfa, 0xab, 0x1c, 0x14, 0x1e, 0x33, 0x69, 0xf5, 0xbf, 0x0f, - 0x95, 0xac, 0x4f, 0x33, 0xab, 0x71, 0x17, 0x0a, 0x51, 0xac, 0x1f, 0x03, 0x4c, 0x80, 0x23, 0xdb, - 0x85, 0x2a, 0x11, 0xeb, 0xdf, 0x8a, 0x50, 0x3c, 0xf4, 0x85, 0xb4, 0xfe, 0xb5, 0x70, 0x6d, 0xad, - 0x1e, 0x4d, 0x95, 0x20, 0x2f, 0xaf, 0xec, 0x77, 0x6f, 0x24, 0x05, 0x48, 0x05, 0xab, 0x9f, 0x01, - 0x8c, 0x9c, 0x01, 0xd3, 0xb7, 0x5f, 0x68, 0xb3, 0xfa, 0x56, 0x3b, 0xed, 0xdf, 0x57, 0xd4, 0x13, - 0x67, 0xe0, 0x87, 0x38, 0x48, 0x37, 0x47, 0x6b, 0x4a, 0x1a, 0xc9, 0x3a, 0xfe, 0xeb, 0x8a, 0x20, - 0xa6, 0x3b, 0x66, 0xb3, 0xbc, 0xa4, 0xa0, 0xd0, 0xcd, 0x9b, 0x9a, 0xa0, 0xa2, 0xa8, 0xfe, 0x8f, - 0xb0, 0x2c, 0xa8, 0x7b, 0x97, 0xae, 0xec, 0x5d, 0xc0, 0xc2, 0x60, 0xd2, 0xf7, 0xce, 0x44, 0x6c, - 0xc3, 0xb8, 0xa4, 0x32, 0xf9, 0x34, 0xba, 0xe9, 0xfc, 0x54, 0x07, 0x8d, 0xca, 0xa5, 0x41, 0xa3, - 0x5b, 0xd2, 0x61, 0x43, 0xe1, 0x50, 0xe5, 0x8f, 0xda, 0x3a, 0x98, 0x61, 0x8d, 0x6d, 0x83, 0xcd, - 0xf1, 0xcf, 0x62, 0xd6, 0x99, 0xe8, 0x8e, 0xbc, 0xb1, 0x32, 0x9d, 0x0a, 0x94, 0xb0, 0x52, 0x63, - 0xbd, 0x9e, 0x40, 0x64, 0x31, 0x8a, 0x43, 0xd1, 0xce, 0x61, 0x01, 0x68, 0x91, 0x13, 0xa0, 0x0c, - 0xf9, 0x43, 0x68, 0x86, 0xec, 0xb5, 0xcc, 0x4c, 0x6f, 0xa0, 0xb8, 0x70, 0x69, 0x68, 0x43, 0x75, - 0x38, 0x49, 0x16, 0xc7, 0xfa, 0x97, 0x22, 0x94, 0xf1, 0xb4, 0x2c, 0xac, 0x7f, 0xcf, 0x5f, 0xdb, - 0x93, 0xb6, 0x27, 0xd6, 0x33, 0x7f, 0xcd, 0x0a, 0xaf, 0x6a, 0x9b, 0x0a, 0xaf, 0xee, 0x58, 0xb8, - 0x56, 0x85, 0x17, 0xbb, 0x8d, 0x7d, 0xb7, 0xf8, 0xc6, 0xbe, 0x3b, 0xe9, 0x01, 0xb8, 0x8b, 0x2a, - 0x0f, 0x9d, 0xeb, 0x01, 0xe5, 0xcb, 0x3d, 0x20, 0xbf, 0xd0, 0x03, 0xe6, 0x2d, 0xeb, 0x9f, 0x67, - 0x23, 0xed, 0xcf, 0xa1, 0x72, 0x16, 0xab, 0xb8, 0x9f, 0x2c, 0xed, 0x87, 0x8b, 0xc2, 0x3d, 0x2e, - 0xc7, 0x66, 0x07, 0x85, 0x69, 0xd2, 0x49, 0x19, 0x0e, 0xcf, 0xe3, 0x2f, 0x9d, 0xc0, 0x58, 0xfc, - 0xd6, 0x8c, 0xe1, 0xf6, 0xcc, 0x8b, 0x31, 0x9a, 0x8a, 0x5a, 0xbf, 0x84, 0xb2, 0x1e, 0x89, 0x7c, - 0x01, 0x4b, 0x7a, 0x2c, 0xed, 0x9e, 0x26, 0xca, 0x5c, 0x66, 0xfd, 0xba, 0x96, 0xef, 0x29, 0x71, - 0x95, 0x6f, 0x8c, 0xcb, 0xd2, 0x45, 0xaa, 0x1b, 0xd6, 0x73, 0x28, 0xef, 0x3a, 0xa1, 0xcb, 0x82, - 0xef, 0x29, 0x3a, 0x66, 0xe3, 0xf0, 0xf7, 0x5c, 0x57, 0xff, 0xbb, 0x5c, 0x5a, 0x58, 0xbf, 0x05, - 0xeb, 0x93, 0x85, 0x75, 0xfb, 0xf4, 0xe4, 0xf0, 0xe9, 0xce, 0x5e, 0xeb, 0x06, 0x59, 0x87, 0x15, - 0xc3, 0x7a, 0xbc, 0x7f, 0xbc, 0x4f, 0x77, 0xfa, 0xba, 0xc4, 0x3e, 0x5b, 0x76, 0xcf, 0x93, 0x0d, - 0x20, 0x86, 0xd6, 0x3b, 0x3d, 0x3a, 0xda, 0xa1, 0x07, 0x5f, 0x2b, 0x7a, 0x61, 0x6e, 0x39, 0xbe, - 0x38, 0x5b, 0x8e, 0x2f, 0xcd, 0x2d, 0xc7, 0x97, 0x71, 0xbf, 0xcf, 0x3c, 0x5c, 0x19, 0xef, 0xf7, - 0xd5, 0x56, 0x8d, 0x56, 0xcc, 0x0b, 0x97, 0x3b, 0xff, 0x5c, 0x80, 0x6a, 0x92, 0x54, 0x8d, 0x1f, - 0x76, 0xe4, 0xb2, 0x0f, 0x3b, 0xa6, 0xdf, 0x95, 0xe4, 0xe7, 0xbc, 0x2b, 0x99, 0xff, 0x82, 0xa4, - 0xb0, 0xe8, 0x05, 0xc9, 0x7d, 0xf3, 0x56, 0xa4, 0x88, 0x1e, 0xfe, 0xd6, 0x4c, 0x7a, 0xb7, 0xd9, - 0x77, 0x06, 0x42, 0x3f, 0xb9, 0xd3, 0x0f, 0x49, 0x2c, 0xa8, 0xc6, 0x82, 0x45, 0x9e, 0x23, 0x1d, - 0x93, 0xdf, 0xa6, 0x6d, 0xf3, 0x84, 0xa6, 0x9c, 0x3c, 0xa1, 0xb1, 0xfe, 0x21, 0x07, 0x2b, 0x3a, - 0xb7, 0xfd, 0x32, 0xe2, 0x43, 0x53, 0xa4, 0xb6, 0x7e, 0x71, 0x6d, 0xbf, 0xcb, 0xbc, 0x12, 0xc9, - 0x4f, 0xbc, 0x12, 0x19, 0xa7, 0xad, 0x85, 0x6c, 0xda, 0x6a, 0x6d, 0x67, 0xe0, 0xfb, 0x63, 0xa8, - 0x26, 0x79, 0x97, 0x41, 0xce, 0xca, 0xcc, 0xdf, 0xd1, 0x54, 0xc4, 0xfa, 0x0c, 0x6a, 0xe9, 0xaf, - 0xce, 0x79, 0x3c, 0xb8, 0x96, 0x7d, 0x3c, 0x58, 0xcb, 0x3c, 0x10, 0xbc, 0xe3, 0x41, 0x63, 0x22, - 0x17, 0x26, 0x04, 0x8a, 0x18, 0xb7, 0x74, 0x6f, 0xfc, 0x26, 0xf7, 0xa1, 0x96, 0xcc, 0xa4, 0x96, - 0xad, 0x30, 0x5f, 0x9b, 0xb1, 0x8c, 0x31, 0x65, 0x21, 0x31, 0xe5, 0x9d, 0x7f, 0xca, 0x01, 0x19, - 0x47, 0x9d, 0x3d, 0x5f, 0x8c, 0x1c, 0xe9, 0x9e, 0xbf, 0x51, 0x36, 0xb8, 0x0e, 0xe5, 0xe7, 0xfc, - 0x6c, 0x6c, 0xcc, 0xd2, 0x73, 0x7e, 0x76, 0xe0, 0x4d, 0xd8, 0xa9, 0x70, 0xa5, 0x9d, 0xd2, 0x74, - 0xbd, 0x78, 0x8d, 0x74, 0xfd, 0xe3, 0x67, 0xb0, 0x3c, 0x49, 0x27, 0xef, 0xc1, 0x5b, 0xbd, 0x83, - 0xa3, 0xd3, 0xc3, 0x9d, 0xfe, 0xc1, 0xd3, 0x63, 0xfb, 0xe8, 0xe9, 0xde, 0xbe, 0x7d, 0x7a, 0xdc, - 0x3b, 0xd9, 0xdf, 0x3d, 0xf8, 0xf2, 0x60, 0x5f, 0xc1, 0xb5, 0x0d, 0x6b, 0xd3, 0x02, 0xfd, 0xfd, - 0x3f, 0xe9, 0xb7, 0x72, 0x88, 0xf1, 0x29, 0xce, 0xce, 0xe9, 0xde, 0xc1, 0xd3, 0x56, 0x7e, 0xeb, - 0xd7, 0x65, 0x68, 0xee, 0x28, 0xdf, 0x1e, 0xcf, 0x46, 0x3c, 0x58, 0xd5, 0xbe, 0x37, 0xf9, 0xb8, - 0x72, 0xd1, 0x01, 0x5c, 0xcb, 0x6e, 0x26, 0x59, 0xee, 0x0f, 0xae, 0x12, 0x33, 0x5e, 0xf6, 0x6d, - 0x0e, 0xde, 0x49, 0xb2, 0xe1, 0x54, 0x30, 0x9b, 0x17, 0x93, 0xad, 0x85, 0xbb, 0xc6, 0x4c, 0x0e, - 0x9d, 0xce, 0xfe, 0x93, 0x37, 0xea, 0x63, 0x54, 0xf9, 0x53, 0x68, 0x3d, 0x66, 0x72, 0xf2, 0x6f, - 0xef, 0x2c, 0x18, 0xe8, 0x31, 0x93, 0xe9, 0x64, 0x1f, 0x5c, 0x2a, 0x63, 0x06, 0xb7, 0x81, 0xa8, - 0xec, 0x75, 0x42, 0x42, 0x90, 0x45, 0x5d, 0x95, 0x68, 0x3a, 0xfe, 0x87, 0x97, 0x0b, 0x99, 0x09, - 0xd4, 0x72, 0xa9, 0xe8, 0x38, 0x35, 0xc3, 0x47, 0x97, 0xef, 0xb9, 0x57, 0x2e, 0x57, 0x22, 0x96, - 0x99, 0x05, 0x77, 0xbf, 0x6b, 0x3a, 0x05, 0xca, 0x5e, 0x3d, 0x4b, 0x22, 0x66, 0x66, 0x79, 0x09, - 0xb7, 0x8c, 0xeb, 0x19, 0xd4, 0x64, 0xc2, 0x1f, 0xb9, 0x37, 0x1b, 0x63, 0x67, 0x62, 0x64, 0x3a, - 0xe3, 0x27, 0xd7, 0x13, 0xd6, 0xf3, 0x76, 0xbe, 0xfc, 0xfa, 0x83, 0x81, 0x2f, 0xcf, 0xe3, 0xb3, - 0x4d, 0x97, 0x0f, 0x93, 0xa7, 0xeb, 0xfa, 0xf9, 0xb9, 0xcb, 0x83, 0x84, 0xf0, 0xdb, 0x7c, 0xe3, - 0xd0, 0x7f, 0xc9, 0xfe, 0x08, 0x8f, 0x7d, 0x5c, 0xf2, 0xff, 0xce, 0x2f, 0x9b, 0xf6, 0xa3, 0x47, - 0x48, 0x38, 0x2b, 0x63, 0x97, 0x9f, 0xfc, 0x6f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x70, 0xcb, 0x59, - 0xde, 0x2d, 0x2f, 0x00, 0x00, + 0x76, 0xd7, 0x7c, 0xcf, 0xbc, 0xe1, 0x7c, 0xb0, 0xf8, 0xa1, 0x51, 0xfb, 0x4b, 0x96, 0xed, 0x5d, + 0xad, 0xed, 0xa5, 0x14, 0xae, 0xb5, 0x8e, 0xec, 0xf5, 0x26, 0x1c, 0x92, 0xd6, 0x50, 0x21, 0x29, + 0xba, 0x66, 0x88, 0x64, 0x1d, 0x2c, 0x1a, 0xcd, 0xee, 0xd2, 0xb0, 0xa5, 0x9e, 0xae, 0x71, 0x57, + 0xb5, 0x24, 0x2e, 0x90, 0x43, 0x80, 0x3d, 0x18, 0xc8, 0x21, 0x48, 0xfe, 0x82, 0x05, 0x82, 0x20, + 0xc8, 0x5e, 0x72, 0x08, 0x72, 0xcc, 0x25, 0x40, 0x80, 0xdc, 0x82, 0x20, 0xff, 0x45, 0x8e, 0x01, + 0x72, 0x0f, 0xea, 0x55, 0x75, 0x4f, 0xcf, 0x17, 0x49, 0x2d, 0x6c, 0x20, 0x87, 0xdc, 0xba, 0xde, + 0x7b, 0xf5, 0xd1, 0xaf, 0xde, 0xef, 0xbd, 0x57, 0xf5, 0x0a, 0xde, 0x0e, 0xfc, 0x17, 0xec, 0xb9, + 0x2f, 0x6d, 0x67, 0xc8, 0x42, 0x69, 0x0b, 0x7f, 0x14, 0x07, 0x8e, 0xf4, 0x79, 0xb8, 0x35, 0x8e, + 0xb8, 0xe4, 0xa4, 0x62, 0xf8, 0xd6, 0xbb, 0x28, 0x70, 0x6f, 0x46, 0x9c, 0x09, 0x91, 0xca, 0x5a, + 0x6f, 0x0f, 0x39, 0x1f, 0x06, 0xec, 0x1e, 0xb6, 0xce, 0xe2, 0xa7, 0xf7, 0xbc, 0x38, 0xca, 0x8c, + 0x65, 0xbd, 0x33, 0xcb, 0x97, 0xfe, 0x88, 0x09, 0xe9, 0x8c, 0xc6, 0x46, 0xe0, 0x56, 0x32, 0xba, + 0x1b, 0xf0, 0xd8, 0xd3, 0x73, 0x18, 0xd6, 0x7a, 0xc2, 0x1a, 0x71, 0x8f, 0x05, 0x42, 0x53, 0xef, + 0xfc, 0x47, 0x01, 0xd6, 0xfb, 0xe9, 0x92, 0x69, 0x1c, 0xf6, 0xe3, 0xd1, 0xc8, 0x89, 0x2e, 0xc8, + 0x26, 0x94, 0xc7, 0x8e, 0x10, 0xcc, 0xeb, 0xe4, 0x6e, 0xe7, 0xee, 0x96, 0xa8, 0x69, 0x29, 0xfa, + 0x53, 0xc7, 0x0f, 0x98, 0xd7, 0xc9, 0x6b, 0xba, 0x6e, 0x91, 0xb7, 0x00, 0x86, 0xdc, 0x0f, 0x87, + 0xf6, 0x4b, 0x16, 0x04, 0x9d, 0xc2, 0xed, 0xdc, 0xdd, 0x1a, 0xad, 0x21, 0xe5, 0x8f, 0x59, 0x10, + 0x28, 0xb6, 0xe4, 0xb6, 0x3f, 0x1a, 0x47, 0xfc, 0x05, 0xeb, 0x14, 0x35, 0x5b, 0xf2, 0x03, 0x4d, + 0x20, 0x9f, 0x43, 0xd9, 0x17, 0x22, 0x66, 0xa2, 0x53, 0xba, 0x5d, 0xb8, 0x5b, 0xdf, 0x7e, 0x6f, + 0xcb, 0xac, 0x76, 0x6b, 0xd1, 0xe2, 0xb6, 0x0e, 0x94, 0x2c, 0x35, 0x5d, 0xc8, 0x57, 0xb0, 0xe2, + 0x9e, 0x3b, 0xd2, 0x3e, 0xf7, 0x85, 0xe4, 0xd1, 0x45, 0xa7, 0x8c, 0x43, 0x6c, 0x5d, 0x3e, 0xc4, + 0xee, 0xb9, 0x23, 0x7b, 0xba, 0xc3, 0x7e, 0x28, 0xa3, 0x0b, 0x5a, 0x77, 0x27, 0x14, 0xeb, 0x6b, + 0x68, 0xcf, 0x0a, 0x90, 0x36, 0x14, 0x9e, 0xb3, 0x0b, 0x54, 0x47, 0x8d, 0xaa, 0x4f, 0x72, 0x1f, + 0x4a, 0x2f, 0x9c, 0x20, 0x66, 0xa8, 0x8a, 0xfa, 0xb6, 0x95, 0xce, 0xa8, 0xf5, 0xae, 0x46, 0xd8, + 0xe5, 0xa1, 0x64, 0xaf, 0x24, 0xd5, 0x82, 0x9f, 0xe5, 0x7f, 0x3f, 0x67, 0xd9, 0x50, 0xc2, 0xf5, + 0x93, 0xdb, 0x50, 0xf7, 0x98, 0x70, 0x23, 0x7f, 0xac, 0xd6, 0x66, 0x06, 0xce, 0x92, 0xc8, 0xdb, + 0x00, 0x22, 0x1e, 0x0e, 0x99, 0x40, 0x81, 0x3c, 0x0a, 0x64, 0x28, 0x64, 0x1d, 0x4a, 0x81, 0x73, + 0xc6, 0x12, 0x7d, 0xeb, 0xc6, 0x9d, 0xff, 0x3e, 0x84, 0xc6, 0xd4, 0x3f, 0x93, 0x26, 0xe4, 0x7d, + 0xcf, 0x4c, 0x90, 0xf7, 0x71, 0xb3, 0xc6, 0x11, 0x7f, 0xc6, 0x5c, 0x69, 0xfb, 0x9e, 0x19, 0xb7, + 0x66, 0x28, 0x07, 0x1e, 0x79, 0x00, 0x65, 0x21, 0x1d, 0x19, 0x0b, 0x1c, 0xb7, 0xb9, 0xfd, 0xd6, + 0x62, 0x55, 0x6e, 0xf5, 0x51, 0x88, 0x1a, 0x61, 0xf2, 0x11, 0xac, 0x6a, 0xa3, 0xce, 0xfe, 0x95, + 0xde, 0xea, 0x36, 0x32, 0xf6, 0x32, 0xbf, 0xb6, 0x0e, 0x25, 0x16, 0x45, 0x3c, 0xea, 0x94, 0xf4, + 0xd2, 0xb1, 0x41, 0x1e, 0x02, 0xb8, 0x11, 0x73, 0x24, 0xf3, 0x6c, 0x47, 0x76, 0xca, 0x46, 0xad, + 0xda, 0xea, 0xb7, 0x12, 0xab, 0xdf, 0x1a, 0x24, 0x56, 0x4f, 0x6b, 0x46, 0x7a, 0x47, 0x92, 0x2d, + 0x28, 0x3e, 0xe3, 0x67, 0xa2, 0x53, 0xc1, 0xdd, 0xb7, 0x96, 0x2c, 0xf9, 0x31, 0x3f, 0xa3, 0x28, + 0xa7, 0x74, 0xa0, 0x57, 0x1b, 0x3a, 0x23, 0xd6, 0xa9, 0x69, 0x1d, 0x20, 0xe5, 0xd8, 0x19, 0x31, + 0xf2, 0x05, 0x34, 0x85, 0xcb, 0x42, 0x27, 0xf2, 0xb9, 0x3d, 0x8c, 0x78, 0x3c, 0xee, 0x00, 0xae, + 0x66, 0x73, 0x32, 0xb0, 0x61, 0x3f, 0x52, 0x5c, 0xda, 0x10, 0xd9, 0x26, 0x79, 0x00, 0x55, 0x16, + 0x7a, 0xfa, 0x37, 0xea, 0x57, 0xfe, 0x46, 0x05, 0x65, 0x77, 0x24, 0x79, 0x03, 0x6a, 0xcf, 0xf8, + 0x99, 0xed, 0xf2, 0x38, 0x94, 0x9d, 0x15, 0x04, 0x58, 0xf5, 0x19, 0x3f, 0xdb, 0x55, 0x6d, 0xf2, + 0x2e, 0xac, 0x68, 0x10, 0x1a, 0x7e, 0x03, 0xf9, 0x75, 0x4d, 0x4b, 0x45, 0x34, 0x1e, 0x8d, 0x48, + 0x53, 0x8b, 0x68, 0x9a, 0x16, 0xf9, 0x21, 0xb4, 0xc2, 0x78, 0x94, 0xf1, 0x53, 0xa2, 0xd3, 0x42, + 0xa9, 0x66, 0x18, 0x8f, 0x26, 0xca, 0x12, 0x64, 0x1b, 0x4a, 0xb1, 0x70, 0x86, 0xac, 0xd3, 0xc6, + 0xf5, 0xbf, 0xb9, 0x44, 0xa3, 0xa7, 0x4a, 0x86, 0x6a, 0x51, 0x65, 0xd2, 0x2e, 0x0f, 0xdd, 0x38, + 0x8a, 0x58, 0xe8, 0x5e, 0x74, 0x56, 0xf5, 0xf4, 0x19, 0x12, 0xf9, 0x08, 0x8a, 0xca, 0x01, 0x75, + 0x08, 0x5a, 0xd6, 0xcd, 0x05, 0x83, 0x1e, 0x71, 0x8f, 0x51, 0x14, 0x22, 0x9f, 0x43, 0x65, 0xc4, + 0x64, 0xe4, 0xbb, 0xa2, 0xb3, 0x86, 0x8b, 0x78, 0x77, 0xc9, 0x22, 0x68, 0x1c, 0x1e, 0x69, 0x41, + 0x9a, 0xf4, 0x50, 0xba, 0x10, 0x1a, 0xec, 0xf6, 0xaf, 0x84, 0xf4, 0x3a, 0xeb, 0xb7, 0x73, 0x77, + 0x57, 0x68, 0xdd, 0xd0, 0xbe, 0x16, 0xd2, 0x23, 0xef, 0x43, 0x1d, 0x7d, 0x88, 0xd1, 0xd6, 0x86, + 0x5a, 0x6e, 0xef, 0x06, 0x05, 0x24, 0xa2, 0xba, 0xbe, 0xcd, 0xe5, 0xc8, 0x16, 0xe4, 0x5d, 0xbf, + 0xb3, 0x89, 0x0b, 0xb8, 0xb5, 0x64, 0x01, 0xbb, 0x07, 0xbd, 0x1c, 0xcd, 0xbb, 0xbe, 0x92, 0xef, + 0x40, 0x45, 0x38, 0xa3, 0x71, 0xc0, 0x44, 0xe7, 0x26, 0x2a, 0x20, 0x69, 0x5a, 0x7f, 0x59, 0x86, + 0xc2, 0x63, 0x7e, 0x36, 0x87, 0xc7, 0x87, 0x29, 0xe0, 0xf2, 0xa8, 0x96, 0x77, 0x97, 0x5b, 0xef, + 0x2c, 0xe8, 0xee, 0xc0, 0x8a, 0x1f, 0x0a, 0x19, 0xc5, 0xae, 0xde, 0x4b, 0xed, 0x09, 0xa6, 0x68, + 0x13, 0xac, 0x15, 0xb3, 0x58, 0xfb, 0x31, 0x10, 0x0d, 0x00, 0xf6, 0x6a, 0xcc, 0x5c, 0x69, 0x6c, + 0x41, 0xc3, 0x51, 0x03, 0x79, 0x3f, 0xc3, 0x98, 0xf8, 0x9a, 0x72, 0xc6, 0xd7, 0x10, 0x02, 0x45, + 0xe9, 0x0c, 0x35, 0xea, 0x6a, 0x14, 0xbf, 0x95, 0x11, 0x47, 0x9c, 0x8f, 0x34, 0xb0, 0xaa, 0x28, + 0x5d, 0x55, 0x04, 0xc4, 0xd5, 0x43, 0x00, 0x21, 0x9d, 0xc8, 0x20, 0x1c, 0xae, 0x46, 0xb8, 0x91, + 0xde, 0x91, 0xbf, 0x2b, 0xa6, 0x6e, 0x42, 0x05, 0x97, 0xe3, 0x7b, 0x88, 0xa8, 0x1a, 0x2d, 0xab, + 0xe6, 0x81, 0x47, 0x7e, 0x9a, 0x18, 0x78, 0x03, 0x07, 0xbb, 0x7d, 0x89, 0xd2, 0xa7, 0x8c, 0x3c, + 0x63, 0x95, 0xcd, 0x4b, 0xad, 0xf2, 0x31, 0x3f, 0x9b, 0xb3, 0xca, 0x77, 0xa0, 0x9e, 0xfa, 0x15, + 0xdf, 0x43, 0xe8, 0x29, 0x9f, 0x6e, 0x48, 0x07, 0x18, 0x60, 0xb5, 0xb9, 0x20, 0xee, 0x4a, 0xd4, + 0xb4, 0xac, 0x5f, 0x42, 0x09, 0x57, 0x41, 0xee, 0x42, 0x5b, 0x85, 0x14, 0x5b, 0xc6, 0x51, 0x28, + 0x8c, 0xe5, 0xea, 0x18, 0xdd, 0x54, 0xf4, 0x81, 0x22, 0x6b, 0xa8, 0x7f, 0x08, 0xab, 0x4e, 0xec, + 0xf9, 0x7c, 0x4a, 0x54, 0x87, 0xed, 0x16, 0x32, 0x26, 0xb2, 0x77, 0x38, 0x94, 0xb5, 0x65, 0x11, + 0x02, 0xcd, 0xfe, 0x60, 0x67, 0x70, 0xda, 0xb7, 0x4f, 0xf6, 0x8f, 0xf7, 0x0e, 0x8e, 0x1f, 0xb5, + 0x6f, 0x64, 0x68, 0xf4, 0xf4, 0xf8, 0x58, 0xd1, 0x72, 0x64, 0x1d, 0xda, 0x86, 0xb6, 0xfb, 0xe4, + 0xe8, 0xe4, 0x70, 0x7f, 0xb0, 0xbf, 0xd7, 0xce, 0x93, 0x55, 0x68, 0x18, 0xea, 0x97, 0x3b, 0x07, + 0x87, 0xfb, 0x7b, 0xed, 0x42, 0x56, 0x70, 0xe7, 0x78, 0x77, 0xff, 0x50, 0x51, 0x8b, 0x8f, 0x8b, + 0xd5, 0x5a, 0x1b, 0xac, 0xbf, 0xfb, 0x00, 0x60, 0xa2, 0x26, 0xf2, 0x31, 0xb4, 0xa4, 0x23, 0x9e, + 0xdb, 0x2e, 0x57, 0xff, 0x8c, 0x01, 0x44, 0x19, 0x74, 0xbe, 0x77, 0x83, 0x36, 0x15, 0x63, 0x37, + 0xa5, 0x2b, 0xa0, 0xdd, 0x85, 0x06, 0x7f, 0xc1, 0x22, 0x27, 0x08, 0x6c, 0xe1, 0xf2, 0x88, 0x21, + 0xc4, 0xf3, 0xbd, 0x1c, 0x5d, 0x31, 0xe4, 0xbe, 0xa2, 0x2a, 0xc9, 0x4f, 0xa1, 0x20, 0xa4, 0x44, + 0xfb, 0xaf, 0x6f, 0x7f, 0x70, 0xe5, 0x76, 0x6d, 0xf5, 0x07, 0x03, 0xaa, 0x7a, 0xa8, 0x8e, 0x41, + 0x30, 0x42, 0x54, 0x5c, 0xab, 0xe3, 0xe1, 0xe1, 0x11, 0x55, 0x3d, 0x54, 0x47, 0x29, 0x85, 0x09, + 0x61, 0xd7, 0xe8, 0x38, 0x18, 0xf4, 0xa9, 0xea, 0x41, 0x28, 0xac, 0xb8, 0x3c, 0x7c, 0xc1, 0x22, + 0x81, 0x62, 0x9d, 0x0a, 0x8e, 0xb0, 0x75, 0xf5, 0x08, 0xbb, 0x99, 0x5e, 0x74, 0x6a, 0x0c, 0xf2, + 0x33, 0x28, 0xa1, 0x09, 0x74, 0x6a, 0x18, 0x1c, 0x7f, 0x70, 0x8d, 0xe5, 0xc4, 0x51, 0x48, 0x75, + 0x27, 0x65, 0xb2, 0xcf, 0x62, 0x6f, 0xc8, 0x74, 0xe6, 0x88, 0x98, 0xad, 0x51, 0x40, 0x92, 0xf2, + 0xd5, 0x01, 0xf9, 0x18, 0xc8, 0xb9, 0x23, 0xec, 0x88, 0x8d, 0xb8, 0x64, 0x49, 0x4a, 0x8b, 0x60, + 0xab, 0xd2, 0xf6, 0xb9, 0x23, 0x28, 0x32, 0xfa, 0x9a, 0x4e, 0x3e, 0x84, 0xbc, 0xbc, 0x6f, 0x30, + 0x77, 0x19, 0x80, 0xf3, 0xf2, 0x3e, 0xf9, 0x40, 0xc7, 0x13, 0x5f, 0xb0, 0x90, 0x09, 0x0d, 0xb7, + 0x7c, 0x2f, 0x4f, 0xb3, 0x44, 0xb5, 0xbd, 0x0f, 0x61, 0x33, 0x0e, 0x43, 0xe6, 0x32, 0x21, 0x94, + 0xbb, 0x97, 0x9c, 0x07, 0xb6, 0xeb, 0x04, 0x81, 0x0e, 0x6d, 0xd5, 0x5e, 0x81, 0xae, 0x67, 0xf8, + 0x03, 0xce, 0x83, 0x5d, 0xc5, 0xd5, 0xce, 0xbd, 0xed, 0x87, 0x4f, 0x79, 0x34, 0x42, 0x2d, 0xd8, + 0x01, 0x17, 0x02, 0x81, 0x57, 0xed, 0x15, 0x69, 0x2b, 0xc3, 0x39, 0xe4, 0x7a, 0xaa, 0x9f, 0xc2, + 0x7a, 0xc4, 0xbc, 0x38, 0xf4, 0x1c, 0x95, 0xbd, 0x4b, 0x47, 0xb2, 0x11, 0x0b, 0xa5, 0xc0, 0x50, + 0x57, 0xed, 0x95, 0xe8, 0x5a, 0xca, 0xed, 0xa7, 0x4c, 0x6d, 0x81, 0x1b, 0x63, 0xce, 0x23, 0xfb, + 0x9b, 0x58, 0xe7, 0x6e, 0xf6, 0x37, 0xb1, 0x13, 0xf8, 0xf2, 0x02, 0x03, 0x61, 0xb5, 0x57, 0xa6, + 0x6b, 0x8a, 0xfd, 0x95, 0xe1, 0x7e, 0xa5, 0x99, 0xaa, 0xe3, 0xcf, 0xa1, 0x93, 0xdd, 0x4b, 0x7b, + 0x1c, 0xf1, 0x61, 0x64, 0x54, 0xbc, 0x86, 0xfa, 0xa8, 0xd0, 0x9b, 0x59, 0x89, 0x93, 0x89, 0xc0, + 0xb7, 0xb9, 0x9c, 0xf5, 0xd7, 0x65, 0x28, 0xf4, 0x07, 0x03, 0xb2, 0x01, 0x85, 0x97, 0x2c, 0x42, + 0x4f, 0xa1, 0xe0, 0xa4, 0x1a, 0x6a, 0xf8, 0x5b, 0x50, 0x7a, 0xc9, 0x23, 0x4f, 0x47, 0x9e, 0x46, + 0x2f, 0x47, 0x75, 0x53, 0xb1, 0xde, 0x87, 0xba, 0xfa, 0xb6, 0x31, 0x5c, 0xe8, 0xc8, 0xd2, 0xe8, + 0xe5, 0x29, 0x28, 0xe2, 0x3e, 0xd2, 0x94, 0xd4, 0x06, 0x14, 0x5c, 0xa6, 0x43, 0x4b, 0xbe, 0x57, + 0xa0, 0xaa, 0x61, 0xc6, 0x75, 0xcf, 0x9d, 0x48, 0x60, 0x66, 0xd5, 0xe8, 0x15, 0xa9, 0x6e, 0x9a, + 0x71, 0xd5, 0x77, 0x32, 0x2e, 0xa0, 0x40, 0x89, 0x82, 0x22, 0x4e, 0xc6, 0xfd, 0x00, 0x56, 0x84, + 0x54, 0xb9, 0x64, 0xe0, 0x5c, 0xd8, 0x23, 0x81, 0x81, 0xa4, 0xd1, 0x2b, 0x53, 0x10, 0x52, 0xee, + 0x29, 0xe2, 0x11, 0x8a, 0x6d, 0x03, 0x61, 0xa1, 0xf4, 0xe5, 0x85, 0x1d, 0x31, 0x97, 0x0f, 0x43, + 0x1f, 0x41, 0x53, 0x37, 0x8a, 0x59, 0xd5, 0x3c, 0x3a, 0x61, 0x99, 0x3d, 0x47, 0xba, 0xcf, 0x84, + 0x1d, 0x4b, 0xc9, 0x22, 0xa6, 0x43, 0x43, 0xa3, 0x57, 0xa5, 0xad, 0x84, 0x73, 0xaa, 0x19, 0x4a, + 0xfe, 0x13, 0x58, 0x4b, 0xe5, 0xcd, 0x2c, 0xbf, 0x62, 0x1e, 0x9a, 0x70, 0xa3, 0x57, 0xa3, 0x24, + 0x61, 0xd2, 0x94, 0x67, 0xbc, 0xd3, 0x64, 0x65, 0x4e, 0x10, 0x18, 0xeb, 0x05, 0xba, 0x92, 0x2e, + 0xca, 0x09, 0x02, 0x25, 0xf9, 0x07, 0x70, 0x2b, 0x1d, 0xdf, 0x71, 0xbf, 0x89, 0xfd, 0x88, 0x79, + 0xe9, 0xc2, 0x5a, 0x38, 0x4b, 0x9d, 0xde, 0x4c, 0x44, 0x76, 0x8c, 0x44, 0x66, 0x81, 0xfb, 0xf0, + 0xe6, 0xfc, 0x00, 0x99, 0x95, 0xb6, 0x71, 0x8c, 0x15, 0x6a, 0xcd, 0x8e, 0x31, 0xb5, 0xe2, 0x6e, + 0x19, 0x8a, 0xf6, 0x4b, 0x16, 0x75, 0xab, 0x50, 0xb6, 0xd1, 0x0a, 0xba, 0x4d, 0x58, 0xb1, 0x33, + 0x36, 0x80, 0x12, 0xae, 0x91, 0xc0, 0xfd, 0x44, 0x89, 0xcc, 0x6e, 0x76, 0x5b, 0xd0, 0xb0, 0xb3, + 0xfb, 0xd6, 0xdd, 0x80, 0x35, 0x7b, 0x7e, 0x87, 0xba, 0x6b, 0xb0, 0x6a, 0xcf, 0x6e, 0x42, 0x77, + 0x13, 0xd6, 0xed, 0x05, 0x9a, 0xee, 0xb6, 0xa1, 0x69, 0x4f, 0xe9, 0xb2, 0xfb, 0x26, 0x58, 0xf6, + 0x52, 0x9d, 0x75, 0xdf, 0x81, 0xb7, 0xec, 0xcb, 0x14, 0x62, 0xfd, 0x26, 0x07, 0x85, 0xc3, 0xc3, + 0x23, 0xf2, 0x26, 0x54, 0xa4, 0x7c, 0x2a, 0x95, 0x7d, 0xe5, 0x50, 0x47, 0x37, 0x68, 0x59, 0x11, + 0xb4, 0x6d, 0x69, 0xae, 0x50, 0xdc, 0x04, 0x1d, 0x8a, 0x2b, 0x34, 0xf7, 0x1e, 0xac, 0x4a, 0xfe, + 0x9c, 0x85, 0xc2, 0x1e, 0xb3, 0xc8, 0x16, 0xcc, 0xe5, 0xa1, 0x67, 0xa2, 0x55, 0x9e, 0xb6, 0x34, + 0xeb, 0x84, 0x45, 0x7d, 0x64, 0x28, 0xf5, 0x02, 0x54, 0x6d, 0x33, 0x5b, 0xf2, 0xad, 0xc6, 0xee, + 0xae, 0x03, 0xb1, 0xe7, 0x46, 0xb2, 0x7e, 0x5d, 0x86, 0xc2, 0x60, 0xd0, 0x37, 0x8b, 0x38, 0x9b, + 0x2c, 0x42, 0x2f, 0xf1, 0xec, 0x28, 0x41, 0x9f, 0x42, 0x75, 0xc1, 0x04, 0xbe, 0x39, 0x54, 0x57, + 0x0c, 0x68, 0x97, 0xa2, 0x5a, 0xc3, 0xaa, 0xb0, 0x04, 0xd5, 0x35, 0x1c, 0xb7, 0x38, 0x8f, 0xea, + 0x04, 0xb4, 0x4b, 0x51, 0x5d, 0x4f, 0xe0, 0x3a, 0x8d, 0xea, 0xc5, 0x70, 0x6d, 0xbe, 0x36, 0x5c, + 0x5b, 0xaf, 0x0f, 0xd7, 0xf6, 0x6b, 0xc2, 0x75, 0xf5, 0x77, 0x82, 0x2b, 0xf9, 0x0e, 0xe0, 0xba, + 0x76, 0x3d, 0xb8, 0x1a, 0x1b, 0x52, 0xa6, 0xf1, 0x9d, 0x40, 0xf7, 0xff, 0x24, 0x52, 0xff, 0xa7, + 0x02, 0x2b, 0xd9, 0xcc, 0x06, 0x61, 0x17, 0x47, 0xa1, 0x2d, 0x9d, 0xe7, 0x7e, 0x38, 0x34, 0x89, + 0x5f, 0x12, 0xd5, 0x5a, 0x8a, 0x35, 0x40, 0x4e, 0x9a, 0xfb, 0x7d, 0x0e, 0x9d, 0x73, 0xe6, 0x28, + 0x45, 0x6c, 0x33, 0x3b, 0x70, 0xa4, 0x3a, 0x86, 0xda, 0xe3, 0x07, 0xf7, 0x13, 0x44, 0x95, 0x7a, + 0x39, 0xba, 0x8e, 0x12, 0xfb, 0xdb, 0xec, 0x50, 0xf3, 0x4f, 0x1e, 0xdc, 0xd7, 0xf8, 0x5a, 0xdc, + 0xf9, 0xe1, 0x03, 0xd5, 0xb9, 0x80, 0x9d, 0xf3, 0xf3, 0x9d, 0x1f, 0x3e, 0xb8, 0xb4, 0xf3, 0x43, + 0xd5, 0xb9, 0x88, 0x9d, 0x0b, 0x0b, 0x3a, 0x3f, 0xd4, 0x9d, 0x3f, 0x86, 0xb6, 0xf4, 0x47, 0xcc, + 0x96, 0xdc, 0xbe, 0xf0, 0x59, 0xe0, 0xa9, 0x4e, 0x25, 0x13, 0x4b, 0x1b, 0x8a, 0x33, 0xe0, 0xbf, + 0x50, 0xf4, 0x64, 0xaa, 0x9b, 0x8c, 0x4b, 0x7b, 0xe4, 0x8b, 0x71, 0xc4, 0x3c, 0x1f, 0x0f, 0x7e, + 0x26, 0xe1, 0x2f, 0x1b, 0xa8, 0x6e, 0x30, 0x2e, 0x8f, 0xb2, 0xfc, 0xf4, 0x80, 0x6b, 0xf2, 0xe8, + 0xc0, 0x19, 0xdb, 0x78, 0xdd, 0x88, 0x5e, 0x23, 0xdf, 0x2b, 0xeb, 0x3c, 0x3a, 0x70, 0xc6, 0x54, + 0x51, 0x8d, 0xcf, 0x4b, 0x24, 0xc5, 0x98, 0x31, 0xf7, 0x7c, 0x12, 0x99, 0x2b, 0xb4, 0x65, 0x58, + 0x7d, 0xe4, 0xe8, 0x75, 0x7d, 0x04, 0x2d, 0xc9, 0xa5, 0x13, 0x64, 0xc4, 0x6b, 0x06, 0xba, 0x0d, + 0x64, 0x64, 0x85, 0x3f, 0x85, 0x0d, 0xe7, 0xe5, 0xf3, 0x97, 0x4a, 0x63, 0xc2, 0x0f, 0x58, 0xe8, + 0x26, 0x07, 0xf3, 0xba, 0x81, 0xee, 0x9a, 0x61, 0xf7, 0x35, 0x37, 0x73, 0x42, 0x6f, 0xc7, 0xa1, + 0x13, 0x8a, 0x97, 0xca, 0xa6, 0xf4, 0x69, 0xc7, 0x04, 0x74, 0xa0, 0xad, 0x09, 0x07, 0x8f, 0x3b, + 0x4a, 0xfe, 0x0b, 0xe8, 0x3c, 0x75, 0x02, 0xc1, 0x6c, 0x3f, 0x94, 0x2c, 0x8a, 0xe2, 0x71, 0x46, + 0x5d, 0x0d, 0x03, 0xe0, 0x4d, 0x94, 0x38, 0xc8, 0x08, 0xa4, 0xd3, 0xfd, 0x08, 0x9a, 0xd9, 0x1d, + 0x1d, 0x09, 0xe3, 0x8e, 0x56, 0xe8, 0x0a, 0x4b, 0x37, 0x12, 0x7f, 0x49, 0xfb, 0xf6, 0x59, 0x73, + 0xed, 0xbe, 0x01, 0xb7, 0xec, 0x65, 0x36, 0xb9, 0x8c, 0x89, 0x36, 0xb7, 0x94, 0xa9, 0x6c, 0x0a, + 0x91, 0x3a, 0x6b, 0x33, 0x5d, 0x0b, 0x3a, 0xf6, 0x12, 0xd3, 0x40, 0xb4, 0x4e, 0xed, 0x3c, 0xae, + 0x77, 0x6e, 0x87, 0xbb, 0x04, 0xda, 0xf6, 0xcc, 0x36, 0x76, 0x3b, 0xb0, 0x69, 0x2f, 0xdc, 0x2d, + 0x5c, 0xc6, 0xec, 0x76, 0xe0, 0xc2, 0x97, 0xe9, 0xbc, 0xbb, 0x0a, 0x2d, 0x7b, 0x5a, 0xa3, 0xd6, + 0x6f, 0x2b, 0x50, 0x54, 0xfb, 0x45, 0xd6, 0xa1, 0xe4, 0x87, 0x1e, 0x7b, 0xa5, 0x03, 0x34, 0xd5, + 0x0d, 0xf2, 0x11, 0x14, 0x23, 0x1e, 0x30, 0x73, 0x5f, 0x72, 0x73, 0xc1, 0xcd, 0x2b, 0xe5, 0x01, + 0xa3, 0x28, 0x44, 0xde, 0x86, 0x2a, 0xde, 0x22, 0x24, 0xa0, 0x55, 0x31, 0xb4, 0x82, 0x14, 0x6d, + 0x77, 0x16, 0x94, 0x59, 0xe8, 0x25, 0xa8, 0xc4, 0x24, 0x98, 0x85, 0x06, 0x58, 0xb3, 0x69, 0x68, + 0x29, 0xc9, 0x82, 0xa7, 0xd3, 0xd0, 0xf7, 0xa0, 0x1e, 0x04, 0xa3, 0x24, 0xbc, 0x1b, 0xcc, 0x15, + 0x68, 0x2d, 0x08, 0x46, 0x83, 0x34, 0x9f, 0x98, 0x08, 0x61, 0x4e, 0x51, 0x31, 0x68, 0x36, 0x42, + 0x22, 0x4d, 0x3a, 0x50, 0x68, 0xac, 0x81, 0x95, 0xef, 0x95, 0x68, 0x59, 0x09, 0x8c, 0x93, 0x21, + 0xa4, 0x14, 0x89, 0xdb, 0x37, 0x58, 0x2a, 0xd3, 0x9a, 0x94, 0x62, 0x90, 0x26, 0x05, 0xf3, 0xf6, + 0x09, 0x06, 0xa2, 0xb3, 0xf6, 0x49, 0x3e, 0x81, 0xf5, 0x79, 0x73, 0x1a, 0xe9, 0xf0, 0x5d, 0xea, + 0x55, 0xe9, 0xea, 0x8c, 0x7b, 0x5a, 0xee, 0x9b, 0x56, 0x0c, 0x46, 0xe7, 0x7d, 0xd3, 0x42, 0x8f, + 0xdd, 0x30, 0xd1, 0x75, 0x91, 0xc7, 0x5e, 0x78, 0xea, 0xab, 0xcf, 0x9d, 0xfa, 0xee, 0xc3, 0xea, + 0x9c, 0x61, 0x9b, 0x03, 0xdf, 0x0a, 0x6d, 0xcf, 0x7a, 0x3b, 0xbd, 0xee, 0xd6, 0x8c, 0xc9, 0x9a, + 0xb3, 0x5e, 0x83, 0x36, 0xa7, 0x5d, 0x8b, 0xd6, 0x35, 0x4c, 0xcc, 0xd8, 0x1c, 0xf0, 0x9a, 0x34, + 0x43, 0x53, 0x00, 0xaf, 0x43, 0xcd, 0x4e, 0x8c, 0xab, 0x5b, 0x83, 0x8a, 0xad, 0x2d, 0x69, 0x3e, + 0x0f, 0x56, 0xd1, 0x36, 0x63, 0x22, 0xd9, 0xb6, 0x48, 0x32, 0x42, 0xb3, 0xf1, 0xc8, 0xcb, 0x6c, + 0xf3, 0x02, 0x7c, 0x74, 0x6f, 0xc2, 0x86, 0xbd, 0x68, 0xe7, 0x16, 0x3b, 0x81, 0xc5, 0x6e, 0x08, + 0x13, 0x80, 0x89, 0x4e, 0x51, 0x6a, 0x4e, 0xa3, 0x08, 0xfe, 0x19, 0xad, 0x75, 0x1b, 0x50, 0xcf, + 0x40, 0x5c, 0xfb, 0x87, 0xe9, 0x7b, 0x9b, 0xd4, 0xb7, 0xa4, 0xb7, 0x33, 0x73, 0xd3, 0xdd, 0x82, + 0x9b, 0xf6, 0xe2, 0x63, 0x3b, 0xfe, 0xc4, 0xec, 0xb1, 0x1c, 0x7f, 0x79, 0xd1, 0xd9, 0x1b, 0x5d, + 0xd1, 0xc2, 0xc3, 0x35, 0x7a, 0x9d, 0x65, 0xa7, 0xe7, 0xc7, 0xc5, 0x6a, 0xae, 0x9d, 0x7f, 0x5c, + 0xac, 0xe6, 0xdb, 0x05, 0xda, 0x74, 0x5c, 0x37, 0x8e, 0x1c, 0xf7, 0x42, 0xaf, 0x95, 0xb6, 0xd9, + 0xab, 0x31, 0x8b, 0x7c, 0xf4, 0x6a, 0x48, 0xb1, 0xfe, 0xb3, 0x08, 0x30, 0xb9, 0x66, 0x26, 0xbf, + 0x07, 0x24, 0xbd, 0xc7, 0x1b, 0x3b, 0x42, 0x28, 0xff, 0xc9, 0xd2, 0xcb, 0xaa, 0x76, 0xc2, 0x3b, + 0x71, 0x84, 0xa0, 0x8e, 0x64, 0x0b, 0xaf, 0xab, 0xe0, 0xff, 0xaf, 0xab, 0x16, 0x5e, 0x57, 0xcd, + 0xe0, 0xbf, 0xba, 0xe4, 0xd6, 0xe7, 0xb2, 0x9b, 0x91, 0x9a, 0xb9, 0x8e, 0xb8, 0xe4, 0x66, 0x04, + 0xf3, 0xdd, 0xf9, 0x3d, 0xbc, 0x86, 0xe1, 0x7e, 0x87, 0x56, 0xf5, 0x37, 0x39, 0xc8, 0xef, 0x1e, + 0x10, 0x0b, 0xaa, 0xe3, 0x88, 0xbf, 0xf0, 0x3d, 0x73, 0x43, 0x53, 0xa3, 0x69, 0x9b, 0xbc, 0x05, + 0xe0, 0xf2, 0xd1, 0xc8, 0x97, 0xb6, 0x38, 0x77, 0x92, 0x62, 0x9d, 0xa6, 0xf4, 0xcf, 0x1d, 0xd2, + 0x86, 0x42, 0xc4, 0x9e, 0x9a, 0x7b, 0x7f, 0xf5, 0x89, 0x75, 0xa2, 0x38, 0x08, 0xec, 0x88, 0x21, + 0x1e, 0xcc, 0xad, 0x7f, 0x5d, 0xd1, 0xa8, 0x26, 0xe1, 0x9d, 0x78, 0x1c, 0xda, 0x71, 0x14, 0x98, + 0x0b, 0xff, 0x72, 0x14, 0x87, 0xa7, 0x51, 0xa0, 0xa2, 0xad, 0xe3, 0x4a, 0x1e, 0x25, 0xb7, 0xfc, + 0xd8, 0xb0, 0xfe, 0xad, 0x04, 0xe5, 0x5d, 0xac, 0xb4, 0x59, 0xff, 0x50, 0x84, 0x4a, 0x32, 0xca, + 0x74, 0x19, 0x31, 0x37, 0x5b, 0x46, 0x9c, 0xae, 0xb0, 0xe5, 0x67, 0x2b, 0x6c, 0x0b, 0x0a, 0x51, + 0xc5, 0x85, 0x85, 0xa8, 0x4d, 0x28, 0x47, 0x6c, 0xa8, 0x76, 0xb5, 0x6c, 0xd6, 0x8a, 0x2d, 0xd2, + 0x9d, 0x2b, 0xd1, 0x55, 0x2e, 0x2b, 0xd1, 0xf5, 0x6e, 0xcc, 0x14, 0xe9, 0x32, 0xa1, 0x26, 0x29, + 0x58, 0x55, 0xcd, 0x79, 0x20, 0x4b, 0xd4, 0x69, 0xac, 0xae, 0x5a, 0xd5, 0xae, 0x53, 0xb5, 0xfa, + 0x11, 0xb4, 0xcf, 0x1c, 0xf7, 0xb9, 0x5a, 0x52, 0xe8, 0xd9, 0x21, 0xf7, 0x85, 0x86, 0x7a, 0x95, + 0xb6, 0x26, 0xf4, 0x63, 0x45, 0x26, 0x9f, 0xc0, 0x66, 0xc0, 0x5f, 0x26, 0xee, 0xca, 0x1e, 0xf9, + 0x6e, 0xc4, 0xc7, 0xe7, 0x3c, 0x64, 0x18, 0x80, 0xab, 0x74, 0x3d, 0xe0, 0x2f, 0xcd, 0x5d, 0xe0, + 0x51, 0xca, 0x23, 0xef, 0x40, 0x7d, 0xec, 0xb8, 0xcf, 0x99, 0xd4, 0xd7, 0x95, 0xfa, 0xa2, 0x15, + 0x34, 0xe9, 0x90, 0x0b, 0x61, 0x2a, 0x56, 0x8d, 0xab, 0x2a, 0x56, 0xf9, 0x05, 0x15, 0xab, 0xe6, + 0x54, 0xc5, 0x0a, 0x23, 0xcf, 0xb4, 0x92, 0x53, 0x34, 0x18, 0xf5, 0x74, 0x4b, 0x50, 0xb0, 0x5d, + 0xff, 0x71, 0xb1, 0x5a, 0x68, 0x17, 0xe9, 0x7c, 0x05, 0xd8, 0xfa, 0x8b, 0x1c, 0x54, 0x29, 0x13, + 0x63, 0x1e, 0x0a, 0x46, 0x3e, 0x84, 0xd5, 0xc9, 0x86, 0xdb, 0xca, 0x06, 0x53, 0xcb, 0x69, 0x89, + 0xec, 0xfa, 0x0e, 0x3c, 0xd2, 0x87, 0xcd, 0x71, 0xc4, 0x84, 0x3f, 0x0c, 0x99, 0x67, 0x8f, 0xb9, + 0x90, 0xa9, 0x45, 0xeb, 0x7a, 0xfb, 0xa4, 0x2c, 0x7d, 0x92, 0x88, 0x9d, 0x70, 0x21, 0x8d, 0x75, + 0xd2, 0xf5, 0xf1, 0x02, 0xaa, 0xf5, 0x9b, 0x1c, 0xac, 0xed, 0xf2, 0xf0, 0xa9, 0x1f, 0x8d, 0xfa, + 0x3c, 0x8e, 0x5c, 0x76, 0x3a, 0x0e, 0xb8, 0xe3, 0x59, 0x7f, 0x76, 0x6d, 0xb3, 0x5e, 0xf8, 0x0b, + 0xf9, 0xc5, 0xbf, 0xf0, 0x43, 0x68, 0xb9, 0xdc, 0x63, 0xea, 0x88, 0x1b, 0x5d, 0x8c, 0xb9, 0x1f, + 0x4a, 0x03, 0xd4, 0xa6, 0x22, 0xef, 0xa7, 0x54, 0x0b, 0x26, 0x3a, 0xb2, 0xfe, 0x2a, 0x07, 0x85, + 0x47, 0x4c, 0x5a, 0x83, 0xef, 0x63, 0x49, 0xd6, 0x27, 0x99, 0xdd, 0xb8, 0x0b, 0x85, 0x28, 0xd6, + 0x2f, 0x0f, 0xa6, 0x60, 0x93, 0xed, 0x42, 0x95, 0x88, 0xf5, 0xaf, 0x45, 0x28, 0x1e, 0xfa, 0x42, + 0x5a, 0xff, 0x52, 0xb8, 0xf6, 0xaa, 0x3e, 0x9b, 0xa9, 0x6a, 0x5e, 0xfe, 0x8c, 0xa0, 0x77, 0x23, + 0xa9, 0x69, 0x2a, 0x8b, 0xfc, 0x19, 0xc0, 0xd8, 0x19, 0x32, 0x7d, 0x2f, 0x86, 0x3a, 0xab, 0x6f, + 0x77, 0xd2, 0xfe, 0x03, 0x45, 0x3d, 0x71, 0x86, 0x7e, 0x88, 0x83, 0xf4, 0x72, 0xb4, 0xa6, 0xa4, + 0x91, 0xac, 0x23, 0x83, 0x2e, 0x32, 0x62, 0x22, 0x64, 0xc2, 0xe8, 0x25, 0xa5, 0x86, 0x5e, 0xde, + 0x94, 0x19, 0x15, 0x45, 0xf5, 0xff, 0x0c, 0x2b, 0x8d, 0xba, 0x77, 0xe9, 0xca, 0xde, 0x05, 0xac, + 0x35, 0x26, 0x7d, 0xef, 0x4c, 0x79, 0x3d, 0xf4, 0x58, 0x2a, 0xc7, 0x4f, 0xfd, 0x9e, 0xce, 0x5c, + 0xb5, 0x3b, 0xa9, 0x5c, 0xea, 0x4e, 0x7a, 0x25, 0xed, 0x50, 0x54, 0xac, 0x52, 0x99, 0xa5, 0xd6, + 0x0e, 0xe6, 0x5e, 0x13, 0xdd, 0x60, 0x73, 0xf2, 0xb3, 0x98, 0x8f, 0x26, 0x6b, 0x47, 0xde, 0x64, + 0x31, 0xdd, 0x0a, 0x94, 0xb0, 0x86, 0x63, 0xbd, 0x9a, 0x42, 0x64, 0x31, 0x8a, 0x43, 0xd1, 0xc9, + 0x61, 0x69, 0x68, 0x99, 0x11, 0xa0, 0x0c, 0xf9, 0x43, 0x68, 0x85, 0xec, 0x95, 0xcc, 0x4c, 0x6f, + 0xa0, 0xb8, 0x74, 0x6b, 0x68, 0x43, 0x75, 0x38, 0x49, 0x36, 0xc7, 0xfa, 0xe7, 0x22, 0x94, 0xf1, + 0x1c, 0x2d, 0xac, 0x7f, 0xcf, 0x5f, 0xdb, 0x92, 0x1e, 0x4e, 0xed, 0x67, 0xfe, 0x9a, 0x45, 0x63, + 0xd5, 0x36, 0x45, 0x63, 0xdd, 0xb1, 0x70, 0xad, 0xa2, 0x31, 0x76, 0x9b, 0xd8, 0x6e, 0xf1, 0xb5, + 0x6d, 0x77, 0xda, 0x02, 0x30, 0xbe, 0x2a, 0x0b, 0x5d, 0x68, 0x01, 0xe5, 0xcb, 0x2d, 0x20, 0xbf, + 0xd4, 0x02, 0x16, 0x6d, 0xeb, 0x9f, 0x67, 0x3d, 0xed, 0xcf, 0xa1, 0x72, 0x16, 0xab, 0x88, 0x90, + 0x6c, 0xed, 0xfb, 0xcb, 0x02, 0x01, 0x6e, 0xc7, 0x56, 0x17, 0x85, 0x69, 0xd2, 0x49, 0x29, 0x0e, + 0x4f, 0xea, 0x2f, 0x9c, 0xc0, 0x68, 0xfc, 0xd6, 0x9c, 0xe2, 0xf6, 0xcc, 0xf3, 0x34, 0x9a, 0x8a, + 0x5a, 0xbf, 0x84, 0xb2, 0x1e, 0x89, 0x7c, 0x01, 0x2b, 0x7a, 0x2c, 0x6d, 0x9e, 0xc6, 0xcb, 0x5c, + 0xa6, 0xfd, 0xba, 0x96, 0xef, 0x2b, 0x71, 0x95, 0x89, 0x4c, 0x0a, 0xd6, 0x45, 0xaa, 0x1b, 0xd6, + 0x33, 0x28, 0xef, 0x3a, 0xa1, 0xcb, 0x82, 0xef, 0xc9, 0x3b, 0x66, 0xfd, 0xf0, 0xf7, 0x5c, 0x71, + 0xff, 0xdb, 0x5c, 0x5a, 0x72, 0xbf, 0x05, 0x1b, 0xd3, 0x25, 0x77, 0xfb, 0xf4, 0xe4, 0xf0, 0xc9, + 0xce, 0x5e, 0xfb, 0x06, 0xd9, 0x80, 0x55, 0xc3, 0x7a, 0xb4, 0x7f, 0xbc, 0x4f, 0x77, 0x06, 0xba, + 0xf8, 0x3e, 0x5f, 0x90, 0xcf, 0x93, 0x4d, 0x20, 0x86, 0xd6, 0x3f, 0x3d, 0x3a, 0xda, 0xa1, 0x07, + 0x5f, 0x2b, 0x7a, 0x61, 0x61, 0xa1, 0xbe, 0x38, 0x5f, 0xa8, 0x2f, 0x2d, 0x2c, 0xd4, 0x97, 0x31, + 0xde, 0x67, 0x5e, 0xc9, 0x4c, 0xe2, 0x7d, 0xb5, 0x5d, 0xa3, 0x15, 0xf3, 0x9c, 0xe6, 0xce, 0x3f, + 0x15, 0xa0, 0x9a, 0xa4, 0x5b, 0x93, 0xb7, 0x22, 0xb9, 0xec, 0x5b, 0x91, 0xd9, 0xa7, 0x2a, 0xf9, + 0x05, 0x4f, 0x55, 0x16, 0x3f, 0x4a, 0x29, 0x2c, 0x7b, 0x94, 0x72, 0xcf, 0x3c, 0x3f, 0x29, 0xa2, + 0x85, 0xbf, 0x31, 0x97, 0xf8, 0x6d, 0x0d, 0x9c, 0xa1, 0xd0, 0xef, 0xfb, 0xf4, 0xdb, 0x14, 0x0b, + 0xaa, 0xb1, 0x60, 0x91, 0xe7, 0x48, 0xc7, 0x64, 0xbe, 0x69, 0xdb, 0xbc, 0xca, 0x29, 0x27, 0xaf, + 0x72, 0xac, 0xbf, 0xcf, 0xc1, 0xaa, 0xce, 0x7a, 0xbf, 0x8c, 0xf8, 0xc8, 0x94, 0xaf, 0xad, 0x5f, + 0x5c, 0xdb, 0xee, 0x32, 0x0f, 0x4f, 0xf2, 0x53, 0x0f, 0x4f, 0x26, 0x09, 0x6d, 0x21, 0x9b, 0xd0, + 0x5a, 0x0f, 0x33, 0xf0, 0xfd, 0x31, 0x54, 0x93, 0xbc, 0xcb, 0x20, 0x67, 0x75, 0xee, 0xef, 0x68, + 0x2a, 0x62, 0x7d, 0x0a, 0xb5, 0xf4, 0x57, 0x17, 0xbc, 0x54, 0x5c, 0xcf, 0xbe, 0x54, 0xac, 0x65, + 0x5e, 0x23, 0xde, 0xf1, 0xa0, 0x31, 0x95, 0x25, 0x13, 0x02, 0x45, 0xf4, 0x5b, 0xba, 0x37, 0x7e, + 0x93, 0x7b, 0x50, 0x4b, 0x66, 0x52, 0xdb, 0x56, 0x58, 0xbc, 0x9a, 0x89, 0x8c, 0x51, 0x65, 0x21, + 0x51, 0xe5, 0x9d, 0x7f, 0xcc, 0x01, 0x99, 0x78, 0x9d, 0x3d, 0x5f, 0x8c, 0x1d, 0xe9, 0x9e, 0xbf, + 0x56, 0x36, 0xb8, 0x01, 0xe5, 0x67, 0xfc, 0x6c, 0xa2, 0xcc, 0xd2, 0x33, 0x7e, 0x76, 0xe0, 0x4d, + 0xe9, 0xa9, 0x70, 0xa5, 0x9e, 0xd2, 0x44, 0xbe, 0x78, 0x8d, 0x44, 0xfe, 0xc3, 0xa7, 0xd0, 0x9c, + 0xa6, 0x93, 0x77, 0xe0, 0x8d, 0xfe, 0xc1, 0xd1, 0xe9, 0xe1, 0xce, 0xe0, 0xe0, 0xc9, 0xb1, 0x7d, + 0xf4, 0x64, 0x6f, 0xdf, 0x3e, 0x3d, 0xee, 0x9f, 0xec, 0xef, 0x1e, 0x7c, 0x79, 0xb0, 0xaf, 0xe0, + 0xda, 0x81, 0xf5, 0x59, 0x81, 0xc1, 0xfe, 0x9f, 0x0c, 0xda, 0x39, 0xc4, 0xf8, 0x0c, 0x67, 0xe7, + 0x74, 0xef, 0xe0, 0x49, 0x3b, 0xbf, 0xfd, 0xeb, 0x32, 0xb4, 0x76, 0x94, 0x6d, 0x4f, 0x66, 0x23, + 0x1e, 0xac, 0x69, 0xdb, 0x9b, 0x7e, 0xc9, 0xb9, 0xec, 0x68, 0xae, 0x65, 0xb7, 0x92, 0x2c, 0xf7, + 0x07, 0x57, 0x89, 0x19, 0x2b, 0xfb, 0x36, 0x07, 0x6f, 0x25, 0xd9, 0x70, 0x2a, 0x98, 0xcd, 0x8b, + 0xc9, 0xf6, 0xd2, 0xa8, 0x31, 0x97, 0x43, 0xa7, 0xb3, 0xff, 0xe4, 0xb5, 0xfa, 0x98, 0xa5, 0xfc, + 0x29, 0xb4, 0x1f, 0x31, 0x39, 0xfd, 0xb7, 0x77, 0x96, 0x0c, 0xf4, 0x88, 0xc9, 0x74, 0xb2, 0xf7, + 0x2e, 0x95, 0x31, 0x83, 0xdb, 0x40, 0x54, 0xf6, 0x3a, 0x25, 0x21, 0xc8, 0xb2, 0xae, 0x4a, 0x34, + 0x1d, 0xff, 0xfd, 0xcb, 0x85, 0xcc, 0x04, 0x6a, 0xbb, 0x94, 0x77, 0x9c, 0x99, 0xe1, 0x83, 0xcb, + 0x63, 0xee, 0x95, 0xdb, 0x95, 0x88, 0x65, 0x66, 0xc1, 0xe8, 0x77, 0x4d, 0xa3, 0x40, 0xd9, 0xab, + 0x67, 0x49, 0xc4, 0xcc, 0x2c, 0x2f, 0xe0, 0x96, 0x31, 0x3d, 0x83, 0x9a, 0x8c, 0xfb, 0x23, 0x1f, + 0xcd, 0xfb, 0xd8, 0x39, 0x1f, 0x99, 0xce, 0xf8, 0xf1, 0xf5, 0x84, 0xf5, 0xbc, 0xdd, 0x2f, 0xbf, + 0x7e, 0x6f, 0xe8, 0xcb, 0xf3, 0xf8, 0x6c, 0xcb, 0xe5, 0xa3, 0xe4, 0x9d, 0xbc, 0x7e, 0xeb, 0xee, + 0xf2, 0x20, 0x21, 0xfc, 0x36, 0xdf, 0x38, 0xf4, 0x5f, 0xb0, 0x3f, 0xc2, 0x63, 0x1f, 0x97, 0xfc, + 0xbf, 0xf2, 0x4d, 0xd3, 0xfe, 0xec, 0x33, 0x24, 0x9c, 0x95, 0xb1, 0xcb, 0x4f, 0xfe, 0x37, 0x00, + 0x00, 0xff, 0xff, 0xd4, 0x65, 0xf7, 0xfd, 0x9a, 0x2f, 0x00, 0x00, } From 81248592dba17fa2320e8ce1b587c7fd8a8b2feb Mon Sep 17 00:00:00 2001 From: Jason Lernerman Date: Thu, 17 Sep 2026 15:18:12 -0400 Subject: [PATCH 05/14] agent_simulation: decide a scenario's verdict from a min_sample_pass_rate A scenario is all-or-nothing today, so repeating it can only ever make it harder to pass. min_sample_pass_rate is the share of a scenario's samples that must pass for that scenario to pass, set on Create.Request and mirrored on SimulationRun so the dashboard can render a verdict without being told the bar out of band. 0/unset requires every sample, which is the current behaviour. The run still fails if any scenario fails, and pass@k / pass^k stay informational. --- .changeset/simulation-repeats.md | 2 +- protobufs/livekit_agent_simulation.proto | 8 ++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/.changeset/simulation-repeats.md b/.changeset/simulation-repeats.md index c282b7657..99788302d 100644 --- a/.changeset/simulation-repeats.md +++ b/.changeset/simulation-repeats.md @@ -3,4 +3,4 @@ "@livekit/protocol": patch --- -agent_simulation: repeat scenarios within a run for pass@k / pass^k +agent_simulation: repeat scenarios within a run for pass@k / pass^k, and decide a scenario's verdict from a `min_sample_pass_rate` diff --git a/protobufs/livekit_agent_simulation.proto b/protobufs/livekit_agent_simulation.proto index bc8c02e35..c400a4bf7 100644 --- a/protobufs/livekit_agent_simulation.proto +++ b/protobufs/livekit_agent_simulation.proto @@ -263,6 +263,11 @@ message SimulationRun { // Samples per scenario; 0/unset = 1. Requires scenario_group. The run // holds scenarios × samples jobs, subject to the usual job cap. int32 samples = 14; + // The share of a scenario's samples that must pass for that scenario to + // pass, 0-1; 0/unset requires every sample. A scenario needs + // round(rate × samples) of them. The run fails if any scenario fails; + // pass@k and pass^k report over scenarios and neither gates. + double min_sample_pass_rate = 15; } message Response { string simulation_run_id = 1; @@ -386,6 +391,9 @@ message SimulationRun { optional CI ci = 22; // Samples per scenario; 1 when run once. int32 samples = 23; + // The share of a scenario's samples that had to pass for that scenario to + // pass; 0 when the run required every sample. + double min_sample_pass_rate = 24; message Usage { int32 text_turns_count = 1; From 7b82d58b70d969dc1ac6ca4ad887b5c36153489d Mon Sep 17 00:00:00 2001 From: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 17 Sep 2026 19:28:46 +0000 Subject: [PATCH 06/14] generated protobuf --- livekit/livekit_agent_simulation.pb.go | 46 ++- livekit/livekit_agent_simulation.twirp.go | 352 +++++++++++----------- 2 files changed, 212 insertions(+), 186 deletions(-) diff --git a/livekit/livekit_agent_simulation.pb.go b/livekit/livekit_agent_simulation.pb.go index ef86c3792..3856067e7 100644 --- a/livekit/livekit_agent_simulation.pb.go +++ b/livekit/livekit_agent_simulation.pb.go @@ -324,9 +324,12 @@ type SimulationRun struct { // The pipeline this run came from; unset when it did not come from one. Ci *SimulationRun_CI `protobuf:"bytes,22,opt,name=ci,proto3,oneof" json:"ci,omitempty"` // Samples per scenario; 1 when run once. - Samples int32 `protobuf:"varint,23,opt,name=samples,proto3" json:"samples,omitempty"` - unknownFields protoimpl.UnknownFields - sizeCache protoimpl.SizeCache + Samples int32 `protobuf:"varint,23,opt,name=samples,proto3" json:"samples,omitempty"` + // The share of a scenario's samples that had to pass for that scenario to + // pass; 0 when the run required every sample. + MinSamplePassRate float64 `protobuf:"fixed64,24,opt,name=min_sample_pass_rate,json=minSamplePassRate,proto3" json:"min_sample_pass_rate,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache } func (x *SimulationRun) Reset() { @@ -513,6 +516,13 @@ func (x *SimulationRun) GetSamples() int32 { return 0 } +func (x *SimulationRun) GetMinSamplePassRate() float64 { + if x != nil { + return x.MinSamplePassRate + } + return 0 +} + // A single scenario, mirroring one entry in a scenarios.yaml file. Scenarios // are no longer stored server-side; the yaml file is the source of truth. type Scenario struct { @@ -2319,9 +2329,14 @@ type SimulationRun_Create_Request struct { Ci *SimulationRun_CI `protobuf:"bytes,13,opt,name=ci,proto3,oneof" json:"ci,omitempty"` // Samples per scenario; 0/unset = 1. Requires scenario_group. The run // holds scenarios × samples jobs, subject to the usual job cap. - Samples int32 `protobuf:"varint,14,opt,name=samples,proto3" json:"samples,omitempty"` - unknownFields protoimpl.UnknownFields - sizeCache protoimpl.SizeCache + Samples int32 `protobuf:"varint,14,opt,name=samples,proto3" json:"samples,omitempty"` + // The share of a scenario's samples that must pass for that scenario to + // pass, 0-1; 0/unset requires every sample. A scenario needs + // round(rate × samples) of them. The run fails if any scenario fails; + // pass@k and pass^k report over scenarios and neither gates. + MinSamplePassRate float64 `protobuf:"fixed64,15,opt,name=min_sample_pass_rate,json=minSamplePassRate,proto3" json:"min_sample_pass_rate,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache } func (x *SimulationRun_Create_Request) Reset() { @@ -2438,6 +2453,13 @@ func (x *SimulationRun_Create_Request) GetSamples() int32 { return 0 } +func (x *SimulationRun_Create_Request) GetMinSamplePassRate() float64 { + if x != nil { + return x.MinSamplePassRate + } + return 0 +} + type SimulationRun_Create_Response struct { state protoimpl.MessageState `protogen:"open.v1"` SimulationRunId string `protobuf:"bytes,1,opt,name=simulation_run_id,json=simulationRunId,proto3" json:"simulation_run_id,omitempty"` @@ -3280,7 +3302,7 @@ const file_livekit_agent_simulation_proto_rawDesc = "" + "\n" + "suggestion\x18\x02 \x01(\tR\n" + "suggestion\x12\x14\n" + - "\x05label\x18\x03 \x01(\tR\x05label\"\xf2L\n" + + "\x05label\x18\x03 \x01(\tR\x05label\"\xd4M\n" + "\rSimulationRun\x12\x0e\n" + "\x02id\x18\x01 \x01(\tR\x02id\x12\x1d\n" + "\n" + @@ -3308,7 +3330,8 @@ const file_livekit_agent_simulation_proto_rawDesc = "" + "\vissue_count\x18\x15 \x01(\x05H\x00R\n" + "issueCount\x88\x01\x01\x12.\n" + "\x02ci\x18\x16 \x01(\v2\x19.livekit.SimulationRun.CIH\x01R\x02ci\x88\x01\x01\x12\x18\n" + - "\asamples\x18\x17 \x01(\x05R\asamples\x1a\x8f\x06\n" + + "\asamples\x18\x17 \x01(\x05R\asamples\x12/\n" + + "\x14min_sample_pass_rate\x18\x18 \x01(\x01R\x11minSamplePassRate\x1a\x8f\x06\n" + "\x03Job\x12\x0e\n" + "\x02id\x18\x01 \x01(\tR\x02id\x129\n" + "\x06status\x18\x02 \x01(\x0e2!.livekit.SimulationRun.Job.StatusR\x06status\x12\"\n" + @@ -3528,8 +3551,8 @@ const file_livekit_agent_simulation_proto_rawDesc = "" + "\x03ref\x18\x03 \x01(\tR\x03ref\x12!\n" + "\fpull_request\x18\x04 \x01(\tR\vpullRequest\x12\x17\n" + "\arun_url\x18\x05 \x01(\tR\x06runUrl\x12\x14\n" + - "\x05actor\x18\x06 \x01(\tR\x05actor\x1a\xc8\x05\n" + - "\x06Create\x1a\xaf\x04\n" + + "\x05actor\x18\x06 \x01(\tR\x05actor\x1a\xf9\x05\n" + + "\x06Create\x1a\xe0\x04\n" + "\aRequest\x12\x1d\n" + "\n" + "project_id\x18\x01 \x01(\tR\tprojectId\x12\x1d\n" + @@ -3546,7 +3569,8 @@ const file_livekit_agent_simulation_proto_rawDesc = "" + "\vpacket_loss\x18\f \x01(\bR\n" + "packetLoss\x12.\n" + "\x02ci\x18\r \x01(\v2\x19.livekit.SimulationRun.CIH\x02R\x02ci\x88\x01\x01\x12\x18\n" + - "\asamples\x18\x0e \x01(\x05R\asamplesB\x11\n" + + "\asamples\x18\x0e \x01(\x05R\asamples\x12/\n" + + "\x14min_sample_pass_rate\x18\x0f \x01(\x01R\x11minSamplePassRateB\x11\n" + "\x0f_scenario_groupB\x0e\n" + "\f_concurrencyB\x05\n" + "\x03_ciJ\x04\b\x03\x10\x04R\x11agent_description\x1a\x8b\x01\n" + diff --git a/livekit/livekit_agent_simulation.twirp.go b/livekit/livekit_agent_simulation.twirp.go index 8a982468c..3be627b75 100644 --- a/livekit/livekit_agent_simulation.twirp.go +++ b/livekit/livekit_agent_simulation.twirp.go @@ -2191,105 +2191,107 @@ func (s *agentSimulationServer) PathPrefix() string { } var twirpFileDescriptor10 = []byte{ - // 3995 bytes of a gzipped FileDescriptorProto + // 4026 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x5a, 0xcd, 0x6f, 0x1c, 0x47, 0x76, 0xd7, 0x7c, 0xcf, 0xbc, 0xe1, 0x7c, 0xb0, 0xf8, 0xa1, 0x51, 0xfb, 0x4b, 0x96, 0xed, 0x5d, 0xad, 0xed, 0xa5, 0x14, 0xae, 0xb5, 0x8e, 0xec, 0xf5, 0x26, 0x1c, 0x92, 0xd6, 0x50, 0x21, 0x29, 0xba, 0x66, 0x88, 0x64, 0x1d, 0x2c, 0x1a, 0xcd, 0xee, 0xd2, 0xb0, 0xa5, 0x9e, 0xae, 0x71, 0x57, 0xb5, 0x24, 0x2e, 0x90, 0x43, 0x80, 0x3d, 0x18, 0xc8, 0x21, 0x48, 0xfe, 0x82, 0x05, 0x82, 0x20, - 0xc8, 0x5e, 0x72, 0x08, 0x72, 0xcc, 0x25, 0x40, 0x80, 0xdc, 0x82, 0x20, 0xff, 0x45, 0x8e, 0x01, - 0x72, 0x0f, 0xea, 0x55, 0x75, 0x4f, 0xcf, 0x17, 0x49, 0x2d, 0x6c, 0x20, 0x87, 0xdc, 0xba, 0xde, - 0x7b, 0xf5, 0xd1, 0xaf, 0xde, 0xef, 0xbd, 0x57, 0xf5, 0x0a, 0xde, 0x0e, 0xfc, 0x17, 0xec, 0xb9, - 0x2f, 0x6d, 0x67, 0xc8, 0x42, 0x69, 0x0b, 0x7f, 0x14, 0x07, 0x8e, 0xf4, 0x79, 0xb8, 0x35, 0x8e, - 0xb8, 0xe4, 0xa4, 0x62, 0xf8, 0xd6, 0xbb, 0x28, 0x70, 0x6f, 0x46, 0x9c, 0x09, 0x91, 0xca, 0x5a, - 0x6f, 0x0f, 0x39, 0x1f, 0x06, 0xec, 0x1e, 0xb6, 0xce, 0xe2, 0xa7, 0xf7, 0xbc, 0x38, 0xca, 0x8c, - 0x65, 0xbd, 0x33, 0xcb, 0x97, 0xfe, 0x88, 0x09, 0xe9, 0x8c, 0xc6, 0x46, 0xe0, 0x56, 0x32, 0xba, - 0x1b, 0xf0, 0xd8, 0xd3, 0x73, 0x18, 0xd6, 0x7a, 0xc2, 0x1a, 0x71, 0x8f, 0x05, 0x42, 0x53, 0xef, - 0xfc, 0x47, 0x01, 0xd6, 0xfb, 0xe9, 0x92, 0x69, 0x1c, 0xf6, 0xe3, 0xd1, 0xc8, 0x89, 0x2e, 0xc8, - 0x26, 0x94, 0xc7, 0x8e, 0x10, 0xcc, 0xeb, 0xe4, 0x6e, 0xe7, 0xee, 0x96, 0xa8, 0x69, 0x29, 0xfa, - 0x53, 0xc7, 0x0f, 0x98, 0xd7, 0xc9, 0x6b, 0xba, 0x6e, 0x91, 0xb7, 0x00, 0x86, 0xdc, 0x0f, 0x87, - 0xf6, 0x4b, 0x16, 0x04, 0x9d, 0xc2, 0xed, 0xdc, 0xdd, 0x1a, 0xad, 0x21, 0xe5, 0x8f, 0x59, 0x10, - 0x28, 0xb6, 0xe4, 0xb6, 0x3f, 0x1a, 0x47, 0xfc, 0x05, 0xeb, 0x14, 0x35, 0x5b, 0xf2, 0x03, 0x4d, - 0x20, 0x9f, 0x43, 0xd9, 0x17, 0x22, 0x66, 0xa2, 0x53, 0xba, 0x5d, 0xb8, 0x5b, 0xdf, 0x7e, 0x6f, - 0xcb, 0xac, 0x76, 0x6b, 0xd1, 0xe2, 0xb6, 0x0e, 0x94, 0x2c, 0x35, 0x5d, 0xc8, 0x57, 0xb0, 0xe2, - 0x9e, 0x3b, 0xd2, 0x3e, 0xf7, 0x85, 0xe4, 0xd1, 0x45, 0xa7, 0x8c, 0x43, 0x6c, 0x5d, 0x3e, 0xc4, - 0xee, 0xb9, 0x23, 0x7b, 0xba, 0xc3, 0x7e, 0x28, 0xa3, 0x0b, 0x5a, 0x77, 0x27, 0x14, 0xeb, 0x6b, - 0x68, 0xcf, 0x0a, 0x90, 0x36, 0x14, 0x9e, 0xb3, 0x0b, 0x54, 0x47, 0x8d, 0xaa, 0x4f, 0x72, 0x1f, - 0x4a, 0x2f, 0x9c, 0x20, 0x66, 0xa8, 0x8a, 0xfa, 0xb6, 0x95, 0xce, 0xa8, 0xf5, 0xae, 0x46, 0xd8, - 0xe5, 0xa1, 0x64, 0xaf, 0x24, 0xd5, 0x82, 0x9f, 0xe5, 0x7f, 0x3f, 0x67, 0xd9, 0x50, 0xc2, 0xf5, - 0x93, 0xdb, 0x50, 0xf7, 0x98, 0x70, 0x23, 0x7f, 0xac, 0xd6, 0x66, 0x06, 0xce, 0x92, 0xc8, 0xdb, - 0x00, 0x22, 0x1e, 0x0e, 0x99, 0x40, 0x81, 0x3c, 0x0a, 0x64, 0x28, 0x64, 0x1d, 0x4a, 0x81, 0x73, - 0xc6, 0x12, 0x7d, 0xeb, 0xc6, 0x9d, 0xff, 0x3e, 0x84, 0xc6, 0xd4, 0x3f, 0x93, 0x26, 0xe4, 0x7d, - 0xcf, 0x4c, 0x90, 0xf7, 0x71, 0xb3, 0xc6, 0x11, 0x7f, 0xc6, 0x5c, 0x69, 0xfb, 0x9e, 0x19, 0xb7, - 0x66, 0x28, 0x07, 0x1e, 0x79, 0x00, 0x65, 0x21, 0x1d, 0x19, 0x0b, 0x1c, 0xb7, 0xb9, 0xfd, 0xd6, - 0x62, 0x55, 0x6e, 0xf5, 0x51, 0x88, 0x1a, 0x61, 0xf2, 0x11, 0xac, 0x6a, 0xa3, 0xce, 0xfe, 0x95, - 0xde, 0xea, 0x36, 0x32, 0xf6, 0x32, 0xbf, 0xb6, 0x0e, 0x25, 0x16, 0x45, 0x3c, 0xea, 0x94, 0xf4, - 0xd2, 0xb1, 0x41, 0x1e, 0x02, 0xb8, 0x11, 0x73, 0x24, 0xf3, 0x6c, 0x47, 0x76, 0xca, 0x46, 0xad, - 0xda, 0xea, 0xb7, 0x12, 0xab, 0xdf, 0x1a, 0x24, 0x56, 0x4f, 0x6b, 0x46, 0x7a, 0x47, 0x92, 0x2d, - 0x28, 0x3e, 0xe3, 0x67, 0xa2, 0x53, 0xc1, 0xdd, 0xb7, 0x96, 0x2c, 0xf9, 0x31, 0x3f, 0xa3, 0x28, - 0xa7, 0x74, 0xa0, 0x57, 0x1b, 0x3a, 0x23, 0xd6, 0xa9, 0x69, 0x1d, 0x20, 0xe5, 0xd8, 0x19, 0x31, - 0xf2, 0x05, 0x34, 0x85, 0xcb, 0x42, 0x27, 0xf2, 0xb9, 0x3d, 0x8c, 0x78, 0x3c, 0xee, 0x00, 0xae, - 0x66, 0x73, 0x32, 0xb0, 0x61, 0x3f, 0x52, 0x5c, 0xda, 0x10, 0xd9, 0x26, 0x79, 0x00, 0x55, 0x16, - 0x7a, 0xfa, 0x37, 0xea, 0x57, 0xfe, 0x46, 0x05, 0x65, 0x77, 0x24, 0x79, 0x03, 0x6a, 0xcf, 0xf8, - 0x99, 0xed, 0xf2, 0x38, 0x94, 0x9d, 0x15, 0x04, 0x58, 0xf5, 0x19, 0x3f, 0xdb, 0x55, 0x6d, 0xf2, - 0x2e, 0xac, 0x68, 0x10, 0x1a, 0x7e, 0x03, 0xf9, 0x75, 0x4d, 0x4b, 0x45, 0x34, 0x1e, 0x8d, 0x48, - 0x53, 0x8b, 0x68, 0x9a, 0x16, 0xf9, 0x21, 0xb4, 0xc2, 0x78, 0x94, 0xf1, 0x53, 0xa2, 0xd3, 0x42, - 0xa9, 0x66, 0x18, 0x8f, 0x26, 0xca, 0x12, 0x64, 0x1b, 0x4a, 0xb1, 0x70, 0x86, 0xac, 0xd3, 0xc6, - 0xf5, 0xbf, 0xb9, 0x44, 0xa3, 0xa7, 0x4a, 0x86, 0x6a, 0x51, 0x65, 0xd2, 0x2e, 0x0f, 0xdd, 0x38, - 0x8a, 0x58, 0xe8, 0x5e, 0x74, 0x56, 0xf5, 0xf4, 0x19, 0x12, 0xf9, 0x08, 0x8a, 0xca, 0x01, 0x75, - 0x08, 0x5a, 0xd6, 0xcd, 0x05, 0x83, 0x1e, 0x71, 0x8f, 0x51, 0x14, 0x22, 0x9f, 0x43, 0x65, 0xc4, - 0x64, 0xe4, 0xbb, 0xa2, 0xb3, 0x86, 0x8b, 0x78, 0x77, 0xc9, 0x22, 0x68, 0x1c, 0x1e, 0x69, 0x41, - 0x9a, 0xf4, 0x50, 0xba, 0x10, 0x1a, 0xec, 0xf6, 0xaf, 0x84, 0xf4, 0x3a, 0xeb, 0xb7, 0x73, 0x77, - 0x57, 0x68, 0xdd, 0xd0, 0xbe, 0x16, 0xd2, 0x23, 0xef, 0x43, 0x1d, 0x7d, 0x88, 0xd1, 0xd6, 0x86, - 0x5a, 0x6e, 0xef, 0x06, 0x05, 0x24, 0xa2, 0xba, 0xbe, 0xcd, 0xe5, 0xc8, 0x16, 0xe4, 0x5d, 0xbf, - 0xb3, 0x89, 0x0b, 0xb8, 0xb5, 0x64, 0x01, 0xbb, 0x07, 0xbd, 0x1c, 0xcd, 0xbb, 0xbe, 0x92, 0xef, - 0x40, 0x45, 0x38, 0xa3, 0x71, 0xc0, 0x44, 0xe7, 0x26, 0x2a, 0x20, 0x69, 0x5a, 0x7f, 0x59, 0x86, - 0xc2, 0x63, 0x7e, 0x36, 0x87, 0xc7, 0x87, 0x29, 0xe0, 0xf2, 0xa8, 0x96, 0x77, 0x97, 0x5b, 0xef, - 0x2c, 0xe8, 0xee, 0xc0, 0x8a, 0x1f, 0x0a, 0x19, 0xc5, 0xae, 0xde, 0x4b, 0xed, 0x09, 0xa6, 0x68, - 0x13, 0xac, 0x15, 0xb3, 0x58, 0xfb, 0x31, 0x10, 0x0d, 0x00, 0xf6, 0x6a, 0xcc, 0x5c, 0x69, 0x6c, - 0x41, 0xc3, 0x51, 0x03, 0x79, 0x3f, 0xc3, 0x98, 0xf8, 0x9a, 0x72, 0xc6, 0xd7, 0x10, 0x02, 0x45, - 0xe9, 0x0c, 0x35, 0xea, 0x6a, 0x14, 0xbf, 0x95, 0x11, 0x47, 0x9c, 0x8f, 0x34, 0xb0, 0xaa, 0x28, - 0x5d, 0x55, 0x04, 0xc4, 0xd5, 0x43, 0x00, 0x21, 0x9d, 0xc8, 0x20, 0x1c, 0xae, 0x46, 0xb8, 0x91, - 0xde, 0x91, 0xbf, 0x2b, 0xa6, 0x6e, 0x42, 0x05, 0x97, 0xe3, 0x7b, 0x88, 0xa8, 0x1a, 0x2d, 0xab, - 0xe6, 0x81, 0x47, 0x7e, 0x9a, 0x18, 0x78, 0x03, 0x07, 0xbb, 0x7d, 0x89, 0xd2, 0xa7, 0x8c, 0x3c, - 0x63, 0x95, 0xcd, 0x4b, 0xad, 0xf2, 0x31, 0x3f, 0x9b, 0xb3, 0xca, 0x77, 0xa0, 0x9e, 0xfa, 0x15, - 0xdf, 0x43, 0xe8, 0x29, 0x9f, 0x6e, 0x48, 0x07, 0x18, 0x60, 0xb5, 0xb9, 0x20, 0xee, 0x4a, 0xd4, - 0xb4, 0xac, 0x5f, 0x42, 0x09, 0x57, 0x41, 0xee, 0x42, 0x5b, 0x85, 0x14, 0x5b, 0xc6, 0x51, 0x28, - 0x8c, 0xe5, 0xea, 0x18, 0xdd, 0x54, 0xf4, 0x81, 0x22, 0x6b, 0xa8, 0x7f, 0x08, 0xab, 0x4e, 0xec, - 0xf9, 0x7c, 0x4a, 0x54, 0x87, 0xed, 0x16, 0x32, 0x26, 0xb2, 0x77, 0x38, 0x94, 0xb5, 0x65, 0x11, - 0x02, 0xcd, 0xfe, 0x60, 0x67, 0x70, 0xda, 0xb7, 0x4f, 0xf6, 0x8f, 0xf7, 0x0e, 0x8e, 0x1f, 0xb5, - 0x6f, 0x64, 0x68, 0xf4, 0xf4, 0xf8, 0x58, 0xd1, 0x72, 0x64, 0x1d, 0xda, 0x86, 0xb6, 0xfb, 0xe4, - 0xe8, 0xe4, 0x70, 0x7f, 0xb0, 0xbf, 0xd7, 0xce, 0x93, 0x55, 0x68, 0x18, 0xea, 0x97, 0x3b, 0x07, - 0x87, 0xfb, 0x7b, 0xed, 0x42, 0x56, 0x70, 0xe7, 0x78, 0x77, 0xff, 0x50, 0x51, 0x8b, 0x8f, 0x8b, - 0xd5, 0x5a, 0x1b, 0xac, 0xbf, 0xfb, 0x00, 0x60, 0xa2, 0x26, 0xf2, 0x31, 0xb4, 0xa4, 0x23, 0x9e, - 0xdb, 0x2e, 0x57, 0xff, 0x8c, 0x01, 0x44, 0x19, 0x74, 0xbe, 0x77, 0x83, 0x36, 0x15, 0x63, 0x37, - 0xa5, 0x2b, 0xa0, 0xdd, 0x85, 0x06, 0x7f, 0xc1, 0x22, 0x27, 0x08, 0x6c, 0xe1, 0xf2, 0x88, 0x21, - 0xc4, 0xf3, 0xbd, 0x1c, 0x5d, 0x31, 0xe4, 0xbe, 0xa2, 0x2a, 0xc9, 0x4f, 0xa1, 0x20, 0xa4, 0x44, + 0xc8, 0x5e, 0x83, 0x1c, 0x73, 0x09, 0x90, 0x73, 0x10, 0x24, 0x7f, 0x40, 0xce, 0xb9, 0xe7, 0x90, + 0x5b, 0x50, 0xaf, 0xaa, 0x7b, 0x7a, 0xbe, 0x48, 0x6a, 0x61, 0x03, 0x39, 0xe4, 0xd6, 0xf5, 0xde, + 0xab, 0x8f, 0x7e, 0xf5, 0x7e, 0xef, 0xbd, 0xaa, 0x57, 0xf0, 0x76, 0xe0, 0xbf, 0x60, 0xcf, 0x7d, + 0x69, 0x3b, 0x43, 0x16, 0x4a, 0x5b, 0xf8, 0xa3, 0x38, 0x70, 0xa4, 0xcf, 0xc3, 0xad, 0x71, 0xc4, + 0x25, 0x27, 0x15, 0xc3, 0xb7, 0xde, 0x45, 0x81, 0x7b, 0x33, 0xe2, 0x4c, 0x88, 0x54, 0xd6, 0x7a, + 0x7b, 0xc8, 0xf9, 0x30, 0x60, 0xf7, 0xb0, 0x75, 0x16, 0x3f, 0xbd, 0xe7, 0xc5, 0x51, 0x66, 0x2c, + 0xeb, 0x9d, 0x59, 0xbe, 0xf4, 0x47, 0x4c, 0x48, 0x67, 0x34, 0x36, 0x02, 0xb7, 0x92, 0xd1, 0xdd, + 0x80, 0xc7, 0x9e, 0x9e, 0xc3, 0xb0, 0xd6, 0x13, 0xd6, 0x88, 0x7b, 0x2c, 0x10, 0x9a, 0x7a, 0xe7, + 0xdf, 0x0a, 0xb0, 0xde, 0x4f, 0x97, 0x4c, 0xe3, 0xb0, 0x1f, 0x8f, 0x46, 0x4e, 0x74, 0x41, 0x36, + 0xa1, 0x3c, 0x76, 0x84, 0x60, 0x5e, 0x27, 0x77, 0x3b, 0x77, 0xb7, 0x44, 0x4d, 0x4b, 0xd1, 0x9f, + 0x3a, 0x7e, 0xc0, 0xbc, 0x4e, 0x5e, 0xd3, 0x75, 0x8b, 0xbc, 0x05, 0x30, 0xe4, 0x7e, 0x38, 0xb4, + 0x5f, 0xb2, 0x20, 0xe8, 0x14, 0x6e, 0xe7, 0xee, 0xd6, 0x68, 0x0d, 0x29, 0x7f, 0xcc, 0x82, 0x40, + 0xb1, 0x25, 0xb7, 0xfd, 0xd1, 0x38, 0xe2, 0x2f, 0x58, 0xa7, 0xa8, 0xd9, 0x92, 0x1f, 0x68, 0x02, + 0xf9, 0x1c, 0xca, 0xbe, 0x10, 0x31, 0x13, 0x9d, 0xd2, 0xed, 0xc2, 0xdd, 0xfa, 0xf6, 0x7b, 0x5b, + 0x66, 0xb5, 0x5b, 0x8b, 0x16, 0xb7, 0x75, 0xa0, 0x64, 0xa9, 0xe9, 0x42, 0xbe, 0x82, 0x15, 0xf7, + 0xdc, 0x91, 0xf6, 0xb9, 0x2f, 0x24, 0x8f, 0x2e, 0x3a, 0x65, 0x1c, 0x62, 0xeb, 0xf2, 0x21, 0x76, + 0xcf, 0x1d, 0xd9, 0xd3, 0x1d, 0xf6, 0x43, 0x19, 0x5d, 0xd0, 0xba, 0x3b, 0xa1, 0x58, 0x5f, 0x43, + 0x7b, 0x56, 0x80, 0xb4, 0xa1, 0xf0, 0x9c, 0x5d, 0xa0, 0x3a, 0x6a, 0x54, 0x7d, 0x92, 0xfb, 0x50, + 0x7a, 0xe1, 0x04, 0x31, 0x43, 0x55, 0xd4, 0xb7, 0xad, 0x74, 0x46, 0xad, 0x77, 0x35, 0xc2, 0x2e, + 0x0f, 0x25, 0x7b, 0x25, 0xa9, 0x16, 0xfc, 0x2c, 0xff, 0xfb, 0x39, 0xcb, 0x86, 0x12, 0xae, 0x9f, + 0xdc, 0x86, 0xba, 0xc7, 0x84, 0x1b, 0xf9, 0x63, 0xb5, 0x36, 0x33, 0x70, 0x96, 0x44, 0xde, 0x06, + 0x10, 0xf1, 0x70, 0xc8, 0x04, 0x0a, 0xe4, 0x51, 0x20, 0x43, 0x21, 0xeb, 0x50, 0x0a, 0x9c, 0x33, + 0x96, 0xe8, 0x5b, 0x37, 0xee, 0xfc, 0xc7, 0x11, 0x34, 0xa6, 0xfe, 0x99, 0x34, 0x21, 0xef, 0x7b, + 0x66, 0x82, 0xbc, 0x8f, 0x9b, 0x35, 0x8e, 0xf8, 0x33, 0xe6, 0x4a, 0xdb, 0xf7, 0xcc, 0xb8, 0x35, + 0x43, 0x39, 0xf0, 0xc8, 0x03, 0x28, 0x0b, 0xe9, 0xc8, 0x58, 0xe0, 0xb8, 0xcd, 0xed, 0xb7, 0x16, + 0xab, 0x72, 0xab, 0x8f, 0x42, 0xd4, 0x08, 0x93, 0x8f, 0x60, 0x55, 0x1b, 0x75, 0xf6, 0xaf, 0xf4, + 0x56, 0xb7, 0x91, 0xb1, 0x97, 0xf9, 0xb5, 0x75, 0x28, 0xb1, 0x28, 0xe2, 0x51, 0xa7, 0xa4, 0x97, + 0x8e, 0x0d, 0xf2, 0x10, 0xc0, 0x8d, 0x98, 0x23, 0x99, 0x67, 0x3b, 0xb2, 0x53, 0x36, 0x6a, 0xd5, + 0x56, 0xbf, 0x95, 0x58, 0xfd, 0xd6, 0x20, 0xb1, 0x7a, 0x5a, 0x33, 0xd2, 0x3b, 0x92, 0x6c, 0x41, + 0xf1, 0x19, 0x3f, 0x13, 0x9d, 0x0a, 0xee, 0xbe, 0xb5, 0x64, 0xc9, 0x8f, 0xf9, 0x19, 0x45, 0x39, + 0xa5, 0x03, 0xbd, 0xda, 0xd0, 0x19, 0xb1, 0x4e, 0x4d, 0xeb, 0x00, 0x29, 0xc7, 0xce, 0x88, 0x91, + 0x2f, 0xa0, 0x29, 0x5c, 0x16, 0x3a, 0x91, 0xcf, 0xed, 0x61, 0xc4, 0xe3, 0x71, 0x07, 0x70, 0x35, + 0x9b, 0x93, 0x81, 0x0d, 0xfb, 0x91, 0xe2, 0xd2, 0x86, 0xc8, 0x36, 0xc9, 0x03, 0xa8, 0xb2, 0xd0, + 0xd3, 0xbf, 0x51, 0xbf, 0xf2, 0x37, 0x2a, 0x28, 0xbb, 0x23, 0xc9, 0x1b, 0x50, 0x7b, 0xc6, 0xcf, + 0x6c, 0x97, 0xc7, 0xa1, 0xec, 0xac, 0x20, 0xc0, 0xaa, 0xcf, 0xf8, 0xd9, 0xae, 0x6a, 0x93, 0x77, + 0x61, 0x45, 0x83, 0xd0, 0xf0, 0x1b, 0xc8, 0xaf, 0x6b, 0x5a, 0x2a, 0xa2, 0xf1, 0x68, 0x44, 0x9a, + 0x5a, 0x44, 0xd3, 0xb4, 0xc8, 0x0f, 0xa1, 0x15, 0xc6, 0xa3, 0x8c, 0x9f, 0x12, 0x9d, 0x16, 0x4a, + 0x35, 0xc3, 0x78, 0x34, 0x51, 0x96, 0x20, 0xdb, 0x50, 0x8a, 0x85, 0x33, 0x64, 0x9d, 0x36, 0xae, + 0xff, 0xcd, 0x25, 0x1a, 0x3d, 0x55, 0x32, 0x54, 0x8b, 0x2a, 0x93, 0x76, 0x79, 0xe8, 0xc6, 0x51, + 0xc4, 0x42, 0xf7, 0xa2, 0xb3, 0xaa, 0xa7, 0xcf, 0x90, 0xc8, 0x47, 0x50, 0x54, 0x0e, 0xa8, 0x43, + 0xd0, 0xb2, 0x6e, 0x2e, 0x18, 0xf4, 0x88, 0x7b, 0x8c, 0xa2, 0x10, 0xf9, 0x1c, 0x2a, 0x23, 0x26, + 0x23, 0xdf, 0x15, 0x9d, 0x35, 0x5c, 0xc4, 0xbb, 0x4b, 0x16, 0x41, 0xe3, 0xf0, 0x48, 0x0b, 0xd2, + 0xa4, 0x87, 0xd2, 0x85, 0xd0, 0x60, 0xb7, 0x7f, 0x25, 0xa4, 0xd7, 0x59, 0xbf, 0x9d, 0xbb, 0xbb, + 0x42, 0xeb, 0x86, 0xf6, 0xb5, 0x90, 0x1e, 0x79, 0x1f, 0xea, 0xe8, 0x43, 0x8c, 0xb6, 0x36, 0xd4, + 0x72, 0x7b, 0x37, 0x28, 0x20, 0x11, 0xd5, 0xf5, 0x6d, 0x2e, 0x47, 0xb6, 0x20, 0xef, 0xfa, 0x9d, + 0x4d, 0x5c, 0xc0, 0xad, 0x25, 0x0b, 0xd8, 0x3d, 0xe8, 0xe5, 0x68, 0xde, 0xf5, 0x95, 0x7c, 0x07, + 0x2a, 0xc2, 0x19, 0x8d, 0x03, 0x26, 0x3a, 0x37, 0x51, 0x01, 0x49, 0x93, 0xdc, 0x83, 0xf5, 0x91, + 0x1f, 0xda, 0xba, 0x69, 0xab, 0x8d, 0xb3, 0x23, 0x47, 0xb2, 0x4e, 0xe7, 0x76, 0xee, 0x6e, 0x8e, + 0xae, 0x8e, 0xfc, 0xb0, 0x8f, 0xac, 0x13, 0x47, 0x08, 0xea, 0x48, 0x66, 0xfd, 0x65, 0x19, 0x0a, + 0x8f, 0xf9, 0xd9, 0x1c, 0x80, 0x1f, 0xa6, 0x08, 0xcd, 0xa3, 0x1e, 0xdf, 0x5d, 0x6e, 0xee, 0xb3, + 0x28, 0xbd, 0x03, 0x2b, 0x7e, 0x28, 0x64, 0x14, 0xbb, 0x7a, 0xf3, 0xb5, 0xeb, 0x98, 0xa2, 0x4d, + 0xc0, 0x59, 0xcc, 0x82, 0xf3, 0xc7, 0x40, 0x34, 0x62, 0xd8, 0xab, 0x31, 0x73, 0xa5, 0x31, 0x1e, + 0x8d, 0x5f, 0x8d, 0xfc, 0xfd, 0x0c, 0x63, 0xe2, 0x9c, 0xca, 0x19, 0xe7, 0x44, 0x08, 0x14, 0xa5, + 0x33, 0xd4, 0x30, 0xad, 0x51, 0xfc, 0x56, 0x56, 0x1f, 0x71, 0x3e, 0xd2, 0x48, 0xac, 0xa2, 0x74, + 0x55, 0x11, 0x10, 0x88, 0x0f, 0x01, 0x84, 0x74, 0x22, 0xe3, 0x12, 0xe0, 0x6a, 0x97, 0x60, 0xa4, + 0x77, 0xe4, 0xef, 0x0a, 0xc2, 0x9b, 0x50, 0xc1, 0xe5, 0xf8, 0x1e, 0x42, 0xb0, 0x46, 0xcb, 0xaa, + 0x79, 0xe0, 0x91, 0x9f, 0x26, 0x88, 0x68, 0xe0, 0x60, 0xb7, 0x2f, 0x51, 0xfa, 0x14, 0x2a, 0x32, + 0x66, 0xdc, 0xbc, 0xd4, 0x8c, 0x1f, 0xf3, 0xb3, 0x39, 0x33, 0x7e, 0x07, 0xea, 0xa9, 0x23, 0xf2, + 0x3d, 0xc4, 0xaa, 0x0a, 0x02, 0x86, 0x74, 0x80, 0x11, 0x59, 0x1b, 0x14, 0x02, 0xb5, 0x44, 0x4d, + 0xcb, 0xfa, 0x25, 0x94, 0x70, 0x15, 0xe4, 0x2e, 0xb4, 0x55, 0x0c, 0xb2, 0x65, 0x1c, 0x85, 0xc2, + 0x98, 0xba, 0x0e, 0xea, 0x4d, 0x45, 0x1f, 0x28, 0xb2, 0xf6, 0x0d, 0x1f, 0xc2, 0xaa, 0x13, 0x7b, + 0x3e, 0x9f, 0x12, 0xd5, 0x71, 0xbe, 0x85, 0x8c, 0x89, 0xec, 0x1d, 0x0e, 0x65, 0x6d, 0x59, 0x84, + 0x40, 0xb3, 0x3f, 0xd8, 0x19, 0x9c, 0xf6, 0xed, 0x93, 0xfd, 0xe3, 0xbd, 0x83, 0xe3, 0x47, 0xed, + 0x1b, 0x19, 0x1a, 0x3d, 0x3d, 0x3e, 0x56, 0xb4, 0x1c, 0x59, 0x87, 0xb6, 0xa1, 0xed, 0x3e, 0x39, + 0x3a, 0x39, 0xdc, 0x1f, 0xec, 0xef, 0xb5, 0xf3, 0x64, 0x15, 0x1a, 0x86, 0xfa, 0xe5, 0xce, 0xc1, + 0xe1, 0xfe, 0x5e, 0xbb, 0x90, 0x15, 0xdc, 0x39, 0xde, 0xdd, 0x3f, 0x54, 0xd4, 0xe2, 0xe3, 0x62, + 0xb5, 0xd6, 0x06, 0xeb, 0xef, 0x3e, 0x00, 0x98, 0xa8, 0x89, 0x7c, 0x0c, 0x2d, 0xe9, 0x88, 0xe7, + 0xb6, 0xcb, 0xd5, 0x3f, 0x63, 0xc4, 0x51, 0x06, 0x9d, 0xef, 0xdd, 0xa0, 0x4d, 0xc5, 0xd8, 0x4d, + 0xe9, 0x0a, 0x99, 0x77, 0xa1, 0xc1, 0x5f, 0xb0, 0xc8, 0x09, 0x02, 0x5b, 0xb8, 0x3c, 0x62, 0xe8, + 0x13, 0xf2, 0xbd, 0x1c, 0x5d, 0x31, 0xe4, 0xbe, 0xa2, 0x2a, 0xc9, 0x4f, 0xa1, 0x20, 0xa4, 0x44, 0xfb, 0xaf, 0x6f, 0x7f, 0x70, 0xe5, 0x76, 0x6d, 0xf5, 0x07, 0x03, 0xaa, 0x7a, 0xa8, 0x8e, 0x41, - 0x30, 0x42, 0x54, 0x5c, 0xab, 0xe3, 0xe1, 0xe1, 0x11, 0x55, 0x3d, 0x54, 0x47, 0x29, 0x85, 0x09, - 0x61, 0xd7, 0xe8, 0x38, 0x18, 0xf4, 0xa9, 0xea, 0x41, 0x28, 0xac, 0xb8, 0x3c, 0x7c, 0xc1, 0x22, + 0x30, 0x42, 0x54, 0x5c, 0xab, 0xe3, 0xe1, 0xe1, 0x11, 0x55, 0x3d, 0x54, 0x47, 0x29, 0x85, 0x89, + 0x79, 0xd7, 0xe8, 0x38, 0x18, 0xf4, 0xa9, 0xea, 0x41, 0x28, 0xac, 0xb8, 0x3c, 0x7c, 0xc1, 0x22, 0x81, 0x62, 0x9d, 0x0a, 0x8e, 0xb0, 0x75, 0xf5, 0x08, 0xbb, 0x99, 0x5e, 0x74, 0x6a, 0x0c, 0xf2, - 0x33, 0x28, 0xa1, 0x09, 0x74, 0x6a, 0x18, 0x1c, 0x7f, 0x70, 0x8d, 0xe5, 0xc4, 0x51, 0x48, 0x75, - 0x27, 0x65, 0xb2, 0xcf, 0x62, 0x6f, 0xc8, 0x74, 0xe6, 0x88, 0x98, 0xad, 0x51, 0x40, 0x92, 0xf2, - 0xd5, 0x01, 0xf9, 0x18, 0xc8, 0xb9, 0x23, 0xec, 0x88, 0x8d, 0xb8, 0x64, 0x49, 0x4a, 0x8b, 0x60, + 0x33, 0x28, 0xa1, 0x09, 0x74, 0x6a, 0x18, 0x4d, 0x7f, 0x70, 0x8d, 0xe5, 0xc4, 0x51, 0x48, 0x75, + 0x27, 0x65, 0xb2, 0xcf, 0x62, 0x6f, 0xc8, 0x74, 0xaa, 0x89, 0x98, 0xad, 0x51, 0x40, 0x92, 0x72, + 0xee, 0x01, 0xf9, 0x18, 0xc8, 0xb9, 0x23, 0xec, 0x88, 0x8d, 0xb8, 0x64, 0x49, 0x0e, 0x8c, 0x60, 0xab, 0xd2, 0xf6, 0xb9, 0x23, 0x28, 0x32, 0xfa, 0x9a, 0x4e, 0x3e, 0x84, 0xbc, 0xbc, 0x6f, 0x30, - 0x77, 0x19, 0x80, 0xf3, 0xf2, 0x3e, 0xf9, 0x40, 0xc7, 0x13, 0x5f, 0xb0, 0x90, 0x09, 0x0d, 0xb7, - 0x7c, 0x2f, 0x4f, 0xb3, 0x44, 0xb5, 0xbd, 0x0f, 0x61, 0x33, 0x0e, 0x43, 0xe6, 0x32, 0x21, 0x94, - 0xbb, 0x97, 0x9c, 0x07, 0xb6, 0xeb, 0x04, 0x81, 0x0e, 0x6d, 0xd5, 0x5e, 0x81, 0xae, 0x67, 0xf8, - 0x03, 0xce, 0x83, 0x5d, 0xc5, 0xd5, 0xce, 0xbd, 0xed, 0x87, 0x4f, 0x79, 0x34, 0x42, 0x2d, 0xd8, + 0x77, 0x19, 0x80, 0xf3, 0xf2, 0x3e, 0xf9, 0x40, 0x07, 0x20, 0x5f, 0xb0, 0x90, 0x09, 0x0d, 0xb7, + 0x7c, 0x2f, 0x4f, 0xb3, 0x44, 0xb5, 0xbd, 0x0f, 0x61, 0x33, 0x0e, 0x43, 0xe6, 0x32, 0x21, 0x54, + 0x7c, 0x90, 0x9c, 0x07, 0xb6, 0xeb, 0x04, 0x81, 0x8e, 0x85, 0xd5, 0x5e, 0x81, 0xae, 0x67, 0xf8, + 0x03, 0xce, 0x83, 0x5d, 0xc5, 0xd5, 0xd1, 0xa0, 0xed, 0x87, 0x4f, 0x79, 0x34, 0x42, 0x2d, 0xd8, 0x01, 0x17, 0x02, 0x81, 0x57, 0xed, 0x15, 0x69, 0x2b, 0xc3, 0x39, 0xe4, 0x7a, 0xaa, 0x9f, 0xc2, - 0x7a, 0xc4, 0xbc, 0x38, 0xf4, 0x1c, 0x95, 0xbd, 0x4b, 0x47, 0xb2, 0x11, 0x0b, 0xa5, 0xc0, 0x50, - 0x57, 0xed, 0x95, 0xe8, 0x5a, 0xca, 0xed, 0xa7, 0x4c, 0x6d, 0x81, 0x1b, 0x63, 0xce, 0x23, 0xfb, - 0x9b, 0x58, 0xe7, 0x6e, 0xf6, 0x37, 0xb1, 0x13, 0xf8, 0xf2, 0x02, 0x03, 0x61, 0xb5, 0x57, 0xa6, + 0x7a, 0xc4, 0xbc, 0x38, 0xf4, 0x1c, 0x95, 0xee, 0x4b, 0x47, 0xb2, 0x11, 0x0b, 0xa5, 0xc0, 0xd8, + 0x58, 0xed, 0x95, 0xe8, 0x5a, 0xca, 0xed, 0xa7, 0x4c, 0x6d, 0x81, 0x1b, 0x63, 0xce, 0x23, 0xfb, + 0x9b, 0x58, 0x27, 0x7b, 0xf6, 0x37, 0xb1, 0x13, 0xf8, 0xf2, 0x02, 0x23, 0x67, 0xb5, 0x57, 0xa6, 0x6b, 0x8a, 0xfd, 0x95, 0xe1, 0x7e, 0xa5, 0x99, 0xaa, 0xe3, 0xcf, 0xa1, 0x93, 0xdd, 0x4b, 0x7b, 0x1c, 0xf1, 0x61, 0x64, 0x54, 0xbc, 0x86, 0xfa, 0xa8, 0xd0, 0x9b, 0x59, 0x89, 0x93, 0x89, 0xc0, 0xb7, 0xb9, 0x9c, 0xf5, 0xd7, 0x65, 0x28, 0xf4, 0x07, 0x03, 0xb2, 0x01, 0x85, 0x97, 0x2c, 0x42, 0x4f, 0xa1, 0xe0, 0xa4, 0x1a, 0x6a, 0xf8, 0x5b, 0x50, 0x7a, 0xc9, 0x23, 0x4f, 0x47, 0x9e, 0x46, 0x2f, 0x47, 0x75, 0x53, 0xb1, 0xde, 0x87, 0xba, 0xfa, 0xb6, 0x31, 0x5c, 0xe8, 0xc8, 0xd2, 0xe8, 0xe5, 0x29, 0x28, 0xe2, 0x3e, 0xd2, 0x94, 0xd4, 0x06, 0x14, 0x5c, 0xa6, 0x43, 0x4b, 0xbe, 0x57, - 0xa0, 0xaa, 0x61, 0xc6, 0x75, 0xcf, 0x9d, 0x48, 0x60, 0x66, 0xd5, 0xe8, 0x15, 0xa9, 0x6e, 0x9a, + 0xa0, 0xaa, 0x61, 0xc6, 0x75, 0xcf, 0x9d, 0x48, 0x60, 0x2a, 0xd6, 0xe8, 0x15, 0xa9, 0x6e, 0x9a, 0x71, 0xd5, 0x77, 0x32, 0x2e, 0xa0, 0x40, 0x89, 0x82, 0x22, 0x4e, 0xc6, 0xfd, 0x00, 0x56, 0x84, - 0x54, 0xb9, 0x64, 0xe0, 0x5c, 0xd8, 0x23, 0x81, 0x81, 0xa4, 0xd1, 0x2b, 0x53, 0x10, 0x52, 0xee, + 0x54, 0xc9, 0x67, 0xe0, 0x5c, 0xd8, 0x23, 0x81, 0x81, 0xa4, 0xd1, 0x2b, 0x53, 0x10, 0x52, 0xee, 0x29, 0xe2, 0x11, 0x8a, 0x6d, 0x03, 0x61, 0xa1, 0xf4, 0xe5, 0x85, 0x1d, 0x31, 0x97, 0x0f, 0x43, 0x1f, 0x41, 0x53, 0x37, 0x8a, 0x59, 0xd5, 0x3c, 0x3a, 0x61, 0x99, 0x3d, 0x47, 0xba, 0xcf, 0x84, 0x1d, 0x4b, 0xc9, 0x22, 0xa6, 0x43, 0x43, 0xa3, 0x57, 0xa5, 0xad, 0x84, 0x73, 0xaa, 0x19, 0x4a, @@ -2312,21 +2314,21 @@ var twirpFileDescriptor10 = []byte{ 0x0c, 0x68, 0x97, 0xa2, 0x5a, 0xc3, 0xaa, 0xb0, 0x04, 0xd5, 0x35, 0x1c, 0xb7, 0x38, 0x8f, 0xea, 0x04, 0xb4, 0x4b, 0x51, 0x5d, 0x4f, 0xe0, 0x3a, 0x8d, 0xea, 0xc5, 0x70, 0x6d, 0xbe, 0x36, 0x5c, 0x5b, 0xaf, 0x0f, 0xd7, 0xf6, 0x6b, 0xc2, 0x75, 0xf5, 0x77, 0x82, 0x2b, 0xf9, 0x0e, 0xe0, 0xba, - 0x76, 0x3d, 0xb8, 0x1a, 0x1b, 0x52, 0xa6, 0xf1, 0x9d, 0x40, 0xf7, 0xff, 0x24, 0x52, 0xff, 0xa7, + 0x76, 0x3d, 0xb8, 0x1a, 0x1b, 0x52, 0xa6, 0xf1, 0x9d, 0x40, 0xf7, 0xff, 0x24, 0x52, 0xff, 0xbb, 0x02, 0x2b, 0xd9, 0xcc, 0x06, 0x61, 0x17, 0x47, 0xa1, 0x2d, 0x9d, 0xe7, 0x7e, 0x38, 0x34, 0x89, 0x5f, 0x12, 0xd5, 0x5a, 0x8a, 0x35, 0x40, 0x4e, 0x9a, 0xfb, 0x7d, 0x0e, 0x9d, 0x73, 0xe6, 0x28, - 0x45, 0x6c, 0x33, 0x3b, 0x70, 0xa4, 0x3a, 0x86, 0xda, 0xe3, 0x07, 0xf7, 0x13, 0x44, 0x95, 0x7a, + 0x45, 0x6c, 0x33, 0x3b, 0x70, 0xa4, 0x3a, 0xb7, 0xda, 0xe3, 0x07, 0xf7, 0x13, 0x44, 0x95, 0x7a, 0x39, 0xba, 0x8e, 0x12, 0xfb, 0xdb, 0xec, 0x50, 0xf3, 0x4f, 0x1e, 0xdc, 0xd7, 0xf8, 0x5a, 0xdc, 0xf9, 0xe1, 0x03, 0xd5, 0xb9, 0x80, 0x9d, 0xf3, 0xf3, 0x9d, 0x1f, 0x3e, 0xb8, 0xb4, 0xf3, 0x43, 0xd5, 0xb9, 0x88, 0x9d, 0x0b, 0x0b, 0x3a, 0x3f, 0xd4, 0x9d, 0x3f, 0x86, 0xb6, 0xf4, 0x47, 0xcc, 0x96, 0xdc, 0xbe, 0xf0, 0x59, 0xe0, 0xa9, 0x4e, 0x25, 0x13, 0x4b, 0x1b, 0x8a, 0x33, 0xe0, 0xbf, 0x50, 0xf4, 0x64, 0xaa, 0x9b, 0x8c, 0x4b, 0x7b, 0xe4, 0x8b, 0x71, 0xc4, 0x3c, 0x1f, 0x0f, 0x7e, - 0x26, 0xe1, 0x2f, 0x1b, 0xa8, 0x6e, 0x30, 0x2e, 0x8f, 0xb2, 0xfc, 0xf4, 0x80, 0x6b, 0xf2, 0xe8, - 0xc0, 0x19, 0xdb, 0x78, 0xdd, 0x88, 0x5e, 0x23, 0xdf, 0x2b, 0xeb, 0x3c, 0x3a, 0x70, 0xc6, 0x54, + 0x26, 0xe1, 0x2f, 0x1b, 0xa8, 0x6e, 0x30, 0x2e, 0x8f, 0xb2, 0xfc, 0xf4, 0x44, 0x6c, 0xf2, 0xe8, + 0xc0, 0x19, 0xdb, 0x78, 0x3f, 0x89, 0x5e, 0x23, 0xdf, 0x2b, 0xeb, 0x3c, 0x3a, 0x70, 0xc6, 0x54, 0x51, 0x8d, 0xcf, 0x4b, 0x24, 0xc5, 0x98, 0x31, 0xf7, 0x7c, 0x12, 0x99, 0x2b, 0xb4, 0x65, 0x58, 0x7d, 0xe4, 0xe8, 0x75, 0x7d, 0x04, 0x2d, 0xc9, 0xa5, 0x13, 0x64, 0xc4, 0x6b, 0x06, 0xba, 0x0d, 0x64, 0x64, 0x85, 0x3f, 0x85, 0x0d, 0xe7, 0xe5, 0xf3, 0x97, 0x4a, 0x63, 0xc2, 0x0f, 0x58, 0xe8, - 0x26, 0x07, 0xf3, 0xba, 0x81, 0xee, 0x9a, 0x61, 0xf7, 0x35, 0x37, 0x73, 0x42, 0x6f, 0xc7, 0xa1, + 0x26, 0x27, 0xf9, 0xba, 0x81, 0xee, 0x9a, 0x61, 0xf7, 0x35, 0x37, 0x73, 0xa4, 0x6f, 0xc7, 0xa1, 0x13, 0x8a, 0x97, 0xca, 0xa6, 0xf4, 0x69, 0xc7, 0x04, 0x74, 0xa0, 0xad, 0x09, 0x07, 0x8f, 0x3b, 0x4a, 0xfe, 0x0b, 0xe8, 0x3c, 0x75, 0x02, 0xc1, 0x6c, 0x3f, 0x94, 0x2c, 0x8a, 0xe2, 0x71, 0x46, 0x5d, 0x0d, 0x03, 0xe0, 0x4d, 0x94, 0x38, 0xc8, 0x08, 0xa4, 0xd3, 0xfd, 0x08, 0x9a, 0xd9, 0x1d, @@ -2336,7 +2338,7 @@ var twirpFileDescriptor10 = []byte{ 0x77, 0x6e, 0x87, 0xbb, 0x04, 0xda, 0xf6, 0xcc, 0x36, 0x76, 0x3b, 0xb0, 0x69, 0x2f, 0xdc, 0x2d, 0x5c, 0xc6, 0xec, 0x76, 0xe0, 0xc2, 0x97, 0xe9, 0xbc, 0xbb, 0x0a, 0x2d, 0x7b, 0x5a, 0xa3, 0xd6, 0x6f, 0x2b, 0x50, 0x54, 0xfb, 0x45, 0xd6, 0xa1, 0xe4, 0x87, 0x1e, 0x7b, 0xa5, 0x03, 0x34, 0xd5, - 0x0d, 0xf2, 0x11, 0x14, 0x23, 0x1e, 0x30, 0x73, 0x5f, 0x72, 0x73, 0xc1, 0xcd, 0x2b, 0xe5, 0x01, + 0x0d, 0xf2, 0x11, 0x14, 0x23, 0x1e, 0x30, 0x73, 0x5f, 0x72, 0x73, 0xc1, 0x55, 0x2d, 0xe5, 0x01, 0xa3, 0x28, 0x44, 0xde, 0x86, 0x2a, 0xde, 0x22, 0x24, 0xa0, 0x55, 0x31, 0xb4, 0x82, 0x14, 0x6d, 0x77, 0x16, 0x94, 0x59, 0xe8, 0x25, 0xa8, 0xc4, 0x24, 0x98, 0x85, 0x06, 0x58, 0xb3, 0x69, 0x68, 0x29, 0xc9, 0x82, 0xa7, 0xd3, 0xd0, 0xf7, 0xa0, 0x1e, 0x04, 0xa3, 0x24, 0xbc, 0x1b, 0xcc, 0x15, @@ -2356,90 +2358,90 @@ var twirpFileDescriptor10 = []byte{ 0x9b, 0xf6, 0xe2, 0x63, 0x3b, 0xfe, 0xc4, 0xec, 0xb1, 0x1c, 0x7f, 0x79, 0xd1, 0xd9, 0x1b, 0x5d, 0xd1, 0xc2, 0xc3, 0x35, 0x7a, 0x9d, 0x65, 0xa7, 0xe7, 0xc7, 0xc5, 0x6a, 0xae, 0x9d, 0x7f, 0x5c, 0xac, 0xe6, 0xdb, 0x05, 0xda, 0x74, 0x5c, 0x37, 0x8e, 0x1c, 0xf7, 0x42, 0xaf, 0x95, 0xb6, 0xd9, - 0xab, 0x31, 0x8b, 0x7c, 0xf4, 0x6a, 0x48, 0xb1, 0xfe, 0xb3, 0x08, 0x30, 0xb9, 0x66, 0x26, 0xbf, - 0x07, 0x24, 0xbd, 0xc7, 0x1b, 0x3b, 0x42, 0x28, 0xff, 0xc9, 0xd2, 0xcb, 0xaa, 0x76, 0xc2, 0x3b, - 0x71, 0x84, 0xa0, 0x8e, 0x64, 0x0b, 0xaf, 0xab, 0xe0, 0xff, 0xaf, 0xab, 0x16, 0x5e, 0x57, 0xcd, - 0xe0, 0xbf, 0xba, 0xe4, 0xd6, 0xe7, 0xb2, 0x9b, 0x91, 0x9a, 0xb9, 0x8e, 0xb8, 0xe4, 0x66, 0x04, - 0xf3, 0xdd, 0xf9, 0x3d, 0xbc, 0x86, 0xe1, 0x7e, 0x87, 0x56, 0xf5, 0x37, 0x39, 0xc8, 0xef, 0x1e, - 0x10, 0x0b, 0xaa, 0xe3, 0x88, 0xbf, 0xf0, 0x3d, 0x73, 0x43, 0x53, 0xa3, 0x69, 0x9b, 0xbc, 0x05, - 0xe0, 0xf2, 0xd1, 0xc8, 0x97, 0xb6, 0x38, 0x77, 0x92, 0x62, 0x9d, 0xa6, 0xf4, 0xcf, 0x1d, 0xd2, - 0x86, 0x42, 0xc4, 0x9e, 0x9a, 0x7b, 0x7f, 0xf5, 0x89, 0x75, 0xa2, 0x38, 0x08, 0xec, 0x88, 0x21, - 0x1e, 0xcc, 0xad, 0x7f, 0x5d, 0xd1, 0xa8, 0x26, 0xe1, 0x9d, 0x78, 0x1c, 0xda, 0x71, 0x14, 0x98, - 0x0b, 0xff, 0x72, 0x14, 0x87, 0xa7, 0x51, 0xa0, 0xa2, 0xad, 0xe3, 0x4a, 0x1e, 0x25, 0xb7, 0xfc, - 0xd8, 0xb0, 0xfe, 0xad, 0x04, 0xe5, 0x5d, 0xac, 0xb4, 0x59, 0xff, 0x50, 0x84, 0x4a, 0x32, 0xca, - 0x74, 0x19, 0x31, 0x37, 0x5b, 0x46, 0x9c, 0xae, 0xb0, 0xe5, 0x67, 0x2b, 0x6c, 0x0b, 0x0a, 0x51, - 0xc5, 0x85, 0x85, 0xa8, 0x4d, 0x28, 0x47, 0x6c, 0xa8, 0x76, 0xb5, 0x6c, 0xd6, 0x8a, 0x2d, 0xd2, - 0x9d, 0x2b, 0xd1, 0x55, 0x2e, 0x2b, 0xd1, 0xf5, 0x6e, 0xcc, 0x14, 0xe9, 0x32, 0xa1, 0x26, 0x29, - 0x58, 0x55, 0xcd, 0x79, 0x20, 0x4b, 0xd4, 0x69, 0xac, 0xae, 0x5a, 0xd5, 0xae, 0x53, 0xb5, 0xfa, - 0x11, 0xb4, 0xcf, 0x1c, 0xf7, 0xb9, 0x5a, 0x52, 0xe8, 0xd9, 0x21, 0xf7, 0x85, 0x86, 0x7a, 0x95, - 0xb6, 0x26, 0xf4, 0x63, 0x45, 0x26, 0x9f, 0xc0, 0x66, 0xc0, 0x5f, 0x26, 0xee, 0xca, 0x1e, 0xf9, - 0x6e, 0xc4, 0xc7, 0xe7, 0x3c, 0x64, 0x18, 0x80, 0xab, 0x74, 0x3d, 0xe0, 0x2f, 0xcd, 0x5d, 0xe0, - 0x51, 0xca, 0x23, 0xef, 0x40, 0x7d, 0xec, 0xb8, 0xcf, 0x99, 0xd4, 0xd7, 0x95, 0xfa, 0xa2, 0x15, - 0x34, 0xe9, 0x90, 0x0b, 0x61, 0x2a, 0x56, 0x8d, 0xab, 0x2a, 0x56, 0xf9, 0x05, 0x15, 0xab, 0xe6, - 0x54, 0xc5, 0x0a, 0x23, 0xcf, 0xb4, 0x92, 0x53, 0x34, 0x18, 0xf5, 0x74, 0x4b, 0x50, 0xb0, 0x5d, - 0xff, 0x71, 0xb1, 0x5a, 0x68, 0x17, 0xe9, 0x7c, 0x05, 0xd8, 0xfa, 0x8b, 0x1c, 0x54, 0x29, 0x13, - 0x63, 0x1e, 0x0a, 0x46, 0x3e, 0x84, 0xd5, 0xc9, 0x86, 0xdb, 0xca, 0x06, 0x53, 0xcb, 0x69, 0x89, - 0xec, 0xfa, 0x0e, 0x3c, 0xd2, 0x87, 0xcd, 0x71, 0xc4, 0x84, 0x3f, 0x0c, 0x99, 0x67, 0x8f, 0xb9, - 0x90, 0xa9, 0x45, 0xeb, 0x7a, 0xfb, 0xa4, 0x2c, 0x7d, 0x92, 0x88, 0x9d, 0x70, 0x21, 0x8d, 0x75, - 0xd2, 0xf5, 0xf1, 0x02, 0xaa, 0xf5, 0x9b, 0x1c, 0xac, 0xed, 0xf2, 0xf0, 0xa9, 0x1f, 0x8d, 0xfa, - 0x3c, 0x8e, 0x5c, 0x76, 0x3a, 0x0e, 0xb8, 0xe3, 0x59, 0x7f, 0x76, 0x6d, 0xb3, 0x5e, 0xf8, 0x0b, - 0xf9, 0xc5, 0xbf, 0xf0, 0x43, 0x68, 0xb9, 0xdc, 0x63, 0xea, 0x88, 0x1b, 0x5d, 0x8c, 0xb9, 0x1f, - 0x4a, 0x03, 0xd4, 0xa6, 0x22, 0xef, 0xa7, 0x54, 0x0b, 0x26, 0x3a, 0xb2, 0xfe, 0x2a, 0x07, 0x85, - 0x47, 0x4c, 0x5a, 0x83, 0xef, 0x63, 0x49, 0xd6, 0x27, 0x99, 0xdd, 0xb8, 0x0b, 0x85, 0x28, 0xd6, - 0x2f, 0x0f, 0xa6, 0x60, 0x93, 0xed, 0x42, 0x95, 0x88, 0xf5, 0xaf, 0x45, 0x28, 0x1e, 0xfa, 0x42, - 0x5a, 0xff, 0x52, 0xb8, 0xf6, 0xaa, 0x3e, 0x9b, 0xa9, 0x6a, 0x5e, 0xfe, 0x8c, 0xa0, 0x77, 0x23, - 0xa9, 0x69, 0x2a, 0x8b, 0xfc, 0x19, 0xc0, 0xd8, 0x19, 0x32, 0x7d, 0x2f, 0x86, 0x3a, 0xab, 0x6f, - 0x77, 0xd2, 0xfe, 0x03, 0x45, 0x3d, 0x71, 0x86, 0x7e, 0x88, 0x83, 0xf4, 0x72, 0xb4, 0xa6, 0xa4, - 0x91, 0xac, 0x23, 0x83, 0x2e, 0x32, 0x62, 0x22, 0x64, 0xc2, 0xe8, 0x25, 0xa5, 0x86, 0x5e, 0xde, - 0x94, 0x19, 0x15, 0x45, 0xf5, 0xff, 0x0c, 0x2b, 0x8d, 0xba, 0x77, 0xe9, 0xca, 0xde, 0x05, 0xac, - 0x35, 0x26, 0x7d, 0xef, 0x4c, 0x79, 0x3d, 0xf4, 0x58, 0x2a, 0xc7, 0x4f, 0xfd, 0x9e, 0xce, 0x5c, - 0xb5, 0x3b, 0xa9, 0x5c, 0xea, 0x4e, 0x7a, 0x25, 0xed, 0x50, 0x54, 0xac, 0x52, 0x99, 0xa5, 0xd6, - 0x0e, 0xe6, 0x5e, 0x13, 0xdd, 0x60, 0x73, 0xf2, 0xb3, 0x98, 0x8f, 0x26, 0x6b, 0x47, 0xde, 0x64, - 0x31, 0xdd, 0x0a, 0x94, 0xb0, 0x86, 0x63, 0xbd, 0x9a, 0x42, 0x64, 0x31, 0x8a, 0x43, 0xd1, 0xc9, - 0x61, 0x69, 0x68, 0x99, 0x11, 0xa0, 0x0c, 0xf9, 0x43, 0x68, 0x85, 0xec, 0x95, 0xcc, 0x4c, 0x6f, - 0xa0, 0xb8, 0x74, 0x6b, 0x68, 0x43, 0x75, 0x38, 0x49, 0x36, 0xc7, 0xfa, 0xe7, 0x22, 0x94, 0xf1, - 0x1c, 0x2d, 0xac, 0x7f, 0xcf, 0x5f, 0xdb, 0x92, 0x1e, 0x4e, 0xed, 0x67, 0xfe, 0x9a, 0x45, 0x63, - 0xd5, 0x36, 0x45, 0x63, 0xdd, 0xb1, 0x70, 0xad, 0xa2, 0x31, 0x76, 0x9b, 0xd8, 0x6e, 0xf1, 0xb5, - 0x6d, 0x77, 0xda, 0x02, 0x30, 0xbe, 0x2a, 0x0b, 0x5d, 0x68, 0x01, 0xe5, 0xcb, 0x2d, 0x20, 0xbf, - 0xd4, 0x02, 0x16, 0x6d, 0xeb, 0x9f, 0x67, 0x3d, 0xed, 0xcf, 0xa1, 0x72, 0x16, 0xab, 0x88, 0x90, - 0x6c, 0xed, 0xfb, 0xcb, 0x02, 0x01, 0x6e, 0xc7, 0x56, 0x17, 0x85, 0x69, 0xd2, 0x49, 0x29, 0x0e, - 0x4f, 0xea, 0x2f, 0x9c, 0xc0, 0x68, 0xfc, 0xd6, 0x9c, 0xe2, 0xf6, 0xcc, 0xf3, 0x34, 0x9a, 0x8a, - 0x5a, 0xbf, 0x84, 0xb2, 0x1e, 0x89, 0x7c, 0x01, 0x2b, 0x7a, 0x2c, 0x6d, 0x9e, 0xc6, 0xcb, 0x5c, - 0xa6, 0xfd, 0xba, 0x96, 0xef, 0x2b, 0x71, 0x95, 0x89, 0x4c, 0x0a, 0xd6, 0x45, 0xaa, 0x1b, 0xd6, - 0x33, 0x28, 0xef, 0x3a, 0xa1, 0xcb, 0x82, 0xef, 0xc9, 0x3b, 0x66, 0xfd, 0xf0, 0xf7, 0x5c, 0x71, - 0xff, 0xdb, 0x5c, 0x5a, 0x72, 0xbf, 0x05, 0x1b, 0xd3, 0x25, 0x77, 0xfb, 0xf4, 0xe4, 0xf0, 0xc9, - 0xce, 0x5e, 0xfb, 0x06, 0xd9, 0x80, 0x55, 0xc3, 0x7a, 0xb4, 0x7f, 0xbc, 0x4f, 0x77, 0x06, 0xba, - 0xf8, 0x3e, 0x5f, 0x90, 0xcf, 0x93, 0x4d, 0x20, 0x86, 0xd6, 0x3f, 0x3d, 0x3a, 0xda, 0xa1, 0x07, - 0x5f, 0x2b, 0x7a, 0x61, 0x61, 0xa1, 0xbe, 0x38, 0x5f, 0xa8, 0x2f, 0x2d, 0x2c, 0xd4, 0x97, 0x31, - 0xde, 0x67, 0x5e, 0xc9, 0x4c, 0xe2, 0x7d, 0xb5, 0x5d, 0xa3, 0x15, 0xf3, 0x9c, 0xe6, 0xce, 0x3f, - 0x15, 0xa0, 0x9a, 0xa4, 0x5b, 0x93, 0xb7, 0x22, 0xb9, 0xec, 0x5b, 0x91, 0xd9, 0xa7, 0x2a, 0xf9, - 0x05, 0x4f, 0x55, 0x16, 0x3f, 0x4a, 0x29, 0x2c, 0x7b, 0x94, 0x72, 0xcf, 0x3c, 0x3f, 0x29, 0xa2, - 0x85, 0xbf, 0x31, 0x97, 0xf8, 0x6d, 0x0d, 0x9c, 0xa1, 0xd0, 0xef, 0xfb, 0xf4, 0xdb, 0x14, 0x0b, - 0xaa, 0xb1, 0x60, 0x91, 0xe7, 0x48, 0xc7, 0x64, 0xbe, 0x69, 0xdb, 0xbc, 0xca, 0x29, 0x27, 0xaf, - 0x72, 0xac, 0xbf, 0xcf, 0xc1, 0xaa, 0xce, 0x7a, 0xbf, 0x8c, 0xf8, 0xc8, 0x94, 0xaf, 0xad, 0x5f, - 0x5c, 0xdb, 0xee, 0x32, 0x0f, 0x4f, 0xf2, 0x53, 0x0f, 0x4f, 0x26, 0x09, 0x6d, 0x21, 0x9b, 0xd0, - 0x5a, 0x0f, 0x33, 0xf0, 0xfd, 0x31, 0x54, 0x93, 0xbc, 0xcb, 0x20, 0x67, 0x75, 0xee, 0xef, 0x68, - 0x2a, 0x62, 0x7d, 0x0a, 0xb5, 0xf4, 0x57, 0x17, 0xbc, 0x54, 0x5c, 0xcf, 0xbe, 0x54, 0xac, 0x65, - 0x5e, 0x23, 0xde, 0xf1, 0xa0, 0x31, 0x95, 0x25, 0x13, 0x02, 0x45, 0xf4, 0x5b, 0xba, 0x37, 0x7e, - 0x93, 0x7b, 0x50, 0x4b, 0x66, 0x52, 0xdb, 0x56, 0x58, 0xbc, 0x9a, 0x89, 0x8c, 0x51, 0x65, 0x21, - 0x51, 0xe5, 0x9d, 0x7f, 0xcc, 0x01, 0x99, 0x78, 0x9d, 0x3d, 0x5f, 0x8c, 0x1d, 0xe9, 0x9e, 0xbf, - 0x56, 0x36, 0xb8, 0x01, 0xe5, 0x67, 0xfc, 0x6c, 0xa2, 0xcc, 0xd2, 0x33, 0x7e, 0x76, 0xe0, 0x4d, - 0xe9, 0xa9, 0x70, 0xa5, 0x9e, 0xd2, 0x44, 0xbe, 0x78, 0x8d, 0x44, 0xfe, 0xc3, 0xa7, 0xd0, 0x9c, - 0xa6, 0x93, 0x77, 0xe0, 0x8d, 0xfe, 0xc1, 0xd1, 0xe9, 0xe1, 0xce, 0xe0, 0xe0, 0xc9, 0xb1, 0x7d, - 0xf4, 0x64, 0x6f, 0xdf, 0x3e, 0x3d, 0xee, 0x9f, 0xec, 0xef, 0x1e, 0x7c, 0x79, 0xb0, 0xaf, 0xe0, - 0xda, 0x81, 0xf5, 0x59, 0x81, 0xc1, 0xfe, 0x9f, 0x0c, 0xda, 0x39, 0xc4, 0xf8, 0x0c, 0x67, 0xe7, - 0x74, 0xef, 0xe0, 0x49, 0x3b, 0xbf, 0xfd, 0xeb, 0x32, 0xb4, 0x76, 0x94, 0x6d, 0x4f, 0x66, 0x23, - 0x1e, 0xac, 0x69, 0xdb, 0x9b, 0x7e, 0xc9, 0xb9, 0xec, 0x68, 0xae, 0x65, 0xb7, 0x92, 0x2c, 0xf7, - 0x07, 0x57, 0x89, 0x19, 0x2b, 0xfb, 0x36, 0x07, 0x6f, 0x25, 0xd9, 0x70, 0x2a, 0x98, 0xcd, 0x8b, - 0xc9, 0xf6, 0xd2, 0xa8, 0x31, 0x97, 0x43, 0xa7, 0xb3, 0xff, 0xe4, 0xb5, 0xfa, 0x98, 0xa5, 0xfc, - 0x29, 0xb4, 0x1f, 0x31, 0x39, 0xfd, 0xb7, 0x77, 0x96, 0x0c, 0xf4, 0x88, 0xc9, 0x74, 0xb2, 0xf7, - 0x2e, 0x95, 0x31, 0x83, 0xdb, 0x40, 0x54, 0xf6, 0x3a, 0x25, 0x21, 0xc8, 0xb2, 0xae, 0x4a, 0x34, - 0x1d, 0xff, 0xfd, 0xcb, 0x85, 0xcc, 0x04, 0x6a, 0xbb, 0x94, 0x77, 0x9c, 0x99, 0xe1, 0x83, 0xcb, - 0x63, 0xee, 0x95, 0xdb, 0x95, 0x88, 0x65, 0x66, 0xc1, 0xe8, 0x77, 0x4d, 0xa3, 0x40, 0xd9, 0xab, - 0x67, 0x49, 0xc4, 0xcc, 0x2c, 0x2f, 0xe0, 0x96, 0x31, 0x3d, 0x83, 0x9a, 0x8c, 0xfb, 0x23, 0x1f, - 0xcd, 0xfb, 0xd8, 0x39, 0x1f, 0x99, 0xce, 0xf8, 0xf1, 0xf5, 0x84, 0xf5, 0xbc, 0xdd, 0x2f, 0xbf, - 0x7e, 0x6f, 0xe8, 0xcb, 0xf3, 0xf8, 0x6c, 0xcb, 0xe5, 0xa3, 0xe4, 0x9d, 0xbc, 0x7e, 0xeb, 0xee, - 0xf2, 0x20, 0x21, 0xfc, 0x36, 0xdf, 0x38, 0xf4, 0x5f, 0xb0, 0x3f, 0xc2, 0x63, 0x1f, 0x97, 0xfc, - 0xbf, 0xf2, 0x4d, 0xd3, 0xfe, 0xec, 0x33, 0x24, 0x9c, 0x95, 0xb1, 0xcb, 0x4f, 0xfe, 0x37, 0x00, - 0x00, 0xff, 0xff, 0xd4, 0x65, 0xf7, 0xfd, 0x9a, 0x2f, 0x00, 0x00, + 0xab, 0x31, 0x8b, 0x7c, 0xf4, 0x6a, 0x48, 0xb1, 0xfe, 0xbd, 0x08, 0x30, 0xb9, 0x97, 0x26, 0xbf, + 0x07, 0x24, 0xbd, 0xc7, 0x9b, 0xdc, 0xfc, 0x26, 0x97, 0x55, 0xed, 0x84, 0x97, 0x5c, 0xfd, 0x2e, + 0xbc, 0xae, 0x82, 0xff, 0xbf, 0xae, 0x5a, 0x78, 0x5d, 0x35, 0x83, 0xff, 0xea, 0x92, 0x5b, 0x9f, + 0xcb, 0x6e, 0x46, 0x6a, 0xe6, 0x3a, 0xe2, 0x92, 0x9b, 0x11, 0xcc, 0x77, 0xe7, 0xf7, 0xf0, 0x1a, + 0x86, 0xfb, 0x1d, 0x5a, 0xd5, 0xdf, 0xe4, 0x20, 0xbf, 0x7b, 0x40, 0x2c, 0xa8, 0x8e, 0x23, 0xfe, + 0xc2, 0xf7, 0xcc, 0x0d, 0x4d, 0x8d, 0xa6, 0x6d, 0xf2, 0x16, 0x80, 0xcb, 0x47, 0x23, 0x5f, 0xda, + 0xe2, 0xdc, 0x49, 0xaa, 0x7b, 0x9a, 0xd2, 0x3f, 0x77, 0x48, 0x1b, 0x0a, 0x11, 0x7b, 0x6a, 0xee, + 0xfd, 0xd5, 0x27, 0x16, 0x96, 0xe2, 0x20, 0xb0, 0x23, 0x86, 0x78, 0x30, 0xb7, 0xfe, 0x75, 0x45, + 0xa3, 0x9a, 0x84, 0x77, 0xe2, 0x71, 0x68, 0xc7, 0x51, 0x60, 0x2e, 0xfc, 0xcb, 0x51, 0x1c, 0x9e, + 0x46, 0x81, 0x8a, 0xb6, 0x8e, 0x2b, 0x79, 0x94, 0xdc, 0xf2, 0x63, 0xc3, 0xfa, 0x9f, 0x12, 0x94, + 0x77, 0xb1, 0x34, 0x67, 0xfd, 0x67, 0x11, 0x2a, 0xc9, 0x28, 0xd3, 0x75, 0xc7, 0xdc, 0x6c, 0xdd, + 0x71, 0xba, 0x24, 0x97, 0x9f, 0x2d, 0xc9, 0x2d, 0xa8, 0x5c, 0x15, 0x17, 0x56, 0xae, 0x36, 0xa1, + 0x1c, 0xb1, 0xa1, 0xda, 0xd5, 0xb2, 0x59, 0x2b, 0xb6, 0x48, 0x77, 0xae, 0xa6, 0x57, 0xb9, 0xac, + 0xa6, 0xd7, 0xbb, 0x31, 0x53, 0xd5, 0xcb, 0x84, 0x9a, 0xa4, 0xc2, 0x55, 0x35, 0xe7, 0x81, 0x2c, + 0x51, 0xa7, 0xb1, 0xba, 0xcc, 0x55, 0xbb, 0x4e, 0x99, 0xeb, 0x47, 0xd0, 0x3e, 0x73, 0xdc, 0xe7, + 0x6a, 0x49, 0xa1, 0x67, 0x87, 0xdc, 0x17, 0x1a, 0xea, 0x55, 0xda, 0x9a, 0xd0, 0x8f, 0x15, 0x99, + 0x7c, 0x02, 0x9b, 0x01, 0x7f, 0x99, 0xb8, 0x2b, 0x7b, 0xe4, 0xbb, 0x11, 0x1f, 0x9f, 0xf3, 0x90, + 0x61, 0x00, 0xae, 0xd2, 0xf5, 0x80, 0xbf, 0x34, 0x77, 0x81, 0x47, 0x29, 0x8f, 0xbc, 0x03, 0xf5, + 0xb1, 0xe3, 0x3e, 0x67, 0x52, 0x5f, 0x57, 0xea, 0x8b, 0x56, 0xd0, 0xa4, 0x43, 0x2e, 0x84, 0x29, + 0x71, 0x35, 0xae, 0x2a, 0x71, 0xe5, 0x17, 0x94, 0xb8, 0x9a, 0xd7, 0x2b, 0x71, 0xb5, 0x96, 0x94, + 0xb8, 0x30, 0x54, 0x4d, 0xef, 0x4a, 0x0a, 0x1f, 0xa3, 0xcf, 0x6e, 0x09, 0x0a, 0xb6, 0xeb, 0x3f, + 0x2e, 0x56, 0x0b, 0xed, 0x22, 0x9d, 0xaf, 0x31, 0x5b, 0x7f, 0x91, 0x83, 0x2a, 0x65, 0x62, 0xcc, + 0x43, 0xc1, 0xc8, 0x87, 0xb0, 0x3a, 0xb1, 0x10, 0x5b, 0x19, 0x6d, 0x6a, 0x6a, 0x2d, 0x91, 0xfd, + 0xa1, 0x03, 0x8f, 0xf4, 0x61, 0x73, 0x1c, 0x31, 0xe1, 0x0f, 0x43, 0xe6, 0xd9, 0x63, 0x2e, 0x64, + 0x0a, 0x01, 0x5d, 0xd1, 0x9f, 0x14, 0xbe, 0x4f, 0x12, 0xb1, 0x13, 0x2e, 0xa4, 0x31, 0x67, 0xba, + 0x3e, 0x5e, 0x40, 0xb5, 0x7e, 0x93, 0x83, 0xb5, 0x5d, 0x1e, 0x3e, 0xf5, 0xa3, 0x51, 0x9f, 0xc7, + 0x91, 0xcb, 0x4e, 0xc7, 0x01, 0x77, 0x3c, 0xeb, 0xcf, 0xae, 0x8d, 0x83, 0x85, 0xbf, 0x90, 0x5f, + 0xfc, 0x0b, 0x3f, 0x84, 0x96, 0xcb, 0x3d, 0xa6, 0xce, 0xc4, 0xd1, 0xc5, 0x98, 0xfb, 0xa1, 0x34, + 0xc8, 0x6e, 0x2a, 0xf2, 0x7e, 0x4a, 0xb5, 0x60, 0xa2, 0x23, 0xeb, 0xaf, 0x72, 0x50, 0x78, 0xc4, + 0xa4, 0x35, 0xf8, 0x3e, 0x96, 0x64, 0x7d, 0x92, 0xd9, 0x8d, 0xbb, 0x50, 0x88, 0x62, 0xfd, 0xb6, + 0x61, 0x0a, 0x67, 0xd9, 0x2e, 0x54, 0x89, 0x58, 0xff, 0x52, 0x84, 0xe2, 0xa1, 0x2f, 0xa4, 0xf5, + 0xcf, 0x85, 0x6b, 0xaf, 0xea, 0xb3, 0x99, 0x32, 0xe8, 0xe5, 0x0f, 0x15, 0x7a, 0x37, 0x92, 0x22, + 0xa8, 0x32, 0xe1, 0x9f, 0x01, 0x8c, 0x9d, 0x21, 0xd3, 0x17, 0x69, 0xa8, 0xb3, 0xfa, 0x76, 0x27, + 0xed, 0x3f, 0x50, 0xd4, 0x13, 0x67, 0xe8, 0x87, 0x38, 0x48, 0x2f, 0x47, 0x6b, 0x4a, 0x1a, 0xc9, + 0x3a, 0x94, 0xe8, 0xaa, 0x24, 0x66, 0x4e, 0x26, 0xee, 0x5e, 0x52, 0x9b, 0xe8, 0xe5, 0x4d, 0x5d, + 0x52, 0x51, 0x54, 0xff, 0xcf, 0xb0, 0x34, 0xa9, 0x7b, 0x97, 0xae, 0xec, 0x5d, 0xc0, 0xe2, 0x64, + 0xd2, 0xf7, 0xce, 0x94, 0x9b, 0x44, 0x17, 0xa7, 0x0e, 0x05, 0xa9, 0xa3, 0xd4, 0xa9, 0xae, 0xf6, + 0x3f, 0x95, 0x4b, 0xfd, 0x4f, 0xaf, 0xa4, 0x3d, 0x90, 0x0a, 0x6e, 0x2a, 0x15, 0xd5, 0xda, 0xc1, + 0x64, 0x6d, 0xa2, 0x1b, 0x6c, 0x4e, 0x7e, 0x16, 0x13, 0xd8, 0x64, 0xed, 0xc8, 0x9b, 0x2c, 0xa6, + 0x5b, 0x81, 0x12, 0x16, 0x7d, 0xac, 0x57, 0x53, 0x88, 0x2c, 0x46, 0x71, 0x28, 0x3a, 0x39, 0xac, + 0x25, 0x2d, 0x33, 0x02, 0x94, 0x21, 0x7f, 0x08, 0xad, 0x90, 0xbd, 0x92, 0x99, 0xe9, 0x0d, 0x14, + 0x97, 0x6e, 0x0d, 0x6d, 0xa8, 0x0e, 0x27, 0xc9, 0xe6, 0x58, 0xff, 0x54, 0x84, 0x32, 0x1e, 0xbc, + 0x85, 0xf5, 0xaf, 0xf9, 0x6b, 0x5b, 0xd2, 0xc3, 0xa9, 0xfd, 0xcc, 0x5f, 0xb3, 0xca, 0xac, 0xda, + 0xa6, 0xca, 0xac, 0x3b, 0x16, 0xae, 0x55, 0x65, 0xc6, 0x6e, 0x13, 0xdb, 0x2d, 0xbe, 0xb6, 0xed, + 0x4e, 0x5b, 0x00, 0x06, 0x64, 0x65, 0xa1, 0x0b, 0x2d, 0xa0, 0x7c, 0xb9, 0x05, 0xe4, 0x97, 0x5a, + 0xc0, 0xa2, 0x6d, 0xfd, 0xf3, 0xac, 0xa7, 0xfd, 0x39, 0x54, 0xce, 0x62, 0x15, 0x42, 0x92, 0xad, + 0x7d, 0x7f, 0x59, 0xe4, 0xc0, 0xed, 0xd8, 0xea, 0xa2, 0x30, 0x4d, 0x3a, 0x29, 0xc5, 0xe1, 0xd1, + 0xfe, 0x85, 0x13, 0x18, 0x8d, 0xdf, 0x9a, 0x53, 0xdc, 0x9e, 0x79, 0x00, 0x47, 0x53, 0x51, 0xeb, + 0x97, 0x50, 0xd6, 0x23, 0x91, 0x2f, 0x60, 0x45, 0x8f, 0xa5, 0xcd, 0xd3, 0x78, 0x99, 0xcb, 0xb4, + 0x5f, 0xd7, 0xf2, 0x7d, 0x25, 0xae, 0x52, 0x97, 0x49, 0x85, 0xbb, 0x48, 0x75, 0xc3, 0x7a, 0x06, + 0xe5, 0x5d, 0x27, 0x74, 0x59, 0xf0, 0x3d, 0x79, 0xc7, 0xac, 0x1f, 0xfe, 0x9e, 0x4b, 0xf4, 0x7f, + 0x9b, 0x4b, 0x6b, 0xf4, 0xb7, 0x60, 0x63, 0xba, 0x46, 0x6f, 0x9f, 0x9e, 0x1c, 0x3e, 0xd9, 0xd9, + 0x6b, 0xdf, 0x20, 0x1b, 0xb0, 0x6a, 0x58, 0x8f, 0xf6, 0x8f, 0xf7, 0xe9, 0xce, 0x40, 0x57, 0xeb, + 0xe7, 0x2b, 0xf8, 0x79, 0xb2, 0x09, 0xc4, 0xd0, 0xfa, 0xa7, 0x47, 0x47, 0x3b, 0xf4, 0xe0, 0x6b, + 0x45, 0x2f, 0x2c, 0xac, 0xec, 0x17, 0xe7, 0x2b, 0xfb, 0xa5, 0x85, 0x95, 0xfd, 0x32, 0xc6, 0xfb, + 0xcc, 0x3b, 0x9c, 0x49, 0xbc, 0xaf, 0xb6, 0x6b, 0xb4, 0x62, 0x1e, 0xec, 0xdc, 0xf9, 0xc7, 0x02, + 0x54, 0x93, 0xfc, 0x6c, 0xf2, 0xb8, 0x24, 0x97, 0x7d, 0x5c, 0x32, 0xfb, 0xb6, 0x25, 0xbf, 0xe0, + 0x6d, 0xcb, 0xe2, 0x57, 0x2c, 0x85, 0x65, 0xaf, 0x58, 0xee, 0x99, 0xf7, 0x2a, 0x45, 0xb4, 0xf0, + 0x37, 0xe6, 0x32, 0xc5, 0xad, 0x81, 0x33, 0x14, 0xfa, 0x05, 0xa1, 0x7e, 0xcc, 0x62, 0x41, 0x35, + 0x16, 0x2c, 0xf2, 0x1c, 0xe9, 0x98, 0x54, 0x39, 0x6d, 0x9b, 0x67, 0x3c, 0xe5, 0xe4, 0x19, 0x8f, + 0xf5, 0xf7, 0x39, 0x58, 0xd5, 0x69, 0xf2, 0x97, 0x11, 0x1f, 0x99, 0x7a, 0xb7, 0xf5, 0x8b, 0x6b, + 0xdb, 0x5d, 0xe6, 0xa5, 0x4a, 0x7e, 0xea, 0xa5, 0xca, 0x24, 0x03, 0x2e, 0x64, 0x33, 0x60, 0xeb, + 0x61, 0x06, 0xbe, 0x3f, 0x86, 0x6a, 0x92, 0x77, 0x19, 0xe4, 0xac, 0xce, 0xfd, 0x1d, 0x4d, 0x45, + 0xac, 0x4f, 0xa1, 0x96, 0xfe, 0xea, 0x82, 0xb7, 0x90, 0xeb, 0xd9, 0xb7, 0x90, 0xb5, 0xcc, 0x7b, + 0xc7, 0x3b, 0x1e, 0x34, 0xa6, 0xd2, 0x6a, 0x42, 0xa0, 0x88, 0x7e, 0x4b, 0xf7, 0xc6, 0x6f, 0x72, + 0x0f, 0x6a, 0xc9, 0x4c, 0x6a, 0xdb, 0x0a, 0x8b, 0x57, 0x33, 0x91, 0x31, 0xaa, 0x2c, 0x24, 0xaa, + 0xbc, 0xf3, 0x0f, 0x39, 0x20, 0x13, 0xaf, 0xb3, 0xe7, 0x8b, 0xb1, 0x23, 0xdd, 0xf3, 0xd7, 0xca, + 0x06, 0x37, 0xa0, 0xfc, 0x8c, 0x9f, 0x4d, 0x94, 0x59, 0x7a, 0xc6, 0xcf, 0x0e, 0xbc, 0x29, 0x3d, + 0x15, 0xae, 0xd4, 0x53, 0x9a, 0xf9, 0x17, 0xaf, 0x91, 0xf9, 0x7f, 0xf8, 0x14, 0x9a, 0xd3, 0x74, + 0xf2, 0x0e, 0xbc, 0xd1, 0x3f, 0x38, 0x3a, 0x3d, 0xdc, 0x19, 0x1c, 0x3c, 0x39, 0xb6, 0x8f, 0x9e, + 0xec, 0xed, 0xdb, 0xa7, 0xc7, 0xfd, 0x93, 0xfd, 0xdd, 0x83, 0x2f, 0x0f, 0xf6, 0x15, 0x5c, 0x3b, + 0xb0, 0x3e, 0x2b, 0x30, 0xd8, 0xff, 0x93, 0x41, 0x3b, 0x87, 0x18, 0x9f, 0xe1, 0xec, 0x9c, 0xee, + 0x1d, 0x3c, 0x69, 0xe7, 0xb7, 0x7f, 0x5d, 0x86, 0xd6, 0x8e, 0xb2, 0xed, 0xc9, 0x6c, 0xc4, 0x83, + 0x35, 0x6d, 0x7b, 0xd3, 0x6f, 0x45, 0x97, 0x9d, 0xe5, 0xb5, 0xec, 0x56, 0x92, 0xe5, 0xfe, 0xe0, + 0x2a, 0x31, 0x63, 0x65, 0xdf, 0xe6, 0xe0, 0xad, 0x24, 0x1b, 0x4e, 0x05, 0xb3, 0x79, 0x31, 0xd9, + 0x5e, 0x1a, 0x35, 0xe6, 0x72, 0xe8, 0x74, 0xf6, 0x9f, 0xbc, 0x56, 0x1f, 0xb3, 0x94, 0x3f, 0x85, + 0xf6, 0x23, 0x26, 0xa7, 0xff, 0xf6, 0xce, 0x92, 0x81, 0x1e, 0x31, 0x99, 0x4e, 0xf6, 0xde, 0xa5, + 0x32, 0x66, 0x70, 0x1b, 0x88, 0xca, 0x5e, 0xa7, 0x24, 0x04, 0x59, 0xd6, 0x55, 0x89, 0xa6, 0xe3, + 0xbf, 0x7f, 0xb9, 0x90, 0x99, 0x40, 0x6d, 0x97, 0xf2, 0x8e, 0x33, 0x33, 0x7c, 0x70, 0x79, 0xcc, + 0xbd, 0x72, 0xbb, 0x12, 0xb1, 0xcc, 0x2c, 0x18, 0xfd, 0xae, 0x69, 0x14, 0x28, 0x7b, 0xf5, 0x2c, + 0x89, 0x98, 0x99, 0xe5, 0x05, 0xdc, 0x32, 0xa6, 0x67, 0x50, 0x93, 0x71, 0x7f, 0xe4, 0xa3, 0x79, + 0x1f, 0x3b, 0xe7, 0x23, 0xd3, 0x19, 0x3f, 0xbe, 0x9e, 0xb0, 0x9e, 0xb7, 0xfb, 0xe5, 0xd7, 0xef, + 0x0d, 0x7d, 0x79, 0x1e, 0x9f, 0x6d, 0xb9, 0x7c, 0x94, 0xbc, 0xc4, 0xd7, 0xaf, 0xe9, 0x5d, 0x1e, + 0x24, 0x84, 0xdf, 0xe6, 0x1b, 0x87, 0xfe, 0x0b, 0xf6, 0x47, 0x78, 0xec, 0xe3, 0x92, 0xff, 0x57, + 0xbe, 0x69, 0xda, 0x9f, 0x7d, 0x86, 0x84, 0xb3, 0x32, 0x76, 0xf9, 0xc9, 0xff, 0x06, 0x00, 0x00, + 0xff, 0xff, 0xa4, 0x16, 0x70, 0x3d, 0xfc, 0x2f, 0x00, 0x00, } From 3548db5a0d93ba6e6c09212f8460232b7b18b902 Mon Sep 17 00:00:00 2001 From: Jason Lernerman Date: Fri, 18 Sep 2026 08:08:02 -0400 Subject: [PATCH 07/14] agent_simulation: rename min_sample_pass_rate to pass_rate --- .changeset/simulation-repeats.md | 2 +- protobufs/livekit_agent_simulation.proto | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.changeset/simulation-repeats.md b/.changeset/simulation-repeats.md index 99788302d..7c5c1adca 100644 --- a/.changeset/simulation-repeats.md +++ b/.changeset/simulation-repeats.md @@ -3,4 +3,4 @@ "@livekit/protocol": patch --- -agent_simulation: repeat scenarios within a run for pass@k / pass^k, and decide a scenario's verdict from a `min_sample_pass_rate` +agent_simulation: repeat scenarios within a run for pass@k / pass^k, and decide a scenario's verdict from a `pass_rate` diff --git a/protobufs/livekit_agent_simulation.proto b/protobufs/livekit_agent_simulation.proto index c400a4bf7..88336ac39 100644 --- a/protobufs/livekit_agent_simulation.proto +++ b/protobufs/livekit_agent_simulation.proto @@ -267,7 +267,7 @@ message SimulationRun { // pass, 0-1; 0/unset requires every sample. A scenario needs // round(rate × samples) of them. The run fails if any scenario fails; // pass@k and pass^k report over scenarios and neither gates. - double min_sample_pass_rate = 15; + double pass_rate = 15; } message Response { string simulation_run_id = 1; @@ -393,7 +393,7 @@ message SimulationRun { int32 samples = 23; // The share of a scenario's samples that had to pass for that scenario to // pass; 0 when the run required every sample. - double min_sample_pass_rate = 24; + double pass_rate = 24; message Usage { int32 text_turns_count = 1; From 9932ea35aaabed2c080683d3f7c73fc353480c32 Mon Sep 17 00:00:00 2001 From: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Sep 2026 12:08:47 +0000 Subject: [PATCH 08/14] generated protobuf --- livekit/livekit_agent_simulation.pb.go | 34 +- livekit/livekit_agent_simulation.twirp.go | 495 +++++++++++----------- 2 files changed, 264 insertions(+), 265 deletions(-) diff --git a/livekit/livekit_agent_simulation.pb.go b/livekit/livekit_agent_simulation.pb.go index 3856067e7..8f34d6dab 100644 --- a/livekit/livekit_agent_simulation.pb.go +++ b/livekit/livekit_agent_simulation.pb.go @@ -327,9 +327,9 @@ type SimulationRun struct { Samples int32 `protobuf:"varint,23,opt,name=samples,proto3" json:"samples,omitempty"` // The share of a scenario's samples that had to pass for that scenario to // pass; 0 when the run required every sample. - MinSamplePassRate float64 `protobuf:"fixed64,24,opt,name=min_sample_pass_rate,json=minSamplePassRate,proto3" json:"min_sample_pass_rate,omitempty"` - unknownFields protoimpl.UnknownFields - sizeCache protoimpl.SizeCache + PassRate float64 `protobuf:"fixed64,24,opt,name=pass_rate,json=passRate,proto3" json:"pass_rate,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache } func (x *SimulationRun) Reset() { @@ -516,9 +516,9 @@ func (x *SimulationRun) GetSamples() int32 { return 0 } -func (x *SimulationRun) GetMinSamplePassRate() float64 { +func (x *SimulationRun) GetPassRate() float64 { if x != nil { - return x.MinSamplePassRate + return x.PassRate } return 0 } @@ -2334,9 +2334,9 @@ type SimulationRun_Create_Request struct { // pass, 0-1; 0/unset requires every sample. A scenario needs // round(rate × samples) of them. The run fails if any scenario fails; // pass@k and pass^k report over scenarios and neither gates. - MinSamplePassRate float64 `protobuf:"fixed64,15,opt,name=min_sample_pass_rate,json=minSamplePassRate,proto3" json:"min_sample_pass_rate,omitempty"` - unknownFields protoimpl.UnknownFields - sizeCache protoimpl.SizeCache + PassRate float64 `protobuf:"fixed64,15,opt,name=pass_rate,json=passRate,proto3" json:"pass_rate,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache } func (x *SimulationRun_Create_Request) Reset() { @@ -2453,9 +2453,9 @@ func (x *SimulationRun_Create_Request) GetSamples() int32 { return 0 } -func (x *SimulationRun_Create_Request) GetMinSamplePassRate() float64 { +func (x *SimulationRun_Create_Request) GetPassRate() float64 { if x != nil { - return x.MinSamplePassRate + return x.PassRate } return 0 } @@ -3302,7 +3302,7 @@ const file_livekit_agent_simulation_proto_rawDesc = "" + "\n" + "suggestion\x18\x02 \x01(\tR\n" + "suggestion\x12\x14\n" + - "\x05label\x18\x03 \x01(\tR\x05label\"\xd4M\n" + + "\x05label\x18\x03 \x01(\tR\x05label\"\xacM\n" + "\rSimulationRun\x12\x0e\n" + "\x02id\x18\x01 \x01(\tR\x02id\x12\x1d\n" + "\n" + @@ -3330,8 +3330,8 @@ const file_livekit_agent_simulation_proto_rawDesc = "" + "\vissue_count\x18\x15 \x01(\x05H\x00R\n" + "issueCount\x88\x01\x01\x12.\n" + "\x02ci\x18\x16 \x01(\v2\x19.livekit.SimulationRun.CIH\x01R\x02ci\x88\x01\x01\x12\x18\n" + - "\asamples\x18\x17 \x01(\x05R\asamples\x12/\n" + - "\x14min_sample_pass_rate\x18\x18 \x01(\x01R\x11minSamplePassRate\x1a\x8f\x06\n" + + "\asamples\x18\x17 \x01(\x05R\asamples\x12\x1b\n" + + "\tpass_rate\x18\x18 \x01(\x01R\bpassRate\x1a\x8f\x06\n" + "\x03Job\x12\x0e\n" + "\x02id\x18\x01 \x01(\tR\x02id\x129\n" + "\x06status\x18\x02 \x01(\x0e2!.livekit.SimulationRun.Job.StatusR\x06status\x12\"\n" + @@ -3551,8 +3551,8 @@ const file_livekit_agent_simulation_proto_rawDesc = "" + "\x03ref\x18\x03 \x01(\tR\x03ref\x12!\n" + "\fpull_request\x18\x04 \x01(\tR\vpullRequest\x12\x17\n" + "\arun_url\x18\x05 \x01(\tR\x06runUrl\x12\x14\n" + - "\x05actor\x18\x06 \x01(\tR\x05actor\x1a\xf9\x05\n" + - "\x06Create\x1a\xe0\x04\n" + + "\x05actor\x18\x06 \x01(\tR\x05actor\x1a\xe5\x05\n" + + "\x06Create\x1a\xcc\x04\n" + "\aRequest\x12\x1d\n" + "\n" + "project_id\x18\x01 \x01(\tR\tprojectId\x12\x1d\n" + @@ -3569,8 +3569,8 @@ const file_livekit_agent_simulation_proto_rawDesc = "" + "\vpacket_loss\x18\f \x01(\bR\n" + "packetLoss\x12.\n" + "\x02ci\x18\r \x01(\v2\x19.livekit.SimulationRun.CIH\x02R\x02ci\x88\x01\x01\x12\x18\n" + - "\asamples\x18\x0e \x01(\x05R\asamples\x12/\n" + - "\x14min_sample_pass_rate\x18\x0f \x01(\x01R\x11minSamplePassRateB\x11\n" + + "\asamples\x18\x0e \x01(\x05R\asamples\x12\x1b\n" + + "\tpass_rate\x18\x0f \x01(\x01R\bpassRateB\x11\n" + "\x0f_scenario_groupB\x0e\n" + "\f_concurrencyB\x05\n" + "\x03_ciJ\x04\b\x03\x10\x04R\x11agent_description\x1a\x8b\x01\n" + diff --git a/livekit/livekit_agent_simulation.twirp.go b/livekit/livekit_agent_simulation.twirp.go index 3be627b75..f4b72c0f9 100644 --- a/livekit/livekit_agent_simulation.twirp.go +++ b/livekit/livekit_agent_simulation.twirp.go @@ -2191,257 +2191,256 @@ func (s *agentSimulationServer) PathPrefix() string { } var twirpFileDescriptor10 = []byte{ - // 4026 bytes of a gzipped FileDescriptorProto + // 4014 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x5a, 0xcd, 0x6f, 0x1c, 0x47, 0x76, 0xd7, 0x7c, 0xcf, 0xbc, 0xe1, 0x7c, 0xb0, 0xf8, 0xa1, 0x51, 0xfb, 0x4b, 0x96, 0xed, 0x5d, 0xad, 0xed, 0xa5, 0x14, 0xae, 0xb5, 0x8e, 0xec, 0xf5, 0x26, 0x1c, 0x92, 0xd6, 0x50, 0x21, 0x29, 0xba, 0x66, 0x88, 0x64, 0x1d, 0x2c, 0x1a, 0xcd, 0xee, 0xd2, 0xb0, 0xa5, 0x9e, 0xae, 0x71, 0x57, 0xb5, 0x24, 0x2e, 0x90, 0x43, 0x80, 0x3d, 0x18, 0xc8, 0x21, 0x48, 0xfe, 0x82, 0x05, 0x82, 0x20, - 0xc8, 0x5e, 0x83, 0x1c, 0x73, 0x09, 0x90, 0x73, 0x10, 0x24, 0x7f, 0x40, 0xce, 0xb9, 0xe7, 0x90, - 0x5b, 0x50, 0xaf, 0xaa, 0x7b, 0x7a, 0xbe, 0x48, 0x6a, 0x61, 0x03, 0x39, 0xe4, 0xd6, 0xf5, 0xde, - 0xab, 0x8f, 0x7e, 0xf5, 0x7e, 0xef, 0xbd, 0xaa, 0x57, 0xf0, 0x76, 0xe0, 0xbf, 0x60, 0xcf, 0x7d, - 0x69, 0x3b, 0x43, 0x16, 0x4a, 0x5b, 0xf8, 0xa3, 0x38, 0x70, 0xa4, 0xcf, 0xc3, 0xad, 0x71, 0xc4, - 0x25, 0x27, 0x15, 0xc3, 0xb7, 0xde, 0x45, 0x81, 0x7b, 0x33, 0xe2, 0x4c, 0x88, 0x54, 0xd6, 0x7a, - 0x7b, 0xc8, 0xf9, 0x30, 0x60, 0xf7, 0xb0, 0x75, 0x16, 0x3f, 0xbd, 0xe7, 0xc5, 0x51, 0x66, 0x2c, - 0xeb, 0x9d, 0x59, 0xbe, 0xf4, 0x47, 0x4c, 0x48, 0x67, 0x34, 0x36, 0x02, 0xb7, 0x92, 0xd1, 0xdd, - 0x80, 0xc7, 0x9e, 0x9e, 0xc3, 0xb0, 0xd6, 0x13, 0xd6, 0x88, 0x7b, 0x2c, 0x10, 0x9a, 0x7a, 0xe7, - 0xdf, 0x0a, 0xb0, 0xde, 0x4f, 0x97, 0x4c, 0xe3, 0xb0, 0x1f, 0x8f, 0x46, 0x4e, 0x74, 0x41, 0x36, - 0xa1, 0x3c, 0x76, 0x84, 0x60, 0x5e, 0x27, 0x77, 0x3b, 0x77, 0xb7, 0x44, 0x4d, 0x4b, 0xd1, 0x9f, - 0x3a, 0x7e, 0xc0, 0xbc, 0x4e, 0x5e, 0xd3, 0x75, 0x8b, 0xbc, 0x05, 0x30, 0xe4, 0x7e, 0x38, 0xb4, - 0x5f, 0xb2, 0x20, 0xe8, 0x14, 0x6e, 0xe7, 0xee, 0xd6, 0x68, 0x0d, 0x29, 0x7f, 0xcc, 0x82, 0x40, - 0xb1, 0x25, 0xb7, 0xfd, 0xd1, 0x38, 0xe2, 0x2f, 0x58, 0xa7, 0xa8, 0xd9, 0x92, 0x1f, 0x68, 0x02, - 0xf9, 0x1c, 0xca, 0xbe, 0x10, 0x31, 0x13, 0x9d, 0xd2, 0xed, 0xc2, 0xdd, 0xfa, 0xf6, 0x7b, 0x5b, - 0x66, 0xb5, 0x5b, 0x8b, 0x16, 0xb7, 0x75, 0xa0, 0x64, 0xa9, 0xe9, 0x42, 0xbe, 0x82, 0x15, 0xf7, - 0xdc, 0x91, 0xf6, 0xb9, 0x2f, 0x24, 0x8f, 0x2e, 0x3a, 0x65, 0x1c, 0x62, 0xeb, 0xf2, 0x21, 0x76, - 0xcf, 0x1d, 0xd9, 0xd3, 0x1d, 0xf6, 0x43, 0x19, 0x5d, 0xd0, 0xba, 0x3b, 0xa1, 0x58, 0x5f, 0x43, - 0x7b, 0x56, 0x80, 0xb4, 0xa1, 0xf0, 0x9c, 0x5d, 0xa0, 0x3a, 0x6a, 0x54, 0x7d, 0x92, 0xfb, 0x50, - 0x7a, 0xe1, 0x04, 0x31, 0x43, 0x55, 0xd4, 0xb7, 0xad, 0x74, 0x46, 0xad, 0x77, 0x35, 0xc2, 0x2e, - 0x0f, 0x25, 0x7b, 0x25, 0xa9, 0x16, 0xfc, 0x2c, 0xff, 0xfb, 0x39, 0xcb, 0x86, 0x12, 0xae, 0x9f, - 0xdc, 0x86, 0xba, 0xc7, 0x84, 0x1b, 0xf9, 0x63, 0xb5, 0x36, 0x33, 0x70, 0x96, 0x44, 0xde, 0x06, - 0x10, 0xf1, 0x70, 0xc8, 0x04, 0x0a, 0xe4, 0x51, 0x20, 0x43, 0x21, 0xeb, 0x50, 0x0a, 0x9c, 0x33, - 0x96, 0xe8, 0x5b, 0x37, 0xee, 0xfc, 0xc7, 0x11, 0x34, 0xa6, 0xfe, 0x99, 0x34, 0x21, 0xef, 0x7b, - 0x66, 0x82, 0xbc, 0x8f, 0x9b, 0x35, 0x8e, 0xf8, 0x33, 0xe6, 0x4a, 0xdb, 0xf7, 0xcc, 0xb8, 0x35, - 0x43, 0x39, 0xf0, 0xc8, 0x03, 0x28, 0x0b, 0xe9, 0xc8, 0x58, 0xe0, 0xb8, 0xcd, 0xed, 0xb7, 0x16, - 0xab, 0x72, 0xab, 0x8f, 0x42, 0xd4, 0x08, 0x93, 0x8f, 0x60, 0x55, 0x1b, 0x75, 0xf6, 0xaf, 0xf4, - 0x56, 0xb7, 0x91, 0xb1, 0x97, 0xf9, 0xb5, 0x75, 0x28, 0xb1, 0x28, 0xe2, 0x51, 0xa7, 0xa4, 0x97, - 0x8e, 0x0d, 0xf2, 0x10, 0xc0, 0x8d, 0x98, 0x23, 0x99, 0x67, 0x3b, 0xb2, 0x53, 0x36, 0x6a, 0xd5, - 0x56, 0xbf, 0x95, 0x58, 0xfd, 0xd6, 0x20, 0xb1, 0x7a, 0x5a, 0x33, 0xd2, 0x3b, 0x92, 0x6c, 0x41, - 0xf1, 0x19, 0x3f, 0x13, 0x9d, 0x0a, 0xee, 0xbe, 0xb5, 0x64, 0xc9, 0x8f, 0xf9, 0x19, 0x45, 0x39, - 0xa5, 0x03, 0xbd, 0xda, 0xd0, 0x19, 0xb1, 0x4e, 0x4d, 0xeb, 0x00, 0x29, 0xc7, 0xce, 0x88, 0x91, - 0x2f, 0xa0, 0x29, 0x5c, 0x16, 0x3a, 0x91, 0xcf, 0xed, 0x61, 0xc4, 0xe3, 0x71, 0x07, 0x70, 0x35, - 0x9b, 0x93, 0x81, 0x0d, 0xfb, 0x91, 0xe2, 0xd2, 0x86, 0xc8, 0x36, 0xc9, 0x03, 0xa8, 0xb2, 0xd0, - 0xd3, 0xbf, 0x51, 0xbf, 0xf2, 0x37, 0x2a, 0x28, 0xbb, 0x23, 0xc9, 0x1b, 0x50, 0x7b, 0xc6, 0xcf, - 0x6c, 0x97, 0xc7, 0xa1, 0xec, 0xac, 0x20, 0xc0, 0xaa, 0xcf, 0xf8, 0xd9, 0xae, 0x6a, 0x93, 0x77, - 0x61, 0x45, 0x83, 0xd0, 0xf0, 0x1b, 0xc8, 0xaf, 0x6b, 0x5a, 0x2a, 0xa2, 0xf1, 0x68, 0x44, 0x9a, - 0x5a, 0x44, 0xd3, 0xb4, 0xc8, 0x0f, 0xa1, 0x15, 0xc6, 0xa3, 0x8c, 0x9f, 0x12, 0x9d, 0x16, 0x4a, - 0x35, 0xc3, 0x78, 0x34, 0x51, 0x96, 0x20, 0xdb, 0x50, 0x8a, 0x85, 0x33, 0x64, 0x9d, 0x36, 0xae, - 0xff, 0xcd, 0x25, 0x1a, 0x3d, 0x55, 0x32, 0x54, 0x8b, 0x2a, 0x93, 0x76, 0x79, 0xe8, 0xc6, 0x51, - 0xc4, 0x42, 0xf7, 0xa2, 0xb3, 0xaa, 0xa7, 0xcf, 0x90, 0xc8, 0x47, 0x50, 0x54, 0x0e, 0xa8, 0x43, - 0xd0, 0xb2, 0x6e, 0x2e, 0x18, 0xf4, 0x88, 0x7b, 0x8c, 0xa2, 0x10, 0xf9, 0x1c, 0x2a, 0x23, 0x26, - 0x23, 0xdf, 0x15, 0x9d, 0x35, 0x5c, 0xc4, 0xbb, 0x4b, 0x16, 0x41, 0xe3, 0xf0, 0x48, 0x0b, 0xd2, - 0xa4, 0x87, 0xd2, 0x85, 0xd0, 0x60, 0xb7, 0x7f, 0x25, 0xa4, 0xd7, 0x59, 0xbf, 0x9d, 0xbb, 0xbb, - 0x42, 0xeb, 0x86, 0xf6, 0xb5, 0x90, 0x1e, 0x79, 0x1f, 0xea, 0xe8, 0x43, 0x8c, 0xb6, 0x36, 0xd4, - 0x72, 0x7b, 0x37, 0x28, 0x20, 0x11, 0xd5, 0xf5, 0x6d, 0x2e, 0x47, 0xb6, 0x20, 0xef, 0xfa, 0x9d, - 0x4d, 0x5c, 0xc0, 0xad, 0x25, 0x0b, 0xd8, 0x3d, 0xe8, 0xe5, 0x68, 0xde, 0xf5, 0x95, 0x7c, 0x07, - 0x2a, 0xc2, 0x19, 0x8d, 0x03, 0x26, 0x3a, 0x37, 0x51, 0x01, 0x49, 0x93, 0xdc, 0x83, 0xf5, 0x91, - 0x1f, 0xda, 0xba, 0x69, 0xab, 0x8d, 0xb3, 0x23, 0x47, 0xb2, 0x4e, 0xe7, 0x76, 0xee, 0x6e, 0x8e, - 0xae, 0x8e, 0xfc, 0xb0, 0x8f, 0xac, 0x13, 0x47, 0x08, 0xea, 0x48, 0x66, 0xfd, 0x65, 0x19, 0x0a, - 0x8f, 0xf9, 0xd9, 0x1c, 0x80, 0x1f, 0xa6, 0x08, 0xcd, 0xa3, 0x1e, 0xdf, 0x5d, 0x6e, 0xee, 0xb3, - 0x28, 0xbd, 0x03, 0x2b, 0x7e, 0x28, 0x64, 0x14, 0xbb, 0x7a, 0xf3, 0xb5, 0xeb, 0x98, 0xa2, 0x4d, - 0xc0, 0x59, 0xcc, 0x82, 0xf3, 0xc7, 0x40, 0x34, 0x62, 0xd8, 0xab, 0x31, 0x73, 0xa5, 0x31, 0x1e, - 0x8d, 0x5f, 0x8d, 0xfc, 0xfd, 0x0c, 0x63, 0xe2, 0x9c, 0xca, 0x19, 0xe7, 0x44, 0x08, 0x14, 0xa5, - 0x33, 0xd4, 0x30, 0xad, 0x51, 0xfc, 0x56, 0x56, 0x1f, 0x71, 0x3e, 0xd2, 0x48, 0xac, 0xa2, 0x74, - 0x55, 0x11, 0x10, 0x88, 0x0f, 0x01, 0x84, 0x74, 0x22, 0xe3, 0x12, 0xe0, 0x6a, 0x97, 0x60, 0xa4, - 0x77, 0xe4, 0xef, 0x0a, 0xc2, 0x9b, 0x50, 0xc1, 0xe5, 0xf8, 0x1e, 0x42, 0xb0, 0x46, 0xcb, 0xaa, - 0x79, 0xe0, 0x91, 0x9f, 0x26, 0x88, 0x68, 0xe0, 0x60, 0xb7, 0x2f, 0x51, 0xfa, 0x14, 0x2a, 0x32, - 0x66, 0xdc, 0xbc, 0xd4, 0x8c, 0x1f, 0xf3, 0xb3, 0x39, 0x33, 0x7e, 0x07, 0xea, 0xa9, 0x23, 0xf2, - 0x3d, 0xc4, 0xaa, 0x0a, 0x02, 0x86, 0x74, 0x80, 0x11, 0x59, 0x1b, 0x14, 0x02, 0xb5, 0x44, 0x4d, - 0xcb, 0xfa, 0x25, 0x94, 0x70, 0x15, 0xe4, 0x2e, 0xb4, 0x55, 0x0c, 0xb2, 0x65, 0x1c, 0x85, 0xc2, - 0x98, 0xba, 0x0e, 0xea, 0x4d, 0x45, 0x1f, 0x28, 0xb2, 0xf6, 0x0d, 0x1f, 0xc2, 0xaa, 0x13, 0x7b, - 0x3e, 0x9f, 0x12, 0xd5, 0x71, 0xbe, 0x85, 0x8c, 0x89, 0xec, 0x1d, 0x0e, 0x65, 0x6d, 0x59, 0x84, - 0x40, 0xb3, 0x3f, 0xd8, 0x19, 0x9c, 0xf6, 0xed, 0x93, 0xfd, 0xe3, 0xbd, 0x83, 0xe3, 0x47, 0xed, - 0x1b, 0x19, 0x1a, 0x3d, 0x3d, 0x3e, 0x56, 0xb4, 0x1c, 0x59, 0x87, 0xb6, 0xa1, 0xed, 0x3e, 0x39, - 0x3a, 0x39, 0xdc, 0x1f, 0xec, 0xef, 0xb5, 0xf3, 0x64, 0x15, 0x1a, 0x86, 0xfa, 0xe5, 0xce, 0xc1, - 0xe1, 0xfe, 0x5e, 0xbb, 0x90, 0x15, 0xdc, 0x39, 0xde, 0xdd, 0x3f, 0x54, 0xd4, 0xe2, 0xe3, 0x62, - 0xb5, 0xd6, 0x06, 0xeb, 0xef, 0x3e, 0x00, 0x98, 0xa8, 0x89, 0x7c, 0x0c, 0x2d, 0xe9, 0x88, 0xe7, - 0xb6, 0xcb, 0xd5, 0x3f, 0x63, 0xc4, 0x51, 0x06, 0x9d, 0xef, 0xdd, 0xa0, 0x4d, 0xc5, 0xd8, 0x4d, - 0xe9, 0x0a, 0x99, 0x77, 0xa1, 0xc1, 0x5f, 0xb0, 0xc8, 0x09, 0x02, 0x5b, 0xb8, 0x3c, 0x62, 0xe8, - 0x13, 0xf2, 0xbd, 0x1c, 0x5d, 0x31, 0xe4, 0xbe, 0xa2, 0x2a, 0xc9, 0x4f, 0xa1, 0x20, 0xa4, 0x44, - 0xfb, 0xaf, 0x6f, 0x7f, 0x70, 0xe5, 0x76, 0x6d, 0xf5, 0x07, 0x03, 0xaa, 0x7a, 0xa8, 0x8e, 0x41, - 0x30, 0x42, 0x54, 0x5c, 0xab, 0xe3, 0xe1, 0xe1, 0x11, 0x55, 0x3d, 0x54, 0x47, 0x29, 0x85, 0x89, - 0x79, 0xd7, 0xe8, 0x38, 0x18, 0xf4, 0xa9, 0xea, 0x41, 0x28, 0xac, 0xb8, 0x3c, 0x7c, 0xc1, 0x22, - 0x81, 0x62, 0x9d, 0x0a, 0x8e, 0xb0, 0x75, 0xf5, 0x08, 0xbb, 0x99, 0x5e, 0x74, 0x6a, 0x0c, 0xf2, - 0x33, 0x28, 0xa1, 0x09, 0x74, 0x6a, 0x18, 0x4d, 0x7f, 0x70, 0x8d, 0xe5, 0xc4, 0x51, 0x48, 0x75, - 0x27, 0x65, 0xb2, 0xcf, 0x62, 0x6f, 0xc8, 0x74, 0xaa, 0x89, 0x98, 0xad, 0x51, 0x40, 0x92, 0x72, - 0xee, 0x01, 0xf9, 0x18, 0xc8, 0xb9, 0x23, 0xec, 0x88, 0x8d, 0xb8, 0x64, 0x49, 0x0e, 0x8c, 0x60, - 0xab, 0xd2, 0xf6, 0xb9, 0x23, 0x28, 0x32, 0xfa, 0x9a, 0x4e, 0x3e, 0x84, 0xbc, 0xbc, 0x6f, 0x30, - 0x77, 0x19, 0x80, 0xf3, 0xf2, 0x3e, 0xf9, 0x40, 0x07, 0x20, 0x5f, 0xb0, 0x90, 0x09, 0x0d, 0xb7, - 0x7c, 0x2f, 0x4f, 0xb3, 0x44, 0xb5, 0xbd, 0x0f, 0x61, 0x33, 0x0e, 0x43, 0xe6, 0x32, 0x21, 0x54, - 0x7c, 0x90, 0x9c, 0x07, 0xb6, 0xeb, 0x04, 0x81, 0x8e, 0x85, 0xd5, 0x5e, 0x81, 0xae, 0x67, 0xf8, - 0x03, 0xce, 0x83, 0x5d, 0xc5, 0xd5, 0xd1, 0xa0, 0xed, 0x87, 0x4f, 0x79, 0x34, 0x42, 0x2d, 0xd8, - 0x01, 0x17, 0x02, 0x81, 0x57, 0xed, 0x15, 0x69, 0x2b, 0xc3, 0x39, 0xe4, 0x7a, 0xaa, 0x9f, 0xc2, - 0x7a, 0xc4, 0xbc, 0x38, 0xf4, 0x1c, 0x95, 0xee, 0x4b, 0x47, 0xb2, 0x11, 0x0b, 0xa5, 0xc0, 0xd8, - 0x58, 0xed, 0x95, 0xe8, 0x5a, 0xca, 0xed, 0xa7, 0x4c, 0x6d, 0x81, 0x1b, 0x63, 0xce, 0x23, 0xfb, - 0x9b, 0x58, 0x27, 0x7b, 0xf6, 0x37, 0xb1, 0x13, 0xf8, 0xf2, 0x02, 0x23, 0x67, 0xb5, 0x57, 0xa6, - 0x6b, 0x8a, 0xfd, 0x95, 0xe1, 0x7e, 0xa5, 0x99, 0xaa, 0xe3, 0xcf, 0xa1, 0x93, 0xdd, 0x4b, 0x7b, - 0x1c, 0xf1, 0x61, 0x64, 0x54, 0xbc, 0x86, 0xfa, 0xa8, 0xd0, 0x9b, 0x59, 0x89, 0x93, 0x89, 0xc0, - 0xb7, 0xb9, 0x9c, 0xf5, 0xd7, 0x65, 0x28, 0xf4, 0x07, 0x03, 0xb2, 0x01, 0x85, 0x97, 0x2c, 0x42, - 0x4f, 0xa1, 0xe0, 0xa4, 0x1a, 0x6a, 0xf8, 0x5b, 0x50, 0x7a, 0xc9, 0x23, 0x4f, 0x47, 0x9e, 0x46, - 0x2f, 0x47, 0x75, 0x53, 0xb1, 0xde, 0x87, 0xba, 0xfa, 0xb6, 0x31, 0x5c, 0xe8, 0xc8, 0xd2, 0xe8, - 0xe5, 0x29, 0x28, 0xe2, 0x3e, 0xd2, 0x94, 0xd4, 0x06, 0x14, 0x5c, 0xa6, 0x43, 0x4b, 0xbe, 0x57, - 0xa0, 0xaa, 0x61, 0xc6, 0x75, 0xcf, 0x9d, 0x48, 0x60, 0x2a, 0xd6, 0xe8, 0x15, 0xa9, 0x6e, 0x9a, - 0x71, 0xd5, 0x77, 0x32, 0x2e, 0xa0, 0x40, 0x89, 0x82, 0x22, 0x4e, 0xc6, 0xfd, 0x00, 0x56, 0x84, - 0x54, 0xc9, 0x67, 0xe0, 0x5c, 0xd8, 0x23, 0x81, 0x81, 0xa4, 0xd1, 0x2b, 0x53, 0x10, 0x52, 0xee, - 0x29, 0xe2, 0x11, 0x8a, 0x6d, 0x03, 0x61, 0xa1, 0xf4, 0xe5, 0x85, 0x1d, 0x31, 0x97, 0x0f, 0x43, - 0x1f, 0x41, 0x53, 0x37, 0x8a, 0x59, 0xd5, 0x3c, 0x3a, 0x61, 0x99, 0x3d, 0x47, 0xba, 0xcf, 0x84, - 0x1d, 0x4b, 0xc9, 0x22, 0xa6, 0x43, 0x43, 0xa3, 0x57, 0xa5, 0xad, 0x84, 0x73, 0xaa, 0x19, 0x4a, - 0xfe, 0x13, 0x58, 0x4b, 0xe5, 0xcd, 0x2c, 0xbf, 0x62, 0x1e, 0x9a, 0x70, 0xa3, 0x57, 0xa3, 0x24, - 0x61, 0xd2, 0x94, 0x67, 0xbc, 0xd3, 0x64, 0x65, 0x4e, 0x10, 0x18, 0xeb, 0x05, 0xba, 0x92, 0x2e, - 0xca, 0x09, 0x02, 0x25, 0xf9, 0x07, 0x70, 0x2b, 0x1d, 0xdf, 0x71, 0xbf, 0x89, 0xfd, 0x88, 0x79, - 0xe9, 0xc2, 0x5a, 0x38, 0x4b, 0x9d, 0xde, 0x4c, 0x44, 0x76, 0x8c, 0x44, 0x66, 0x81, 0xfb, 0xf0, - 0xe6, 0xfc, 0x00, 0x99, 0x95, 0xb6, 0x71, 0x8c, 0x15, 0x6a, 0xcd, 0x8e, 0x31, 0xb5, 0xe2, 0x6e, - 0x19, 0x8a, 0xf6, 0x4b, 0x16, 0x75, 0xab, 0x50, 0xb6, 0xd1, 0x0a, 0xba, 0x4d, 0x58, 0xb1, 0x33, - 0x36, 0x80, 0x12, 0xae, 0x91, 0xc0, 0xfd, 0x44, 0x89, 0xcc, 0x6e, 0x76, 0x5b, 0xd0, 0xb0, 0xb3, - 0xfb, 0xd6, 0xdd, 0x80, 0x35, 0x7b, 0x7e, 0x87, 0xba, 0x6b, 0xb0, 0x6a, 0xcf, 0x6e, 0x42, 0x77, - 0x13, 0xd6, 0xed, 0x05, 0x9a, 0xee, 0xb6, 0xa1, 0x69, 0x4f, 0xe9, 0xb2, 0xfb, 0x26, 0x58, 0xf6, - 0x52, 0x9d, 0x75, 0xdf, 0x81, 0xb7, 0xec, 0xcb, 0x14, 0x62, 0xfd, 0x26, 0x07, 0x85, 0xc3, 0xc3, - 0x23, 0xf2, 0x26, 0x54, 0xa4, 0x7c, 0x2a, 0x95, 0x7d, 0xe5, 0x50, 0x47, 0x37, 0x68, 0x59, 0x11, - 0xb4, 0x6d, 0x69, 0xae, 0x50, 0xdc, 0x04, 0x1d, 0x8a, 0x2b, 0x34, 0xf7, 0x1e, 0xac, 0x4a, 0xfe, - 0x9c, 0x85, 0xc2, 0x1e, 0xb3, 0xc8, 0x16, 0xcc, 0xe5, 0xa1, 0x67, 0xa2, 0x55, 0x9e, 0xb6, 0x34, - 0xeb, 0x84, 0x45, 0x7d, 0x64, 0x28, 0xf5, 0x02, 0x54, 0x6d, 0x33, 0x5b, 0xf2, 0xad, 0xc6, 0xee, - 0xae, 0x03, 0xb1, 0xe7, 0x46, 0xb2, 0x7e, 0x5d, 0x86, 0xc2, 0x60, 0xd0, 0x37, 0x8b, 0x38, 0x9b, - 0x2c, 0x42, 0x2f, 0xf1, 0xec, 0x28, 0x41, 0x9f, 0x42, 0x75, 0xc1, 0x04, 0xbe, 0x39, 0x54, 0x57, - 0x0c, 0x68, 0x97, 0xa2, 0x5a, 0xc3, 0xaa, 0xb0, 0x04, 0xd5, 0x35, 0x1c, 0xb7, 0x38, 0x8f, 0xea, - 0x04, 0xb4, 0x4b, 0x51, 0x5d, 0x4f, 0xe0, 0x3a, 0x8d, 0xea, 0xc5, 0x70, 0x6d, 0xbe, 0x36, 0x5c, - 0x5b, 0xaf, 0x0f, 0xd7, 0xf6, 0x6b, 0xc2, 0x75, 0xf5, 0x77, 0x82, 0x2b, 0xf9, 0x0e, 0xe0, 0xba, - 0x76, 0x3d, 0xb8, 0x1a, 0x1b, 0x52, 0xa6, 0xf1, 0x9d, 0x40, 0xf7, 0xff, 0x24, 0x52, 0xff, 0xbb, - 0x02, 0x2b, 0xd9, 0xcc, 0x06, 0x61, 0x17, 0x47, 0xa1, 0x2d, 0x9d, 0xe7, 0x7e, 0x38, 0x34, 0x89, - 0x5f, 0x12, 0xd5, 0x5a, 0x8a, 0x35, 0x40, 0x4e, 0x9a, 0xfb, 0x7d, 0x0e, 0x9d, 0x73, 0xe6, 0x28, - 0x45, 0x6c, 0x33, 0x3b, 0x70, 0xa4, 0x3a, 0xb7, 0xda, 0xe3, 0x07, 0xf7, 0x13, 0x44, 0x95, 0x7a, - 0x39, 0xba, 0x8e, 0x12, 0xfb, 0xdb, 0xec, 0x50, 0xf3, 0x4f, 0x1e, 0xdc, 0xd7, 0xf8, 0x5a, 0xdc, - 0xf9, 0xe1, 0x03, 0xd5, 0xb9, 0x80, 0x9d, 0xf3, 0xf3, 0x9d, 0x1f, 0x3e, 0xb8, 0xb4, 0xf3, 0x43, - 0xd5, 0xb9, 0x88, 0x9d, 0x0b, 0x0b, 0x3a, 0x3f, 0xd4, 0x9d, 0x3f, 0x86, 0xb6, 0xf4, 0x47, 0xcc, - 0x96, 0xdc, 0xbe, 0xf0, 0x59, 0xe0, 0xa9, 0x4e, 0x25, 0x13, 0x4b, 0x1b, 0x8a, 0x33, 0xe0, 0xbf, - 0x50, 0xf4, 0x64, 0xaa, 0x9b, 0x8c, 0x4b, 0x7b, 0xe4, 0x8b, 0x71, 0xc4, 0x3c, 0x1f, 0x0f, 0x7e, - 0x26, 0xe1, 0x2f, 0x1b, 0xa8, 0x6e, 0x30, 0x2e, 0x8f, 0xb2, 0xfc, 0xf4, 0x44, 0x6c, 0xf2, 0xe8, - 0xc0, 0x19, 0xdb, 0x78, 0x3f, 0x89, 0x5e, 0x23, 0xdf, 0x2b, 0xeb, 0x3c, 0x3a, 0x70, 0xc6, 0x54, - 0x51, 0x8d, 0xcf, 0x4b, 0x24, 0xc5, 0x98, 0x31, 0xf7, 0x7c, 0x12, 0x99, 0x2b, 0xb4, 0x65, 0x58, - 0x7d, 0xe4, 0xe8, 0x75, 0x7d, 0x04, 0x2d, 0xc9, 0xa5, 0x13, 0x64, 0xc4, 0x6b, 0x06, 0xba, 0x0d, - 0x64, 0x64, 0x85, 0x3f, 0x85, 0x0d, 0xe7, 0xe5, 0xf3, 0x97, 0x4a, 0x63, 0xc2, 0x0f, 0x58, 0xe8, - 0x26, 0x27, 0xf9, 0xba, 0x81, 0xee, 0x9a, 0x61, 0xf7, 0x35, 0x37, 0x73, 0xa4, 0x6f, 0xc7, 0xa1, - 0x13, 0x8a, 0x97, 0xca, 0xa6, 0xf4, 0x69, 0xc7, 0x04, 0x74, 0xa0, 0xad, 0x09, 0x07, 0x8f, 0x3b, - 0x4a, 0xfe, 0x0b, 0xe8, 0x3c, 0x75, 0x02, 0xc1, 0x6c, 0x3f, 0x94, 0x2c, 0x8a, 0xe2, 0x71, 0x46, - 0x5d, 0x0d, 0x03, 0xe0, 0x4d, 0x94, 0x38, 0xc8, 0x08, 0xa4, 0xd3, 0xfd, 0x08, 0x9a, 0xd9, 0x1d, - 0x1d, 0x09, 0xe3, 0x8e, 0x56, 0xe8, 0x0a, 0x4b, 0x37, 0x12, 0x7f, 0x49, 0xfb, 0xf6, 0x59, 0x73, - 0xed, 0xbe, 0x01, 0xb7, 0xec, 0x65, 0x36, 0xb9, 0x8c, 0x89, 0x36, 0xb7, 0x94, 0xa9, 0x6c, 0x0a, - 0x91, 0x3a, 0x6b, 0x33, 0x5d, 0x0b, 0x3a, 0xf6, 0x12, 0xd3, 0x40, 0xb4, 0x4e, 0xed, 0x3c, 0xae, - 0x77, 0x6e, 0x87, 0xbb, 0x04, 0xda, 0xf6, 0xcc, 0x36, 0x76, 0x3b, 0xb0, 0x69, 0x2f, 0xdc, 0x2d, - 0x5c, 0xc6, 0xec, 0x76, 0xe0, 0xc2, 0x97, 0xe9, 0xbc, 0xbb, 0x0a, 0x2d, 0x7b, 0x5a, 0xa3, 0xd6, - 0x6f, 0x2b, 0x50, 0x54, 0xfb, 0x45, 0xd6, 0xa1, 0xe4, 0x87, 0x1e, 0x7b, 0xa5, 0x03, 0x34, 0xd5, - 0x0d, 0xf2, 0x11, 0x14, 0x23, 0x1e, 0x30, 0x73, 0x5f, 0x72, 0x73, 0xc1, 0x55, 0x2d, 0xe5, 0x01, - 0xa3, 0x28, 0x44, 0xde, 0x86, 0x2a, 0xde, 0x22, 0x24, 0xa0, 0x55, 0x31, 0xb4, 0x82, 0x14, 0x6d, - 0x77, 0x16, 0x94, 0x59, 0xe8, 0x25, 0xa8, 0xc4, 0x24, 0x98, 0x85, 0x06, 0x58, 0xb3, 0x69, 0x68, - 0x29, 0xc9, 0x82, 0xa7, 0xd3, 0xd0, 0xf7, 0xa0, 0x1e, 0x04, 0xa3, 0x24, 0xbc, 0x1b, 0xcc, 0x15, - 0x68, 0x2d, 0x08, 0x46, 0x83, 0x34, 0x9f, 0x98, 0x08, 0x61, 0x4e, 0x51, 0x31, 0x68, 0x36, 0x42, - 0x22, 0x4d, 0x3a, 0x50, 0x68, 0xac, 0x81, 0x95, 0xef, 0x95, 0x68, 0x59, 0x09, 0x8c, 0x93, 0x21, - 0xa4, 0x14, 0x89, 0xdb, 0x37, 0x58, 0x2a, 0xd3, 0x9a, 0x94, 0x62, 0x90, 0x26, 0x05, 0xf3, 0xf6, - 0x09, 0x06, 0xa2, 0xb3, 0xf6, 0x49, 0x3e, 0x81, 0xf5, 0x79, 0x73, 0x1a, 0xe9, 0xf0, 0x5d, 0xea, - 0x55, 0xe9, 0xea, 0x8c, 0x7b, 0x5a, 0xee, 0x9b, 0x56, 0x0c, 0x46, 0xe7, 0x7d, 0xd3, 0x42, 0x8f, - 0xdd, 0x30, 0xd1, 0x75, 0x91, 0xc7, 0x5e, 0x78, 0xea, 0xab, 0xcf, 0x9d, 0xfa, 0xee, 0xc3, 0xea, - 0x9c, 0x61, 0x9b, 0x03, 0xdf, 0x0a, 0x6d, 0xcf, 0x7a, 0x3b, 0xbd, 0xee, 0xd6, 0x8c, 0xc9, 0x9a, - 0xb3, 0x5e, 0x83, 0x36, 0xa7, 0x5d, 0x8b, 0xd6, 0x35, 0x4c, 0xcc, 0xd8, 0x1c, 0xf0, 0x9a, 0x34, - 0x43, 0x53, 0x00, 0xaf, 0x43, 0xcd, 0x4e, 0x8c, 0xab, 0x5b, 0x83, 0x8a, 0xad, 0x2d, 0x69, 0x3e, - 0x0f, 0x56, 0xd1, 0x36, 0x63, 0x22, 0xd9, 0xb6, 0x48, 0x32, 0x42, 0xb3, 0xf1, 0xc8, 0xcb, 0x6c, - 0xf3, 0x02, 0x7c, 0x74, 0x6f, 0xc2, 0x86, 0xbd, 0x68, 0xe7, 0x16, 0x3b, 0x81, 0xc5, 0x6e, 0x08, - 0x13, 0x80, 0x89, 0x4e, 0x51, 0x6a, 0x4e, 0xa3, 0x08, 0xfe, 0x19, 0xad, 0x75, 0x1b, 0x50, 0xcf, - 0x40, 0x5c, 0xfb, 0x87, 0xe9, 0x7b, 0x9b, 0xd4, 0xb7, 0xa4, 0xb7, 0x33, 0x73, 0xd3, 0xdd, 0x82, - 0x9b, 0xf6, 0xe2, 0x63, 0x3b, 0xfe, 0xc4, 0xec, 0xb1, 0x1c, 0x7f, 0x79, 0xd1, 0xd9, 0x1b, 0x5d, - 0xd1, 0xc2, 0xc3, 0x35, 0x7a, 0x9d, 0x65, 0xa7, 0xe7, 0xc7, 0xc5, 0x6a, 0xae, 0x9d, 0x7f, 0x5c, - 0xac, 0xe6, 0xdb, 0x05, 0xda, 0x74, 0x5c, 0x37, 0x8e, 0x1c, 0xf7, 0x42, 0xaf, 0x95, 0xb6, 0xd9, - 0xab, 0x31, 0x8b, 0x7c, 0xf4, 0x6a, 0x48, 0xb1, 0xfe, 0xbd, 0x08, 0x30, 0xb9, 0x97, 0x26, 0xbf, - 0x07, 0x24, 0xbd, 0xc7, 0x9b, 0xdc, 0xfc, 0x26, 0x97, 0x55, 0xed, 0x84, 0x97, 0x5c, 0xfd, 0x2e, - 0xbc, 0xae, 0x82, 0xff, 0xbf, 0xae, 0x5a, 0x78, 0x5d, 0x35, 0x83, 0xff, 0xea, 0x92, 0x5b, 0x9f, - 0xcb, 0x6e, 0x46, 0x6a, 0xe6, 0x3a, 0xe2, 0x92, 0x9b, 0x11, 0xcc, 0x77, 0xe7, 0xf7, 0xf0, 0x1a, - 0x86, 0xfb, 0x1d, 0x5a, 0xd5, 0xdf, 0xe4, 0x20, 0xbf, 0x7b, 0x40, 0x2c, 0xa8, 0x8e, 0x23, 0xfe, - 0xc2, 0xf7, 0xcc, 0x0d, 0x4d, 0x8d, 0xa6, 0x6d, 0xf2, 0x16, 0x80, 0xcb, 0x47, 0x23, 0x5f, 0xda, - 0xe2, 0xdc, 0x49, 0xaa, 0x7b, 0x9a, 0xd2, 0x3f, 0x77, 0x48, 0x1b, 0x0a, 0x11, 0x7b, 0x6a, 0xee, - 0xfd, 0xd5, 0x27, 0x16, 0x96, 0xe2, 0x20, 0xb0, 0x23, 0x86, 0x78, 0x30, 0xb7, 0xfe, 0x75, 0x45, - 0xa3, 0x9a, 0x84, 0x77, 0xe2, 0x71, 0x68, 0xc7, 0x51, 0x60, 0x2e, 0xfc, 0xcb, 0x51, 0x1c, 0x9e, - 0x46, 0x81, 0x8a, 0xb6, 0x8e, 0x2b, 0x79, 0x94, 0xdc, 0xf2, 0x63, 0xc3, 0xfa, 0x9f, 0x12, 0x94, - 0x77, 0xb1, 0x34, 0x67, 0xfd, 0x67, 0x11, 0x2a, 0xc9, 0x28, 0xd3, 0x75, 0xc7, 0xdc, 0x6c, 0xdd, - 0x71, 0xba, 0x24, 0x97, 0x9f, 0x2d, 0xc9, 0x2d, 0xa8, 0x5c, 0x15, 0x17, 0x56, 0xae, 0x36, 0xa1, - 0x1c, 0xb1, 0xa1, 0xda, 0xd5, 0xb2, 0x59, 0x2b, 0xb6, 0x48, 0x77, 0xae, 0xa6, 0x57, 0xb9, 0xac, - 0xa6, 0xd7, 0xbb, 0x31, 0x53, 0xd5, 0xcb, 0x84, 0x9a, 0xa4, 0xc2, 0x55, 0x35, 0xe7, 0x81, 0x2c, - 0x51, 0xa7, 0xb1, 0xba, 0xcc, 0x55, 0xbb, 0x4e, 0x99, 0xeb, 0x47, 0xd0, 0x3e, 0x73, 0xdc, 0xe7, - 0x6a, 0x49, 0xa1, 0x67, 0x87, 0xdc, 0x17, 0x1a, 0xea, 0x55, 0xda, 0x9a, 0xd0, 0x8f, 0x15, 0x99, - 0x7c, 0x02, 0x9b, 0x01, 0x7f, 0x99, 0xb8, 0x2b, 0x7b, 0xe4, 0xbb, 0x11, 0x1f, 0x9f, 0xf3, 0x90, - 0x61, 0x00, 0xae, 0xd2, 0xf5, 0x80, 0xbf, 0x34, 0x77, 0x81, 0x47, 0x29, 0x8f, 0xbc, 0x03, 0xf5, - 0xb1, 0xe3, 0x3e, 0x67, 0x52, 0x5f, 0x57, 0xea, 0x8b, 0x56, 0xd0, 0xa4, 0x43, 0x2e, 0x84, 0x29, - 0x71, 0x35, 0xae, 0x2a, 0x71, 0xe5, 0x17, 0x94, 0xb8, 0x9a, 0xd7, 0x2b, 0x71, 0xb5, 0x96, 0x94, - 0xb8, 0x30, 0x54, 0x4d, 0xef, 0x4a, 0x0a, 0x1f, 0xa3, 0xcf, 0x6e, 0x09, 0x0a, 0xb6, 0xeb, 0x3f, - 0x2e, 0x56, 0x0b, 0xed, 0x22, 0x9d, 0xaf, 0x31, 0x5b, 0x7f, 0x91, 0x83, 0x2a, 0x65, 0x62, 0xcc, - 0x43, 0xc1, 0xc8, 0x87, 0xb0, 0x3a, 0xb1, 0x10, 0x5b, 0x19, 0x6d, 0x6a, 0x6a, 0x2d, 0x91, 0xfd, - 0xa1, 0x03, 0x8f, 0xf4, 0x61, 0x73, 0x1c, 0x31, 0xe1, 0x0f, 0x43, 0xe6, 0xd9, 0x63, 0x2e, 0x64, - 0x0a, 0x01, 0x5d, 0xd1, 0x9f, 0x14, 0xbe, 0x4f, 0x12, 0xb1, 0x13, 0x2e, 0xa4, 0x31, 0x67, 0xba, - 0x3e, 0x5e, 0x40, 0xb5, 0x7e, 0x93, 0x83, 0xb5, 0x5d, 0x1e, 0x3e, 0xf5, 0xa3, 0x51, 0x9f, 0xc7, - 0x91, 0xcb, 0x4e, 0xc7, 0x01, 0x77, 0x3c, 0xeb, 0xcf, 0xae, 0x8d, 0x83, 0x85, 0xbf, 0x90, 0x5f, - 0xfc, 0x0b, 0x3f, 0x84, 0x96, 0xcb, 0x3d, 0xa6, 0xce, 0xc4, 0xd1, 0xc5, 0x98, 0xfb, 0xa1, 0x34, - 0xc8, 0x6e, 0x2a, 0xf2, 0x7e, 0x4a, 0xb5, 0x60, 0xa2, 0x23, 0xeb, 0xaf, 0x72, 0x50, 0x78, 0xc4, - 0xa4, 0x35, 0xf8, 0x3e, 0x96, 0x64, 0x7d, 0x92, 0xd9, 0x8d, 0xbb, 0x50, 0x88, 0x62, 0xfd, 0xb6, - 0x61, 0x0a, 0x67, 0xd9, 0x2e, 0x54, 0x89, 0x58, 0xff, 0x52, 0x84, 0xe2, 0xa1, 0x2f, 0xa4, 0xf5, - 0xcf, 0x85, 0x6b, 0xaf, 0xea, 0xb3, 0x99, 0x32, 0xe8, 0xe5, 0x0f, 0x15, 0x7a, 0x37, 0x92, 0x22, - 0xa8, 0x32, 0xe1, 0x9f, 0x01, 0x8c, 0x9d, 0x21, 0xd3, 0x17, 0x69, 0xa8, 0xb3, 0xfa, 0x76, 0x27, - 0xed, 0x3f, 0x50, 0xd4, 0x13, 0x67, 0xe8, 0x87, 0x38, 0x48, 0x2f, 0x47, 0x6b, 0x4a, 0x1a, 0xc9, - 0x3a, 0x94, 0xe8, 0xaa, 0x24, 0x66, 0x4e, 0x26, 0xee, 0x5e, 0x52, 0x9b, 0xe8, 0xe5, 0x4d, 0x5d, - 0x52, 0x51, 0x54, 0xff, 0xcf, 0xb0, 0x34, 0xa9, 0x7b, 0x97, 0xae, 0xec, 0x5d, 0xc0, 0xe2, 0x64, - 0xd2, 0xf7, 0xce, 0x94, 0x9b, 0x44, 0x17, 0xa7, 0x0e, 0x05, 0xa9, 0xa3, 0xd4, 0xa9, 0xae, 0xf6, - 0x3f, 0x95, 0x4b, 0xfd, 0x4f, 0xaf, 0xa4, 0x3d, 0x90, 0x0a, 0x6e, 0x2a, 0x15, 0xd5, 0xda, 0xc1, - 0x64, 0x6d, 0xa2, 0x1b, 0x6c, 0x4e, 0x7e, 0x16, 0x13, 0xd8, 0x64, 0xed, 0xc8, 0x9b, 0x2c, 0xa6, - 0x5b, 0x81, 0x12, 0x16, 0x7d, 0xac, 0x57, 0x53, 0x88, 0x2c, 0x46, 0x71, 0x28, 0x3a, 0x39, 0xac, - 0x25, 0x2d, 0x33, 0x02, 0x94, 0x21, 0x7f, 0x08, 0xad, 0x90, 0xbd, 0x92, 0x99, 0xe9, 0x0d, 0x14, - 0x97, 0x6e, 0x0d, 0x6d, 0xa8, 0x0e, 0x27, 0xc9, 0xe6, 0x58, 0xff, 0x54, 0x84, 0x32, 0x1e, 0xbc, - 0x85, 0xf5, 0xaf, 0xf9, 0x6b, 0x5b, 0xd2, 0xc3, 0xa9, 0xfd, 0xcc, 0x5f, 0xb3, 0xca, 0xac, 0xda, - 0xa6, 0xca, 0xac, 0x3b, 0x16, 0xae, 0x55, 0x65, 0xc6, 0x6e, 0x13, 0xdb, 0x2d, 0xbe, 0xb6, 0xed, - 0x4e, 0x5b, 0x00, 0x06, 0x64, 0x65, 0xa1, 0x0b, 0x2d, 0xa0, 0x7c, 0xb9, 0x05, 0xe4, 0x97, 0x5a, - 0xc0, 0xa2, 0x6d, 0xfd, 0xf3, 0xac, 0xa7, 0xfd, 0x39, 0x54, 0xce, 0x62, 0x15, 0x42, 0x92, 0xad, - 0x7d, 0x7f, 0x59, 0xe4, 0xc0, 0xed, 0xd8, 0xea, 0xa2, 0x30, 0x4d, 0x3a, 0x29, 0xc5, 0xe1, 0xd1, - 0xfe, 0x85, 0x13, 0x18, 0x8d, 0xdf, 0x9a, 0x53, 0xdc, 0x9e, 0x79, 0x00, 0x47, 0x53, 0x51, 0xeb, - 0x97, 0x50, 0xd6, 0x23, 0x91, 0x2f, 0x60, 0x45, 0x8f, 0xa5, 0xcd, 0xd3, 0x78, 0x99, 0xcb, 0xb4, - 0x5f, 0xd7, 0xf2, 0x7d, 0x25, 0xae, 0x52, 0x97, 0x49, 0x85, 0xbb, 0x48, 0x75, 0xc3, 0x7a, 0x06, - 0xe5, 0x5d, 0x27, 0x74, 0x59, 0xf0, 0x3d, 0x79, 0xc7, 0xac, 0x1f, 0xfe, 0x9e, 0x4b, 0xf4, 0x7f, - 0x9b, 0x4b, 0x6b, 0xf4, 0xb7, 0x60, 0x63, 0xba, 0x46, 0x6f, 0x9f, 0x9e, 0x1c, 0x3e, 0xd9, 0xd9, - 0x6b, 0xdf, 0x20, 0x1b, 0xb0, 0x6a, 0x58, 0x8f, 0xf6, 0x8f, 0xf7, 0xe9, 0xce, 0x40, 0x57, 0xeb, - 0xe7, 0x2b, 0xf8, 0x79, 0xb2, 0x09, 0xc4, 0xd0, 0xfa, 0xa7, 0x47, 0x47, 0x3b, 0xf4, 0xe0, 0x6b, - 0x45, 0x2f, 0x2c, 0xac, 0xec, 0x17, 0xe7, 0x2b, 0xfb, 0xa5, 0x85, 0x95, 0xfd, 0x32, 0xc6, 0xfb, - 0xcc, 0x3b, 0x9c, 0x49, 0xbc, 0xaf, 0xb6, 0x6b, 0xb4, 0x62, 0x1e, 0xec, 0xdc, 0xf9, 0xc7, 0x02, - 0x54, 0x93, 0xfc, 0x6c, 0xf2, 0xb8, 0x24, 0x97, 0x7d, 0x5c, 0x32, 0xfb, 0xb6, 0x25, 0xbf, 0xe0, - 0x6d, 0xcb, 0xe2, 0x57, 0x2c, 0x85, 0x65, 0xaf, 0x58, 0xee, 0x99, 0xf7, 0x2a, 0x45, 0xb4, 0xf0, - 0x37, 0xe6, 0x32, 0xc5, 0xad, 0x81, 0x33, 0x14, 0xfa, 0x05, 0xa1, 0x7e, 0xcc, 0x62, 0x41, 0x35, - 0x16, 0x2c, 0xf2, 0x1c, 0xe9, 0x98, 0x54, 0x39, 0x6d, 0x9b, 0x67, 0x3c, 0xe5, 0xe4, 0x19, 0x8f, - 0xf5, 0xf7, 0x39, 0x58, 0xd5, 0x69, 0xf2, 0x97, 0x11, 0x1f, 0x99, 0x7a, 0xb7, 0xf5, 0x8b, 0x6b, - 0xdb, 0x5d, 0xe6, 0xa5, 0x4a, 0x7e, 0xea, 0xa5, 0xca, 0x24, 0x03, 0x2e, 0x64, 0x33, 0x60, 0xeb, - 0x61, 0x06, 0xbe, 0x3f, 0x86, 0x6a, 0x92, 0x77, 0x19, 0xe4, 0xac, 0xce, 0xfd, 0x1d, 0x4d, 0x45, - 0xac, 0x4f, 0xa1, 0x96, 0xfe, 0xea, 0x82, 0xb7, 0x90, 0xeb, 0xd9, 0xb7, 0x90, 0xb5, 0xcc, 0x7b, - 0xc7, 0x3b, 0x1e, 0x34, 0xa6, 0xd2, 0x6a, 0x42, 0xa0, 0x88, 0x7e, 0x4b, 0xf7, 0xc6, 0x6f, 0x72, - 0x0f, 0x6a, 0xc9, 0x4c, 0x6a, 0xdb, 0x0a, 0x8b, 0x57, 0x33, 0x91, 0x31, 0xaa, 0x2c, 0x24, 0xaa, - 0xbc, 0xf3, 0x0f, 0x39, 0x20, 0x13, 0xaf, 0xb3, 0xe7, 0x8b, 0xb1, 0x23, 0xdd, 0xf3, 0xd7, 0xca, - 0x06, 0x37, 0xa0, 0xfc, 0x8c, 0x9f, 0x4d, 0x94, 0x59, 0x7a, 0xc6, 0xcf, 0x0e, 0xbc, 0x29, 0x3d, - 0x15, 0xae, 0xd4, 0x53, 0x9a, 0xf9, 0x17, 0xaf, 0x91, 0xf9, 0x7f, 0xf8, 0x14, 0x9a, 0xd3, 0x74, - 0xf2, 0x0e, 0xbc, 0xd1, 0x3f, 0x38, 0x3a, 0x3d, 0xdc, 0x19, 0x1c, 0x3c, 0x39, 0xb6, 0x8f, 0x9e, - 0xec, 0xed, 0xdb, 0xa7, 0xc7, 0xfd, 0x93, 0xfd, 0xdd, 0x83, 0x2f, 0x0f, 0xf6, 0x15, 0x5c, 0x3b, - 0xb0, 0x3e, 0x2b, 0x30, 0xd8, 0xff, 0x93, 0x41, 0x3b, 0x87, 0x18, 0x9f, 0xe1, 0xec, 0x9c, 0xee, - 0x1d, 0x3c, 0x69, 0xe7, 0xb7, 0x7f, 0x5d, 0x86, 0xd6, 0x8e, 0xb2, 0xed, 0xc9, 0x6c, 0xc4, 0x83, - 0x35, 0x6d, 0x7b, 0xd3, 0x6f, 0x45, 0x97, 0x9d, 0xe5, 0xb5, 0xec, 0x56, 0x92, 0xe5, 0xfe, 0xe0, - 0x2a, 0x31, 0x63, 0x65, 0xdf, 0xe6, 0xe0, 0xad, 0x24, 0x1b, 0x4e, 0x05, 0xb3, 0x79, 0x31, 0xd9, - 0x5e, 0x1a, 0x35, 0xe6, 0x72, 0xe8, 0x74, 0xf6, 0x9f, 0xbc, 0x56, 0x1f, 0xb3, 0x94, 0x3f, 0x85, - 0xf6, 0x23, 0x26, 0xa7, 0xff, 0xf6, 0xce, 0x92, 0x81, 0x1e, 0x31, 0x99, 0x4e, 0xf6, 0xde, 0xa5, - 0x32, 0x66, 0x70, 0x1b, 0x88, 0xca, 0x5e, 0xa7, 0x24, 0x04, 0x59, 0xd6, 0x55, 0x89, 0xa6, 0xe3, - 0xbf, 0x7f, 0xb9, 0x90, 0x99, 0x40, 0x6d, 0x97, 0xf2, 0x8e, 0x33, 0x33, 0x7c, 0x70, 0x79, 0xcc, - 0xbd, 0x72, 0xbb, 0x12, 0xb1, 0xcc, 0x2c, 0x18, 0xfd, 0xae, 0x69, 0x14, 0x28, 0x7b, 0xf5, 0x2c, - 0x89, 0x98, 0x99, 0xe5, 0x05, 0xdc, 0x32, 0xa6, 0x67, 0x50, 0x93, 0x71, 0x7f, 0xe4, 0xa3, 0x79, - 0x1f, 0x3b, 0xe7, 0x23, 0xd3, 0x19, 0x3f, 0xbe, 0x9e, 0xb0, 0x9e, 0xb7, 0xfb, 0xe5, 0xd7, 0xef, - 0x0d, 0x7d, 0x79, 0x1e, 0x9f, 0x6d, 0xb9, 0x7c, 0x94, 0xbc, 0xc4, 0xd7, 0xaf, 0xe9, 0x5d, 0x1e, - 0x24, 0x84, 0xdf, 0xe6, 0x1b, 0x87, 0xfe, 0x0b, 0xf6, 0x47, 0x78, 0xec, 0xe3, 0x92, 0xff, 0x57, - 0xbe, 0x69, 0xda, 0x9f, 0x7d, 0x86, 0x84, 0xb3, 0x32, 0x76, 0xf9, 0xc9, 0xff, 0x06, 0x00, 0x00, - 0xff, 0xff, 0xa4, 0x16, 0x70, 0x3d, 0xfc, 0x2f, 0x00, 0x00, + 0xc8, 0x22, 0xb7, 0x20, 0xc7, 0x5c, 0x02, 0xe4, 0x16, 0x20, 0x08, 0xf2, 0x37, 0xe4, 0x92, 0x7b, + 0xee, 0x41, 0xbd, 0xaa, 0xee, 0xe9, 0xf9, 0x22, 0xa9, 0x85, 0x0d, 0xe4, 0x90, 0x5b, 0xd7, 0x7b, + 0xaf, 0x3e, 0xfa, 0xd5, 0xfb, 0xbd, 0xf7, 0xaa, 0x5e, 0xc1, 0xdb, 0x81, 0xff, 0x82, 0x3d, 0xf7, + 0xa5, 0xed, 0x0c, 0x59, 0x28, 0x6d, 0xe1, 0x8f, 0xe2, 0xc0, 0x91, 0x3e, 0x0f, 0xb7, 0xc6, 0x11, + 0x97, 0x9c, 0x54, 0x0c, 0xdf, 0x7a, 0x17, 0x05, 0xee, 0xcd, 0x88, 0x33, 0x21, 0x52, 0x59, 0xeb, + 0xed, 0x21, 0xe7, 0xc3, 0x80, 0xdd, 0xc3, 0xd6, 0x59, 0xfc, 0xf4, 0x9e, 0x17, 0x47, 0x99, 0xb1, + 0xac, 0x77, 0x66, 0xf9, 0xd2, 0x1f, 0x31, 0x21, 0x9d, 0xd1, 0xd8, 0x08, 0xdc, 0x4a, 0x46, 0x77, + 0x03, 0x1e, 0x7b, 0x7a, 0x0e, 0xc3, 0x5a, 0x4f, 0x58, 0x23, 0xee, 0xb1, 0x40, 0x68, 0xea, 0x9d, + 0xff, 0x28, 0xc0, 0x7a, 0x3f, 0x5d, 0x32, 0x8d, 0xc3, 0x7e, 0x3c, 0x1a, 0x39, 0xd1, 0x05, 0xd9, + 0x84, 0xf2, 0xd8, 0x11, 0x82, 0x79, 0x9d, 0xdc, 0xed, 0xdc, 0xdd, 0x12, 0x35, 0x2d, 0x45, 0x7f, + 0xea, 0xf8, 0x01, 0xf3, 0x3a, 0x79, 0x4d, 0xd7, 0x2d, 0xf2, 0x16, 0xc0, 0x90, 0xfb, 0xe1, 0xd0, + 0x7e, 0xc9, 0x82, 0xa0, 0x53, 0xb8, 0x9d, 0xbb, 0x5b, 0xa3, 0x35, 0xa4, 0xfc, 0x31, 0x0b, 0x02, + 0xc5, 0x96, 0xdc, 0xf6, 0x47, 0xe3, 0x88, 0xbf, 0x60, 0x9d, 0xa2, 0x66, 0x4b, 0x7e, 0xa0, 0x09, + 0xe4, 0x73, 0x28, 0xfb, 0x42, 0xc4, 0x4c, 0x74, 0x4a, 0xb7, 0x0b, 0x77, 0xeb, 0xdb, 0xef, 0x6d, + 0x99, 0xd5, 0x6e, 0x2d, 0x5a, 0xdc, 0xd6, 0x81, 0x92, 0xa5, 0xa6, 0x0b, 0xf9, 0x0a, 0x56, 0xdc, + 0x73, 0x47, 0xda, 0xe7, 0xbe, 0x90, 0x3c, 0xba, 0xe8, 0x94, 0x71, 0x88, 0xad, 0xcb, 0x87, 0xd8, + 0x3d, 0x77, 0x64, 0x4f, 0x77, 0xd8, 0x0f, 0x65, 0x74, 0x41, 0xeb, 0xee, 0x84, 0x62, 0x7d, 0x0d, + 0xed, 0x59, 0x01, 0xd2, 0x86, 0xc2, 0x73, 0x76, 0x81, 0xea, 0xa8, 0x51, 0xf5, 0x49, 0xee, 0x43, + 0xe9, 0x85, 0x13, 0xc4, 0x0c, 0x55, 0x51, 0xdf, 0xb6, 0xd2, 0x19, 0xb5, 0xde, 0xd5, 0x08, 0xbb, + 0x3c, 0x94, 0xec, 0x95, 0xa4, 0x5a, 0xf0, 0xb3, 0xfc, 0xef, 0xe7, 0x2c, 0x1b, 0x4a, 0xb8, 0x7e, + 0x72, 0x1b, 0xea, 0x1e, 0x13, 0x6e, 0xe4, 0x8f, 0xd5, 0xda, 0xcc, 0xc0, 0x59, 0x12, 0x79, 0x1b, + 0x40, 0xc4, 0xc3, 0x21, 0x13, 0x28, 0x90, 0x47, 0x81, 0x0c, 0x85, 0xac, 0x43, 0x29, 0x70, 0xce, + 0x58, 0xa2, 0x6f, 0xdd, 0xb8, 0xf3, 0x0f, 0x47, 0xd0, 0x98, 0xfa, 0x67, 0xd2, 0x84, 0xbc, 0xef, + 0x99, 0x09, 0xf2, 0x3e, 0x6e, 0xd6, 0x38, 0xe2, 0xcf, 0x98, 0x2b, 0x6d, 0xdf, 0x33, 0xe3, 0xd6, + 0x0c, 0xe5, 0xc0, 0x23, 0x0f, 0xa0, 0x2c, 0xa4, 0x23, 0x63, 0x81, 0xe3, 0x36, 0xb7, 0xdf, 0x5a, + 0xac, 0xca, 0xad, 0x3e, 0x0a, 0x51, 0x23, 0x4c, 0x3e, 0x82, 0x55, 0x6d, 0xd4, 0xd9, 0xbf, 0xd2, + 0x5b, 0xdd, 0x46, 0xc6, 0x5e, 0xe6, 0xd7, 0xd6, 0xa1, 0xc4, 0xa2, 0x88, 0x47, 0x9d, 0x92, 0x5e, + 0x3a, 0x36, 0xc8, 0x43, 0x00, 0x37, 0x62, 0x8e, 0x64, 0x9e, 0xed, 0xc8, 0x4e, 0xd9, 0xa8, 0x55, + 0x5b, 0xfd, 0x56, 0x62, 0xf5, 0x5b, 0x83, 0xc4, 0xea, 0x69, 0xcd, 0x48, 0xef, 0x48, 0xb2, 0x05, + 0xc5, 0x67, 0xfc, 0x4c, 0x74, 0x2a, 0xb8, 0xfb, 0xd6, 0x92, 0x25, 0x3f, 0xe6, 0x67, 0x14, 0xe5, + 0x94, 0x0e, 0xf4, 0x6a, 0x43, 0x67, 0xc4, 0x3a, 0x35, 0xad, 0x03, 0xa4, 0x1c, 0x3b, 0x23, 0x46, + 0xbe, 0x80, 0xa6, 0x70, 0x59, 0xe8, 0x44, 0x3e, 0xb7, 0x87, 0x11, 0x8f, 0xc7, 0x1d, 0xc0, 0xd5, + 0x6c, 0x4e, 0x06, 0x36, 0xec, 0x47, 0x8a, 0x4b, 0x1b, 0x22, 0xdb, 0x24, 0x0f, 0xa0, 0xca, 0x42, + 0x4f, 0xff, 0x46, 0xfd, 0xca, 0xdf, 0xa8, 0xa0, 0xec, 0x8e, 0x24, 0x6f, 0x40, 0xed, 0x19, 0x3f, + 0xb3, 0x5d, 0x1e, 0x87, 0xb2, 0xb3, 0x82, 0x00, 0xab, 0x3e, 0xe3, 0x67, 0xbb, 0xaa, 0x4d, 0xde, + 0x85, 0x15, 0x0d, 0x42, 0xc3, 0x6f, 0x20, 0xbf, 0xae, 0x69, 0xa9, 0x88, 0xc6, 0xa3, 0x11, 0x69, + 0x6a, 0x11, 0x4d, 0xd3, 0x22, 0x3f, 0x84, 0x56, 0x18, 0x8f, 0x32, 0x7e, 0x4a, 0x74, 0x5a, 0x28, + 0xd5, 0x0c, 0xe3, 0xd1, 0x44, 0x59, 0x82, 0x6c, 0x43, 0x29, 0x16, 0xce, 0x90, 0x75, 0xda, 0xb8, + 0xfe, 0x37, 0x97, 0x68, 0xf4, 0x54, 0xc9, 0x50, 0x2d, 0xaa, 0x4c, 0xda, 0xe5, 0xa1, 0x1b, 0x47, + 0x11, 0x0b, 0xdd, 0x8b, 0xce, 0xaa, 0x9e, 0x3e, 0x43, 0x22, 0x1f, 0x41, 0x51, 0x39, 0xa0, 0x0e, + 0x41, 0xcb, 0xba, 0xb9, 0x60, 0xd0, 0x23, 0xee, 0x31, 0x8a, 0x42, 0xe4, 0x73, 0xa8, 0x8c, 0x98, + 0x8c, 0x7c, 0x57, 0x74, 0xd6, 0x70, 0x11, 0xef, 0x2e, 0x59, 0x04, 0x8d, 0xc3, 0x23, 0x2d, 0x48, + 0x93, 0x1e, 0x4a, 0x17, 0x42, 0x83, 0xdd, 0xfe, 0x95, 0x90, 0x5e, 0x67, 0xfd, 0x76, 0xee, 0xee, + 0x0a, 0xad, 0x1b, 0xda, 0xd7, 0x42, 0x7a, 0xe4, 0x7d, 0xa8, 0xa3, 0x0f, 0x31, 0xda, 0xda, 0x50, + 0xcb, 0xed, 0xdd, 0xa0, 0x80, 0x44, 0x54, 0xd7, 0xb7, 0xb9, 0x1c, 0xd9, 0x82, 0xbc, 0xeb, 0x77, + 0x36, 0x71, 0x01, 0xb7, 0x96, 0x2c, 0x60, 0xf7, 0xa0, 0x97, 0xa3, 0x79, 0xd7, 0x57, 0xf2, 0x1d, + 0xa8, 0x08, 0x67, 0x34, 0x0e, 0x98, 0xe8, 0xdc, 0x44, 0x05, 0x24, 0x4d, 0xb5, 0xbd, 0x6a, 0xb7, + 0xec, 0xc8, 0x91, 0xac, 0xd3, 0xb9, 0x9d, 0xbb, 0x9b, 0xa3, 0x55, 0x45, 0xa0, 0x8e, 0x64, 0xd6, + 0x5f, 0x96, 0xa1, 0xf0, 0x98, 0x9f, 0xcd, 0x81, 0xf5, 0x61, 0x8a, 0xc6, 0x3c, 0xea, 0xec, 0xdd, + 0xe5, 0xa6, 0x3d, 0x8b, 0xc8, 0x3b, 0xb0, 0xe2, 0x87, 0x42, 0x46, 0xb1, 0xab, 0x37, 0x5a, 0xbb, + 0x89, 0x29, 0xda, 0x04, 0x88, 0xc5, 0x2c, 0x10, 0x7f, 0x0c, 0x44, 0xa3, 0x83, 0xbd, 0x1a, 0x33, + 0x57, 0x1a, 0x43, 0xd1, 0x58, 0xd5, 0x28, 0xdf, 0xcf, 0x30, 0x26, 0x8e, 0xa8, 0x9c, 0x71, 0x44, + 0x84, 0x40, 0x51, 0x3a, 0x43, 0x0d, 0xc9, 0x1a, 0xc5, 0x6f, 0xa5, 0x82, 0x88, 0xf3, 0x91, 0x46, + 0x5d, 0x15, 0xa5, 0xab, 0x8a, 0x80, 0xa0, 0x7b, 0x08, 0x20, 0xa4, 0x13, 0x19, 0xf8, 0xc3, 0xd5, + 0xf0, 0x37, 0xd2, 0x3b, 0xf2, 0x77, 0x05, 0xdc, 0x4d, 0xa8, 0xe0, 0x72, 0x7c, 0x0f, 0xe1, 0x56, + 0xa3, 0x65, 0xd5, 0x3c, 0xf0, 0xc8, 0x4f, 0x13, 0xeb, 0x6f, 0xe0, 0x60, 0xb7, 0x2f, 0x51, 0xfa, + 0x14, 0x02, 0x32, 0x26, 0xdb, 0xbc, 0xd4, 0x64, 0x1f, 0xf3, 0xb3, 0x39, 0x93, 0x7d, 0x07, 0xea, + 0xa9, 0xd3, 0xf1, 0x3d, 0xc4, 0xa5, 0x72, 0xf8, 0x86, 0x74, 0x80, 0xd1, 0x57, 0xdb, 0x12, 0x82, + 0xb2, 0x44, 0x4d, 0xcb, 0xfa, 0x25, 0x94, 0x70, 0x15, 0xe4, 0x2e, 0xb4, 0x55, 0xbc, 0xb1, 0x65, + 0x1c, 0x85, 0xc2, 0x98, 0xb5, 0x0e, 0xe0, 0x4d, 0x45, 0x1f, 0x28, 0xb2, 0xf6, 0x03, 0x1f, 0xc2, + 0xaa, 0x13, 0x7b, 0x3e, 0x9f, 0x12, 0xd5, 0x31, 0xbd, 0x85, 0x8c, 0x89, 0xec, 0x1d, 0x0e, 0x65, + 0x6d, 0x59, 0x84, 0x40, 0xb3, 0x3f, 0xd8, 0x19, 0x9c, 0xf6, 0xed, 0x93, 0xfd, 0xe3, 0xbd, 0x83, + 0xe3, 0x47, 0xed, 0x1b, 0x19, 0x1a, 0x3d, 0x3d, 0x3e, 0x56, 0xb4, 0x1c, 0x59, 0x87, 0xb6, 0xa1, + 0xed, 0x3e, 0x39, 0x3a, 0x39, 0xdc, 0x1f, 0xec, 0xef, 0xb5, 0xf3, 0x64, 0x15, 0x1a, 0x86, 0xfa, + 0xe5, 0xce, 0xc1, 0xe1, 0xfe, 0x5e, 0xbb, 0x90, 0x15, 0xdc, 0x39, 0xde, 0xdd, 0x3f, 0x54, 0xd4, + 0xe2, 0xe3, 0x62, 0xb5, 0xd6, 0x06, 0xeb, 0xef, 0x3e, 0x00, 0x98, 0xa8, 0x89, 0x7c, 0x0c, 0x2d, + 0xe9, 0x88, 0xe7, 0xb6, 0xcb, 0xd5, 0x3f, 0x63, 0x74, 0x51, 0x06, 0x9d, 0xef, 0xdd, 0xa0, 0x4d, + 0xc5, 0xd8, 0x4d, 0xe9, 0x0a, 0x85, 0x77, 0xa1, 0xc1, 0x5f, 0xb0, 0xc8, 0x09, 0x02, 0x5b, 0xb8, + 0x3c, 0x62, 0x88, 0xff, 0x7c, 0x2f, 0x47, 0x57, 0x0c, 0xb9, 0xaf, 0xa8, 0x4a, 0xf2, 0x53, 0x28, + 0x08, 0x29, 0xd1, 0xfe, 0xeb, 0xdb, 0x1f, 0x5c, 0xb9, 0x5d, 0x5b, 0xfd, 0xc1, 0x80, 0xaa, 0x1e, + 0xaa, 0x63, 0x10, 0x8c, 0x10, 0x15, 0xd7, 0xea, 0x78, 0x78, 0x78, 0x44, 0x55, 0x0f, 0xd5, 0x51, + 0x4a, 0x61, 0xe2, 0xdb, 0x35, 0x3a, 0x0e, 0x06, 0x7d, 0xaa, 0x7a, 0x10, 0x0a, 0x2b, 0x2e, 0x0f, + 0x5f, 0xb0, 0x48, 0xa0, 0x58, 0xa7, 0x82, 0x23, 0x6c, 0x5d, 0x3d, 0xc2, 0x6e, 0xa6, 0x17, 0x9d, + 0x1a, 0x83, 0xfc, 0x0c, 0x4a, 0x68, 0x02, 0x9d, 0x1a, 0x46, 0xce, 0x1f, 0x5c, 0x63, 0x39, 0x71, + 0x14, 0x52, 0xdd, 0x49, 0x99, 0xec, 0xb3, 0xd8, 0x1b, 0x32, 0x9d, 0x56, 0x22, 0x66, 0x6b, 0x14, + 0x90, 0xa4, 0x1c, 0x79, 0x40, 0x3e, 0x06, 0x72, 0xee, 0x08, 0x3b, 0x62, 0x23, 0x2e, 0x59, 0x92, + 0xef, 0x22, 0xd8, 0xaa, 0xb4, 0x7d, 0xee, 0x08, 0x8a, 0x8c, 0xbe, 0xa6, 0x93, 0x0f, 0x21, 0x2f, + 0xef, 0x1b, 0xcc, 0x5d, 0x06, 0xe0, 0xbc, 0xbc, 0x4f, 0x3e, 0xd0, 0xc1, 0xc6, 0x17, 0x2c, 0x64, + 0x42, 0xc3, 0x2d, 0xdf, 0xcb, 0xd3, 0x2c, 0x51, 0x6d, 0xef, 0x43, 0xd8, 0x8c, 0xc3, 0x90, 0xb9, + 0x4c, 0x08, 0x15, 0x0b, 0x24, 0xe7, 0x81, 0xed, 0x3a, 0x41, 0xa0, 0xe3, 0x5e, 0xb5, 0x57, 0xa0, + 0xeb, 0x19, 0xfe, 0x80, 0xf3, 0x60, 0x57, 0x71, 0xb5, 0xe7, 0x6f, 0xfb, 0xe1, 0x53, 0x1e, 0x8d, + 0x50, 0x0b, 0x76, 0xc0, 0x85, 0x40, 0xe0, 0x55, 0x7b, 0x45, 0xda, 0xca, 0x70, 0x0e, 0xb9, 0x9e, + 0xea, 0xa7, 0xb0, 0x1e, 0x31, 0x2f, 0x0e, 0x3d, 0x47, 0xa5, 0xf6, 0xd2, 0x91, 0x6c, 0xc4, 0x42, + 0x29, 0x30, 0x0e, 0x56, 0x7b, 0x25, 0xba, 0x96, 0x72, 0xfb, 0x29, 0x53, 0x5b, 0xe0, 0xc6, 0x98, + 0xf3, 0xc8, 0xfe, 0x26, 0xd6, 0x89, 0x9d, 0xfd, 0x4d, 0xec, 0x04, 0xbe, 0xbc, 0xc0, 0x28, 0x59, + 0xed, 0x95, 0xe9, 0x9a, 0x62, 0x7f, 0x65, 0xb8, 0x5f, 0x69, 0xa6, 0xea, 0xf8, 0x73, 0xe8, 0x64, + 0xf7, 0xd2, 0x1e, 0x47, 0x7c, 0x18, 0x19, 0x15, 0xaf, 0xa1, 0x3e, 0x2a, 0xf4, 0x66, 0x56, 0xe2, + 0x64, 0x22, 0xf0, 0x6d, 0x2e, 0x67, 0xfd, 0x75, 0x19, 0x0a, 0xfd, 0xc1, 0x80, 0x6c, 0x40, 0xe1, + 0x25, 0x8b, 0xd0, 0x53, 0x28, 0x38, 0xa9, 0x86, 0x1a, 0xfe, 0x16, 0x94, 0x5e, 0xf2, 0xc8, 0xd3, + 0x91, 0xa7, 0xd1, 0xcb, 0x51, 0xdd, 0x54, 0xac, 0xf7, 0xa1, 0xae, 0xbe, 0x6d, 0x0c, 0x17, 0x3a, + 0xb2, 0x34, 0x7a, 0x79, 0x0a, 0x8a, 0xb8, 0x8f, 0x34, 0x25, 0xb5, 0x01, 0x05, 0x97, 0xe9, 0xd0, + 0x92, 0xef, 0x15, 0xa8, 0x6a, 0x98, 0x71, 0xdd, 0x73, 0x27, 0x12, 0x98, 0x76, 0x35, 0x7a, 0x45, + 0xaa, 0x9b, 0x66, 0x5c, 0xf5, 0x9d, 0x8c, 0x0b, 0x28, 0x50, 0xa2, 0xa0, 0x88, 0x93, 0x71, 0x3f, + 0x80, 0x15, 0x21, 0x55, 0xa2, 0x19, 0x38, 0x17, 0xf6, 0x48, 0x60, 0x20, 0x69, 0xf4, 0xca, 0x14, + 0x84, 0x94, 0x7b, 0x8a, 0x78, 0x84, 0x62, 0xdb, 0x40, 0x58, 0x28, 0x7d, 0x79, 0x61, 0x47, 0xcc, + 0xe5, 0xc3, 0xd0, 0x47, 0xd0, 0xd4, 0x8d, 0x62, 0x56, 0x35, 0x8f, 0x4e, 0x58, 0x66, 0xcf, 0x91, + 0xee, 0x33, 0x61, 0xc7, 0x52, 0xb2, 0x88, 0xe9, 0xd0, 0xd0, 0xe8, 0x55, 0x69, 0x2b, 0xe1, 0x9c, + 0x6a, 0x86, 0x92, 0xff, 0x04, 0xd6, 0x52, 0x79, 0x33, 0xcb, 0xaf, 0x98, 0x87, 0x26, 0xdc, 0xe8, + 0xd5, 0x28, 0x49, 0x98, 0x34, 0xe5, 0x19, 0xef, 0x34, 0x59, 0x99, 0x13, 0x04, 0xc6, 0x7a, 0x81, + 0xae, 0xa4, 0x8b, 0x72, 0x82, 0x40, 0x49, 0xfe, 0x01, 0xdc, 0x4a, 0xc7, 0x77, 0xdc, 0x6f, 0x62, + 0x3f, 0x62, 0x5e, 0xba, 0xb0, 0x16, 0xce, 0x52, 0xa7, 0x37, 0x13, 0x91, 0x1d, 0x23, 0x91, 0x59, + 0xe0, 0x3e, 0xbc, 0x39, 0x3f, 0x40, 0x66, 0xa5, 0x6d, 0x1c, 0x63, 0x85, 0x5a, 0xb3, 0x63, 0x4c, + 0xad, 0xb8, 0x5b, 0x86, 0xa2, 0xfd, 0x92, 0x45, 0xdd, 0x2a, 0x94, 0x6d, 0xb4, 0x82, 0x6e, 0x13, + 0x56, 0xec, 0x8c, 0x0d, 0xa0, 0x84, 0x6b, 0x24, 0x70, 0x3f, 0x51, 0x22, 0xb3, 0x9b, 0xdd, 0x16, + 0x34, 0xec, 0xec, 0xbe, 0x75, 0x37, 0x60, 0xcd, 0x9e, 0xdf, 0xa1, 0xee, 0x1a, 0xac, 0xda, 0xb3, + 0x9b, 0xd0, 0xdd, 0x84, 0x75, 0x7b, 0x81, 0xa6, 0xbb, 0x6d, 0x68, 0xda, 0x53, 0xba, 0xec, 0xbe, + 0x09, 0x96, 0xbd, 0x54, 0x67, 0xdd, 0x77, 0xe0, 0x2d, 0xfb, 0x32, 0x85, 0x58, 0xbf, 0xc9, 0x41, + 0xe1, 0xf0, 0xf0, 0x88, 0xbc, 0x09, 0x15, 0x29, 0x9f, 0x4a, 0x65, 0x5f, 0x39, 0xd4, 0xd1, 0x0d, + 0x5a, 0x56, 0x04, 0x6d, 0x5b, 0x9a, 0x2b, 0x14, 0x37, 0x41, 0x87, 0xe2, 0x0a, 0xcd, 0xbd, 0x07, + 0xab, 0x92, 0x3f, 0x67, 0xa1, 0xb0, 0xc7, 0x2c, 0xb2, 0x05, 0x73, 0x79, 0xe8, 0x99, 0x68, 0x95, + 0xa7, 0x2d, 0xcd, 0x3a, 0x61, 0x51, 0x1f, 0x19, 0x4a, 0xbd, 0x00, 0x55, 0xdb, 0xcc, 0x96, 0x7c, + 0xab, 0xb1, 0xbb, 0xeb, 0x40, 0xec, 0xb9, 0x91, 0xac, 0x5f, 0x97, 0xa1, 0x30, 0x18, 0xf4, 0xcd, + 0x22, 0xce, 0x26, 0x8b, 0xd0, 0x4b, 0x3c, 0x3b, 0x4a, 0xd0, 0xa7, 0x50, 0x5d, 0x30, 0x81, 0x6f, + 0x0e, 0xd5, 0x15, 0x03, 0xda, 0xa5, 0xa8, 0xd6, 0xb0, 0x2a, 0x2c, 0x41, 0x75, 0x0d, 0xc7, 0x2d, + 0xce, 0xa3, 0x3a, 0x01, 0xed, 0x52, 0x54, 0xd7, 0x13, 0xb8, 0x4e, 0xa3, 0x7a, 0x31, 0x5c, 0x9b, + 0xaf, 0x0d, 0xd7, 0xd6, 0xeb, 0xc3, 0xb5, 0xfd, 0x9a, 0x70, 0x5d, 0xfd, 0x9d, 0xe0, 0x4a, 0xbe, + 0x03, 0xb8, 0xae, 0x5d, 0x0f, 0xae, 0xc6, 0x86, 0x94, 0x69, 0x7c, 0x27, 0xd0, 0xfd, 0x3f, 0x89, + 0xd4, 0xff, 0xa9, 0xc0, 0x4a, 0x36, 0xb3, 0x41, 0xd8, 0xc5, 0x51, 0x68, 0x4b, 0xe7, 0xb9, 0x1f, + 0x0e, 0x4d, 0xe2, 0x97, 0x44, 0xb5, 0x96, 0x62, 0x0d, 0x90, 0x93, 0xe6, 0x7e, 0x9f, 0x43, 0xe7, + 0x9c, 0x39, 0x4a, 0x11, 0xdb, 0xcc, 0x0e, 0x1c, 0xa9, 0xce, 0xa8, 0xf6, 0xf8, 0xc1, 0xfd, 0x04, + 0x51, 0xa5, 0x5e, 0x8e, 0xae, 0xa3, 0xc4, 0xfe, 0x36, 0x3b, 0xd4, 0xfc, 0x93, 0x07, 0xf7, 0x35, + 0xbe, 0x16, 0x77, 0x7e, 0xf8, 0x40, 0x75, 0x2e, 0x60, 0xe7, 0xfc, 0x7c, 0xe7, 0x87, 0x0f, 0x2e, + 0xed, 0xfc, 0x50, 0x75, 0x2e, 0x62, 0xe7, 0xc2, 0x82, 0xce, 0x0f, 0x75, 0xe7, 0x8f, 0xa1, 0x2d, + 0xfd, 0x11, 0xb3, 0x25, 0xb7, 0x2f, 0x7c, 0x16, 0x78, 0xaa, 0x53, 0xc9, 0xc4, 0xd2, 0x86, 0xe2, + 0x0c, 0xf8, 0x2f, 0x14, 0x3d, 0x99, 0xea, 0x26, 0xe3, 0xd2, 0x1e, 0xf9, 0x62, 0x1c, 0x31, 0xcf, + 0xc7, 0x83, 0x9f, 0x49, 0xf8, 0xcb, 0x06, 0xaa, 0x1b, 0x8c, 0xcb, 0xa3, 0x2c, 0x3f, 0x3d, 0xfd, + 0x9a, 0x3c, 0x3a, 0x70, 0xc6, 0x36, 0xde, 0x45, 0xa2, 0xd7, 0xc8, 0xf7, 0xca, 0x3a, 0x8f, 0x0e, + 0x9c, 0x31, 0x55, 0x54, 0xe3, 0xf3, 0x12, 0x49, 0x31, 0x66, 0xcc, 0x3d, 0x9f, 0x44, 0xe6, 0x0a, + 0x6d, 0x19, 0x56, 0x1f, 0x39, 0x7a, 0x5d, 0x1f, 0x41, 0x4b, 0x72, 0xe9, 0x04, 0x19, 0xf1, 0x9a, + 0x81, 0x6e, 0x03, 0x19, 0x59, 0xe1, 0x4f, 0x61, 0xc3, 0x79, 0xf9, 0xfc, 0xa5, 0xd2, 0x98, 0xf0, + 0x03, 0x16, 0xba, 0xc9, 0xa9, 0xbd, 0x6e, 0xa0, 0xbb, 0x66, 0xd8, 0x7d, 0xcd, 0xcd, 0x1c, 0xdf, + 0xdb, 0x71, 0xe8, 0x84, 0xe2, 0xa5, 0xb2, 0x29, 0x7d, 0xda, 0x31, 0x01, 0x1d, 0x68, 0x6b, 0xc2, + 0xc1, 0xe3, 0x8e, 0x92, 0xff, 0x02, 0x3a, 0x4f, 0x9d, 0x40, 0x30, 0xdb, 0x0f, 0x25, 0x8b, 0xa2, + 0x78, 0x9c, 0x51, 0x57, 0xc3, 0x00, 0x78, 0x13, 0x25, 0x0e, 0x32, 0x02, 0xe9, 0x74, 0x3f, 0x82, + 0x66, 0x76, 0x47, 0x47, 0xc2, 0xb8, 0xa3, 0x15, 0xba, 0xc2, 0xd2, 0x8d, 0xc4, 0x5f, 0xd2, 0xbe, + 0x7d, 0xd6, 0x5c, 0xbb, 0x6f, 0xc0, 0x2d, 0x7b, 0x99, 0x4d, 0x2e, 0x63, 0xa2, 0xcd, 0x2d, 0x65, + 0x2a, 0x9b, 0x42, 0xa4, 0xce, 0xda, 0x4c, 0xd7, 0x82, 0x8e, 0xbd, 0xc4, 0x34, 0x10, 0xad, 0x53, + 0x3b, 0x8f, 0xeb, 0x9d, 0xdb, 0xe1, 0x2e, 0x81, 0xb6, 0x3d, 0xb3, 0x8d, 0xdd, 0x0e, 0x6c, 0xda, + 0x0b, 0x77, 0x0b, 0x97, 0x31, 0xbb, 0x1d, 0xb8, 0xf0, 0x65, 0x3a, 0xef, 0xae, 0x42, 0xcb, 0x9e, + 0xd6, 0xa8, 0xf5, 0xdb, 0x0a, 0x14, 0xd5, 0x7e, 0x91, 0x75, 0x28, 0xf9, 0xa1, 0xc7, 0x5e, 0xe9, + 0x00, 0x4d, 0x75, 0x83, 0x7c, 0x04, 0xc5, 0x88, 0x07, 0xcc, 0xdc, 0x97, 0xdc, 0x5c, 0x70, 0x2d, + 0x4b, 0x79, 0xc0, 0x28, 0x0a, 0x91, 0xb7, 0xa1, 0x8a, 0xb7, 0x08, 0x09, 0x68, 0x55, 0x0c, 0xad, + 0x20, 0x45, 0xdb, 0x9d, 0x05, 0x65, 0x16, 0x7a, 0x09, 0x2a, 0x31, 0x09, 0x66, 0xa1, 0x01, 0xd6, + 0x6c, 0x1a, 0x5a, 0x4a, 0xb2, 0xe0, 0xe9, 0x34, 0xf4, 0x3d, 0xa8, 0x07, 0xc1, 0x28, 0x09, 0xef, + 0x06, 0x73, 0x05, 0x5a, 0x0b, 0x82, 0xd1, 0x20, 0xcd, 0x27, 0x26, 0x42, 0x98, 0x53, 0x54, 0x0c, + 0x9a, 0x8d, 0x90, 0x48, 0x93, 0x0e, 0x14, 0x1a, 0x6b, 0x60, 0xe5, 0x7b, 0x25, 0x5a, 0x56, 0x02, + 0xe3, 0x64, 0x08, 0x29, 0x45, 0xe2, 0xf6, 0x0d, 0x96, 0xca, 0xb4, 0x26, 0xa5, 0x18, 0xa4, 0x49, + 0xc1, 0xbc, 0x7d, 0x82, 0x81, 0xe8, 0xac, 0x7d, 0x92, 0x4f, 0x60, 0x7d, 0xde, 0x9c, 0x46, 0x3a, + 0x7c, 0x97, 0x7a, 0x55, 0xba, 0x3a, 0xe3, 0x9e, 0x96, 0xfb, 0xa6, 0x15, 0x83, 0xd1, 0x79, 0xdf, + 0xb4, 0xd0, 0x63, 0x37, 0x4c, 0x74, 0x5d, 0xe4, 0xb1, 0x17, 0x9e, 0xfa, 0xea, 0x73, 0xa7, 0xbe, + 0xfb, 0xb0, 0x3a, 0x67, 0xd8, 0xe6, 0xc0, 0xb7, 0x42, 0xdb, 0xb3, 0xde, 0x4e, 0xaf, 0xbb, 0x35, + 0x63, 0xb2, 0xe6, 0xac, 0xd7, 0xa0, 0xcd, 0x69, 0xd7, 0xa2, 0x75, 0x0d, 0x13, 0x33, 0x36, 0x07, + 0xbc, 0x26, 0xcd, 0xd0, 0x14, 0xc0, 0xeb, 0x50, 0xb3, 0x13, 0xe3, 0xea, 0xd6, 0xa0, 0x62, 0x6b, + 0x4b, 0x9a, 0xcf, 0x83, 0x55, 0xb4, 0xcd, 0x98, 0x48, 0xb6, 0x2d, 0x92, 0x8c, 0xd0, 0x6c, 0x3c, + 0xf2, 0x32, 0xdb, 0xbc, 0x00, 0x1f, 0xdd, 0x9b, 0xb0, 0x61, 0x2f, 0xda, 0xb9, 0xc5, 0x4e, 0x60, + 0xb1, 0x1b, 0xc2, 0x04, 0x60, 0xa2, 0x53, 0x94, 0x9a, 0xd3, 0x28, 0x82, 0x7f, 0x46, 0x6b, 0xdd, + 0x06, 0xd4, 0x33, 0x10, 0xd7, 0xfe, 0x61, 0xfa, 0xde, 0x26, 0xf5, 0x2d, 0xe9, 0xed, 0xcc, 0xdc, + 0x74, 0xb7, 0xe0, 0xa6, 0xbd, 0xf8, 0xd8, 0x8e, 0x3f, 0x31, 0x7b, 0x2c, 0xc7, 0x5f, 0x5e, 0x74, + 0xf6, 0x46, 0x57, 0xb4, 0xf0, 0x70, 0x8d, 0x5e, 0x67, 0xd9, 0xe9, 0xf9, 0x71, 0xb1, 0x9a, 0x6b, + 0xe7, 0x1f, 0x17, 0xab, 0xf9, 0x76, 0x81, 0x36, 0x1d, 0xd7, 0x8d, 0x23, 0xc7, 0xbd, 0xd0, 0x6b, + 0xa5, 0x6d, 0xf6, 0x6a, 0xcc, 0x22, 0x1f, 0xbd, 0x1a, 0x52, 0xac, 0xff, 0x2c, 0x02, 0x4c, 0xee, + 0xa0, 0xc9, 0xef, 0x01, 0x49, 0xef, 0xf1, 0x26, 0x17, 0xbe, 0xc9, 0x65, 0x55, 0x3b, 0xe1, 0x9d, + 0x98, 0xab, 0xdf, 0x85, 0xd7, 0x55, 0xf0, 0xff, 0xd7, 0x55, 0x0b, 0xaf, 0xab, 0x66, 0xf0, 0x5f, + 0x5d, 0x72, 0xeb, 0x73, 0xd9, 0xcd, 0x48, 0xcd, 0x5c, 0x47, 0x5c, 0x72, 0x33, 0x82, 0xf9, 0xee, + 0xfc, 0x1e, 0x5e, 0xc3, 0x70, 0xbf, 0x43, 0xab, 0xfa, 0x9b, 0x1c, 0xe4, 0x77, 0x0f, 0x88, 0x05, + 0xd5, 0x71, 0xc4, 0x5f, 0xf8, 0x9e, 0xb9, 0xa1, 0xa9, 0xd1, 0xb4, 0x4d, 0xde, 0x02, 0x70, 0xf9, + 0x68, 0xe4, 0x4b, 0x5b, 0x9c, 0x3b, 0x49, 0x25, 0x4f, 0x53, 0xfa, 0xe7, 0x0e, 0x69, 0x43, 0x21, + 0x62, 0x4f, 0xcd, 0xbd, 0xbf, 0xfa, 0xc4, 0x22, 0x52, 0x1c, 0x04, 0x76, 0xc4, 0x10, 0x0f, 0xe6, + 0xd6, 0xbf, 0xae, 0x68, 0x54, 0x93, 0xf0, 0x4e, 0x3c, 0x0e, 0xed, 0x38, 0x0a, 0xcc, 0x85, 0x7f, + 0x39, 0x8a, 0xc3, 0xd3, 0x28, 0x50, 0xd1, 0xd6, 0x71, 0x25, 0x8f, 0x92, 0x5b, 0x7e, 0x6c, 0x58, + 0xff, 0x55, 0x82, 0xf2, 0x2e, 0x96, 0xe1, 0xac, 0x7f, 0x2b, 0x42, 0x25, 0x19, 0x65, 0xba, 0xc6, + 0x98, 0x9b, 0xad, 0x31, 0x4e, 0x97, 0xdf, 0xf2, 0xb3, 0xe5, 0xb7, 0x05, 0x55, 0xaa, 0xe2, 0xc2, + 0x2a, 0xd5, 0x26, 0x94, 0x23, 0x36, 0x54, 0xbb, 0x5a, 0x36, 0x6b, 0xc5, 0x16, 0xe9, 0xce, 0xd5, + 0xef, 0x2a, 0x97, 0xd5, 0xef, 0x7a, 0x37, 0x66, 0x2a, 0x78, 0x99, 0x50, 0x93, 0x54, 0xb3, 0xaa, + 0xe6, 0x3c, 0x90, 0x25, 0xea, 0x34, 0x56, 0x97, 0xb4, 0x6a, 0xd7, 0x29, 0x69, 0xfd, 0x08, 0xda, + 0x67, 0x8e, 0xfb, 0x5c, 0x2d, 0x29, 0xf4, 0xec, 0x90, 0xfb, 0x42, 0x43, 0xbd, 0x4a, 0x5b, 0x13, + 0xfa, 0xb1, 0x22, 0x93, 0x4f, 0x60, 0x33, 0xe0, 0x2f, 0x13, 0x77, 0x65, 0x8f, 0x7c, 0x37, 0xe2, + 0xe3, 0x73, 0x1e, 0x32, 0x0c, 0xc0, 0x55, 0xba, 0x1e, 0xf0, 0x97, 0xe6, 0x2e, 0xf0, 0x28, 0xe5, + 0x91, 0x77, 0xa0, 0x3e, 0x76, 0xdc, 0xe7, 0x4c, 0xea, 0xeb, 0x4a, 0x7d, 0xd1, 0x0a, 0x9a, 0x74, + 0xc8, 0x85, 0x30, 0xe5, 0xac, 0xc6, 0x55, 0xe5, 0xac, 0xfc, 0x82, 0x72, 0x56, 0xf3, 0x92, 0x72, + 0x56, 0x6b, 0xba, 0x9c, 0x85, 0x61, 0x69, 0x7a, 0x07, 0x52, 0xa8, 0x18, 0xdd, 0x75, 0x4b, 0x50, + 0xb0, 0x5d, 0xff, 0x71, 0xb1, 0x5a, 0x68, 0x17, 0xe9, 0x7c, 0xed, 0xd8, 0xfa, 0x8b, 0x1c, 0x54, + 0x29, 0x13, 0x63, 0x1e, 0x0a, 0x46, 0x3e, 0x84, 0xd5, 0x89, 0x35, 0xd8, 0xca, 0x40, 0x53, 0xb3, + 0x6a, 0x89, 0xec, 0xe2, 0x0f, 0x3c, 0xd2, 0x87, 0xcd, 0x71, 0xc4, 0x84, 0x3f, 0x0c, 0x99, 0x67, + 0x8f, 0xb9, 0x90, 0xa9, 0xb9, 0xeb, 0x4a, 0xfd, 0xa4, 0xa0, 0x7d, 0x92, 0x88, 0x9d, 0x70, 0x21, + 0x8d, 0xe9, 0xd2, 0xf5, 0xf1, 0x02, 0xaa, 0xf5, 0x9b, 0x1c, 0xac, 0xed, 0xf2, 0xf0, 0xa9, 0x1f, + 0x8d, 0xfa, 0x3c, 0x8e, 0x5c, 0x76, 0x3a, 0x0e, 0xb8, 0xe3, 0x59, 0x7f, 0x76, 0x6d, 0x9b, 0x5f, + 0xf8, 0x0b, 0xf9, 0xc5, 0xbf, 0xf0, 0x43, 0x68, 0xb9, 0xdc, 0x63, 0xea, 0xfc, 0x1b, 0x5d, 0x8c, + 0xb9, 0x1f, 0x4a, 0x83, 0xe2, 0xa6, 0x22, 0xef, 0xa7, 0x54, 0x0b, 0x26, 0x3a, 0xb2, 0xfe, 0x2a, + 0x07, 0x85, 0x47, 0x4c, 0x5a, 0x83, 0xef, 0x63, 0x49, 0xd6, 0x27, 0x99, 0xdd, 0xb8, 0x0b, 0x85, + 0x28, 0xd6, 0x6f, 0x16, 0xa6, 0x30, 0x95, 0xed, 0x42, 0x95, 0x88, 0xf5, 0xaf, 0x45, 0x28, 0x1e, + 0xfa, 0x42, 0x5a, 0xff, 0x52, 0xb8, 0xf6, 0xaa, 0x3e, 0x9b, 0x29, 0x79, 0x5e, 0xfe, 0x00, 0xa1, + 0x77, 0x23, 0x29, 0x78, 0x2a, 0x73, 0xfd, 0x19, 0xc0, 0xd8, 0x19, 0x32, 0x7d, 0x69, 0x86, 0x3a, + 0xab, 0x6f, 0x77, 0xd2, 0xfe, 0x03, 0x45, 0x3d, 0x71, 0x86, 0x7e, 0x88, 0x83, 0xf4, 0x72, 0xb4, + 0xa6, 0xa4, 0x91, 0xac, 0xc3, 0x86, 0xae, 0x40, 0x62, 0x96, 0x64, 0x62, 0xec, 0x25, 0x75, 0x88, + 0x5e, 0xde, 0xd4, 0x20, 0x15, 0x45, 0xf5, 0xff, 0x0c, 0xcb, 0x90, 0xba, 0x77, 0xe9, 0xca, 0xde, + 0x05, 0x2c, 0x44, 0x26, 0x7d, 0xef, 0x4c, 0xb9, 0x44, 0x74, 0x67, 0xea, 0x00, 0x90, 0x3a, 0x45, + 0x9d, 0xd6, 0x6a, 0x5f, 0x53, 0xb9, 0xd4, 0xd7, 0xf4, 0x4a, 0xda, 0xdb, 0xa8, 0x40, 0xa6, 0xd2, + 0x4e, 0xad, 0x1d, 0x4c, 0xcc, 0x26, 0xba, 0xc1, 0xe6, 0xe4, 0x67, 0x31, 0x59, 0x4d, 0xd6, 0x8e, + 0xbc, 0xc9, 0x62, 0xba, 0x15, 0x28, 0x61, 0x81, 0xc7, 0x7a, 0x35, 0x85, 0xc8, 0x62, 0x14, 0x87, + 0xa2, 0x93, 0xc3, 0xba, 0xd1, 0x32, 0x23, 0x40, 0x19, 0xf2, 0x87, 0xd0, 0x0a, 0xd9, 0x2b, 0x99, + 0x99, 0xde, 0x40, 0x71, 0xe9, 0xd6, 0xd0, 0x86, 0xea, 0x70, 0x92, 0x6c, 0x8e, 0xf5, 0xcf, 0x45, + 0x28, 0xe3, 0x21, 0x5b, 0x58, 0xff, 0x9e, 0xbf, 0xb6, 0x25, 0x3d, 0x9c, 0xda, 0xcf, 0xfc, 0x35, + 0x2b, 0xca, 0xaa, 0x6d, 0x2a, 0xca, 0xba, 0x63, 0xe1, 0x5a, 0x15, 0x65, 0xec, 0x36, 0xb1, 0xdd, + 0xe2, 0x6b, 0xdb, 0xee, 0xb4, 0x05, 0x60, 0xf0, 0x55, 0x16, 0xba, 0xd0, 0x02, 0xca, 0x97, 0x5b, + 0x40, 0x7e, 0xa9, 0x05, 0x2c, 0xda, 0xd6, 0x3f, 0xcf, 0x7a, 0xda, 0x9f, 0x43, 0xe5, 0x2c, 0x56, + 0xe1, 0x22, 0xd9, 0xda, 0xf7, 0x97, 0x45, 0x09, 0xdc, 0x8e, 0xad, 0x2e, 0x0a, 0xd3, 0xa4, 0x93, + 0x52, 0x1c, 0x1e, 0xe3, 0x5f, 0x38, 0x81, 0xd1, 0xf8, 0xad, 0x39, 0xc5, 0xed, 0x99, 0x87, 0x6d, + 0x34, 0x15, 0xb5, 0x7e, 0x09, 0x65, 0x3d, 0x12, 0xf9, 0x02, 0x56, 0xf4, 0x58, 0xda, 0x3c, 0x8d, + 0x97, 0xb9, 0x4c, 0xfb, 0x75, 0x2d, 0xdf, 0x57, 0xe2, 0x2a, 0x4d, 0x99, 0x54, 0xb3, 0x8b, 0x54, + 0x37, 0xac, 0x67, 0x50, 0xde, 0x75, 0x42, 0x97, 0x05, 0xdf, 0x93, 0x77, 0xcc, 0xfa, 0xe1, 0xef, + 0xb9, 0x1c, 0xff, 0xb7, 0xb9, 0xb4, 0x1e, 0x7f, 0x0b, 0x36, 0xa6, 0xeb, 0xf1, 0xf6, 0xe9, 0xc9, + 0xe1, 0x93, 0x9d, 0xbd, 0xf6, 0x0d, 0xb2, 0x01, 0xab, 0x86, 0xf5, 0x68, 0xff, 0x78, 0x9f, 0xee, + 0x0c, 0x74, 0x65, 0x7e, 0xbe, 0x5a, 0x9f, 0x27, 0x9b, 0x40, 0x0c, 0xad, 0x7f, 0x7a, 0x74, 0xb4, + 0x43, 0x0f, 0xbe, 0x56, 0xf4, 0xc2, 0xc2, 0x2a, 0x7e, 0x71, 0xbe, 0x8a, 0x5f, 0x5a, 0x58, 0xc5, + 0x2f, 0x63, 0xbc, 0xcf, 0xbc, 0xaf, 0x99, 0xc4, 0xfb, 0x6a, 0xbb, 0x46, 0x2b, 0xe6, 0x21, 0xce, + 0x9d, 0x7f, 0x2a, 0x40, 0x35, 0xc9, 0xc5, 0x26, 0x0f, 0x49, 0x72, 0xd9, 0x87, 0x24, 0xb3, 0xef, + 0x58, 0xf2, 0x0b, 0xde, 0xb1, 0x2c, 0x7e, 0xb1, 0x52, 0x58, 0xf6, 0x62, 0xe5, 0x9e, 0x79, 0x9b, + 0x52, 0x44, 0x0b, 0x7f, 0x63, 0x2e, 0x2b, 0xdc, 0x1a, 0x38, 0x43, 0xa1, 0x5f, 0x06, 0xea, 0x87, + 0x2b, 0x16, 0x54, 0x63, 0xc1, 0x22, 0xcf, 0x91, 0x8e, 0x49, 0x8b, 0xd3, 0xb6, 0x79, 0xb2, 0x53, + 0x4e, 0x9e, 0xec, 0x58, 0x7f, 0x9f, 0x83, 0x55, 0x9d, 0x12, 0x7f, 0x19, 0xf1, 0x91, 0xa9, 0x6d, + 0x5b, 0xbf, 0xb8, 0xb6, 0xdd, 0x65, 0x5e, 0xa5, 0xe4, 0xa7, 0x5e, 0xa5, 0x4c, 0xb2, 0xdd, 0x42, + 0x36, 0xdb, 0xb5, 0x1e, 0x66, 0xe0, 0xfb, 0x63, 0xa8, 0x26, 0x79, 0x97, 0x41, 0xce, 0xea, 0xdc, + 0xdf, 0xd1, 0x54, 0xc4, 0xfa, 0x14, 0x6a, 0xe9, 0xaf, 0x2e, 0x78, 0xe3, 0xb8, 0x9e, 0x7d, 0xe3, + 0x58, 0xcb, 0xbc, 0x63, 0xbc, 0xe3, 0x41, 0x63, 0x2a, 0x85, 0x26, 0x04, 0x8a, 0xe8, 0xb7, 0x74, + 0x6f, 0xfc, 0x26, 0xf7, 0xa0, 0x96, 0xcc, 0xa4, 0xb6, 0xad, 0xb0, 0x78, 0x35, 0x13, 0x19, 0xa3, + 0xca, 0x42, 0xa2, 0xca, 0x3b, 0xff, 0x98, 0x03, 0x32, 0xf1, 0x3a, 0x7b, 0xbe, 0x18, 0x3b, 0xd2, + 0x3d, 0x7f, 0xad, 0x6c, 0x70, 0x03, 0xca, 0xcf, 0xf8, 0xd9, 0x44, 0x99, 0xa5, 0x67, 0xfc, 0xec, + 0xc0, 0x9b, 0xd2, 0x53, 0xe1, 0x4a, 0x3d, 0xa5, 0x59, 0x7e, 0xf1, 0x1a, 0x59, 0xfe, 0x87, 0x4f, + 0xa1, 0x39, 0x4d, 0x27, 0xef, 0xc0, 0x1b, 0xfd, 0x83, 0xa3, 0xd3, 0xc3, 0x9d, 0xc1, 0xc1, 0x93, + 0x63, 0xfb, 0xe8, 0xc9, 0xde, 0xbe, 0x7d, 0x7a, 0xdc, 0x3f, 0xd9, 0xdf, 0x3d, 0xf8, 0xf2, 0x60, + 0x5f, 0xc1, 0xb5, 0x03, 0xeb, 0xb3, 0x02, 0x83, 0xfd, 0x3f, 0x19, 0xb4, 0x73, 0x88, 0xf1, 0x19, + 0xce, 0xce, 0xe9, 0xde, 0xc1, 0x93, 0x76, 0x7e, 0xfb, 0xd7, 0x65, 0x68, 0xed, 0x28, 0xdb, 0x9e, + 0xcc, 0x46, 0x3c, 0x58, 0xd3, 0xb6, 0x37, 0xfd, 0x06, 0x74, 0xd9, 0xb9, 0x5d, 0xcb, 0x6e, 0x25, + 0x59, 0xee, 0x0f, 0xae, 0x12, 0x33, 0x56, 0xf6, 0x6d, 0x0e, 0xde, 0x4a, 0xb2, 0xe1, 0x54, 0x30, + 0x9b, 0x17, 0x93, 0xed, 0xa5, 0x51, 0x63, 0x2e, 0x87, 0x4e, 0x67, 0xff, 0xc9, 0x6b, 0xf5, 0x31, + 0x4b, 0xf9, 0x53, 0x68, 0x3f, 0x62, 0x72, 0xfa, 0x6f, 0xef, 0x2c, 0x19, 0xe8, 0x11, 0x93, 0xe9, + 0x64, 0xef, 0x5d, 0x2a, 0x63, 0x06, 0xb7, 0x81, 0xa8, 0xec, 0x75, 0x4a, 0x42, 0x90, 0x65, 0x5d, + 0x95, 0x68, 0x3a, 0xfe, 0xfb, 0x97, 0x0b, 0x99, 0x09, 0xd4, 0x76, 0x29, 0xef, 0x38, 0x33, 0xc3, + 0x07, 0x97, 0xc7, 0xdc, 0x2b, 0xb7, 0x2b, 0x11, 0xcb, 0xcc, 0x82, 0xd1, 0xef, 0x9a, 0x46, 0x81, + 0xb2, 0x57, 0xcf, 0x92, 0x88, 0x99, 0x59, 0x5e, 0xc0, 0x2d, 0x63, 0x7a, 0x06, 0x35, 0x19, 0xf7, + 0x47, 0x3e, 0x9a, 0xf7, 0xb1, 0x73, 0x3e, 0x32, 0x9d, 0xf1, 0xe3, 0xeb, 0x09, 0xeb, 0x79, 0xbb, + 0x5f, 0x7e, 0xfd, 0xde, 0xd0, 0x97, 0xe7, 0xf1, 0xd9, 0x96, 0xcb, 0x47, 0xc9, 0x0b, 0x7b, 0xfd, + 0x4a, 0xde, 0xe5, 0x41, 0x42, 0xf8, 0x6d, 0xbe, 0x71, 0xe8, 0xbf, 0x60, 0x7f, 0x84, 0xc7, 0x3e, + 0x2e, 0xf9, 0x7f, 0xe7, 0x9b, 0xa6, 0xfd, 0xd9, 0x67, 0x48, 0x38, 0x2b, 0x63, 0x97, 0x9f, 0xfc, + 0x6f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x39, 0xa9, 0x53, 0xa0, 0xd4, 0x2f, 0x00, 0x00, } From 8c63856a010efca060a9ba1aceccea99c9afb0dc Mon Sep 17 00:00:00 2001 From: Jason Lernerman Date: Fri, 18 Sep 2026 08:24:14 -0400 Subject: [PATCH 09/14] agent_simulation: samples and pass_rate have no unset, only 0 --- protobufs/livekit_agent_simulation.proto | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/protobufs/livekit_agent_simulation.proto b/protobufs/livekit_agent_simulation.proto index 88336ac39..03842cad6 100644 --- a/protobufs/livekit_agent_simulation.proto +++ b/protobufs/livekit_agent_simulation.proto @@ -260,11 +260,11 @@ message SimulationRun { bool low_quality_microphone = 11; bool packet_loss = 12; optional CI ci = 13; - // Samples per scenario; 0/unset = 1. Requires scenario_group. The run + // Samples per scenario; 0 = 1. Requires scenario_group. The run // holds scenarios × samples jobs, subject to the usual job cap. int32 samples = 14; // The share of a scenario's samples that must pass for that scenario to - // pass, 0-1; 0/unset requires every sample. A scenario needs + // pass, 0-1; 0 requires every sample. A scenario needs // round(rate × samples) of them. The run fails if any scenario fails; // pass@k and pass^k report over scenarios and neither gates. double pass_rate = 15; From 47e5a82d8335155073981463227cc571e455fab3 Mon Sep 17 00:00:00 2001 From: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Sep 2026 12:24:55 +0000 Subject: [PATCH 10/14] generated protobuf --- livekit/livekit_agent_simulation.pb.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/livekit/livekit_agent_simulation.pb.go b/livekit/livekit_agent_simulation.pb.go index 8f34d6dab..269181cd6 100644 --- a/livekit/livekit_agent_simulation.pb.go +++ b/livekit/livekit_agent_simulation.pb.go @@ -2327,11 +2327,11 @@ type SimulationRun_Create_Request struct { LowQualityMicrophone bool `protobuf:"varint,11,opt,name=low_quality_microphone,json=lowQualityMicrophone,proto3" json:"low_quality_microphone,omitempty"` PacketLoss bool `protobuf:"varint,12,opt,name=packet_loss,json=packetLoss,proto3" json:"packet_loss,omitempty"` Ci *SimulationRun_CI `protobuf:"bytes,13,opt,name=ci,proto3,oneof" json:"ci,omitempty"` - // Samples per scenario; 0/unset = 1. Requires scenario_group. The run + // Samples per scenario; 0 = 1. Requires scenario_group. The run // holds scenarios × samples jobs, subject to the usual job cap. Samples int32 `protobuf:"varint,14,opt,name=samples,proto3" json:"samples,omitempty"` // The share of a scenario's samples that must pass for that scenario to - // pass, 0-1; 0/unset requires every sample. A scenario needs + // pass, 0-1; 0 requires every sample. A scenario needs // round(rate × samples) of them. The run fails if any scenario fails; // pass@k and pass^k report over scenarios and neither gates. PassRate float64 `protobuf:"fixed64,15,opt,name=pass_rate,json=passRate,proto3" json:"pass_rate,omitempty"` From 77b95f349f05ec8fe32ae5e4e5ba49f2365ac455 Mon Sep 17 00:00:00 2001 From: Jason Lernerman Date: Fri, 18 Sep 2026 09:44:31 -0400 Subject: [PATCH 11/14] agent_simulation: give samples and pass_rate explicit presence 0 samples means run nothing and a 0 pass rate means require nothing, so neither zero value can stand for "the caller said nothing" without a remap that lives only in a comment. Absence carries that instead, and an explicit 0 becomes a rejectable input. SimulationRun.samples stays plain: a materialized run always has a real count, 1 when it ran once. --- protobufs/livekit_agent_simulation.proto | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/protobufs/livekit_agent_simulation.proto b/protobufs/livekit_agent_simulation.proto index 03842cad6..89a073677 100644 --- a/protobufs/livekit_agent_simulation.proto +++ b/protobufs/livekit_agent_simulation.proto @@ -260,14 +260,15 @@ message SimulationRun { bool low_quality_microphone = 11; bool packet_loss = 12; optional CI ci = 13; - // Samples per scenario; 0 = 1. Requires scenario_group. The run - // holds scenarios × samples jobs, subject to the usual job cap. - int32 samples = 14; + // Samples per scenario. Requires scenario_group. Absent runs each + // scenario once. The run holds scenarios × samples jobs, subject to + // the usual job cap. + optional int32 samples = 14; // The share of a scenario's samples that must pass for that scenario to - // pass, 0-1; 0 requires every sample. A scenario needs - // round(rate × samples) of them. The run fails if any scenario fails; - // pass@k and pass^k report over scenarios and neither gates. - double pass_rate = 15; + // pass, 0-1 exclusive of 0. A scenario needs round(rate × samples) of + // them; absent requires every sample. The run fails if any scenario + // fails; pass@k and pass^k report over scenarios and neither gates. + optional double pass_rate = 15; } message Response { string simulation_run_id = 1; @@ -392,8 +393,8 @@ message SimulationRun { // Samples per scenario; 1 when run once. int32 samples = 23; // The share of a scenario's samples that had to pass for that scenario to - // pass; 0 when the run required every sample. - double pass_rate = 24; + // pass; absent when the run required every sample. + optional double pass_rate = 24; message Usage { int32 text_turns_count = 1; From 8a9e400c8739030faa22a13c76411e03a185e8ec Mon Sep 17 00:00:00 2001 From: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Sep 2026 13:45:10 +0000 Subject: [PATCH 12/14] generated protobuf --- livekit/livekit_agent_simulation.pb.go | 57 +-- livekit/livekit_agent_simulation.twirp.go | 504 +++++++++++----------- 2 files changed, 285 insertions(+), 276 deletions(-) diff --git a/livekit/livekit_agent_simulation.pb.go b/livekit/livekit_agent_simulation.pb.go index 269181cd6..d08a95090 100644 --- a/livekit/livekit_agent_simulation.pb.go +++ b/livekit/livekit_agent_simulation.pb.go @@ -326,8 +326,8 @@ type SimulationRun struct { // Samples per scenario; 1 when run once. Samples int32 `protobuf:"varint,23,opt,name=samples,proto3" json:"samples,omitempty"` // The share of a scenario's samples that had to pass for that scenario to - // pass; 0 when the run required every sample. - PassRate float64 `protobuf:"fixed64,24,opt,name=pass_rate,json=passRate,proto3" json:"pass_rate,omitempty"` + // pass; absent when the run required every sample. + PassRate *float64 `protobuf:"fixed64,24,opt,name=pass_rate,json=passRate,proto3,oneof" json:"pass_rate,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } @@ -517,8 +517,8 @@ func (x *SimulationRun) GetSamples() int32 { } func (x *SimulationRun) GetPassRate() float64 { - if x != nil { - return x.PassRate + if x != nil && x.PassRate != nil { + return *x.PassRate } return 0 } @@ -2327,14 +2327,15 @@ type SimulationRun_Create_Request struct { LowQualityMicrophone bool `protobuf:"varint,11,opt,name=low_quality_microphone,json=lowQualityMicrophone,proto3" json:"low_quality_microphone,omitempty"` PacketLoss bool `protobuf:"varint,12,opt,name=packet_loss,json=packetLoss,proto3" json:"packet_loss,omitempty"` Ci *SimulationRun_CI `protobuf:"bytes,13,opt,name=ci,proto3,oneof" json:"ci,omitempty"` - // Samples per scenario; 0 = 1. Requires scenario_group. The run - // holds scenarios × samples jobs, subject to the usual job cap. - Samples int32 `protobuf:"varint,14,opt,name=samples,proto3" json:"samples,omitempty"` + // Samples per scenario. Requires scenario_group. Absent runs each + // scenario once. The run holds scenarios × samples jobs, subject to + // the usual job cap. + Samples *int32 `protobuf:"varint,14,opt,name=samples,proto3,oneof" json:"samples,omitempty"` // The share of a scenario's samples that must pass for that scenario to - // pass, 0-1; 0 requires every sample. A scenario needs - // round(rate × samples) of them. The run fails if any scenario fails; - // pass@k and pass^k report over scenarios and neither gates. - PassRate float64 `protobuf:"fixed64,15,opt,name=pass_rate,json=passRate,proto3" json:"pass_rate,omitempty"` + // pass, 0-1 exclusive of 0. A scenario needs round(rate × samples) of + // them; absent requires every sample. The run fails if any scenario + // fails; pass@k and pass^k report over scenarios and neither gates. + PassRate *float64 `protobuf:"fixed64,15,opt,name=pass_rate,json=passRate,proto3,oneof" json:"pass_rate,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } @@ -2447,15 +2448,15 @@ func (x *SimulationRun_Create_Request) GetCi() *SimulationRun_CI { } func (x *SimulationRun_Create_Request) GetSamples() int32 { - if x != nil { - return x.Samples + if x != nil && x.Samples != nil { + return *x.Samples } return 0 } func (x *SimulationRun_Create_Request) GetPassRate() float64 { - if x != nil { - return x.PassRate + if x != nil && x.PassRate != nil { + return *x.PassRate } return 0 } @@ -3302,7 +3303,7 @@ const file_livekit_agent_simulation_proto_rawDesc = "" + "\n" + "suggestion\x18\x02 \x01(\tR\n" + "suggestion\x12\x14\n" + - "\x05label\x18\x03 \x01(\tR\x05label\"\xacM\n" + + "\x05label\x18\x03 \x01(\tR\x05label\"\xe3M\n" + "\rSimulationRun\x12\x0e\n" + "\x02id\x18\x01 \x01(\tR\x02id\x12\x1d\n" + "\n" + @@ -3330,8 +3331,8 @@ const file_livekit_agent_simulation_proto_rawDesc = "" + "\vissue_count\x18\x15 \x01(\x05H\x00R\n" + "issueCount\x88\x01\x01\x12.\n" + "\x02ci\x18\x16 \x01(\v2\x19.livekit.SimulationRun.CIH\x01R\x02ci\x88\x01\x01\x12\x18\n" + - "\asamples\x18\x17 \x01(\x05R\asamples\x12\x1b\n" + - "\tpass_rate\x18\x18 \x01(\x01R\bpassRate\x1a\x8f\x06\n" + + "\asamples\x18\x17 \x01(\x05R\asamples\x12 \n" + + "\tpass_rate\x18\x18 \x01(\x01H\x02R\bpassRate\x88\x01\x01\x1a\x8f\x06\n" + "\x03Job\x12\x0e\n" + "\x02id\x18\x01 \x01(\tR\x02id\x129\n" + "\x06status\x18\x02 \x01(\x0e2!.livekit.SimulationRun.Job.StatusR\x06status\x12\"\n" + @@ -3551,8 +3552,8 @@ const file_livekit_agent_simulation_proto_rawDesc = "" + "\x03ref\x18\x03 \x01(\tR\x03ref\x12!\n" + "\fpull_request\x18\x04 \x01(\tR\vpullRequest\x12\x17\n" + "\arun_url\x18\x05 \x01(\tR\x06runUrl\x12\x14\n" + - "\x05actor\x18\x06 \x01(\tR\x05actor\x1a\xe5\x05\n" + - "\x06Create\x1a\xcc\x04\n" + + "\x05actor\x18\x06 \x01(\tR\x05actor\x1a\x89\x06\n" + + "\x06Create\x1a\xf0\x04\n" + "\aRequest\x12\x1d\n" + "\n" + "project_id\x18\x01 \x01(\tR\tprojectId\x12\x1d\n" + @@ -3568,12 +3569,16 @@ const file_livekit_agent_simulation_proto_rawDesc = "" + "\x16low_quality_microphone\x18\v \x01(\bR\x14lowQualityMicrophone\x12\x1f\n" + "\vpacket_loss\x18\f \x01(\bR\n" + "packetLoss\x12.\n" + - "\x02ci\x18\r \x01(\v2\x19.livekit.SimulationRun.CIH\x02R\x02ci\x88\x01\x01\x12\x18\n" + - "\asamples\x18\x0e \x01(\x05R\asamples\x12\x1b\n" + - "\tpass_rate\x18\x0f \x01(\x01R\bpassRateB\x11\n" + + "\x02ci\x18\r \x01(\v2\x19.livekit.SimulationRun.CIH\x02R\x02ci\x88\x01\x01\x12\x1d\n" + + "\asamples\x18\x0e \x01(\x05H\x03R\asamples\x88\x01\x01\x12 \n" + + "\tpass_rate\x18\x0f \x01(\x01H\x04R\bpassRate\x88\x01\x01B\x11\n" + "\x0f_scenario_groupB\x0e\n" + "\f_concurrencyB\x05\n" + - "\x03_ciJ\x04\b\x03\x10\x04R\x11agent_description\x1a\x8b\x01\n" + + "\x03_ciB\n" + + "\n" + + "\b_samplesB\f\n" + + "\n" + + "_pass_rateJ\x04\b\x03\x10\x04R\x11agent_description\x1a\x8b\x01\n" + "\bResponse\x12*\n" + "\x11simulation_run_id\x18\x01 \x01(\tR\x0fsimulationRunId\x12S\n" + "\x16presigned_post_request\x18\x02 \x01(\v2\x1d.livekit.PresignedPostRequestR\x14presignedPostRequest\x1a\xa0\x01\n" + @@ -3653,7 +3658,9 @@ const file_livekit_agent_simulation_proto_rawDesc = "" + "\rSTATUS_FAILED\x10\x05\x12\x14\n" + "\x10STATUS_CANCELLED\x10\x06B\x0e\n" + "\f_issue_countB\x05\n" + - "\x03_ciJ\x04\b\b\x10\tR\asummary\"\xb5\x03\n" + + "\x03_ciB\f\n" + + "\n" + + "_pass_rateJ\x04\b\b\x10\tR\asummary\"\xb5\x03\n" + "\bScenario\x12\x14\n" + "\x05label\x18\x01 \x01(\tR\x05label\x12\"\n" + "\finstructions\x18\x02 \x01(\tR\finstructions\x12-\n" + diff --git a/livekit/livekit_agent_simulation.twirp.go b/livekit/livekit_agent_simulation.twirp.go index f4b72c0f9..ce1d28bd9 100644 --- a/livekit/livekit_agent_simulation.twirp.go +++ b/livekit/livekit_agent_simulation.twirp.go @@ -2191,256 +2191,258 @@ func (s *agentSimulationServer) PathPrefix() string { } var twirpFileDescriptor10 = []byte{ - // 4014 bytes of a gzipped FileDescriptorProto + // 4042 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x5a, 0xcd, 0x6f, 0x1c, 0x47, - 0x76, 0xd7, 0x7c, 0xcf, 0xbc, 0xe1, 0x7c, 0xb0, 0xf8, 0xa1, 0x51, 0xfb, 0x4b, 0x96, 0xed, 0x5d, - 0xad, 0xed, 0xa5, 0x14, 0xae, 0xb5, 0x8e, 0xec, 0xf5, 0x26, 0x1c, 0x92, 0xd6, 0x50, 0x21, 0x29, - 0xba, 0x66, 0x88, 0x64, 0x1d, 0x2c, 0x1a, 0xcd, 0xee, 0xd2, 0xb0, 0xa5, 0x9e, 0xae, 0x71, 0x57, - 0xb5, 0x24, 0x2e, 0x90, 0x43, 0x80, 0x3d, 0x18, 0xc8, 0x21, 0x48, 0xfe, 0x82, 0x05, 0x82, 0x20, - 0xc8, 0x22, 0xb7, 0x20, 0xc7, 0x5c, 0x02, 0xe4, 0x16, 0x20, 0x08, 0xf2, 0x37, 0xe4, 0x92, 0x7b, - 0xee, 0x41, 0xbd, 0xaa, 0xee, 0xe9, 0xf9, 0x22, 0xa9, 0x85, 0x0d, 0xe4, 0x90, 0x5b, 0xd7, 0x7b, - 0xaf, 0x3e, 0xfa, 0xd5, 0xfb, 0xbd, 0xf7, 0xaa, 0x5e, 0xc1, 0xdb, 0x81, 0xff, 0x82, 0x3d, 0xf7, - 0xa5, 0xed, 0x0c, 0x59, 0x28, 0x6d, 0xe1, 0x8f, 0xe2, 0xc0, 0x91, 0x3e, 0x0f, 0xb7, 0xc6, 0x11, - 0x97, 0x9c, 0x54, 0x0c, 0xdf, 0x7a, 0x17, 0x05, 0xee, 0xcd, 0x88, 0x33, 0x21, 0x52, 0x59, 0xeb, - 0xed, 0x21, 0xe7, 0xc3, 0x80, 0xdd, 0xc3, 0xd6, 0x59, 0xfc, 0xf4, 0x9e, 0x17, 0x47, 0x99, 0xb1, - 0xac, 0x77, 0x66, 0xf9, 0xd2, 0x1f, 0x31, 0x21, 0x9d, 0xd1, 0xd8, 0x08, 0xdc, 0x4a, 0x46, 0x77, - 0x03, 0x1e, 0x7b, 0x7a, 0x0e, 0xc3, 0x5a, 0x4f, 0x58, 0x23, 0xee, 0xb1, 0x40, 0x68, 0xea, 0x9d, - 0xff, 0x28, 0xc0, 0x7a, 0x3f, 0x5d, 0x32, 0x8d, 0xc3, 0x7e, 0x3c, 0x1a, 0x39, 0xd1, 0x05, 0xd9, - 0x84, 0xf2, 0xd8, 0x11, 0x82, 0x79, 0x9d, 0xdc, 0xed, 0xdc, 0xdd, 0x12, 0x35, 0x2d, 0x45, 0x7f, - 0xea, 0xf8, 0x01, 0xf3, 0x3a, 0x79, 0x4d, 0xd7, 0x2d, 0xf2, 0x16, 0xc0, 0x90, 0xfb, 0xe1, 0xd0, - 0x7e, 0xc9, 0x82, 0xa0, 0x53, 0xb8, 0x9d, 0xbb, 0x5b, 0xa3, 0x35, 0xa4, 0xfc, 0x31, 0x0b, 0x02, - 0xc5, 0x96, 0xdc, 0xf6, 0x47, 0xe3, 0x88, 0xbf, 0x60, 0x9d, 0xa2, 0x66, 0x4b, 0x7e, 0xa0, 0x09, - 0xe4, 0x73, 0x28, 0xfb, 0x42, 0xc4, 0x4c, 0x74, 0x4a, 0xb7, 0x0b, 0x77, 0xeb, 0xdb, 0xef, 0x6d, - 0x99, 0xd5, 0x6e, 0x2d, 0x5a, 0xdc, 0xd6, 0x81, 0x92, 0xa5, 0xa6, 0x0b, 0xf9, 0x0a, 0x56, 0xdc, - 0x73, 0x47, 0xda, 0xe7, 0xbe, 0x90, 0x3c, 0xba, 0xe8, 0x94, 0x71, 0x88, 0xad, 0xcb, 0x87, 0xd8, - 0x3d, 0x77, 0x64, 0x4f, 0x77, 0xd8, 0x0f, 0x65, 0x74, 0x41, 0xeb, 0xee, 0x84, 0x62, 0x7d, 0x0d, - 0xed, 0x59, 0x01, 0xd2, 0x86, 0xc2, 0x73, 0x76, 0x81, 0xea, 0xa8, 0x51, 0xf5, 0x49, 0xee, 0x43, - 0xe9, 0x85, 0x13, 0xc4, 0x0c, 0x55, 0x51, 0xdf, 0xb6, 0xd2, 0x19, 0xb5, 0xde, 0xd5, 0x08, 0xbb, - 0x3c, 0x94, 0xec, 0x95, 0xa4, 0x5a, 0xf0, 0xb3, 0xfc, 0xef, 0xe7, 0x2c, 0x1b, 0x4a, 0xb8, 0x7e, - 0x72, 0x1b, 0xea, 0x1e, 0x13, 0x6e, 0xe4, 0x8f, 0xd5, 0xda, 0xcc, 0xc0, 0x59, 0x12, 0x79, 0x1b, - 0x40, 0xc4, 0xc3, 0x21, 0x13, 0x28, 0x90, 0x47, 0x81, 0x0c, 0x85, 0xac, 0x43, 0x29, 0x70, 0xce, - 0x58, 0xa2, 0x6f, 0xdd, 0xb8, 0xf3, 0x0f, 0x47, 0xd0, 0x98, 0xfa, 0x67, 0xd2, 0x84, 0xbc, 0xef, - 0x99, 0x09, 0xf2, 0x3e, 0x6e, 0xd6, 0x38, 0xe2, 0xcf, 0x98, 0x2b, 0x6d, 0xdf, 0x33, 0xe3, 0xd6, - 0x0c, 0xe5, 0xc0, 0x23, 0x0f, 0xa0, 0x2c, 0xa4, 0x23, 0x63, 0x81, 0xe3, 0x36, 0xb7, 0xdf, 0x5a, - 0xac, 0xca, 0xad, 0x3e, 0x0a, 0x51, 0x23, 0x4c, 0x3e, 0x82, 0x55, 0x6d, 0xd4, 0xd9, 0xbf, 0xd2, - 0x5b, 0xdd, 0x46, 0xc6, 0x5e, 0xe6, 0xd7, 0xd6, 0xa1, 0xc4, 0xa2, 0x88, 0x47, 0x9d, 0x92, 0x5e, - 0x3a, 0x36, 0xc8, 0x43, 0x00, 0x37, 0x62, 0x8e, 0x64, 0x9e, 0xed, 0xc8, 0x4e, 0xd9, 0xa8, 0x55, - 0x5b, 0xfd, 0x56, 0x62, 0xf5, 0x5b, 0x83, 0xc4, 0xea, 0x69, 0xcd, 0x48, 0xef, 0x48, 0xb2, 0x05, - 0xc5, 0x67, 0xfc, 0x4c, 0x74, 0x2a, 0xb8, 0xfb, 0xd6, 0x92, 0x25, 0x3f, 0xe6, 0x67, 0x14, 0xe5, - 0x94, 0x0e, 0xf4, 0x6a, 0x43, 0x67, 0xc4, 0x3a, 0x35, 0xad, 0x03, 0xa4, 0x1c, 0x3b, 0x23, 0x46, - 0xbe, 0x80, 0xa6, 0x70, 0x59, 0xe8, 0x44, 0x3e, 0xb7, 0x87, 0x11, 0x8f, 0xc7, 0x1d, 0xc0, 0xd5, - 0x6c, 0x4e, 0x06, 0x36, 0xec, 0x47, 0x8a, 0x4b, 0x1b, 0x22, 0xdb, 0x24, 0x0f, 0xa0, 0xca, 0x42, - 0x4f, 0xff, 0x46, 0xfd, 0xca, 0xdf, 0xa8, 0xa0, 0xec, 0x8e, 0x24, 0x6f, 0x40, 0xed, 0x19, 0x3f, - 0xb3, 0x5d, 0x1e, 0x87, 0xb2, 0xb3, 0x82, 0x00, 0xab, 0x3e, 0xe3, 0x67, 0xbb, 0xaa, 0x4d, 0xde, - 0x85, 0x15, 0x0d, 0x42, 0xc3, 0x6f, 0x20, 0xbf, 0xae, 0x69, 0xa9, 0x88, 0xc6, 0xa3, 0x11, 0x69, - 0x6a, 0x11, 0x4d, 0xd3, 0x22, 0x3f, 0x84, 0x56, 0x18, 0x8f, 0x32, 0x7e, 0x4a, 0x74, 0x5a, 0x28, - 0xd5, 0x0c, 0xe3, 0xd1, 0x44, 0x59, 0x82, 0x6c, 0x43, 0x29, 0x16, 0xce, 0x90, 0x75, 0xda, 0xb8, - 0xfe, 0x37, 0x97, 0x68, 0xf4, 0x54, 0xc9, 0x50, 0x2d, 0xaa, 0x4c, 0xda, 0xe5, 0xa1, 0x1b, 0x47, - 0x11, 0x0b, 0xdd, 0x8b, 0xce, 0xaa, 0x9e, 0x3e, 0x43, 0x22, 0x1f, 0x41, 0x51, 0x39, 0xa0, 0x0e, - 0x41, 0xcb, 0xba, 0xb9, 0x60, 0xd0, 0x23, 0xee, 0x31, 0x8a, 0x42, 0xe4, 0x73, 0xa8, 0x8c, 0x98, - 0x8c, 0x7c, 0x57, 0x74, 0xd6, 0x70, 0x11, 0xef, 0x2e, 0x59, 0x04, 0x8d, 0xc3, 0x23, 0x2d, 0x48, - 0x93, 0x1e, 0x4a, 0x17, 0x42, 0x83, 0xdd, 0xfe, 0x95, 0x90, 0x5e, 0x67, 0xfd, 0x76, 0xee, 0xee, - 0x0a, 0xad, 0x1b, 0xda, 0xd7, 0x42, 0x7a, 0xe4, 0x7d, 0xa8, 0xa3, 0x0f, 0x31, 0xda, 0xda, 0x50, - 0xcb, 0xed, 0xdd, 0xa0, 0x80, 0x44, 0x54, 0xd7, 0xb7, 0xb9, 0x1c, 0xd9, 0x82, 0xbc, 0xeb, 0x77, - 0x36, 0x71, 0x01, 0xb7, 0x96, 0x2c, 0x60, 0xf7, 0xa0, 0x97, 0xa3, 0x79, 0xd7, 0x57, 0xf2, 0x1d, - 0xa8, 0x08, 0x67, 0x34, 0x0e, 0x98, 0xe8, 0xdc, 0x44, 0x05, 0x24, 0x4d, 0xb5, 0xbd, 0x6a, 0xb7, - 0xec, 0xc8, 0x91, 0xac, 0xd3, 0xb9, 0x9d, 0xbb, 0x9b, 0xa3, 0x55, 0x45, 0xa0, 0x8e, 0x64, 0xd6, - 0x5f, 0x96, 0xa1, 0xf0, 0x98, 0x9f, 0xcd, 0x81, 0xf5, 0x61, 0x8a, 0xc6, 0x3c, 0xea, 0xec, 0xdd, - 0xe5, 0xa6, 0x3d, 0x8b, 0xc8, 0x3b, 0xb0, 0xe2, 0x87, 0x42, 0x46, 0xb1, 0xab, 0x37, 0x5a, 0xbb, - 0x89, 0x29, 0xda, 0x04, 0x88, 0xc5, 0x2c, 0x10, 0x7f, 0x0c, 0x44, 0xa3, 0x83, 0xbd, 0x1a, 0x33, - 0x57, 0x1a, 0x43, 0xd1, 0x58, 0xd5, 0x28, 0xdf, 0xcf, 0x30, 0x26, 0x8e, 0xa8, 0x9c, 0x71, 0x44, - 0x84, 0x40, 0x51, 0x3a, 0x43, 0x0d, 0xc9, 0x1a, 0xc5, 0x6f, 0xa5, 0x82, 0x88, 0xf3, 0x91, 0x46, - 0x5d, 0x15, 0xa5, 0xab, 0x8a, 0x80, 0xa0, 0x7b, 0x08, 0x20, 0xa4, 0x13, 0x19, 0xf8, 0xc3, 0xd5, - 0xf0, 0x37, 0xd2, 0x3b, 0xf2, 0x77, 0x05, 0xdc, 0x4d, 0xa8, 0xe0, 0x72, 0x7c, 0x0f, 0xe1, 0x56, - 0xa3, 0x65, 0xd5, 0x3c, 0xf0, 0xc8, 0x4f, 0x13, 0xeb, 0x6f, 0xe0, 0x60, 0xb7, 0x2f, 0x51, 0xfa, - 0x14, 0x02, 0x32, 0x26, 0xdb, 0xbc, 0xd4, 0x64, 0x1f, 0xf3, 0xb3, 0x39, 0x93, 0x7d, 0x07, 0xea, - 0xa9, 0xd3, 0xf1, 0x3d, 0xc4, 0xa5, 0x72, 0xf8, 0x86, 0x74, 0x80, 0xd1, 0x57, 0xdb, 0x12, 0x82, - 0xb2, 0x44, 0x4d, 0xcb, 0xfa, 0x25, 0x94, 0x70, 0x15, 0xe4, 0x2e, 0xb4, 0x55, 0xbc, 0xb1, 0x65, - 0x1c, 0x85, 0xc2, 0x98, 0xb5, 0x0e, 0xe0, 0x4d, 0x45, 0x1f, 0x28, 0xb2, 0xf6, 0x03, 0x1f, 0xc2, - 0xaa, 0x13, 0x7b, 0x3e, 0x9f, 0x12, 0xd5, 0x31, 0xbd, 0x85, 0x8c, 0x89, 0xec, 0x1d, 0x0e, 0x65, - 0x6d, 0x59, 0x84, 0x40, 0xb3, 0x3f, 0xd8, 0x19, 0x9c, 0xf6, 0xed, 0x93, 0xfd, 0xe3, 0xbd, 0x83, - 0xe3, 0x47, 0xed, 0x1b, 0x19, 0x1a, 0x3d, 0x3d, 0x3e, 0x56, 0xb4, 0x1c, 0x59, 0x87, 0xb6, 0xa1, - 0xed, 0x3e, 0x39, 0x3a, 0x39, 0xdc, 0x1f, 0xec, 0xef, 0xb5, 0xf3, 0x64, 0x15, 0x1a, 0x86, 0xfa, - 0xe5, 0xce, 0xc1, 0xe1, 0xfe, 0x5e, 0xbb, 0x90, 0x15, 0xdc, 0x39, 0xde, 0xdd, 0x3f, 0x54, 0xd4, - 0xe2, 0xe3, 0x62, 0xb5, 0xd6, 0x06, 0xeb, 0xef, 0x3e, 0x00, 0x98, 0xa8, 0x89, 0x7c, 0x0c, 0x2d, - 0xe9, 0x88, 0xe7, 0xb6, 0xcb, 0xd5, 0x3f, 0x63, 0x74, 0x51, 0x06, 0x9d, 0xef, 0xdd, 0xa0, 0x4d, - 0xc5, 0xd8, 0x4d, 0xe9, 0x0a, 0x85, 0x77, 0xa1, 0xc1, 0x5f, 0xb0, 0xc8, 0x09, 0x02, 0x5b, 0xb8, - 0x3c, 0x62, 0x88, 0xff, 0x7c, 0x2f, 0x47, 0x57, 0x0c, 0xb9, 0xaf, 0xa8, 0x4a, 0xf2, 0x53, 0x28, - 0x08, 0x29, 0xd1, 0xfe, 0xeb, 0xdb, 0x1f, 0x5c, 0xb9, 0x5d, 0x5b, 0xfd, 0xc1, 0x80, 0xaa, 0x1e, - 0xaa, 0x63, 0x10, 0x8c, 0x10, 0x15, 0xd7, 0xea, 0x78, 0x78, 0x78, 0x44, 0x55, 0x0f, 0xd5, 0x51, - 0x4a, 0x61, 0xe2, 0xdb, 0x35, 0x3a, 0x0e, 0x06, 0x7d, 0xaa, 0x7a, 0x10, 0x0a, 0x2b, 0x2e, 0x0f, - 0x5f, 0xb0, 0x48, 0xa0, 0x58, 0xa7, 0x82, 0x23, 0x6c, 0x5d, 0x3d, 0xc2, 0x6e, 0xa6, 0x17, 0x9d, - 0x1a, 0x83, 0xfc, 0x0c, 0x4a, 0x68, 0x02, 0x9d, 0x1a, 0x46, 0xce, 0x1f, 0x5c, 0x63, 0x39, 0x71, - 0x14, 0x52, 0xdd, 0x49, 0x99, 0xec, 0xb3, 0xd8, 0x1b, 0x32, 0x9d, 0x56, 0x22, 0x66, 0x6b, 0x14, - 0x90, 0xa4, 0x1c, 0x79, 0x40, 0x3e, 0x06, 0x72, 0xee, 0x08, 0x3b, 0x62, 0x23, 0x2e, 0x59, 0x92, - 0xef, 0x22, 0xd8, 0xaa, 0xb4, 0x7d, 0xee, 0x08, 0x8a, 0x8c, 0xbe, 0xa6, 0x93, 0x0f, 0x21, 0x2f, - 0xef, 0x1b, 0xcc, 0x5d, 0x06, 0xe0, 0xbc, 0xbc, 0x4f, 0x3e, 0xd0, 0xc1, 0xc6, 0x17, 0x2c, 0x64, - 0x42, 0xc3, 0x2d, 0xdf, 0xcb, 0xd3, 0x2c, 0x51, 0x6d, 0xef, 0x43, 0xd8, 0x8c, 0xc3, 0x90, 0xb9, - 0x4c, 0x08, 0x15, 0x0b, 0x24, 0xe7, 0x81, 0xed, 0x3a, 0x41, 0xa0, 0xe3, 0x5e, 0xb5, 0x57, 0xa0, - 0xeb, 0x19, 0xfe, 0x80, 0xf3, 0x60, 0x57, 0x71, 0xb5, 0xe7, 0x6f, 0xfb, 0xe1, 0x53, 0x1e, 0x8d, - 0x50, 0x0b, 0x76, 0xc0, 0x85, 0x40, 0xe0, 0x55, 0x7b, 0x45, 0xda, 0xca, 0x70, 0x0e, 0xb9, 0x9e, - 0xea, 0xa7, 0xb0, 0x1e, 0x31, 0x2f, 0x0e, 0x3d, 0x47, 0xa5, 0xf6, 0xd2, 0x91, 0x6c, 0xc4, 0x42, - 0x29, 0x30, 0x0e, 0x56, 0x7b, 0x25, 0xba, 0x96, 0x72, 0xfb, 0x29, 0x53, 0x5b, 0xe0, 0xc6, 0x98, - 0xf3, 0xc8, 0xfe, 0x26, 0xd6, 0x89, 0x9d, 0xfd, 0x4d, 0xec, 0x04, 0xbe, 0xbc, 0xc0, 0x28, 0x59, - 0xed, 0x95, 0xe9, 0x9a, 0x62, 0x7f, 0x65, 0xb8, 0x5f, 0x69, 0xa6, 0xea, 0xf8, 0x73, 0xe8, 0x64, - 0xf7, 0xd2, 0x1e, 0x47, 0x7c, 0x18, 0x19, 0x15, 0xaf, 0xa1, 0x3e, 0x2a, 0xf4, 0x66, 0x56, 0xe2, - 0x64, 0x22, 0xf0, 0x6d, 0x2e, 0x67, 0xfd, 0x75, 0x19, 0x0a, 0xfd, 0xc1, 0x80, 0x6c, 0x40, 0xe1, - 0x25, 0x8b, 0xd0, 0x53, 0x28, 0x38, 0xa9, 0x86, 0x1a, 0xfe, 0x16, 0x94, 0x5e, 0xf2, 0xc8, 0xd3, - 0x91, 0xa7, 0xd1, 0xcb, 0x51, 0xdd, 0x54, 0xac, 0xf7, 0xa1, 0xae, 0xbe, 0x6d, 0x0c, 0x17, 0x3a, - 0xb2, 0x34, 0x7a, 0x79, 0x0a, 0x8a, 0xb8, 0x8f, 0x34, 0x25, 0xb5, 0x01, 0x05, 0x97, 0xe9, 0xd0, - 0x92, 0xef, 0x15, 0xa8, 0x6a, 0x98, 0x71, 0xdd, 0x73, 0x27, 0x12, 0x98, 0x76, 0x35, 0x7a, 0x45, - 0xaa, 0x9b, 0x66, 0x5c, 0xf5, 0x9d, 0x8c, 0x0b, 0x28, 0x50, 0xa2, 0xa0, 0x88, 0x93, 0x71, 0x3f, - 0x80, 0x15, 0x21, 0x55, 0xa2, 0x19, 0x38, 0x17, 0xf6, 0x48, 0x60, 0x20, 0x69, 0xf4, 0xca, 0x14, - 0x84, 0x94, 0x7b, 0x8a, 0x78, 0x84, 0x62, 0xdb, 0x40, 0x58, 0x28, 0x7d, 0x79, 0x61, 0x47, 0xcc, - 0xe5, 0xc3, 0xd0, 0x47, 0xd0, 0xd4, 0x8d, 0x62, 0x56, 0x35, 0x8f, 0x4e, 0x58, 0x66, 0xcf, 0x91, - 0xee, 0x33, 0x61, 0xc7, 0x52, 0xb2, 0x88, 0xe9, 0xd0, 0xd0, 0xe8, 0x55, 0x69, 0x2b, 0xe1, 0x9c, - 0x6a, 0x86, 0x92, 0xff, 0x04, 0xd6, 0x52, 0x79, 0x33, 0xcb, 0xaf, 0x98, 0x87, 0x26, 0xdc, 0xe8, - 0xd5, 0x28, 0x49, 0x98, 0x34, 0xe5, 0x19, 0xef, 0x34, 0x59, 0x99, 0x13, 0x04, 0xc6, 0x7a, 0x81, - 0xae, 0xa4, 0x8b, 0x72, 0x82, 0x40, 0x49, 0xfe, 0x01, 0xdc, 0x4a, 0xc7, 0x77, 0xdc, 0x6f, 0x62, - 0x3f, 0x62, 0x5e, 0xba, 0xb0, 0x16, 0xce, 0x52, 0xa7, 0x37, 0x13, 0x91, 0x1d, 0x23, 0x91, 0x59, - 0xe0, 0x3e, 0xbc, 0x39, 0x3f, 0x40, 0x66, 0xa5, 0x6d, 0x1c, 0x63, 0x85, 0x5a, 0xb3, 0x63, 0x4c, - 0xad, 0xb8, 0x5b, 0x86, 0xa2, 0xfd, 0x92, 0x45, 0xdd, 0x2a, 0x94, 0x6d, 0xb4, 0x82, 0x6e, 0x13, - 0x56, 0xec, 0x8c, 0x0d, 0xa0, 0x84, 0x6b, 0x24, 0x70, 0x3f, 0x51, 0x22, 0xb3, 0x9b, 0xdd, 0x16, - 0x34, 0xec, 0xec, 0xbe, 0x75, 0x37, 0x60, 0xcd, 0x9e, 0xdf, 0xa1, 0xee, 0x1a, 0xac, 0xda, 0xb3, - 0x9b, 0xd0, 0xdd, 0x84, 0x75, 0x7b, 0x81, 0xa6, 0xbb, 0x6d, 0x68, 0xda, 0x53, 0xba, 0xec, 0xbe, - 0x09, 0x96, 0xbd, 0x54, 0x67, 0xdd, 0x77, 0xe0, 0x2d, 0xfb, 0x32, 0x85, 0x58, 0xbf, 0xc9, 0x41, - 0xe1, 0xf0, 0xf0, 0x88, 0xbc, 0x09, 0x15, 0x29, 0x9f, 0x4a, 0x65, 0x5f, 0x39, 0xd4, 0xd1, 0x0d, - 0x5a, 0x56, 0x04, 0x6d, 0x5b, 0x9a, 0x2b, 0x14, 0x37, 0x41, 0x87, 0xe2, 0x0a, 0xcd, 0xbd, 0x07, - 0xab, 0x92, 0x3f, 0x67, 0xa1, 0xb0, 0xc7, 0x2c, 0xb2, 0x05, 0x73, 0x79, 0xe8, 0x99, 0x68, 0x95, - 0xa7, 0x2d, 0xcd, 0x3a, 0x61, 0x51, 0x1f, 0x19, 0x4a, 0xbd, 0x00, 0x55, 0xdb, 0xcc, 0x96, 0x7c, - 0xab, 0xb1, 0xbb, 0xeb, 0x40, 0xec, 0xb9, 0x91, 0xac, 0x5f, 0x97, 0xa1, 0x30, 0x18, 0xf4, 0xcd, - 0x22, 0xce, 0x26, 0x8b, 0xd0, 0x4b, 0x3c, 0x3b, 0x4a, 0xd0, 0xa7, 0x50, 0x5d, 0x30, 0x81, 0x6f, - 0x0e, 0xd5, 0x15, 0x03, 0xda, 0xa5, 0xa8, 0xd6, 0xb0, 0x2a, 0x2c, 0x41, 0x75, 0x0d, 0xc7, 0x2d, - 0xce, 0xa3, 0x3a, 0x01, 0xed, 0x52, 0x54, 0xd7, 0x13, 0xb8, 0x4e, 0xa3, 0x7a, 0x31, 0x5c, 0x9b, - 0xaf, 0x0d, 0xd7, 0xd6, 0xeb, 0xc3, 0xb5, 0xfd, 0x9a, 0x70, 0x5d, 0xfd, 0x9d, 0xe0, 0x4a, 0xbe, - 0x03, 0xb8, 0xae, 0x5d, 0x0f, 0xae, 0xc6, 0x86, 0x94, 0x69, 0x7c, 0x27, 0xd0, 0xfd, 0x3f, 0x89, - 0xd4, 0xff, 0xa9, 0xc0, 0x4a, 0x36, 0xb3, 0x41, 0xd8, 0xc5, 0x51, 0x68, 0x4b, 0xe7, 0xb9, 0x1f, - 0x0e, 0x4d, 0xe2, 0x97, 0x44, 0xb5, 0x96, 0x62, 0x0d, 0x90, 0x93, 0xe6, 0x7e, 0x9f, 0x43, 0xe7, - 0x9c, 0x39, 0x4a, 0x11, 0xdb, 0xcc, 0x0e, 0x1c, 0xa9, 0xce, 0xa8, 0xf6, 0xf8, 0xc1, 0xfd, 0x04, - 0x51, 0xa5, 0x5e, 0x8e, 0xae, 0xa3, 0xc4, 0xfe, 0x36, 0x3b, 0xd4, 0xfc, 0x93, 0x07, 0xf7, 0x35, - 0xbe, 0x16, 0x77, 0x7e, 0xf8, 0x40, 0x75, 0x2e, 0x60, 0xe7, 0xfc, 0x7c, 0xe7, 0x87, 0x0f, 0x2e, - 0xed, 0xfc, 0x50, 0x75, 0x2e, 0x62, 0xe7, 0xc2, 0x82, 0xce, 0x0f, 0x75, 0xe7, 0x8f, 0xa1, 0x2d, - 0xfd, 0x11, 0xb3, 0x25, 0xb7, 0x2f, 0x7c, 0x16, 0x78, 0xaa, 0x53, 0xc9, 0xc4, 0xd2, 0x86, 0xe2, - 0x0c, 0xf8, 0x2f, 0x14, 0x3d, 0x99, 0xea, 0x26, 0xe3, 0xd2, 0x1e, 0xf9, 0x62, 0x1c, 0x31, 0xcf, - 0xc7, 0x83, 0x9f, 0x49, 0xf8, 0xcb, 0x06, 0xaa, 0x1b, 0x8c, 0xcb, 0xa3, 0x2c, 0x3f, 0x3d, 0xfd, - 0x9a, 0x3c, 0x3a, 0x70, 0xc6, 0x36, 0xde, 0x45, 0xa2, 0xd7, 0xc8, 0xf7, 0xca, 0x3a, 0x8f, 0x0e, - 0x9c, 0x31, 0x55, 0x54, 0xe3, 0xf3, 0x12, 0x49, 0x31, 0x66, 0xcc, 0x3d, 0x9f, 0x44, 0xe6, 0x0a, - 0x6d, 0x19, 0x56, 0x1f, 0x39, 0x7a, 0x5d, 0x1f, 0x41, 0x4b, 0x72, 0xe9, 0x04, 0x19, 0xf1, 0x9a, - 0x81, 0x6e, 0x03, 0x19, 0x59, 0xe1, 0x4f, 0x61, 0xc3, 0x79, 0xf9, 0xfc, 0xa5, 0xd2, 0x98, 0xf0, - 0x03, 0x16, 0xba, 0xc9, 0xa9, 0xbd, 0x6e, 0xa0, 0xbb, 0x66, 0xd8, 0x7d, 0xcd, 0xcd, 0x1c, 0xdf, - 0xdb, 0x71, 0xe8, 0x84, 0xe2, 0xa5, 0xb2, 0x29, 0x7d, 0xda, 0x31, 0x01, 0x1d, 0x68, 0x6b, 0xc2, - 0xc1, 0xe3, 0x8e, 0x92, 0xff, 0x02, 0x3a, 0x4f, 0x9d, 0x40, 0x30, 0xdb, 0x0f, 0x25, 0x8b, 0xa2, - 0x78, 0x9c, 0x51, 0x57, 0xc3, 0x00, 0x78, 0x13, 0x25, 0x0e, 0x32, 0x02, 0xe9, 0x74, 0x3f, 0x82, - 0x66, 0x76, 0x47, 0x47, 0xc2, 0xb8, 0xa3, 0x15, 0xba, 0xc2, 0xd2, 0x8d, 0xc4, 0x5f, 0xd2, 0xbe, - 0x7d, 0xd6, 0x5c, 0xbb, 0x6f, 0xc0, 0x2d, 0x7b, 0x99, 0x4d, 0x2e, 0x63, 0xa2, 0xcd, 0x2d, 0x65, - 0x2a, 0x9b, 0x42, 0xa4, 0xce, 0xda, 0x4c, 0xd7, 0x82, 0x8e, 0xbd, 0xc4, 0x34, 0x10, 0xad, 0x53, - 0x3b, 0x8f, 0xeb, 0x9d, 0xdb, 0xe1, 0x2e, 0x81, 0xb6, 0x3d, 0xb3, 0x8d, 0xdd, 0x0e, 0x6c, 0xda, - 0x0b, 0x77, 0x0b, 0x97, 0x31, 0xbb, 0x1d, 0xb8, 0xf0, 0x65, 0x3a, 0xef, 0xae, 0x42, 0xcb, 0x9e, - 0xd6, 0xa8, 0xf5, 0xdb, 0x0a, 0x14, 0xd5, 0x7e, 0x91, 0x75, 0x28, 0xf9, 0xa1, 0xc7, 0x5e, 0xe9, - 0x00, 0x4d, 0x75, 0x83, 0x7c, 0x04, 0xc5, 0x88, 0x07, 0xcc, 0xdc, 0x97, 0xdc, 0x5c, 0x70, 0x2d, - 0x4b, 0x79, 0xc0, 0x28, 0x0a, 0x91, 0xb7, 0xa1, 0x8a, 0xb7, 0x08, 0x09, 0x68, 0x55, 0x0c, 0xad, - 0x20, 0x45, 0xdb, 0x9d, 0x05, 0x65, 0x16, 0x7a, 0x09, 0x2a, 0x31, 0x09, 0x66, 0xa1, 0x01, 0xd6, - 0x6c, 0x1a, 0x5a, 0x4a, 0xb2, 0xe0, 0xe9, 0x34, 0xf4, 0x3d, 0xa8, 0x07, 0xc1, 0x28, 0x09, 0xef, - 0x06, 0x73, 0x05, 0x5a, 0x0b, 0x82, 0xd1, 0x20, 0xcd, 0x27, 0x26, 0x42, 0x98, 0x53, 0x54, 0x0c, - 0x9a, 0x8d, 0x90, 0x48, 0x93, 0x0e, 0x14, 0x1a, 0x6b, 0x60, 0xe5, 0x7b, 0x25, 0x5a, 0x56, 0x02, - 0xe3, 0x64, 0x08, 0x29, 0x45, 0xe2, 0xf6, 0x0d, 0x96, 0xca, 0xb4, 0x26, 0xa5, 0x18, 0xa4, 0x49, - 0xc1, 0xbc, 0x7d, 0x82, 0x81, 0xe8, 0xac, 0x7d, 0x92, 0x4f, 0x60, 0x7d, 0xde, 0x9c, 0x46, 0x3a, - 0x7c, 0x97, 0x7a, 0x55, 0xba, 0x3a, 0xe3, 0x9e, 0x96, 0xfb, 0xa6, 0x15, 0x83, 0xd1, 0x79, 0xdf, - 0xb4, 0xd0, 0x63, 0x37, 0x4c, 0x74, 0x5d, 0xe4, 0xb1, 0x17, 0x9e, 0xfa, 0xea, 0x73, 0xa7, 0xbe, - 0xfb, 0xb0, 0x3a, 0x67, 0xd8, 0xe6, 0xc0, 0xb7, 0x42, 0xdb, 0xb3, 0xde, 0x4e, 0xaf, 0xbb, 0x35, - 0x63, 0xb2, 0xe6, 0xac, 0xd7, 0xa0, 0xcd, 0x69, 0xd7, 0xa2, 0x75, 0x0d, 0x13, 0x33, 0x36, 0x07, - 0xbc, 0x26, 0xcd, 0xd0, 0x14, 0xc0, 0xeb, 0x50, 0xb3, 0x13, 0xe3, 0xea, 0xd6, 0xa0, 0x62, 0x6b, - 0x4b, 0x9a, 0xcf, 0x83, 0x55, 0xb4, 0xcd, 0x98, 0x48, 0xb6, 0x2d, 0x92, 0x8c, 0xd0, 0x6c, 0x3c, - 0xf2, 0x32, 0xdb, 0xbc, 0x00, 0x1f, 0xdd, 0x9b, 0xb0, 0x61, 0x2f, 0xda, 0xb9, 0xc5, 0x4e, 0x60, - 0xb1, 0x1b, 0xc2, 0x04, 0x60, 0xa2, 0x53, 0x94, 0x9a, 0xd3, 0x28, 0x82, 0x7f, 0x46, 0x6b, 0xdd, - 0x06, 0xd4, 0x33, 0x10, 0xd7, 0xfe, 0x61, 0xfa, 0xde, 0x26, 0xf5, 0x2d, 0xe9, 0xed, 0xcc, 0xdc, - 0x74, 0xb7, 0xe0, 0xa6, 0xbd, 0xf8, 0xd8, 0x8e, 0x3f, 0x31, 0x7b, 0x2c, 0xc7, 0x5f, 0x5e, 0x74, - 0xf6, 0x46, 0x57, 0xb4, 0xf0, 0x70, 0x8d, 0x5e, 0x67, 0xd9, 0xe9, 0xf9, 0x71, 0xb1, 0x9a, 0x6b, - 0xe7, 0x1f, 0x17, 0xab, 0xf9, 0x76, 0x81, 0x36, 0x1d, 0xd7, 0x8d, 0x23, 0xc7, 0xbd, 0xd0, 0x6b, - 0xa5, 0x6d, 0xf6, 0x6a, 0xcc, 0x22, 0x1f, 0xbd, 0x1a, 0x52, 0xac, 0xff, 0x2c, 0x02, 0x4c, 0xee, - 0xa0, 0xc9, 0xef, 0x01, 0x49, 0xef, 0xf1, 0x26, 0x17, 0xbe, 0xc9, 0x65, 0x55, 0x3b, 0xe1, 0x9d, - 0x98, 0xab, 0xdf, 0x85, 0xd7, 0x55, 0xf0, 0xff, 0xd7, 0x55, 0x0b, 0xaf, 0xab, 0x66, 0xf0, 0x5f, - 0x5d, 0x72, 0xeb, 0x73, 0xd9, 0xcd, 0x48, 0xcd, 0x5c, 0x47, 0x5c, 0x72, 0x33, 0x82, 0xf9, 0xee, - 0xfc, 0x1e, 0x5e, 0xc3, 0x70, 0xbf, 0x43, 0xab, 0xfa, 0x9b, 0x1c, 0xe4, 0x77, 0x0f, 0x88, 0x05, - 0xd5, 0x71, 0xc4, 0x5f, 0xf8, 0x9e, 0xb9, 0xa1, 0xa9, 0xd1, 0xb4, 0x4d, 0xde, 0x02, 0x70, 0xf9, - 0x68, 0xe4, 0x4b, 0x5b, 0x9c, 0x3b, 0x49, 0x25, 0x4f, 0x53, 0xfa, 0xe7, 0x0e, 0x69, 0x43, 0x21, - 0x62, 0x4f, 0xcd, 0xbd, 0xbf, 0xfa, 0xc4, 0x22, 0x52, 0x1c, 0x04, 0x76, 0xc4, 0x10, 0x0f, 0xe6, - 0xd6, 0xbf, 0xae, 0x68, 0x54, 0x93, 0xf0, 0x4e, 0x3c, 0x0e, 0xed, 0x38, 0x0a, 0xcc, 0x85, 0x7f, - 0x39, 0x8a, 0xc3, 0xd3, 0x28, 0x50, 0xd1, 0xd6, 0x71, 0x25, 0x8f, 0x92, 0x5b, 0x7e, 0x6c, 0x58, - 0xff, 0x55, 0x82, 0xf2, 0x2e, 0x96, 0xe1, 0xac, 0x7f, 0x2b, 0x42, 0x25, 0x19, 0x65, 0xba, 0xc6, - 0x98, 0x9b, 0xad, 0x31, 0x4e, 0x97, 0xdf, 0xf2, 0xb3, 0xe5, 0xb7, 0x05, 0x55, 0xaa, 0xe2, 0xc2, - 0x2a, 0xd5, 0x26, 0x94, 0x23, 0x36, 0x54, 0xbb, 0x5a, 0x36, 0x6b, 0xc5, 0x16, 0xe9, 0xce, 0xd5, - 0xef, 0x2a, 0x97, 0xd5, 0xef, 0x7a, 0x37, 0x66, 0x2a, 0x78, 0x99, 0x50, 0x93, 0x54, 0xb3, 0xaa, - 0xe6, 0x3c, 0x90, 0x25, 0xea, 0x34, 0x56, 0x97, 0xb4, 0x6a, 0xd7, 0x29, 0x69, 0xfd, 0x08, 0xda, - 0x67, 0x8e, 0xfb, 0x5c, 0x2d, 0x29, 0xf4, 0xec, 0x90, 0xfb, 0x42, 0x43, 0xbd, 0x4a, 0x5b, 0x13, - 0xfa, 0xb1, 0x22, 0x93, 0x4f, 0x60, 0x33, 0xe0, 0x2f, 0x13, 0x77, 0x65, 0x8f, 0x7c, 0x37, 0xe2, - 0xe3, 0x73, 0x1e, 0x32, 0x0c, 0xc0, 0x55, 0xba, 0x1e, 0xf0, 0x97, 0xe6, 0x2e, 0xf0, 0x28, 0xe5, - 0x91, 0x77, 0xa0, 0x3e, 0x76, 0xdc, 0xe7, 0x4c, 0xea, 0xeb, 0x4a, 0x7d, 0xd1, 0x0a, 0x9a, 0x74, - 0xc8, 0x85, 0x30, 0xe5, 0xac, 0xc6, 0x55, 0xe5, 0xac, 0xfc, 0x82, 0x72, 0x56, 0xf3, 0x92, 0x72, - 0x56, 0x6b, 0xba, 0x9c, 0x85, 0x61, 0x69, 0x7a, 0x07, 0x52, 0xa8, 0x18, 0xdd, 0x75, 0x4b, 0x50, - 0xb0, 0x5d, 0xff, 0x71, 0xb1, 0x5a, 0x68, 0x17, 0xe9, 0x7c, 0xed, 0xd8, 0xfa, 0x8b, 0x1c, 0x54, - 0x29, 0x13, 0x63, 0x1e, 0x0a, 0x46, 0x3e, 0x84, 0xd5, 0x89, 0x35, 0xd8, 0xca, 0x40, 0x53, 0xb3, - 0x6a, 0x89, 0xec, 0xe2, 0x0f, 0x3c, 0xd2, 0x87, 0xcd, 0x71, 0xc4, 0x84, 0x3f, 0x0c, 0x99, 0x67, - 0x8f, 0xb9, 0x90, 0xa9, 0xb9, 0xeb, 0x4a, 0xfd, 0xa4, 0xa0, 0x7d, 0x92, 0x88, 0x9d, 0x70, 0x21, - 0x8d, 0xe9, 0xd2, 0xf5, 0xf1, 0x02, 0xaa, 0xf5, 0x9b, 0x1c, 0xac, 0xed, 0xf2, 0xf0, 0xa9, 0x1f, - 0x8d, 0xfa, 0x3c, 0x8e, 0x5c, 0x76, 0x3a, 0x0e, 0xb8, 0xe3, 0x59, 0x7f, 0x76, 0x6d, 0x9b, 0x5f, - 0xf8, 0x0b, 0xf9, 0xc5, 0xbf, 0xf0, 0x43, 0x68, 0xb9, 0xdc, 0x63, 0xea, 0xfc, 0x1b, 0x5d, 0x8c, - 0xb9, 0x1f, 0x4a, 0x83, 0xe2, 0xa6, 0x22, 0xef, 0xa7, 0x54, 0x0b, 0x26, 0x3a, 0xb2, 0xfe, 0x2a, - 0x07, 0x85, 0x47, 0x4c, 0x5a, 0x83, 0xef, 0x63, 0x49, 0xd6, 0x27, 0x99, 0xdd, 0xb8, 0x0b, 0x85, - 0x28, 0xd6, 0x6f, 0x16, 0xa6, 0x30, 0x95, 0xed, 0x42, 0x95, 0x88, 0xf5, 0xaf, 0x45, 0x28, 0x1e, - 0xfa, 0x42, 0x5a, 0xff, 0x52, 0xb8, 0xf6, 0xaa, 0x3e, 0x9b, 0x29, 0x79, 0x5e, 0xfe, 0x00, 0xa1, - 0x77, 0x23, 0x29, 0x78, 0x2a, 0x73, 0xfd, 0x19, 0xc0, 0xd8, 0x19, 0x32, 0x7d, 0x69, 0x86, 0x3a, - 0xab, 0x6f, 0x77, 0xd2, 0xfe, 0x03, 0x45, 0x3d, 0x71, 0x86, 0x7e, 0x88, 0x83, 0xf4, 0x72, 0xb4, - 0xa6, 0xa4, 0x91, 0xac, 0xc3, 0x86, 0xae, 0x40, 0x62, 0x96, 0x64, 0x62, 0xec, 0x25, 0x75, 0x88, - 0x5e, 0xde, 0xd4, 0x20, 0x15, 0x45, 0xf5, 0xff, 0x0c, 0xcb, 0x90, 0xba, 0x77, 0xe9, 0xca, 0xde, - 0x05, 0x2c, 0x44, 0x26, 0x7d, 0xef, 0x4c, 0xb9, 0x44, 0x74, 0x67, 0xea, 0x00, 0x90, 0x3a, 0x45, - 0x9d, 0xd6, 0x6a, 0x5f, 0x53, 0xb9, 0xd4, 0xd7, 0xf4, 0x4a, 0xda, 0xdb, 0xa8, 0x40, 0xa6, 0xd2, - 0x4e, 0xad, 0x1d, 0x4c, 0xcc, 0x26, 0xba, 0xc1, 0xe6, 0xe4, 0x67, 0x31, 0x59, 0x4d, 0xd6, 0x8e, - 0xbc, 0xc9, 0x62, 0xba, 0x15, 0x28, 0x61, 0x81, 0xc7, 0x7a, 0x35, 0x85, 0xc8, 0x62, 0x14, 0x87, - 0xa2, 0x93, 0xc3, 0xba, 0xd1, 0x32, 0x23, 0x40, 0x19, 0xf2, 0x87, 0xd0, 0x0a, 0xd9, 0x2b, 0x99, - 0x99, 0xde, 0x40, 0x71, 0xe9, 0xd6, 0xd0, 0x86, 0xea, 0x70, 0x92, 0x6c, 0x8e, 0xf5, 0xcf, 0x45, - 0x28, 0xe3, 0x21, 0x5b, 0x58, 0xff, 0x9e, 0xbf, 0xb6, 0x25, 0x3d, 0x9c, 0xda, 0xcf, 0xfc, 0x35, - 0x2b, 0xca, 0xaa, 0x6d, 0x2a, 0xca, 0xba, 0x63, 0xe1, 0x5a, 0x15, 0x65, 0xec, 0x36, 0xb1, 0xdd, - 0xe2, 0x6b, 0xdb, 0xee, 0xb4, 0x05, 0x60, 0xf0, 0x55, 0x16, 0xba, 0xd0, 0x02, 0xca, 0x97, 0x5b, - 0x40, 0x7e, 0xa9, 0x05, 0x2c, 0xda, 0xd6, 0x3f, 0xcf, 0x7a, 0xda, 0x9f, 0x43, 0xe5, 0x2c, 0x56, - 0xe1, 0x22, 0xd9, 0xda, 0xf7, 0x97, 0x45, 0x09, 0xdc, 0x8e, 0xad, 0x2e, 0x0a, 0xd3, 0xa4, 0x93, - 0x52, 0x1c, 0x1e, 0xe3, 0x5f, 0x38, 0x81, 0xd1, 0xf8, 0xad, 0x39, 0xc5, 0xed, 0x99, 0x87, 0x6d, - 0x34, 0x15, 0xb5, 0x7e, 0x09, 0x65, 0x3d, 0x12, 0xf9, 0x02, 0x56, 0xf4, 0x58, 0xda, 0x3c, 0x8d, - 0x97, 0xb9, 0x4c, 0xfb, 0x75, 0x2d, 0xdf, 0x57, 0xe2, 0x2a, 0x4d, 0x99, 0x54, 0xb3, 0x8b, 0x54, - 0x37, 0xac, 0x67, 0x50, 0xde, 0x75, 0x42, 0x97, 0x05, 0xdf, 0x93, 0x77, 0xcc, 0xfa, 0xe1, 0xef, - 0xb9, 0x1c, 0xff, 0xb7, 0xb9, 0xb4, 0x1e, 0x7f, 0x0b, 0x36, 0xa6, 0xeb, 0xf1, 0xf6, 0xe9, 0xc9, - 0xe1, 0x93, 0x9d, 0xbd, 0xf6, 0x0d, 0xb2, 0x01, 0xab, 0x86, 0xf5, 0x68, 0xff, 0x78, 0x9f, 0xee, - 0x0c, 0x74, 0x65, 0x7e, 0xbe, 0x5a, 0x9f, 0x27, 0x9b, 0x40, 0x0c, 0xad, 0x7f, 0x7a, 0x74, 0xb4, - 0x43, 0x0f, 0xbe, 0x56, 0xf4, 0xc2, 0xc2, 0x2a, 0x7e, 0x71, 0xbe, 0x8a, 0x5f, 0x5a, 0x58, 0xc5, - 0x2f, 0x63, 0xbc, 0xcf, 0xbc, 0xaf, 0x99, 0xc4, 0xfb, 0x6a, 0xbb, 0x46, 0x2b, 0xe6, 0x21, 0xce, - 0x9d, 0x7f, 0x2a, 0x40, 0x35, 0xc9, 0xc5, 0x26, 0x0f, 0x49, 0x72, 0xd9, 0x87, 0x24, 0xb3, 0xef, - 0x58, 0xf2, 0x0b, 0xde, 0xb1, 0x2c, 0x7e, 0xb1, 0x52, 0x58, 0xf6, 0x62, 0xe5, 0x9e, 0x79, 0x9b, - 0x52, 0x44, 0x0b, 0x7f, 0x63, 0x2e, 0x2b, 0xdc, 0x1a, 0x38, 0x43, 0xa1, 0x5f, 0x06, 0xea, 0x87, - 0x2b, 0x16, 0x54, 0x63, 0xc1, 0x22, 0xcf, 0x91, 0x8e, 0x49, 0x8b, 0xd3, 0xb6, 0x79, 0xb2, 0x53, - 0x4e, 0x9e, 0xec, 0x58, 0x7f, 0x9f, 0x83, 0x55, 0x9d, 0x12, 0x7f, 0x19, 0xf1, 0x91, 0xa9, 0x6d, - 0x5b, 0xbf, 0xb8, 0xb6, 0xdd, 0x65, 0x5e, 0xa5, 0xe4, 0xa7, 0x5e, 0xa5, 0x4c, 0xb2, 0xdd, 0x42, - 0x36, 0xdb, 0xb5, 0x1e, 0x66, 0xe0, 0xfb, 0x63, 0xa8, 0x26, 0x79, 0x97, 0x41, 0xce, 0xea, 0xdc, - 0xdf, 0xd1, 0x54, 0xc4, 0xfa, 0x14, 0x6a, 0xe9, 0xaf, 0x2e, 0x78, 0xe3, 0xb8, 0x9e, 0x7d, 0xe3, - 0x58, 0xcb, 0xbc, 0x63, 0xbc, 0xe3, 0x41, 0x63, 0x2a, 0x85, 0x26, 0x04, 0x8a, 0xe8, 0xb7, 0x74, - 0x6f, 0xfc, 0x26, 0xf7, 0xa0, 0x96, 0xcc, 0xa4, 0xb6, 0xad, 0xb0, 0x78, 0x35, 0x13, 0x19, 0xa3, - 0xca, 0x42, 0xa2, 0xca, 0x3b, 0xff, 0x98, 0x03, 0x32, 0xf1, 0x3a, 0x7b, 0xbe, 0x18, 0x3b, 0xd2, - 0x3d, 0x7f, 0xad, 0x6c, 0x70, 0x03, 0xca, 0xcf, 0xf8, 0xd9, 0x44, 0x99, 0xa5, 0x67, 0xfc, 0xec, - 0xc0, 0x9b, 0xd2, 0x53, 0xe1, 0x4a, 0x3d, 0xa5, 0x59, 0x7e, 0xf1, 0x1a, 0x59, 0xfe, 0x87, 0x4f, - 0xa1, 0x39, 0x4d, 0x27, 0xef, 0xc0, 0x1b, 0xfd, 0x83, 0xa3, 0xd3, 0xc3, 0x9d, 0xc1, 0xc1, 0x93, - 0x63, 0xfb, 0xe8, 0xc9, 0xde, 0xbe, 0x7d, 0x7a, 0xdc, 0x3f, 0xd9, 0xdf, 0x3d, 0xf8, 0xf2, 0x60, - 0x5f, 0xc1, 0xb5, 0x03, 0xeb, 0xb3, 0x02, 0x83, 0xfd, 0x3f, 0x19, 0xb4, 0x73, 0x88, 0xf1, 0x19, - 0xce, 0xce, 0xe9, 0xde, 0xc1, 0x93, 0x76, 0x7e, 0xfb, 0xd7, 0x65, 0x68, 0xed, 0x28, 0xdb, 0x9e, - 0xcc, 0x46, 0x3c, 0x58, 0xd3, 0xb6, 0x37, 0xfd, 0x06, 0x74, 0xd9, 0xb9, 0x5d, 0xcb, 0x6e, 0x25, - 0x59, 0xee, 0x0f, 0xae, 0x12, 0x33, 0x56, 0xf6, 0x6d, 0x0e, 0xde, 0x4a, 0xb2, 0xe1, 0x54, 0x30, - 0x9b, 0x17, 0x93, 0xed, 0xa5, 0x51, 0x63, 0x2e, 0x87, 0x4e, 0x67, 0xff, 0xc9, 0x6b, 0xf5, 0x31, - 0x4b, 0xf9, 0x53, 0x68, 0x3f, 0x62, 0x72, 0xfa, 0x6f, 0xef, 0x2c, 0x19, 0xe8, 0x11, 0x93, 0xe9, - 0x64, 0xef, 0x5d, 0x2a, 0x63, 0x06, 0xb7, 0x81, 0xa8, 0xec, 0x75, 0x4a, 0x42, 0x90, 0x65, 0x5d, - 0x95, 0x68, 0x3a, 0xfe, 0xfb, 0x97, 0x0b, 0x99, 0x09, 0xd4, 0x76, 0x29, 0xef, 0x38, 0x33, 0xc3, - 0x07, 0x97, 0xc7, 0xdc, 0x2b, 0xb7, 0x2b, 0x11, 0xcb, 0xcc, 0x82, 0xd1, 0xef, 0x9a, 0x46, 0x81, - 0xb2, 0x57, 0xcf, 0x92, 0x88, 0x99, 0x59, 0x5e, 0xc0, 0x2d, 0x63, 0x7a, 0x06, 0x35, 0x19, 0xf7, - 0x47, 0x3e, 0x9a, 0xf7, 0xb1, 0x73, 0x3e, 0x32, 0x9d, 0xf1, 0xe3, 0xeb, 0x09, 0xeb, 0x79, 0xbb, - 0x5f, 0x7e, 0xfd, 0xde, 0xd0, 0x97, 0xe7, 0xf1, 0xd9, 0x96, 0xcb, 0x47, 0xc9, 0x0b, 0x7b, 0xfd, - 0x4a, 0xde, 0xe5, 0x41, 0x42, 0xf8, 0x6d, 0xbe, 0x71, 0xe8, 0xbf, 0x60, 0x7f, 0x84, 0xc7, 0x3e, - 0x2e, 0xf9, 0x7f, 0xe7, 0x9b, 0xa6, 0xfd, 0xd9, 0x67, 0x48, 0x38, 0x2b, 0x63, 0x97, 0x9f, 0xfc, - 0x6f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x39, 0xa9, 0x53, 0xa0, 0xd4, 0x2f, 0x00, 0x00, + 0x76, 0xd7, 0x7c, 0xcf, 0xbc, 0xe1, 0x7c, 0xb0, 0xf8, 0xa1, 0x51, 0xdb, 0xb2, 0x65, 0xd9, 0xde, + 0xd5, 0xda, 0x5e, 0x4a, 0xe1, 0x5a, 0xeb, 0xc8, 0x5e, 0x6f, 0xc2, 0x21, 0x69, 0x0d, 0x15, 0x92, + 0xa6, 0x6b, 0x86, 0x48, 0xd6, 0xc1, 0xa2, 0xd1, 0xec, 0x2e, 0x0d, 0x5b, 0xea, 0xe9, 0x1a, 0x77, + 0x55, 0x4b, 0xe2, 0x02, 0x39, 0x04, 0xd8, 0x83, 0x83, 0x1c, 0x82, 0xe4, 0x2f, 0x58, 0x20, 0x08, + 0x82, 0xec, 0x35, 0xc8, 0x31, 0x97, 0x00, 0x39, 0x07, 0x41, 0xfe, 0x84, 0xdc, 0x72, 0xca, 0x25, + 0xf7, 0xa0, 0x5e, 0x55, 0xf7, 0xf4, 0x7c, 0x91, 0xd4, 0xc2, 0x06, 0x72, 0xc8, 0xad, 0xeb, 0xbd, + 0x57, 0x1f, 0xfd, 0xea, 0xfd, 0xde, 0x7b, 0x55, 0xaf, 0xe0, 0xad, 0xc0, 0x7f, 0xc1, 0x9e, 0xfb, + 0xd2, 0x76, 0x86, 0x2c, 0x94, 0xb6, 0xf0, 0x47, 0x71, 0xe0, 0x48, 0x9f, 0x87, 0x5b, 0xe3, 0x88, + 0x4b, 0x4e, 0x2a, 0x86, 0x6f, 0xbd, 0x83, 0x02, 0xf7, 0x67, 0xc4, 0x99, 0x10, 0xa9, 0xac, 0xf5, + 0xd6, 0x90, 0xf3, 0x61, 0xc0, 0xee, 0x63, 0xeb, 0x2c, 0x7e, 0x7a, 0xdf, 0x8b, 0xa3, 0xcc, 0x58, + 0xd6, 0xdb, 0xb3, 0x7c, 0xe9, 0x8f, 0x98, 0x90, 0xce, 0x68, 0x6c, 0x04, 0x6e, 0x25, 0xa3, 0xbb, + 0x01, 0x8f, 0x3d, 0x3d, 0x87, 0x61, 0xad, 0x27, 0xac, 0x11, 0xf7, 0x58, 0x20, 0x34, 0xf5, 0xee, + 0xbf, 0x17, 0x60, 0xbd, 0x9f, 0x2e, 0x99, 0xc6, 0x61, 0x3f, 0x1e, 0x8d, 0x9c, 0xe8, 0x82, 0x6c, + 0x42, 0x79, 0xec, 0x08, 0xc1, 0xbc, 0x4e, 0xee, 0x4e, 0xee, 0x5e, 0x89, 0x9a, 0x96, 0xa2, 0x3f, + 0x75, 0xfc, 0x80, 0x79, 0x9d, 0xbc, 0xa6, 0xeb, 0x16, 0xb9, 0x0d, 0x30, 0xe4, 0x7e, 0x38, 0xb4, + 0x5f, 0xb2, 0x20, 0xe8, 0x14, 0xee, 0xe4, 0xee, 0xd5, 0x68, 0x0d, 0x29, 0x7f, 0xcc, 0x82, 0x40, + 0xb1, 0x25, 0xb7, 0xfd, 0xd1, 0x38, 0xe2, 0x2f, 0x58, 0xa7, 0xa8, 0xd9, 0x92, 0x1f, 0x68, 0x02, + 0xf9, 0x0c, 0xca, 0xbe, 0x10, 0x31, 0x13, 0x9d, 0xd2, 0x9d, 0xc2, 0xbd, 0xfa, 0xf6, 0xbb, 0x5b, + 0x66, 0xb5, 0x5b, 0x8b, 0x16, 0xb7, 0x75, 0xa0, 0x64, 0xa9, 0xe9, 0x42, 0xbe, 0x82, 0x15, 0xf7, + 0xdc, 0x91, 0xf6, 0xb9, 0x2f, 0x24, 0x8f, 0x2e, 0x3a, 0x65, 0x1c, 0x62, 0xeb, 0xf2, 0x21, 0x76, + 0xcf, 0x1d, 0xd9, 0xd3, 0x1d, 0xf6, 0x43, 0x19, 0x5d, 0xd0, 0xba, 0x3b, 0xa1, 0x58, 0x5f, 0x43, + 0x7b, 0x56, 0x80, 0xb4, 0xa1, 0xf0, 0x9c, 0x5d, 0xa0, 0x3a, 0x6a, 0x54, 0x7d, 0x92, 0x07, 0x50, + 0x7a, 0xe1, 0x04, 0x31, 0x43, 0x55, 0xd4, 0xb7, 0xad, 0x74, 0x46, 0xad, 0x77, 0x35, 0xc2, 0x2e, + 0x0f, 0x25, 0x7b, 0x25, 0xa9, 0x16, 0xfc, 0x34, 0xff, 0xfb, 0x39, 0xcb, 0x86, 0x12, 0xae, 0x9f, + 0xdc, 0x81, 0xba, 0xc7, 0x84, 0x1b, 0xf9, 0x63, 0xb5, 0x36, 0x33, 0x70, 0x96, 0x44, 0xde, 0x02, + 0x10, 0xf1, 0x70, 0xc8, 0x04, 0x0a, 0xe4, 0x51, 0x20, 0x43, 0x21, 0xeb, 0x50, 0x0a, 0x9c, 0x33, + 0x96, 0xe8, 0x5b, 0x37, 0xee, 0xfe, 0xe7, 0x11, 0x34, 0xa6, 0xfe, 0x99, 0x34, 0x21, 0xef, 0x7b, + 0x66, 0x82, 0xbc, 0x8f, 0x9b, 0x35, 0x8e, 0xf8, 0x33, 0xe6, 0x4a, 0xdb, 0xf7, 0xcc, 0xb8, 0x35, + 0x43, 0x39, 0xf0, 0xc8, 0x43, 0x28, 0x0b, 0xe9, 0xc8, 0x58, 0xe0, 0xb8, 0xcd, 0xed, 0xdb, 0x8b, + 0x55, 0xb9, 0xd5, 0x47, 0x21, 0x6a, 0x84, 0xc9, 0x87, 0xb0, 0xaa, 0x8d, 0x3a, 0xfb, 0x57, 0x7a, + 0xab, 0xdb, 0xc8, 0xd8, 0xcb, 0xfc, 0xda, 0x3a, 0x94, 0x58, 0x14, 0xf1, 0xa8, 0x53, 0xd2, 0x4b, + 0xc7, 0x06, 0x79, 0x04, 0xe0, 0x46, 0xcc, 0x91, 0xcc, 0xb3, 0x1d, 0xd9, 0x29, 0x1b, 0xb5, 0x6a, + 0xab, 0xdf, 0x4a, 0xac, 0x7e, 0x6b, 0x90, 0x58, 0x3d, 0xad, 0x19, 0xe9, 0x1d, 0x49, 0xb6, 0xa0, + 0xf8, 0x8c, 0x9f, 0x89, 0x4e, 0x05, 0x77, 0xdf, 0x5a, 0xb2, 0xe4, 0x27, 0xfc, 0x8c, 0xa2, 0x9c, + 0xd2, 0x81, 0x5e, 0x6d, 0xe8, 0x8c, 0x58, 0xa7, 0xa6, 0x75, 0x80, 0x94, 0x63, 0x67, 0xc4, 0xc8, + 0xe7, 0xd0, 0x14, 0x2e, 0x0b, 0x9d, 0xc8, 0xe7, 0xf6, 0x30, 0xe2, 0xf1, 0xb8, 0x03, 0xb8, 0x9a, + 0xcd, 0xc9, 0xc0, 0x86, 0xfd, 0x58, 0x71, 0x69, 0x43, 0x64, 0x9b, 0xe4, 0x21, 0x54, 0x59, 0xe8, + 0xe9, 0xdf, 0xa8, 0x5f, 0xf9, 0x1b, 0x15, 0x94, 0xdd, 0x91, 0xe4, 0x0d, 0xa8, 0x3d, 0xe3, 0x67, + 0xb6, 0xcb, 0xe3, 0x50, 0x76, 0x56, 0x10, 0x60, 0xd5, 0x67, 0xfc, 0x6c, 0x57, 0xb5, 0xc9, 0x3b, + 0xb0, 0xa2, 0x41, 0x68, 0xf8, 0x0d, 0xe4, 0xd7, 0x35, 0x2d, 0x15, 0xd1, 0x78, 0x34, 0x22, 0x4d, + 0x2d, 0xa2, 0x69, 0x5a, 0xe4, 0x87, 0xd0, 0x0a, 0xe3, 0x51, 0xc6, 0x4f, 0x89, 0x4e, 0x0b, 0xa5, + 0x9a, 0x61, 0x3c, 0x9a, 0x28, 0x4b, 0x90, 0x6d, 0x28, 0xc5, 0xc2, 0x19, 0xb2, 0x4e, 0x1b, 0xd7, + 0xff, 0xe6, 0x12, 0x8d, 0x9e, 0x2a, 0x19, 0xaa, 0x45, 0x95, 0x49, 0xbb, 0x3c, 0x74, 0xe3, 0x28, + 0x62, 0xa1, 0x7b, 0xd1, 0x59, 0xd5, 0xd3, 0x67, 0x48, 0xe4, 0x43, 0x28, 0x2a, 0x07, 0xd4, 0x21, + 0x68, 0x59, 0x37, 0x17, 0x0c, 0x7a, 0xc4, 0x3d, 0x46, 0x51, 0x88, 0x7c, 0x06, 0x95, 0x11, 0x93, + 0x91, 0xef, 0x8a, 0xce, 0x1a, 0x2e, 0xe2, 0x9d, 0x25, 0x8b, 0xa0, 0x71, 0x78, 0xa4, 0x05, 0x69, + 0xd2, 0x43, 0xe9, 0x42, 0x68, 0xb0, 0xdb, 0xbf, 0x12, 0xd2, 0xeb, 0xac, 0xdf, 0xc9, 0xdd, 0x5b, + 0xa1, 0x75, 0x43, 0xfb, 0x5a, 0x48, 0x8f, 0xbc, 0x07, 0x75, 0xf4, 0x21, 0x46, 0x5b, 0x1b, 0x6a, + 0xb9, 0xbd, 0x1b, 0x14, 0x90, 0x88, 0xea, 0xfa, 0x36, 0x97, 0x23, 0x5b, 0x90, 0x77, 0xfd, 0xce, + 0x26, 0x2e, 0xe0, 0xd6, 0x92, 0x05, 0xec, 0x1e, 0xf4, 0x72, 0x34, 0xef, 0xfa, 0x4a, 0xbe, 0x03, + 0x15, 0xe1, 0x8c, 0xc6, 0x01, 0x13, 0x9d, 0x9b, 0xa8, 0x80, 0xa4, 0x49, 0xee, 0x40, 0x4d, 0xed, + 0x96, 0x1d, 0x39, 0x92, 0x75, 0x3a, 0x77, 0x72, 0xf7, 0x72, 0xbd, 0x3c, 0xad, 0x2a, 0x12, 0x75, + 0x24, 0xfb, 0x36, 0x97, 0xb3, 0xfe, 0xaa, 0x0c, 0x85, 0x27, 0xfc, 0x6c, 0x0e, 0xb1, 0x8f, 0x52, + 0x48, 0xe6, 0x51, 0x71, 0xef, 0x2c, 0xb7, 0xef, 0x59, 0x58, 0xde, 0x85, 0x15, 0x3f, 0x14, 0x32, + 0x8a, 0x5d, 0xbd, 0xdb, 0xda, 0x57, 0x4c, 0xd1, 0x26, 0x68, 0x2c, 0x66, 0xd1, 0xf8, 0x63, 0x20, + 0x1a, 0x22, 0xec, 0xd5, 0x98, 0xb9, 0xd2, 0x58, 0x8b, 0x06, 0xac, 0x86, 0xfa, 0x7e, 0x86, 0x31, + 0xf1, 0x46, 0xe5, 0x8c, 0x37, 0x22, 0x04, 0x8a, 0xd2, 0x19, 0x6a, 0x5c, 0xd6, 0x28, 0x7e, 0x2b, + 0x33, 0x8f, 0x38, 0x1f, 0x69, 0xe8, 0x55, 0x51, 0xba, 0xaa, 0x08, 0x88, 0xbc, 0x47, 0x00, 0x42, + 0x3a, 0x91, 0xf1, 0x01, 0x70, 0xb5, 0x0f, 0x30, 0xd2, 0x3b, 0xf2, 0x77, 0x45, 0xdd, 0x4d, 0xa8, + 0xe0, 0x72, 0x7c, 0x0f, 0x31, 0x57, 0xa3, 0x65, 0xd5, 0x3c, 0xf0, 0xc8, 0x4f, 0x13, 0x08, 0x34, + 0x70, 0xb0, 0x3b, 0x97, 0x28, 0x7d, 0x0a, 0x06, 0x19, 0xbb, 0x6d, 0x5e, 0x6a, 0xb7, 0x4f, 0xf8, + 0xd9, 0x9c, 0xdd, 0xbe, 0x0d, 0xf5, 0xd4, 0xf3, 0xf8, 0x1e, 0x82, 0x53, 0x79, 0x7d, 0x43, 0x3a, + 0xc0, 0x10, 0xac, 0x0d, 0x0a, 0x91, 0x59, 0xa2, 0xa6, 0x65, 0xfd, 0x12, 0x4a, 0xb8, 0x0a, 0x72, + 0x0f, 0xda, 0x2a, 0xe8, 0xd8, 0x32, 0x8e, 0x42, 0x61, 0x6c, 0x5b, 0x47, 0xf1, 0xa6, 0xa2, 0x0f, + 0x14, 0x59, 0x3b, 0x83, 0x0f, 0x60, 0xd5, 0x89, 0x3d, 0x9f, 0x4f, 0x89, 0xea, 0xc0, 0xde, 0x42, + 0xc6, 0x44, 0xf6, 0x2e, 0x87, 0xb2, 0xb6, 0x2c, 0x42, 0xa0, 0xd9, 0x1f, 0xec, 0x0c, 0x4e, 0xfb, + 0xf6, 0xc9, 0xfe, 0xf1, 0xde, 0xc1, 0xf1, 0xe3, 0xf6, 0x8d, 0x0c, 0x8d, 0x9e, 0x1e, 0x1f, 0x2b, + 0x5a, 0x8e, 0xac, 0x43, 0xdb, 0xd0, 0x76, 0xbf, 0x3c, 0x3a, 0x39, 0xdc, 0x1f, 0xec, 0xef, 0xb5, + 0xf3, 0x64, 0x15, 0x1a, 0x86, 0xfa, 0xc5, 0xce, 0xc1, 0xe1, 0xfe, 0x5e, 0xbb, 0x90, 0x15, 0xdc, + 0x39, 0xde, 0xdd, 0x3f, 0x54, 0xd4, 0xe2, 0x93, 0x62, 0xb5, 0xd6, 0x06, 0xeb, 0xef, 0xdf, 0x07, + 0x98, 0xa8, 0x89, 0x7c, 0x04, 0x2d, 0xe9, 0x88, 0xe7, 0xb6, 0xcb, 0xd5, 0x3f, 0x63, 0x88, 0x51, + 0x06, 0x9d, 0xef, 0xdd, 0xa0, 0x4d, 0xc5, 0xd8, 0x4d, 0xe9, 0x0a, 0x8a, 0xf7, 0xa0, 0xc1, 0x5f, + 0xb0, 0xc8, 0x09, 0x02, 0x5b, 0xb8, 0x3c, 0x62, 0xe8, 0x04, 0xf2, 0xbd, 0x1c, 0x5d, 0x31, 0xe4, + 0xbe, 0xa2, 0x2a, 0xc9, 0x4f, 0xa0, 0x20, 0xa4, 0x44, 0xfb, 0xaf, 0x6f, 0xbf, 0x7f, 0xe5, 0x76, + 0x6d, 0xf5, 0x07, 0x03, 0xaa, 0x7a, 0xa8, 0x8e, 0x41, 0x30, 0x42, 0x54, 0x5c, 0xab, 0xe3, 0xe1, + 0xe1, 0x11, 0x55, 0x3d, 0x54, 0x47, 0x29, 0x85, 0x09, 0x72, 0xd7, 0xe8, 0x38, 0x18, 0xf4, 0xa9, + 0xea, 0x41, 0x28, 0xac, 0xb8, 0x3c, 0x7c, 0xc1, 0x22, 0x81, 0x62, 0x9d, 0x0a, 0x8e, 0xb0, 0x75, + 0xf5, 0x08, 0xbb, 0x99, 0x5e, 0x74, 0x6a, 0x0c, 0xf2, 0x33, 0x28, 0xa1, 0x09, 0x74, 0x6a, 0x18, + 0x3e, 0x7f, 0x70, 0x8d, 0xe5, 0xc4, 0x51, 0x48, 0x75, 0x27, 0x65, 0xb2, 0xcf, 0x62, 0x6f, 0xc8, + 0x74, 0x6e, 0x89, 0x98, 0xad, 0x51, 0x40, 0x92, 0xf2, 0xe6, 0x01, 0xf9, 0x08, 0xc8, 0xb9, 0x23, + 0xec, 0x88, 0x8d, 0xb8, 0x64, 0x49, 0xd2, 0x8b, 0x60, 0xab, 0xd2, 0xf6, 0xb9, 0x23, 0x28, 0x32, + 0xfa, 0x9a, 0x4e, 0x3e, 0x80, 0xbc, 0x7c, 0x60, 0x30, 0x77, 0x19, 0x80, 0xf3, 0xf2, 0x01, 0x79, + 0x5f, 0x47, 0x1c, 0x5f, 0xb0, 0x90, 0x09, 0x0d, 0xb7, 0x7c, 0x2f, 0x4f, 0xb3, 0x44, 0xb5, 0xbd, + 0x8f, 0x60, 0x33, 0x0e, 0x43, 0xe6, 0x32, 0x21, 0x54, 0x40, 0x90, 0x9c, 0x07, 0xb6, 0xeb, 0x04, + 0x81, 0x0e, 0x7e, 0xd5, 0x5e, 0x81, 0xae, 0x67, 0xf8, 0x03, 0xce, 0x83, 0x5d, 0xc5, 0xd5, 0xee, + 0xbf, 0xed, 0x87, 0x4f, 0x79, 0x34, 0x42, 0x2d, 0xd8, 0x01, 0x17, 0x02, 0x81, 0x57, 0xed, 0x15, + 0x69, 0x2b, 0xc3, 0x39, 0xe4, 0x7a, 0xaa, 0x9f, 0xc2, 0x7a, 0xc4, 0xbc, 0x38, 0xf4, 0x1c, 0x95, + 0xdf, 0x4b, 0x47, 0xb2, 0x11, 0x0b, 0xa5, 0xc0, 0x60, 0x58, 0xed, 0x95, 0xe8, 0x5a, 0xca, 0xed, + 0xa7, 0x4c, 0x6d, 0x81, 0x1b, 0x63, 0xce, 0x23, 0xfb, 0x9b, 0x58, 0x67, 0x77, 0xf6, 0x37, 0xb1, + 0x13, 0xf8, 0xf2, 0x02, 0x43, 0x65, 0xb5, 0x57, 0xa6, 0x6b, 0x8a, 0xfd, 0x95, 0xe1, 0x7e, 0xa5, + 0x99, 0xaa, 0xe3, 0xcf, 0xa1, 0x93, 0xdd, 0x4b, 0x7b, 0x1c, 0xf1, 0x61, 0x64, 0x54, 0xbc, 0x86, + 0xfa, 0xa8, 0xd0, 0x9b, 0x59, 0x89, 0x93, 0x89, 0x80, 0x8a, 0x39, 0x7f, 0x53, 0x86, 0x42, 0x7f, + 0x30, 0x20, 0x1b, 0x50, 0x78, 0xc9, 0x22, 0xf4, 0x14, 0x0a, 0x4e, 0xaa, 0xa1, 0x86, 0xbf, 0x05, + 0xa5, 0x97, 0x3c, 0xf2, 0x74, 0xe4, 0x69, 0xf4, 0x72, 0x54, 0x37, 0x15, 0xeb, 0x3d, 0xa8, 0xab, + 0x6f, 0x1b, 0xc3, 0x85, 0x8e, 0x2c, 0x8d, 0x5e, 0x9e, 0x82, 0x22, 0xee, 0x23, 0x4d, 0x49, 0x6d, + 0x40, 0xc1, 0x65, 0x3a, 0xb4, 0xe4, 0x7b, 0x05, 0xaa, 0x1a, 0x66, 0x5c, 0xf7, 0xdc, 0x89, 0x04, + 0xe6, 0x5e, 0x8d, 0x5e, 0x91, 0xea, 0xa6, 0x19, 0x57, 0x7d, 0x27, 0xe3, 0x02, 0x0a, 0x94, 0x28, + 0x28, 0xe2, 0x64, 0xdc, 0xf7, 0x61, 0x45, 0x48, 0x95, 0x6d, 0x06, 0xce, 0x85, 0x3d, 0x12, 0x18, + 0x48, 0x1a, 0xbd, 0x32, 0x05, 0x21, 0xe5, 0x9e, 0x22, 0x1e, 0xa1, 0xd8, 0x36, 0x10, 0x16, 0x4a, + 0x5f, 0x5e, 0xd8, 0x11, 0x73, 0xf9, 0x30, 0xf4, 0x11, 0x34, 0x75, 0xa3, 0x98, 0x55, 0xcd, 0xa3, + 0x13, 0x96, 0xd9, 0x73, 0xa4, 0xfb, 0x4c, 0xd8, 0xb1, 0x94, 0x2c, 0x62, 0x3a, 0x34, 0x34, 0x7a, + 0x55, 0xda, 0x4a, 0x38, 0xa7, 0x9a, 0xa1, 0xe4, 0x3f, 0x86, 0xb5, 0x54, 0xde, 0xcc, 0xf2, 0x2b, + 0xe6, 0xa1, 0x09, 0x37, 0x7a, 0x35, 0x4a, 0x12, 0x26, 0x4d, 0x79, 0xc6, 0x3b, 0x4d, 0x56, 0xe6, + 0x04, 0x81, 0xb1, 0x5e, 0xa0, 0x2b, 0xe9, 0xa2, 0x9c, 0x20, 0x50, 0x92, 0x7f, 0x00, 0xb7, 0xd2, + 0xf1, 0x1d, 0xf7, 0x9b, 0xd8, 0x8f, 0x98, 0x97, 0x2e, 0xac, 0x85, 0xb3, 0xd4, 0xe9, 0xcd, 0x44, + 0x64, 0xc7, 0x48, 0x64, 0x16, 0xb8, 0x0f, 0x6f, 0xce, 0x0f, 0x90, 0x59, 0x69, 0x1b, 0xc7, 0x58, + 0xa1, 0xd6, 0xec, 0x18, 0x53, 0x2b, 0xee, 0x96, 0xa1, 0x68, 0xbf, 0x64, 0x51, 0xb7, 0x0a, 0x65, + 0x1b, 0xad, 0xa0, 0xdb, 0x84, 0x15, 0x3b, 0x63, 0x03, 0x28, 0xe1, 0x1a, 0x09, 0xdc, 0x4f, 0x94, + 0xc8, 0xec, 0x66, 0xb7, 0x05, 0x0d, 0x3b, 0xbb, 0x6f, 0xdd, 0x0d, 0x58, 0xb3, 0xe7, 0x77, 0xa8, + 0xbb, 0x06, 0xab, 0xf6, 0xec, 0x26, 0x74, 0x37, 0x61, 0xdd, 0x5e, 0xa0, 0xe9, 0x6e, 0x1b, 0x9a, + 0xf6, 0x94, 0x2e, 0xbb, 0x6f, 0x82, 0x65, 0x2f, 0xd5, 0x59, 0xf7, 0x6d, 0xb8, 0x6d, 0x5f, 0xa6, + 0x10, 0xeb, 0x37, 0x39, 0x28, 0x1c, 0x1e, 0x1e, 0x91, 0x37, 0xa1, 0x22, 0xe5, 0x53, 0xa9, 0xec, + 0x2b, 0x87, 0x3a, 0xba, 0x41, 0xcb, 0x8a, 0xa0, 0x6d, 0x4b, 0x73, 0x85, 0xe2, 0x26, 0xe8, 0x50, + 0x5c, 0xa1, 0xb9, 0xf7, 0x61, 0x55, 0xf2, 0xe7, 0x2c, 0x14, 0xf6, 0x98, 0x45, 0xb6, 0x60, 0x2e, + 0x0f, 0x3d, 0x13, 0xad, 0xf2, 0xb4, 0xa5, 0x59, 0x27, 0x2c, 0xea, 0x23, 0x43, 0xa9, 0x17, 0xa0, + 0x6a, 0x9b, 0xd9, 0x92, 0x6f, 0x35, 0x76, 0x77, 0x1d, 0x88, 0x3d, 0x37, 0x92, 0xf5, 0xeb, 0x32, + 0x14, 0x06, 0x83, 0xbe, 0x59, 0xc4, 0xd9, 0x64, 0x11, 0x7a, 0x89, 0x67, 0x47, 0x09, 0xfa, 0x14, + 0xaa, 0x0b, 0x26, 0xf0, 0xcd, 0xa1, 0xba, 0x62, 0x40, 0xbb, 0x14, 0xd5, 0x1a, 0x56, 0x85, 0x25, + 0xa8, 0xae, 0xe1, 0xb8, 0xc5, 0x79, 0x54, 0x27, 0xa0, 0x5d, 0x8a, 0xea, 0x7a, 0x02, 0xd7, 0x69, + 0x54, 0x2f, 0x86, 0x6b, 0xf3, 0xb5, 0xe1, 0xda, 0x7a, 0x7d, 0xb8, 0xb6, 0x5f, 0x13, 0xae, 0xab, + 0xbf, 0x13, 0x5c, 0xc9, 0x77, 0x00, 0xd7, 0xb5, 0xeb, 0xc1, 0xd5, 0xd8, 0x90, 0x32, 0x8d, 0xef, + 0x04, 0xba, 0xff, 0x27, 0x91, 0xfa, 0x3f, 0x15, 0x58, 0xc9, 0x66, 0x36, 0x08, 0xbb, 0x38, 0x0a, + 0x6d, 0xe9, 0x3c, 0xf7, 0xc3, 0xa1, 0x49, 0xfc, 0x92, 0xa8, 0xd6, 0x52, 0xac, 0x01, 0x72, 0xd2, + 0xdc, 0xef, 0x33, 0xe8, 0x9c, 0x33, 0x47, 0x29, 0x62, 0x9b, 0xd9, 0x81, 0x23, 0xd5, 0x41, 0xd5, + 0x1e, 0x3f, 0x7c, 0x90, 0x20, 0xaa, 0xd4, 0xcb, 0xd1, 0x75, 0x94, 0xd8, 0xdf, 0x66, 0x87, 0x9a, + 0x7f, 0xf2, 0xf0, 0x81, 0xc6, 0xd7, 0xe2, 0xce, 0x8f, 0x1e, 0xaa, 0xce, 0x05, 0xec, 0x9c, 0x9f, + 0xef, 0xfc, 0xe8, 0xe1, 0xa5, 0x9d, 0x1f, 0xa9, 0xce, 0x45, 0xec, 0x5c, 0x58, 0xd0, 0xf9, 0x91, + 0xee, 0xfc, 0x11, 0xb4, 0xa5, 0x3f, 0x62, 0xb6, 0xe4, 0xf6, 0x85, 0xcf, 0x02, 0x4f, 0x75, 0x2a, + 0x99, 0x58, 0xda, 0x50, 0x9c, 0x01, 0xff, 0x85, 0xa2, 0x27, 0x53, 0xdd, 0x64, 0x5c, 0xda, 0x23, + 0x5f, 0x8c, 0x23, 0xe6, 0xf9, 0x78, 0xf0, 0x33, 0x09, 0x7f, 0xd9, 0x40, 0x75, 0x83, 0x71, 0x79, + 0x94, 0xe5, 0xa7, 0x47, 0x60, 0x93, 0x47, 0x07, 0xce, 0xd8, 0xc6, 0x0b, 0x49, 0xf4, 0x1a, 0xf9, + 0x5e, 0x59, 0xe7, 0xd1, 0x81, 0x33, 0xa6, 0x8a, 0x6a, 0x7c, 0x5e, 0x22, 0x29, 0xc6, 0x8c, 0xb9, + 0xe7, 0x93, 0xc8, 0x5c, 0xa1, 0x2d, 0xc3, 0xea, 0x23, 0x47, 0xaf, 0xeb, 0x43, 0x68, 0x49, 0x2e, + 0x9d, 0x20, 0x23, 0x5e, 0x33, 0xd0, 0x6d, 0x20, 0x23, 0x2b, 0xfc, 0x09, 0x6c, 0x38, 0x2f, 0x9f, + 0xbf, 0x54, 0x1a, 0x13, 0x7e, 0xc0, 0x42, 0x37, 0x39, 0xba, 0xd7, 0x0d, 0x74, 0xd7, 0x0c, 0xbb, + 0xaf, 0xb9, 0x99, 0x33, 0x7c, 0x3b, 0x0e, 0x9d, 0x50, 0xbc, 0x54, 0x36, 0xa5, 0x4f, 0x3b, 0x26, + 0xa0, 0x03, 0x6d, 0x4d, 0x38, 0x78, 0xdc, 0x51, 0xf2, 0x9f, 0x43, 0xe7, 0xa9, 0x13, 0x08, 0x66, + 0xfb, 0xa1, 0x64, 0x51, 0x14, 0x8f, 0x33, 0xea, 0x6a, 0x18, 0x00, 0x6f, 0xa2, 0xc4, 0x41, 0x46, + 0x20, 0x9d, 0xee, 0x47, 0xd0, 0xcc, 0xee, 0xe8, 0x48, 0x18, 0x77, 0xb4, 0x42, 0x57, 0x58, 0xba, + 0x91, 0xf8, 0x4b, 0xda, 0xb7, 0xcf, 0x9a, 0x6b, 0xf7, 0x0d, 0xb8, 0x65, 0x2f, 0xb3, 0xc9, 0x65, + 0x4c, 0xb4, 0xb9, 0xa5, 0x4c, 0x65, 0x53, 0x88, 0xd4, 0x59, 0x9b, 0xe9, 0x5a, 0xd0, 0xb1, 0x97, + 0x98, 0x06, 0xa2, 0x75, 0x6a, 0xe7, 0x71, 0xbd, 0x73, 0x3b, 0xdc, 0x25, 0xd0, 0xb6, 0x67, 0xb6, + 0xb1, 0xdb, 0x81, 0x4d, 0x7b, 0xe1, 0x6e, 0xe1, 0x32, 0x66, 0xb7, 0x03, 0x17, 0xbe, 0x4c, 0xe7, + 0xdd, 0x55, 0x68, 0xd9, 0xd3, 0x1a, 0xb5, 0x7e, 0x5b, 0x81, 0xa2, 0xda, 0x2f, 0xb2, 0x0e, 0x25, + 0x3f, 0xf4, 0xd8, 0x2b, 0x1d, 0xa0, 0xa9, 0x6e, 0x90, 0x0f, 0xa1, 0x18, 0xf1, 0x80, 0x99, 0xfb, + 0x92, 0x9b, 0x0b, 0xee, 0x66, 0x29, 0x0f, 0x18, 0x45, 0x21, 0xf2, 0x16, 0x54, 0xf1, 0x16, 0x21, + 0x01, 0xad, 0x8a, 0xa1, 0x15, 0xa4, 0x68, 0xbb, 0xb3, 0xa0, 0xcc, 0x42, 0x2f, 0x41, 0x25, 0x26, + 0xc1, 0x2c, 0x34, 0xc0, 0x9a, 0x4d, 0x43, 0x4b, 0x49, 0x16, 0x3c, 0x9d, 0x86, 0xbe, 0x0b, 0xf5, + 0x20, 0x18, 0x25, 0xe1, 0xdd, 0x60, 0xae, 0x40, 0x6b, 0x41, 0x30, 0x1a, 0xa4, 0xf9, 0xc4, 0x44, + 0x08, 0x73, 0x8a, 0x8a, 0x41, 0xb3, 0x11, 0x12, 0x69, 0xd2, 0x81, 0x42, 0x63, 0x0d, 0xac, 0x7c, + 0xaf, 0x44, 0xcb, 0x4a, 0x60, 0x9c, 0x0c, 0x21, 0xa5, 0x48, 0xdc, 0xbe, 0xc1, 0x52, 0x99, 0xd6, + 0xa4, 0x14, 0x83, 0x34, 0x29, 0x98, 0xb7, 0x4f, 0x30, 0x10, 0x9d, 0xb5, 0x4f, 0xf2, 0x31, 0xac, + 0xcf, 0x9b, 0xd3, 0x48, 0x87, 0xef, 0x52, 0xaf, 0x4a, 0x57, 0x67, 0xdc, 0xd3, 0x72, 0xdf, 0xb4, + 0x62, 0x30, 0x3a, 0xef, 0x9b, 0x16, 0x7a, 0xec, 0x86, 0x89, 0xae, 0x8b, 0x3c, 0xf6, 0xc2, 0x53, + 0x5f, 0x7d, 0xee, 0xd4, 0xf7, 0x00, 0x56, 0xe7, 0x0c, 0xdb, 0x1c, 0xf8, 0x56, 0x68, 0x7b, 0xd6, + 0xdb, 0xe9, 0x75, 0xb7, 0x66, 0x4c, 0xd6, 0x9c, 0xf5, 0x1a, 0xb4, 0x39, 0xed, 0x5a, 0xb4, 0xae, + 0x61, 0x62, 0xc6, 0xe6, 0x80, 0xd7, 0xa4, 0x19, 0x9a, 0x02, 0x78, 0x1d, 0x6a, 0x76, 0x62, 0x5c, + 0xdd, 0x1a, 0x54, 0x6c, 0x6d, 0x49, 0xf3, 0x79, 0xb0, 0x8a, 0xb6, 0x19, 0x13, 0xc9, 0xb6, 0x45, + 0x92, 0x11, 0x9a, 0x8d, 0x47, 0x5e, 0x66, 0x9b, 0x17, 0xe0, 0xa3, 0x7b, 0x13, 0x36, 0xec, 0x45, + 0x3b, 0xb7, 0xd8, 0x09, 0x2c, 0x76, 0x43, 0x98, 0x00, 0x4c, 0x74, 0x8a, 0x52, 0x73, 0x1a, 0x45, + 0xf0, 0xcf, 0x68, 0xad, 0xdb, 0x80, 0x7a, 0x06, 0xe2, 0xda, 0x3f, 0x4c, 0xdf, 0xdb, 0xa4, 0xbe, + 0x25, 0xbd, 0x9d, 0x99, 0x9b, 0xee, 0x16, 0xdc, 0xb4, 0x17, 0x1f, 0xdb, 0xf1, 0x27, 0x66, 0x8f, + 0xe5, 0xf8, 0xcb, 0x8b, 0xce, 0xde, 0xe8, 0x8a, 0x16, 0x1e, 0xae, 0xd1, 0xeb, 0x2c, 0x3b, 0x3d, + 0x3f, 0x29, 0x56, 0x73, 0xed, 0xfc, 0x93, 0x62, 0x35, 0xdf, 0x2e, 0xd0, 0xa6, 0xe3, 0xba, 0x71, + 0xe4, 0xb8, 0x17, 0x7a, 0xad, 0xb4, 0xcd, 0x5e, 0x8d, 0x59, 0xe4, 0xa3, 0x57, 0x43, 0x8a, 0xf5, + 0x1f, 0x45, 0x80, 0xc9, 0x45, 0x34, 0xf9, 0x3d, 0x20, 0xe9, 0x3d, 0xde, 0xe4, 0xd6, 0x37, 0xb9, + 0xac, 0x6a, 0x27, 0xbc, 0x93, 0xc9, 0xed, 0xef, 0xfc, 0x75, 0x15, 0xfc, 0xff, 0x75, 0xd5, 0xc2, + 0xeb, 0xaa, 0x19, 0xfc, 0x57, 0x97, 0xdc, 0xfa, 0x5c, 0x76, 0x33, 0x52, 0x33, 0xd7, 0x11, 0x97, + 0xdc, 0x8c, 0x60, 0xbe, 0x3b, 0xbf, 0x87, 0xd7, 0x30, 0xdc, 0xef, 0xd0, 0xaa, 0xfe, 0x36, 0x07, + 0xf9, 0xdd, 0x03, 0x62, 0x41, 0x75, 0x1c, 0xf1, 0x17, 0xbe, 0x67, 0x6e, 0x68, 0x6a, 0x34, 0x6d, + 0x93, 0xdb, 0x00, 0x2e, 0x1f, 0x8d, 0x7c, 0x69, 0x8b, 0x73, 0x27, 0x29, 0xe7, 0x69, 0x4a, 0xff, + 0xdc, 0x21, 0x6d, 0x28, 0x44, 0xec, 0xa9, 0xb9, 0xf7, 0x57, 0x9f, 0x58, 0x49, 0x8a, 0x83, 0xc0, + 0x8e, 0x18, 0xe2, 0xc1, 0xdc, 0xfa, 0xd7, 0x15, 0x8d, 0x6a, 0x12, 0xde, 0x89, 0xc7, 0xa1, 0x1d, + 0x47, 0x81, 0xb9, 0xf0, 0x2f, 0x47, 0x71, 0x78, 0x1a, 0x05, 0x2a, 0xda, 0x3a, 0xae, 0xe4, 0x51, + 0x72, 0xcb, 0x8f, 0x0d, 0xeb, 0x2f, 0xca, 0x50, 0xde, 0xc5, 0x5a, 0x9c, 0xf5, 0xdf, 0x45, 0xa8, + 0x24, 0xa3, 0x4c, 0x17, 0x1a, 0x73, 0xb3, 0x85, 0xc6, 0xe9, 0x1a, 0x5c, 0x7e, 0xb6, 0x06, 0xb7, + 0xa0, 0x54, 0x55, 0x5c, 0x58, 0xaa, 0xda, 0x84, 0x72, 0xc4, 0x86, 0x6a, 0x57, 0xcb, 0x66, 0xad, + 0xd8, 0x22, 0xdd, 0xb9, 0x22, 0x5e, 0xe5, 0xb2, 0x22, 0x5e, 0xef, 0xc6, 0x4c, 0x19, 0x2f, 0x13, + 0x6a, 0x92, 0x92, 0x56, 0xd5, 0x9c, 0x07, 0xb2, 0x44, 0x9d, 0xc6, 0xea, 0xba, 0x56, 0xed, 0x3a, + 0x75, 0xad, 0x1f, 0x41, 0xfb, 0xcc, 0x71, 0x9f, 0xab, 0x25, 0x85, 0x9e, 0x1d, 0x72, 0x5f, 0x68, + 0xa8, 0x57, 0x69, 0x6b, 0x42, 0x3f, 0x56, 0x64, 0xf2, 0x31, 0x6c, 0x06, 0xfc, 0x65, 0xe2, 0xae, + 0xec, 0x91, 0xef, 0x46, 0x7c, 0x7c, 0xce, 0x43, 0x86, 0x01, 0xb8, 0x4a, 0xd7, 0x03, 0xfe, 0xd2, + 0xdc, 0x05, 0x1e, 0xa5, 0x3c, 0xf2, 0x36, 0xd4, 0xc7, 0x8e, 0xfb, 0x9c, 0x49, 0x7d, 0x5d, 0xa9, + 0x2f, 0x5a, 0x41, 0x93, 0x0e, 0xb9, 0x10, 0xa6, 0xa6, 0xd5, 0xb8, 0xaa, 0xa6, 0x95, 0x4f, 0x6a, + 0x5a, 0xb7, 0x27, 0x35, 0xad, 0xa6, 0x39, 0x97, 0x24, 0x04, 0xc5, 0x9e, 0x2a, 0x6c, 0xb5, 0xb0, + 0xb0, 0x55, 0x9c, 0x2a, 0x6c, 0x61, 0x80, 0x9a, 0xde, 0x8b, 0x14, 0x34, 0x46, 0x8b, 0xdd, 0x12, + 0x14, 0x6c, 0xd7, 0xc7, 0x30, 0x67, 0x86, 0xee, 0xae, 0x00, 0x4c, 0x70, 0xf7, 0xa4, 0x58, 0x2d, + 0xb4, 0x8b, 0x74, 0xbe, 0xc8, 0x6c, 0xfd, 0x65, 0x0e, 0xaa, 0x94, 0x89, 0x31, 0x0f, 0x05, 0x23, + 0x1f, 0xc0, 0xea, 0xc4, 0x62, 0x6c, 0x65, 0xc4, 0xa9, 0xe9, 0xb5, 0x44, 0xf6, 0x07, 0x0f, 0x3c, + 0xd2, 0x87, 0xcd, 0x71, 0xc4, 0x84, 0x3f, 0x0c, 0x99, 0x67, 0x8f, 0xb9, 0x90, 0x29, 0x24, 0x74, + 0x49, 0x7f, 0x52, 0xf9, 0x3e, 0x49, 0xc4, 0x4e, 0xb8, 0x90, 0xc6, 0xbc, 0xe9, 0xfa, 0x78, 0x01, + 0xd5, 0xfa, 0x4d, 0x0e, 0xd6, 0x76, 0x79, 0xf8, 0xd4, 0x8f, 0x46, 0x7d, 0x1e, 0x47, 0x2e, 0x3b, + 0x1d, 0x07, 0xdc, 0xf1, 0xac, 0x3f, 0xbb, 0x36, 0x2e, 0x16, 0xfe, 0x42, 0x7e, 0xf1, 0x2f, 0xfc, + 0x10, 0x5a, 0x2e, 0xf7, 0x98, 0x3a, 0x23, 0x47, 0x17, 0x63, 0xee, 0x87, 0xd2, 0x20, 0xbd, 0xa9, + 0xc8, 0xfb, 0x29, 0xd5, 0x82, 0x89, 0x8e, 0xac, 0xbf, 0xce, 0x41, 0xe1, 0x31, 0x93, 0xd6, 0xe0, + 0xfb, 0x58, 0x92, 0xf5, 0x71, 0x66, 0x37, 0xee, 0x41, 0x21, 0x8a, 0xf5, 0xe3, 0x86, 0x29, 0xdc, + 0x65, 0xbb, 0x50, 0x25, 0x62, 0xfd, 0x6b, 0x11, 0x8a, 0x87, 0xbe, 0x90, 0xd6, 0xbf, 0x14, 0xae, + 0xbd, 0xaa, 0x4f, 0x67, 0xca, 0xa2, 0x97, 0xbf, 0x54, 0xe8, 0xdd, 0x48, 0x8a, 0xa2, 0xca, 0x66, + 0x7f, 0x06, 0x30, 0x76, 0x86, 0x4c, 0x5f, 0xac, 0xa1, 0xce, 0xea, 0xdb, 0x9d, 0xb4, 0xff, 0x40, + 0x51, 0x4f, 0x9c, 0xa1, 0x1f, 0xe2, 0x20, 0xbd, 0x1c, 0xad, 0x29, 0x69, 0x24, 0xeb, 0xd0, 0xa2, + 0xab, 0x94, 0x98, 0x49, 0x99, 0x38, 0x7c, 0x49, 0xad, 0xa2, 0x97, 0x37, 0x75, 0x4a, 0x45, 0x51, + 0xfd, 0x3f, 0xc5, 0x52, 0xa5, 0xee, 0x5d, 0xba, 0xb2, 0x77, 0x01, 0x8b, 0x95, 0x49, 0xdf, 0xbb, + 0x53, 0x6e, 0x13, 0x5d, 0x9e, 0x3a, 0x24, 0xa4, 0x8e, 0x53, 0xa7, 0xbe, 0xda, 0x1f, 0x55, 0x2e, + 0xf5, 0x47, 0xbd, 0x92, 0xf6, 0x48, 0x0a, 0xa1, 0x2a, 0x35, 0xd5, 0xda, 0xc1, 0xe4, 0x6d, 0xa2, + 0x1b, 0x6c, 0x4e, 0x7e, 0x16, 0x13, 0xda, 0x64, 0xed, 0xc8, 0x9b, 0x2c, 0xa6, 0x5b, 0x81, 0x12, + 0x16, 0x81, 0xac, 0x57, 0x53, 0x88, 0x2c, 0x46, 0x71, 0x28, 0x3a, 0x39, 0xac, 0x2d, 0x2d, 0x33, + 0x02, 0x94, 0x21, 0x7f, 0x08, 0xad, 0x90, 0xbd, 0x92, 0x99, 0xe9, 0x0d, 0x14, 0x97, 0x6e, 0x0d, + 0x6d, 0xa8, 0x0e, 0x27, 0xc9, 0xe6, 0x58, 0xff, 0x5c, 0x84, 0x32, 0x1e, 0xc4, 0x85, 0xf5, 0x6f, + 0xf9, 0x6b, 0x5b, 0xd2, 0xa3, 0xa9, 0xfd, 0xcc, 0x5f, 0xb3, 0xea, 0xac, 0xda, 0xa6, 0xea, 0xac, + 0x3b, 0x16, 0xae, 0x55, 0x75, 0xc6, 0x6e, 0x13, 0xdb, 0x2d, 0xbe, 0xb6, 0xed, 0x4e, 0x5b, 0x00, + 0x06, 0x68, 0x65, 0xa1, 0x0b, 0x2d, 0xa0, 0x7c, 0xb9, 0x05, 0xe4, 0x97, 0x5a, 0xc0, 0xa2, 0x6d, + 0xfd, 0xf3, 0xac, 0xa7, 0xfd, 0x39, 0x54, 0xce, 0x62, 0x15, 0x52, 0x92, 0xad, 0x7d, 0x6f, 0x59, + 0x24, 0xc1, 0xed, 0xd8, 0xea, 0xa2, 0x30, 0x4d, 0x3a, 0x29, 0xc5, 0xe1, 0x51, 0xff, 0x85, 0x13, + 0x18, 0x8d, 0xdf, 0x9a, 0x53, 0xdc, 0x9e, 0x79, 0x01, 0x47, 0x53, 0x51, 0xeb, 0x97, 0x50, 0xd6, + 0x23, 0x91, 0xcf, 0x61, 0x45, 0x8f, 0xa5, 0xcd, 0xd3, 0x78, 0x99, 0xcb, 0xb4, 0x5f, 0xd7, 0xf2, + 0x7d, 0x25, 0xae, 0x52, 0x99, 0x49, 0xc5, 0xbb, 0x48, 0x75, 0xc3, 0x7a, 0x06, 0xe5, 0x5d, 0x27, + 0x74, 0x59, 0xf0, 0x3d, 0x79, 0xc7, 0xac, 0x1f, 0xfe, 0x9e, 0x4b, 0xf6, 0x7f, 0x97, 0x4b, 0x6b, + 0xf6, 0xb7, 0x60, 0x63, 0xba, 0x66, 0x6f, 0x9f, 0x9e, 0x1c, 0x7e, 0xb9, 0xb3, 0xd7, 0xbe, 0x41, + 0x36, 0x60, 0xd5, 0xb0, 0x1e, 0xef, 0x1f, 0xef, 0xd3, 0x9d, 0x81, 0xae, 0xde, 0xcf, 0x57, 0xf4, + 0xf3, 0x64, 0x13, 0x88, 0xa1, 0xf5, 0x4f, 0x8f, 0x8e, 0x76, 0xe8, 0xc1, 0xd7, 0x8a, 0x5e, 0x58, + 0x58, 0xe9, 0x2f, 0xce, 0x57, 0xfa, 0x4b, 0x0b, 0x2b, 0xfd, 0x65, 0xcc, 0x04, 0x32, 0x0f, 0x71, + 0x92, 0x4c, 0x60, 0x36, 0xfa, 0x57, 0xdb, 0x35, 0x5a, 0x31, 0xef, 0x77, 0xee, 0xfe, 0x53, 0x01, + 0xaa, 0x49, 0xf6, 0x36, 0x79, 0x7a, 0x92, 0xcb, 0x3e, 0x3d, 0x99, 0x7d, 0xf9, 0x92, 0x5f, 0xf0, + 0xf2, 0x65, 0xf1, 0x1b, 0x97, 0xc2, 0xb2, 0x37, 0x2e, 0xf7, 0xcd, 0x6b, 0x96, 0x22, 0xda, 0xfb, + 0x1b, 0x73, 0x79, 0xe4, 0xd6, 0xc0, 0x19, 0x0a, 0xfd, 0xa0, 0x50, 0x3f, 0x75, 0xb1, 0xa0, 0x1a, + 0x0b, 0x16, 0x79, 0x8e, 0x74, 0x4c, 0x22, 0x9d, 0xb6, 0xcd, 0x23, 0x9f, 0x72, 0xf2, 0xc8, 0xc7, + 0xfa, 0x87, 0x1c, 0xac, 0xea, 0x24, 0xfa, 0x8b, 0x88, 0x8f, 0x4c, 0x35, 0xdc, 0xfa, 0xc5, 0xb5, + 0xad, 0x30, 0xf3, 0x8e, 0x25, 0x3f, 0xf5, 0x8e, 0x65, 0x92, 0x1f, 0x17, 0xb2, 0xf9, 0xb1, 0xf5, + 0x28, 0x03, 0xe6, 0x1f, 0x43, 0x35, 0xc9, 0xcf, 0x0c, 0x8e, 0x56, 0xe7, 0xfe, 0x8e, 0xa6, 0x22, + 0xd6, 0x27, 0x50, 0x4b, 0x7f, 0x75, 0xc1, 0xd3, 0xc8, 0xf5, 0xec, 0xd3, 0xc8, 0x5a, 0xe6, 0xf9, + 0xe3, 0x5d, 0x0f, 0x1a, 0x53, 0x49, 0x37, 0x21, 0x50, 0x44, 0x2f, 0xa6, 0x7b, 0xe3, 0x37, 0xb9, + 0x0f, 0xb5, 0x64, 0x26, 0xb5, 0x6d, 0x85, 0xc5, 0xab, 0x99, 0xc8, 0x18, 0x55, 0x16, 0x12, 0x55, + 0xde, 0xfd, 0xc7, 0x1c, 0x90, 0x89, 0x0f, 0xda, 0xf3, 0xc5, 0xd8, 0x91, 0xee, 0xf9, 0x6b, 0xe5, + 0x86, 0x1b, 0x50, 0x7e, 0xc6, 0xcf, 0x26, 0xca, 0x2c, 0x3d, 0xe3, 0x67, 0x07, 0xde, 0x94, 0x9e, + 0x0a, 0x57, 0xea, 0x29, 0x3d, 0x17, 0x14, 0xaf, 0x71, 0x2e, 0xf8, 0xe0, 0x29, 0x34, 0xa7, 0xe9, + 0xe4, 0x6d, 0x78, 0xa3, 0x7f, 0x70, 0x74, 0x7a, 0xb8, 0x33, 0x38, 0xf8, 0xf2, 0xd8, 0x3e, 0xfa, + 0x72, 0x6f, 0xdf, 0x3e, 0x3d, 0xee, 0x9f, 0xec, 0xef, 0x1e, 0x7c, 0x71, 0xb0, 0xaf, 0xc0, 0xdb, + 0x81, 0xf5, 0x59, 0x81, 0xc1, 0xfe, 0x9f, 0x0c, 0xda, 0x39, 0x44, 0xfc, 0x0c, 0x67, 0xe7, 0x74, + 0xef, 0xe0, 0xcb, 0x76, 0x7e, 0xfb, 0xd7, 0x65, 0x68, 0xed, 0x28, 0xdb, 0x9e, 0xcc, 0x46, 0x3c, + 0x58, 0xd3, 0xb6, 0x37, 0xfd, 0x74, 0x74, 0xd9, 0x49, 0x5f, 0xcb, 0x6e, 0x25, 0x39, 0xef, 0x0f, + 0xae, 0x12, 0x33, 0x56, 0xf6, 0x6d, 0x0e, 0x6e, 0x27, 0xb9, 0x71, 0x2a, 0x98, 0xcd, 0x92, 0xc9, + 0xf6, 0xd2, 0x18, 0x32, 0x97, 0x51, 0xa7, 0xb3, 0xff, 0xe4, 0xb5, 0xfa, 0x98, 0xa5, 0xfc, 0x29, + 0xb4, 0x1f, 0x33, 0x39, 0xfd, 0xb7, 0x77, 0x97, 0x0c, 0xf4, 0x98, 0xc9, 0x74, 0xb2, 0x77, 0x2f, + 0x95, 0x31, 0x83, 0xdb, 0x40, 0x54, 0x2e, 0x3b, 0x25, 0x21, 0xc8, 0xb2, 0xae, 0x4a, 0x34, 0x1d, + 0xff, 0xbd, 0xcb, 0x85, 0xcc, 0x04, 0x6a, 0xbb, 0x94, 0xaf, 0x9c, 0x99, 0xe1, 0xfd, 0xcb, 0x23, + 0xf0, 0x95, 0xdb, 0x95, 0x88, 0x65, 0x66, 0xc1, 0x58, 0x78, 0x4d, 0xa3, 0x40, 0xd9, 0xab, 0x67, + 0x49, 0xc4, 0xcc, 0x2c, 0x2f, 0xe0, 0x96, 0x31, 0x3d, 0x83, 0x9a, 0x8c, 0xfb, 0x23, 0x1f, 0xce, + 0xfb, 0xd8, 0x39, 0x1f, 0x99, 0xce, 0xf8, 0xd1, 0xf5, 0x84, 0xf5, 0xbc, 0xdd, 0x2f, 0xbe, 0x7e, + 0x77, 0xe8, 0xcb, 0xf3, 0xf8, 0x6c, 0xcb, 0xe5, 0xa3, 0xe4, 0x61, 0xbe, 0x7e, 0x5c, 0xef, 0xf2, + 0x20, 0x21, 0xfc, 0x36, 0xdf, 0x38, 0xf4, 0x5f, 0xb0, 0x3f, 0xc2, 0x43, 0x20, 0x97, 0xfc, 0xbf, + 0xf2, 0x4d, 0xd3, 0xfe, 0xf4, 0x53, 0x24, 0x9c, 0x95, 0xb1, 0xcb, 0x4f, 0xfe, 0x37, 0x00, 0x00, + 0xff, 0xff, 0xe2, 0x6e, 0x13, 0x01, 0x0b, 0x30, 0x00, 0x00, } From c28c656893b1b4aa751c1da48f3513b46a25c626 Mon Sep 17 00:00:00 2001 From: Jason Lernerman Date: Fri, 18 Sep 2026 09:48:47 -0400 Subject: [PATCH 13/14] agent_simulation: fold samples and pass_rate into a Sampling message pass_rate is meaningless without samples > 1, so the two are one decision and a request carrying only one of them is not a state worth representing. Inside Sampling both are plain: 0 samples and a 0 pass rate are naturally invalid, so neither needs a presence bit to stand in for "the caller said nothing". --- .changeset/simulation-repeats.md | 2 +- protobufs/livekit_agent_simulation.proto | 32 +++++++++++++----------- 2 files changed, 19 insertions(+), 15 deletions(-) diff --git a/.changeset/simulation-repeats.md b/.changeset/simulation-repeats.md index 7c5c1adca..52ca8ebf5 100644 --- a/.changeset/simulation-repeats.md +++ b/.changeset/simulation-repeats.md @@ -3,4 +3,4 @@ "@livekit/protocol": patch --- -agent_simulation: repeat scenarios within a run for pass@k / pass^k, and decide a scenario's verdict from a `pass_rate` +agent_simulation: repeat scenarios within a run for pass@k / pass^k, and decide a scenario's verdict from a `Sampling.pass_rate` diff --git a/protobufs/livekit_agent_simulation.proto b/protobufs/livekit_agent_simulation.proto index 89a073677..3d727fad5 100644 --- a/protobufs/livekit_agent_simulation.proto +++ b/protobufs/livekit_agent_simulation.proto @@ -235,6 +235,18 @@ message SimulationRun { string actor = 6; } + // Runs each scenario more than once, so a flaky sample is distinguishable + // from a broken scenario. Both fields are required when it is present. + message Sampling { + // Samples per scenario, > 1. The run holds scenarios × samples jobs, + // subject to the usual job cap. + int32 samples = 1; + // The share of a scenario's samples that must pass for that scenario to + // pass, 0-1. A scenario needs round(rate × samples) of them, so 1 + // requires every sample and 0.67 of 3 requires 2. + double pass_rate = 2; + } + message Create { message Request { reserved 3; // was agent_description (input never consumed; description is derived from source) @@ -260,15 +272,10 @@ message SimulationRun { bool low_quality_microphone = 11; bool packet_loss = 12; optional CI ci = 13; - // Samples per scenario. Requires scenario_group. Absent runs each - // scenario once. The run holds scenarios × samples jobs, subject to - // the usual job cap. - optional int32 samples = 14; - // The share of a scenario's samples that must pass for that scenario to - // pass, 0-1 exclusive of 0. A scenario needs round(rate × samples) of - // them; absent requires every sample. The run fails if any scenario - // fails; pass@k and pass^k report over scenarios and neither gates. - optional double pass_rate = 15; + // Absent runs each scenario once and requires it to pass. Requires + // scenario_group. The run fails if any scenario fails; pass@k and + // pass^k report over scenarios and neither gates. + optional Sampling sampling = 14; } message Response { string simulation_run_id = 1; @@ -390,11 +397,8 @@ message SimulationRun { optional int32 issue_count = 21; // The pipeline this run came from; unset when it did not come from one. optional CI ci = 22; - // Samples per scenario; 1 when run once. - int32 samples = 23; - // The share of a scenario's samples that had to pass for that scenario to - // pass; absent when the run required every sample. - optional double pass_rate = 24; + // Absent when the run ran each scenario once and required it to pass. + optional Sampling sampling = 23; message Usage { int32 text_turns_count = 1; From 34e27aec11ac4841b166502b520f269c93d4f22d Mon Sep 17 00:00:00 2001 From: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 21 Sep 2026 18:08:05 +0000 Subject: [PATCH 14/14] generated protobuf --- livekit/livekit_agent_simulation.pb.go | 505 +++++++++++---------- livekit/livekit_agent_simulation.twirp.go | 508 +++++++++++----------- 2 files changed, 525 insertions(+), 488 deletions(-) diff --git a/livekit/livekit_agent_simulation.pb.go b/livekit/livekit_agent_simulation.pb.go index d08a95090..6dd5b6837 100644 --- a/livekit/livekit_agent_simulation.pb.go +++ b/livekit/livekit_agent_simulation.pb.go @@ -323,11 +323,8 @@ type SimulationRun struct { IssueCount *int32 `protobuf:"varint,21,opt,name=issue_count,json=issueCount,proto3,oneof" json:"issue_count,omitempty"` // The pipeline this run came from; unset when it did not come from one. Ci *SimulationRun_CI `protobuf:"bytes,22,opt,name=ci,proto3,oneof" json:"ci,omitempty"` - // Samples per scenario; 1 when run once. - Samples int32 `protobuf:"varint,23,opt,name=samples,proto3" json:"samples,omitempty"` - // The share of a scenario's samples that had to pass for that scenario to - // pass; absent when the run required every sample. - PassRate *float64 `protobuf:"fixed64,24,opt,name=pass_rate,json=passRate,proto3,oneof" json:"pass_rate,omitempty"` + // Absent when the run ran each scenario once and required it to pass. + Sampling *SimulationRun_Sampling `protobuf:"bytes,23,opt,name=sampling,proto3,oneof" json:"sampling,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } @@ -509,18 +506,11 @@ func (x *SimulationRun) GetCi() *SimulationRun_CI { return nil } -func (x *SimulationRun) GetSamples() int32 { +func (x *SimulationRun) GetSampling() *SimulationRun_Sampling { if x != nil { - return x.Samples + return x.Sampling } - return 0 -} - -func (x *SimulationRun) GetPassRate() float64 { - if x != nil && x.PassRate != nil { - return *x.PassRate - } - return 0 + return nil } // A single scenario, mirroring one entry in a scenarios.yaml file. Scenarios @@ -1324,6 +1314,65 @@ func (x *SimulationRun_CI) GetActor() string { return "" } +// Runs each scenario more than once, so a flaky sample is distinguishable +// from a broken scenario. Both fields are required when it is present. +type SimulationRun_Sampling struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Samples per scenario, > 1. The run holds scenarios × samples jobs, + // subject to the usual job cap. + Samples int32 `protobuf:"varint,1,opt,name=samples,proto3" json:"samples,omitempty"` + // The share of a scenario's samples that must pass for that scenario to + // pass, 0-1. A scenario needs round(rate × samples) of them, so 1 + // requires every sample and 0.67 of 3 requires 2. + PassRate float64 `protobuf:"fixed64,2,opt,name=pass_rate,json=passRate,proto3" json:"pass_rate,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *SimulationRun_Sampling) Reset() { + *x = SimulationRun_Sampling{} + mi := &file_livekit_agent_simulation_proto_msgTypes[11] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *SimulationRun_Sampling) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*SimulationRun_Sampling) ProtoMessage() {} + +func (x *SimulationRun_Sampling) ProtoReflect() protoreflect.Message { + mi := &file_livekit_agent_simulation_proto_msgTypes[11] + if x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use SimulationRun_Sampling.ProtoReflect.Descriptor instead. +func (*SimulationRun_Sampling) Descriptor() ([]byte, []int) { + return file_livekit_agent_simulation_proto_rawDescGZIP(), []int{1, 4} +} + +func (x *SimulationRun_Sampling) GetSamples() int32 { + if x != nil { + return x.Samples + } + return 0 +} + +func (x *SimulationRun_Sampling) GetPassRate() float64 { + if x != nil { + return x.PassRate + } + return 0 +} + type SimulationRun_Create struct { state protoimpl.MessageState `protogen:"open.v1"` unknownFields protoimpl.UnknownFields @@ -1332,7 +1381,7 @@ type SimulationRun_Create struct { func (x *SimulationRun_Create) Reset() { *x = SimulationRun_Create{} - mi := &file_livekit_agent_simulation_proto_msgTypes[11] + mi := &file_livekit_agent_simulation_proto_msgTypes[12] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1344,7 +1393,7 @@ func (x *SimulationRun_Create) String() string { func (*SimulationRun_Create) ProtoMessage() {} func (x *SimulationRun_Create) ProtoReflect() protoreflect.Message { - mi := &file_livekit_agent_simulation_proto_msgTypes[11] + mi := &file_livekit_agent_simulation_proto_msgTypes[12] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1357,7 +1406,7 @@ func (x *SimulationRun_Create) ProtoReflect() protoreflect.Message { // Deprecated: Use SimulationRun_Create.ProtoReflect.Descriptor instead. func (*SimulationRun_Create) Descriptor() ([]byte, []int) { - return file_livekit_agent_simulation_proto_rawDescGZIP(), []int{1, 4} + return file_livekit_agent_simulation_proto_rawDescGZIP(), []int{1, 5} } type SimulationRun_ConfirmSourceUpload struct { @@ -1368,7 +1417,7 @@ type SimulationRun_ConfirmSourceUpload struct { func (x *SimulationRun_ConfirmSourceUpload) Reset() { *x = SimulationRun_ConfirmSourceUpload{} - mi := &file_livekit_agent_simulation_proto_msgTypes[12] + mi := &file_livekit_agent_simulation_proto_msgTypes[13] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1380,7 +1429,7 @@ func (x *SimulationRun_ConfirmSourceUpload) String() string { func (*SimulationRun_ConfirmSourceUpload) ProtoMessage() {} func (x *SimulationRun_ConfirmSourceUpload) ProtoReflect() protoreflect.Message { - mi := &file_livekit_agent_simulation_proto_msgTypes[12] + mi := &file_livekit_agent_simulation_proto_msgTypes[13] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1393,7 +1442,7 @@ func (x *SimulationRun_ConfirmSourceUpload) ProtoReflect() protoreflect.Message // Deprecated: Use SimulationRun_ConfirmSourceUpload.ProtoReflect.Descriptor instead. func (*SimulationRun_ConfirmSourceUpload) Descriptor() ([]byte, []int) { - return file_livekit_agent_simulation_proto_rawDescGZIP(), []int{1, 5} + return file_livekit_agent_simulation_proto_rawDescGZIP(), []int{1, 6} } type SimulationRun_Get struct { @@ -1404,7 +1453,7 @@ type SimulationRun_Get struct { func (x *SimulationRun_Get) Reset() { *x = SimulationRun_Get{} - mi := &file_livekit_agent_simulation_proto_msgTypes[13] + mi := &file_livekit_agent_simulation_proto_msgTypes[14] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1416,7 +1465,7 @@ func (x *SimulationRun_Get) String() string { func (*SimulationRun_Get) ProtoMessage() {} func (x *SimulationRun_Get) ProtoReflect() protoreflect.Message { - mi := &file_livekit_agent_simulation_proto_msgTypes[13] + mi := &file_livekit_agent_simulation_proto_msgTypes[14] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1429,7 +1478,7 @@ func (x *SimulationRun_Get) ProtoReflect() protoreflect.Message { // Deprecated: Use SimulationRun_Get.ProtoReflect.Descriptor instead. func (*SimulationRun_Get) Descriptor() ([]byte, []int) { - return file_livekit_agent_simulation_proto_rawDescGZIP(), []int{1, 6} + return file_livekit_agent_simulation_proto_rawDescGZIP(), []int{1, 7} } type SimulationRun_List struct { @@ -1440,7 +1489,7 @@ type SimulationRun_List struct { func (x *SimulationRun_List) Reset() { *x = SimulationRun_List{} - mi := &file_livekit_agent_simulation_proto_msgTypes[14] + mi := &file_livekit_agent_simulation_proto_msgTypes[15] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1452,7 +1501,7 @@ func (x *SimulationRun_List) String() string { func (*SimulationRun_List) ProtoMessage() {} func (x *SimulationRun_List) ProtoReflect() protoreflect.Message { - mi := &file_livekit_agent_simulation_proto_msgTypes[14] + mi := &file_livekit_agent_simulation_proto_msgTypes[15] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1465,7 +1514,7 @@ func (x *SimulationRun_List) ProtoReflect() protoreflect.Message { // Deprecated: Use SimulationRun_List.ProtoReflect.Descriptor instead. func (*SimulationRun_List) Descriptor() ([]byte, []int) { - return file_livekit_agent_simulation_proto_rawDescGZIP(), []int{1, 7} + return file_livekit_agent_simulation_proto_rawDescGZIP(), []int{1, 8} } // Counts of the runs `List` would return over the same window, bucketed by @@ -1478,7 +1527,7 @@ type SimulationRun_Counts struct { func (x *SimulationRun_Counts) Reset() { *x = SimulationRun_Counts{} - mi := &file_livekit_agent_simulation_proto_msgTypes[15] + mi := &file_livekit_agent_simulation_proto_msgTypes[16] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1490,7 +1539,7 @@ func (x *SimulationRun_Counts) String() string { func (*SimulationRun_Counts) ProtoMessage() {} func (x *SimulationRun_Counts) ProtoReflect() protoreflect.Message { - mi := &file_livekit_agent_simulation_proto_msgTypes[15] + mi := &file_livekit_agent_simulation_proto_msgTypes[16] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1503,7 +1552,7 @@ func (x *SimulationRun_Counts) ProtoReflect() protoreflect.Message { // Deprecated: Use SimulationRun_Counts.ProtoReflect.Descriptor instead. func (*SimulationRun_Counts) Descriptor() ([]byte, []int) { - return file_livekit_agent_simulation_proto_rawDescGZIP(), []int{1, 8} + return file_livekit_agent_simulation_proto_rawDescGZIP(), []int{1, 9} } type SimulationRun_Cancel struct { @@ -1514,7 +1563,7 @@ type SimulationRun_Cancel struct { func (x *SimulationRun_Cancel) Reset() { *x = SimulationRun_Cancel{} - mi := &file_livekit_agent_simulation_proto_msgTypes[16] + mi := &file_livekit_agent_simulation_proto_msgTypes[17] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1526,7 +1575,7 @@ func (x *SimulationRun_Cancel) String() string { func (*SimulationRun_Cancel) ProtoMessage() {} func (x *SimulationRun_Cancel) ProtoReflect() protoreflect.Message { - mi := &file_livekit_agent_simulation_proto_msgTypes[16] + mi := &file_livekit_agent_simulation_proto_msgTypes[17] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1539,7 +1588,7 @@ func (x *SimulationRun_Cancel) ProtoReflect() protoreflect.Message { // Deprecated: Use SimulationRun_Cancel.ProtoReflect.Descriptor instead. func (*SimulationRun_Cancel) Descriptor() ([]byte, []int) { - return file_livekit_agent_simulation_proto_rawDescGZIP(), []int{1, 9} + return file_livekit_agent_simulation_proto_rawDescGZIP(), []int{1, 10} } type SimulationRun_Usage struct { @@ -1552,7 +1601,7 @@ type SimulationRun_Usage struct { func (x *SimulationRun_Usage) Reset() { *x = SimulationRun_Usage{} - mi := &file_livekit_agent_simulation_proto_msgTypes[17] + mi := &file_livekit_agent_simulation_proto_msgTypes[18] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1564,7 +1613,7 @@ func (x *SimulationRun_Usage) String() string { func (*SimulationRun_Usage) ProtoMessage() {} func (x *SimulationRun_Usage) ProtoReflect() protoreflect.Message { - mi := &file_livekit_agent_simulation_proto_msgTypes[17] + mi := &file_livekit_agent_simulation_proto_msgTypes[18] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1577,7 +1626,7 @@ func (x *SimulationRun_Usage) ProtoReflect() protoreflect.Message { // Deprecated: Use SimulationRun_Usage.ProtoReflect.Descriptor instead. func (*SimulationRun_Usage) Descriptor() ([]byte, []int) { - return file_livekit_agent_simulation_proto_rawDescGZIP(), []int{1, 10} + return file_livekit_agent_simulation_proto_rawDescGZIP(), []int{1, 11} } func (x *SimulationRun_Usage) GetTextTurnsCount() int32 { @@ -1604,7 +1653,7 @@ type SimulationRun_Job_Usage struct { func (x *SimulationRun_Job_Usage) Reset() { *x = SimulationRun_Job_Usage{} - mi := &file_livekit_agent_simulation_proto_msgTypes[18] + mi := &file_livekit_agent_simulation_proto_msgTypes[19] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1616,7 +1665,7 @@ func (x *SimulationRun_Job_Usage) String() string { func (*SimulationRun_Job_Usage) ProtoMessage() {} func (x *SimulationRun_Job_Usage) ProtoReflect() protoreflect.Message { - mi := &file_livekit_agent_simulation_proto_msgTypes[18] + mi := &file_livekit_agent_simulation_proto_msgTypes[19] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1672,7 +1721,7 @@ type SimulationRun_JobMetrics_STT struct { func (x *SimulationRun_JobMetrics_STT) Reset() { *x = SimulationRun_JobMetrics_STT{} - mi := &file_livekit_agent_simulation_proto_msgTypes[19] + mi := &file_livekit_agent_simulation_proto_msgTypes[20] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1684,7 +1733,7 @@ func (x *SimulationRun_JobMetrics_STT) String() string { func (*SimulationRun_JobMetrics_STT) ProtoMessage() {} func (x *SimulationRun_JobMetrics_STT) ProtoReflect() protoreflect.Message { - mi := &file_livekit_agent_simulation_proto_msgTypes[19] + mi := &file_livekit_agent_simulation_proto_msgTypes[20] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1802,7 +1851,7 @@ type SimulationRun_JobMetrics_LLM struct { func (x *SimulationRun_JobMetrics_LLM) Reset() { *x = SimulationRun_JobMetrics_LLM{} - mi := &file_livekit_agent_simulation_proto_msgTypes[20] + mi := &file_livekit_agent_simulation_proto_msgTypes[21] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1814,7 +1863,7 @@ func (x *SimulationRun_JobMetrics_LLM) String() string { func (*SimulationRun_JobMetrics_LLM) ProtoMessage() {} func (x *SimulationRun_JobMetrics_LLM) ProtoReflect() protoreflect.Message { - mi := &file_livekit_agent_simulation_proto_msgTypes[20] + mi := &file_livekit_agent_simulation_proto_msgTypes[21] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1874,7 +1923,7 @@ type SimulationRun_JobMetrics_TTS struct { func (x *SimulationRun_JobMetrics_TTS) Reset() { *x = SimulationRun_JobMetrics_TTS{} - mi := &file_livekit_agent_simulation_proto_msgTypes[21] + mi := &file_livekit_agent_simulation_proto_msgTypes[22] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1886,7 +1935,7 @@ func (x *SimulationRun_JobMetrics_TTS) String() string { func (*SimulationRun_JobMetrics_TTS) ProtoMessage() {} func (x *SimulationRun_JobMetrics_TTS) ProtoReflect() protoreflect.Message { - mi := &file_livekit_agent_simulation_proto_msgTypes[21] + mi := &file_livekit_agent_simulation_proto_msgTypes[22] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2015,7 +2064,7 @@ type SimulationRun_JobMetrics_Conversation struct { func (x *SimulationRun_JobMetrics_Conversation) Reset() { *x = SimulationRun_JobMetrics_Conversation{} - mi := &file_livekit_agent_simulation_proto_msgTypes[22] + mi := &file_livekit_agent_simulation_proto_msgTypes[23] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2027,7 +2076,7 @@ func (x *SimulationRun_JobMetrics_Conversation) String() string { func (*SimulationRun_JobMetrics_Conversation) ProtoMessage() {} func (x *SimulationRun_JobMetrics_Conversation) ProtoReflect() protoreflect.Message { - mi := &file_livekit_agent_simulation_proto_msgTypes[22] + mi := &file_livekit_agent_simulation_proto_msgTypes[23] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2161,7 +2210,7 @@ type SimulationRun_JobMetrics_Turn struct { func (x *SimulationRun_JobMetrics_Turn) Reset() { *x = SimulationRun_JobMetrics_Turn{} - mi := &file_livekit_agent_simulation_proto_msgTypes[23] + mi := &file_livekit_agent_simulation_proto_msgTypes[24] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2173,7 +2222,7 @@ func (x *SimulationRun_JobMetrics_Turn) String() string { func (*SimulationRun_JobMetrics_Turn) ProtoMessage() {} func (x *SimulationRun_JobMetrics_Turn) ProtoReflect() protoreflect.Message { - mi := &file_livekit_agent_simulation_proto_msgTypes[23] + mi := &file_livekit_agent_simulation_proto_msgTypes[24] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2327,22 +2376,17 @@ type SimulationRun_Create_Request struct { LowQualityMicrophone bool `protobuf:"varint,11,opt,name=low_quality_microphone,json=lowQualityMicrophone,proto3" json:"low_quality_microphone,omitempty"` PacketLoss bool `protobuf:"varint,12,opt,name=packet_loss,json=packetLoss,proto3" json:"packet_loss,omitempty"` Ci *SimulationRun_CI `protobuf:"bytes,13,opt,name=ci,proto3,oneof" json:"ci,omitempty"` - // Samples per scenario. Requires scenario_group. Absent runs each - // scenario once. The run holds scenarios × samples jobs, subject to - // the usual job cap. - Samples *int32 `protobuf:"varint,14,opt,name=samples,proto3,oneof" json:"samples,omitempty"` - // The share of a scenario's samples that must pass for that scenario to - // pass, 0-1 exclusive of 0. A scenario needs round(rate × samples) of - // them; absent requires every sample. The run fails if any scenario - // fails; pass@k and pass^k report over scenarios and neither gates. - PassRate *float64 `protobuf:"fixed64,15,opt,name=pass_rate,json=passRate,proto3,oneof" json:"pass_rate,omitempty"` + // Absent runs each scenario once and requires it to pass. Requires + // scenario_group. The run fails if any scenario fails; pass@k and + // pass^k report over scenarios and neither gates. + Sampling *SimulationRun_Sampling `protobuf:"bytes,14,opt,name=sampling,proto3,oneof" json:"sampling,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *SimulationRun_Create_Request) Reset() { *x = SimulationRun_Create_Request{} - mi := &file_livekit_agent_simulation_proto_msgTypes[24] + mi := &file_livekit_agent_simulation_proto_msgTypes[25] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2354,7 +2398,7 @@ func (x *SimulationRun_Create_Request) String() string { func (*SimulationRun_Create_Request) ProtoMessage() {} func (x *SimulationRun_Create_Request) ProtoReflect() protoreflect.Message { - mi := &file_livekit_agent_simulation_proto_msgTypes[24] + mi := &file_livekit_agent_simulation_proto_msgTypes[25] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2367,7 +2411,7 @@ func (x *SimulationRun_Create_Request) ProtoReflect() protoreflect.Message { // Deprecated: Use SimulationRun_Create_Request.ProtoReflect.Descriptor instead. func (*SimulationRun_Create_Request) Descriptor() ([]byte, []int) { - return file_livekit_agent_simulation_proto_rawDescGZIP(), []int{1, 4, 0} + return file_livekit_agent_simulation_proto_rawDescGZIP(), []int{1, 5, 0} } func (x *SimulationRun_Create_Request) GetProjectId() string { @@ -2447,18 +2491,11 @@ func (x *SimulationRun_Create_Request) GetCi() *SimulationRun_CI { return nil } -func (x *SimulationRun_Create_Request) GetSamples() int32 { - if x != nil && x.Samples != nil { - return *x.Samples - } - return 0 -} - -func (x *SimulationRun_Create_Request) GetPassRate() float64 { - if x != nil && x.PassRate != nil { - return *x.PassRate +func (x *SimulationRun_Create_Request) GetSampling() *SimulationRun_Sampling { + if x != nil { + return x.Sampling } - return 0 + return nil } type SimulationRun_Create_Response struct { @@ -2471,7 +2508,7 @@ type SimulationRun_Create_Response struct { func (x *SimulationRun_Create_Response) Reset() { *x = SimulationRun_Create_Response{} - mi := &file_livekit_agent_simulation_proto_msgTypes[25] + mi := &file_livekit_agent_simulation_proto_msgTypes[26] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2483,7 +2520,7 @@ func (x *SimulationRun_Create_Response) String() string { func (*SimulationRun_Create_Response) ProtoMessage() {} func (x *SimulationRun_Create_Response) ProtoReflect() protoreflect.Message { - mi := &file_livekit_agent_simulation_proto_msgTypes[25] + mi := &file_livekit_agent_simulation_proto_msgTypes[26] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2496,7 +2533,7 @@ func (x *SimulationRun_Create_Response) ProtoReflect() protoreflect.Message { // Deprecated: Use SimulationRun_Create_Response.ProtoReflect.Descriptor instead. func (*SimulationRun_Create_Response) Descriptor() ([]byte, []int) { - return file_livekit_agent_simulation_proto_rawDescGZIP(), []int{1, 4, 1} + return file_livekit_agent_simulation_proto_rawDescGZIP(), []int{1, 5, 1} } func (x *SimulationRun_Create_Response) GetSimulationRunId() string { @@ -2524,7 +2561,7 @@ type SimulationRun_ConfirmSourceUpload_Request struct { func (x *SimulationRun_ConfirmSourceUpload_Request) Reset() { *x = SimulationRun_ConfirmSourceUpload_Request{} - mi := &file_livekit_agent_simulation_proto_msgTypes[26] + mi := &file_livekit_agent_simulation_proto_msgTypes[27] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2536,7 +2573,7 @@ func (x *SimulationRun_ConfirmSourceUpload_Request) String() string { func (*SimulationRun_ConfirmSourceUpload_Request) ProtoMessage() {} func (x *SimulationRun_ConfirmSourceUpload_Request) ProtoReflect() protoreflect.Message { - mi := &file_livekit_agent_simulation_proto_msgTypes[26] + mi := &file_livekit_agent_simulation_proto_msgTypes[27] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2549,7 +2586,7 @@ func (x *SimulationRun_ConfirmSourceUpload_Request) ProtoReflect() protoreflect. // Deprecated: Use SimulationRun_ConfirmSourceUpload_Request.ProtoReflect.Descriptor instead. func (*SimulationRun_ConfirmSourceUpload_Request) Descriptor() ([]byte, []int) { - return file_livekit_agent_simulation_proto_rawDescGZIP(), []int{1, 5, 0} + return file_livekit_agent_simulation_proto_rawDescGZIP(), []int{1, 6, 0} } func (x *SimulationRun_ConfirmSourceUpload_Request) GetProjectId() string { @@ -2581,7 +2618,7 @@ type SimulationRun_ConfirmSourceUpload_Response struct { func (x *SimulationRun_ConfirmSourceUpload_Response) Reset() { *x = SimulationRun_ConfirmSourceUpload_Response{} - mi := &file_livekit_agent_simulation_proto_msgTypes[27] + mi := &file_livekit_agent_simulation_proto_msgTypes[28] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2593,7 +2630,7 @@ func (x *SimulationRun_ConfirmSourceUpload_Response) String() string { func (*SimulationRun_ConfirmSourceUpload_Response) ProtoMessage() {} func (x *SimulationRun_ConfirmSourceUpload_Response) ProtoReflect() protoreflect.Message { - mi := &file_livekit_agent_simulation_proto_msgTypes[27] + mi := &file_livekit_agent_simulation_proto_msgTypes[28] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2606,7 +2643,7 @@ func (x *SimulationRun_ConfirmSourceUpload_Response) ProtoReflect() protoreflect // Deprecated: Use SimulationRun_ConfirmSourceUpload_Response.ProtoReflect.Descriptor instead. func (*SimulationRun_ConfirmSourceUpload_Response) Descriptor() ([]byte, []int) { - return file_livekit_agent_simulation_proto_rawDescGZIP(), []int{1, 5, 1} + return file_livekit_agent_simulation_proto_rawDescGZIP(), []int{1, 6, 1} } type SimulationRun_Get_Request struct { @@ -2619,7 +2656,7 @@ type SimulationRun_Get_Request struct { func (x *SimulationRun_Get_Request) Reset() { *x = SimulationRun_Get_Request{} - mi := &file_livekit_agent_simulation_proto_msgTypes[28] + mi := &file_livekit_agent_simulation_proto_msgTypes[29] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2631,7 +2668,7 @@ func (x *SimulationRun_Get_Request) String() string { func (*SimulationRun_Get_Request) ProtoMessage() {} func (x *SimulationRun_Get_Request) ProtoReflect() protoreflect.Message { - mi := &file_livekit_agent_simulation_proto_msgTypes[28] + mi := &file_livekit_agent_simulation_proto_msgTypes[29] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2644,7 +2681,7 @@ func (x *SimulationRun_Get_Request) ProtoReflect() protoreflect.Message { // Deprecated: Use SimulationRun_Get_Request.ProtoReflect.Descriptor instead. func (*SimulationRun_Get_Request) Descriptor() ([]byte, []int) { - return file_livekit_agent_simulation_proto_rawDescGZIP(), []int{1, 6, 0} + return file_livekit_agent_simulation_proto_rawDescGZIP(), []int{1, 7, 0} } func (x *SimulationRun_Get_Request) GetProjectId() string { @@ -2670,7 +2707,7 @@ type SimulationRun_Get_Response struct { func (x *SimulationRun_Get_Response) Reset() { *x = SimulationRun_Get_Response{} - mi := &file_livekit_agent_simulation_proto_msgTypes[29] + mi := &file_livekit_agent_simulation_proto_msgTypes[30] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2682,7 +2719,7 @@ func (x *SimulationRun_Get_Response) String() string { func (*SimulationRun_Get_Response) ProtoMessage() {} func (x *SimulationRun_Get_Response) ProtoReflect() protoreflect.Message { - mi := &file_livekit_agent_simulation_proto_msgTypes[29] + mi := &file_livekit_agent_simulation_proto_msgTypes[30] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2695,7 +2732,7 @@ func (x *SimulationRun_Get_Response) ProtoReflect() protoreflect.Message { // Deprecated: Use SimulationRun_Get_Response.ProtoReflect.Descriptor instead. func (*SimulationRun_Get_Response) Descriptor() ([]byte, []int) { - return file_livekit_agent_simulation_proto_rawDescGZIP(), []int{1, 6, 1} + return file_livekit_agent_simulation_proto_rawDescGZIP(), []int{1, 7, 1} } func (x *SimulationRun_Get_Response) GetRun() *SimulationRun { @@ -2727,7 +2764,7 @@ type SimulationRun_List_Request struct { func (x *SimulationRun_List_Request) Reset() { *x = SimulationRun_List_Request{} - mi := &file_livekit_agent_simulation_proto_msgTypes[30] + mi := &file_livekit_agent_simulation_proto_msgTypes[31] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2739,7 +2776,7 @@ func (x *SimulationRun_List_Request) String() string { func (*SimulationRun_List_Request) ProtoMessage() {} func (x *SimulationRun_List_Request) ProtoReflect() protoreflect.Message { - mi := &file_livekit_agent_simulation_proto_msgTypes[30] + mi := &file_livekit_agent_simulation_proto_msgTypes[31] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2752,7 +2789,7 @@ func (x *SimulationRun_List_Request) ProtoReflect() protoreflect.Message { // Deprecated: Use SimulationRun_List_Request.ProtoReflect.Descriptor instead. func (*SimulationRun_List_Request) Descriptor() ([]byte, []int) { - return file_livekit_agent_simulation_proto_rawDescGZIP(), []int{1, 7, 0} + return file_livekit_agent_simulation_proto_rawDescGZIP(), []int{1, 8, 0} } func (x *SimulationRun_List_Request) GetProjectId() string { @@ -2814,7 +2851,7 @@ type SimulationRun_List_Response struct { func (x *SimulationRun_List_Response) Reset() { *x = SimulationRun_List_Response{} - mi := &file_livekit_agent_simulation_proto_msgTypes[31] + mi := &file_livekit_agent_simulation_proto_msgTypes[32] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2826,7 +2863,7 @@ func (x *SimulationRun_List_Response) String() string { func (*SimulationRun_List_Response) ProtoMessage() {} func (x *SimulationRun_List_Response) ProtoReflect() protoreflect.Message { - mi := &file_livekit_agent_simulation_proto_msgTypes[31] + mi := &file_livekit_agent_simulation_proto_msgTypes[32] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2839,7 +2876,7 @@ func (x *SimulationRun_List_Response) ProtoReflect() protoreflect.Message { // Deprecated: Use SimulationRun_List_Response.ProtoReflect.Descriptor instead. func (*SimulationRun_List_Response) Descriptor() ([]byte, []int) { - return file_livekit_agent_simulation_proto_rawDescGZIP(), []int{1, 7, 1} + return file_livekit_agent_simulation_proto_rawDescGZIP(), []int{1, 8, 1} } func (x *SimulationRun_List_Response) GetRuns() []*SimulationRun { @@ -2874,7 +2911,7 @@ type SimulationRun_Counts_Request struct { func (x *SimulationRun_Counts_Request) Reset() { *x = SimulationRun_Counts_Request{} - mi := &file_livekit_agent_simulation_proto_msgTypes[32] + mi := &file_livekit_agent_simulation_proto_msgTypes[33] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2886,7 +2923,7 @@ func (x *SimulationRun_Counts_Request) String() string { func (*SimulationRun_Counts_Request) ProtoMessage() {} func (x *SimulationRun_Counts_Request) ProtoReflect() protoreflect.Message { - mi := &file_livekit_agent_simulation_proto_msgTypes[32] + mi := &file_livekit_agent_simulation_proto_msgTypes[33] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2899,7 +2936,7 @@ func (x *SimulationRun_Counts_Request) ProtoReflect() protoreflect.Message { // Deprecated: Use SimulationRun_Counts_Request.ProtoReflect.Descriptor instead. func (*SimulationRun_Counts_Request) Descriptor() ([]byte, []int) { - return file_livekit_agent_simulation_proto_rawDescGZIP(), []int{1, 8, 0} + return file_livekit_agent_simulation_proto_rawDescGZIP(), []int{1, 9, 0} } func (x *SimulationRun_Counts_Request) GetProjectId() string { @@ -2959,7 +2996,7 @@ type SimulationRun_Counts_Response struct { func (x *SimulationRun_Counts_Response) Reset() { *x = SimulationRun_Counts_Response{} - mi := &file_livekit_agent_simulation_proto_msgTypes[33] + mi := &file_livekit_agent_simulation_proto_msgTypes[34] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2971,7 +3008,7 @@ func (x *SimulationRun_Counts_Response) String() string { func (*SimulationRun_Counts_Response) ProtoMessage() {} func (x *SimulationRun_Counts_Response) ProtoReflect() protoreflect.Message { - mi := &file_livekit_agent_simulation_proto_msgTypes[33] + mi := &file_livekit_agent_simulation_proto_msgTypes[34] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2984,7 +3021,7 @@ func (x *SimulationRun_Counts_Response) ProtoReflect() protoreflect.Message { // Deprecated: Use SimulationRun_Counts_Response.ProtoReflect.Descriptor instead. func (*SimulationRun_Counts_Response) Descriptor() ([]byte, []int) { - return file_livekit_agent_simulation_proto_rawDescGZIP(), []int{1, 8, 1} + return file_livekit_agent_simulation_proto_rawDescGZIP(), []int{1, 9, 1} } func (x *SimulationRun_Counts_Response) GetBuckets() []*SimulationRun_Counts_Bucket { @@ -3011,7 +3048,7 @@ type SimulationRun_Counts_Bucket struct { func (x *SimulationRun_Counts_Bucket) Reset() { *x = SimulationRun_Counts_Bucket{} - mi := &file_livekit_agent_simulation_proto_msgTypes[34] + mi := &file_livekit_agent_simulation_proto_msgTypes[35] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3023,7 +3060,7 @@ func (x *SimulationRun_Counts_Bucket) String() string { func (*SimulationRun_Counts_Bucket) ProtoMessage() {} func (x *SimulationRun_Counts_Bucket) ProtoReflect() protoreflect.Message { - mi := &file_livekit_agent_simulation_proto_msgTypes[34] + mi := &file_livekit_agent_simulation_proto_msgTypes[35] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3036,7 +3073,7 @@ func (x *SimulationRun_Counts_Bucket) ProtoReflect() protoreflect.Message { // Deprecated: Use SimulationRun_Counts_Bucket.ProtoReflect.Descriptor instead. func (*SimulationRun_Counts_Bucket) Descriptor() ([]byte, []int) { - return file_livekit_agent_simulation_proto_rawDescGZIP(), []int{1, 8, 2} + return file_livekit_agent_simulation_proto_rawDescGZIP(), []int{1, 9, 2} } func (x *SimulationRun_Counts_Bucket) GetBucketStart() *timestamppb.Timestamp { @@ -3063,7 +3100,7 @@ type SimulationRun_Cancel_Request struct { func (x *SimulationRun_Cancel_Request) Reset() { *x = SimulationRun_Cancel_Request{} - mi := &file_livekit_agent_simulation_proto_msgTypes[35] + mi := &file_livekit_agent_simulation_proto_msgTypes[36] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3075,7 +3112,7 @@ func (x *SimulationRun_Cancel_Request) String() string { func (*SimulationRun_Cancel_Request) ProtoMessage() {} func (x *SimulationRun_Cancel_Request) ProtoReflect() protoreflect.Message { - mi := &file_livekit_agent_simulation_proto_msgTypes[35] + mi := &file_livekit_agent_simulation_proto_msgTypes[36] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3088,7 +3125,7 @@ func (x *SimulationRun_Cancel_Request) ProtoReflect() protoreflect.Message { // Deprecated: Use SimulationRun_Cancel_Request.ProtoReflect.Descriptor instead. func (*SimulationRun_Cancel_Request) Descriptor() ([]byte, []int) { - return file_livekit_agent_simulation_proto_rawDescGZIP(), []int{1, 9, 0} + return file_livekit_agent_simulation_proto_rawDescGZIP(), []int{1, 10, 0} } func (x *SimulationRun_Cancel_Request) GetProjectId() string { @@ -3113,7 +3150,7 @@ type SimulationRun_Cancel_Response struct { func (x *SimulationRun_Cancel_Response) Reset() { *x = SimulationRun_Cancel_Response{} - mi := &file_livekit_agent_simulation_proto_msgTypes[36] + mi := &file_livekit_agent_simulation_proto_msgTypes[37] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3125,7 +3162,7 @@ func (x *SimulationRun_Cancel_Response) String() string { func (*SimulationRun_Cancel_Response) ProtoMessage() {} func (x *SimulationRun_Cancel_Response) ProtoReflect() protoreflect.Message { - mi := &file_livekit_agent_simulation_proto_msgTypes[36] + mi := &file_livekit_agent_simulation_proto_msgTypes[37] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3138,7 +3175,7 @@ func (x *SimulationRun_Cancel_Response) ProtoReflect() protoreflect.Message { // Deprecated: Use SimulationRun_Cancel_Response.ProtoReflect.Descriptor instead. func (*SimulationRun_Cancel_Response) Descriptor() ([]byte, []int) { - return file_livekit_agent_simulation_proto_rawDescGZIP(), []int{1, 9, 1} + return file_livekit_agent_simulation_proto_rawDescGZIP(), []int{1, 10, 1} } type Scenario_CreateFromSession struct { @@ -3149,7 +3186,7 @@ type Scenario_CreateFromSession struct { func (x *Scenario_CreateFromSession) Reset() { *x = Scenario_CreateFromSession{} - mi := &file_livekit_agent_simulation_proto_msgTypes[37] + mi := &file_livekit_agent_simulation_proto_msgTypes[38] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3161,7 +3198,7 @@ func (x *Scenario_CreateFromSession) String() string { func (*Scenario_CreateFromSession) ProtoMessage() {} func (x *Scenario_CreateFromSession) ProtoReflect() protoreflect.Message { - mi := &file_livekit_agent_simulation_proto_msgTypes[37] + mi := &file_livekit_agent_simulation_proto_msgTypes[38] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3188,7 +3225,7 @@ type Scenario_CreateFromSession_Request struct { func (x *Scenario_CreateFromSession_Request) Reset() { *x = Scenario_CreateFromSession_Request{} - mi := &file_livekit_agent_simulation_proto_msgTypes[39] + mi := &file_livekit_agent_simulation_proto_msgTypes[40] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3200,7 +3237,7 @@ func (x *Scenario_CreateFromSession_Request) String() string { func (*Scenario_CreateFromSession_Request) ProtoMessage() {} func (x *Scenario_CreateFromSession_Request) ProtoReflect() protoreflect.Message { - mi := &file_livekit_agent_simulation_proto_msgTypes[39] + mi := &file_livekit_agent_simulation_proto_msgTypes[40] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3246,7 +3283,7 @@ type Scenario_CreateFromSession_Response struct { func (x *Scenario_CreateFromSession_Response) Reset() { *x = Scenario_CreateFromSession_Response{} - mi := &file_livekit_agent_simulation_proto_msgTypes[40] + mi := &file_livekit_agent_simulation_proto_msgTypes[41] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3258,7 +3295,7 @@ func (x *Scenario_CreateFromSession_Response) String() string { func (*Scenario_CreateFromSession_Response) ProtoMessage() {} func (x *Scenario_CreateFromSession_Response) ProtoReflect() protoreflect.Message { - mi := &file_livekit_agent_simulation_proto_msgTypes[40] + mi := &file_livekit_agent_simulation_proto_msgTypes[41] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3303,7 +3340,7 @@ const file_livekit_agent_simulation_proto_rawDesc = "" + "\n" + "suggestion\x18\x02 \x01(\tR\n" + "suggestion\x12\x14\n" + - "\x05label\x18\x03 \x01(\tR\x05label\"\xe3M\n" + + "\x05label\x18\x03 \x01(\tR\x05label\"\x9fN\n" + "\rSimulationRun\x12\x0e\n" + "\x02id\x18\x01 \x01(\tR\x02id\x12\x1d\n" + "\n" + @@ -3330,9 +3367,8 @@ const file_livekit_agent_simulation_proto_rawDesc = "" + "\fsummary_zstd\x18\x14 \x01(\fR\vsummaryZstd\x12$\n" + "\vissue_count\x18\x15 \x01(\x05H\x00R\n" + "issueCount\x88\x01\x01\x12.\n" + - "\x02ci\x18\x16 \x01(\v2\x19.livekit.SimulationRun.CIH\x01R\x02ci\x88\x01\x01\x12\x18\n" + - "\asamples\x18\x17 \x01(\x05R\asamples\x12 \n" + - "\tpass_rate\x18\x18 \x01(\x01H\x02R\bpassRate\x88\x01\x01\x1a\x8f\x06\n" + + "\x02ci\x18\x16 \x01(\v2\x19.livekit.SimulationRun.CIH\x01R\x02ci\x88\x01\x01\x12@\n" + + "\bsampling\x18\x17 \x01(\v2\x1f.livekit.SimulationRun.SamplingH\x02R\bsampling\x88\x01\x01\x1a\x8f\x06\n" + "\x03Job\x12\x0e\n" + "\x02id\x18\x01 \x01(\tR\x02id\x129\n" + "\x06status\x18\x02 \x01(\x0e2!.livekit.SimulationRun.Job.StatusR\x06status\x12\"\n" + @@ -3552,8 +3588,11 @@ const file_livekit_agent_simulation_proto_rawDesc = "" + "\x03ref\x18\x03 \x01(\tR\x03ref\x12!\n" + "\fpull_request\x18\x04 \x01(\tR\vpullRequest\x12\x17\n" + "\arun_url\x18\x05 \x01(\tR\x06runUrl\x12\x14\n" + - "\x05actor\x18\x06 \x01(\tR\x05actor\x1a\x89\x06\n" + - "\x06Create\x1a\xf0\x04\n" + + "\x05actor\x18\x06 \x01(\tR\x05actor\x1aA\n" + + "\bSampling\x12\x18\n" + + "\asamples\x18\x01 \x01(\x05R\asamples\x12\x1b\n" + + "\tpass_rate\x18\x02 \x01(\x01R\bpassRate\x1a\xfd\x05\n" + + "\x06Create\x1a\xe4\x04\n" + "\aRequest\x12\x1d\n" + "\n" + "project_id\x18\x01 \x01(\tR\tprojectId\x12\x1d\n" + @@ -3569,16 +3608,12 @@ const file_livekit_agent_simulation_proto_rawDesc = "" + "\x16low_quality_microphone\x18\v \x01(\bR\x14lowQualityMicrophone\x12\x1f\n" + "\vpacket_loss\x18\f \x01(\bR\n" + "packetLoss\x12.\n" + - "\x02ci\x18\r \x01(\v2\x19.livekit.SimulationRun.CIH\x02R\x02ci\x88\x01\x01\x12\x1d\n" + - "\asamples\x18\x0e \x01(\x05H\x03R\asamples\x88\x01\x01\x12 \n" + - "\tpass_rate\x18\x0f \x01(\x01H\x04R\bpassRate\x88\x01\x01B\x11\n" + + "\x02ci\x18\r \x01(\v2\x19.livekit.SimulationRun.CIH\x02R\x02ci\x88\x01\x01\x12@\n" + + "\bsampling\x18\x0e \x01(\v2\x1f.livekit.SimulationRun.SamplingH\x03R\bsampling\x88\x01\x01B\x11\n" + "\x0f_scenario_groupB\x0e\n" + "\f_concurrencyB\x05\n" + - "\x03_ciB\n" + - "\n" + - "\b_samplesB\f\n" + - "\n" + - "_pass_rateJ\x04\b\x03\x10\x04R\x11agent_description\x1a\x8b\x01\n" + + "\x03_ciB\v\n" + + "\t_samplingJ\x04\b\x03\x10\x04R\x11agent_description\x1a\x8b\x01\n" + "\bResponse\x12*\n" + "\x11simulation_run_id\x18\x01 \x01(\tR\x0fsimulationRunId\x12S\n" + "\x16presigned_post_request\x18\x02 \x01(\v2\x1d.livekit.PresignedPostRequestR\x14presignedPostRequest\x1a\xa0\x01\n" + @@ -3658,9 +3693,8 @@ const file_livekit_agent_simulation_proto_rawDesc = "" + "\rSTATUS_FAILED\x10\x05\x12\x14\n" + "\x10STATUS_CANCELLED\x10\x06B\x0e\n" + "\f_issue_countB\x05\n" + - "\x03_ciB\f\n" + - "\n" + - "_pass_rateJ\x04\b\b\x10\tR\asummary\"\xb5\x03\n" + + "\x03_ciB\v\n" + + "\t_samplingJ\x04\b\b\x10\tR\asummary\"\xb5\x03\n" + "\bScenario\x12\x14\n" + "\x05label\x18\x01 \x01(\tR\x05label\x12\"\n" + "\finstructions\x18\x02 \x01(\tR\finstructions\x12-\n" + @@ -3714,7 +3748,7 @@ func file_livekit_agent_simulation_proto_rawDescGZIP() []byte { } var file_livekit_agent_simulation_proto_enumTypes = make([]protoimpl.EnumInfo, 3) -var file_livekit_agent_simulation_proto_msgTypes = make([]protoimpl.MessageInfo, 41) +var file_livekit_agent_simulation_proto_msgTypes = make([]protoimpl.MessageInfo, 42) var file_livekit_agent_simulation_proto_goTypes = []any{ (SimulationMode)(0), // 0: livekit.SimulationMode (SimulationRun_Status)(0), // 1: livekit.SimulationRun.Status @@ -3730,115 +3764,118 @@ var file_livekit_agent_simulation_proto_goTypes = []any{ (*SimulationRun_JobMetrics)(nil), // 11: livekit.SimulationRun.JobMetrics (*SimulationRun_RunMetrics)(nil), // 12: livekit.SimulationRun.RunMetrics (*SimulationRun_CI)(nil), // 13: livekit.SimulationRun.CI - (*SimulationRun_Create)(nil), // 14: livekit.SimulationRun.Create - (*SimulationRun_ConfirmSourceUpload)(nil), // 15: livekit.SimulationRun.ConfirmSourceUpload - (*SimulationRun_Get)(nil), // 16: livekit.SimulationRun.Get - (*SimulationRun_List)(nil), // 17: livekit.SimulationRun.List - (*SimulationRun_Counts)(nil), // 18: livekit.SimulationRun.Counts - (*SimulationRun_Cancel)(nil), // 19: livekit.SimulationRun.Cancel - (*SimulationRun_Usage)(nil), // 20: livekit.SimulationRun.Usage - (*SimulationRun_Job_Usage)(nil), // 21: livekit.SimulationRun.Job.Usage - (*SimulationRun_JobMetrics_STT)(nil), // 22: livekit.SimulationRun.JobMetrics.STT - (*SimulationRun_JobMetrics_LLM)(nil), // 23: livekit.SimulationRun.JobMetrics.LLM - (*SimulationRun_JobMetrics_TTS)(nil), // 24: livekit.SimulationRun.JobMetrics.TTS - (*SimulationRun_JobMetrics_Conversation)(nil), // 25: livekit.SimulationRun.JobMetrics.Conversation - (*SimulationRun_JobMetrics_Turn)(nil), // 26: livekit.SimulationRun.JobMetrics.Turn - (*SimulationRun_Create_Request)(nil), // 27: livekit.SimulationRun.Create.Request - (*SimulationRun_Create_Response)(nil), // 28: livekit.SimulationRun.Create.Response - (*SimulationRun_ConfirmSourceUpload_Request)(nil), // 29: livekit.SimulationRun.ConfirmSourceUpload.Request - (*SimulationRun_ConfirmSourceUpload_Response)(nil), // 30: livekit.SimulationRun.ConfirmSourceUpload.Response - (*SimulationRun_Get_Request)(nil), // 31: livekit.SimulationRun.Get.Request - (*SimulationRun_Get_Response)(nil), // 32: livekit.SimulationRun.Get.Response - (*SimulationRun_List_Request)(nil), // 33: livekit.SimulationRun.List.Request - (*SimulationRun_List_Response)(nil), // 34: livekit.SimulationRun.List.Response - (*SimulationRun_Counts_Request)(nil), // 35: livekit.SimulationRun.Counts.Request - (*SimulationRun_Counts_Response)(nil), // 36: livekit.SimulationRun.Counts.Response - (*SimulationRun_Counts_Bucket)(nil), // 37: livekit.SimulationRun.Counts.Bucket - (*SimulationRun_Cancel_Request)(nil), // 38: livekit.SimulationRun.Cancel.Request - (*SimulationRun_Cancel_Response)(nil), // 39: livekit.SimulationRun.Cancel.Response - (*Scenario_CreateFromSession)(nil), // 40: livekit.Scenario.CreateFromSession - nil, // 41: livekit.Scenario.TagsEntry - (*Scenario_CreateFromSession_Request)(nil), // 42: livekit.Scenario.CreateFromSession.Request - (*Scenario_CreateFromSession_Response)(nil), // 43: livekit.Scenario.CreateFromSession.Response - (*timestamppb.Timestamp)(nil), // 44: google.protobuf.Timestamp - (*agent.ChatContext)(nil), // 45: livekit.agent.ChatContext - (agent.ChatRole)(0), // 46: livekit.agent.ChatRole - (*PresignedPostRequest)(nil), // 47: livekit.PresignedPostRequest - (*TokenPagination)(nil), // 48: livekit.TokenPagination - (*durationpb.Duration)(nil), // 49: google.protobuf.Duration + (*SimulationRun_Sampling)(nil), // 14: livekit.SimulationRun.Sampling + (*SimulationRun_Create)(nil), // 15: livekit.SimulationRun.Create + (*SimulationRun_ConfirmSourceUpload)(nil), // 16: livekit.SimulationRun.ConfirmSourceUpload + (*SimulationRun_Get)(nil), // 17: livekit.SimulationRun.Get + (*SimulationRun_List)(nil), // 18: livekit.SimulationRun.List + (*SimulationRun_Counts)(nil), // 19: livekit.SimulationRun.Counts + (*SimulationRun_Cancel)(nil), // 20: livekit.SimulationRun.Cancel + (*SimulationRun_Usage)(nil), // 21: livekit.SimulationRun.Usage + (*SimulationRun_Job_Usage)(nil), // 22: livekit.SimulationRun.Job.Usage + (*SimulationRun_JobMetrics_STT)(nil), // 23: livekit.SimulationRun.JobMetrics.STT + (*SimulationRun_JobMetrics_LLM)(nil), // 24: livekit.SimulationRun.JobMetrics.LLM + (*SimulationRun_JobMetrics_TTS)(nil), // 25: livekit.SimulationRun.JobMetrics.TTS + (*SimulationRun_JobMetrics_Conversation)(nil), // 26: livekit.SimulationRun.JobMetrics.Conversation + (*SimulationRun_JobMetrics_Turn)(nil), // 27: livekit.SimulationRun.JobMetrics.Turn + (*SimulationRun_Create_Request)(nil), // 28: livekit.SimulationRun.Create.Request + (*SimulationRun_Create_Response)(nil), // 29: livekit.SimulationRun.Create.Response + (*SimulationRun_ConfirmSourceUpload_Request)(nil), // 30: livekit.SimulationRun.ConfirmSourceUpload.Request + (*SimulationRun_ConfirmSourceUpload_Response)(nil), // 31: livekit.SimulationRun.ConfirmSourceUpload.Response + (*SimulationRun_Get_Request)(nil), // 32: livekit.SimulationRun.Get.Request + (*SimulationRun_Get_Response)(nil), // 33: livekit.SimulationRun.Get.Response + (*SimulationRun_List_Request)(nil), // 34: livekit.SimulationRun.List.Request + (*SimulationRun_List_Response)(nil), // 35: livekit.SimulationRun.List.Response + (*SimulationRun_Counts_Request)(nil), // 36: livekit.SimulationRun.Counts.Request + (*SimulationRun_Counts_Response)(nil), // 37: livekit.SimulationRun.Counts.Response + (*SimulationRun_Counts_Bucket)(nil), // 38: livekit.SimulationRun.Counts.Bucket + (*SimulationRun_Cancel_Request)(nil), // 39: livekit.SimulationRun.Cancel.Request + (*SimulationRun_Cancel_Response)(nil), // 40: livekit.SimulationRun.Cancel.Response + (*Scenario_CreateFromSession)(nil), // 41: livekit.Scenario.CreateFromSession + nil, // 42: livekit.Scenario.TagsEntry + (*Scenario_CreateFromSession_Request)(nil), // 43: livekit.Scenario.CreateFromSession.Request + (*Scenario_CreateFromSession_Response)(nil), // 44: livekit.Scenario.CreateFromSession.Response + (*timestamppb.Timestamp)(nil), // 45: google.protobuf.Timestamp + (*agent.ChatContext)(nil), // 46: livekit.agent.ChatContext + (agent.ChatRole)(0), // 47: livekit.agent.ChatRole + (*PresignedPostRequest)(nil), // 48: livekit.PresignedPostRequest + (*TokenPagination)(nil), // 49: livekit.TokenPagination + (*durationpb.Duration)(nil), // 50: google.protobuf.Duration } var file_livekit_agent_simulation_proto_depIdxs = []int32{ 9, // 0: livekit.SimulationRunSummary.issues:type_name -> livekit.SimulationRunSummary.Issue 8, // 1: livekit.SimulationRunSummary.chat_history:type_name -> livekit.SimulationRunSummary.ChatHistoryEntry 1, // 2: livekit.SimulationRun.status:type_name -> livekit.SimulationRun.Status - 44, // 3: livekit.SimulationRun.created_at:type_name -> google.protobuf.Timestamp + 45, // 3: livekit.SimulationRun.created_at:type_name -> google.protobuf.Timestamp 10, // 4: livekit.SimulationRun.jobs:type_name -> livekit.SimulationRun.Job 6, // 5: livekit.SimulationRun.scenario_group:type_name -> livekit.ScenarioGroup - 44, // 6: livekit.SimulationRun.ended_at:type_name -> google.protobuf.Timestamp - 20, // 7: livekit.SimulationRun.usage:type_name -> livekit.SimulationRun.Usage + 45, // 6: livekit.SimulationRun.ended_at:type_name -> google.protobuf.Timestamp + 21, // 7: livekit.SimulationRun.usage:type_name -> livekit.SimulationRun.Usage 0, // 8: livekit.SimulationRun.mode:type_name -> livekit.SimulationMode 12, // 9: livekit.SimulationRun.metrics:type_name -> livekit.SimulationRun.RunMetrics 13, // 10: livekit.SimulationRun.ci:type_name -> livekit.SimulationRun.CI - 41, // 11: livekit.Scenario.tags:type_name -> livekit.Scenario.TagsEntry - 5, // 12: livekit.ScenarioGroup.scenarios:type_name -> livekit.Scenario - 5, // 13: livekit.SimulationDispatch.scenario:type_name -> livekit.Scenario - 0, // 14: livekit.SimulationDispatch.mode:type_name -> livekit.SimulationMode - 45, // 15: livekit.SimulationRunSummary.ChatHistoryEntry.value:type_name -> livekit.agent.ChatContext - 2, // 16: livekit.SimulationRun.Job.status:type_name -> livekit.SimulationRun.Job.Status - 44, // 17: livekit.SimulationRun.Job.started_at:type_name -> google.protobuf.Timestamp - 44, // 18: livekit.SimulationRun.Job.ended_at:type_name -> google.protobuf.Timestamp - 21, // 19: livekit.SimulationRun.Job.usage:type_name -> livekit.SimulationRun.Job.Usage - 11, // 20: livekit.SimulationRun.Job.metrics:type_name -> livekit.SimulationRun.JobMetrics - 22, // 21: livekit.SimulationRun.JobMetrics.stt:type_name -> livekit.SimulationRun.JobMetrics.STT - 23, // 22: livekit.SimulationRun.JobMetrics.llm:type_name -> livekit.SimulationRun.JobMetrics.LLM - 24, // 23: livekit.SimulationRun.JobMetrics.tts:type_name -> livekit.SimulationRun.JobMetrics.TTS - 25, // 24: livekit.SimulationRun.JobMetrics.conversation:type_name -> livekit.SimulationRun.JobMetrics.Conversation - 26, // 25: livekit.SimulationRun.JobMetrics.turns:type_name -> livekit.SimulationRun.JobMetrics.Turn - 44, // 26: livekit.SimulationRun.JobMetrics.t0:type_name -> google.protobuf.Timestamp - 22, // 27: livekit.SimulationRun.RunMetrics.stt:type_name -> livekit.SimulationRun.JobMetrics.STT - 23, // 28: livekit.SimulationRun.RunMetrics.llm:type_name -> livekit.SimulationRun.JobMetrics.LLM - 24, // 29: livekit.SimulationRun.RunMetrics.tts:type_name -> livekit.SimulationRun.JobMetrics.TTS - 25, // 30: livekit.SimulationRun.RunMetrics.conversation:type_name -> livekit.SimulationRun.JobMetrics.Conversation - 46, // 31: livekit.SimulationRun.JobMetrics.Turn.role:type_name -> livekit.agent.ChatRole - 6, // 32: livekit.SimulationRun.Create.Request.scenario_group:type_name -> livekit.ScenarioGroup - 0, // 33: livekit.SimulationRun.Create.Request.mode:type_name -> livekit.SimulationMode - 13, // 34: livekit.SimulationRun.Create.Request.ci:type_name -> livekit.SimulationRun.CI - 47, // 35: livekit.SimulationRun.Create.Response.presigned_post_request:type_name -> livekit.PresignedPostRequest - 4, // 36: livekit.SimulationRun.Get.Response.run:type_name -> livekit.SimulationRun - 1, // 37: livekit.SimulationRun.List.Request.status:type_name -> livekit.SimulationRun.Status - 48, // 38: livekit.SimulationRun.List.Request.page_token:type_name -> livekit.TokenPagination - 44, // 39: livekit.SimulationRun.List.Request.start_time:type_name -> google.protobuf.Timestamp - 44, // 40: livekit.SimulationRun.List.Request.end_time:type_name -> google.protobuf.Timestamp - 0, // 41: livekit.SimulationRun.List.Request.mode:type_name -> livekit.SimulationMode - 4, // 42: livekit.SimulationRun.List.Response.runs:type_name -> livekit.SimulationRun - 48, // 43: livekit.SimulationRun.List.Response.next_page_token:type_name -> livekit.TokenPagination - 44, // 44: livekit.SimulationRun.Counts.Request.start_time:type_name -> google.protobuf.Timestamp - 44, // 45: livekit.SimulationRun.Counts.Request.end_time:type_name -> google.protobuf.Timestamp - 1, // 46: livekit.SimulationRun.Counts.Request.status:type_name -> livekit.SimulationRun.Status - 0, // 47: livekit.SimulationRun.Counts.Request.mode:type_name -> livekit.SimulationMode - 37, // 48: livekit.SimulationRun.Counts.Response.buckets:type_name -> livekit.SimulationRun.Counts.Bucket - 49, // 49: livekit.SimulationRun.Counts.Response.interval:type_name -> google.protobuf.Duration - 44, // 50: livekit.SimulationRun.Counts.Bucket.bucket_start:type_name -> google.protobuf.Timestamp - 5, // 51: livekit.Scenario.CreateFromSession.Response.scenario:type_name -> livekit.Scenario - 27, // 52: livekit.AgentSimulation.CreateSimulationRun:input_type -> livekit.SimulationRun.Create.Request - 29, // 53: livekit.AgentSimulation.ConfirmSimulationSourceUpload:input_type -> livekit.SimulationRun.ConfirmSourceUpload.Request - 31, // 54: livekit.AgentSimulation.GetSimulationRun:input_type -> livekit.SimulationRun.Get.Request - 33, // 55: livekit.AgentSimulation.ListSimulationRuns:input_type -> livekit.SimulationRun.List.Request - 35, // 56: livekit.AgentSimulation.CountSimulationRuns:input_type -> livekit.SimulationRun.Counts.Request - 38, // 57: livekit.AgentSimulation.CancelSimulationRun:input_type -> livekit.SimulationRun.Cancel.Request - 42, // 58: livekit.AgentSimulation.CreateScenarioFromSession:input_type -> livekit.Scenario.CreateFromSession.Request - 28, // 59: livekit.AgentSimulation.CreateSimulationRun:output_type -> livekit.SimulationRun.Create.Response - 30, // 60: livekit.AgentSimulation.ConfirmSimulationSourceUpload:output_type -> livekit.SimulationRun.ConfirmSourceUpload.Response - 32, // 61: livekit.AgentSimulation.GetSimulationRun:output_type -> livekit.SimulationRun.Get.Response - 34, // 62: livekit.AgentSimulation.ListSimulationRuns:output_type -> livekit.SimulationRun.List.Response - 36, // 63: livekit.AgentSimulation.CountSimulationRuns:output_type -> livekit.SimulationRun.Counts.Response - 39, // 64: livekit.AgentSimulation.CancelSimulationRun:output_type -> livekit.SimulationRun.Cancel.Response - 43, // 65: livekit.AgentSimulation.CreateScenarioFromSession:output_type -> livekit.Scenario.CreateFromSession.Response - 59, // [59:66] is the sub-list for method output_type - 52, // [52:59] is the sub-list for method input_type - 52, // [52:52] is the sub-list for extension type_name - 52, // [52:52] is the sub-list for extension extendee - 0, // [0:52] is the sub-list for field type_name + 14, // 11: livekit.SimulationRun.sampling:type_name -> livekit.SimulationRun.Sampling + 42, // 12: livekit.Scenario.tags:type_name -> livekit.Scenario.TagsEntry + 5, // 13: livekit.ScenarioGroup.scenarios:type_name -> livekit.Scenario + 5, // 14: livekit.SimulationDispatch.scenario:type_name -> livekit.Scenario + 0, // 15: livekit.SimulationDispatch.mode:type_name -> livekit.SimulationMode + 46, // 16: livekit.SimulationRunSummary.ChatHistoryEntry.value:type_name -> livekit.agent.ChatContext + 2, // 17: livekit.SimulationRun.Job.status:type_name -> livekit.SimulationRun.Job.Status + 45, // 18: livekit.SimulationRun.Job.started_at:type_name -> google.protobuf.Timestamp + 45, // 19: livekit.SimulationRun.Job.ended_at:type_name -> google.protobuf.Timestamp + 22, // 20: livekit.SimulationRun.Job.usage:type_name -> livekit.SimulationRun.Job.Usage + 11, // 21: livekit.SimulationRun.Job.metrics:type_name -> livekit.SimulationRun.JobMetrics + 23, // 22: livekit.SimulationRun.JobMetrics.stt:type_name -> livekit.SimulationRun.JobMetrics.STT + 24, // 23: livekit.SimulationRun.JobMetrics.llm:type_name -> livekit.SimulationRun.JobMetrics.LLM + 25, // 24: livekit.SimulationRun.JobMetrics.tts:type_name -> livekit.SimulationRun.JobMetrics.TTS + 26, // 25: livekit.SimulationRun.JobMetrics.conversation:type_name -> livekit.SimulationRun.JobMetrics.Conversation + 27, // 26: livekit.SimulationRun.JobMetrics.turns:type_name -> livekit.SimulationRun.JobMetrics.Turn + 45, // 27: livekit.SimulationRun.JobMetrics.t0:type_name -> google.protobuf.Timestamp + 23, // 28: livekit.SimulationRun.RunMetrics.stt:type_name -> livekit.SimulationRun.JobMetrics.STT + 24, // 29: livekit.SimulationRun.RunMetrics.llm:type_name -> livekit.SimulationRun.JobMetrics.LLM + 25, // 30: livekit.SimulationRun.RunMetrics.tts:type_name -> livekit.SimulationRun.JobMetrics.TTS + 26, // 31: livekit.SimulationRun.RunMetrics.conversation:type_name -> livekit.SimulationRun.JobMetrics.Conversation + 47, // 32: livekit.SimulationRun.JobMetrics.Turn.role:type_name -> livekit.agent.ChatRole + 6, // 33: livekit.SimulationRun.Create.Request.scenario_group:type_name -> livekit.ScenarioGroup + 0, // 34: livekit.SimulationRun.Create.Request.mode:type_name -> livekit.SimulationMode + 13, // 35: livekit.SimulationRun.Create.Request.ci:type_name -> livekit.SimulationRun.CI + 14, // 36: livekit.SimulationRun.Create.Request.sampling:type_name -> livekit.SimulationRun.Sampling + 48, // 37: livekit.SimulationRun.Create.Response.presigned_post_request:type_name -> livekit.PresignedPostRequest + 4, // 38: livekit.SimulationRun.Get.Response.run:type_name -> livekit.SimulationRun + 1, // 39: livekit.SimulationRun.List.Request.status:type_name -> livekit.SimulationRun.Status + 49, // 40: livekit.SimulationRun.List.Request.page_token:type_name -> livekit.TokenPagination + 45, // 41: livekit.SimulationRun.List.Request.start_time:type_name -> google.protobuf.Timestamp + 45, // 42: livekit.SimulationRun.List.Request.end_time:type_name -> google.protobuf.Timestamp + 0, // 43: livekit.SimulationRun.List.Request.mode:type_name -> livekit.SimulationMode + 4, // 44: livekit.SimulationRun.List.Response.runs:type_name -> livekit.SimulationRun + 49, // 45: livekit.SimulationRun.List.Response.next_page_token:type_name -> livekit.TokenPagination + 45, // 46: livekit.SimulationRun.Counts.Request.start_time:type_name -> google.protobuf.Timestamp + 45, // 47: livekit.SimulationRun.Counts.Request.end_time:type_name -> google.protobuf.Timestamp + 1, // 48: livekit.SimulationRun.Counts.Request.status:type_name -> livekit.SimulationRun.Status + 0, // 49: livekit.SimulationRun.Counts.Request.mode:type_name -> livekit.SimulationMode + 38, // 50: livekit.SimulationRun.Counts.Response.buckets:type_name -> livekit.SimulationRun.Counts.Bucket + 50, // 51: livekit.SimulationRun.Counts.Response.interval:type_name -> google.protobuf.Duration + 45, // 52: livekit.SimulationRun.Counts.Bucket.bucket_start:type_name -> google.protobuf.Timestamp + 5, // 53: livekit.Scenario.CreateFromSession.Response.scenario:type_name -> livekit.Scenario + 28, // 54: livekit.AgentSimulation.CreateSimulationRun:input_type -> livekit.SimulationRun.Create.Request + 30, // 55: livekit.AgentSimulation.ConfirmSimulationSourceUpload:input_type -> livekit.SimulationRun.ConfirmSourceUpload.Request + 32, // 56: livekit.AgentSimulation.GetSimulationRun:input_type -> livekit.SimulationRun.Get.Request + 34, // 57: livekit.AgentSimulation.ListSimulationRuns:input_type -> livekit.SimulationRun.List.Request + 36, // 58: livekit.AgentSimulation.CountSimulationRuns:input_type -> livekit.SimulationRun.Counts.Request + 39, // 59: livekit.AgentSimulation.CancelSimulationRun:input_type -> livekit.SimulationRun.Cancel.Request + 43, // 60: livekit.AgentSimulation.CreateScenarioFromSession:input_type -> livekit.Scenario.CreateFromSession.Request + 29, // 61: livekit.AgentSimulation.CreateSimulationRun:output_type -> livekit.SimulationRun.Create.Response + 31, // 62: livekit.AgentSimulation.ConfirmSimulationSourceUpload:output_type -> livekit.SimulationRun.ConfirmSourceUpload.Response + 33, // 63: livekit.AgentSimulation.GetSimulationRun:output_type -> livekit.SimulationRun.Get.Response + 35, // 64: livekit.AgentSimulation.ListSimulationRuns:output_type -> livekit.SimulationRun.List.Response + 37, // 65: livekit.AgentSimulation.CountSimulationRuns:output_type -> livekit.SimulationRun.Counts.Response + 40, // 66: livekit.AgentSimulation.CancelSimulationRun:output_type -> livekit.SimulationRun.Cancel.Response + 44, // 67: livekit.AgentSimulation.CreateScenarioFromSession:output_type -> livekit.Scenario.CreateFromSession.Response + 61, // [61:68] is the sub-list for method output_type + 54, // [54:61] is the sub-list for method input_type + 54, // [54:54] is the sub-list for extension type_name + 54, // [54:54] is the sub-list for extension extendee + 0, // [0:54] is the sub-list for field type_name } func init() { file_livekit_agent_simulation_proto_init() } @@ -3851,21 +3888,21 @@ func file_livekit_agent_simulation_proto_init() { file_livekit_agent_simulation_proto_msgTypes[1].OneofWrappers = []any{} file_livekit_agent_simulation_proto_msgTypes[8].OneofWrappers = []any{} file_livekit_agent_simulation_proto_msgTypes[9].OneofWrappers = []any{} - file_livekit_agent_simulation_proto_msgTypes[19].OneofWrappers = []any{} file_livekit_agent_simulation_proto_msgTypes[20].OneofWrappers = []any{} file_livekit_agent_simulation_proto_msgTypes[21].OneofWrappers = []any{} file_livekit_agent_simulation_proto_msgTypes[22].OneofWrappers = []any{} file_livekit_agent_simulation_proto_msgTypes[23].OneofWrappers = []any{} file_livekit_agent_simulation_proto_msgTypes[24].OneofWrappers = []any{} - file_livekit_agent_simulation_proto_msgTypes[30].OneofWrappers = []any{} - file_livekit_agent_simulation_proto_msgTypes[32].OneofWrappers = []any{} + file_livekit_agent_simulation_proto_msgTypes[25].OneofWrappers = []any{} + file_livekit_agent_simulation_proto_msgTypes[31].OneofWrappers = []any{} + file_livekit_agent_simulation_proto_msgTypes[33].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), RawDescriptor: unsafe.Slice(unsafe.StringData(file_livekit_agent_simulation_proto_rawDesc), len(file_livekit_agent_simulation_proto_rawDesc)), NumEnums: 3, - NumMessages: 41, + NumMessages: 42, NumExtensions: 0, NumServices: 1, }, diff --git a/livekit/livekit_agent_simulation.twirp.go b/livekit/livekit_agent_simulation.twirp.go index ce1d28bd9..2a104c3da 100644 --- a/livekit/livekit_agent_simulation.twirp.go +++ b/livekit/livekit_agent_simulation.twirp.go @@ -2191,258 +2191,258 @@ func (s *agentSimulationServer) PathPrefix() string { } var twirpFileDescriptor10 = []byte{ - // 4042 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x5a, 0xcd, 0x6f, 0x1c, 0x47, - 0x76, 0xd7, 0x7c, 0xcf, 0xbc, 0xe1, 0x7c, 0xb0, 0xf8, 0xa1, 0x51, 0xdb, 0xb2, 0x65, 0xd9, 0xde, - 0xd5, 0xda, 0x5e, 0x4a, 0xe1, 0x5a, 0xeb, 0xc8, 0x5e, 0x6f, 0xc2, 0x21, 0x69, 0x0d, 0x15, 0x92, - 0xa6, 0x6b, 0x86, 0x48, 0xd6, 0xc1, 0xa2, 0xd1, 0xec, 0x2e, 0x0d, 0x5b, 0xea, 0xe9, 0x1a, 0x77, - 0x55, 0x4b, 0xe2, 0x02, 0x39, 0x04, 0xd8, 0x83, 0x83, 0x1c, 0x82, 0xe4, 0x2f, 0x58, 0x20, 0x08, - 0x82, 0xec, 0x35, 0xc8, 0x31, 0x97, 0x00, 0x39, 0x07, 0x41, 0xfe, 0x84, 0xdc, 0x72, 0xca, 0x25, - 0xf7, 0xa0, 0x5e, 0x55, 0xf7, 0xf4, 0x7c, 0x91, 0xd4, 0xc2, 0x06, 0x72, 0xc8, 0xad, 0xeb, 0xbd, - 0x57, 0x1f, 0xfd, 0xea, 0xfd, 0xde, 0x7b, 0x55, 0xaf, 0xe0, 0xad, 0xc0, 0x7f, 0xc1, 0x9e, 0xfb, - 0xd2, 0x76, 0x86, 0x2c, 0x94, 0xb6, 0xf0, 0x47, 0x71, 0xe0, 0x48, 0x9f, 0x87, 0x5b, 0xe3, 0x88, - 0x4b, 0x4e, 0x2a, 0x86, 0x6f, 0xbd, 0x83, 0x02, 0xf7, 0x67, 0xc4, 0x99, 0x10, 0xa9, 0xac, 0xf5, - 0xd6, 0x90, 0xf3, 0x61, 0xc0, 0xee, 0x63, 0xeb, 0x2c, 0x7e, 0x7a, 0xdf, 0x8b, 0xa3, 0xcc, 0x58, - 0xd6, 0xdb, 0xb3, 0x7c, 0xe9, 0x8f, 0x98, 0x90, 0xce, 0x68, 0x6c, 0x04, 0x6e, 0x25, 0xa3, 0xbb, - 0x01, 0x8f, 0x3d, 0x3d, 0x87, 0x61, 0xad, 0x27, 0xac, 0x11, 0xf7, 0x58, 0x20, 0x34, 0xf5, 0xee, - 0xbf, 0x17, 0x60, 0xbd, 0x9f, 0x2e, 0x99, 0xc6, 0x61, 0x3f, 0x1e, 0x8d, 0x9c, 0xe8, 0x82, 0x6c, - 0x42, 0x79, 0xec, 0x08, 0xc1, 0xbc, 0x4e, 0xee, 0x4e, 0xee, 0x5e, 0x89, 0x9a, 0x96, 0xa2, 0x3f, - 0x75, 0xfc, 0x80, 0x79, 0x9d, 0xbc, 0xa6, 0xeb, 0x16, 0xb9, 0x0d, 0x30, 0xe4, 0x7e, 0x38, 0xb4, - 0x5f, 0xb2, 0x20, 0xe8, 0x14, 0xee, 0xe4, 0xee, 0xd5, 0x68, 0x0d, 0x29, 0x7f, 0xcc, 0x82, 0x40, - 0xb1, 0x25, 0xb7, 0xfd, 0xd1, 0x38, 0xe2, 0x2f, 0x58, 0xa7, 0xa8, 0xd9, 0x92, 0x1f, 0x68, 0x02, - 0xf9, 0x0c, 0xca, 0xbe, 0x10, 0x31, 0x13, 0x9d, 0xd2, 0x9d, 0xc2, 0xbd, 0xfa, 0xf6, 0xbb, 0x5b, - 0x66, 0xb5, 0x5b, 0x8b, 0x16, 0xb7, 0x75, 0xa0, 0x64, 0xa9, 0xe9, 0x42, 0xbe, 0x82, 0x15, 0xf7, - 0xdc, 0x91, 0xf6, 0xb9, 0x2f, 0x24, 0x8f, 0x2e, 0x3a, 0x65, 0x1c, 0x62, 0xeb, 0xf2, 0x21, 0x76, - 0xcf, 0x1d, 0xd9, 0xd3, 0x1d, 0xf6, 0x43, 0x19, 0x5d, 0xd0, 0xba, 0x3b, 0xa1, 0x58, 0x5f, 0x43, - 0x7b, 0x56, 0x80, 0xb4, 0xa1, 0xf0, 0x9c, 0x5d, 0xa0, 0x3a, 0x6a, 0x54, 0x7d, 0x92, 0x07, 0x50, - 0x7a, 0xe1, 0x04, 0x31, 0x43, 0x55, 0xd4, 0xb7, 0xad, 0x74, 0x46, 0xad, 0x77, 0x35, 0xc2, 0x2e, - 0x0f, 0x25, 0x7b, 0x25, 0xa9, 0x16, 0xfc, 0x34, 0xff, 0xfb, 0x39, 0xcb, 0x86, 0x12, 0xae, 0x9f, - 0xdc, 0x81, 0xba, 0xc7, 0x84, 0x1b, 0xf9, 0x63, 0xb5, 0x36, 0x33, 0x70, 0x96, 0x44, 0xde, 0x02, - 0x10, 0xf1, 0x70, 0xc8, 0x04, 0x0a, 0xe4, 0x51, 0x20, 0x43, 0x21, 0xeb, 0x50, 0x0a, 0x9c, 0x33, - 0x96, 0xe8, 0x5b, 0x37, 0xee, 0xfe, 0xe7, 0x11, 0x34, 0xa6, 0xfe, 0x99, 0x34, 0x21, 0xef, 0x7b, - 0x66, 0x82, 0xbc, 0x8f, 0x9b, 0x35, 0x8e, 0xf8, 0x33, 0xe6, 0x4a, 0xdb, 0xf7, 0xcc, 0xb8, 0x35, - 0x43, 0x39, 0xf0, 0xc8, 0x43, 0x28, 0x0b, 0xe9, 0xc8, 0x58, 0xe0, 0xb8, 0xcd, 0xed, 0xdb, 0x8b, - 0x55, 0xb9, 0xd5, 0x47, 0x21, 0x6a, 0x84, 0xc9, 0x87, 0xb0, 0xaa, 0x8d, 0x3a, 0xfb, 0x57, 0x7a, - 0xab, 0xdb, 0xc8, 0xd8, 0xcb, 0xfc, 0xda, 0x3a, 0x94, 0x58, 0x14, 0xf1, 0xa8, 0x53, 0xd2, 0x4b, - 0xc7, 0x06, 0x79, 0x04, 0xe0, 0x46, 0xcc, 0x91, 0xcc, 0xb3, 0x1d, 0xd9, 0x29, 0x1b, 0xb5, 0x6a, - 0xab, 0xdf, 0x4a, 0xac, 0x7e, 0x6b, 0x90, 0x58, 0x3d, 0xad, 0x19, 0xe9, 0x1d, 0x49, 0xb6, 0xa0, - 0xf8, 0x8c, 0x9f, 0x89, 0x4e, 0x05, 0x77, 0xdf, 0x5a, 0xb2, 0xe4, 0x27, 0xfc, 0x8c, 0xa2, 0x9c, - 0xd2, 0x81, 0x5e, 0x6d, 0xe8, 0x8c, 0x58, 0xa7, 0xa6, 0x75, 0x80, 0x94, 0x63, 0x67, 0xc4, 0xc8, - 0xe7, 0xd0, 0x14, 0x2e, 0x0b, 0x9d, 0xc8, 0xe7, 0xf6, 0x30, 0xe2, 0xf1, 0xb8, 0x03, 0xb8, 0x9a, - 0xcd, 0xc9, 0xc0, 0x86, 0xfd, 0x58, 0x71, 0x69, 0x43, 0x64, 0x9b, 0xe4, 0x21, 0x54, 0x59, 0xe8, - 0xe9, 0xdf, 0xa8, 0x5f, 0xf9, 0x1b, 0x15, 0x94, 0xdd, 0x91, 0xe4, 0x0d, 0xa8, 0x3d, 0xe3, 0x67, - 0xb6, 0xcb, 0xe3, 0x50, 0x76, 0x56, 0x10, 0x60, 0xd5, 0x67, 0xfc, 0x6c, 0x57, 0xb5, 0xc9, 0x3b, - 0xb0, 0xa2, 0x41, 0x68, 0xf8, 0x0d, 0xe4, 0xd7, 0x35, 0x2d, 0x15, 0xd1, 0x78, 0x34, 0x22, 0x4d, - 0x2d, 0xa2, 0x69, 0x5a, 0xe4, 0x87, 0xd0, 0x0a, 0xe3, 0x51, 0xc6, 0x4f, 0x89, 0x4e, 0x0b, 0xa5, - 0x9a, 0x61, 0x3c, 0x9a, 0x28, 0x4b, 0x90, 0x6d, 0x28, 0xc5, 0xc2, 0x19, 0xb2, 0x4e, 0x1b, 0xd7, - 0xff, 0xe6, 0x12, 0x8d, 0x9e, 0x2a, 0x19, 0xaa, 0x45, 0x95, 0x49, 0xbb, 0x3c, 0x74, 0xe3, 0x28, - 0x62, 0xa1, 0x7b, 0xd1, 0x59, 0xd5, 0xd3, 0x67, 0x48, 0xe4, 0x43, 0x28, 0x2a, 0x07, 0xd4, 0x21, - 0x68, 0x59, 0x37, 0x17, 0x0c, 0x7a, 0xc4, 0x3d, 0x46, 0x51, 0x88, 0x7c, 0x06, 0x95, 0x11, 0x93, - 0x91, 0xef, 0x8a, 0xce, 0x1a, 0x2e, 0xe2, 0x9d, 0x25, 0x8b, 0xa0, 0x71, 0x78, 0xa4, 0x05, 0x69, - 0xd2, 0x43, 0xe9, 0x42, 0x68, 0xb0, 0xdb, 0xbf, 0x12, 0xd2, 0xeb, 0xac, 0xdf, 0xc9, 0xdd, 0x5b, - 0xa1, 0x75, 0x43, 0xfb, 0x5a, 0x48, 0x8f, 0xbc, 0x07, 0x75, 0xf4, 0x21, 0x46, 0x5b, 0x1b, 0x6a, - 0xb9, 0xbd, 0x1b, 0x14, 0x90, 0x88, 0xea, 0xfa, 0x36, 0x97, 0x23, 0x5b, 0x90, 0x77, 0xfd, 0xce, - 0x26, 0x2e, 0xe0, 0xd6, 0x92, 0x05, 0xec, 0x1e, 0xf4, 0x72, 0x34, 0xef, 0xfa, 0x4a, 0xbe, 0x03, - 0x15, 0xe1, 0x8c, 0xc6, 0x01, 0x13, 0x9d, 0x9b, 0xa8, 0x80, 0xa4, 0x49, 0xee, 0x40, 0x4d, 0xed, - 0x96, 0x1d, 0x39, 0x92, 0x75, 0x3a, 0x77, 0x72, 0xf7, 0x72, 0xbd, 0x3c, 0xad, 0x2a, 0x12, 0x75, - 0x24, 0xfb, 0x36, 0x97, 0xb3, 0xfe, 0xaa, 0x0c, 0x85, 0x27, 0xfc, 0x6c, 0x0e, 0xb1, 0x8f, 0x52, - 0x48, 0xe6, 0x51, 0x71, 0xef, 0x2c, 0xb7, 0xef, 0x59, 0x58, 0xde, 0x85, 0x15, 0x3f, 0x14, 0x32, - 0x8a, 0x5d, 0xbd, 0xdb, 0xda, 0x57, 0x4c, 0xd1, 0x26, 0x68, 0x2c, 0x66, 0xd1, 0xf8, 0x63, 0x20, - 0x1a, 0x22, 0xec, 0xd5, 0x98, 0xb9, 0xd2, 0x58, 0x8b, 0x06, 0xac, 0x86, 0xfa, 0x7e, 0x86, 0x31, - 0xf1, 0x46, 0xe5, 0x8c, 0x37, 0x22, 0x04, 0x8a, 0xd2, 0x19, 0x6a, 0x5c, 0xd6, 0x28, 0x7e, 0x2b, - 0x33, 0x8f, 0x38, 0x1f, 0x69, 0xe8, 0x55, 0x51, 0xba, 0xaa, 0x08, 0x88, 0xbc, 0x47, 0x00, 0x42, - 0x3a, 0x91, 0xf1, 0x01, 0x70, 0xb5, 0x0f, 0x30, 0xd2, 0x3b, 0xf2, 0x77, 0x45, 0xdd, 0x4d, 0xa8, - 0xe0, 0x72, 0x7c, 0x0f, 0x31, 0x57, 0xa3, 0x65, 0xd5, 0x3c, 0xf0, 0xc8, 0x4f, 0x13, 0x08, 0x34, - 0x70, 0xb0, 0x3b, 0x97, 0x28, 0x7d, 0x0a, 0x06, 0x19, 0xbb, 0x6d, 0x5e, 0x6a, 0xb7, 0x4f, 0xf8, - 0xd9, 0x9c, 0xdd, 0xbe, 0x0d, 0xf5, 0xd4, 0xf3, 0xf8, 0x1e, 0x82, 0x53, 0x79, 0x7d, 0x43, 0x3a, - 0xc0, 0x10, 0xac, 0x0d, 0x0a, 0x91, 0x59, 0xa2, 0xa6, 0x65, 0xfd, 0x12, 0x4a, 0xb8, 0x0a, 0x72, - 0x0f, 0xda, 0x2a, 0xe8, 0xd8, 0x32, 0x8e, 0x42, 0x61, 0x6c, 0x5b, 0x47, 0xf1, 0xa6, 0xa2, 0x0f, - 0x14, 0x59, 0x3b, 0x83, 0x0f, 0x60, 0xd5, 0x89, 0x3d, 0x9f, 0x4f, 0x89, 0xea, 0xc0, 0xde, 0x42, - 0xc6, 0x44, 0xf6, 0x2e, 0x87, 0xb2, 0xb6, 0x2c, 0x42, 0xa0, 0xd9, 0x1f, 0xec, 0x0c, 0x4e, 0xfb, - 0xf6, 0xc9, 0xfe, 0xf1, 0xde, 0xc1, 0xf1, 0xe3, 0xf6, 0x8d, 0x0c, 0x8d, 0x9e, 0x1e, 0x1f, 0x2b, - 0x5a, 0x8e, 0xac, 0x43, 0xdb, 0xd0, 0x76, 0xbf, 0x3c, 0x3a, 0x39, 0xdc, 0x1f, 0xec, 0xef, 0xb5, - 0xf3, 0x64, 0x15, 0x1a, 0x86, 0xfa, 0xc5, 0xce, 0xc1, 0xe1, 0xfe, 0x5e, 0xbb, 0x90, 0x15, 0xdc, - 0x39, 0xde, 0xdd, 0x3f, 0x54, 0xd4, 0xe2, 0x93, 0x62, 0xb5, 0xd6, 0x06, 0xeb, 0xef, 0xdf, 0x07, - 0x98, 0xa8, 0x89, 0x7c, 0x04, 0x2d, 0xe9, 0x88, 0xe7, 0xb6, 0xcb, 0xd5, 0x3f, 0x63, 0x88, 0x51, - 0x06, 0x9d, 0xef, 0xdd, 0xa0, 0x4d, 0xc5, 0xd8, 0x4d, 0xe9, 0x0a, 0x8a, 0xf7, 0xa0, 0xc1, 0x5f, - 0xb0, 0xc8, 0x09, 0x02, 0x5b, 0xb8, 0x3c, 0x62, 0xe8, 0x04, 0xf2, 0xbd, 0x1c, 0x5d, 0x31, 0xe4, - 0xbe, 0xa2, 0x2a, 0xc9, 0x4f, 0xa0, 0x20, 0xa4, 0x44, 0xfb, 0xaf, 0x6f, 0xbf, 0x7f, 0xe5, 0x76, - 0x6d, 0xf5, 0x07, 0x03, 0xaa, 0x7a, 0xa8, 0x8e, 0x41, 0x30, 0x42, 0x54, 0x5c, 0xab, 0xe3, 0xe1, - 0xe1, 0x11, 0x55, 0x3d, 0x54, 0x47, 0x29, 0x85, 0x09, 0x72, 0xd7, 0xe8, 0x38, 0x18, 0xf4, 0xa9, - 0xea, 0x41, 0x28, 0xac, 0xb8, 0x3c, 0x7c, 0xc1, 0x22, 0x81, 0x62, 0x9d, 0x0a, 0x8e, 0xb0, 0x75, - 0xf5, 0x08, 0xbb, 0x99, 0x5e, 0x74, 0x6a, 0x0c, 0xf2, 0x33, 0x28, 0xa1, 0x09, 0x74, 0x6a, 0x18, - 0x3e, 0x7f, 0x70, 0x8d, 0xe5, 0xc4, 0x51, 0x48, 0x75, 0x27, 0x65, 0xb2, 0xcf, 0x62, 0x6f, 0xc8, - 0x74, 0x6e, 0x89, 0x98, 0xad, 0x51, 0x40, 0x92, 0xf2, 0xe6, 0x01, 0xf9, 0x08, 0xc8, 0xb9, 0x23, - 0xec, 0x88, 0x8d, 0xb8, 0x64, 0x49, 0xd2, 0x8b, 0x60, 0xab, 0xd2, 0xf6, 0xb9, 0x23, 0x28, 0x32, - 0xfa, 0x9a, 0x4e, 0x3e, 0x80, 0xbc, 0x7c, 0x60, 0x30, 0x77, 0x19, 0x80, 0xf3, 0xf2, 0x01, 0x79, - 0x5f, 0x47, 0x1c, 0x5f, 0xb0, 0x90, 0x09, 0x0d, 0xb7, 0x7c, 0x2f, 0x4f, 0xb3, 0x44, 0xb5, 0xbd, - 0x8f, 0x60, 0x33, 0x0e, 0x43, 0xe6, 0x32, 0x21, 0x54, 0x40, 0x90, 0x9c, 0x07, 0xb6, 0xeb, 0x04, - 0x81, 0x0e, 0x7e, 0xd5, 0x5e, 0x81, 0xae, 0x67, 0xf8, 0x03, 0xce, 0x83, 0x5d, 0xc5, 0xd5, 0xee, - 0xbf, 0xed, 0x87, 0x4f, 0x79, 0x34, 0x42, 0x2d, 0xd8, 0x01, 0x17, 0x02, 0x81, 0x57, 0xed, 0x15, - 0x69, 0x2b, 0xc3, 0x39, 0xe4, 0x7a, 0xaa, 0x9f, 0xc2, 0x7a, 0xc4, 0xbc, 0x38, 0xf4, 0x1c, 0x95, - 0xdf, 0x4b, 0x47, 0xb2, 0x11, 0x0b, 0xa5, 0xc0, 0x60, 0x58, 0xed, 0x95, 0xe8, 0x5a, 0xca, 0xed, - 0xa7, 0x4c, 0x6d, 0x81, 0x1b, 0x63, 0xce, 0x23, 0xfb, 0x9b, 0x58, 0x67, 0x77, 0xf6, 0x37, 0xb1, - 0x13, 0xf8, 0xf2, 0x02, 0x43, 0x65, 0xb5, 0x57, 0xa6, 0x6b, 0x8a, 0xfd, 0x95, 0xe1, 0x7e, 0xa5, - 0x99, 0xaa, 0xe3, 0xcf, 0xa1, 0x93, 0xdd, 0x4b, 0x7b, 0x1c, 0xf1, 0x61, 0x64, 0x54, 0xbc, 0x86, - 0xfa, 0xa8, 0xd0, 0x9b, 0x59, 0x89, 0x93, 0x89, 0x80, 0x8a, 0x39, 0x7f, 0x53, 0x86, 0x42, 0x7f, - 0x30, 0x20, 0x1b, 0x50, 0x78, 0xc9, 0x22, 0xf4, 0x14, 0x0a, 0x4e, 0xaa, 0xa1, 0x86, 0xbf, 0x05, - 0xa5, 0x97, 0x3c, 0xf2, 0x74, 0xe4, 0x69, 0xf4, 0x72, 0x54, 0x37, 0x15, 0xeb, 0x3d, 0xa8, 0xab, - 0x6f, 0x1b, 0xc3, 0x85, 0x8e, 0x2c, 0x8d, 0x5e, 0x9e, 0x82, 0x22, 0xee, 0x23, 0x4d, 0x49, 0x6d, - 0x40, 0xc1, 0x65, 0x3a, 0xb4, 0xe4, 0x7b, 0x05, 0xaa, 0x1a, 0x66, 0x5c, 0xf7, 0xdc, 0x89, 0x04, - 0xe6, 0x5e, 0x8d, 0x5e, 0x91, 0xea, 0xa6, 0x19, 0x57, 0x7d, 0x27, 0xe3, 0x02, 0x0a, 0x94, 0x28, - 0x28, 0xe2, 0x64, 0xdc, 0xf7, 0x61, 0x45, 0x48, 0x95, 0x6d, 0x06, 0xce, 0x85, 0x3d, 0x12, 0x18, - 0x48, 0x1a, 0xbd, 0x32, 0x05, 0x21, 0xe5, 0x9e, 0x22, 0x1e, 0xa1, 0xd8, 0x36, 0x10, 0x16, 0x4a, - 0x5f, 0x5e, 0xd8, 0x11, 0x73, 0xf9, 0x30, 0xf4, 0x11, 0x34, 0x75, 0xa3, 0x98, 0x55, 0xcd, 0xa3, - 0x13, 0x96, 0xd9, 0x73, 0xa4, 0xfb, 0x4c, 0xd8, 0xb1, 0x94, 0x2c, 0x62, 0x3a, 0x34, 0x34, 0x7a, - 0x55, 0xda, 0x4a, 0x38, 0xa7, 0x9a, 0xa1, 0xe4, 0x3f, 0x86, 0xb5, 0x54, 0xde, 0xcc, 0xf2, 0x2b, - 0xe6, 0xa1, 0x09, 0x37, 0x7a, 0x35, 0x4a, 0x12, 0x26, 0x4d, 0x79, 0xc6, 0x3b, 0x4d, 0x56, 0xe6, - 0x04, 0x81, 0xb1, 0x5e, 0xa0, 0x2b, 0xe9, 0xa2, 0x9c, 0x20, 0x50, 0x92, 0x7f, 0x00, 0xb7, 0xd2, - 0xf1, 0x1d, 0xf7, 0x9b, 0xd8, 0x8f, 0x98, 0x97, 0x2e, 0xac, 0x85, 0xb3, 0xd4, 0xe9, 0xcd, 0x44, - 0x64, 0xc7, 0x48, 0x64, 0x16, 0xb8, 0x0f, 0x6f, 0xce, 0x0f, 0x90, 0x59, 0x69, 0x1b, 0xc7, 0x58, - 0xa1, 0xd6, 0xec, 0x18, 0x53, 0x2b, 0xee, 0x96, 0xa1, 0x68, 0xbf, 0x64, 0x51, 0xb7, 0x0a, 0x65, - 0x1b, 0xad, 0xa0, 0xdb, 0x84, 0x15, 0x3b, 0x63, 0x03, 0x28, 0xe1, 0x1a, 0x09, 0xdc, 0x4f, 0x94, - 0xc8, 0xec, 0x66, 0xb7, 0x05, 0x0d, 0x3b, 0xbb, 0x6f, 0xdd, 0x0d, 0x58, 0xb3, 0xe7, 0x77, 0xa8, - 0xbb, 0x06, 0xab, 0xf6, 0xec, 0x26, 0x74, 0x37, 0x61, 0xdd, 0x5e, 0xa0, 0xe9, 0x6e, 0x1b, 0x9a, - 0xf6, 0x94, 0x2e, 0xbb, 0x6f, 0x82, 0x65, 0x2f, 0xd5, 0x59, 0xf7, 0x6d, 0xb8, 0x6d, 0x5f, 0xa6, - 0x10, 0xeb, 0x37, 0x39, 0x28, 0x1c, 0x1e, 0x1e, 0x91, 0x37, 0xa1, 0x22, 0xe5, 0x53, 0xa9, 0xec, - 0x2b, 0x87, 0x3a, 0xba, 0x41, 0xcb, 0x8a, 0xa0, 0x6d, 0x4b, 0x73, 0x85, 0xe2, 0x26, 0xe8, 0x50, - 0x5c, 0xa1, 0xb9, 0xf7, 0x61, 0x55, 0xf2, 0xe7, 0x2c, 0x14, 0xf6, 0x98, 0x45, 0xb6, 0x60, 0x2e, - 0x0f, 0x3d, 0x13, 0xad, 0xf2, 0xb4, 0xa5, 0x59, 0x27, 0x2c, 0xea, 0x23, 0x43, 0xa9, 0x17, 0xa0, - 0x6a, 0x9b, 0xd9, 0x92, 0x6f, 0x35, 0x76, 0x77, 0x1d, 0x88, 0x3d, 0x37, 0x92, 0xf5, 0xeb, 0x32, - 0x14, 0x06, 0x83, 0xbe, 0x59, 0xc4, 0xd9, 0x64, 0x11, 0x7a, 0x89, 0x67, 0x47, 0x09, 0xfa, 0x14, - 0xaa, 0x0b, 0x26, 0xf0, 0xcd, 0xa1, 0xba, 0x62, 0x40, 0xbb, 0x14, 0xd5, 0x1a, 0x56, 0x85, 0x25, - 0xa8, 0xae, 0xe1, 0xb8, 0xc5, 0x79, 0x54, 0x27, 0xa0, 0x5d, 0x8a, 0xea, 0x7a, 0x02, 0xd7, 0x69, - 0x54, 0x2f, 0x86, 0x6b, 0xf3, 0xb5, 0xe1, 0xda, 0x7a, 0x7d, 0xb8, 0xb6, 0x5f, 0x13, 0xae, 0xab, - 0xbf, 0x13, 0x5c, 0xc9, 0x77, 0x00, 0xd7, 0xb5, 0xeb, 0xc1, 0xd5, 0xd8, 0x90, 0x32, 0x8d, 0xef, - 0x04, 0xba, 0xff, 0x27, 0x91, 0xfa, 0x3f, 0x15, 0x58, 0xc9, 0x66, 0x36, 0x08, 0xbb, 0x38, 0x0a, - 0x6d, 0xe9, 0x3c, 0xf7, 0xc3, 0xa1, 0x49, 0xfc, 0x92, 0xa8, 0xd6, 0x52, 0xac, 0x01, 0x72, 0xd2, - 0xdc, 0xef, 0x33, 0xe8, 0x9c, 0x33, 0x47, 0x29, 0x62, 0x9b, 0xd9, 0x81, 0x23, 0xd5, 0x41, 0xd5, - 0x1e, 0x3f, 0x7c, 0x90, 0x20, 0xaa, 0xd4, 0xcb, 0xd1, 0x75, 0x94, 0xd8, 0xdf, 0x66, 0x87, 0x9a, - 0x7f, 0xf2, 0xf0, 0x81, 0xc6, 0xd7, 0xe2, 0xce, 0x8f, 0x1e, 0xaa, 0xce, 0x05, 0xec, 0x9c, 0x9f, - 0xef, 0xfc, 0xe8, 0xe1, 0xa5, 0x9d, 0x1f, 0xa9, 0xce, 0x45, 0xec, 0x5c, 0x58, 0xd0, 0xf9, 0x91, - 0xee, 0xfc, 0x11, 0xb4, 0xa5, 0x3f, 0x62, 0xb6, 0xe4, 0xf6, 0x85, 0xcf, 0x02, 0x4f, 0x75, 0x2a, - 0x99, 0x58, 0xda, 0x50, 0x9c, 0x01, 0xff, 0x85, 0xa2, 0x27, 0x53, 0xdd, 0x64, 0x5c, 0xda, 0x23, - 0x5f, 0x8c, 0x23, 0xe6, 0xf9, 0x78, 0xf0, 0x33, 0x09, 0x7f, 0xd9, 0x40, 0x75, 0x83, 0x71, 0x79, - 0x94, 0xe5, 0xa7, 0x47, 0x60, 0x93, 0x47, 0x07, 0xce, 0xd8, 0xc6, 0x0b, 0x49, 0xf4, 0x1a, 0xf9, - 0x5e, 0x59, 0xe7, 0xd1, 0x81, 0x33, 0xa6, 0x8a, 0x6a, 0x7c, 0x5e, 0x22, 0x29, 0xc6, 0x8c, 0xb9, - 0xe7, 0x93, 0xc8, 0x5c, 0xa1, 0x2d, 0xc3, 0xea, 0x23, 0x47, 0xaf, 0xeb, 0x43, 0x68, 0x49, 0x2e, - 0x9d, 0x20, 0x23, 0x5e, 0x33, 0xd0, 0x6d, 0x20, 0x23, 0x2b, 0xfc, 0x09, 0x6c, 0x38, 0x2f, 0x9f, - 0xbf, 0x54, 0x1a, 0x13, 0x7e, 0xc0, 0x42, 0x37, 0x39, 0xba, 0xd7, 0x0d, 0x74, 0xd7, 0x0c, 0xbb, - 0xaf, 0xb9, 0x99, 0x33, 0x7c, 0x3b, 0x0e, 0x9d, 0x50, 0xbc, 0x54, 0x36, 0xa5, 0x4f, 0x3b, 0x26, - 0xa0, 0x03, 0x6d, 0x4d, 0x38, 0x78, 0xdc, 0x51, 0xf2, 0x9f, 0x43, 0xe7, 0xa9, 0x13, 0x08, 0x66, - 0xfb, 0xa1, 0x64, 0x51, 0x14, 0x8f, 0x33, 0xea, 0x6a, 0x18, 0x00, 0x6f, 0xa2, 0xc4, 0x41, 0x46, - 0x20, 0x9d, 0xee, 0x47, 0xd0, 0xcc, 0xee, 0xe8, 0x48, 0x18, 0x77, 0xb4, 0x42, 0x57, 0x58, 0xba, - 0x91, 0xf8, 0x4b, 0xda, 0xb7, 0xcf, 0x9a, 0x6b, 0xf7, 0x0d, 0xb8, 0x65, 0x2f, 0xb3, 0xc9, 0x65, - 0x4c, 0xb4, 0xb9, 0xa5, 0x4c, 0x65, 0x53, 0x88, 0xd4, 0x59, 0x9b, 0xe9, 0x5a, 0xd0, 0xb1, 0x97, - 0x98, 0x06, 0xa2, 0x75, 0x6a, 0xe7, 0x71, 0xbd, 0x73, 0x3b, 0xdc, 0x25, 0xd0, 0xb6, 0x67, 0xb6, - 0xb1, 0xdb, 0x81, 0x4d, 0x7b, 0xe1, 0x6e, 0xe1, 0x32, 0x66, 0xb7, 0x03, 0x17, 0xbe, 0x4c, 0xe7, - 0xdd, 0x55, 0x68, 0xd9, 0xd3, 0x1a, 0xb5, 0x7e, 0x5b, 0x81, 0xa2, 0xda, 0x2f, 0xb2, 0x0e, 0x25, - 0x3f, 0xf4, 0xd8, 0x2b, 0x1d, 0xa0, 0xa9, 0x6e, 0x90, 0x0f, 0xa1, 0x18, 0xf1, 0x80, 0x99, 0xfb, - 0x92, 0x9b, 0x0b, 0xee, 0x66, 0x29, 0x0f, 0x18, 0x45, 0x21, 0xf2, 0x16, 0x54, 0xf1, 0x16, 0x21, - 0x01, 0xad, 0x8a, 0xa1, 0x15, 0xa4, 0x68, 0xbb, 0xb3, 0xa0, 0xcc, 0x42, 0x2f, 0x41, 0x25, 0x26, - 0xc1, 0x2c, 0x34, 0xc0, 0x9a, 0x4d, 0x43, 0x4b, 0x49, 0x16, 0x3c, 0x9d, 0x86, 0xbe, 0x0b, 0xf5, - 0x20, 0x18, 0x25, 0xe1, 0xdd, 0x60, 0xae, 0x40, 0x6b, 0x41, 0x30, 0x1a, 0xa4, 0xf9, 0xc4, 0x44, - 0x08, 0x73, 0x8a, 0x8a, 0x41, 0xb3, 0x11, 0x12, 0x69, 0xd2, 0x81, 0x42, 0x63, 0x0d, 0xac, 0x7c, - 0xaf, 0x44, 0xcb, 0x4a, 0x60, 0x9c, 0x0c, 0x21, 0xa5, 0x48, 0xdc, 0xbe, 0xc1, 0x52, 0x99, 0xd6, - 0xa4, 0x14, 0x83, 0x34, 0x29, 0x98, 0xb7, 0x4f, 0x30, 0x10, 0x9d, 0xb5, 0x4f, 0xf2, 0x31, 0xac, - 0xcf, 0x9b, 0xd3, 0x48, 0x87, 0xef, 0x52, 0xaf, 0x4a, 0x57, 0x67, 0xdc, 0xd3, 0x72, 0xdf, 0xb4, - 0x62, 0x30, 0x3a, 0xef, 0x9b, 0x16, 0x7a, 0xec, 0x86, 0x89, 0xae, 0x8b, 0x3c, 0xf6, 0xc2, 0x53, - 0x5f, 0x7d, 0xee, 0xd4, 0xf7, 0x00, 0x56, 0xe7, 0x0c, 0xdb, 0x1c, 0xf8, 0x56, 0x68, 0x7b, 0xd6, - 0xdb, 0xe9, 0x75, 0xb7, 0x66, 0x4c, 0xd6, 0x9c, 0xf5, 0x1a, 0xb4, 0x39, 0xed, 0x5a, 0xb4, 0xae, - 0x61, 0x62, 0xc6, 0xe6, 0x80, 0xd7, 0xa4, 0x19, 0x9a, 0x02, 0x78, 0x1d, 0x6a, 0x76, 0x62, 0x5c, - 0xdd, 0x1a, 0x54, 0x6c, 0x6d, 0x49, 0xf3, 0x79, 0xb0, 0x8a, 0xb6, 0x19, 0x13, 0xc9, 0xb6, 0x45, - 0x92, 0x11, 0x9a, 0x8d, 0x47, 0x5e, 0x66, 0x9b, 0x17, 0xe0, 0xa3, 0x7b, 0x13, 0x36, 0xec, 0x45, - 0x3b, 0xb7, 0xd8, 0x09, 0x2c, 0x76, 0x43, 0x98, 0x00, 0x4c, 0x74, 0x8a, 0x52, 0x73, 0x1a, 0x45, - 0xf0, 0xcf, 0x68, 0xad, 0xdb, 0x80, 0x7a, 0x06, 0xe2, 0xda, 0x3f, 0x4c, 0xdf, 0xdb, 0xa4, 0xbe, - 0x25, 0xbd, 0x9d, 0x99, 0x9b, 0xee, 0x16, 0xdc, 0xb4, 0x17, 0x1f, 0xdb, 0xf1, 0x27, 0x66, 0x8f, - 0xe5, 0xf8, 0xcb, 0x8b, 0xce, 0xde, 0xe8, 0x8a, 0x16, 0x1e, 0xae, 0xd1, 0xeb, 0x2c, 0x3b, 0x3d, - 0x3f, 0x29, 0x56, 0x73, 0xed, 0xfc, 0x93, 0x62, 0x35, 0xdf, 0x2e, 0xd0, 0xa6, 0xe3, 0xba, 0x71, - 0xe4, 0xb8, 0x17, 0x7a, 0xad, 0xb4, 0xcd, 0x5e, 0x8d, 0x59, 0xe4, 0xa3, 0x57, 0x43, 0x8a, 0xf5, - 0x1f, 0x45, 0x80, 0xc9, 0x45, 0x34, 0xf9, 0x3d, 0x20, 0xe9, 0x3d, 0xde, 0xe4, 0xd6, 0x37, 0xb9, - 0xac, 0x6a, 0x27, 0xbc, 0x93, 0xc9, 0xed, 0xef, 0xfc, 0x75, 0x15, 0xfc, 0xff, 0x75, 0xd5, 0xc2, - 0xeb, 0xaa, 0x19, 0xfc, 0x57, 0x97, 0xdc, 0xfa, 0x5c, 0x76, 0x33, 0x52, 0x33, 0xd7, 0x11, 0x97, - 0xdc, 0x8c, 0x60, 0xbe, 0x3b, 0xbf, 0x87, 0xd7, 0x30, 0xdc, 0xef, 0xd0, 0xaa, 0xfe, 0x36, 0x07, - 0xf9, 0xdd, 0x03, 0x62, 0x41, 0x75, 0x1c, 0xf1, 0x17, 0xbe, 0x67, 0x6e, 0x68, 0x6a, 0x34, 0x6d, - 0x93, 0xdb, 0x00, 0x2e, 0x1f, 0x8d, 0x7c, 0x69, 0x8b, 0x73, 0x27, 0x29, 0xe7, 0x69, 0x4a, 0xff, - 0xdc, 0x21, 0x6d, 0x28, 0x44, 0xec, 0xa9, 0xb9, 0xf7, 0x57, 0x9f, 0x58, 0x49, 0x8a, 0x83, 0xc0, - 0x8e, 0x18, 0xe2, 0xc1, 0xdc, 0xfa, 0xd7, 0x15, 0x8d, 0x6a, 0x12, 0xde, 0x89, 0xc7, 0xa1, 0x1d, - 0x47, 0x81, 0xb9, 0xf0, 0x2f, 0x47, 0x71, 0x78, 0x1a, 0x05, 0x2a, 0xda, 0x3a, 0xae, 0xe4, 0x51, - 0x72, 0xcb, 0x8f, 0x0d, 0xeb, 0x2f, 0xca, 0x50, 0xde, 0xc5, 0x5a, 0x9c, 0xf5, 0xdf, 0x45, 0xa8, - 0x24, 0xa3, 0x4c, 0x17, 0x1a, 0x73, 0xb3, 0x85, 0xc6, 0xe9, 0x1a, 0x5c, 0x7e, 0xb6, 0x06, 0xb7, - 0xa0, 0x54, 0x55, 0x5c, 0x58, 0xaa, 0xda, 0x84, 0x72, 0xc4, 0x86, 0x6a, 0x57, 0xcb, 0x66, 0xad, - 0xd8, 0x22, 0xdd, 0xb9, 0x22, 0x5e, 0xe5, 0xb2, 0x22, 0x5e, 0xef, 0xc6, 0x4c, 0x19, 0x2f, 0x13, - 0x6a, 0x92, 0x92, 0x56, 0xd5, 0x9c, 0x07, 0xb2, 0x44, 0x9d, 0xc6, 0xea, 0xba, 0x56, 0xed, 0x3a, - 0x75, 0xad, 0x1f, 0x41, 0xfb, 0xcc, 0x71, 0x9f, 0xab, 0x25, 0x85, 0x9e, 0x1d, 0x72, 0x5f, 0x68, - 0xa8, 0x57, 0x69, 0x6b, 0x42, 0x3f, 0x56, 0x64, 0xf2, 0x31, 0x6c, 0x06, 0xfc, 0x65, 0xe2, 0xae, - 0xec, 0x91, 0xef, 0x46, 0x7c, 0x7c, 0xce, 0x43, 0x86, 0x01, 0xb8, 0x4a, 0xd7, 0x03, 0xfe, 0xd2, - 0xdc, 0x05, 0x1e, 0xa5, 0x3c, 0xf2, 0x36, 0xd4, 0xc7, 0x8e, 0xfb, 0x9c, 0x49, 0x7d, 0x5d, 0xa9, - 0x2f, 0x5a, 0x41, 0x93, 0x0e, 0xb9, 0x10, 0xa6, 0xa6, 0xd5, 0xb8, 0xaa, 0xa6, 0x95, 0x4f, 0x6a, - 0x5a, 0xb7, 0x27, 0x35, 0xad, 0xa6, 0x39, 0x97, 0x24, 0x04, 0xc5, 0x9e, 0x2a, 0x6c, 0xb5, 0xb0, - 0xb0, 0x55, 0x9c, 0x2a, 0x6c, 0x61, 0x80, 0x9a, 0xde, 0x8b, 0x14, 0x34, 0x46, 0x8b, 0xdd, 0x12, - 0x14, 0x6c, 0xd7, 0xc7, 0x30, 0x67, 0x86, 0xee, 0xae, 0x00, 0x4c, 0x70, 0xf7, 0xa4, 0x58, 0x2d, - 0xb4, 0x8b, 0x74, 0xbe, 0xc8, 0x6c, 0xfd, 0x65, 0x0e, 0xaa, 0x94, 0x89, 0x31, 0x0f, 0x05, 0x23, - 0x1f, 0xc0, 0xea, 0xc4, 0x62, 0x6c, 0x65, 0xc4, 0xa9, 0xe9, 0xb5, 0x44, 0xf6, 0x07, 0x0f, 0x3c, - 0xd2, 0x87, 0xcd, 0x71, 0xc4, 0x84, 0x3f, 0x0c, 0x99, 0x67, 0x8f, 0xb9, 0x90, 0x29, 0x24, 0x74, - 0x49, 0x7f, 0x52, 0xf9, 0x3e, 0x49, 0xc4, 0x4e, 0xb8, 0x90, 0xc6, 0xbc, 0xe9, 0xfa, 0x78, 0x01, - 0xd5, 0xfa, 0x4d, 0x0e, 0xd6, 0x76, 0x79, 0xf8, 0xd4, 0x8f, 0x46, 0x7d, 0x1e, 0x47, 0x2e, 0x3b, - 0x1d, 0x07, 0xdc, 0xf1, 0xac, 0x3f, 0xbb, 0x36, 0x2e, 0x16, 0xfe, 0x42, 0x7e, 0xf1, 0x2f, 0xfc, - 0x10, 0x5a, 0x2e, 0xf7, 0x98, 0x3a, 0x23, 0x47, 0x17, 0x63, 0xee, 0x87, 0xd2, 0x20, 0xbd, 0xa9, - 0xc8, 0xfb, 0x29, 0xd5, 0x82, 0x89, 0x8e, 0xac, 0xbf, 0xce, 0x41, 0xe1, 0x31, 0x93, 0xd6, 0xe0, - 0xfb, 0x58, 0x92, 0xf5, 0x71, 0x66, 0x37, 0xee, 0x41, 0x21, 0x8a, 0xf5, 0xe3, 0x86, 0x29, 0xdc, - 0x65, 0xbb, 0x50, 0x25, 0x62, 0xfd, 0x6b, 0x11, 0x8a, 0x87, 0xbe, 0x90, 0xd6, 0xbf, 0x14, 0xae, - 0xbd, 0xaa, 0x4f, 0x67, 0xca, 0xa2, 0x97, 0xbf, 0x54, 0xe8, 0xdd, 0x48, 0x8a, 0xa2, 0xca, 0x66, - 0x7f, 0x06, 0x30, 0x76, 0x86, 0x4c, 0x5f, 0xac, 0xa1, 0xce, 0xea, 0xdb, 0x9d, 0xb4, 0xff, 0x40, - 0x51, 0x4f, 0x9c, 0xa1, 0x1f, 0xe2, 0x20, 0xbd, 0x1c, 0xad, 0x29, 0x69, 0x24, 0xeb, 0xd0, 0xa2, - 0xab, 0x94, 0x98, 0x49, 0x99, 0x38, 0x7c, 0x49, 0xad, 0xa2, 0x97, 0x37, 0x75, 0x4a, 0x45, 0x51, - 0xfd, 0x3f, 0xc5, 0x52, 0xa5, 0xee, 0x5d, 0xba, 0xb2, 0x77, 0x01, 0x8b, 0x95, 0x49, 0xdf, 0xbb, - 0x53, 0x6e, 0x13, 0x5d, 0x9e, 0x3a, 0x24, 0xa4, 0x8e, 0x53, 0xa7, 0xbe, 0xda, 0x1f, 0x55, 0x2e, - 0xf5, 0x47, 0xbd, 0x92, 0xf6, 0x48, 0x0a, 0xa1, 0x2a, 0x35, 0xd5, 0xda, 0xc1, 0xe4, 0x6d, 0xa2, - 0x1b, 0x6c, 0x4e, 0x7e, 0x16, 0x13, 0xda, 0x64, 0xed, 0xc8, 0x9b, 0x2c, 0xa6, 0x5b, 0x81, 0x12, - 0x16, 0x81, 0xac, 0x57, 0x53, 0x88, 0x2c, 0x46, 0x71, 0x28, 0x3a, 0x39, 0xac, 0x2d, 0x2d, 0x33, - 0x02, 0x94, 0x21, 0x7f, 0x08, 0xad, 0x90, 0xbd, 0x92, 0x99, 0xe9, 0x0d, 0x14, 0x97, 0x6e, 0x0d, - 0x6d, 0xa8, 0x0e, 0x27, 0xc9, 0xe6, 0x58, 0xff, 0x5c, 0x84, 0x32, 0x1e, 0xc4, 0x85, 0xf5, 0x6f, - 0xf9, 0x6b, 0x5b, 0xd2, 0xa3, 0xa9, 0xfd, 0xcc, 0x5f, 0xb3, 0xea, 0xac, 0xda, 0xa6, 0xea, 0xac, - 0x3b, 0x16, 0xae, 0x55, 0x75, 0xc6, 0x6e, 0x13, 0xdb, 0x2d, 0xbe, 0xb6, 0xed, 0x4e, 0x5b, 0x00, - 0x06, 0x68, 0x65, 0xa1, 0x0b, 0x2d, 0xa0, 0x7c, 0xb9, 0x05, 0xe4, 0x97, 0x5a, 0xc0, 0xa2, 0x6d, - 0xfd, 0xf3, 0xac, 0xa7, 0xfd, 0x39, 0x54, 0xce, 0x62, 0x15, 0x52, 0x92, 0xad, 0x7d, 0x6f, 0x59, - 0x24, 0xc1, 0xed, 0xd8, 0xea, 0xa2, 0x30, 0x4d, 0x3a, 0x29, 0xc5, 0xe1, 0x51, 0xff, 0x85, 0x13, - 0x18, 0x8d, 0xdf, 0x9a, 0x53, 0xdc, 0x9e, 0x79, 0x01, 0x47, 0x53, 0x51, 0xeb, 0x97, 0x50, 0xd6, - 0x23, 0x91, 0xcf, 0x61, 0x45, 0x8f, 0xa5, 0xcd, 0xd3, 0x78, 0x99, 0xcb, 0xb4, 0x5f, 0xd7, 0xf2, - 0x7d, 0x25, 0xae, 0x52, 0x99, 0x49, 0xc5, 0xbb, 0x48, 0x75, 0xc3, 0x7a, 0x06, 0xe5, 0x5d, 0x27, - 0x74, 0x59, 0xf0, 0x3d, 0x79, 0xc7, 0xac, 0x1f, 0xfe, 0x9e, 0x4b, 0xf6, 0x7f, 0x97, 0x4b, 0x6b, - 0xf6, 0xb7, 0x60, 0x63, 0xba, 0x66, 0x6f, 0x9f, 0x9e, 0x1c, 0x7e, 0xb9, 0xb3, 0xd7, 0xbe, 0x41, - 0x36, 0x60, 0xd5, 0xb0, 0x1e, 0xef, 0x1f, 0xef, 0xd3, 0x9d, 0x81, 0xae, 0xde, 0xcf, 0x57, 0xf4, - 0xf3, 0x64, 0x13, 0x88, 0xa1, 0xf5, 0x4f, 0x8f, 0x8e, 0x76, 0xe8, 0xc1, 0xd7, 0x8a, 0x5e, 0x58, - 0x58, 0xe9, 0x2f, 0xce, 0x57, 0xfa, 0x4b, 0x0b, 0x2b, 0xfd, 0x65, 0xcc, 0x04, 0x32, 0x0f, 0x71, - 0x92, 0x4c, 0x60, 0x36, 0xfa, 0x57, 0xdb, 0x35, 0x5a, 0x31, 0xef, 0x77, 0xee, 0xfe, 0x53, 0x01, - 0xaa, 0x49, 0xf6, 0x36, 0x79, 0x7a, 0x92, 0xcb, 0x3e, 0x3d, 0x99, 0x7d, 0xf9, 0x92, 0x5f, 0xf0, - 0xf2, 0x65, 0xf1, 0x1b, 0x97, 0xc2, 0xb2, 0x37, 0x2e, 0xf7, 0xcd, 0x6b, 0x96, 0x22, 0xda, 0xfb, - 0x1b, 0x73, 0x79, 0xe4, 0xd6, 0xc0, 0x19, 0x0a, 0xfd, 0xa0, 0x50, 0x3f, 0x75, 0xb1, 0xa0, 0x1a, - 0x0b, 0x16, 0x79, 0x8e, 0x74, 0x4c, 0x22, 0x9d, 0xb6, 0xcd, 0x23, 0x9f, 0x72, 0xf2, 0xc8, 0xc7, - 0xfa, 0x87, 0x1c, 0xac, 0xea, 0x24, 0xfa, 0x8b, 0x88, 0x8f, 0x4c, 0x35, 0xdc, 0xfa, 0xc5, 0xb5, - 0xad, 0x30, 0xf3, 0x8e, 0x25, 0x3f, 0xf5, 0x8e, 0x65, 0x92, 0x1f, 0x17, 0xb2, 0xf9, 0xb1, 0xf5, - 0x28, 0x03, 0xe6, 0x1f, 0x43, 0x35, 0xc9, 0xcf, 0x0c, 0x8e, 0x56, 0xe7, 0xfe, 0x8e, 0xa6, 0x22, - 0xd6, 0x27, 0x50, 0x4b, 0x7f, 0x75, 0xc1, 0xd3, 0xc8, 0xf5, 0xec, 0xd3, 0xc8, 0x5a, 0xe6, 0xf9, - 0xe3, 0x5d, 0x0f, 0x1a, 0x53, 0x49, 0x37, 0x21, 0x50, 0x44, 0x2f, 0xa6, 0x7b, 0xe3, 0x37, 0xb9, - 0x0f, 0xb5, 0x64, 0x26, 0xb5, 0x6d, 0x85, 0xc5, 0xab, 0x99, 0xc8, 0x18, 0x55, 0x16, 0x12, 0x55, - 0xde, 0xfd, 0xc7, 0x1c, 0x90, 0x89, 0x0f, 0xda, 0xf3, 0xc5, 0xd8, 0x91, 0xee, 0xf9, 0x6b, 0xe5, - 0x86, 0x1b, 0x50, 0x7e, 0xc6, 0xcf, 0x26, 0xca, 0x2c, 0x3d, 0xe3, 0x67, 0x07, 0xde, 0x94, 0x9e, - 0x0a, 0x57, 0xea, 0x29, 0x3d, 0x17, 0x14, 0xaf, 0x71, 0x2e, 0xf8, 0xe0, 0x29, 0x34, 0xa7, 0xe9, - 0xe4, 0x6d, 0x78, 0xa3, 0x7f, 0x70, 0x74, 0x7a, 0xb8, 0x33, 0x38, 0xf8, 0xf2, 0xd8, 0x3e, 0xfa, - 0x72, 0x6f, 0xdf, 0x3e, 0x3d, 0xee, 0x9f, 0xec, 0xef, 0x1e, 0x7c, 0x71, 0xb0, 0xaf, 0xc0, 0xdb, - 0x81, 0xf5, 0x59, 0x81, 0xc1, 0xfe, 0x9f, 0x0c, 0xda, 0x39, 0x44, 0xfc, 0x0c, 0x67, 0xe7, 0x74, - 0xef, 0xe0, 0xcb, 0x76, 0x7e, 0xfb, 0xd7, 0x65, 0x68, 0xed, 0x28, 0xdb, 0x9e, 0xcc, 0x46, 0x3c, - 0x58, 0xd3, 0xb6, 0x37, 0xfd, 0x74, 0x74, 0xd9, 0x49, 0x5f, 0xcb, 0x6e, 0x25, 0x39, 0xef, 0x0f, - 0xae, 0x12, 0x33, 0x56, 0xf6, 0x6d, 0x0e, 0x6e, 0x27, 0xb9, 0x71, 0x2a, 0x98, 0xcd, 0x92, 0xc9, - 0xf6, 0xd2, 0x18, 0x32, 0x97, 0x51, 0xa7, 0xb3, 0xff, 0xe4, 0xb5, 0xfa, 0x98, 0xa5, 0xfc, 0x29, - 0xb4, 0x1f, 0x33, 0x39, 0xfd, 0xb7, 0x77, 0x97, 0x0c, 0xf4, 0x98, 0xc9, 0x74, 0xb2, 0x77, 0x2f, - 0x95, 0x31, 0x83, 0xdb, 0x40, 0x54, 0x2e, 0x3b, 0x25, 0x21, 0xc8, 0xb2, 0xae, 0x4a, 0x34, 0x1d, - 0xff, 0xbd, 0xcb, 0x85, 0xcc, 0x04, 0x6a, 0xbb, 0x94, 0xaf, 0x9c, 0x99, 0xe1, 0xfd, 0xcb, 0x23, - 0xf0, 0x95, 0xdb, 0x95, 0x88, 0x65, 0x66, 0xc1, 0x58, 0x78, 0x4d, 0xa3, 0x40, 0xd9, 0xab, 0x67, - 0x49, 0xc4, 0xcc, 0x2c, 0x2f, 0xe0, 0x96, 0x31, 0x3d, 0x83, 0x9a, 0x8c, 0xfb, 0x23, 0x1f, 0xce, - 0xfb, 0xd8, 0x39, 0x1f, 0x99, 0xce, 0xf8, 0xd1, 0xf5, 0x84, 0xf5, 0xbc, 0xdd, 0x2f, 0xbe, 0x7e, - 0x77, 0xe8, 0xcb, 0xf3, 0xf8, 0x6c, 0xcb, 0xe5, 0xa3, 0xe4, 0x61, 0xbe, 0x7e, 0x5c, 0xef, 0xf2, - 0x20, 0x21, 0xfc, 0x36, 0xdf, 0x38, 0xf4, 0x5f, 0xb0, 0x3f, 0xc2, 0x43, 0x20, 0x97, 0xfc, 0xbf, - 0xf2, 0x4d, 0xd3, 0xfe, 0xf4, 0x53, 0x24, 0x9c, 0x95, 0xb1, 0xcb, 0x4f, 0xfe, 0x37, 0x00, 0x00, - 0xff, 0xff, 0xe2, 0x6e, 0x13, 0x01, 0x0b, 0x30, 0x00, 0x00, + // 4046 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x7a, 0x4b, 0x6f, 0x1c, 0x49, + 0x72, 0xbf, 0xfa, 0xdd, 0x1d, 0xcd, 0x7e, 0x30, 0xf9, 0x50, 0xab, 0x34, 0x1a, 0x69, 0x34, 0xa3, + 0x5d, 0xed, 0x68, 0x96, 0xd2, 0x9f, 0x3b, 0xda, 0xf9, 0x53, 0xb3, 0xb3, 0x5e, 0x36, 0xc9, 0x51, + 0x53, 0x26, 0x29, 0x4e, 0x76, 0x13, 0xf6, 0x8e, 0xb1, 0x28, 0x14, 0xab, 0x53, 0xcd, 0x92, 0xaa, + 0x2b, 0x7b, 0x2a, 0xb3, 0x24, 0x71, 0x01, 0x1f, 0x0c, 0xec, 0x61, 0x00, 0x1f, 0x0c, 0xfb, 0x0b, + 0x78, 0x01, 0xc3, 0x30, 0xbc, 0x57, 0xc3, 0x47, 0x5f, 0x0c, 0xf8, 0x6c, 0x18, 0xfe, 0x0a, 0x3e, + 0xf9, 0xee, 0xa3, 0x01, 0x23, 0x23, 0xb3, 0xaa, 0xab, 0x5f, 0x24, 0xb5, 0x98, 0x01, 0x7c, 0xf0, + 0xad, 0x32, 0x22, 0x32, 0x33, 0x2a, 0x32, 0x7e, 0x11, 0x91, 0x0f, 0x78, 0xdf, 0xf7, 0x5e, 0xb3, + 0x57, 0x9e, 0xb4, 0x9d, 0x01, 0x0b, 0xa4, 0x2d, 0xbc, 0x61, 0xe4, 0x3b, 0xd2, 0xe3, 0xc1, 0xc6, + 0x28, 0xe4, 0x92, 0x93, 0x92, 0xe1, 0x5b, 0x1f, 0xa0, 0xc0, 0xc3, 0x29, 0x71, 0x26, 0x44, 0x22, + 0x6b, 0xbd, 0x3f, 0xe0, 0x7c, 0xe0, 0xb3, 0x87, 0xd8, 0x3a, 0x8d, 0x5e, 0x3c, 0xec, 0x47, 0x61, + 0x6a, 0x2c, 0xeb, 0xf6, 0x34, 0x5f, 0x7a, 0x43, 0x26, 0xa4, 0x33, 0x1c, 0x19, 0x81, 0x1b, 0xf1, + 0xe8, 0xae, 0xcf, 0xa3, 0xbe, 0x9e, 0xc3, 0xb0, 0x56, 0x63, 0xd6, 0x90, 0xf7, 0x99, 0x2f, 0x34, + 0xf5, 0xee, 0xbf, 0xe5, 0x60, 0xb5, 0x9b, 0xa8, 0x4c, 0xa3, 0xa0, 0x1b, 0x0d, 0x87, 0x4e, 0x78, + 0x4e, 0xd6, 0xa1, 0x38, 0x72, 0x84, 0x60, 0xfd, 0x56, 0xe6, 0x4e, 0xe6, 0x7e, 0x81, 0x9a, 0x96, + 0xa2, 0xbf, 0x70, 0x3c, 0x9f, 0xf5, 0x5b, 0x59, 0x4d, 0xd7, 0x2d, 0x72, 0x0b, 0x60, 0xc0, 0xbd, + 0x60, 0x60, 0xbf, 0x61, 0xbe, 0xdf, 0xca, 0xdd, 0xc9, 0xdc, 0xaf, 0xd0, 0x0a, 0x52, 0xfe, 0x88, + 0xf9, 0xbe, 0x62, 0x4b, 0x6e, 0x7b, 0xc3, 0x51, 0xc8, 0x5f, 0xb3, 0x56, 0x5e, 0xb3, 0x25, 0xdf, + 0xd7, 0x04, 0xf2, 0x39, 0x14, 0x3d, 0x21, 0x22, 0x26, 0x5a, 0x85, 0x3b, 0xb9, 0xfb, 0xd5, 0xcd, + 0x0f, 0x37, 0x8c, 0xb6, 0x1b, 0xf3, 0x94, 0xdb, 0xd8, 0x57, 0xb2, 0xd4, 0x74, 0x21, 0x5f, 0xc1, + 0x92, 0x7b, 0xe6, 0x48, 0xfb, 0xcc, 0x13, 0x92, 0x87, 0xe7, 0xad, 0x22, 0x0e, 0xb1, 0x71, 0xf1, + 0x10, 0x3b, 0x67, 0x8e, 0xec, 0xe8, 0x0e, 0x7b, 0x81, 0x0c, 0xcf, 0x69, 0xd5, 0x1d, 0x53, 0xac, + 0xaf, 0xa1, 0x39, 0x2d, 0x40, 0x9a, 0x90, 0x7b, 0xc5, 0xce, 0xd1, 0x1c, 0x15, 0xaa, 0x3e, 0xc9, + 0x23, 0x28, 0xbc, 0x76, 0xfc, 0x88, 0xa1, 0x29, 0xaa, 0x9b, 0x56, 0x32, 0xa3, 0xb6, 0xbb, 0x1a, + 0x61, 0x87, 0x07, 0x92, 0xbd, 0x95, 0x54, 0x0b, 0x3e, 0xc9, 0xfe, 0xff, 0x8c, 0x65, 0x43, 0x01, + 0xf5, 0x27, 0x77, 0xa0, 0xda, 0x67, 0xc2, 0x0d, 0xbd, 0x91, 0xd2, 0xcd, 0x0c, 0x9c, 0x26, 0x91, + 0xf7, 0x01, 0x44, 0x34, 0x18, 0x30, 0x81, 0x02, 0x59, 0x14, 0x48, 0x51, 0xc8, 0x2a, 0x14, 0x7c, + 0xe7, 0x94, 0xc5, 0xf6, 0xd6, 0x8d, 0xbb, 0x7f, 0x7d, 0x04, 0xb5, 0x89, 0x7f, 0x26, 0x75, 0xc8, + 0x7a, 0x7d, 0x33, 0x41, 0xd6, 0xc3, 0xc5, 0x1a, 0x85, 0xfc, 0x25, 0x73, 0xa5, 0xed, 0xf5, 0xcd, + 0xb8, 0x15, 0x43, 0xd9, 0xef, 0x93, 0xc7, 0x50, 0x14, 0xd2, 0x91, 0x91, 0xc0, 0x71, 0xeb, 0x9b, + 0xb7, 0xe6, 0x9b, 0x72, 0xa3, 0x8b, 0x42, 0xd4, 0x08, 0x93, 0x07, 0xb0, 0xac, 0x9d, 0x3a, 0xfd, + 0x57, 0x7a, 0xa9, 0x9b, 0xc8, 0xd8, 0x4d, 0xfd, 0xda, 0x2a, 0x14, 0x58, 0x18, 0xf2, 0xb0, 0x55, + 0xd0, 0xaa, 0x63, 0x83, 0x6c, 0x01, 0xb8, 0x21, 0x73, 0x24, 0xeb, 0xdb, 0x8e, 0x6c, 0x15, 0x8d, + 0x59, 0xb5, 0xd7, 0x6f, 0xc4, 0x5e, 0xbf, 0xd1, 0x8b, 0xbd, 0x9e, 0x56, 0x8c, 0xf4, 0xb6, 0x24, + 0x1b, 0x90, 0x7f, 0xc9, 0x4f, 0x45, 0xab, 0x84, 0xab, 0x6f, 0x2d, 0x50, 0xf9, 0x19, 0x3f, 0xa5, + 0x28, 0xa7, 0x6c, 0xa0, 0xb5, 0x0d, 0x9c, 0x21, 0x6b, 0x55, 0xb4, 0x0d, 0x90, 0x72, 0xe4, 0x0c, + 0x19, 0xf9, 0x02, 0xea, 0xc2, 0x65, 0x81, 0x13, 0x7a, 0xdc, 0x1e, 0x84, 0x3c, 0x1a, 0xb5, 0x00, + 0xb5, 0x59, 0x1f, 0x0f, 0x6c, 0xd8, 0x4f, 0x15, 0x97, 0xd6, 0x44, 0xba, 0x49, 0x1e, 0x43, 0x99, + 0x05, 0x7d, 0xfd, 0x1b, 0xd5, 0x4b, 0x7f, 0xa3, 0x84, 0xb2, 0xdb, 0x92, 0xdc, 0x84, 0xca, 0x4b, + 0x7e, 0x6a, 0xbb, 0x3c, 0x0a, 0x64, 0x6b, 0x09, 0x01, 0x56, 0x7e, 0xc9, 0x4f, 0x77, 0x54, 0x9b, + 0x7c, 0x00, 0x4b, 0x1a, 0x84, 0x86, 0x5f, 0x43, 0x7e, 0x55, 0xd3, 0x12, 0x11, 0x8d, 0x47, 0x23, + 0x52, 0xd7, 0x22, 0x9a, 0xa6, 0x45, 0x7e, 0x08, 0x8d, 0x20, 0x1a, 0xa6, 0xe2, 0x94, 0x68, 0x35, + 0x50, 0xaa, 0x1e, 0x44, 0xc3, 0xb1, 0xb1, 0x04, 0xd9, 0x84, 0x42, 0x24, 0x9c, 0x01, 0x6b, 0x35, + 0x51, 0xff, 0xf7, 0x16, 0x58, 0xf4, 0x44, 0xc9, 0x50, 0x2d, 0xaa, 0x5c, 0xda, 0xe5, 0x81, 0x1b, + 0x85, 0x21, 0x0b, 0xdc, 0xf3, 0xd6, 0xb2, 0x9e, 0x3e, 0x45, 0x22, 0x0f, 0x20, 0xaf, 0x02, 0x50, + 0x8b, 0xa0, 0x67, 0x5d, 0x9f, 0x33, 0xe8, 0x21, 0xef, 0x33, 0x8a, 0x42, 0xe4, 0x73, 0x28, 0x0d, + 0x99, 0x0c, 0x3d, 0x57, 0xb4, 0x56, 0x50, 0x89, 0x0f, 0x16, 0x28, 0x41, 0xa3, 0xe0, 0x50, 0x0b, + 0xd2, 0xb8, 0x87, 0xb2, 0x85, 0xd0, 0x60, 0xb7, 0x7f, 0x2d, 0x64, 0xbf, 0xb5, 0x7a, 0x27, 0x73, + 0x7f, 0x89, 0x56, 0x0d, 0xed, 0x6b, 0x21, 0xfb, 0xe4, 0x23, 0xa8, 0x62, 0x0c, 0x31, 0xd6, 0x5a, + 0x53, 0xea, 0x76, 0xae, 0x51, 0x40, 0x22, 0x9a, 0xeb, 0xdb, 0x4c, 0x86, 0x6c, 0x40, 0xd6, 0xf5, + 0x5a, 0xeb, 0xa8, 0xc0, 0x8d, 0x05, 0x0a, 0xec, 0xec, 0x77, 0x32, 0x34, 0xeb, 0x7a, 0x4a, 0xfe, + 0x17, 0x50, 0x16, 0xce, 0x70, 0xe4, 0x7b, 0xc1, 0xa0, 0x75, 0x1d, 0x7b, 0xdd, 0x5e, 0x04, 0x20, + 0x23, 0xd6, 0xc9, 0xd2, 0xa4, 0xcb, 0xb7, 0x99, 0x8c, 0xf5, 0x17, 0x45, 0xc8, 0x3d, 0xe3, 0xa7, + 0x33, 0xb8, 0xdd, 0x4a, 0x80, 0x99, 0x45, 0xf3, 0x7d, 0xb0, 0xd8, 0xcb, 0xa7, 0xc1, 0x79, 0x17, + 0x96, 0xbc, 0x40, 0xc8, 0x30, 0x72, 0xf5, 0x9a, 0xeb, 0x88, 0x31, 0x41, 0x1b, 0x63, 0x32, 0x9f, + 0xc6, 0xe4, 0x8f, 0x81, 0x68, 0xa0, 0xb0, 0xb7, 0x23, 0xe6, 0x4a, 0xe3, 0x33, 0x1a, 0xb6, 0x1a, + 0xf0, 0x7b, 0x29, 0xc6, 0x38, 0x26, 0x15, 0x53, 0x31, 0x89, 0x10, 0xc8, 0x4b, 0x67, 0xa0, 0xd1, + 0x59, 0xa1, 0xf8, 0xad, 0x9c, 0x3d, 0xe4, 0x7c, 0xa8, 0x01, 0x58, 0x46, 0xe9, 0xb2, 0x22, 0x20, + 0xfe, 0xb6, 0x00, 0x84, 0x74, 0x42, 0x13, 0x09, 0xe0, 0xf2, 0x48, 0x60, 0xa4, 0xb7, 0xe5, 0xef, + 0x8b, 0xbd, 0xeb, 0x50, 0x42, 0x75, 0xbc, 0x3e, 0x22, 0xaf, 0x42, 0x8b, 0xaa, 0xb9, 0xdf, 0x27, + 0x3f, 0x8d, 0x81, 0x50, 0xc3, 0xc1, 0xee, 0x5c, 0x60, 0xf4, 0x09, 0x30, 0xa4, 0xbc, 0xb7, 0x7e, + 0xa1, 0xf7, 0x3e, 0xe3, 0xa7, 0x33, 0xde, 0x7b, 0x1b, 0xaa, 0x49, 0xfc, 0xf1, 0xfa, 0x08, 0x51, + 0x15, 0xfb, 0x0d, 0x69, 0x1f, 0x13, 0x31, 0xba, 0x8c, 0xc6, 0x67, 0x81, 0x9a, 0x96, 0xf5, 0x2b, + 0x28, 0xa0, 0x16, 0xe4, 0x3e, 0x34, 0x55, 0xea, 0xb1, 0x65, 0x14, 0x06, 0xc2, 0x78, 0xb8, 0xce, + 0xe5, 0x75, 0x45, 0xef, 0x29, 0xb2, 0x0e, 0x09, 0x1f, 0xc3, 0xb2, 0x13, 0xf5, 0x3d, 0x3e, 0x21, + 0xaa, 0xd3, 0x7b, 0x03, 0x19, 0x63, 0xd9, 0xbb, 0x1c, 0x8a, 0xda, 0xb3, 0x08, 0x81, 0x7a, 0xb7, + 0xb7, 0xdd, 0x3b, 0xe9, 0xda, 0xc7, 0x7b, 0x47, 0xbb, 0xfb, 0x47, 0x4f, 0x9b, 0xd7, 0x52, 0x34, + 0x7a, 0x72, 0x74, 0xa4, 0x68, 0x19, 0xb2, 0x0a, 0x4d, 0x43, 0xdb, 0x79, 0x7e, 0x78, 0x7c, 0xb0, + 0xd7, 0xdb, 0xdb, 0x6d, 0x66, 0xc9, 0x32, 0xd4, 0x0c, 0xf5, 0xcb, 0xed, 0xfd, 0x83, 0xbd, 0xdd, + 0x66, 0x2e, 0x2d, 0xb8, 0x7d, 0xb4, 0xb3, 0x77, 0xa0, 0xa8, 0xf9, 0x67, 0xf9, 0x72, 0xa5, 0x09, + 0xd6, 0xdf, 0xdd, 0x03, 0x18, 0x9b, 0x89, 0x7c, 0x02, 0x0d, 0xe9, 0x88, 0x57, 0xb6, 0xcb, 0xd5, + 0x3f, 0x63, 0xa2, 0x51, 0x0e, 0x9d, 0xed, 0x5c, 0xa3, 0x75, 0xc5, 0xd8, 0x49, 0xe8, 0x0a, 0x90, + 0xf7, 0xa1, 0xc6, 0x5f, 0xb3, 0xd0, 0xf1, 0x7d, 0x5b, 0xb8, 0x3c, 0x64, 0x18, 0x0a, 0xb2, 0x9d, + 0x0c, 0x5d, 0x32, 0xe4, 0xae, 0xa2, 0x2a, 0xc9, 0xcf, 0x20, 0x27, 0xa4, 0x44, 0xff, 0xaf, 0x6e, + 0xde, 0xbb, 0x74, 0xb9, 0x36, 0xba, 0xbd, 0x1e, 0x55, 0x3d, 0x54, 0x47, 0xdf, 0x1f, 0x22, 0x2a, + 0xae, 0xd4, 0xf1, 0xe0, 0xe0, 0x90, 0xaa, 0x1e, 0xaa, 0xa3, 0x94, 0xc2, 0xa4, 0xba, 0x2b, 0x74, + 0xec, 0xf5, 0xba, 0x54, 0xf5, 0x20, 0x14, 0x96, 0x5c, 0x1e, 0xbc, 0x66, 0xa1, 0x40, 0xb1, 0x56, + 0x09, 0x47, 0xd8, 0xb8, 0x7c, 0x84, 0x9d, 0x54, 0x2f, 0x3a, 0x31, 0x06, 0xf9, 0x19, 0x14, 0xd0, + 0x05, 0x5a, 0x15, 0x4c, 0xa2, 0x3f, 0xb8, 0x82, 0x3a, 0x51, 0x18, 0x50, 0xdd, 0x49, 0xb9, 0xec, + 0xcb, 0xa8, 0x3f, 0x60, 0xba, 0xc2, 0x44, 0xcc, 0x56, 0x28, 0x20, 0x49, 0xc5, 0x74, 0x9f, 0x7c, + 0x02, 0xe4, 0xcc, 0x11, 0x76, 0xc8, 0x86, 0x5c, 0xb2, 0xb8, 0xf4, 0x45, 0xb0, 0x95, 0x69, 0xf3, + 0xcc, 0x11, 0x14, 0x19, 0x5d, 0x4d, 0x27, 0x1f, 0x43, 0x56, 0x3e, 0x32, 0x98, 0xbb, 0x08, 0xc0, + 0x59, 0xf9, 0x88, 0xdc, 0xd3, 0x79, 0xc7, 0x13, 0x2c, 0x60, 0x42, 0xc3, 0x2d, 0xdb, 0xc9, 0xd2, + 0x34, 0x51, 0x2d, 0xef, 0x16, 0xac, 0x47, 0x41, 0xc0, 0x5c, 0x26, 0x84, 0x4a, 0x0b, 0x92, 0x73, + 0xdf, 0x76, 0x1d, 0xdf, 0xd7, 0x29, 0xb0, 0xdc, 0xc9, 0xd1, 0xd5, 0x14, 0xbf, 0xc7, 0xb9, 0xbf, + 0xa3, 0xb8, 0x3a, 0x09, 0x34, 0xbd, 0xe0, 0x05, 0x0f, 0x87, 0x68, 0x05, 0xdb, 0xe7, 0x42, 0x20, + 0xf0, 0xca, 0x9d, 0x3c, 0x6d, 0xa4, 0x38, 0x07, 0x5c, 0x4f, 0xf5, 0x53, 0x58, 0x0d, 0x59, 0x3f, + 0x0a, 0xfa, 0x8e, 0xaa, 0xf2, 0xa5, 0x23, 0xd9, 0x90, 0x05, 0x52, 0x60, 0x4a, 0x2c, 0x77, 0x0a, + 0x74, 0x25, 0xe1, 0x76, 0x13, 0xa6, 0xf6, 0xc0, 0xb5, 0x11, 0xe7, 0xa1, 0xfd, 0x4d, 0xa4, 0x6b, + 0x3c, 0xfb, 0x9b, 0xc8, 0xf1, 0x3d, 0x79, 0x8e, 0x09, 0xb3, 0xdc, 0x29, 0xd2, 0x15, 0xc5, 0xfe, + 0xca, 0x70, 0xbf, 0xd2, 0x4c, 0xd5, 0xf1, 0xe7, 0xd0, 0x4a, 0xaf, 0xa5, 0x3d, 0x0a, 0xf9, 0x20, + 0x34, 0x26, 0x5e, 0x41, 0x7b, 0x94, 0xe8, 0xf5, 0xb4, 0xc4, 0xf1, 0x58, 0x40, 0xe5, 0x9c, 0xbf, + 0x2a, 0x42, 0xae, 0xdb, 0xeb, 0x91, 0x35, 0xc8, 0xbd, 0x61, 0x21, 0x46, 0x0a, 0x05, 0x27, 0xd5, + 0x50, 0xc3, 0xdf, 0x80, 0xc2, 0x1b, 0x1e, 0xf6, 0x75, 0xe6, 0xa9, 0x75, 0x32, 0x54, 0x37, 0x15, + 0xeb, 0x23, 0xa8, 0xaa, 0x6f, 0x1b, 0xd3, 0x85, 0xce, 0x2c, 0xb5, 0x4e, 0x96, 0x82, 0x22, 0xee, + 0x21, 0x4d, 0x49, 0xad, 0x41, 0xce, 0x65, 0x3a, 0xb5, 0x64, 0x3b, 0x39, 0xaa, 0x1a, 0x66, 0x5c, + 0xf7, 0xcc, 0x09, 0x05, 0x56, 0x60, 0xb5, 0x4e, 0x9e, 0xea, 0xa6, 0x19, 0x57, 0x7d, 0xc7, 0xe3, + 0x02, 0x0a, 0x14, 0x28, 0x28, 0xe2, 0x78, 0xdc, 0x7b, 0xb0, 0x24, 0xa4, 0xaa, 0x39, 0x7d, 0xe7, + 0xdc, 0x1e, 0x0a, 0x4c, 0x24, 0xb5, 0x4e, 0x91, 0x82, 0x90, 0x72, 0x57, 0x11, 0x0f, 0x51, 0x6c, + 0x13, 0x08, 0x0b, 0xa4, 0x27, 0xcf, 0xed, 0x90, 0xb9, 0x7c, 0x10, 0x78, 0x08, 0x9a, 0xaa, 0x31, + 0xcc, 0xb2, 0xe6, 0xd1, 0x31, 0xcb, 0xac, 0x39, 0xd2, 0x3d, 0x26, 0xec, 0x48, 0x4a, 0x16, 0x32, + 0x9d, 0x1a, 0x6a, 0x9d, 0x32, 0x6d, 0xc4, 0x9c, 0x13, 0xcd, 0x50, 0xf2, 0x9f, 0xc2, 0x4a, 0x22, + 0x6f, 0x66, 0xf9, 0x35, 0xeb, 0xa3, 0x0b, 0xd7, 0x3a, 0x15, 0x4a, 0x62, 0x26, 0x4d, 0x78, 0x26, + 0x3a, 0x8d, 0x35, 0x73, 0x7c, 0xdf, 0x78, 0x2f, 0xd0, 0xa5, 0x44, 0x29, 0xc7, 0xf7, 0x95, 0xe4, + 0x1f, 0xc0, 0x8d, 0x64, 0x7c, 0xc7, 0xfd, 0x26, 0xf2, 0x42, 0xd6, 0x4f, 0x14, 0x6b, 0xe0, 0x2c, + 0x55, 0x7a, 0x3d, 0x16, 0xd9, 0x36, 0x12, 0x29, 0x05, 0xf7, 0xe0, 0xbd, 0xd9, 0x01, 0x52, 0x9a, + 0x36, 0x71, 0x8c, 0x25, 0x6a, 0x4d, 0x8f, 0x31, 0xa1, 0x71, 0xbb, 0x08, 0x79, 0xfb, 0x0d, 0x0b, + 0xdb, 0x65, 0x28, 0xda, 0xe8, 0x05, 0xed, 0x3a, 0x2c, 0xd9, 0x29, 0x1f, 0x40, 0x09, 0xd7, 0x48, + 0xe0, 0x7a, 0xa2, 0x44, 0x6a, 0x35, 0xdb, 0x0d, 0xa8, 0xd9, 0xe9, 0x75, 0x6b, 0xaf, 0xc1, 0x8a, + 0x3d, 0xbb, 0x42, 0xed, 0x15, 0x58, 0xb6, 0xa7, 0x17, 0xa1, 0xbd, 0x0e, 0xab, 0xf6, 0x1c, 0x4b, + 0xb7, 0x9b, 0x50, 0xb7, 0x27, 0x6c, 0xd9, 0x7e, 0x0f, 0x2c, 0x7b, 0xa1, 0xcd, 0xda, 0xb7, 0xe1, + 0x96, 0x7d, 0x91, 0x41, 0xac, 0xdf, 0x66, 0x20, 0x77, 0x70, 0x70, 0x48, 0xde, 0x83, 0x92, 0x94, + 0x2f, 0xa4, 0xf2, 0xaf, 0x0c, 0xda, 0xe8, 0x1a, 0x2d, 0x2a, 0x82, 0xf6, 0x2d, 0xcd, 0x15, 0x8a, + 0x1b, 0xa3, 0x43, 0x71, 0x85, 0xe6, 0x3e, 0x84, 0x65, 0xc9, 0x5f, 0xb1, 0x40, 0xd8, 0x23, 0x16, + 0xda, 0x82, 0xb9, 0x3c, 0xe8, 0x9b, 0x6c, 0x95, 0xa5, 0x0d, 0xcd, 0x3a, 0x66, 0x61, 0x17, 0x19, + 0xca, 0xbc, 0x00, 0x65, 0xdb, 0xcc, 0x16, 0x7f, 0xab, 0xb1, 0xdb, 0xab, 0x40, 0xec, 0x99, 0x91, + 0xac, 0xdf, 0x14, 0x21, 0xd7, 0xeb, 0x75, 0x8d, 0x12, 0xa7, 0x63, 0x25, 0xb4, 0x8a, 0xa7, 0x87, + 0x31, 0xfa, 0x14, 0xaa, 0x73, 0x26, 0xf1, 0xcd, 0xa0, 0xba, 0x64, 0x40, 0xbb, 0x10, 0xd5, 0x1a, + 0x56, 0xb9, 0x05, 0xa8, 0xae, 0xe0, 0xb8, 0xf9, 0x59, 0x54, 0xc7, 0xa0, 0x5d, 0x88, 0xea, 0x6a, + 0x0c, 0xd7, 0x49, 0x54, 0xcf, 0x87, 0x6b, 0xfd, 0x9d, 0xe1, 0xda, 0x78, 0x77, 0xb8, 0x36, 0xdf, + 0x11, 0xae, 0xcb, 0xbf, 0x17, 0x5c, 0xc9, 0x77, 0x00, 0xd7, 0x95, 0xab, 0xc1, 0xd5, 0xf8, 0x90, + 0x72, 0x8d, 0xef, 0x04, 0xba, 0xff, 0x2b, 0x91, 0xfa, 0x5f, 0x25, 0x58, 0x4a, 0x57, 0x36, 0x08, + 0xbb, 0x28, 0x0c, 0x6c, 0xe9, 0xbc, 0xf2, 0x82, 0x81, 0x29, 0xfc, 0xe2, 0xac, 0xd6, 0x50, 0xac, + 0x1e, 0x72, 0x92, 0xda, 0xef, 0x73, 0x68, 0x9d, 0x31, 0x47, 0x19, 0x62, 0x93, 0xd9, 0xbe, 0x23, + 0xd5, 0x76, 0xd5, 0x1e, 0x3d, 0x7e, 0x14, 0x23, 0xaa, 0xd0, 0xc9, 0xd0, 0x55, 0x94, 0xd8, 0xdb, + 0x64, 0x07, 0x9a, 0x7f, 0xfc, 0xf8, 0x91, 0xc6, 0xd7, 0xfc, 0xce, 0x5b, 0x8f, 0x55, 0xe7, 0x1c, + 0x76, 0xce, 0xce, 0x76, 0xde, 0x7a, 0x7c, 0x61, 0xe7, 0x2d, 0xd5, 0x39, 0x8f, 0x9d, 0x73, 0x73, + 0x3a, 0x6f, 0xe9, 0xce, 0x9f, 0x40, 0x53, 0x7a, 0x43, 0x66, 0x4b, 0x6e, 0x9f, 0x7b, 0xcc, 0xef, + 0xab, 0x4e, 0x05, 0x93, 0x4b, 0x6b, 0x8a, 0xd3, 0xe3, 0xbf, 0x54, 0xf4, 0x78, 0xaa, 0xeb, 0x8c, + 0x4b, 0x7b, 0xe8, 0x89, 0x51, 0xc8, 0xfa, 0x1e, 0x6e, 0xfc, 0x4c, 0xc1, 0x5f, 0x34, 0x50, 0x5d, + 0x63, 0x5c, 0x1e, 0xa6, 0xf9, 0xc9, 0x46, 0xd8, 0xd4, 0xd1, 0xbe, 0x33, 0xb2, 0xf1, 0x58, 0x12, + 0xa3, 0x46, 0xb6, 0x53, 0xd4, 0x75, 0xb4, 0xef, 0x8c, 0xa8, 0xa2, 0x9a, 0x98, 0x17, 0x4b, 0x8a, + 0x11, 0x63, 0xee, 0xd9, 0x38, 0x33, 0x97, 0x68, 0xc3, 0xb0, 0xba, 0xc8, 0xd1, 0x7a, 0x3d, 0x80, + 0x86, 0xe4, 0xd2, 0xf1, 0x53, 0xe2, 0x15, 0x03, 0xdd, 0x1a, 0x32, 0xd2, 0xc2, 0x9f, 0xc1, 0x9a, + 0xf3, 0xe6, 0xd5, 0x1b, 0x65, 0x31, 0xe1, 0xf9, 0x2c, 0x70, 0xe3, 0x0d, 0x7c, 0xd5, 0x40, 0x77, + 0xc5, 0xb0, 0xbb, 0x9a, 0x9b, 0xda, 0xc9, 0x37, 0xa3, 0xc0, 0x09, 0xc4, 0x1b, 0xe5, 0x53, 0x7a, + 0xb7, 0x63, 0x12, 0x3a, 0xd0, 0xc6, 0x98, 0x83, 0xdb, 0x1d, 0x25, 0xff, 0x05, 0xb4, 0x5e, 0x38, + 0xbe, 0x60, 0xb6, 0x17, 0x48, 0x16, 0x86, 0xd1, 0x28, 0x65, 0xae, 0x9a, 0x01, 0xf0, 0x3a, 0x4a, + 0xec, 0xa7, 0x04, 0x92, 0xe9, 0x7e, 0x04, 0xf5, 0xf4, 0x8a, 0x0e, 0x85, 0x09, 0x47, 0x4b, 0x74, + 0x89, 0x25, 0x0b, 0x89, 0xbf, 0xa4, 0x63, 0xfb, 0xb4, 0xbb, 0xb6, 0x6f, 0xc2, 0x0d, 0x7b, 0x91, + 0x4f, 0x2e, 0x62, 0xa2, 0xcf, 0x2d, 0x64, 0x2a, 0x9f, 0x42, 0xa4, 0x4e, 0xfb, 0x4c, 0xdb, 0x82, + 0x96, 0xbd, 0xc0, 0x35, 0x10, 0xad, 0x13, 0x2b, 0x8f, 0xfa, 0xce, 0xac, 0x70, 0x9b, 0x40, 0xd3, + 0x9e, 0x5a, 0xc6, 0x76, 0x0b, 0xd6, 0xed, 0xb9, 0xab, 0x85, 0x6a, 0x4c, 0x2f, 0x07, 0x2a, 0xbe, + 0xc8, 0xe6, 0xed, 0x65, 0x68, 0xd8, 0x93, 0x16, 0xb5, 0x7e, 0x57, 0x82, 0xbc, 0x5a, 0x2f, 0xb2, + 0x0a, 0x05, 0x2f, 0xe8, 0xb3, 0xb7, 0x3a, 0x41, 0x53, 0xdd, 0x20, 0x0f, 0x20, 0x1f, 0x72, 0x9f, + 0x99, 0xf3, 0x92, 0xeb, 0x73, 0x4e, 0x68, 0x29, 0xf7, 0x19, 0x45, 0x21, 0xf2, 0x3e, 0x94, 0xf1, + 0x14, 0x21, 0x06, 0xad, 0xca, 0xa1, 0x25, 0xa4, 0x68, 0xbf, 0xb3, 0xa0, 0xc8, 0x82, 0x7e, 0x8c, + 0x4a, 0x2c, 0x82, 0x59, 0x60, 0x80, 0x35, 0x5d, 0x86, 0x16, 0xe2, 0x2a, 0x78, 0xb2, 0x0c, 0xfd, + 0x10, 0xaa, 0xbe, 0x3f, 0x8c, 0xd3, 0xbb, 0xc1, 0x5c, 0x8e, 0x56, 0x7c, 0x7f, 0xd8, 0x4b, 0xea, + 0x89, 0xb1, 0x10, 0xd6, 0x14, 0x25, 0x83, 0x66, 0x23, 0x24, 0x92, 0xa2, 0x03, 0x85, 0x46, 0x1a, + 0x58, 0xd9, 0x4e, 0x81, 0x16, 0x95, 0xc0, 0x28, 0x1e, 0x42, 0x4a, 0x11, 0x87, 0x7d, 0x83, 0xa5, + 0x22, 0xad, 0x48, 0x29, 0x7a, 0x49, 0x51, 0x30, 0xeb, 0x9f, 0x60, 0x20, 0x3a, 0xed, 0x9f, 0xe4, + 0x53, 0x58, 0x9d, 0x75, 0xa7, 0xa1, 0x4e, 0xdf, 0x85, 0x4e, 0x99, 0x2e, 0x4f, 0x85, 0xa7, 0xc5, + 0xb1, 0x69, 0xc9, 0x60, 0x74, 0x36, 0x36, 0xcd, 0x8d, 0xd8, 0x35, 0x93, 0x5d, 0xe7, 0x45, 0xec, + 0xb9, 0xbb, 0xbe, 0xea, 0xcc, 0xae, 0xef, 0x11, 0x2c, 0xcf, 0x38, 0xb6, 0xd9, 0xf0, 0x2d, 0xd1, + 0xe6, 0x74, 0xb4, 0xd3, 0x7a, 0x37, 0xa6, 0x5c, 0xd6, 0xec, 0xf5, 0x6a, 0xb4, 0x3e, 0x19, 0x5a, + 0xb4, 0xad, 0x61, 0xec, 0xc6, 0x66, 0x83, 0x57, 0xa7, 0x29, 0x9a, 0x02, 0x78, 0x15, 0x2a, 0x76, + 0xec, 0x5c, 0xed, 0x0a, 0x94, 0x6c, 0xed, 0x49, 0xb3, 0x75, 0xb0, 0xca, 0xb6, 0x29, 0x17, 0x49, + 0xb7, 0x45, 0x5c, 0x11, 0x9a, 0x85, 0x47, 0x5e, 0x6a, 0x99, 0xe7, 0xe0, 0xa3, 0x7d, 0x1d, 0xd6, + 0xec, 0x79, 0x2b, 0x37, 0x3f, 0x08, 0xcc, 0x0f, 0x43, 0x58, 0x00, 0x8c, 0x6d, 0x8a, 0x52, 0x33, + 0x16, 0x45, 0xf0, 0x4f, 0x59, 0xad, 0x5d, 0x83, 0x6a, 0x0a, 0xe2, 0x3a, 0x3e, 0x4c, 0x9e, 0xdb, + 0x24, 0xb1, 0x25, 0x39, 0x9d, 0x99, 0x99, 0xee, 0x06, 0x5c, 0xb7, 0xe7, 0x6f, 0xdb, 0xf1, 0x27, + 0xa6, 0xb7, 0xe5, 0xf8, 0xcb, 0xf3, 0xf6, 0xde, 0x18, 0x8a, 0xe6, 0x6e, 0xae, 0x31, 0xea, 0x2c, + 0xda, 0x3d, 0x3f, 0xcb, 0x97, 0x33, 0xcd, 0xec, 0xb3, 0x7c, 0x39, 0xdb, 0xcc, 0xd1, 0xba, 0xe3, + 0xba, 0x51, 0xe8, 0xb8, 0xe7, 0x5a, 0x57, 0xda, 0x64, 0x6f, 0x47, 0x2c, 0xf4, 0x30, 0xaa, 0x21, + 0xc5, 0xfa, 0xf7, 0x3c, 0xc0, 0xf8, 0x38, 0x9a, 0xfc, 0x3f, 0x20, 0xc9, 0x39, 0xde, 0xc8, 0x11, + 0x42, 0xc5, 0x4f, 0x96, 0x1c, 0x56, 0x35, 0x63, 0xde, 0xb1, 0x23, 0x04, 0x75, 0x24, 0x9b, 0x7b, + 0x5c, 0x05, 0xff, 0x77, 0x5c, 0x35, 0xf7, 0xb8, 0x6a, 0x0a, 0xff, 0xe5, 0x05, 0xa7, 0x3e, 0x17, + 0x9d, 0x8c, 0x54, 0xcc, 0x71, 0xc4, 0x05, 0x27, 0x23, 0x58, 0xef, 0xce, 0xae, 0xe1, 0x15, 0x1c, + 0xf7, 0x3b, 0xf4, 0xaa, 0xbf, 0xc9, 0x40, 0x76, 0x67, 0x9f, 0x58, 0x50, 0x1e, 0x85, 0xfc, 0xb5, + 0xd7, 0x37, 0x27, 0x34, 0x15, 0x9a, 0xb4, 0xc9, 0x2d, 0x00, 0x97, 0x0f, 0x87, 0x9e, 0xb4, 0xc5, + 0x99, 0x13, 0x5f, 0xea, 0x69, 0x4a, 0xf7, 0xcc, 0x21, 0x4d, 0xc8, 0x85, 0xec, 0x85, 0x39, 0xf7, + 0x57, 0x9f, 0x78, 0x9f, 0x14, 0xf9, 0xbe, 0x1d, 0x32, 0xc4, 0x83, 0x39, 0xf5, 0xaf, 0x2a, 0x1a, + 0xd5, 0x24, 0x3c, 0x13, 0x8f, 0x02, 0x3b, 0x0a, 0x7d, 0x73, 0xe0, 0x5f, 0x0c, 0xa3, 0xe0, 0x24, + 0xf4, 0x55, 0xb6, 0x75, 0x5c, 0xc9, 0xc3, 0xf8, 0x94, 0x1f, 0x1b, 0xd6, 0x36, 0x94, 0xe3, 0x2b, + 0x0d, 0xd2, 0x82, 0x92, 0x3e, 0x91, 0x16, 0xe6, 0xd4, 0x39, 0x6e, 0x92, 0x9b, 0x50, 0x19, 0x23, + 0x41, 0xe9, 0x99, 0xa1, 0xe5, 0x91, 0xf1, 0x7f, 0xeb, 0xbf, 0x0b, 0x50, 0xdc, 0xc1, 0x4b, 0x3d, + 0xeb, 0x3f, 0xf2, 0x50, 0x8a, 0x15, 0x99, 0xbc, 0xb1, 0xcc, 0x4c, 0xdf, 0x58, 0x4e, 0x5e, 0xe6, + 0x65, 0xa7, 0x2f, 0xf3, 0xe6, 0xdc, 0x79, 0xe5, 0xe7, 0xde, 0x79, 0xad, 0x43, 0x31, 0x64, 0x03, + 0xe5, 0x18, 0x45, 0xf3, 0xbb, 0xd8, 0x22, 0xed, 0x99, 0xdb, 0xc0, 0xd2, 0x45, 0xb7, 0x81, 0x9d, + 0x6b, 0x53, 0xf7, 0x81, 0xa9, 0x6c, 0x15, 0xdf, 0x8d, 0x95, 0xcd, 0x96, 0x22, 0x4d, 0xd4, 0x95, + 0xb0, 0xbe, 0x20, 0xab, 0x5c, 0xe5, 0x82, 0xec, 0x47, 0xd0, 0x3c, 0x75, 0xdc, 0x57, 0x4a, 0xa5, + 0xa0, 0x6f, 0x07, 0xdc, 0x13, 0x3a, 0x5a, 0x94, 0x69, 0x63, 0x4c, 0x3f, 0x52, 0x64, 0xf2, 0x29, + 0xac, 0xfb, 0xfc, 0x4d, 0x1c, 0xf1, 0xec, 0xa1, 0xe7, 0x86, 0x7c, 0x74, 0xc6, 0x03, 0x86, 0x39, + 0xbc, 0x4c, 0x57, 0x7d, 0xfe, 0xc6, 0x1c, 0x27, 0x1e, 0x26, 0x3c, 0x72, 0x1b, 0xaa, 0x23, 0xc7, + 0x7d, 0xc5, 0xa4, 0x3e, 0xf1, 0xd4, 0x67, 0xb5, 0xa0, 0x49, 0x07, 0x5c, 0x08, 0x73, 0x39, 0x56, + 0xbb, 0xec, 0x72, 0x2c, 0x3b, 0xef, 0x72, 0xac, 0x7e, 0xb5, 0xcb, 0xb1, 0xdc, 0xc4, 0xe5, 0x18, + 0x26, 0xb9, 0xc9, 0xc5, 0x48, 0x80, 0x67, 0xcc, 0xd8, 0x2e, 0x40, 0xce, 0x76, 0x3d, 0x9d, 0x73, + 0x4d, 0xcf, 0x67, 0xf9, 0x72, 0xae, 0x99, 0xa7, 0xb3, 0x37, 0xd4, 0xd6, 0x9f, 0x67, 0xa0, 0x4c, + 0x99, 0x18, 0xf1, 0x40, 0x30, 0xf2, 0x31, 0x2c, 0x8f, 0xbd, 0xc4, 0x56, 0xbe, 0x9f, 0xb8, 0x5b, + 0x43, 0xa4, 0xd5, 0xdb, 0xef, 0x93, 0x2e, 0xac, 0x8f, 0x42, 0x26, 0xbc, 0x41, 0xc0, 0xfa, 0xf6, + 0x88, 0x0b, 0x99, 0x20, 0x49, 0xbf, 0x07, 0x18, 0x5f, 0x9b, 0x1f, 0xc7, 0x62, 0xc7, 0x5c, 0x48, + 0xe3, 0xd2, 0x74, 0x75, 0x34, 0x87, 0x6a, 0xfd, 0x36, 0x03, 0x2b, 0x3b, 0x3c, 0x78, 0xe1, 0x85, + 0xc3, 0x2e, 0x8f, 0x42, 0x97, 0x9d, 0x8c, 0x7c, 0xee, 0xf4, 0xad, 0x3f, 0xbd, 0x32, 0x16, 0xe6, + 0xfe, 0x42, 0x76, 0xfe, 0x2f, 0xfc, 0x10, 0x1a, 0x2e, 0xef, 0x33, 0xb5, 0xb5, 0x0e, 0xcf, 0x47, + 0xdc, 0x0b, 0xa4, 0x09, 0x10, 0x75, 0x45, 0xde, 0x4b, 0xa8, 0x16, 0x8c, 0x6d, 0x64, 0xfd, 0x65, + 0x06, 0x72, 0x4f, 0x99, 0xb4, 0x7a, 0xdf, 0x87, 0x4a, 0xd6, 0xa7, 0xa9, 0xd5, 0xb8, 0x0f, 0xb9, + 0x30, 0xd2, 0x2f, 0x23, 0x26, 0xb0, 0x96, 0xee, 0x42, 0x95, 0x88, 0xf5, 0x2f, 0x79, 0xc8, 0x1f, + 0x78, 0x42, 0x5a, 0xff, 0x9c, 0xbb, 0xb2, 0x56, 0x4f, 0xa6, 0x6e, 0x53, 0x2f, 0x7e, 0xe6, 0xd0, + 0xb9, 0x16, 0xdf, 0xa5, 0x2a, 0x37, 0xfe, 0x19, 0xc0, 0xc8, 0x19, 0x30, 0x7d, 0x1e, 0x87, 0x36, + 0xab, 0x6e, 0xb6, 0x92, 0xfe, 0x3d, 0x45, 0x3d, 0x76, 0x06, 0x5e, 0x80, 0x83, 0x74, 0x32, 0xb4, + 0xa2, 0xa4, 0x91, 0xac, 0x33, 0x92, 0xbe, 0xdc, 0xc4, 0x02, 0xcc, 0xa4, 0xef, 0x0b, 0xae, 0x38, + 0x3a, 0x59, 0x73, 0xbd, 0xa9, 0x28, 0xaa, 0xff, 0x13, 0xbc, 0xe1, 0xd4, 0xbd, 0x0b, 0x97, 0xf6, + 0xce, 0xe1, 0x1d, 0x67, 0xdc, 0xf7, 0xee, 0x44, 0xa8, 0xc4, 0x30, 0xa7, 0xf6, 0x16, 0x49, 0xb0, + 0xd4, 0x15, 0xb3, 0x8e, 0x41, 0xa5, 0x0b, 0x63, 0x50, 0xa7, 0xa0, 0xa3, 0x90, 0x02, 0xa5, 0xaa, + 0x68, 0xb5, 0x75, 0xb0, 0xe6, 0x1b, 0xdb, 0x06, 0x9b, 0xe3, 0x9f, 0x45, 0x4c, 0xc6, 0xba, 0x23, + 0x6f, 0xac, 0x4c, 0xbb, 0x04, 0x05, 0xbc, 0x3b, 0xb2, 0xde, 0x4e, 0x20, 0x32, 0x1f, 0x46, 0x81, + 0x4a, 0x22, 0xb9, 0x0b, 0x9c, 0x00, 0x65, 0xc8, 0x2f, 0xa0, 0x11, 0xb0, 0xb7, 0x32, 0x35, 0xbd, + 0x81, 0xe2, 0xc2, 0xa5, 0xa1, 0x35, 0xd5, 0xe1, 0x38, 0x5e, 0x1c, 0xeb, 0x9f, 0xf2, 0x50, 0xc4, + 0xfd, 0xbb, 0xb0, 0xfe, 0x35, 0x7b, 0x65, 0x4f, 0xda, 0x9a, 0x58, 0xcf, 0xec, 0x15, 0x2f, 0xab, + 0x55, 0xdb, 0x5c, 0x56, 0xeb, 0x8e, 0xb9, 0x2b, 0x5d, 0x56, 0x63, 0xb7, 0xb1, 0xef, 0xe6, 0xdf, + 0xd9, 0x77, 0x27, 0x3d, 0x00, 0xf3, 0xba, 0xf2, 0xd0, 0xb9, 0x1e, 0x50, 0xbc, 0xd8, 0x03, 0xb2, + 0x0b, 0x3d, 0x60, 0xde, 0xb2, 0xfe, 0x59, 0x3a, 0xd2, 0xfe, 0x1c, 0x4a, 0xa7, 0x91, 0x4a, 0x23, + 0xf1, 0xd2, 0x7e, 0xb4, 0x28, 0x7b, 0xe0, 0x72, 0x6c, 0xb4, 0x51, 0x98, 0xc6, 0x9d, 0x94, 0xe1, + 0xf0, 0x84, 0xe0, 0xb5, 0xe3, 0x1b, 0x8b, 0xdf, 0x98, 0x31, 0xdc, 0xae, 0x79, 0x3e, 0x47, 0x13, + 0x51, 0xeb, 0x57, 0x50, 0xd4, 0x23, 0x91, 0x2f, 0x60, 0x49, 0x8f, 0xa5, 0xdd, 0xd3, 0x44, 0x99, + 0x8b, 0xac, 0x5f, 0xd5, 0xf2, 0x5d, 0x25, 0xae, 0x2a, 0xa0, 0xf1, 0x45, 0x79, 0x9e, 0xea, 0x86, + 0xf5, 0x12, 0x8a, 0x3b, 0x4e, 0xe0, 0x32, 0xff, 0x7b, 0x8a, 0x8e, 0xe9, 0x38, 0xfc, 0x3d, 0xdf, + 0xf4, 0xff, 0x6d, 0x26, 0xb9, 0xea, 0xbf, 0x01, 0x6b, 0x93, 0x57, 0xfd, 0xf6, 0xc9, 0xf1, 0xc1, + 0xf3, 0xed, 0xdd, 0xe6, 0x35, 0xb2, 0x06, 0xcb, 0x86, 0xf5, 0x74, 0xef, 0x68, 0x8f, 0x6e, 0xf7, + 0xf4, 0xa5, 0xff, 0xec, 0x43, 0x80, 0x2c, 0x59, 0x07, 0x62, 0x68, 0xdd, 0x93, 0xc3, 0xc3, 0x6d, + 0xba, 0xff, 0xb5, 0xa2, 0xe7, 0xe6, 0x3e, 0x10, 0xc8, 0xcf, 0x3e, 0x10, 0x28, 0xcc, 0x7d, 0x20, + 0x50, 0xc4, 0xe4, 0x9f, 0x7a, 0xc5, 0xb3, 0x20, 0xf9, 0x97, 0x9b, 0x15, 0x5a, 0x32, 0x6f, 0x7f, + 0xee, 0xfe, 0x63, 0x0e, 0xca, 0x71, 0xc1, 0x36, 0x7e, 0xb0, 0x92, 0x49, 0x3f, 0x58, 0x99, 0x7e, + 0x2f, 0x93, 0x9d, 0xf3, 0x5e, 0x66, 0xfe, 0xcb, 0x98, 0xdc, 0xa2, 0x97, 0x31, 0x0f, 0xcd, 0x1b, + 0x98, 0x3c, 0xba, 0xfb, 0xcd, 0x99, 0xd2, 0x71, 0xa3, 0xe7, 0x0c, 0x84, 0x7e, 0x8c, 0xa8, 0x1f, + 0xc8, 0x58, 0x50, 0x8e, 0x04, 0x0b, 0xfb, 0x8e, 0x74, 0x4c, 0xf9, 0x9d, 0xb4, 0xcd, 0xd3, 0xa0, + 0x62, 0xfc, 0x34, 0xc8, 0xfa, 0xfb, 0x0c, 0x2c, 0xeb, 0xba, 0xf9, 0xcb, 0x90, 0x0f, 0xcd, 0x1d, + 0xba, 0xf5, 0xcb, 0x2b, 0x3b, 0x61, 0xea, 0xf5, 0x4b, 0x76, 0xe2, 0xf5, 0xcb, 0xb8, 0x24, 0xce, + 0xa5, 0x4b, 0x62, 0x6b, 0x2b, 0x85, 0xe5, 0x1f, 0x43, 0x39, 0xae, 0xc8, 0x0c, 0x8c, 0x96, 0x67, + 0xfe, 0x8e, 0x26, 0x22, 0xd6, 0x67, 0x50, 0x49, 0x7e, 0x75, 0xce, 0xb3, 0xca, 0xd5, 0xf4, 0xb3, + 0xca, 0x4a, 0xea, 0xe9, 0xe4, 0xdd, 0x3e, 0xd4, 0x26, 0xea, 0x6c, 0x42, 0x20, 0x8f, 0x41, 0x4c, + 0xf7, 0xc6, 0x6f, 0xf2, 0x10, 0x2a, 0xf1, 0x4c, 0x6a, 0xd9, 0x72, 0xf3, 0xb5, 0x19, 0xcb, 0x18, + 0x53, 0xe6, 0x62, 0x53, 0xde, 0xfd, 0x87, 0x0c, 0x90, 0x71, 0x08, 0xda, 0xf5, 0xc4, 0xc8, 0x91, + 0xee, 0xd9, 0x3b, 0x95, 0x86, 0x6b, 0x50, 0x7c, 0xc9, 0x4f, 0xc7, 0xc6, 0x2c, 0xbc, 0xe4, 0xa7, + 0xfb, 0xfd, 0x09, 0x3b, 0xe5, 0x2e, 0xb5, 0x53, 0xb2, 0x15, 0xc8, 0x5f, 0x61, 0x2b, 0xf0, 0xf1, + 0x0b, 0xa8, 0x4f, 0xd2, 0xc9, 0x6d, 0xb8, 0xd9, 0xdd, 0x3f, 0x3c, 0x39, 0xd8, 0xee, 0xed, 0x3f, + 0x3f, 0xb2, 0x0f, 0x9f, 0xef, 0xee, 0xd9, 0x27, 0x47, 0xdd, 0xe3, 0xbd, 0x9d, 0xfd, 0x2f, 0xf7, + 0xf7, 0x14, 0x76, 0x5b, 0xb0, 0x3a, 0x2d, 0xd0, 0xdb, 0xfb, 0xe3, 0x5e, 0x33, 0x83, 0x80, 0x9f, + 0xe2, 0x6c, 0x9f, 0xec, 0xee, 0x3f, 0x6f, 0x66, 0x37, 0x7f, 0x53, 0x84, 0xc6, 0xb6, 0xf2, 0xed, + 0xf1, 0x6c, 0xa4, 0x0f, 0x2b, 0xda, 0xf7, 0x26, 0x9f, 0x9d, 0x2e, 0x3a, 0x1f, 0xd0, 0xb2, 0x1b, + 0x71, 0xc9, 0xfb, 0x83, 0xcb, 0xc4, 0x8c, 0x97, 0x7d, 0x9b, 0x81, 0x5b, 0x71, 0x69, 0x9c, 0x08, + 0xa6, 0x8b, 0x64, 0xb2, 0xb9, 0x30, 0x85, 0xcc, 0x14, 0xd4, 0xc9, 0xec, 0x3f, 0x79, 0xa7, 0x3e, + 0x46, 0x95, 0x3f, 0x81, 0xe6, 0x53, 0x26, 0x27, 0xff, 0xf6, 0xee, 0x82, 0x81, 0x9e, 0x32, 0x99, + 0x4c, 0xf6, 0xe1, 0x85, 0x32, 0x66, 0x70, 0x1b, 0x88, 0x2a, 0x65, 0x27, 0x24, 0x04, 0x59, 0xd4, + 0x55, 0x89, 0x26, 0xe3, 0x7f, 0x74, 0xb1, 0x90, 0x99, 0x40, 0x2d, 0x97, 0x0a, 0x95, 0x53, 0x33, + 0xdc, 0xbb, 0x38, 0x01, 0x5f, 0xba, 0x5c, 0xb1, 0x58, 0x6a, 0x16, 0x4c, 0x85, 0x57, 0x74, 0x0a, + 0x94, 0xbd, 0x7c, 0x96, 0x58, 0xcc, 0xcc, 0xf2, 0x1a, 0x6e, 0x18, 0xd7, 0x33, 0xa8, 0x49, 0x85, + 0x3f, 0xf2, 0x60, 0x36, 0xc6, 0xce, 0xc4, 0xc8, 0x64, 0xc6, 0x4f, 0xae, 0x26, 0xac, 0xe7, 0x6d, + 0x7f, 0xf9, 0xf5, 0x87, 0x03, 0x4f, 0x9e, 0x45, 0xa7, 0x1b, 0x2e, 0x1f, 0xc6, 0x8f, 0xfa, 0xf5, + 0xc3, 0x7c, 0x97, 0xfb, 0x31, 0xe1, 0x77, 0xd9, 0xda, 0x81, 0xf7, 0x9a, 0xfd, 0x21, 0xee, 0x01, + 0xb9, 0xe4, 0xff, 0x99, 0xad, 0x9b, 0xf6, 0x93, 0x27, 0x48, 0x38, 0x2d, 0x62, 0x97, 0x9f, 0xfc, + 0x4f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x1a, 0x95, 0x7f, 0x05, 0x47, 0x30, 0x00, 0x00, }