From 8aaac5e1c2113f1692a66ba4849c14660c510d8d Mon Sep 17 00:00:00 2001 From: Jason Lernerman Date: Tue, 1 Sep 2026 16:13:02 -0400 Subject: [PATCH 1/3] agent simulation: filter the run list and counts by mode `SimulationRun` carries `mode`, but `List.Request` and `Counts.Request` could only narrow by status, window and agent name, so the dashboard's runs list had no way to show only text or only voice runs. Both requests take the same optional `mode`, applied the same way, so the histogram above the list keeps counting the rows the list shows. --- livekit/livekit_agent_simulation.pb.go | 102 +++-- livekit/livekit_agent_simulation.twirp.go | 467 +++++++++++----------- protobufs/livekit_agent_simulation.proto | 4 + 3 files changed, 301 insertions(+), 272 deletions(-) diff --git a/livekit/livekit_agent_simulation.pb.go b/livekit/livekit_agent_simulation.pb.go index b5c53f58e..4de7fede8 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 @@ -2538,7 +2538,10 @@ type SimulationRun_List_Request struct { EndTime *timestamppb.Timestamp `protobuf:"bytes,5,opt,name=end_time,json=endTime,proto3,oneof" json:"end_time,omitempty"` // Exact agent name. Unset means every agent — including the runs whose // name is empty, which a bare string could not tell from no filter. - AgentName *string `protobuf:"bytes,6,opt,name=agent_name,json=agentName,proto3,oneof" json:"agent_name,omitempty"` + AgentName *string `protobuf:"bytes,6,opt,name=agent_name,json=agentName,proto3,oneof" json:"agent_name,omitempty"` + // Unset means every mode. `SimulationRun.mode` reads unspecified as TEXT, + // so a TEXT filter matches runs stored with either value. + Mode *SimulationMode `protobuf:"varint,7,opt,name=mode,proto3,enum=livekit.SimulationMode,oneof" json:"mode,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } @@ -2615,6 +2618,13 @@ func (x *SimulationRun_List_Request) GetAgentName() string { return "" } +func (x *SimulationRun_List_Request) GetMode() SimulationMode { + if x != nil && x.Mode != nil { + return *x.Mode + } + return SimulationMode_SIMULATION_MODE_UNSPECIFIED +} + type SimulationRun_List_Response struct { state protoimpl.MessageState `protogen:"open.v1"` Runs []*SimulationRun `protobuf:"bytes,1,rep,name=runs,proto3" json:"runs,omitempty"` @@ -2678,6 +2688,7 @@ type SimulationRun_Counts_Request struct { // above them drop would make the histogram an answer about a wider set. Status *SimulationRun_Status `protobuf:"varint,4,opt,name=status,proto3,enum=livekit.SimulationRun_Status,oneof" json:"status,omitempty"` AgentName *string `protobuf:"bytes,5,opt,name=agent_name,json=agentName,proto3,oneof" json:"agent_name,omitempty"` + Mode *SimulationMode `protobuf:"varint,6,opt,name=mode,proto3,enum=livekit.SimulationMode,oneof" json:"mode,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } @@ -2747,6 +2758,13 @@ func (x *SimulationRun_Counts_Request) GetAgentName() string { return "" } +func (x *SimulationRun_Counts_Request) GetMode() SimulationMode { + if x != nil && x.Mode != nil { + return *x.Mode + } + return SimulationMode_SIMULATION_MODE_UNSPECIFIED +} + type SimulationRun_Counts_Response struct { state protoimpl.MessageState `protogen:"open.v1"` // Buckets holding at least one run, ascending by bucket_start. Empty @@ -3106,7 +3124,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\"\xf9H\n" + + "\x05label\x18\x03 \x01(\tR\x05label\"\xefI\n" + "\rSimulationRun\x12\x0e\n" + "\x02id\x18\x01 \x01(\tR\x02id\x12\x1d\n" + "\n" + @@ -3378,8 +3396,8 @@ const file_livekit_agent_simulation_proto_rawDesc = "" + "project_id\x18\x01 \x01(\tR\tprojectId\x12*\n" + "\x11simulation_run_id\x18\x02 \x01(\tR\x0fsimulationRunId\x1a4\n" + "\bResponse\x12(\n" + - "\x03run\x18\x01 \x01(\v2\x16.livekit.SimulationRunR\x03run\x1a\x8a\x04\n" + - "\x04List\x1a\x87\x03\n" + + "\x03run\x18\x01 \x01(\v2\x16.livekit.SimulationRunR\x03run\x1a\xc5\x04\n" + + "\x04List\x1a\xc2\x03\n" + "\aRequest\x12\x1d\n" + "\n" + "project_id\x18\x01 \x01(\tR\tprojectId\x12:\n" + @@ -3390,16 +3408,18 @@ const file_livekit_agent_simulation_proto_rawDesc = "" + "start_time\x18\x04 \x01(\v2\x1a.google.protobuf.TimestampH\x02R\tstartTime\x88\x01\x01\x12:\n" + "\bend_time\x18\x05 \x01(\v2\x1a.google.protobuf.TimestampH\x03R\aendTime\x88\x01\x01\x12\"\n" + "\n" + - "agent_name\x18\x06 \x01(\tH\x04R\tagentName\x88\x01\x01B\t\n" + + "agent_name\x18\x06 \x01(\tH\x04R\tagentName\x88\x01\x01\x120\n" + + "\x04mode\x18\a \x01(\x0e2\x17.livekit.SimulationModeH\x05R\x04mode\x88\x01\x01B\t\n" + "\a_statusB\r\n" + "\v_page_tokenB\r\n" + "\v_start_timeB\v\n" + "\t_end_timeB\r\n" + - "\v_agent_name\x1ax\n" + + "\v_agent_nameB\a\n" + + "\x05_mode\x1ax\n" + "\bResponse\x12*\n" + "\x04runs\x18\x01 \x03(\v2\x16.livekit.SimulationRunR\x04runs\x12@\n" + - "\x0fnext_page_token\x18\x02 \x01(\v2\x18.livekit.TokenPaginationR\rnextPageToken\x1a\x82\x04\n" + - "\x06Counts\x1a\x94\x02\n" + + "\x0fnext_page_token\x18\x02 \x01(\v2\x18.livekit.TokenPaginationR\rnextPageToken\x1a\xbd\x04\n" + + "\x06Counts\x1a\xcf\x02\n" + "\aRequest\x12\x1d\n" + "\n" + "project_id\x18\x01 \x01(\tR\tprojectId\x129\n" + @@ -3408,9 +3428,11 @@ const file_livekit_agent_simulation_proto_rawDesc = "" + "\bend_time\x18\x03 \x01(\v2\x1a.google.protobuf.TimestampR\aendTime\x12:\n" + "\x06status\x18\x04 \x01(\x0e2\x1d.livekit.SimulationRun.StatusH\x00R\x06status\x88\x01\x01\x12\"\n" + "\n" + - "agent_name\x18\x05 \x01(\tH\x01R\tagentName\x88\x01\x01B\t\n" + + "agent_name\x18\x05 \x01(\tH\x01R\tagentName\x88\x01\x01\x120\n" + + "\x04mode\x18\x06 \x01(\x0e2\x17.livekit.SimulationModeH\x02R\x04mode\x88\x01\x01B\t\n" + "\a_statusB\r\n" + - "\v_agent_name\x1a\x81\x01\n" + + "\v_agent_nameB\a\n" + + "\x05_mode\x1a\x81\x01\n" + "\bResponse\x12>\n" + "\abuckets\x18\x01 \x03(\v2$.livekit.SimulationRun.Counts.BucketR\abuckets\x125\n" + "\binterval\x18\x02 \x01(\v2\x19.google.protobuf.DurationR\binterval\x1a]\n" + @@ -3578,34 +3600,36 @@ var file_livekit_agent_simulation_proto_depIdxs = []int32{ 47, // 36: livekit.SimulationRun.List.Request.page_token:type_name -> livekit.TokenPagination 43, // 37: livekit.SimulationRun.List.Request.start_time:type_name -> google.protobuf.Timestamp 43, // 38: livekit.SimulationRun.List.Request.end_time:type_name -> google.protobuf.Timestamp - 4, // 39: livekit.SimulationRun.List.Response.runs:type_name -> livekit.SimulationRun - 47, // 40: livekit.SimulationRun.List.Response.next_page_token:type_name -> livekit.TokenPagination - 43, // 41: livekit.SimulationRun.Counts.Request.start_time:type_name -> google.protobuf.Timestamp - 43, // 42: livekit.SimulationRun.Counts.Request.end_time:type_name -> google.protobuf.Timestamp - 1, // 43: livekit.SimulationRun.Counts.Request.status:type_name -> livekit.SimulationRun.Status - 36, // 44: livekit.SimulationRun.Counts.Response.buckets:type_name -> livekit.SimulationRun.Counts.Bucket - 48, // 45: livekit.SimulationRun.Counts.Response.interval:type_name -> google.protobuf.Duration - 43, // 46: livekit.SimulationRun.Counts.Bucket.bucket_start:type_name -> google.protobuf.Timestamp - 5, // 47: livekit.Scenario.CreateFromSession.Response.scenario:type_name -> livekit.Scenario - 26, // 48: livekit.AgentSimulation.CreateSimulationRun:input_type -> livekit.SimulationRun.Create.Request - 28, // 49: livekit.AgentSimulation.ConfirmSimulationSourceUpload:input_type -> livekit.SimulationRun.ConfirmSourceUpload.Request - 30, // 50: livekit.AgentSimulation.GetSimulationRun:input_type -> livekit.SimulationRun.Get.Request - 32, // 51: livekit.AgentSimulation.ListSimulationRuns:input_type -> livekit.SimulationRun.List.Request - 34, // 52: livekit.AgentSimulation.CountSimulationRuns:input_type -> livekit.SimulationRun.Counts.Request - 37, // 53: livekit.AgentSimulation.CancelSimulationRun:input_type -> livekit.SimulationRun.Cancel.Request - 41, // 54: livekit.AgentSimulation.CreateScenarioFromSession:input_type -> livekit.Scenario.CreateFromSession.Request - 27, // 55: livekit.AgentSimulation.CreateSimulationRun:output_type -> livekit.SimulationRun.Create.Response - 29, // 56: livekit.AgentSimulation.ConfirmSimulationSourceUpload:output_type -> livekit.SimulationRun.ConfirmSourceUpload.Response - 31, // 57: livekit.AgentSimulation.GetSimulationRun:output_type -> livekit.SimulationRun.Get.Response - 33, // 58: livekit.AgentSimulation.ListSimulationRuns:output_type -> livekit.SimulationRun.List.Response - 35, // 59: livekit.AgentSimulation.CountSimulationRuns:output_type -> livekit.SimulationRun.Counts.Response - 38, // 60: livekit.AgentSimulation.CancelSimulationRun:output_type -> livekit.SimulationRun.Cancel.Response - 42, // 61: livekit.AgentSimulation.CreateScenarioFromSession:output_type -> livekit.Scenario.CreateFromSession.Response - 55, // [55:62] is the sub-list for method output_type - 48, // [48:55] is the sub-list for method input_type - 48, // [48:48] is the sub-list for extension type_name - 48, // [48:48] is the sub-list for extension extendee - 0, // [0:48] is the sub-list for field type_name + 0, // 39: livekit.SimulationRun.List.Request.mode:type_name -> livekit.SimulationMode + 4, // 40: livekit.SimulationRun.List.Response.runs:type_name -> livekit.SimulationRun + 47, // 41: livekit.SimulationRun.List.Response.next_page_token:type_name -> livekit.TokenPagination + 43, // 42: livekit.SimulationRun.Counts.Request.start_time:type_name -> google.protobuf.Timestamp + 43, // 43: livekit.SimulationRun.Counts.Request.end_time:type_name -> google.protobuf.Timestamp + 1, // 44: livekit.SimulationRun.Counts.Request.status:type_name -> livekit.SimulationRun.Status + 0, // 45: livekit.SimulationRun.Counts.Request.mode:type_name -> livekit.SimulationMode + 36, // 46: livekit.SimulationRun.Counts.Response.buckets:type_name -> livekit.SimulationRun.Counts.Bucket + 48, // 47: livekit.SimulationRun.Counts.Response.interval:type_name -> google.protobuf.Duration + 43, // 48: livekit.SimulationRun.Counts.Bucket.bucket_start:type_name -> google.protobuf.Timestamp + 5, // 49: livekit.Scenario.CreateFromSession.Response.scenario:type_name -> livekit.Scenario + 26, // 50: livekit.AgentSimulation.CreateSimulationRun:input_type -> livekit.SimulationRun.Create.Request + 28, // 51: livekit.AgentSimulation.ConfirmSimulationSourceUpload:input_type -> livekit.SimulationRun.ConfirmSourceUpload.Request + 30, // 52: livekit.AgentSimulation.GetSimulationRun:input_type -> livekit.SimulationRun.Get.Request + 32, // 53: livekit.AgentSimulation.ListSimulationRuns:input_type -> livekit.SimulationRun.List.Request + 34, // 54: livekit.AgentSimulation.CountSimulationRuns:input_type -> livekit.SimulationRun.Counts.Request + 37, // 55: livekit.AgentSimulation.CancelSimulationRun:input_type -> livekit.SimulationRun.Cancel.Request + 41, // 56: livekit.AgentSimulation.CreateScenarioFromSession:input_type -> livekit.Scenario.CreateFromSession.Request + 27, // 57: livekit.AgentSimulation.CreateSimulationRun:output_type -> livekit.SimulationRun.Create.Response + 29, // 58: livekit.AgentSimulation.ConfirmSimulationSourceUpload:output_type -> livekit.SimulationRun.ConfirmSourceUpload.Response + 31, // 59: livekit.AgentSimulation.GetSimulationRun:output_type -> livekit.SimulationRun.Get.Response + 33, // 60: livekit.AgentSimulation.ListSimulationRuns:output_type -> livekit.SimulationRun.List.Response + 35, // 61: livekit.AgentSimulation.CountSimulationRuns:output_type -> livekit.SimulationRun.Counts.Response + 38, // 62: livekit.AgentSimulation.CancelSimulationRun:output_type -> livekit.SimulationRun.Cancel.Response + 42, // 63: livekit.AgentSimulation.CreateScenarioFromSession:output_type -> livekit.Scenario.CreateFromSession.Response + 57, // [57:64] is the sub-list for method output_type + 50, // [50:57] is the sub-list for method input_type + 50, // [50:50] is the sub-list for extension type_name + 50, // [50:50] is the sub-list for extension extendee + 0, // [0:50] is the sub-list for field type_name } func init() { file_livekit_agent_simulation_proto_init() } diff --git a/livekit/livekit_agent_simulation.twirp.go b/livekit/livekit_agent_simulation.twirp.go index 957d258c6..977e64759 100644 --- a/livekit/livekit_agent_simulation.twirp.go +++ b/livekit/livekit_agent_simulation.twirp.go @@ -2191,241 +2191,242 @@ func (s *agentSimulationServer) PathPrefix() string { } var twirpFileDescriptor10 = []byte{ - // 3762 bytes of a gzipped FileDescriptorProto + // 3788 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x5a, 0x49, 0x6f, 0x1c, 0x49, 0x76, 0x56, 0xed, 0x55, 0xaf, 0x58, 0x0b, 0x83, 0x8b, 0x4a, 0xd9, 0x8b, 0xd4, 0xec, 0xd6, 0x8c, 0x46, 0xea, 0x29, 0xc9, 0x9c, 0xd6, 0xb4, 0xa9, 0x9e, 0x1e, 0x9b, 0x45, 0x56, 0xab, 0x28, 0x93, 0x14, 0x3b, 0xaa, 0x08, 0x7b, 0xda, 0x18, 0x24, 0x92, 0x99, 0xa1, 0x62, 0x4a, 0x59, 0x19, 0xd5, - 0x19, 0x91, 0xa2, 0x38, 0x80, 0x0f, 0x36, 0x06, 0x70, 0xc3, 0x3e, 0xd9, 0xf0, 0x0f, 0x98, 0xcb, - 0x1c, 0x3c, 0x57, 0xff, 0x02, 0xff, 0x04, 0x5f, 0x7c, 0xf4, 0x0f, 0x30, 0xe0, 0xa3, 0x61, 0xf8, - 0x66, 0xc4, 0x92, 0x4b, 0xad, 0xa4, 0x06, 0x2d, 0xc0, 0x87, 0xb9, 0x65, 0xbe, 0xf7, 0xc5, 0x92, - 0x2f, 0xde, 0xf7, 0xe2, 0x45, 0xbc, 0x84, 0x0f, 0x3d, 0xf7, 0x35, 0x79, 0xe5, 0x72, 0xd3, 0x1a, - 0x12, 0x9f, 0x9b, 0xcc, 0x1d, 0x85, 0x9e, 0xc5, 0x5d, 0xea, 0xb7, 0xc7, 0x01, 0xe5, 0x14, 0x95, - 0xb4, 0xde, 0xf8, 0x48, 0x02, 0x1e, 0x4e, 0xc1, 0x09, 0x63, 0x31, 0xd6, 0xf8, 0x70, 0x48, 0xe9, - 0xd0, 0x23, 0x0f, 0xe5, 0xdb, 0x59, 0xf8, 0xe2, 0xa1, 0x13, 0x06, 0xa9, 0xbe, 0x8c, 0xdb, 0xd3, - 0x7a, 0xee, 0x8e, 0x08, 0xe3, 0xd6, 0x68, 0xac, 0x01, 0xb7, 0xa2, 0xde, 0x6d, 0x8f, 0x86, 0x8e, - 0x1a, 0x43, 0xab, 0xd6, 0x23, 0xd5, 0x88, 0x3a, 0xc4, 0x63, 0x4a, 0xba, 0xf5, 0x6f, 0x39, 0x58, - 0xef, 0xc7, 0x53, 0xc6, 0xa1, 0xdf, 0x0f, 0x47, 0x23, 0x2b, 0xb8, 0x44, 0x9b, 0x50, 0x1c, 0x5b, - 0x8c, 0x11, 0xa7, 0x95, 0xb9, 0x93, 0xb9, 0x57, 0xc0, 0xfa, 0x4d, 0xc8, 0x5f, 0x58, 0xae, 0x47, - 0x9c, 0x56, 0x56, 0xc9, 0xd5, 0x1b, 0xfa, 0x00, 0x60, 0x48, 0x5d, 0x7f, 0x68, 0x5e, 0x10, 0xcf, - 0x6b, 0xe5, 0xee, 0x64, 0xee, 0x55, 0x70, 0x45, 0x4a, 0xfe, 0x9c, 0x78, 0x9e, 0x50, 0x73, 0x6a, - 0xba, 0xa3, 0x71, 0x40, 0x5f, 0x93, 0x56, 0x5e, 0xa9, 0x39, 0x3d, 0x50, 0x02, 0xf4, 0x05, 0x14, - 0x5d, 0xc6, 0x42, 0xc2, 0x5a, 0x85, 0x3b, 0xb9, 0x7b, 0xd5, 0xed, 0x8f, 0xdb, 0x7a, 0xb6, 0xed, - 0x79, 0x93, 0x6b, 0x1f, 0x08, 0x2c, 0xd6, 0x4d, 0xd0, 0xd7, 0xb0, 0x62, 0x9f, 0x5b, 0xdc, 0x3c, - 0x77, 0x19, 0xa7, 0xc1, 0x65, 0xab, 0x28, 0xbb, 0x68, 0x2f, 0xef, 0x62, 0xef, 0xdc, 0xe2, 0x3d, - 0xd5, 0xa0, 0xeb, 0xf3, 0xe0, 0x12, 0x57, 0xed, 0x44, 0x62, 0x7c, 0x03, 0xcd, 0x69, 0x00, 0x6a, - 0x42, 0xee, 0x15, 0xb9, 0x94, 0xe6, 0xa8, 0x60, 0xf1, 0x88, 0x1e, 0x41, 0xe1, 0xb5, 0xe5, 0x85, - 0x44, 0x9a, 0xa2, 0xba, 0x6d, 0xc4, 0x23, 0x2a, 0xbb, 0x8b, 0x1e, 0xf6, 0xa8, 0xcf, 0xc9, 0x1b, - 0x8e, 0x15, 0xf0, 0x49, 0xf6, 0x8f, 0x33, 0x86, 0x09, 0x05, 0x39, 0x7f, 0x74, 0x07, 0xaa, 0x0e, - 0x61, 0x76, 0xe0, 0x8e, 0xc5, 0xdc, 0x74, 0xc7, 0x69, 0x11, 0xfa, 0x10, 0x80, 0x85, 0xc3, 0x21, - 0x61, 0x12, 0x90, 0x95, 0x80, 0x94, 0x04, 0xad, 0x43, 0xc1, 0xb3, 0xce, 0x48, 0x64, 0x6f, 0xf5, - 0xb2, 0xf5, 0xbf, 0x3d, 0xa8, 0x4d, 0x7c, 0x33, 0xaa, 0x43, 0xd6, 0x75, 0xf4, 0x00, 0x59, 0x57, - 0x2e, 0xd6, 0x38, 0xa0, 0x2f, 0x89, 0xcd, 0x4d, 0xd7, 0xd1, 0xfd, 0x56, 0xb4, 0xe4, 0xc0, 0x41, - 0x8f, 0xa1, 0xc8, 0xb8, 0xc5, 0x43, 0x26, 0xfb, 0xad, 0x6f, 0x7f, 0x30, 0xdf, 0x94, 0xed, 0xbe, - 0x04, 0x61, 0x0d, 0x46, 0x0f, 0x60, 0x55, 0x39, 0x75, 0xfa, 0xab, 0xd4, 0x52, 0x37, 0xa5, 0x62, - 0x3f, 0xf5, 0x69, 0xeb, 0x50, 0x20, 0x41, 0x40, 0x83, 0x56, 0x41, 0x4d, 0x5d, 0xbe, 0xa0, 0x1d, - 0x00, 0x3b, 0x20, 0x16, 0x27, 0x8e, 0x69, 0xf1, 0x56, 0x51, 0x9b, 0x55, 0x79, 0x7d, 0x3b, 0xf2, - 0xfa, 0xf6, 0x20, 0xf2, 0x7a, 0x5c, 0xd1, 0xe8, 0x5d, 0x8e, 0xda, 0x90, 0x7f, 0x49, 0xcf, 0x58, - 0xab, 0x24, 0x57, 0xdf, 0x58, 0x30, 0xe5, 0x67, 0xf4, 0x0c, 0x4b, 0x9c, 0xb0, 0x81, 0x9a, 0xad, - 0x6f, 0x8d, 0x48, 0xab, 0xa2, 0x6c, 0x20, 0x25, 0xc7, 0xd6, 0x88, 0xa0, 0x2f, 0xa1, 0xce, 0x6c, - 0xe2, 0x5b, 0x81, 0x4b, 0xcd, 0x61, 0x40, 0xc3, 0x71, 0x0b, 0xe4, 0x6c, 0x36, 0x93, 0x8e, 0xb5, - 0xfa, 0xa9, 0xd0, 0xe2, 0x1a, 0x4b, 0xbf, 0xa2, 0xc7, 0x50, 0x26, 0xbe, 0xa3, 0x3e, 0xa3, 0x7a, - 0xe5, 0x67, 0x94, 0x24, 0x76, 0x97, 0xa3, 0xf7, 0xa0, 0xf2, 0x92, 0x9e, 0x99, 0x36, 0x0d, 0x7d, - 0xde, 0x5a, 0x91, 0x04, 0x2b, 0xbf, 0xa4, 0x67, 0x7b, 0xe2, 0x1d, 0x7d, 0x04, 0x2b, 0x8a, 0x84, - 0x5a, 0x5f, 0x93, 0xfa, 0xaa, 0x92, 0xc5, 0x10, 0xc5, 0x47, 0x0d, 0xa9, 0x2b, 0x88, 0x92, 0x29, - 0xc8, 0x0f, 0xa1, 0xe1, 0x87, 0xa3, 0x54, 0x9c, 0x62, 0xad, 0x86, 0x44, 0xd5, 0xfd, 0x70, 0x94, - 0x18, 0x8b, 0xa1, 0x6d, 0x28, 0x84, 0xcc, 0x1a, 0x92, 0x56, 0x53, 0xce, 0xff, 0xfd, 0x05, 0x16, - 0x3d, 0x15, 0x18, 0xac, 0xa0, 0xc2, 0xa5, 0x6d, 0xea, 0xdb, 0x61, 0x10, 0x10, 0xdf, 0xbe, 0x6c, - 0xad, 0xaa, 0xe1, 0x53, 0x22, 0xf4, 0x00, 0xf2, 0x22, 0x00, 0xb5, 0x90, 0xf4, 0xac, 0x9b, 0x73, - 0x3a, 0x3d, 0xa2, 0x0e, 0xc1, 0x12, 0x84, 0xbe, 0x80, 0xd2, 0x88, 0xf0, 0xc0, 0xb5, 0x59, 0x6b, - 0x4d, 0x4e, 0xe2, 0xa3, 0x05, 0x93, 0xc0, 0xa1, 0x7f, 0xa4, 0x80, 0x38, 0x6a, 0x21, 0x6c, 0xc1, - 0x14, 0xd9, 0xcd, 0x5f, 0x31, 0xee, 0xb4, 0xd6, 0xef, 0x64, 0xee, 0xad, 0xe0, 0xaa, 0x96, 0x7d, - 0xc3, 0xb8, 0x63, 0xfc, 0x7b, 0x01, 0x72, 0xcf, 0xe8, 0xd9, 0x0c, 0x3f, 0x76, 0x62, 0x02, 0x64, - 0xe5, 0x34, 0x3f, 0x5a, 0xec, 0x4d, 0xd3, 0x24, 0xd8, 0x82, 0x15, 0xd7, 0x67, 0x3c, 0x08, 0x6d, - 0x65, 0x5b, 0xc5, 0xcc, 0x09, 0x59, 0xe2, 0xfb, 0xf9, 0xb4, 0xef, 0xff, 0x18, 0x90, 0x72, 0x48, - 0xf2, 0x66, 0x4c, 0x6c, 0xae, 0xd7, 0x46, 0xd1, 0x43, 0x11, 0xab, 0x9b, 0x52, 0x24, 0xdc, 0x2f, - 0xa6, 0xb8, 0x8f, 0x10, 0xe4, 0xb9, 0x35, 0x54, 0x2c, 0xa8, 0x60, 0xf9, 0x2c, 0x9c, 0x2a, 0xa0, - 0x74, 0xa4, 0x1c, 0xbd, 0x2c, 0xd1, 0x65, 0x21, 0x90, 0x7e, 0xbe, 0x03, 0xc0, 0xb8, 0x15, 0x68, - 0xc6, 0xc1, 0xd5, 0x8c, 0xd3, 0xe8, 0x5d, 0xfe, 0xfb, 0xfa, 0xf8, 0x4d, 0x28, 0xc9, 0xe9, 0xb8, - 0x8e, 0xf4, 0xf0, 0x0a, 0x2e, 0x8a, 0xd7, 0x03, 0x07, 0xfd, 0x34, 0x72, 0xb8, 0x9a, 0xec, 0xec, - 0xce, 0x12, 0xa3, 0x4f, 0x38, 0x5d, 0xca, 0x4b, 0xea, 0x4b, 0xbd, 0xe4, 0x19, 0x3d, 0x9b, 0xf6, - 0x12, 0xe3, 0x97, 0x50, 0x90, 0x9d, 0xa1, 0x7b, 0xd0, 0x14, 0x91, 0xda, 0xe4, 0x61, 0xe0, 0x33, - 0x4d, 0x1f, 0xb5, 0xf5, 0xd5, 0x85, 0x7c, 0x20, 0xc4, 0x8a, 0x41, 0xf7, 0x61, 0xd5, 0x0a, 0x1d, - 0x97, 0x4e, 0x40, 0xd5, 0x6e, 0xd8, 0x90, 0x8a, 0x04, 0xbb, 0x45, 0xa1, 0xa8, 0x1c, 0x04, 0x21, - 0xa8, 0xf7, 0x07, 0xbb, 0x83, 0xd3, 0xbe, 0x79, 0xd2, 0x3d, 0xde, 0x3f, 0x38, 0x7e, 0xda, 0xbc, - 0x91, 0x92, 0xe1, 0xd3, 0xe3, 0x63, 0x21, 0xcb, 0xa0, 0x75, 0x68, 0x6a, 0xd9, 0xde, 0xf3, 0xa3, - 0x93, 0xc3, 0xee, 0xa0, 0xbb, 0xdf, 0xcc, 0xa2, 0x55, 0xa8, 0x69, 0xe9, 0x57, 0xbb, 0x07, 0x87, - 0xdd, 0xfd, 0x66, 0x2e, 0x0d, 0xdc, 0x3d, 0xde, 0xeb, 0x1e, 0x0a, 0x69, 0xfe, 0x59, 0xbe, 0x5c, - 0x69, 0x82, 0xf1, 0xaf, 0x77, 0x01, 0x92, 0xaf, 0x45, 0xf7, 0xa1, 0x6e, 0xd9, 0x76, 0x18, 0x58, - 0xf6, 0xa5, 0xc9, 0x6c, 0x1a, 0x10, 0xf9, 0x65, 0xd9, 0xde, 0x0d, 0x5c, 0x8b, 0xe4, 0x7d, 0x21, - 0xfe, 0x2e, 0x93, 0x41, 0x6d, 0x68, 0x0a, 0x07, 0x0c, 0x5c, 0xe2, 0xdb, 0x44, 0xa3, 0xb3, 0x12, - 0x9d, 0xc1, 0x8d, 0x44, 0x13, 0xe3, 0x3f, 0x85, 0x06, 0xb7, 0xd8, 0x2b, 0xd3, 0xa6, 0xa3, 0xb1, - 0x47, 0x64, 0xcc, 0xcf, 0x49, 0x78, 0x16, 0xd7, 0x85, 0x62, 0x2f, 0x96, 0x0b, 0xf4, 0xe7, 0x90, - 0x63, 0x9c, 0x4b, 0xc7, 0xaf, 0x6e, 0xdf, 0xbd, 0x72, 0x9d, 0xda, 0xfd, 0xc1, 0x00, 0x8b, 0x16, - 0xa2, 0xa1, 0xe7, 0x8d, 0x24, 0x1d, 0xae, 0xd5, 0xf0, 0xf0, 0xf0, 0x08, 0x8b, 0x16, 0xa2, 0x21, - 0xe7, 0x4c, 0xef, 0x25, 0xd7, 0x68, 0x38, 0x18, 0xf4, 0xb1, 0x68, 0x81, 0x30, 0xac, 0xd8, 0xd4, - 0x7f, 0x4d, 0x02, 0x26, 0x61, 0xad, 0x92, 0xec, 0xa1, 0x7d, 0x75, 0x0f, 0x7b, 0xa9, 0x56, 0x78, - 0xa2, 0x0f, 0xf4, 0x33, 0x28, 0x48, 0xa7, 0x69, 0x55, 0xe4, 0x2e, 0xf5, 0x83, 0x6b, 0x4c, 0x27, - 0x0c, 0x7c, 0xac, 0x1a, 0xa1, 0xdb, 0x50, 0x7d, 0x19, 0x3a, 0x43, 0xa2, 0x52, 0x38, 0x49, 0xd6, - 0x0a, 0x06, 0x29, 0x12, 0x41, 0xd3, 0x43, 0x9f, 0x02, 0x3a, 0xb7, 0x98, 0x19, 0x90, 0x11, 0xe5, - 0x24, 0xca, 0x2d, 0x25, 0xcb, 0xca, 0xb8, 0x79, 0x6e, 0x31, 0x2c, 0x15, 0x7d, 0x25, 0x47, 0xf7, - 0x21, 0xcb, 0x1f, 0x69, 0xb2, 0x2d, 0x63, 0x6e, 0x96, 0x3f, 0x42, 0x77, 0x55, 0x60, 0x77, 0x19, - 0xf1, 0x09, 0x53, 0x3c, 0xcb, 0xf6, 0x72, 0x38, 0x2d, 0x14, 0xcb, 0xbb, 0x03, 0x9b, 0xa1, 0xef, - 0x13, 0x9b, 0x30, 0x26, 0xe2, 0x2e, 0xa7, 0xd4, 0x33, 0x6d, 0xcb, 0xf3, 0xd4, 0x1e, 0x53, 0xee, - 0xe5, 0xf1, 0x7a, 0x4a, 0x3f, 0xa0, 0xd4, 0xdb, 0x13, 0x5a, 0xed, 0x77, 0xae, 0xff, 0x82, 0x06, - 0x23, 0x69, 0x05, 0xd3, 0xa3, 0x8c, 0xc9, 0x9d, 0xa7, 0xdc, 0x2b, 0xe0, 0x46, 0x4a, 0x73, 0x48, - 0xd5, 0x50, 0x3f, 0x85, 0xf5, 0x80, 0x38, 0xa1, 0xef, 0x58, 0x22, 0x8d, 0xe6, 0x16, 0x27, 0x23, - 0xe2, 0x73, 0x26, 0xf7, 0x9c, 0x72, 0xaf, 0x88, 0xd7, 0x62, 0x6d, 0x3f, 0x56, 0x2a, 0x0f, 0xdc, - 0x18, 0x53, 0x1a, 0x98, 0xdf, 0x86, 0x2a, 0x89, 0x32, 0xbf, 0x0d, 0x2d, 0xcf, 0xe5, 0x97, 0x72, - 0x47, 0x2a, 0xf7, 0x4a, 0x78, 0x4d, 0xa8, 0xbf, 0xd6, 0xda, 0xaf, 0x95, 0x52, 0x34, 0xfc, 0x39, - 0xb4, 0xd2, 0x6b, 0x69, 0x8e, 0x03, 0x3a, 0x0c, 0xb4, 0x89, 0xd7, 0xa4, 0x3d, 0xca, 0xf8, 0x66, - 0x1a, 0x71, 0x92, 0x00, 0xbe, 0xcb, 0x64, 0x8c, 0x7f, 0x2c, 0x42, 0xae, 0x3f, 0x18, 0xa0, 0x0d, - 0xc8, 0x5d, 0x90, 0x20, 0x66, 0xa0, 0x78, 0x11, 0xdd, 0xdf, 0x82, 0xc2, 0x05, 0x0d, 0x1c, 0xb5, - 0xe5, 0xd4, 0x7a, 0x19, 0xac, 0x5e, 0x85, 0xea, 0x13, 0xa8, 0x8a, 0x67, 0x53, 0xee, 0x13, 0x6a, - 0x4b, 0xa9, 0xf5, 0xb2, 0x18, 0x84, 0xb0, 0x2b, 0x65, 0x02, 0xb5, 0x01, 0x39, 0x9b, 0xa8, 0x3d, - 0x45, 0x2c, 0x8d, 0x78, 0xd1, 0xfd, 0xda, 0xe7, 0x56, 0xc0, 0x64, 0x8a, 0x53, 0xeb, 0xe5, 0xb1, - 0x7a, 0xd5, 0xfd, 0x8a, 0xe7, 0xa8, 0x5f, 0x90, 0x80, 0x02, 0x06, 0x21, 0x4c, 0xfa, 0xbd, 0x0b, - 0x2b, 0x8c, 0x8b, 0xa4, 0xce, 0xb3, 0x2e, 0xcd, 0x11, 0x93, 0x3b, 0x48, 0xad, 0x57, 0xc4, 0xc0, - 0x38, 0xdf, 0x17, 0xc2, 0x23, 0x09, 0xdb, 0x06, 0x44, 0x7c, 0xee, 0xf2, 0x4b, 0x33, 0x20, 0x36, - 0x1d, 0xfa, 0xae, 0x24, 0x4d, 0x55, 0xce, 0xa6, 0x84, 0x57, 0x95, 0x0e, 0x27, 0xaa, 0x28, 0xd6, - 0x08, 0xb9, 0x4b, 0x98, 0x19, 0x72, 0x4e, 0x02, 0xa2, 0xf6, 0x84, 0x5a, 0xaf, 0x8c, 0x1b, 0x91, - 0xe6, 0x54, 0x29, 0x04, 0xfe, 0x33, 0x58, 0x8b, 0xf1, 0x7a, 0x94, 0x5f, 0x11, 0x47, 0xba, 0x70, - 0xad, 0x57, 0xc1, 0x28, 0x52, 0xe2, 0x58, 0x27, 0x5a, 0xdd, 0x83, 0x5a, 0x32, 0x33, 0xcb, 0xf3, - 0xb4, 0xf7, 0x02, 0x5e, 0x89, 0x27, 0x65, 0x79, 0x9e, 0x40, 0xfe, 0x09, 0xdc, 0x8a, 0xfb, 0xb7, - 0xec, 0x6f, 0x43, 0x37, 0x20, 0x4e, 0x3c, 0xb1, 0x86, 0x1c, 0xa5, 0x8a, 0x6f, 0x46, 0x90, 0x5d, - 0x8d, 0x48, 0x4d, 0xb0, 0x0b, 0xef, 0xcf, 0x76, 0x90, 0x9a, 0x69, 0x53, 0xf6, 0xb1, 0x82, 0x8d, - 0xe9, 0x3e, 0x26, 0x66, 0xdc, 0x29, 0x42, 0xde, 0xbc, 0x20, 0x41, 0xa7, 0x0c, 0x45, 0x53, 0x7a, - 0x41, 0xa7, 0x0e, 0x2b, 0x66, 0xca, 0x07, 0x24, 0xc2, 0xd6, 0x08, 0xb9, 0x9e, 0x12, 0x91, 0x5a, - 0xcd, 0x4e, 0x03, 0x6a, 0x66, 0x7a, 0xdd, 0x3a, 0x1b, 0xb0, 0x66, 0xce, 0xae, 0x50, 0x67, 0x0d, - 0x56, 0xcd, 0xe9, 0x45, 0xe8, 0x6c, 0xc2, 0xba, 0x39, 0xc7, 0xd2, 0x9d, 0x26, 0xd4, 0xcd, 0x09, - 0x5b, 0x76, 0xde, 0x07, 0xc3, 0x5c, 0x68, 0xb3, 0xce, 0x6d, 0xf8, 0xc0, 0x5c, 0x66, 0x10, 0xe3, - 0x37, 0x19, 0xc8, 0x1d, 0x1e, 0x1e, 0xa1, 0xf7, 0xa1, 0xc4, 0xf9, 0x0b, 0x2e, 0xfc, 0x2b, 0x23, - 0x6d, 0x74, 0x03, 0x17, 0x85, 0x40, 0xf9, 0x96, 0xd2, 0x32, 0xa1, 0x8d, 0xd8, 0x21, 0xb4, 0x4c, - 0x69, 0x1f, 0xc2, 0x2a, 0xa7, 0xaf, 0x88, 0xcf, 0xcc, 0x31, 0x09, 0x4c, 0x46, 0x6c, 0xea, 0x3b, - 0xf1, 0x1e, 0xd4, 0x50, 0xaa, 0x13, 0x12, 0xf4, 0xa5, 0x42, 0x98, 0x17, 0xa0, 0x6c, 0xea, 0xd1, - 0xa2, 0x67, 0xd1, 0x77, 0x67, 0x1d, 0x90, 0x39, 0xd3, 0x93, 0xf1, 0xeb, 0x22, 0xe4, 0x06, 0x83, - 0xbe, 0x9e, 0xc4, 0x59, 0x32, 0x09, 0x35, 0xc5, 0xb3, 0xa3, 0x88, 0x7d, 0x82, 0xd5, 0x39, 0xbd, - 0x53, 0xce, 0xb0, 0xba, 0xa4, 0x49, 0xbb, 0x90, 0xd5, 0x8a, 0x56, 0xb9, 0x05, 0xac, 0xae, 0xc8, - 0x7e, 0xf3, 0xb3, 0xac, 0x8e, 0x48, 0xbb, 0x90, 0xd5, 0xd5, 0x88, 0xae, 0x93, 0xac, 0x9e, 0x4f, - 0xd7, 0xfa, 0x5b, 0xd3, 0xb5, 0xf1, 0xf6, 0x74, 0x6d, 0xbe, 0x25, 0x5d, 0x57, 0x7f, 0x2f, 0xba, - 0xa2, 0xef, 0x81, 0xae, 0x6b, 0xd7, 0xa3, 0xab, 0xf6, 0x21, 0xe1, 0x1a, 0xdf, 0x0b, 0x75, 0xff, - 0x5f, 0x32, 0xf5, 0xbf, 0x4b, 0xb0, 0x92, 0xce, 0x6c, 0x24, 0xed, 0xc2, 0xc0, 0x37, 0xb9, 0xf5, - 0xca, 0xf5, 0x87, 0x53, 0x79, 0x65, 0x43, 0xa8, 0x06, 0x52, 0x13, 0x67, 0x8a, 0x5f, 0x40, 0xeb, - 0x9c, 0x58, 0xc2, 0x10, 0xdb, 0xc4, 0xf4, 0x2c, 0x2e, 0xce, 0x83, 0xe6, 0xf8, 0xf1, 0xa3, 0x88, - 0x51, 0x85, 0x5e, 0x06, 0xaf, 0x4b, 0x44, 0x77, 0x9b, 0x1c, 0x2a, 0xfd, 0xc9, 0xe3, 0x47, 0x8a, - 0x5f, 0xf3, 0x1b, 0xef, 0x3c, 0x16, 0x8d, 0x73, 0xb2, 0x71, 0x76, 0xb6, 0xf1, 0xce, 0xe3, 0xa5, - 0x8d, 0x77, 0x44, 0xe3, 0xbc, 0x6c, 0x9c, 0x9b, 0xd3, 0x78, 0x47, 0x35, 0xfe, 0x14, 0x9a, 0xdc, - 0x1d, 0x11, 0x93, 0x53, 0xf3, 0xd2, 0x25, 0x9e, 0x23, 0x1a, 0x15, 0xf4, 0x5e, 0x5a, 0x13, 0x9a, - 0x01, 0xfd, 0x85, 0x90, 0x47, 0x43, 0xdd, 0x24, 0x94, 0x9b, 0x23, 0x97, 0x8d, 0x03, 0xe2, 0xb8, - 0xf2, 0xc4, 0xa7, 0x8f, 0x08, 0x45, 0x4d, 0xd5, 0x0d, 0x42, 0xf9, 0x51, 0x5a, 0x2f, 0x8f, 0x0a, - 0xda, 0xf5, 0xe9, 0x6b, 0x12, 0x78, 0xd6, 0xd8, 0x94, 0xf7, 0x7e, 0x32, 0x6a, 0x64, 0x7b, 0x45, - 0xbc, 0xa2, 0xc5, 0x58, 0x48, 0x75, 0xcc, 0x8b, 0x90, 0x6c, 0x4c, 0x88, 0x7d, 0x9e, 0xec, 0xcc, - 0x25, 0xdc, 0xd0, 0xaa, 0xbe, 0xd4, 0xa8, 0x79, 0x3d, 0x80, 0x06, 0xa7, 0xdc, 0xf2, 0x52, 0xf0, - 0x8a, 0xa6, 0x6e, 0x4d, 0x2a, 0xd2, 0xe0, 0xcf, 0x61, 0xc3, 0xba, 0x78, 0x75, 0x21, 0x2c, 0xc6, - 0x5c, 0x4f, 0x1e, 0x04, 0xd4, 0x27, 0x54, 0x35, 0x75, 0xd7, 0xb4, 0xba, 0xaf, 0xb4, 0xf1, 0x07, - 0xb4, 0xa1, 0x19, 0xfa, 0x96, 0xcf, 0x2e, 0x84, 0x4f, 0xa9, 0xf3, 0x91, 0xde, 0xd0, 0x01, 0x37, - 0x12, 0x8d, 0x3c, 0x20, 0x09, 0xfc, 0x97, 0xd0, 0x7a, 0x61, 0x79, 0x8c, 0x98, 0xae, 0xcf, 0x49, - 0x10, 0x84, 0xe3, 0x94, 0xb9, 0x6a, 0x9a, 0xc0, 0x9b, 0x12, 0x71, 0x90, 0x02, 0xc4, 0xc3, 0xfd, - 0x08, 0xea, 0xe9, 0x15, 0x1d, 0x31, 0x1d, 0x8e, 0x56, 0xf0, 0x0a, 0x89, 0x17, 0x52, 0x7e, 0x92, - 0x8a, 0xed, 0xd3, 0xee, 0xda, 0x79, 0x0f, 0x6e, 0x99, 0x8b, 0x7c, 0x72, 0x91, 0x52, 0xfa, 0xdc, - 0x42, 0xa5, 0xf0, 0x29, 0xc9, 0xd4, 0x69, 0x9f, 0xe9, 0x18, 0xd0, 0x32, 0x17, 0xb8, 0x86, 0x64, - 0xeb, 0xc4, 0xca, 0xcb, 0xf9, 0xce, 0xac, 0x70, 0x07, 0x41, 0xd3, 0x9c, 0x5a, 0xc6, 0x4e, 0x0b, - 0x36, 0xcd, 0xb9, 0xab, 0x25, 0xa7, 0x31, 0xbd, 0x1c, 0x72, 0xe2, 0x8b, 0x6c, 0xde, 0x59, 0x85, - 0x86, 0x39, 0x69, 0x51, 0xe3, 0x77, 0x25, 0xc8, 0x8b, 0xf5, 0x42, 0xeb, 0x50, 0x70, 0x7d, 0x87, - 0xbc, 0x51, 0x1b, 0x34, 0x56, 0x2f, 0xe8, 0x01, 0xe4, 0x03, 0xea, 0x11, 0x7d, 0x51, 0x72, 0x73, - 0xce, 0x15, 0x28, 0xa6, 0x1e, 0xc1, 0x12, 0x84, 0x3e, 0x84, 0xb2, 0xbc, 0x3e, 0x88, 0x48, 0x2b, - 0xf6, 0xd0, 0x92, 0x94, 0x28, 0xbf, 0x33, 0xa0, 0x48, 0x7c, 0x27, 0x62, 0xa5, 0x4c, 0x82, 0x89, - 0xaf, 0x89, 0x35, 0x9d, 0x86, 0x16, 0xa2, 0x2c, 0x78, 0x32, 0x0d, 0xfd, 0x18, 0xaa, 0x9e, 0x37, - 0x8a, 0xb6, 0x77, 0xcd, 0xb9, 0x1c, 0xae, 0x78, 0xde, 0x68, 0x10, 0xe7, 0x13, 0x09, 0x48, 0xe6, - 0x14, 0x25, 0xcd, 0x66, 0x0d, 0x62, 0x71, 0xd2, 0x21, 0x41, 0x63, 0x45, 0xac, 0x6c, 0xaf, 0x80, - 0x8b, 0x02, 0x30, 0x8e, 0xba, 0xe0, 0x9c, 0x45, 0x61, 0x5f, 0x73, 0xa9, 0x88, 0x2b, 0x9c, 0xb3, - 0x41, 0x9c, 0x14, 0xcc, 0xfa, 0x27, 0x68, 0x8a, 0x4e, 0xfb, 0x27, 0xfa, 0x0c, 0xd6, 0x67, 0xdd, - 0x69, 0xa4, 0xb6, 0xef, 0x42, 0xaf, 0x8c, 0x57, 0xa7, 0xc2, 0xd3, 0xe2, 0xd8, 0xb4, 0xa2, 0x39, - 0x3a, 0x1b, 0x9b, 0xe6, 0x46, 0xec, 0x9a, 0xde, 0x5d, 0xe7, 0x45, 0xec, 0xb9, 0xa7, 0xbe, 0xea, - 0xcc, 0xa9, 0xef, 0x11, 0xac, 0xce, 0x38, 0xb6, 0x3e, 0xf0, 0xad, 0xe0, 0xe6, 0x74, 0xb4, 0xd3, - 0x97, 0x06, 0x53, 0x2e, 0xab, 0xcf, 0x7a, 0x35, 0x5c, 0x9f, 0x0c, 0x2d, 0xca, 0xd6, 0x90, 0xb8, - 0xb1, 0x3e, 0xe0, 0xd5, 0x71, 0x4a, 0x26, 0x08, 0x5e, 0x85, 0x8a, 0x19, 0x39, 0x57, 0xa7, 0x02, - 0x25, 0x53, 0x79, 0xd2, 0x6c, 0x1e, 0x2c, 0x76, 0xdb, 0x94, 0x8b, 0xa4, 0xdf, 0x59, 0x94, 0x11, - 0xea, 0x85, 0x97, 0xba, 0xd4, 0x32, 0xcf, 0xe1, 0x47, 0xe7, 0x26, 0x6c, 0x98, 0xf3, 0x56, 0x6e, - 0x7e, 0x10, 0x98, 0x1f, 0x86, 0x64, 0x02, 0x90, 0xd8, 0x54, 0xa2, 0x66, 0x2c, 0x2a, 0xc9, 0x3f, - 0x65, 0xb5, 0x4e, 0x0d, 0xaa, 0x29, 0x8a, 0xcb, 0xf9, 0x4d, 0xde, 0xf4, 0xa8, 0xac, 0x61, 0xea, - 0x42, 0x47, 0xc5, 0x91, 0xc9, 0x5b, 0x9b, 0x99, 0x49, 0xdc, 0x82, 0x9b, 0xe6, 0xfc, 0xc3, 0xbc, - 0xec, 0x73, 0xfa, 0xb0, 0x2e, 0x0d, 0x31, 0xef, 0x44, 0x2e, 0x03, 0xd4, 0xdc, 0x23, 0xb7, 0x8c, - 0x45, 0x8b, 0xce, 0xd4, 0xc6, 0x7f, 0xe5, 0x01, 0x92, 0x7b, 0xdd, 0x77, 0x7a, 0x87, 0xf5, 0x47, - 0x80, 0xe2, 0xcb, 0xfe, 0xb1, 0xc5, 0x98, 0x88, 0xc1, 0x24, 0x3e, 0x42, 0x34, 0x23, 0xdd, 0x89, - 0xc5, 0x18, 0xb6, 0x38, 0xf9, 0xc3, 0x45, 0xd6, 0x74, 0x64, 0x28, 0x2f, 0xb8, 0x0f, 0x5a, 0x76, - 0x67, 0x12, 0x1d, 0x69, 0x96, 0xdc, 0x99, 0x5c, 0xdb, 0x9f, 0x45, 0xc6, 0x3c, 0xbb, 0x82, 0x33, - 0x2e, 0xbd, 0xd4, 0xdf, 0xfe, 0x27, 0x0f, 0xc5, 0x3d, 0x59, 0x4e, 0x32, 0xfe, 0x23, 0x07, 0x25, - 0x4c, 0xa4, 0xbb, 0x4e, 0xd5, 0xca, 0x32, 0xd3, 0xb5, 0xb2, 0xc9, 0x32, 0x52, 0x76, 0xba, 0x8c, - 0x34, 0xa7, 0xda, 0x92, 0x9f, 0x5b, 0x6d, 0xd9, 0x84, 0x62, 0x40, 0x86, 0xc2, 0x2e, 0x45, 0x7d, - 0x29, 0x2e, 0xdf, 0x50, 0x67, 0xa6, 0x0e, 0x55, 0x5a, 0x56, 0x87, 0x12, 0x74, 0x98, 0xa8, 0x44, - 0xa5, 0xc2, 0x78, 0x54, 0x95, 0x29, 0xeb, 0x5c, 0x3b, 0x2d, 0x54, 0x29, 0xa2, 0x2a, 0xcd, 0x54, - 0xae, 0x53, 0x9a, 0xf9, 0x11, 0x34, 0xcf, 0x2c, 0xfb, 0x95, 0x98, 0x92, 0xef, 0x98, 0x3e, 0x75, - 0x19, 0x91, 0x9b, 0x5b, 0x19, 0x37, 0x12, 0xf9, 0xb1, 0x10, 0xa3, 0xcf, 0x60, 0xd3, 0xa3, 0x17, - 0x11, 0xe9, 0xcd, 0x91, 0x6b, 0x07, 0x74, 0x7c, 0x4e, 0x7d, 0x22, 0x37, 0xb7, 0x32, 0x5e, 0xf7, - 0xe8, 0x85, 0xbe, 0x67, 0x3b, 0x8a, 0x75, 0xe8, 0x36, 0x54, 0xc7, 0x96, 0xfd, 0x8a, 0x70, 0x75, - 0x15, 0xa8, 0x2e, 0x31, 0x41, 0x89, 0x0e, 0x45, 0xbc, 0x11, 0xbe, 0x31, 0x69, 0x9a, 0x78, 0xbd, - 0xf5, 0x47, 0x3d, 0xcb, 0x97, 0x73, 0xcd, 0x3c, 0x9e, 0xad, 0x4a, 0x1a, 0x7f, 0x9f, 0x81, 0x32, - 0x26, 0x6c, 0x4c, 0x7d, 0x46, 0xd0, 0x7d, 0x58, 0x4d, 0xd6, 0xc7, 0x0c, 0x42, 0x3f, 0x59, 0xe8, - 0x06, 0x4b, 0x73, 0xe3, 0xc0, 0x41, 0x7d, 0xd8, 0x1c, 0x07, 0x84, 0xb9, 0x43, 0x9f, 0x38, 0xe6, - 0x98, 0x32, 0x6e, 0x06, 0xca, 0x4f, 0x74, 0x0d, 0x38, 0x29, 0x95, 0x9e, 0x44, 0xb0, 0x13, 0xca, - 0xb8, 0x76, 0x26, 0xbc, 0x3e, 0x9e, 0x23, 0x35, 0x7e, 0x93, 0x81, 0xb5, 0x3d, 0xea, 0xbf, 0x70, - 0x83, 0x51, 0x9f, 0x86, 0x81, 0x4d, 0x4e, 0xc7, 0x1e, 0xb5, 0x1c, 0xe3, 0xaf, 0xae, 0xed, 0x85, - 0x73, 0x3f, 0x21, 0x3b, 0xff, 0x13, 0x7e, 0x08, 0x0d, 0x9b, 0x3a, 0x44, 0x9c, 0xf6, 0x82, 0xcb, - 0x31, 0x75, 0x7d, 0xae, 0x8b, 0x54, 0x75, 0x21, 0xee, 0xc6, 0x52, 0x03, 0x12, 0x1b, 0x19, 0xff, - 0x90, 0x81, 0xdc, 0x53, 0xc2, 0x8d, 0xc1, 0xbb, 0x98, 0x92, 0xf1, 0x59, 0x6a, 0x35, 0xee, 0x41, - 0x2e, 0x08, 0x55, 0x35, 0x7c, 0xc2, 0xcb, 0xd3, 0x4d, 0xb0, 0x80, 0x18, 0x7f, 0x97, 0x87, 0xfc, - 0xa1, 0xcb, 0xb8, 0xf1, 0xb7, 0xd7, 0xa7, 0xeb, 0x93, 0xa9, 0xca, 0xde, 0xf2, 0xd2, 0x76, 0xef, - 0x46, 0x54, 0xd7, 0x13, 0xfc, 0xf8, 0x19, 0xc0, 0xd8, 0x1a, 0x12, 0x75, 0x45, 0x24, 0x6d, 0x56, - 0xdd, 0x6e, 0xc5, 0xed, 0x07, 0x42, 0x7a, 0x62, 0x0d, 0x5d, 0x5f, 0x76, 0xd2, 0xcb, 0xe0, 0x8a, - 0x40, 0x4b, 0xb1, 0x0a, 0x85, 0xaa, 0xd0, 0x26, 0x73, 0x02, 0xbd, 0x6f, 0x2c, 0xb9, 0x75, 0xef, - 0x65, 0x75, 0xa9, 0x4d, 0x48, 0x44, 0xfb, 0x27, 0xb2, 0xda, 0xa6, 0x5a, 0x17, 0xae, 0x6c, 0x9d, - 0x93, 0xf5, 0xb6, 0xa8, 0xed, 0xd6, 0x44, 0x90, 0x92, 0x01, 0x46, 0xa4, 0xbb, 0x71, 0x98, 0x12, - 0xa1, 0x56, 0xa4, 0x4c, 0xea, 0x5b, 0x65, 0x52, 0x91, 0x7c, 0xa9, 0x7c, 0x4d, 0xa6, 0x2e, 0x13, - 0xad, 0x68, 0x26, 0x52, 0x97, 0x74, 0x6d, 0xbc, 0x99, 0xa0, 0x55, 0x3e, 0x08, 0x7d, 0xd6, 0xca, - 0xc8, 0x52, 0xc7, 0xa2, 0x95, 0x94, 0x18, 0xf4, 0xa7, 0xd0, 0xf0, 0xc9, 0x1b, 0x9e, 0x1a, 0x55, - 0xf3, 0x69, 0xa1, 0x7d, 0x71, 0x4d, 0x34, 0x38, 0x89, 0x2c, 0x6c, 0xfc, 0x8d, 0x88, 0xde, 0xe2, - 0x0c, 0xc3, 0x8c, 0x7f, 0xca, 0x5e, 0xdb, 0x1d, 0x76, 0x26, 0x16, 0x25, 0x7b, 0xcd, 0xea, 0xa7, - 0x78, 0xd7, 0xd5, 0x4f, 0xd5, 0x30, 0x77, 0xad, 0xea, 0xa7, 0x6c, 0x96, 0x38, 0x60, 0xfe, 0xad, - 0x1d, 0x70, 0x72, 0x19, 0x65, 0x65, 0x58, 0xb8, 0xd9, 0xb2, 0x65, 0x4c, 0xad, 0xcd, 0x5f, 0xa7, - 0x63, 0xde, 0xcf, 0xa1, 0x74, 0x16, 0x8a, 0x50, 0x1a, 0xad, 0xcf, 0x27, 0x0b, 0xe6, 0xa1, 0x6c, - 0xda, 0xee, 0x48, 0x30, 0x8e, 0x1a, 0x89, 0xaf, 0x97, 0xc7, 0xc7, 0xd7, 0x96, 0xa7, 0xcd, 0x76, - 0x6b, 0xe6, 0xeb, 0xf7, 0xf5, 0xcf, 0x4b, 0x38, 0x86, 0x1a, 0xbf, 0x84, 0xa2, 0xea, 0x09, 0x7d, - 0x09, 0x2b, 0xaa, 0x2f, 0xe5, 0x5a, 0x9a, 0xef, 0xcb, 0x4c, 0x58, 0x55, 0xf8, 0xbe, 0x80, 0x8b, - 0xc3, 0x68, 0x52, 0x77, 0xcd, 0x63, 0xf5, 0x62, 0xbc, 0x84, 0xe2, 0x9e, 0xe5, 0xdb, 0xc4, 0x7b, - 0x47, 0x71, 0x2a, 0x1d, 0x11, 0xdf, 0x71, 0xe1, 0xf8, 0xb7, 0x99, 0xb8, 0x72, 0x7c, 0x0b, 0x36, - 0x26, 0x2b, 0xc7, 0xe6, 0xe9, 0xc9, 0xe1, 0xf3, 0xdd, 0xfd, 0xe6, 0x0d, 0xb4, 0x01, 0xab, 0x5a, - 0xf5, 0xb4, 0x7b, 0xdc, 0xc5, 0xbb, 0x03, 0x55, 0x43, 0x9e, 0xad, 0x2b, 0x67, 0xd1, 0x26, 0x20, - 0x2d, 0xeb, 0x9f, 0x1e, 0x1d, 0xed, 0xe2, 0x83, 0x6f, 0x84, 0x3c, 0x37, 0xb7, 0xde, 0x9c, 0x9f, - 0xad, 0x37, 0x17, 0xe6, 0xd6, 0x9b, 0x8b, 0xcf, 0xf2, 0xe5, 0x72, 0xb3, 0x82, 0x4b, 0xfa, 0xaf, - 0x8a, 0xad, 0xdf, 0xe6, 0xa0, 0x1c, 0x25, 0x24, 0xc9, 0x2f, 0x0a, 0x99, 0xf4, 0x2f, 0x0a, 0xd3, - 0x7f, 0x48, 0x64, 0xe7, 0xfc, 0x21, 0x31, 0xff, 0x5f, 0x88, 0xdc, 0xa2, 0x7f, 0x21, 0x1e, 0xea, - 0xbf, 0x1e, 0xf2, 0xd2, 0x95, 0xdf, 0x9b, 0x49, 0x8d, 0xda, 0x03, 0x6b, 0xc8, 0xd4, 0x6f, 0x5e, - 0xea, 0x97, 0x08, 0x03, 0xca, 0x21, 0x23, 0x81, 0x63, 0x71, 0x4b, 0xff, 0x61, 0x11, 0xbf, 0x1b, - 0xff, 0x9c, 0x81, 0x55, 0x95, 0x07, 0x7e, 0x15, 0xd0, 0x91, 0x2e, 0x96, 0x1a, 0xbf, 0xb8, 0xb6, - 0x43, 0xa5, 0xfe, 0x6f, 0xc8, 0x4e, 0xfc, 0xdf, 0x90, 0xa4, 0x78, 0xb9, 0x74, 0x8a, 0x67, 0xec, - 0xa4, 0x78, 0xf9, 0x63, 0x28, 0x47, 0x39, 0x8d, 0xa6, 0xc4, 0xea, 0xcc, 0xd7, 0xe0, 0x18, 0x62, - 0x7c, 0x0e, 0x95, 0xf8, 0xd3, 0xe6, 0xfc, 0xa0, 0xb6, 0x9e, 0xfe, 0x41, 0xad, 0x92, 0xfa, 0x09, - 0x6d, 0x6b, 0x00, 0xb5, 0x89, 0xbc, 0x11, 0x21, 0xc8, 0xcb, 0xa8, 0xa2, 0x5a, 0xcb, 0x67, 0xf4, - 0x10, 0x2a, 0xd1, 0x48, 0x62, 0x99, 0x72, 0xf3, 0x67, 0x93, 0x60, 0xb6, 0xfe, 0x25, 0x03, 0x28, - 0x09, 0x1f, 0xfb, 0x2e, 0x1b, 0x5b, 0xdc, 0x3e, 0x7f, 0xab, 0x04, 0x6b, 0x03, 0x8a, 0x2f, 0xe9, - 0x59, 0x62, 0xbc, 0xc2, 0x4b, 0x7a, 0x76, 0xe0, 0x4c, 0xd8, 0x25, 0x77, 0xa5, 0x5d, 0xe2, 0x54, - 0x36, 0x7f, 0x8d, 0x54, 0xf6, 0xfe, 0x0b, 0xa8, 0x4f, 0xca, 0xd1, 0x6d, 0x78, 0xaf, 0x7f, 0x70, - 0x74, 0x7a, 0xb8, 0x3b, 0x38, 0x78, 0x7e, 0x6c, 0x1e, 0x3d, 0xdf, 0xef, 0x9a, 0xa7, 0xc7, 0xfd, - 0x93, 0xee, 0xde, 0xc1, 0x57, 0x07, 0x5d, 0xc1, 0xbb, 0x16, 0xac, 0x4f, 0x03, 0x06, 0xdd, 0xbf, - 0x18, 0x34, 0x33, 0x92, 0xac, 0x53, 0x9a, 0xdd, 0xd3, 0xfd, 0x83, 0xe7, 0xcd, 0xec, 0xf6, 0xaf, - 0x8b, 0xd0, 0xd8, 0x15, 0xbe, 0x9b, 0x8c, 0x86, 0x1c, 0x58, 0x53, 0xbe, 0x36, 0xf9, 0xc3, 0xde, - 0xa2, 0xe3, 0x9d, 0xc2, 0xb6, 0xa3, 0xc4, 0xf1, 0x07, 0x57, 0xc1, 0xb4, 0x57, 0x7d, 0x97, 0x81, - 0x0f, 0xa2, 0x04, 0x33, 0x06, 0xa6, 0x53, 0x4d, 0xb4, 0xbd, 0x30, 0xfc, 0xcf, 0xa4, 0xa5, 0xf1, - 0xe8, 0x3f, 0x79, 0xab, 0x36, 0x7a, 0x2a, 0x7f, 0x09, 0xcd, 0xa7, 0x84, 0x4f, 0x7e, 0xed, 0xd6, - 0x82, 0x8e, 0x9e, 0x12, 0x1e, 0x0f, 0xf6, 0xf1, 0x52, 0x8c, 0xee, 0xdc, 0x04, 0x24, 0x12, 0xc2, - 0x09, 0x04, 0x43, 0x8b, 0x9a, 0x0a, 0x68, 0xdc, 0xff, 0x27, 0xcb, 0x41, 0x7a, 0x00, 0xb1, 0x5c, - 0x22, 0x3c, 0x4f, 0x8d, 0x70, 0x77, 0xf9, 0xe6, 0x79, 0xe5, 0x72, 0x45, 0xb0, 0xd4, 0x28, 0x72, - 0x1b, 0xbb, 0xa6, 0x53, 0x48, 0xec, 0xd5, 0xa3, 0x44, 0x30, 0x3d, 0xca, 0x6b, 0xb8, 0xa5, 0x5d, - 0x4f, 0xb3, 0x26, 0x15, 0xee, 0xd0, 0x83, 0xd9, 0x18, 0x3a, 0x13, 0x13, 0xe3, 0x11, 0x3f, 0xbd, - 0x1e, 0x58, 0x8d, 0xdb, 0xf9, 0xea, 0x9b, 0x8f, 0x87, 0x2e, 0x3f, 0x0f, 0xcf, 0xda, 0x36, 0x1d, - 0x45, 0xbf, 0x43, 0xab, 0x5f, 0x9a, 0x6d, 0xea, 0x45, 0x82, 0xdf, 0x65, 0x6b, 0x87, 0xee, 0x6b, - 0xf2, 0x67, 0xf2, 0x24, 0x45, 0x39, 0xfd, 0xcf, 0x6c, 0x5d, 0xbf, 0x3f, 0x79, 0x22, 0x05, 0x67, - 0x45, 0xd9, 0xe4, 0x27, 0xff, 0x17, 0x00, 0x00, 0xff, 0xff, 0xdc, 0x22, 0xbd, 0x8e, 0x81, 0x2d, - 0x00, 0x00, + 0x19, 0x91, 0xa2, 0x38, 0x80, 0x0f, 0x06, 0xe6, 0xd0, 0x80, 0x4f, 0xf6, 0x2f, 0x98, 0xcb, 0x1c, + 0x3c, 0x57, 0x9f, 0x7d, 0xb0, 0x01, 0x9f, 0x0d, 0x5f, 0x7c, 0xf4, 0x0f, 0x30, 0x60, 0xf8, 0x64, + 0xf8, 0x6a, 0xc4, 0x92, 0x4b, 0xad, 0xa4, 0x06, 0x2d, 0xc0, 0x87, 0xb9, 0x65, 0xbe, 0xf7, 0xc5, + 0x92, 0x2f, 0xde, 0xf7, 0xe2, 0x45, 0xbc, 0x84, 0x0f, 0x3d, 0xf7, 0x35, 0x79, 0xe5, 0x72, 0xd3, + 0x1a, 0x12, 0x9f, 0x9b, 0xcc, 0x1d, 0x85, 0x9e, 0xc5, 0x5d, 0xea, 0xb7, 0xc7, 0x01, 0xe5, 0x14, + 0x95, 0xb4, 0xde, 0xf8, 0x48, 0x02, 0x1e, 0x4e, 0xc1, 0x09, 0x63, 0x31, 0xd6, 0xf8, 0x70, 0x48, + 0xe9, 0xd0, 0x23, 0x0f, 0xe5, 0xdb, 0x59, 0xf8, 0xe2, 0xa1, 0x13, 0x06, 0xa9, 0xbe, 0x8c, 0xdb, + 0xd3, 0x7a, 0xee, 0x8e, 0x08, 0xe3, 0xd6, 0x68, 0xac, 0x01, 0xb7, 0xa2, 0xde, 0x6d, 0x8f, 0x86, + 0x8e, 0x1a, 0x43, 0xab, 0xd6, 0x23, 0xd5, 0x88, 0x3a, 0xc4, 0x63, 0x4a, 0xba, 0xf5, 0x6f, 0x39, + 0x58, 0xef, 0xc7, 0x53, 0xc6, 0xa1, 0xdf, 0x0f, 0x47, 0x23, 0x2b, 0xb8, 0x44, 0x9b, 0x50, 0x1c, + 0x5b, 0x8c, 0x11, 0xa7, 0x95, 0xb9, 0x93, 0xb9, 0x57, 0xc0, 0xfa, 0x4d, 0xc8, 0x5f, 0x58, 0xae, + 0x47, 0x9c, 0x56, 0x56, 0xc9, 0xd5, 0x1b, 0xfa, 0x00, 0x60, 0x48, 0x5d, 0x7f, 0x68, 0x5e, 0x10, + 0xcf, 0x6b, 0xe5, 0xee, 0x64, 0xee, 0x55, 0x70, 0x45, 0x4a, 0xfe, 0x9c, 0x78, 0x9e, 0x50, 0x73, + 0x6a, 0xba, 0xa3, 0x71, 0x40, 0x5f, 0x93, 0x56, 0x5e, 0xa9, 0x39, 0x3d, 0x50, 0x02, 0xf4, 0x05, + 0x14, 0x5d, 0xc6, 0x42, 0xc2, 0x5a, 0x85, 0x3b, 0xb9, 0x7b, 0xd5, 0xed, 0x8f, 0xdb, 0x7a, 0xb6, + 0xed, 0x79, 0x93, 0x6b, 0x1f, 0x08, 0x2c, 0xd6, 0x4d, 0xd0, 0xd7, 0xb0, 0x62, 0x9f, 0x5b, 0xdc, + 0x3c, 0x77, 0x19, 0xa7, 0xc1, 0x65, 0xab, 0x28, 0xbb, 0x68, 0x2f, 0xef, 0x62, 0xef, 0xdc, 0xe2, + 0x3d, 0xd5, 0xa0, 0xeb, 0xf3, 0xe0, 0x12, 0x57, 0xed, 0x44, 0x62, 0x7c, 0x03, 0xcd, 0x69, 0x00, + 0x6a, 0x42, 0xee, 0x15, 0xb9, 0x94, 0xe6, 0xa8, 0x60, 0xf1, 0x88, 0x1e, 0x41, 0xe1, 0xb5, 0xe5, + 0x85, 0x44, 0x9a, 0xa2, 0xba, 0x6d, 0xc4, 0x23, 0x2a, 0xbb, 0x8b, 0x1e, 0xf6, 0xa8, 0xcf, 0xc9, + 0x1b, 0x8e, 0x15, 0xf0, 0x49, 0xf6, 0x8f, 0x33, 0x86, 0x09, 0x05, 0x39, 0x7f, 0x74, 0x07, 0xaa, + 0x0e, 0x61, 0x76, 0xe0, 0x8e, 0xc5, 0xdc, 0x74, 0xc7, 0x69, 0x11, 0xfa, 0x10, 0x80, 0x85, 0xc3, + 0x21, 0x61, 0x12, 0x90, 0x95, 0x80, 0x94, 0x04, 0xad, 0x43, 0xc1, 0xb3, 0xce, 0x48, 0x64, 0x6f, + 0xf5, 0xb2, 0xf5, 0xdf, 0x07, 0x50, 0x9b, 0xf8, 0x66, 0x54, 0x87, 0xac, 0xeb, 0xe8, 0x01, 0xb2, + 0xae, 0x5c, 0xac, 0x71, 0x40, 0x5f, 0x12, 0x9b, 0x9b, 0xae, 0xa3, 0xfb, 0xad, 0x68, 0xc9, 0x81, + 0x83, 0x1e, 0x43, 0x91, 0x71, 0x8b, 0x87, 0x4c, 0xf6, 0x5b, 0xdf, 0xfe, 0x60, 0xbe, 0x29, 0xdb, + 0x7d, 0x09, 0xc2, 0x1a, 0x8c, 0x1e, 0xc0, 0xaa, 0x72, 0xea, 0xf4, 0x57, 0xa9, 0xa5, 0x6e, 0x4a, + 0xc5, 0x7e, 0xea, 0xd3, 0xd6, 0xa1, 0x40, 0x82, 0x80, 0x06, 0xad, 0x82, 0x9a, 0xba, 0x7c, 0x41, + 0x3b, 0x00, 0x76, 0x40, 0x2c, 0x4e, 0x1c, 0xd3, 0xe2, 0xad, 0xa2, 0x36, 0xab, 0xf2, 0xfa, 0x76, + 0xe4, 0xf5, 0xed, 0x41, 0xe4, 0xf5, 0xb8, 0xa2, 0xd1, 0xbb, 0x1c, 0xb5, 0x21, 0xff, 0x92, 0x9e, + 0xb1, 0x56, 0x49, 0xae, 0xbe, 0xb1, 0x60, 0xca, 0xcf, 0xe8, 0x19, 0x96, 0x38, 0x61, 0x03, 0x35, + 0x5b, 0xdf, 0x1a, 0x91, 0x56, 0x45, 0xd9, 0x40, 0x4a, 0x8e, 0xad, 0x11, 0x41, 0x5f, 0x42, 0x9d, + 0xd9, 0xc4, 0xb7, 0x02, 0x97, 0x9a, 0xc3, 0x80, 0x86, 0xe3, 0x16, 0xc8, 0xd9, 0x6c, 0x26, 0x1d, + 0x6b, 0xf5, 0x53, 0xa1, 0xc5, 0x35, 0x96, 0x7e, 0x45, 0x8f, 0xa1, 0x4c, 0x7c, 0x47, 0x7d, 0x46, + 0xf5, 0xca, 0xcf, 0x28, 0x49, 0xec, 0x2e, 0x47, 0xef, 0x41, 0xe5, 0x25, 0x3d, 0x33, 0x6d, 0x1a, + 0xfa, 0xbc, 0xb5, 0x22, 0x09, 0x56, 0x7e, 0x49, 0xcf, 0xf6, 0xc4, 0x3b, 0xfa, 0x08, 0x56, 0x14, + 0x09, 0xb5, 0xbe, 0x26, 0xf5, 0x55, 0x25, 0x8b, 0x21, 0x8a, 0x8f, 0x1a, 0x52, 0x57, 0x10, 0x25, + 0x53, 0x90, 0x1f, 0x42, 0xc3, 0x0f, 0x47, 0xa9, 0x38, 0xc5, 0x5a, 0x0d, 0x89, 0xaa, 0xfb, 0xe1, + 0x28, 0x31, 0x16, 0x43, 0xdb, 0x50, 0x08, 0x99, 0x35, 0x24, 0xad, 0xa6, 0x9c, 0xff, 0xfb, 0x0b, + 0x2c, 0x7a, 0x2a, 0x30, 0x58, 0x41, 0x85, 0x4b, 0xdb, 0xd4, 0xb7, 0xc3, 0x20, 0x20, 0xbe, 0x7d, + 0xd9, 0x5a, 0x55, 0xc3, 0xa7, 0x44, 0xe8, 0x01, 0xe4, 0x45, 0x00, 0x6a, 0x21, 0xe9, 0x59, 0x37, + 0xe7, 0x74, 0x7a, 0x44, 0x1d, 0x82, 0x25, 0x08, 0x7d, 0x01, 0xa5, 0x11, 0xe1, 0x81, 0x6b, 0xb3, + 0xd6, 0x9a, 0x9c, 0xc4, 0x47, 0x0b, 0x26, 0x81, 0x43, 0xff, 0x48, 0x01, 0x71, 0xd4, 0x42, 0xd8, + 0x82, 0x29, 0xb2, 0x9b, 0xbf, 0x62, 0xdc, 0x69, 0xad, 0xdf, 0xc9, 0xdc, 0x5b, 0xc1, 0x55, 0x2d, + 0xfb, 0x86, 0x71, 0xc7, 0xf8, 0xf7, 0x02, 0xe4, 0x9e, 0xd1, 0xb3, 0x19, 0x7e, 0xec, 0xc4, 0x04, + 0xc8, 0xca, 0x69, 0x7e, 0xb4, 0xd8, 0x9b, 0xa6, 0x49, 0xb0, 0x05, 0x2b, 0xae, 0xcf, 0x78, 0x10, + 0xda, 0xca, 0xb6, 0x8a, 0x99, 0x13, 0xb2, 0xc4, 0xf7, 0xf3, 0x69, 0xdf, 0xff, 0x31, 0x20, 0xe5, + 0x90, 0xe4, 0xcd, 0x98, 0xd8, 0x5c, 0xaf, 0x8d, 0xa2, 0x87, 0x22, 0x56, 0x37, 0xa5, 0x48, 0xb8, + 0x5f, 0x4c, 0x71, 0x1f, 0x21, 0xc8, 0x73, 0x6b, 0xa8, 0x58, 0x50, 0xc1, 0xf2, 0x59, 0x38, 0x55, + 0x40, 0xe9, 0x48, 0x39, 0x7a, 0x59, 0xa2, 0xcb, 0x42, 0x20, 0xfd, 0x7c, 0x07, 0x80, 0x71, 0x2b, + 0xd0, 0x8c, 0x83, 0xab, 0x19, 0xa7, 0xd1, 0xbb, 0xfc, 0xf7, 0xf5, 0xf1, 0x9b, 0x50, 0x92, 0xd3, + 0x71, 0x1d, 0xe9, 0xe1, 0x15, 0x5c, 0x14, 0xaf, 0x07, 0x0e, 0xfa, 0x69, 0xe4, 0x70, 0x35, 0xd9, + 0xd9, 0x9d, 0x25, 0x46, 0x9f, 0x70, 0xba, 0x94, 0x97, 0xd4, 0x97, 0x7a, 0xc9, 0x33, 0x7a, 0x36, + 0xed, 0x25, 0xc6, 0x2f, 0xa1, 0x20, 0x3b, 0x43, 0xf7, 0xa0, 0x29, 0x22, 0xb5, 0xc9, 0xc3, 0xc0, + 0x67, 0x9a, 0x3e, 0x6a, 0xeb, 0xab, 0x0b, 0xf9, 0x40, 0x88, 0x15, 0x83, 0xee, 0xc3, 0xaa, 0x15, + 0x3a, 0x2e, 0x9d, 0x80, 0xaa, 0xdd, 0xb0, 0x21, 0x15, 0x09, 0x76, 0x8b, 0x42, 0x51, 0x39, 0x08, + 0x42, 0x50, 0xef, 0x0f, 0x76, 0x07, 0xa7, 0x7d, 0xf3, 0xa4, 0x7b, 0xbc, 0x7f, 0x70, 0xfc, 0xb4, + 0x79, 0x23, 0x25, 0xc3, 0xa7, 0xc7, 0xc7, 0x42, 0x96, 0x41, 0xeb, 0xd0, 0xd4, 0xb2, 0xbd, 0xe7, + 0x47, 0x27, 0x87, 0xdd, 0x41, 0x77, 0xbf, 0x99, 0x45, 0xab, 0x50, 0xd3, 0xd2, 0xaf, 0x76, 0x0f, + 0x0e, 0xbb, 0xfb, 0xcd, 0x5c, 0x1a, 0xb8, 0x7b, 0xbc, 0xd7, 0x3d, 0x14, 0xd2, 0xfc, 0xb3, 0x7c, + 0xb9, 0xd2, 0x04, 0xe3, 0x9f, 0xee, 0x02, 0x24, 0x5f, 0x8b, 0xee, 0x43, 0xdd, 0xb2, 0xed, 0x30, + 0xb0, 0xec, 0x4b, 0x93, 0xd9, 0x34, 0x20, 0xf2, 0xcb, 0xb2, 0xbd, 0x1b, 0xb8, 0x16, 0xc9, 0xfb, + 0x42, 0xfc, 0x5d, 0x26, 0x83, 0xda, 0xd0, 0x14, 0x0e, 0x18, 0xb8, 0xc4, 0xb7, 0x89, 0x46, 0x67, + 0x25, 0x3a, 0x83, 0x1b, 0x89, 0x26, 0xc6, 0x7f, 0x0a, 0x0d, 0x6e, 0xb1, 0x57, 0xa6, 0x4d, 0x47, + 0x63, 0x8f, 0xc8, 0x98, 0x9f, 0x93, 0xf0, 0x2c, 0xae, 0x0b, 0xc5, 0x5e, 0x2c, 0x17, 0xe8, 0xcf, + 0x21, 0xc7, 0x38, 0x97, 0x8e, 0x5f, 0xdd, 0xbe, 0x7b, 0xe5, 0x3a, 0xb5, 0xfb, 0x83, 0x01, 0x16, + 0x2d, 0x44, 0x43, 0xcf, 0x1b, 0x49, 0x3a, 0x5c, 0xab, 0xe1, 0xe1, 0xe1, 0x11, 0x16, 0x2d, 0x44, + 0x43, 0xce, 0x99, 0xde, 0x4b, 0xae, 0xd1, 0x70, 0x30, 0xe8, 0x63, 0xd1, 0x02, 0x61, 0x58, 0xb1, + 0xa9, 0xff, 0x9a, 0x04, 0x4c, 0xc2, 0x5a, 0x25, 0xd9, 0x43, 0xfb, 0xea, 0x1e, 0xf6, 0x52, 0xad, + 0xf0, 0x44, 0x1f, 0xe8, 0x67, 0x50, 0x90, 0x4e, 0xd3, 0xaa, 0xc8, 0x5d, 0xea, 0x07, 0xd7, 0x98, + 0x4e, 0x18, 0xf8, 0x58, 0x35, 0x42, 0xb7, 0xa1, 0xfa, 0x32, 0x74, 0x86, 0x44, 0xa5, 0x70, 0x92, + 0xac, 0x15, 0x0c, 0x52, 0x24, 0x82, 0xa6, 0x87, 0x3e, 0x05, 0x74, 0x6e, 0x31, 0x33, 0x20, 0x23, + 0xca, 0x49, 0x94, 0x5b, 0x4a, 0x96, 0x95, 0x71, 0xf3, 0xdc, 0x62, 0x58, 0x2a, 0xfa, 0x4a, 0x8e, + 0xee, 0x43, 0x96, 0x3f, 0xd2, 0x64, 0x5b, 0xc6, 0xdc, 0x2c, 0x7f, 0x84, 0xee, 0xaa, 0xc0, 0xee, + 0x32, 0xe2, 0x13, 0xa6, 0x78, 0x96, 0xed, 0xe5, 0x70, 0x5a, 0x28, 0x96, 0x77, 0x07, 0x36, 0x43, + 0xdf, 0x27, 0x36, 0x61, 0x4c, 0xc4, 0x5d, 0x4e, 0xa9, 0x67, 0xda, 0x96, 0xe7, 0xa9, 0x3d, 0xa6, + 0xdc, 0xcb, 0xe3, 0xf5, 0x94, 0x7e, 0x40, 0xa9, 0xb7, 0x27, 0xb4, 0xda, 0xef, 0x5c, 0xff, 0x05, + 0x0d, 0x46, 0xd2, 0x0a, 0xa6, 0x47, 0x19, 0x93, 0x3b, 0x4f, 0xb9, 0x57, 0xc0, 0x8d, 0x94, 0xe6, + 0x90, 0xaa, 0xa1, 0x7e, 0x0a, 0xeb, 0x01, 0x71, 0x42, 0xdf, 0xb1, 0x44, 0x1a, 0xcd, 0x2d, 0x4e, + 0x46, 0xc4, 0xe7, 0x4c, 0xee, 0x39, 0xe5, 0x5e, 0x11, 0xaf, 0xc5, 0xda, 0x7e, 0xac, 0x54, 0x1e, + 0xb8, 0x31, 0xa6, 0x34, 0x30, 0xbf, 0x0d, 0x55, 0x12, 0x65, 0x7e, 0x1b, 0x5a, 0x9e, 0xcb, 0x2f, + 0xe5, 0x8e, 0x54, 0xee, 0x95, 0xf0, 0x9a, 0x50, 0x7f, 0xad, 0xb5, 0x5f, 0x2b, 0xa5, 0x68, 0xf8, + 0x73, 0x68, 0xa5, 0xd7, 0xd2, 0x1c, 0x07, 0x74, 0x18, 0x68, 0x13, 0xaf, 0x49, 0x7b, 0x94, 0xf1, + 0xcd, 0x34, 0xe2, 0x24, 0x01, 0x7c, 0x97, 0xc9, 0x18, 0x7f, 0x57, 0x84, 0x5c, 0x7f, 0x30, 0x40, + 0x1b, 0x90, 0xbb, 0x20, 0x41, 0xcc, 0x40, 0xf1, 0x22, 0xba, 0xbf, 0x05, 0x85, 0x0b, 0x1a, 0x38, + 0x6a, 0xcb, 0xa9, 0xf5, 0x32, 0x58, 0xbd, 0x0a, 0xd5, 0x27, 0x50, 0x15, 0xcf, 0xa6, 0xdc, 0x27, + 0xd4, 0x96, 0x52, 0xeb, 0x65, 0x31, 0x08, 0x61, 0x57, 0xca, 0x04, 0x6a, 0x03, 0x72, 0x36, 0x51, + 0x7b, 0x8a, 0x58, 0x1a, 0xf1, 0xa2, 0xfb, 0xb5, 0xcf, 0xad, 0x80, 0xc9, 0x14, 0xa7, 0xd6, 0xcb, + 0x63, 0xf5, 0xaa, 0xfb, 0x15, 0xcf, 0x51, 0xbf, 0x20, 0x01, 0x05, 0x0c, 0x42, 0x98, 0xf4, 0x7b, + 0x17, 0x56, 0x18, 0x17, 0x49, 0x9d, 0x67, 0x5d, 0x9a, 0x23, 0x26, 0x77, 0x90, 0x5a, 0xaf, 0x88, + 0x81, 0x71, 0xbe, 0x2f, 0x84, 0x47, 0x12, 0xb6, 0x0d, 0x88, 0xf8, 0xdc, 0xe5, 0x97, 0x66, 0x40, + 0x6c, 0x3a, 0xf4, 0x5d, 0x49, 0x9a, 0xaa, 0x9c, 0x4d, 0x09, 0xaf, 0x2a, 0x1d, 0x4e, 0x54, 0x51, + 0xac, 0x11, 0x72, 0x97, 0x30, 0x33, 0xe4, 0x9c, 0x04, 0x44, 0xed, 0x09, 0xb5, 0x5e, 0x19, 0x37, + 0x22, 0xcd, 0xa9, 0x52, 0x08, 0xfc, 0x67, 0xb0, 0x16, 0xe3, 0xf5, 0x28, 0xbf, 0x22, 0x8e, 0x74, + 0xe1, 0x5a, 0xaf, 0x82, 0x51, 0xa4, 0xc4, 0xb1, 0x4e, 0xb4, 0xba, 0x07, 0xb5, 0x64, 0x66, 0x96, + 0xe7, 0x69, 0xef, 0x05, 0xbc, 0x12, 0x4f, 0xca, 0xf2, 0x3c, 0x81, 0xfc, 0x13, 0xb8, 0x15, 0xf7, + 0x6f, 0xd9, 0xdf, 0x86, 0x6e, 0x40, 0x9c, 0x78, 0x62, 0x0d, 0x39, 0x4a, 0x15, 0xdf, 0x8c, 0x20, + 0xbb, 0x1a, 0x91, 0x9a, 0x60, 0x17, 0xde, 0x9f, 0xed, 0x20, 0x35, 0xd3, 0xa6, 0xec, 0x63, 0x05, + 0x1b, 0xd3, 0x7d, 0x4c, 0xcc, 0xb8, 0x53, 0x84, 0xbc, 0x79, 0x41, 0x82, 0x4e, 0x19, 0x8a, 0xa6, + 0xf4, 0x82, 0x4e, 0x1d, 0x56, 0xcc, 0x94, 0x0f, 0x48, 0x84, 0xad, 0x11, 0x72, 0x3d, 0x25, 0x22, + 0xb5, 0x9a, 0x9d, 0x06, 0xd4, 0xcc, 0xf4, 0xba, 0x75, 0x36, 0x60, 0xcd, 0x9c, 0x5d, 0xa1, 0xce, + 0x1a, 0xac, 0x9a, 0xd3, 0x8b, 0xd0, 0xd9, 0x84, 0x75, 0x73, 0x8e, 0xa5, 0x3b, 0x4d, 0xa8, 0x9b, + 0x13, 0xb6, 0xec, 0xbc, 0x0f, 0x86, 0xb9, 0xd0, 0x66, 0x9d, 0xdb, 0xf0, 0x81, 0xb9, 0xcc, 0x20, + 0xc6, 0x6f, 0x32, 0x90, 0x3b, 0x3c, 0x3c, 0x42, 0xef, 0x43, 0x89, 0xf3, 0x17, 0x5c, 0xf8, 0x57, + 0x46, 0xda, 0xe8, 0x06, 0x2e, 0x0a, 0x81, 0xf2, 0x2d, 0xa5, 0x65, 0x42, 0x1b, 0xb1, 0x43, 0x68, + 0x99, 0xd2, 0x3e, 0x84, 0x55, 0x4e, 0x5f, 0x11, 0x9f, 0x99, 0x63, 0x12, 0x98, 0x8c, 0xd8, 0xd4, + 0x77, 0xe2, 0x3d, 0xa8, 0xa1, 0x54, 0x27, 0x24, 0xe8, 0x4b, 0x85, 0x30, 0x2f, 0x40, 0xd9, 0xd4, + 0xa3, 0x45, 0xcf, 0xa2, 0xef, 0xce, 0x3a, 0x20, 0x73, 0xa6, 0x27, 0xe3, 0xd7, 0x45, 0xc8, 0x0d, + 0x06, 0x7d, 0x3d, 0x89, 0xb3, 0x64, 0x12, 0x6a, 0x8a, 0x67, 0x47, 0x11, 0xfb, 0x04, 0xab, 0x73, + 0x7a, 0xa7, 0x9c, 0x61, 0x75, 0x49, 0x93, 0x76, 0x21, 0xab, 0x15, 0xad, 0x72, 0x0b, 0x58, 0x5d, + 0x91, 0xfd, 0xe6, 0x67, 0x59, 0x1d, 0x91, 0x76, 0x21, 0xab, 0xab, 0x11, 0x5d, 0x27, 0x59, 0x3d, + 0x9f, 0xae, 0xf5, 0xb7, 0xa6, 0x6b, 0xe3, 0xed, 0xe9, 0xda, 0x7c, 0x4b, 0xba, 0xae, 0xfe, 0x5e, + 0x74, 0x45, 0xdf, 0x03, 0x5d, 0xd7, 0xae, 0x47, 0x57, 0xed, 0x43, 0xc2, 0x35, 0xbe, 0x17, 0xea, + 0xfe, 0xbf, 0x64, 0xea, 0xff, 0x94, 0x60, 0x25, 0x9d, 0xd9, 0x48, 0xda, 0x85, 0x81, 0x6f, 0x72, + 0xeb, 0x95, 0xeb, 0x0f, 0xa7, 0xf2, 0xca, 0x86, 0x50, 0x0d, 0xa4, 0x26, 0xce, 0x14, 0xbf, 0x80, + 0xd6, 0x39, 0xb1, 0x84, 0x21, 0xb6, 0x89, 0xe9, 0x59, 0x5c, 0x9c, 0x07, 0xcd, 0xf1, 0xe3, 0x47, + 0x11, 0xa3, 0x0a, 0xbd, 0x0c, 0x5e, 0x97, 0x88, 0xee, 0x36, 0x39, 0x54, 0xfa, 0x93, 0xc7, 0x8f, + 0x14, 0xbf, 0xe6, 0x37, 0xde, 0x79, 0x2c, 0x1a, 0xe7, 0x64, 0xe3, 0xec, 0x6c, 0xe3, 0x9d, 0xc7, + 0x4b, 0x1b, 0xef, 0x88, 0xc6, 0x79, 0xd9, 0x38, 0x37, 0xa7, 0xf1, 0x8e, 0x6a, 0xfc, 0x29, 0x34, + 0xb9, 0x3b, 0x22, 0x26, 0xa7, 0xe6, 0xa5, 0x4b, 0x3c, 0x47, 0x34, 0x2a, 0xe8, 0xbd, 0xb4, 0x26, + 0x34, 0x03, 0xfa, 0x0b, 0x21, 0x8f, 0x86, 0xba, 0x49, 0x28, 0x37, 0x47, 0x2e, 0x1b, 0x07, 0xc4, + 0x71, 0xe5, 0x89, 0x4f, 0x1f, 0x11, 0x8a, 0x9a, 0xaa, 0x1b, 0x84, 0xf2, 0xa3, 0xb4, 0x5e, 0x1e, + 0x15, 0xb4, 0xeb, 0xd3, 0xd7, 0x24, 0xf0, 0xac, 0xb1, 0x29, 0xef, 0xfd, 0x64, 0xd4, 0xc8, 0xf6, + 0x8a, 0x78, 0x45, 0x8b, 0xb1, 0x90, 0xea, 0x98, 0x17, 0x21, 0xd9, 0x98, 0x10, 0xfb, 0x3c, 0xd9, + 0x99, 0x4b, 0xb8, 0xa1, 0x55, 0x7d, 0xa9, 0x51, 0xf3, 0x7a, 0x00, 0x0d, 0x4e, 0xb9, 0xe5, 0xa5, + 0xe0, 0x15, 0x4d, 0xdd, 0x9a, 0x54, 0xa4, 0xc1, 0x9f, 0xc3, 0x86, 0x75, 0xf1, 0xea, 0x42, 0x58, + 0x8c, 0xb9, 0x9e, 0x3c, 0x08, 0xa8, 0x4f, 0xa8, 0x6a, 0xea, 0xae, 0x69, 0x75, 0x5f, 0x69, 0xe3, + 0x0f, 0x68, 0x43, 0x33, 0xf4, 0x2d, 0x9f, 0x5d, 0x08, 0x9f, 0x52, 0xe7, 0x23, 0xbd, 0xa1, 0x03, + 0x6e, 0x24, 0x1a, 0x79, 0x40, 0x12, 0xf8, 0x2f, 0xa1, 0xf5, 0xc2, 0xf2, 0x18, 0x31, 0x5d, 0x9f, + 0x93, 0x20, 0x08, 0xc7, 0x29, 0x73, 0xd5, 0x34, 0x81, 0x37, 0x25, 0xe2, 0x20, 0x05, 0x88, 0x87, + 0xfb, 0x11, 0xd4, 0xd3, 0x2b, 0x3a, 0x62, 0x3a, 0x1c, 0xad, 0xe0, 0x15, 0x12, 0x2f, 0xa4, 0xfc, + 0x24, 0x15, 0xdb, 0xa7, 0xdd, 0xb5, 0xf3, 0x1e, 0xdc, 0x32, 0x17, 0xf9, 0xe4, 0x22, 0xa5, 0xf4, + 0xb9, 0x85, 0x4a, 0xe1, 0x53, 0x92, 0xa9, 0xd3, 0x3e, 0xd3, 0x31, 0xa0, 0x65, 0x2e, 0x70, 0x0d, + 0xc9, 0xd6, 0x89, 0x95, 0x97, 0xf3, 0x9d, 0x59, 0xe1, 0x0e, 0x82, 0xa6, 0x39, 0xb5, 0x8c, 0x9d, + 0x16, 0x6c, 0x9a, 0x73, 0x57, 0x4b, 0x4e, 0x63, 0x7a, 0x39, 0xe4, 0xc4, 0x17, 0xd9, 0xbc, 0xb3, + 0x0a, 0x0d, 0x73, 0xd2, 0xa2, 0xc6, 0xef, 0x4a, 0x90, 0x17, 0xeb, 0x85, 0xd6, 0xa1, 0xe0, 0xfa, + 0x0e, 0x79, 0xa3, 0x36, 0x68, 0xac, 0x5e, 0xd0, 0x03, 0xc8, 0x07, 0xd4, 0x23, 0xfa, 0xa2, 0xe4, + 0xe6, 0x9c, 0x2b, 0x50, 0x4c, 0x3d, 0x82, 0x25, 0x08, 0x7d, 0x08, 0x65, 0x79, 0x7d, 0x10, 0x91, + 0x56, 0xec, 0xa1, 0x25, 0x29, 0x51, 0x7e, 0x67, 0x40, 0x91, 0xf8, 0x4e, 0xc4, 0x4a, 0x99, 0x04, + 0x13, 0x5f, 0x13, 0x6b, 0x3a, 0x0d, 0x2d, 0x44, 0x59, 0xf0, 0x64, 0x1a, 0xfa, 0x31, 0x54, 0x3d, + 0x6f, 0x14, 0x6d, 0xef, 0x9a, 0x73, 0x39, 0x5c, 0xf1, 0xbc, 0xd1, 0x20, 0xce, 0x27, 0x12, 0x90, + 0xcc, 0x29, 0x4a, 0x9a, 0xcd, 0x1a, 0xc4, 0xe2, 0xa4, 0x43, 0x82, 0xc6, 0x8a, 0x58, 0xd9, 0x5e, + 0x01, 0x17, 0x05, 0x60, 0x1c, 0x75, 0xc1, 0x39, 0x8b, 0xc2, 0xbe, 0xe6, 0x52, 0x11, 0x57, 0x38, + 0x67, 0x83, 0x38, 0x29, 0x98, 0xf5, 0x4f, 0xd0, 0x14, 0x9d, 0xf6, 0x4f, 0xf4, 0x19, 0xac, 0xcf, + 0xba, 0xd3, 0x48, 0x6d, 0xdf, 0x85, 0x5e, 0x19, 0xaf, 0x4e, 0x85, 0xa7, 0xc5, 0xb1, 0x69, 0x45, + 0x73, 0x74, 0x36, 0x36, 0xcd, 0x8d, 0xd8, 0x35, 0xbd, 0xbb, 0xce, 0x8b, 0xd8, 0x73, 0x4f, 0x7d, + 0xd5, 0x99, 0x53, 0xdf, 0x23, 0x58, 0x9d, 0x71, 0x6c, 0x7d, 0xe0, 0x5b, 0xc1, 0xcd, 0xe9, 0x68, + 0xa7, 0x2f, 0x0d, 0xa6, 0x5c, 0x56, 0x9f, 0xf5, 0x6a, 0xb8, 0x3e, 0x19, 0x5a, 0x94, 0xad, 0x21, + 0x71, 0x63, 0x7d, 0xc0, 0xab, 0xe3, 0x94, 0x4c, 0x10, 0xbc, 0x0a, 0x15, 0x33, 0x72, 0xae, 0x4e, + 0x05, 0x4a, 0xa6, 0xf2, 0xa4, 0xd9, 0x3c, 0x58, 0xec, 0xb6, 0x29, 0x17, 0x49, 0xbf, 0xb3, 0x28, + 0x23, 0xd4, 0x0b, 0x2f, 0x75, 0xa9, 0x65, 0x9e, 0xc3, 0x8f, 0xce, 0x4d, 0xd8, 0x30, 0xe7, 0xad, + 0xdc, 0xfc, 0x20, 0x30, 0x3f, 0x0c, 0xc9, 0x04, 0x20, 0xb1, 0xa9, 0x44, 0xcd, 0x58, 0x54, 0x92, + 0x7f, 0xca, 0x6a, 0x9d, 0x1a, 0x54, 0x53, 0x14, 0x97, 0xf3, 0x9b, 0xbc, 0xe9, 0x51, 0x59, 0xc3, + 0xd4, 0x85, 0x8e, 0x8a, 0x23, 0x93, 0xb7, 0x36, 0x33, 0x93, 0xb8, 0x05, 0x37, 0xcd, 0xf9, 0x87, + 0x79, 0xd9, 0xe7, 0xf4, 0x61, 0x5d, 0x1a, 0x62, 0xde, 0x89, 0x5c, 0x06, 0xa8, 0xb9, 0x47, 0x6e, + 0x19, 0x8b, 0x16, 0x9d, 0xa9, 0x8d, 0xff, 0xca, 0x03, 0x24, 0xf7, 0xba, 0xef, 0xf4, 0x0e, 0xeb, + 0x8f, 0x00, 0xc5, 0x97, 0xfd, 0x63, 0x8b, 0x31, 0x11, 0x83, 0x49, 0x7c, 0x84, 0x68, 0x46, 0xba, + 0x13, 0x8b, 0x31, 0x6c, 0x71, 0xf2, 0x87, 0x8b, 0xac, 0xe9, 0xc8, 0x50, 0x5e, 0x70, 0x1f, 0xb4, + 0xec, 0xce, 0x24, 0x3a, 0xd2, 0x2c, 0xb9, 0x33, 0xb9, 0xb6, 0x3f, 0x8b, 0x8c, 0x79, 0x76, 0x05, + 0x67, 0x5c, 0x7a, 0xa9, 0xbf, 0xfd, 0x6f, 0x1e, 0x8a, 0x7b, 0xb2, 0x9c, 0x64, 0xfc, 0x47, 0x0e, + 0x4a, 0x98, 0x48, 0x77, 0x9d, 0xaa, 0x95, 0x65, 0xa6, 0x6b, 0x65, 0x93, 0x65, 0xa4, 0xec, 0x74, + 0x19, 0x69, 0x4e, 0xb5, 0x25, 0x3f, 0xb7, 0xda, 0xb2, 0x09, 0xc5, 0x80, 0x0c, 0x85, 0x5d, 0x8a, + 0xfa, 0x52, 0x5c, 0xbe, 0xa1, 0xce, 0x4c, 0x1d, 0xaa, 0xb4, 0xac, 0x0e, 0x25, 0xe8, 0x30, 0x51, + 0x89, 0x4a, 0x85, 0xf1, 0xa8, 0x2a, 0x53, 0xd6, 0xb9, 0x76, 0x5a, 0xa8, 0x52, 0x44, 0x55, 0x9a, + 0xa9, 0x5c, 0xa7, 0x34, 0xf3, 0x23, 0x68, 0x9e, 0x59, 0xf6, 0x2b, 0x31, 0x25, 0xdf, 0x31, 0x7d, + 0xea, 0x32, 0x22, 0x37, 0xb7, 0x32, 0x6e, 0x24, 0xf2, 0x63, 0x21, 0x46, 0x9f, 0xc1, 0xa6, 0x47, + 0x2f, 0x22, 0xd2, 0x9b, 0x23, 0xd7, 0x0e, 0xe8, 0xf8, 0x9c, 0xfa, 0x44, 0x6e, 0x6e, 0x65, 0xbc, + 0xee, 0xd1, 0x0b, 0x7d, 0xcf, 0x76, 0x14, 0xeb, 0xd0, 0x6d, 0xa8, 0x8e, 0x2d, 0xfb, 0x15, 0xe1, + 0xea, 0x2a, 0x50, 0x5d, 0x62, 0x82, 0x12, 0x1d, 0x8a, 0x78, 0x23, 0x7c, 0x63, 0xd2, 0x34, 0xf1, + 0x7a, 0xeb, 0x8f, 0x7a, 0x96, 0x2f, 0xe7, 0x9a, 0x79, 0x3c, 0x5b, 0x95, 0x34, 0xfe, 0x26, 0x03, + 0x65, 0x4c, 0xd8, 0x98, 0xfa, 0x8c, 0xa0, 0xfb, 0xb0, 0x9a, 0xac, 0x8f, 0x19, 0x84, 0x7e, 0xb2, + 0xd0, 0x0d, 0x96, 0xe6, 0xc6, 0x81, 0x83, 0xfa, 0xb0, 0x39, 0x0e, 0x08, 0x73, 0x87, 0x3e, 0x71, + 0xcc, 0x31, 0x65, 0xdc, 0x0c, 0x94, 0x9f, 0xe8, 0x1a, 0x70, 0x52, 0x2a, 0x3d, 0x89, 0x60, 0x27, + 0x94, 0x71, 0xed, 0x4c, 0x78, 0x7d, 0x3c, 0x47, 0x6a, 0xfc, 0x26, 0x03, 0x6b, 0x7b, 0xd4, 0x7f, + 0xe1, 0x06, 0xa3, 0x3e, 0x0d, 0x03, 0x9b, 0x9c, 0x8e, 0x3d, 0x6a, 0x39, 0xc6, 0x5f, 0x5d, 0xdb, + 0x0b, 0xe7, 0x7e, 0x42, 0x76, 0xfe, 0x27, 0xfc, 0x10, 0x1a, 0x36, 0x75, 0x88, 0x38, 0xed, 0x05, + 0x97, 0x63, 0xea, 0xfa, 0x5c, 0x17, 0xa9, 0xea, 0x42, 0xdc, 0x8d, 0xa5, 0x06, 0x24, 0x36, 0x32, + 0xfe, 0x36, 0x03, 0xb9, 0xa7, 0x84, 0x1b, 0x83, 0x77, 0x31, 0x25, 0xe3, 0xb3, 0xd4, 0x6a, 0xdc, + 0x83, 0x5c, 0x10, 0xaa, 0x6a, 0xf8, 0x84, 0x97, 0xa7, 0x9b, 0x60, 0x01, 0x31, 0xfe, 0x25, 0x0f, + 0xf9, 0x43, 0x97, 0x71, 0xe3, 0x9f, 0xaf, 0x4f, 0xd7, 0x27, 0x53, 0x95, 0xbd, 0xe5, 0xa5, 0xed, + 0xde, 0x8d, 0xa8, 0xae, 0x27, 0xf8, 0xf1, 0x33, 0x80, 0xb1, 0x35, 0x24, 0xea, 0x8a, 0x48, 0xda, + 0xac, 0xba, 0xdd, 0x8a, 0xdb, 0x0f, 0x84, 0xf4, 0xc4, 0x1a, 0xba, 0xbe, 0xec, 0xa4, 0x97, 0xc1, + 0x15, 0x81, 0x96, 0x62, 0x15, 0x0a, 0x55, 0xa1, 0x4d, 0xe6, 0x04, 0x7a, 0xdf, 0x58, 0x72, 0xeb, + 0xde, 0xcb, 0xea, 0x52, 0x9b, 0x90, 0x88, 0xf6, 0x4f, 0x64, 0xb5, 0x4d, 0xb5, 0x2e, 0x5c, 0xd9, + 0x3a, 0x27, 0xeb, 0x6d, 0x51, 0xdb, 0xad, 0x89, 0x20, 0x25, 0x03, 0x8c, 0x48, 0x77, 0xe3, 0x30, + 0xa5, 0x92, 0x38, 0xc5, 0xfe, 0xd2, 0x52, 0xf6, 0xf7, 0x0a, 0x8a, 0xff, 0x22, 0x38, 0x8b, 0x24, + 0x4b, 0x59, 0x47, 0xa6, 0x21, 0x89, 0x6d, 0xe4, 0x6b, 0xf2, 0xb1, 0x32, 0x35, 0x8b, 0xe6, 0x2e, + 0x75, 0xc9, 0x64, 0x3a, 0x25, 0x28, 0xc8, 0x72, 0x86, 0xf1, 0x66, 0x82, 0x91, 0xf9, 0x20, 0xf4, + 0x59, 0x2b, 0x23, 0xab, 0x24, 0x8b, 0x9c, 0x40, 0x62, 0xd0, 0x9f, 0x42, 0xc3, 0x27, 0x6f, 0x78, + 0x6a, 0x78, 0x4d, 0xc5, 0x85, 0x4b, 0x83, 0x6b, 0xa2, 0xc1, 0x49, 0xb4, 0x38, 0xc6, 0x3f, 0x8a, + 0xc0, 0x2f, 0x8e, 0x3f, 0xcc, 0xf8, 0xd7, 0xec, 0xb5, 0x3d, 0x69, 0x67, 0x62, 0x3d, 0xb3, 0xd7, + 0x2c, 0x9c, 0x8a, 0x77, 0x5d, 0x38, 0x55, 0x0d, 0x73, 0xd7, 0x2a, 0x9c, 0xca, 0x66, 0x89, 0xef, + 0xe6, 0xdf, 0xda, 0x77, 0x27, 0x3d, 0x40, 0x16, 0x95, 0x85, 0x87, 0xce, 0xf5, 0x80, 0xe2, 0x72, + 0x0f, 0xc8, 0x2e, 0xf4, 0x80, 0x79, 0xcb, 0xfa, 0xd7, 0xe9, 0x48, 0xfb, 0x73, 0x28, 0x9d, 0x85, + 0x22, 0x80, 0x47, 0x4b, 0xfb, 0xc9, 0x82, 0x4f, 0x50, 0xcb, 0xd1, 0xee, 0x48, 0x30, 0x8e, 0x1a, + 0x09, 0xc3, 0xc9, 0x43, 0xeb, 0x6b, 0xcb, 0xd3, 0x16, 0xbf, 0x35, 0x63, 0xb8, 0x7d, 0xfd, 0xcb, + 0x14, 0x8e, 0xa1, 0xc6, 0x2f, 0xa1, 0xa8, 0x7a, 0x42, 0x5f, 0xc2, 0x8a, 0xea, 0x4b, 0xb9, 0xa7, + 0x8e, 0x32, 0xcb, 0xac, 0x5f, 0x55, 0xf8, 0xbe, 0x80, 0x8b, 0x23, 0x70, 0x52, 0xed, 0xcd, 0x63, + 0xf5, 0x62, 0xbc, 0x84, 0xe2, 0x9e, 0xe5, 0xdb, 0xc4, 0x7b, 0x47, 0xd1, 0x31, 0x1d, 0x87, 0xdf, + 0x71, 0xb9, 0xfa, 0xb7, 0x99, 0xb8, 0x5e, 0x7d, 0x0b, 0x36, 0x26, 0xeb, 0xd5, 0xe6, 0xe9, 0xc9, + 0xe1, 0xf3, 0xdd, 0xfd, 0xe6, 0x0d, 0xb4, 0x01, 0xab, 0x5a, 0xf5, 0xb4, 0x7b, 0xdc, 0xc5, 0xbb, + 0x03, 0x55, 0xb9, 0x9e, 0xad, 0x66, 0x67, 0xd1, 0x26, 0x20, 0x2d, 0xeb, 0x9f, 0x1e, 0x1d, 0xed, + 0xe2, 0x83, 0x6f, 0x84, 0x3c, 0x37, 0xb7, 0xca, 0x9d, 0x9f, 0xad, 0x72, 0x17, 0xe6, 0x56, 0xb9, + 0x8b, 0xcf, 0xf2, 0xe5, 0x72, 0xb3, 0x82, 0x4b, 0xfa, 0x5f, 0x8e, 0xad, 0xdf, 0xe6, 0xa0, 0x1c, + 0xa5, 0x41, 0xc9, 0x8f, 0x11, 0x99, 0xf4, 0x8f, 0x11, 0xd3, 0xff, 0x65, 0x64, 0xe7, 0xfc, 0x97, + 0x31, 0xff, 0x0f, 0x8c, 0xdc, 0xa2, 0x3f, 0x30, 0x1e, 0xea, 0x7f, 0x2d, 0xf2, 0xd2, 0x95, 0xdf, + 0x9b, 0x49, 0xc8, 0xda, 0x03, 0x6b, 0xc8, 0xd4, 0xcf, 0x65, 0xea, 0x47, 0x0c, 0x03, 0xca, 0x21, + 0x23, 0x81, 0x63, 0x71, 0x4b, 0xff, 0xd7, 0x11, 0xbf, 0x1b, 0x7f, 0x9f, 0x81, 0x55, 0x95, 0x7d, + 0x7e, 0x15, 0xd0, 0x91, 0x2e, 0xd1, 0x1a, 0xbf, 0xb8, 0xb6, 0x43, 0xa5, 0xfe, 0xaa, 0xc8, 0x4e, + 0xfc, 0x55, 0x91, 0x24, 0x96, 0xb9, 0x74, 0x62, 0x69, 0xec, 0xa4, 0x78, 0xf9, 0x63, 0x28, 0x47, + 0x99, 0x94, 0xa6, 0xc4, 0xea, 0xcc, 0xd7, 0xe0, 0x18, 0x62, 0x7c, 0x0e, 0x95, 0xf8, 0xd3, 0xe6, + 0xfc, 0x16, 0xb7, 0x9e, 0xfe, 0x2d, 0xae, 0x92, 0xfa, 0xf5, 0x6d, 0x6b, 0x00, 0xb5, 0x89, 0x6c, + 0x15, 0x21, 0xc8, 0xcb, 0x80, 0xa4, 0x5a, 0xcb, 0x67, 0xf4, 0x10, 0x2a, 0xd1, 0x48, 0x62, 0x99, + 0x72, 0xf3, 0x67, 0x93, 0x60, 0xb6, 0xfe, 0x21, 0x03, 0x28, 0x09, 0x1f, 0xfb, 0x2e, 0x1b, 0x5b, + 0xdc, 0x3e, 0x7f, 0xab, 0xb4, 0x6e, 0x03, 0x8a, 0x2f, 0xe9, 0x59, 0x62, 0xbc, 0xc2, 0x4b, 0x7a, + 0x76, 0xe0, 0x4c, 0xd8, 0x25, 0x77, 0xa5, 0x5d, 0xe2, 0x04, 0x3a, 0x7f, 0x8d, 0x04, 0xfa, 0xfe, + 0x0b, 0xa8, 0x4f, 0xca, 0xd1, 0x6d, 0x78, 0xaf, 0x7f, 0x70, 0x74, 0x7a, 0xb8, 0x3b, 0x38, 0x78, + 0x7e, 0x6c, 0x1e, 0x3d, 0xdf, 0xef, 0x9a, 0xa7, 0xc7, 0xfd, 0x93, 0xee, 0xde, 0xc1, 0x57, 0x07, + 0x5d, 0xc1, 0xbb, 0x16, 0xac, 0x4f, 0x03, 0x06, 0xdd, 0xbf, 0x18, 0x34, 0x33, 0x92, 0xac, 0x53, + 0x9a, 0xdd, 0xd3, 0xfd, 0x83, 0xe7, 0xcd, 0xec, 0xf6, 0xaf, 0x8b, 0xd0, 0xd8, 0x15, 0xbe, 0x9b, + 0x8c, 0x86, 0x1c, 0x58, 0x53, 0xbe, 0x36, 0xf9, 0x9b, 0xe0, 0xa2, 0x43, 0xa5, 0xc2, 0xb6, 0xa3, + 0x74, 0xf5, 0x07, 0x57, 0xc1, 0xb4, 0x57, 0x7d, 0x97, 0x81, 0x0f, 0xa2, 0xb4, 0x36, 0x06, 0xa6, + 0x13, 0x5c, 0xb4, 0xbd, 0x30, 0xfc, 0xcf, 0x24, 0xc3, 0xf1, 0xe8, 0x3f, 0x79, 0xab, 0x36, 0x7a, + 0x2a, 0x7f, 0x09, 0xcd, 0xa7, 0x84, 0x4f, 0x7e, 0xed, 0xd6, 0x82, 0x8e, 0x9e, 0x12, 0x1e, 0x0f, + 0xf6, 0xf1, 0x52, 0x8c, 0xee, 0xdc, 0x04, 0x24, 0xd2, 0xd0, 0x09, 0x04, 0x43, 0x8b, 0x9a, 0x0a, + 0x68, 0xdc, 0xff, 0x27, 0xcb, 0x41, 0x7a, 0x00, 0xb1, 0x5c, 0x22, 0x3c, 0x4f, 0x8d, 0x70, 0x77, + 0xf9, 0xe6, 0x79, 0xe5, 0x72, 0x45, 0xb0, 0xd4, 0x28, 0x72, 0x1b, 0xbb, 0xa6, 0x53, 0x48, 0xec, + 0xd5, 0xa3, 0x44, 0x30, 0x3d, 0xca, 0x6b, 0xb8, 0xa5, 0x5d, 0x4f, 0xb3, 0x26, 0x15, 0xee, 0xd0, + 0x83, 0xd9, 0x18, 0x3a, 0x13, 0x13, 0xe3, 0x11, 0x3f, 0xbd, 0x1e, 0x58, 0x8d, 0xdb, 0xf9, 0xea, + 0x9b, 0x8f, 0x87, 0x2e, 0x3f, 0x0f, 0xcf, 0xda, 0x36, 0x1d, 0x45, 0x3f, 0x61, 0xab, 0x1f, 0xa9, + 0x6d, 0xea, 0x45, 0x82, 0xdf, 0x65, 0x6b, 0x87, 0xee, 0x6b, 0xf2, 0x67, 0xf2, 0xfc, 0x46, 0x39, + 0xfd, 0xcf, 0x6c, 0x5d, 0xbf, 0x3f, 0x79, 0x22, 0x05, 0x67, 0x45, 0xd9, 0xe4, 0x27, 0xff, 0x17, + 0x00, 0x00, 0xff, 0xff, 0xcf, 0x41, 0xb4, 0xac, 0xf7, 0x2d, 0x00, 0x00, } diff --git a/protobufs/livekit_agent_simulation.proto b/protobufs/livekit_agent_simulation.proto index 401d63307..daa3fe3d2 100644 --- a/protobufs/livekit_agent_simulation.proto +++ b/protobufs/livekit_agent_simulation.proto @@ -279,6 +279,9 @@ message SimulationRun { // Exact agent name. Unset means every agent — including the runs whose // name is empty, which a bare string could not tell from no filter. optional string agent_name = 6; + // Unset means every mode. `SimulationRun.mode` reads unspecified as TEXT, + // so a TEXT filter matches runs stored with either value. + optional SimulationMode mode = 7; } message Response { repeated SimulationRun runs = 1; @@ -299,6 +302,7 @@ message SimulationRun { // above them drop would make the histogram an answer about a wider set. optional Status status = 4; optional string agent_name = 5; + optional SimulationMode mode = 6; } message Response { // Buckets holding at least one run, ascending by bucket_start. Empty From 368b63ccda845115feffaae86c3fa980e0a82e6f Mon Sep 17 00:00:00 2001 From: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 1 Sep 2026 20:14:29 +0000 Subject: [PATCH 2/3] generated protobuf --- livekit/livekit_agent_simulation.pb.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/livekit/livekit_agent_simulation.pb.go b/livekit/livekit_agent_simulation.pb.go index 4de7fede8..c7b9a3719 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 From c9c311e61fd8e1d6183ab6ef981c11ebd4508d00 Mon Sep 17 00:00:00 2001 From: Jason Lernerman Date: Tue, 1 Sep 2026 16:21:06 -0400 Subject: [PATCH 3/3] agent simulation: state the mode filter's constraints only --- livekit/livekit_agent_simulation.pb.go | 4 ++-- protobufs/livekit_agent_simulation.proto | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/livekit/livekit_agent_simulation.pb.go b/livekit/livekit_agent_simulation.pb.go index c7b9a3719..9e269035e 100644 --- a/livekit/livekit_agent_simulation.pb.go +++ b/livekit/livekit_agent_simulation.pb.go @@ -2539,8 +2539,8 @@ type SimulationRun_List_Request struct { // Exact agent name. Unset means every agent — including the runs whose // name is empty, which a bare string could not tell from no filter. AgentName *string `protobuf:"bytes,6,opt,name=agent_name,json=agentName,proto3,oneof" json:"agent_name,omitempty"` - // Unset means every mode. `SimulationRun.mode` reads unspecified as TEXT, - // so a TEXT filter matches runs stored with either value. + // Absent applies no mode filter. TEXT matches runs stored as TEXT or + // UNSPECIFIED, which `SimulationRun.mode` defines as the same mode. Mode *SimulationMode `protobuf:"varint,7,opt,name=mode,proto3,enum=livekit.SimulationMode,oneof" json:"mode,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache diff --git a/protobufs/livekit_agent_simulation.proto b/protobufs/livekit_agent_simulation.proto index daa3fe3d2..ad20929cf 100644 --- a/protobufs/livekit_agent_simulation.proto +++ b/protobufs/livekit_agent_simulation.proto @@ -279,8 +279,8 @@ message SimulationRun { // Exact agent name. Unset means every agent — including the runs whose // name is empty, which a bare string could not tell from no filter. optional string agent_name = 6; - // Unset means every mode. `SimulationRun.mode` reads unspecified as TEXT, - // so a TEXT filter matches runs stored with either value. + // Absent applies no mode filter. TEXT matches runs stored as TEXT or + // UNSPECIFIED, which `SimulationRun.mode` defines as the same mode. optional SimulationMode mode = 7; } message Response {