From b6dddaee1254804da22880bf8cc61f4088c12587 Mon Sep 17 00:00:00 2001 From: Jason Lernerman Date: Tue, 18 Aug 2026 17:51:52 -0400 Subject: [PATCH 1/2] agent simulation: add bucketed run counts and a list window CountSimulationRuns returns the runs of a window bucketed by created_at. The server divides the window into a fixed number of bars and returns the width it used, so the client zero-fills the omitted empty buckets on the same grid. List.Request gains the same half-open window, which is what makes a range selected on the histogram narrow the list beneath it. --- protobufs/livekit_agent_simulation.proto | 32 ++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/protobufs/livekit_agent_simulation.proto b/protobufs/livekit_agent_simulation.proto index 8be7ccfc1..3a3388305 100644 --- a/protobufs/livekit_agent_simulation.proto +++ b/protobufs/livekit_agent_simulation.proto @@ -17,6 +17,7 @@ syntax = "proto3"; package livekit; import "agent/livekit_agent_session.proto"; +import "google/protobuf/duration.proto"; import "google/protobuf/timestamp.proto"; import "livekit_cloud_agent.proto"; import "livekit_models.proto"; @@ -261,6 +262,11 @@ message SimulationRun { string project_id = 1; optional Status status = 2; optional TokenPagination page_token = 3; + // Half-open window [from, to) on created_at, the leading key of this + // list's keyset. Unset bounds mean no window, so existing callers keep + // their unbounded scan; the histogram's selected range sets both. + optional google.protobuf.Timestamp from = 4; + optional google.protobuf.Timestamp to = 5; } message Response { repeated SimulationRun runs = 1; @@ -268,6 +274,31 @@ message SimulationRun { } } + // Counts of the runs `List` would return over the same window, bucketed by + // created_at instead of paginated. + message Counts { + message Request { + string project_id = 1; + // Both bounds required: a bucketed scan of a project's whole history is + // never what a caller wants. + google.protobuf.Timestamp from = 2; + google.protobuf.Timestamp to = 3; + } + message Response { + // Buckets holding at least one run, ascending by bucket_start. Empty + // buckets are omitted; each run lands in exactly one bucket, so the + // counts sum to the number of runs in the window. + repeated Bucket buckets = 1; + // The bucket width the server chose from the window, so the client + // zero-fills the omitted buckets on the grid the counts were built on. + google.protobuf.Duration interval = 2; + } + message Bucket { + google.protobuf.Timestamp bucket_start = 1; + uint64 count = 2; + } + } + message Cancel { message Request { string project_id = 1; @@ -364,6 +395,7 @@ service AgentSimulation { rpc ConfirmSimulationSourceUpload(SimulationRun.ConfirmSourceUpload.Request) returns (SimulationRun.ConfirmSourceUpload.Response); rpc GetSimulationRun(SimulationRun.Get.Request) returns (SimulationRun.Get.Response); rpc ListSimulationRuns(SimulationRun.List.Request) returns (SimulationRun.List.Response); + rpc CountSimulationRuns(SimulationRun.Counts.Request) returns (SimulationRun.Counts.Response); rpc CancelSimulationRun(SimulationRun.Cancel.Request) returns (SimulationRun.Cancel.Response); rpc CreateScenarioFromSession(Scenario.CreateFromSession.Request) returns (Scenario.CreateFromSession.Response); From 650a1fa8d077d3e0cfb168aa33d0967475e25343 Mon Sep 17 00:00:00 2001 From: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 18 Aug 2026 21:53:04 +0000 Subject: [PATCH 2/2] generated protobuf --- livekit/livekit_agent_simulation.pb.go | 520 +++++++++++---- livekit/livekit_agent_simulation.twirp.go | 740 +++++++++++++++------- 2 files changed, 905 insertions(+), 355 deletions(-) diff --git a/livekit/livekit_agent_simulation.pb.go b/livekit/livekit_agent_simulation.pb.go index 98dd41601..c94692e31 100644 --- a/livekit/livekit_agent_simulation.pb.go +++ b/livekit/livekit_agent_simulation.pb.go @@ -24,6 +24,7 @@ import ( agent "github.com/livekit/protocol/livekit/agent" protoreflect "google.golang.org/protobuf/reflect/protoreflect" protoimpl "google.golang.org/protobuf/runtime/protoimpl" + durationpb "google.golang.org/protobuf/types/known/durationpb" timestamppb "google.golang.org/protobuf/types/known/timestamppb" reflect "reflect" sync "sync" @@ -1302,6 +1303,44 @@ func (*SimulationRun_List) Descriptor() ([]byte, []int) { return file_livekit_agent_simulation_proto_rawDescGZIP(), []int{1, 6} } +// Counts of the runs `List` would return over the same window, bucketed by +// created_at instead of paginated. +type SimulationRun_Counts struct { + state protoimpl.MessageState `protogen:"open.v1"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *SimulationRun_Counts) Reset() { + *x = SimulationRun_Counts{} + mi := &file_livekit_agent_simulation_proto_msgTypes[14] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *SimulationRun_Counts) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*SimulationRun_Counts) ProtoMessage() {} + +func (x *SimulationRun_Counts) ProtoReflect() protoreflect.Message { + mi := &file_livekit_agent_simulation_proto_msgTypes[14] + 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_Counts.ProtoReflect.Descriptor instead. +func (*SimulationRun_Counts) Descriptor() ([]byte, []int) { + return file_livekit_agent_simulation_proto_rawDescGZIP(), []int{1, 7} +} + type SimulationRun_Cancel struct { state protoimpl.MessageState `protogen:"open.v1"` unknownFields protoimpl.UnknownFields @@ -1310,7 +1349,7 @@ type SimulationRun_Cancel struct { func (x *SimulationRun_Cancel) Reset() { *x = SimulationRun_Cancel{} - 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) } @@ -1322,7 +1361,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[14] + mi := &file_livekit_agent_simulation_proto_msgTypes[15] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1335,7 +1374,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, 7} + return file_livekit_agent_simulation_proto_rawDescGZIP(), []int{1, 8} } type SimulationRun_Usage struct { @@ -1348,7 +1387,7 @@ type SimulationRun_Usage struct { func (x *SimulationRun_Usage) Reset() { *x = SimulationRun_Usage{} - 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) } @@ -1360,7 +1399,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[15] + mi := &file_livekit_agent_simulation_proto_msgTypes[16] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1373,7 +1412,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, 8} + return file_livekit_agent_simulation_proto_rawDescGZIP(), []int{1, 9} } func (x *SimulationRun_Usage) GetTextTurnsCount() int32 { @@ -1400,7 +1439,7 @@ type SimulationRun_Job_Usage struct { func (x *SimulationRun_Job_Usage) Reset() { *x = SimulationRun_Job_Usage{} - 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) } @@ -1412,7 +1451,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[16] + mi := &file_livekit_agent_simulation_proto_msgTypes[17] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1468,7 +1507,7 @@ type SimulationRun_JobMetrics_STT struct { func (x *SimulationRun_JobMetrics_STT) Reset() { *x = SimulationRun_JobMetrics_STT{} - 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) } @@ -1480,7 +1519,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[17] + mi := &file_livekit_agent_simulation_proto_msgTypes[18] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1598,7 +1637,7 @@ type SimulationRun_JobMetrics_LLM struct { func (x *SimulationRun_JobMetrics_LLM) Reset() { *x = SimulationRun_JobMetrics_LLM{} - 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) } @@ -1610,7 +1649,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[18] + mi := &file_livekit_agent_simulation_proto_msgTypes[19] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1670,7 +1709,7 @@ type SimulationRun_JobMetrics_TTS struct { func (x *SimulationRun_JobMetrics_TTS) Reset() { *x = SimulationRun_JobMetrics_TTS{} - 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) } @@ -1682,7 +1721,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[19] + mi := &file_livekit_agent_simulation_proto_msgTypes[20] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1811,7 +1850,7 @@ type SimulationRun_JobMetrics_Conversation struct { func (x *SimulationRun_JobMetrics_Conversation) Reset() { *x = SimulationRun_JobMetrics_Conversation{} - 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) } @@ -1823,7 +1862,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[20] + mi := &file_livekit_agent_simulation_proto_msgTypes[21] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1957,7 +1996,7 @@ type SimulationRun_JobMetrics_Turn struct { func (x *SimulationRun_JobMetrics_Turn) Reset() { *x = SimulationRun_JobMetrics_Turn{} - 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) } @@ -1969,7 +2008,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[21] + mi := &file_livekit_agent_simulation_proto_msgTypes[22] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2124,7 +2163,7 @@ type SimulationRun_Create_Request struct { func (x *SimulationRun_Create_Request) Reset() { *x = SimulationRun_Create_Request{} - 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) } @@ -2136,7 +2175,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[22] + mi := &file_livekit_agent_simulation_proto_msgTypes[23] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2211,7 +2250,7 @@ type SimulationRun_Create_Response struct { func (x *SimulationRun_Create_Response) Reset() { *x = SimulationRun_Create_Response{} - 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) } @@ -2223,7 +2262,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[23] + mi := &file_livekit_agent_simulation_proto_msgTypes[24] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2264,7 +2303,7 @@ type SimulationRun_ConfirmSourceUpload_Request struct { func (x *SimulationRun_ConfirmSourceUpload_Request) Reset() { *x = SimulationRun_ConfirmSourceUpload_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) } @@ -2276,7 +2315,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[24] + mi := &file_livekit_agent_simulation_proto_msgTypes[25] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2321,7 +2360,7 @@ type SimulationRun_ConfirmSourceUpload_Response struct { func (x *SimulationRun_ConfirmSourceUpload_Response) Reset() { *x = SimulationRun_ConfirmSourceUpload_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) } @@ -2333,7 +2372,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[25] + mi := &file_livekit_agent_simulation_proto_msgTypes[26] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2359,7 +2398,7 @@ type SimulationRun_Get_Request struct { func (x *SimulationRun_Get_Request) Reset() { *x = SimulationRun_Get_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) } @@ -2371,7 +2410,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[26] + mi := &file_livekit_agent_simulation_proto_msgTypes[27] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2410,7 +2449,7 @@ type SimulationRun_Get_Response struct { func (x *SimulationRun_Get_Response) Reset() { *x = SimulationRun_Get_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) } @@ -2422,7 +2461,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[27] + mi := &file_livekit_agent_simulation_proto_msgTypes[28] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2446,17 +2485,22 @@ func (x *SimulationRun_Get_Response) GetRun() *SimulationRun { } type SimulationRun_List_Request struct { - state protoimpl.MessageState `protogen:"open.v1"` - ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"` - Status *SimulationRun_Status `protobuf:"varint,2,opt,name=status,proto3,enum=livekit.SimulationRun_Status,oneof" json:"status,omitempty"` - PageToken *TokenPagination `protobuf:"bytes,3,opt,name=page_token,json=pageToken,proto3,oneof" json:"page_token,omitempty"` + state protoimpl.MessageState `protogen:"open.v1"` + ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"` + Status *SimulationRun_Status `protobuf:"varint,2,opt,name=status,proto3,enum=livekit.SimulationRun_Status,oneof" json:"status,omitempty"` + PageToken *TokenPagination `protobuf:"bytes,3,opt,name=page_token,json=pageToken,proto3,oneof" json:"page_token,omitempty"` + // Half-open window [from, to) on created_at, the leading key of this + // list's keyset. Unset bounds mean no window, so existing callers keep + // their unbounded scan; the histogram's selected range sets both. + From *timestamppb.Timestamp `protobuf:"bytes,4,opt,name=from,proto3,oneof" json:"from,omitempty"` + To *timestamppb.Timestamp `protobuf:"bytes,5,opt,name=to,proto3,oneof" json:"to,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *SimulationRun_List_Request) Reset() { *x = SimulationRun_List_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) } @@ -2468,7 +2512,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[28] + mi := &file_livekit_agent_simulation_proto_msgTypes[29] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2505,6 +2549,20 @@ func (x *SimulationRun_List_Request) GetPageToken() *TokenPagination { return nil } +func (x *SimulationRun_List_Request) GetFrom() *timestamppb.Timestamp { + if x != nil { + return x.From + } + return nil +} + +func (x *SimulationRun_List_Request) GetTo() *timestamppb.Timestamp { + if x != nil { + return x.To + } + return nil +} + type SimulationRun_List_Response struct { state protoimpl.MessageState `protogen:"open.v1"` Runs []*SimulationRun `protobuf:"bytes,1,rep,name=runs,proto3" json:"runs,omitempty"` @@ -2515,7 +2573,7 @@ type SimulationRun_List_Response struct { func (x *SimulationRun_List_Response) Reset() { *x = SimulationRun_List_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) } @@ -2527,7 +2585,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[29] + mi := &file_livekit_agent_simulation_proto_msgTypes[30] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2557,6 +2615,177 @@ func (x *SimulationRun_List_Response) GetNextPageToken() *TokenPagination { return nil } +type SimulationRun_Counts_Request struct { + state protoimpl.MessageState `protogen:"open.v1"` + ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"` + // Both bounds required: a bucketed scan of a project's whole history is + // never what a caller wants. + From *timestamppb.Timestamp `protobuf:"bytes,2,opt,name=from,proto3" json:"from,omitempty"` + To *timestamppb.Timestamp `protobuf:"bytes,3,opt,name=to,proto3" json:"to,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *SimulationRun_Counts_Request) Reset() { + *x = SimulationRun_Counts_Request{} + mi := &file_livekit_agent_simulation_proto_msgTypes[31] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *SimulationRun_Counts_Request) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*SimulationRun_Counts_Request) ProtoMessage() {} + +func (x *SimulationRun_Counts_Request) ProtoReflect() protoreflect.Message { + mi := &file_livekit_agent_simulation_proto_msgTypes[31] + 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_Counts_Request.ProtoReflect.Descriptor instead. +func (*SimulationRun_Counts_Request) Descriptor() ([]byte, []int) { + return file_livekit_agent_simulation_proto_rawDescGZIP(), []int{1, 7, 0} +} + +func (x *SimulationRun_Counts_Request) GetProjectId() string { + if x != nil { + return x.ProjectId + } + return "" +} + +func (x *SimulationRun_Counts_Request) GetFrom() *timestamppb.Timestamp { + if x != nil { + return x.From + } + return nil +} + +func (x *SimulationRun_Counts_Request) GetTo() *timestamppb.Timestamp { + if x != nil { + return x.To + } + return nil +} + +type SimulationRun_Counts_Response struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Buckets holding at least one run, ascending by bucket_start. Empty + // buckets are omitted; each run lands in exactly one bucket, so the + // counts sum to the number of runs in the window. + Buckets []*SimulationRun_Counts_Bucket `protobuf:"bytes,1,rep,name=buckets,proto3" json:"buckets,omitempty"` + // The bucket width the server chose from the window, so the client + // zero-fills the omitted buckets on the grid the counts were built on. + Interval *durationpb.Duration `protobuf:"bytes,2,opt,name=interval,proto3" json:"interval,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *SimulationRun_Counts_Response) Reset() { + *x = SimulationRun_Counts_Response{} + mi := &file_livekit_agent_simulation_proto_msgTypes[32] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *SimulationRun_Counts_Response) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*SimulationRun_Counts_Response) ProtoMessage() {} + +func (x *SimulationRun_Counts_Response) ProtoReflect() protoreflect.Message { + mi := &file_livekit_agent_simulation_proto_msgTypes[32] + 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_Counts_Response.ProtoReflect.Descriptor instead. +func (*SimulationRun_Counts_Response) Descriptor() ([]byte, []int) { + return file_livekit_agent_simulation_proto_rawDescGZIP(), []int{1, 7, 1} +} + +func (x *SimulationRun_Counts_Response) GetBuckets() []*SimulationRun_Counts_Bucket { + if x != nil { + return x.Buckets + } + return nil +} + +func (x *SimulationRun_Counts_Response) GetInterval() *durationpb.Duration { + if x != nil { + return x.Interval + } + return nil +} + +type SimulationRun_Counts_Bucket struct { + state protoimpl.MessageState `protogen:"open.v1"` + BucketStart *timestamppb.Timestamp `protobuf:"bytes,1,opt,name=bucket_start,json=bucketStart,proto3" json:"bucket_start,omitempty"` + Count uint64 `protobuf:"varint,2,opt,name=count,proto3" json:"count,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *SimulationRun_Counts_Bucket) Reset() { + *x = SimulationRun_Counts_Bucket{} + mi := &file_livekit_agent_simulation_proto_msgTypes[33] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *SimulationRun_Counts_Bucket) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*SimulationRun_Counts_Bucket) ProtoMessage() {} + +func (x *SimulationRun_Counts_Bucket) ProtoReflect() protoreflect.Message { + mi := &file_livekit_agent_simulation_proto_msgTypes[33] + 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_Counts_Bucket.ProtoReflect.Descriptor instead. +func (*SimulationRun_Counts_Bucket) Descriptor() ([]byte, []int) { + return file_livekit_agent_simulation_proto_rawDescGZIP(), []int{1, 7, 2} +} + +func (x *SimulationRun_Counts_Bucket) GetBucketStart() *timestamppb.Timestamp { + if x != nil { + return x.BucketStart + } + return nil +} + +func (x *SimulationRun_Counts_Bucket) GetCount() uint64 { + if x != nil { + return x.Count + } + return 0 +} + type SimulationRun_Cancel_Request struct { state protoimpl.MessageState `protogen:"open.v1"` ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"` @@ -2567,7 +2796,7 @@ type SimulationRun_Cancel_Request struct { func (x *SimulationRun_Cancel_Request) Reset() { *x = SimulationRun_Cancel_Request{} - mi := &file_livekit_agent_simulation_proto_msgTypes[30] + mi := &file_livekit_agent_simulation_proto_msgTypes[34] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2579,7 +2808,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[30] + mi := &file_livekit_agent_simulation_proto_msgTypes[34] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2592,7 +2821,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, 7, 0} + return file_livekit_agent_simulation_proto_rawDescGZIP(), []int{1, 8, 0} } func (x *SimulationRun_Cancel_Request) GetProjectId() string { @@ -2617,7 +2846,7 @@ type SimulationRun_Cancel_Response struct { func (x *SimulationRun_Cancel_Response) Reset() { *x = SimulationRun_Cancel_Response{} - mi := &file_livekit_agent_simulation_proto_msgTypes[31] + mi := &file_livekit_agent_simulation_proto_msgTypes[35] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2629,7 +2858,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[31] + mi := &file_livekit_agent_simulation_proto_msgTypes[35] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2642,7 +2871,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, 7, 1} + return file_livekit_agent_simulation_proto_rawDescGZIP(), []int{1, 8, 1} } type Scenario_CreateFromSession struct { @@ -2653,7 +2882,7 @@ type Scenario_CreateFromSession struct { func (x *Scenario_CreateFromSession) Reset() { *x = Scenario_CreateFromSession{} - mi := &file_livekit_agent_simulation_proto_msgTypes[32] + mi := &file_livekit_agent_simulation_proto_msgTypes[36] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2665,7 +2894,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[32] + mi := &file_livekit_agent_simulation_proto_msgTypes[36] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2692,7 +2921,7 @@ type Scenario_CreateFromSession_Request struct { func (x *Scenario_CreateFromSession_Request) Reset() { *x = Scenario_CreateFromSession_Request{} - mi := &file_livekit_agent_simulation_proto_msgTypes[34] + mi := &file_livekit_agent_simulation_proto_msgTypes[38] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2704,7 +2933,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[34] + mi := &file_livekit_agent_simulation_proto_msgTypes[38] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2750,7 +2979,7 @@ type Scenario_CreateFromSession_Response struct { func (x *Scenario_CreateFromSession_Response) Reset() { *x = Scenario_CreateFromSession_Response{} - mi := &file_livekit_agent_simulation_proto_msgTypes[35] + mi := &file_livekit_agent_simulation_proto_msgTypes[39] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2762,7 +2991,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[35] + mi := &file_livekit_agent_simulation_proto_msgTypes[39] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2789,7 +3018,7 @@ var File_livekit_agent_simulation_proto protoreflect.FileDescriptor const file_livekit_agent_simulation_proto_rawDesc = "" + "\n" + - "\x1elivekit_agent_simulation.proto\x12\alivekit\x1a!agent/livekit_agent_session.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x19livekit_cloud_agent.proto\x1a\x14livekit_models.proto\"\xd1\x03\n" + + "\x1elivekit_agent_simulation.proto\x12\alivekit\x1a!agent/livekit_agent_session.proto\x1a\x1egoogle/protobuf/duration.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x19livekit_cloud_agent.proto\x1a\x14livekit_models.proto\"\xd1\x03\n" + "\x14SimulationRunSummary\x12\x16\n" + "\x06passed\x18\x01 \x01(\x05R\x06passed\x12\x16\n" + "\x06failed\x18\x02 \x01(\x05R\x06failed\x12\x1d\n" + @@ -2807,7 +3036,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\"\x93A\n" + + "\x05label\x18\x03 \x01(\tR\x05label\"\xfeD\n" + "\rSimulationRun\x12\x0e\n" + "\x02id\x18\x01 \x01(\tR\x02id\x12\x1d\n" + "\n" + @@ -3070,19 +3299,35 @@ 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\xbf\x02\n" + - "\x04List\x1a\xbc\x01\n" + + "\x03run\x18\x01 \x01(\v2\x16.livekit.SimulationRunR\x03run\x1a\xb5\x03\n" + + "\x04List\x1a\xb2\x02\n" + "\aRequest\x12\x1d\n" + "\n" + "project_id\x18\x01 \x01(\tR\tprojectId\x12:\n" + "\x06status\x18\x02 \x01(\x0e2\x1d.livekit.SimulationRun.StatusH\x00R\x06status\x88\x01\x01\x12<\n" + "\n" + - "page_token\x18\x03 \x01(\v2\x18.livekit.TokenPaginationH\x01R\tpageToken\x88\x01\x01B\t\n" + + "page_token\x18\x03 \x01(\v2\x18.livekit.TokenPaginationH\x01R\tpageToken\x88\x01\x01\x123\n" + + "\x04from\x18\x04 \x01(\v2\x1a.google.protobuf.TimestampH\x02R\x04from\x88\x01\x01\x12/\n" + + "\x02to\x18\x05 \x01(\v2\x1a.google.protobuf.TimestampH\x03R\x02to\x88\x01\x01B\t\n" + "\a_statusB\r\n" + - "\v_page_token\x1ax\n" + + "\v_page_tokenB\a\n" + + "\x05_fromB\x05\n" + + "\x03_to\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\x1aj\n" + + "\x0fnext_page_token\x18\x02 \x01(\v2\x18.livekit.TokenPaginationR\rnextPageToken\x1a\xf2\x02\n" + + "\x06Counts\x1a\x84\x01\n" + + "\aRequest\x12\x1d\n" + + "\n" + + "project_id\x18\x01 \x01(\tR\tprojectId\x12.\n" + + "\x04from\x18\x02 \x01(\v2\x1a.google.protobuf.TimestampR\x04from\x12*\n" + + "\x02to\x18\x03 \x01(\v2\x1a.google.protobuf.TimestampR\x02to\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" + + "\x06Bucket\x12=\n" + + "\fbucket_start\x18\x01 \x01(\v2\x1a.google.protobuf.TimestampR\vbucketStart\x12\x14\n" + + "\x05count\x18\x02 \x01(\x04R\x05count\x1aj\n" + "\x06Cancel\x1aT\n" + "\aRequest\x12\x1d\n" + "\n" + @@ -3129,12 +3374,13 @@ const file_livekit_agent_simulation_proto_rawDesc = "" + "\x0eSimulationMode\x12\x1f\n" + "\x1bSIMULATION_MODE_UNSPECIFIED\x10\x00\x12\x18\n" + "\x14SIMULATION_MODE_TEXT\x10\x01\x12\x19\n" + - "\x15SIMULATION_MODE_AUDIO\x10\x022\x9e\x05\n" + + "\x15SIMULATION_MODE_AUDIO\x10\x022\x84\x06\n" + "\x0fAgentSimulation\x12d\n" + "\x13CreateSimulationRun\x12%.livekit.SimulationRun.Create.Request\x1a&.livekit.SimulationRun.Create.Response\x12\x88\x01\n" + "\x1dConfirmSimulationSourceUpload\x122.livekit.SimulationRun.ConfirmSourceUpload.Request\x1a3.livekit.SimulationRun.ConfirmSourceUpload.Response\x12[\n" + "\x10GetSimulationRun\x12\".livekit.SimulationRun.Get.Request\x1a#.livekit.SimulationRun.Get.Response\x12_\n" + "\x12ListSimulationRuns\x12#.livekit.SimulationRun.List.Request\x1a$.livekit.SimulationRun.List.Response\x12d\n" + + "\x13CountSimulationRuns\x12%.livekit.SimulationRun.Counts.Request\x1a&.livekit.SimulationRun.Counts.Response\x12d\n" + "\x13CancelSimulationRun\x12%.livekit.SimulationRun.Cancel.Request\x1a&.livekit.SimulationRun.Cancel.Response\x12v\n" + "\x19CreateScenarioFromSession\x12+.livekit.Scenario.CreateFromSession.Request\x1a,.livekit.Scenario.CreateFromSession.ResponseBFZ#github.com/livekit/protocol/livekit\xaa\x02\rLiveKit.Proto\xea\x02\x0eLiveKit::Protob\x06proto3" @@ -3151,7 +3397,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, 36) +var file_livekit_agent_simulation_proto_msgTypes = make([]protoimpl.MessageInfo, 40) var file_livekit_agent_simulation_proto_goTypes = []any{ (SimulationMode)(0), // 0: livekit.SimulationMode (SimulationRun_Status)(0), // 1: livekit.SimulationRun.Status @@ -3170,92 +3416,106 @@ var file_livekit_agent_simulation_proto_goTypes = []any{ (*SimulationRun_ConfirmSourceUpload)(nil), // 14: livekit.SimulationRun.ConfirmSourceUpload (*SimulationRun_Get)(nil), // 15: livekit.SimulationRun.Get (*SimulationRun_List)(nil), // 16: livekit.SimulationRun.List - (*SimulationRun_Cancel)(nil), // 17: livekit.SimulationRun.Cancel - (*SimulationRun_Usage)(nil), // 18: livekit.SimulationRun.Usage - (*SimulationRun_Job_Usage)(nil), // 19: livekit.SimulationRun.Job.Usage - (*SimulationRun_JobMetrics_STT)(nil), // 20: livekit.SimulationRun.JobMetrics.STT - (*SimulationRun_JobMetrics_LLM)(nil), // 21: livekit.SimulationRun.JobMetrics.LLM - (*SimulationRun_JobMetrics_TTS)(nil), // 22: livekit.SimulationRun.JobMetrics.TTS - (*SimulationRun_JobMetrics_Conversation)(nil), // 23: livekit.SimulationRun.JobMetrics.Conversation - (*SimulationRun_JobMetrics_Turn)(nil), // 24: livekit.SimulationRun.JobMetrics.Turn - (*SimulationRun_Create_Request)(nil), // 25: livekit.SimulationRun.Create.Request - (*SimulationRun_Create_Response)(nil), // 26: livekit.SimulationRun.Create.Response - (*SimulationRun_ConfirmSourceUpload_Request)(nil), // 27: livekit.SimulationRun.ConfirmSourceUpload.Request - (*SimulationRun_ConfirmSourceUpload_Response)(nil), // 28: livekit.SimulationRun.ConfirmSourceUpload.Response - (*SimulationRun_Get_Request)(nil), // 29: livekit.SimulationRun.Get.Request - (*SimulationRun_Get_Response)(nil), // 30: livekit.SimulationRun.Get.Response - (*SimulationRun_List_Request)(nil), // 31: livekit.SimulationRun.List.Request - (*SimulationRun_List_Response)(nil), // 32: livekit.SimulationRun.List.Response - (*SimulationRun_Cancel_Request)(nil), // 33: livekit.SimulationRun.Cancel.Request - (*SimulationRun_Cancel_Response)(nil), // 34: livekit.SimulationRun.Cancel.Response - (*Scenario_CreateFromSession)(nil), // 35: livekit.Scenario.CreateFromSession - nil, // 36: livekit.Scenario.TagsEntry - (*Scenario_CreateFromSession_Request)(nil), // 37: livekit.Scenario.CreateFromSession.Request - (*Scenario_CreateFromSession_Response)(nil), // 38: livekit.Scenario.CreateFromSession.Response - (*timestamppb.Timestamp)(nil), // 39: google.protobuf.Timestamp - (*agent.ChatContext)(nil), // 40: livekit.agent.ChatContext - (agent.ChatRole)(0), // 41: livekit.agent.ChatRole - (*PresignedPostRequest)(nil), // 42: livekit.PresignedPostRequest - (*TokenPagination)(nil), // 43: livekit.TokenPagination + (*SimulationRun_Counts)(nil), // 17: livekit.SimulationRun.Counts + (*SimulationRun_Cancel)(nil), // 18: livekit.SimulationRun.Cancel + (*SimulationRun_Usage)(nil), // 19: livekit.SimulationRun.Usage + (*SimulationRun_Job_Usage)(nil), // 20: livekit.SimulationRun.Job.Usage + (*SimulationRun_JobMetrics_STT)(nil), // 21: livekit.SimulationRun.JobMetrics.STT + (*SimulationRun_JobMetrics_LLM)(nil), // 22: livekit.SimulationRun.JobMetrics.LLM + (*SimulationRun_JobMetrics_TTS)(nil), // 23: livekit.SimulationRun.JobMetrics.TTS + (*SimulationRun_JobMetrics_Conversation)(nil), // 24: livekit.SimulationRun.JobMetrics.Conversation + (*SimulationRun_JobMetrics_Turn)(nil), // 25: livekit.SimulationRun.JobMetrics.Turn + (*SimulationRun_Create_Request)(nil), // 26: livekit.SimulationRun.Create.Request + (*SimulationRun_Create_Response)(nil), // 27: livekit.SimulationRun.Create.Response + (*SimulationRun_ConfirmSourceUpload_Request)(nil), // 28: livekit.SimulationRun.ConfirmSourceUpload.Request + (*SimulationRun_ConfirmSourceUpload_Response)(nil), // 29: livekit.SimulationRun.ConfirmSourceUpload.Response + (*SimulationRun_Get_Request)(nil), // 30: livekit.SimulationRun.Get.Request + (*SimulationRun_Get_Response)(nil), // 31: livekit.SimulationRun.Get.Response + (*SimulationRun_List_Request)(nil), // 32: livekit.SimulationRun.List.Request + (*SimulationRun_List_Response)(nil), // 33: livekit.SimulationRun.List.Response + (*SimulationRun_Counts_Request)(nil), // 34: livekit.SimulationRun.Counts.Request + (*SimulationRun_Counts_Response)(nil), // 35: livekit.SimulationRun.Counts.Response + (*SimulationRun_Counts_Bucket)(nil), // 36: livekit.SimulationRun.Counts.Bucket + (*SimulationRun_Cancel_Request)(nil), // 37: livekit.SimulationRun.Cancel.Request + (*SimulationRun_Cancel_Response)(nil), // 38: livekit.SimulationRun.Cancel.Response + (*Scenario_CreateFromSession)(nil), // 39: livekit.Scenario.CreateFromSession + nil, // 40: livekit.Scenario.TagsEntry + (*Scenario_CreateFromSession_Request)(nil), // 41: livekit.Scenario.CreateFromSession.Request + (*Scenario_CreateFromSession_Response)(nil), // 42: livekit.Scenario.CreateFromSession.Response + (*timestamppb.Timestamp)(nil), // 43: google.protobuf.Timestamp + (*agent.ChatContext)(nil), // 44: livekit.agent.ChatContext + (agent.ChatRole)(0), // 45: livekit.agent.ChatRole + (*PresignedPostRequest)(nil), // 46: livekit.PresignedPostRequest + (*TokenPagination)(nil), // 47: livekit.TokenPagination + (*durationpb.Duration)(nil), // 48: 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 - 39, // 3: livekit.SimulationRun.created_at:type_name -> google.protobuf.Timestamp + 43, // 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 - 39, // 6: livekit.SimulationRun.ended_at:type_name -> google.protobuf.Timestamp - 18, // 7: livekit.SimulationRun.usage:type_name -> livekit.SimulationRun.Usage + 43, // 6: livekit.SimulationRun.ended_at:type_name -> google.protobuf.Timestamp + 19, // 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 - 36, // 10: livekit.Scenario.tags:type_name -> livekit.Scenario.TagsEntry + 40, // 10: livekit.Scenario.tags:type_name -> livekit.Scenario.TagsEntry 5, // 11: livekit.ScenarioGroup.scenarios:type_name -> livekit.Scenario 5, // 12: livekit.SimulationDispatch.scenario:type_name -> livekit.Scenario 0, // 13: livekit.SimulationDispatch.mode:type_name -> livekit.SimulationMode - 40, // 14: livekit.SimulationRunSummary.ChatHistoryEntry.value:type_name -> livekit.agent.ChatContext + 44, // 14: livekit.SimulationRunSummary.ChatHistoryEntry.value:type_name -> livekit.agent.ChatContext 2, // 15: livekit.SimulationRun.Job.status:type_name -> livekit.SimulationRun.Job.Status - 39, // 16: livekit.SimulationRun.Job.started_at:type_name -> google.protobuf.Timestamp - 39, // 17: livekit.SimulationRun.Job.ended_at:type_name -> google.protobuf.Timestamp - 19, // 18: livekit.SimulationRun.Job.usage:type_name -> livekit.SimulationRun.Job.Usage + 43, // 16: livekit.SimulationRun.Job.started_at:type_name -> google.protobuf.Timestamp + 43, // 17: livekit.SimulationRun.Job.ended_at:type_name -> google.protobuf.Timestamp + 20, // 18: livekit.SimulationRun.Job.usage:type_name -> livekit.SimulationRun.Job.Usage 11, // 19: livekit.SimulationRun.Job.metrics:type_name -> livekit.SimulationRun.JobMetrics - 20, // 20: livekit.SimulationRun.JobMetrics.stt:type_name -> livekit.SimulationRun.JobMetrics.STT - 21, // 21: livekit.SimulationRun.JobMetrics.llm:type_name -> livekit.SimulationRun.JobMetrics.LLM - 22, // 22: livekit.SimulationRun.JobMetrics.tts:type_name -> livekit.SimulationRun.JobMetrics.TTS - 23, // 23: livekit.SimulationRun.JobMetrics.conversation:type_name -> livekit.SimulationRun.JobMetrics.Conversation - 24, // 24: livekit.SimulationRun.JobMetrics.turns:type_name -> livekit.SimulationRun.JobMetrics.Turn - 39, // 25: livekit.SimulationRun.JobMetrics.t0:type_name -> google.protobuf.Timestamp - 20, // 26: livekit.SimulationRun.RunMetrics.stt:type_name -> livekit.SimulationRun.JobMetrics.STT - 21, // 27: livekit.SimulationRun.RunMetrics.llm:type_name -> livekit.SimulationRun.JobMetrics.LLM - 22, // 28: livekit.SimulationRun.RunMetrics.tts:type_name -> livekit.SimulationRun.JobMetrics.TTS - 23, // 29: livekit.SimulationRun.RunMetrics.conversation:type_name -> livekit.SimulationRun.JobMetrics.Conversation - 41, // 30: livekit.SimulationRun.JobMetrics.Turn.role:type_name -> livekit.agent.ChatRole + 21, // 20: livekit.SimulationRun.JobMetrics.stt:type_name -> livekit.SimulationRun.JobMetrics.STT + 22, // 21: livekit.SimulationRun.JobMetrics.llm:type_name -> livekit.SimulationRun.JobMetrics.LLM + 23, // 22: livekit.SimulationRun.JobMetrics.tts:type_name -> livekit.SimulationRun.JobMetrics.TTS + 24, // 23: livekit.SimulationRun.JobMetrics.conversation:type_name -> livekit.SimulationRun.JobMetrics.Conversation + 25, // 24: livekit.SimulationRun.JobMetrics.turns:type_name -> livekit.SimulationRun.JobMetrics.Turn + 43, // 25: livekit.SimulationRun.JobMetrics.t0:type_name -> google.protobuf.Timestamp + 21, // 26: livekit.SimulationRun.RunMetrics.stt:type_name -> livekit.SimulationRun.JobMetrics.STT + 22, // 27: livekit.SimulationRun.RunMetrics.llm:type_name -> livekit.SimulationRun.JobMetrics.LLM + 23, // 28: livekit.SimulationRun.RunMetrics.tts:type_name -> livekit.SimulationRun.JobMetrics.TTS + 24, // 29: livekit.SimulationRun.RunMetrics.conversation:type_name -> livekit.SimulationRun.JobMetrics.Conversation + 45, // 30: livekit.SimulationRun.JobMetrics.Turn.role:type_name -> livekit.agent.ChatRole 6, // 31: livekit.SimulationRun.Create.Request.scenario_group:type_name -> livekit.ScenarioGroup 0, // 32: livekit.SimulationRun.Create.Request.mode:type_name -> livekit.SimulationMode - 42, // 33: livekit.SimulationRun.Create.Response.presigned_post_request:type_name -> livekit.PresignedPostRequest + 46, // 33: livekit.SimulationRun.Create.Response.presigned_post_request:type_name -> livekit.PresignedPostRequest 4, // 34: livekit.SimulationRun.Get.Response.run:type_name -> livekit.SimulationRun 1, // 35: livekit.SimulationRun.List.Request.status:type_name -> livekit.SimulationRun.Status - 43, // 36: livekit.SimulationRun.List.Request.page_token:type_name -> livekit.TokenPagination - 4, // 37: livekit.SimulationRun.List.Response.runs:type_name -> livekit.SimulationRun - 43, // 38: livekit.SimulationRun.List.Response.next_page_token:type_name -> livekit.TokenPagination - 5, // 39: livekit.Scenario.CreateFromSession.Response.scenario:type_name -> livekit.Scenario - 25, // 40: livekit.AgentSimulation.CreateSimulationRun:input_type -> livekit.SimulationRun.Create.Request - 27, // 41: livekit.AgentSimulation.ConfirmSimulationSourceUpload:input_type -> livekit.SimulationRun.ConfirmSourceUpload.Request - 29, // 42: livekit.AgentSimulation.GetSimulationRun:input_type -> livekit.SimulationRun.Get.Request - 31, // 43: livekit.AgentSimulation.ListSimulationRuns:input_type -> livekit.SimulationRun.List.Request - 33, // 44: livekit.AgentSimulation.CancelSimulationRun:input_type -> livekit.SimulationRun.Cancel.Request - 37, // 45: livekit.AgentSimulation.CreateScenarioFromSession:input_type -> livekit.Scenario.CreateFromSession.Request - 26, // 46: livekit.AgentSimulation.CreateSimulationRun:output_type -> livekit.SimulationRun.Create.Response - 28, // 47: livekit.AgentSimulation.ConfirmSimulationSourceUpload:output_type -> livekit.SimulationRun.ConfirmSourceUpload.Response - 30, // 48: livekit.AgentSimulation.GetSimulationRun:output_type -> livekit.SimulationRun.Get.Response - 32, // 49: livekit.AgentSimulation.ListSimulationRuns:output_type -> livekit.SimulationRun.List.Response - 34, // 50: livekit.AgentSimulation.CancelSimulationRun:output_type -> livekit.SimulationRun.Cancel.Response - 38, // 51: livekit.AgentSimulation.CreateScenarioFromSession:output_type -> livekit.Scenario.CreateFromSession.Response - 46, // [46:52] is the sub-list for method output_type - 40, // [40:46] is the sub-list for method input_type - 40, // [40:40] is the sub-list for extension type_name - 40, // [40:40] is the sub-list for extension extendee - 0, // [0:40] is the sub-list for field type_name + 47, // 36: livekit.SimulationRun.List.Request.page_token:type_name -> livekit.TokenPagination + 43, // 37: livekit.SimulationRun.List.Request.from:type_name -> google.protobuf.Timestamp + 43, // 38: livekit.SimulationRun.List.Request.to: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.from:type_name -> google.protobuf.Timestamp + 43, // 42: livekit.SimulationRun.Counts.Request.to:type_name -> google.protobuf.Timestamp + 36, // 43: livekit.SimulationRun.Counts.Response.buckets:type_name -> livekit.SimulationRun.Counts.Bucket + 48, // 44: livekit.SimulationRun.Counts.Response.interval:type_name -> google.protobuf.Duration + 43, // 45: livekit.SimulationRun.Counts.Bucket.bucket_start:type_name -> google.protobuf.Timestamp + 5, // 46: livekit.Scenario.CreateFromSession.Response.scenario:type_name -> livekit.Scenario + 26, // 47: livekit.AgentSimulation.CreateSimulationRun:input_type -> livekit.SimulationRun.Create.Request + 28, // 48: livekit.AgentSimulation.ConfirmSimulationSourceUpload:input_type -> livekit.SimulationRun.ConfirmSourceUpload.Request + 30, // 49: livekit.AgentSimulation.GetSimulationRun:input_type -> livekit.SimulationRun.Get.Request + 32, // 50: livekit.AgentSimulation.ListSimulationRuns:input_type -> livekit.SimulationRun.List.Request + 34, // 51: livekit.AgentSimulation.CountSimulationRuns:input_type -> livekit.SimulationRun.Counts.Request + 37, // 52: livekit.AgentSimulation.CancelSimulationRun:input_type -> livekit.SimulationRun.Cancel.Request + 41, // 53: livekit.AgentSimulation.CreateScenarioFromSession:input_type -> livekit.Scenario.CreateFromSession.Request + 27, // 54: livekit.AgentSimulation.CreateSimulationRun:output_type -> livekit.SimulationRun.Create.Response + 29, // 55: livekit.AgentSimulation.ConfirmSimulationSourceUpload:output_type -> livekit.SimulationRun.ConfirmSourceUpload.Response + 31, // 56: livekit.AgentSimulation.GetSimulationRun:output_type -> livekit.SimulationRun.Get.Response + 33, // 57: livekit.AgentSimulation.ListSimulationRuns:output_type -> livekit.SimulationRun.List.Response + 35, // 58: livekit.AgentSimulation.CountSimulationRuns:output_type -> livekit.SimulationRun.Counts.Response + 38, // 59: livekit.AgentSimulation.CancelSimulationRun:output_type -> livekit.SimulationRun.Cancel.Response + 42, // 60: livekit.AgentSimulation.CreateScenarioFromSession:output_type -> livekit.Scenario.CreateFromSession.Response + 54, // [54:61] is the sub-list for method output_type + 47, // [47:54] is the sub-list for method input_type + 47, // [47:47] is the sub-list for extension type_name + 47, // [47:47] is the sub-list for extension extendee + 0, // [0:47] is the sub-list for field type_name } func init() { file_livekit_agent_simulation_proto_init() } @@ -3267,20 +3527,20 @@ func file_livekit_agent_simulation_proto_init() { file_livekit_models_proto_init() file_livekit_agent_simulation_proto_msgTypes[8].OneofWrappers = []any{} file_livekit_agent_simulation_proto_msgTypes[9].OneofWrappers = []any{} - file_livekit_agent_simulation_proto_msgTypes[17].OneofWrappers = []any{} file_livekit_agent_simulation_proto_msgTypes[18].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[28].OneofWrappers = []any{} + file_livekit_agent_simulation_proto_msgTypes[23].OneofWrappers = []any{} + file_livekit_agent_simulation_proto_msgTypes[29].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: 36, + NumMessages: 40, NumExtensions: 0, NumServices: 1, }, diff --git a/livekit/livekit_agent_simulation.twirp.go b/livekit/livekit_agent_simulation.twirp.go index a49b0aa75..c56583308 100644 --- a/livekit/livekit_agent_simulation.twirp.go +++ b/livekit/livekit_agent_simulation.twirp.go @@ -35,6 +35,8 @@ type AgentSimulation interface { ListSimulationRuns(context.Context, *SimulationRun_List_Request) (*SimulationRun_List_Response, error) + CountSimulationRuns(context.Context, *SimulationRun_Counts_Request) (*SimulationRun_Counts_Response, error) + CancelSimulationRun(context.Context, *SimulationRun_Cancel_Request) (*SimulationRun_Cancel_Response, error) CreateScenarioFromSession(context.Context, *Scenario_CreateFromSession_Request) (*Scenario_CreateFromSession_Response, error) @@ -46,7 +48,7 @@ type AgentSimulation interface { type agentSimulationProtobufClient struct { client HTTPClient - urls [6]string + urls [7]string interceptor twirp.Interceptor opts twirp.ClientOptions } @@ -74,11 +76,12 @@ func NewAgentSimulationProtobufClient(baseURL string, client HTTPClient, opts .. // Build method URLs: []/./ serviceURL := sanitizeBaseURL(baseURL) serviceURL += baseServicePath(pathPrefix, "livekit", "AgentSimulation") - urls := [6]string{ + urls := [7]string{ serviceURL + "CreateSimulationRun", serviceURL + "ConfirmSimulationSourceUpload", serviceURL + "GetSimulationRun", serviceURL + "ListSimulationRuns", + serviceURL + "CountSimulationRuns", serviceURL + "CancelSimulationRun", serviceURL + "CreateScenarioFromSession", } @@ -275,6 +278,52 @@ func (c *agentSimulationProtobufClient) callListSimulationRuns(ctx context.Conte return out, nil } +func (c *agentSimulationProtobufClient) CountSimulationRuns(ctx context.Context, in *SimulationRun_Counts_Request) (*SimulationRun_Counts_Response, error) { + ctx = ctxsetters.WithPackageName(ctx, "livekit") + ctx = ctxsetters.WithServiceName(ctx, "AgentSimulation") + ctx = ctxsetters.WithMethodName(ctx, "CountSimulationRuns") + caller := c.callCountSimulationRuns + if c.interceptor != nil { + caller = func(ctx context.Context, req *SimulationRun_Counts_Request) (*SimulationRun_Counts_Response, error) { + resp, err := c.interceptor( + func(ctx context.Context, req interface{}) (interface{}, error) { + typedReq, ok := req.(*SimulationRun_Counts_Request) + if !ok { + return nil, twirp.InternalError("failed type assertion req.(*SimulationRun_Counts_Request) when calling interceptor") + } + return c.callCountSimulationRuns(ctx, typedReq) + }, + )(ctx, req) + if resp != nil { + typedResp, ok := resp.(*SimulationRun_Counts_Response) + if !ok { + return nil, twirp.InternalError("failed type assertion resp.(*SimulationRun_Counts_Response) when calling interceptor") + } + return typedResp, err + } + return nil, err + } + } + return caller(ctx, in) +} + +func (c *agentSimulationProtobufClient) callCountSimulationRuns(ctx context.Context, in *SimulationRun_Counts_Request) (*SimulationRun_Counts_Response, error) { + out := new(SimulationRun_Counts_Response) + ctx, err := doProtobufRequest(ctx, c.client, c.opts.Hooks, c.urls[4], in, out) + if err != nil { + twerr, ok := err.(twirp.Error) + if !ok { + twerr = twirp.InternalErrorWith(err) + } + callClientError(ctx, c.opts.Hooks, twerr) + return nil, err + } + + callClientResponseReceived(ctx, c.opts.Hooks) + + return out, nil +} + func (c *agentSimulationProtobufClient) CancelSimulationRun(ctx context.Context, in *SimulationRun_Cancel_Request) (*SimulationRun_Cancel_Response, error) { ctx = ctxsetters.WithPackageName(ctx, "livekit") ctx = ctxsetters.WithServiceName(ctx, "AgentSimulation") @@ -306,7 +355,7 @@ func (c *agentSimulationProtobufClient) CancelSimulationRun(ctx context.Context, func (c *agentSimulationProtobufClient) callCancelSimulationRun(ctx context.Context, in *SimulationRun_Cancel_Request) (*SimulationRun_Cancel_Response, error) { out := new(SimulationRun_Cancel_Response) - ctx, err := doProtobufRequest(ctx, c.client, c.opts.Hooks, c.urls[4], in, out) + ctx, err := doProtobufRequest(ctx, c.client, c.opts.Hooks, c.urls[5], in, out) if err != nil { twerr, ok := err.(twirp.Error) if !ok { @@ -352,7 +401,7 @@ func (c *agentSimulationProtobufClient) CreateScenarioFromSession(ctx context.Co func (c *agentSimulationProtobufClient) callCreateScenarioFromSession(ctx context.Context, in *Scenario_CreateFromSession_Request) (*Scenario_CreateFromSession_Response, error) { out := new(Scenario_CreateFromSession_Response) - ctx, err := doProtobufRequest(ctx, c.client, c.opts.Hooks, c.urls[5], in, out) + ctx, err := doProtobufRequest(ctx, c.client, c.opts.Hooks, c.urls[6], in, out) if err != nil { twerr, ok := err.(twirp.Error) if !ok { @@ -373,7 +422,7 @@ func (c *agentSimulationProtobufClient) callCreateScenarioFromSession(ctx contex type agentSimulationJSONClient struct { client HTTPClient - urls [6]string + urls [7]string interceptor twirp.Interceptor opts twirp.ClientOptions } @@ -401,11 +450,12 @@ func NewAgentSimulationJSONClient(baseURL string, client HTTPClient, opts ...twi // Build method URLs: []/./ serviceURL := sanitizeBaseURL(baseURL) serviceURL += baseServicePath(pathPrefix, "livekit", "AgentSimulation") - urls := [6]string{ + urls := [7]string{ serviceURL + "CreateSimulationRun", serviceURL + "ConfirmSimulationSourceUpload", serviceURL + "GetSimulationRun", serviceURL + "ListSimulationRuns", + serviceURL + "CountSimulationRuns", serviceURL + "CancelSimulationRun", serviceURL + "CreateScenarioFromSession", } @@ -602,6 +652,52 @@ func (c *agentSimulationJSONClient) callListSimulationRuns(ctx context.Context, return out, nil } +func (c *agentSimulationJSONClient) CountSimulationRuns(ctx context.Context, in *SimulationRun_Counts_Request) (*SimulationRun_Counts_Response, error) { + ctx = ctxsetters.WithPackageName(ctx, "livekit") + ctx = ctxsetters.WithServiceName(ctx, "AgentSimulation") + ctx = ctxsetters.WithMethodName(ctx, "CountSimulationRuns") + caller := c.callCountSimulationRuns + if c.interceptor != nil { + caller = func(ctx context.Context, req *SimulationRun_Counts_Request) (*SimulationRun_Counts_Response, error) { + resp, err := c.interceptor( + func(ctx context.Context, req interface{}) (interface{}, error) { + typedReq, ok := req.(*SimulationRun_Counts_Request) + if !ok { + return nil, twirp.InternalError("failed type assertion req.(*SimulationRun_Counts_Request) when calling interceptor") + } + return c.callCountSimulationRuns(ctx, typedReq) + }, + )(ctx, req) + if resp != nil { + typedResp, ok := resp.(*SimulationRun_Counts_Response) + if !ok { + return nil, twirp.InternalError("failed type assertion resp.(*SimulationRun_Counts_Response) when calling interceptor") + } + return typedResp, err + } + return nil, err + } + } + return caller(ctx, in) +} + +func (c *agentSimulationJSONClient) callCountSimulationRuns(ctx context.Context, in *SimulationRun_Counts_Request) (*SimulationRun_Counts_Response, error) { + out := new(SimulationRun_Counts_Response) + ctx, err := doJSONRequest(ctx, c.client, c.opts.Hooks, c.urls[4], in, out) + if err != nil { + twerr, ok := err.(twirp.Error) + if !ok { + twerr = twirp.InternalErrorWith(err) + } + callClientError(ctx, c.opts.Hooks, twerr) + return nil, err + } + + callClientResponseReceived(ctx, c.opts.Hooks) + + return out, nil +} + func (c *agentSimulationJSONClient) CancelSimulationRun(ctx context.Context, in *SimulationRun_Cancel_Request) (*SimulationRun_Cancel_Response, error) { ctx = ctxsetters.WithPackageName(ctx, "livekit") ctx = ctxsetters.WithServiceName(ctx, "AgentSimulation") @@ -633,7 +729,7 @@ func (c *agentSimulationJSONClient) CancelSimulationRun(ctx context.Context, in func (c *agentSimulationJSONClient) callCancelSimulationRun(ctx context.Context, in *SimulationRun_Cancel_Request) (*SimulationRun_Cancel_Response, error) { out := new(SimulationRun_Cancel_Response) - ctx, err := doJSONRequest(ctx, c.client, c.opts.Hooks, c.urls[4], in, out) + ctx, err := doJSONRequest(ctx, c.client, c.opts.Hooks, c.urls[5], in, out) if err != nil { twerr, ok := err.(twirp.Error) if !ok { @@ -679,7 +775,7 @@ func (c *agentSimulationJSONClient) CreateScenarioFromSession(ctx context.Contex func (c *agentSimulationJSONClient) callCreateScenarioFromSession(ctx context.Context, in *Scenario_CreateFromSession_Request) (*Scenario_CreateFromSession_Response, error) { out := new(Scenario_CreateFromSession_Response) - ctx, err := doJSONRequest(ctx, c.client, c.opts.Hooks, c.urls[5], in, out) + ctx, err := doJSONRequest(ctx, c.client, c.opts.Hooks, c.urls[6], in, out) if err != nil { twerr, ok := err.(twirp.Error) if !ok { @@ -803,6 +899,9 @@ func (s *agentSimulationServer) ServeHTTP(resp http.ResponseWriter, req *http.Re case "ListSimulationRuns": s.serveListSimulationRuns(ctx, resp, req) return + case "CountSimulationRuns": + s.serveCountSimulationRuns(ctx, resp, req) + return case "CancelSimulationRun": s.serveCancelSimulationRun(ctx, resp, req) return @@ -1536,6 +1635,186 @@ func (s *agentSimulationServer) serveListSimulationRunsProtobuf(ctx context.Cont callResponseSent(ctx, s.hooks) } +func (s *agentSimulationServer) serveCountSimulationRuns(ctx context.Context, resp http.ResponseWriter, req *http.Request) { + header := req.Header.Get("Content-Type") + i := strings.Index(header, ";") + if i == -1 { + i = len(header) + } + switch strings.TrimSpace(strings.ToLower(header[:i])) { + case "application/json": + s.serveCountSimulationRunsJSON(ctx, resp, req) + case "application/protobuf": + s.serveCountSimulationRunsProtobuf(ctx, resp, req) + default: + msg := fmt.Sprintf("unexpected Content-Type: %q", req.Header.Get("Content-Type")) + twerr := badRouteError(msg, req.Method, req.URL.Path) + s.writeError(ctx, resp, twerr) + } +} + +func (s *agentSimulationServer) serveCountSimulationRunsJSON(ctx context.Context, resp http.ResponseWriter, req *http.Request) { + var err error + ctx = ctxsetters.WithMethodName(ctx, "CountSimulationRuns") + ctx, err = callRequestRouted(ctx, s.hooks) + if err != nil { + s.writeError(ctx, resp, err) + return + } + + d := json.NewDecoder(req.Body) + rawReqBody := json.RawMessage{} + if err := d.Decode(&rawReqBody); err != nil { + s.handleRequestBodyError(ctx, resp, "the json request could not be decoded", err) + return + } + reqContent := new(SimulationRun_Counts_Request) + unmarshaler := protojson.UnmarshalOptions{DiscardUnknown: true} + if err = unmarshaler.Unmarshal(rawReqBody, reqContent); err != nil { + s.handleRequestBodyError(ctx, resp, "the json request could not be decoded", err) + return + } + + handler := s.AgentSimulation.CountSimulationRuns + if s.interceptor != nil { + handler = func(ctx context.Context, req *SimulationRun_Counts_Request) (*SimulationRun_Counts_Response, error) { + resp, err := s.interceptor( + func(ctx context.Context, req interface{}) (interface{}, error) { + typedReq, ok := req.(*SimulationRun_Counts_Request) + if !ok { + return nil, twirp.InternalError("failed type assertion req.(*SimulationRun_Counts_Request) when calling interceptor") + } + return s.AgentSimulation.CountSimulationRuns(ctx, typedReq) + }, + )(ctx, req) + if resp != nil { + typedResp, ok := resp.(*SimulationRun_Counts_Response) + if !ok { + return nil, twirp.InternalError("failed type assertion resp.(*SimulationRun_Counts_Response) when calling interceptor") + } + return typedResp, err + } + return nil, err + } + } + + // Call service method + var respContent *SimulationRun_Counts_Response + func() { + defer ensurePanicResponses(ctx, resp, s.hooks) + respContent, err = handler(ctx, reqContent) + }() + + if err != nil { + s.writeError(ctx, resp, err) + return + } + if respContent == nil { + s.writeError(ctx, resp, twirp.InternalError("received a nil *SimulationRun_Counts_Response and nil error while calling CountSimulationRuns. nil responses are not supported")) + return + } + + ctx = callResponsePrepared(ctx, s.hooks) + + marshaler := &protojson.MarshalOptions{UseProtoNames: !s.jsonCamelCase, EmitUnpopulated: !s.jsonSkipDefaults} + respBytes, err := marshaler.Marshal(respContent) + if err != nil { + s.writeError(ctx, resp, wrapInternal(err, "failed to marshal json response")) + return + } + + ctx = ctxsetters.WithStatusCode(ctx, http.StatusOK) + resp.Header().Set("Content-Type", "application/json") + resp.Header().Set("Content-Length", strconv.Itoa(len(respBytes))) + resp.WriteHeader(http.StatusOK) + + if n, err := resp.Write(respBytes); err != nil { + msg := fmt.Sprintf("failed to write response, %d of %d bytes written: %s", n, len(respBytes), err.Error()) + twerr := twirp.NewError(twirp.Unknown, msg) + ctx = callError(ctx, s.hooks, twerr) + } + callResponseSent(ctx, s.hooks) +} + +func (s *agentSimulationServer) serveCountSimulationRunsProtobuf(ctx context.Context, resp http.ResponseWriter, req *http.Request) { + var err error + ctx = ctxsetters.WithMethodName(ctx, "CountSimulationRuns") + ctx, err = callRequestRouted(ctx, s.hooks) + if err != nil { + s.writeError(ctx, resp, err) + return + } + + buf, err := io.ReadAll(req.Body) + if err != nil { + s.handleRequestBodyError(ctx, resp, "failed to read request body", err) + return + } + reqContent := new(SimulationRun_Counts_Request) + if err = proto.Unmarshal(buf, reqContent); err != nil { + s.writeError(ctx, resp, malformedRequestError("the protobuf request could not be decoded")) + return + } + + handler := s.AgentSimulation.CountSimulationRuns + if s.interceptor != nil { + handler = func(ctx context.Context, req *SimulationRun_Counts_Request) (*SimulationRun_Counts_Response, error) { + resp, err := s.interceptor( + func(ctx context.Context, req interface{}) (interface{}, error) { + typedReq, ok := req.(*SimulationRun_Counts_Request) + if !ok { + return nil, twirp.InternalError("failed type assertion req.(*SimulationRun_Counts_Request) when calling interceptor") + } + return s.AgentSimulation.CountSimulationRuns(ctx, typedReq) + }, + )(ctx, req) + if resp != nil { + typedResp, ok := resp.(*SimulationRun_Counts_Response) + if !ok { + return nil, twirp.InternalError("failed type assertion resp.(*SimulationRun_Counts_Response) when calling interceptor") + } + return typedResp, err + } + return nil, err + } + } + + // Call service method + var respContent *SimulationRun_Counts_Response + func() { + defer ensurePanicResponses(ctx, resp, s.hooks) + respContent, err = handler(ctx, reqContent) + }() + + if err != nil { + s.writeError(ctx, resp, err) + return + } + if respContent == nil { + s.writeError(ctx, resp, twirp.InternalError("received a nil *SimulationRun_Counts_Response and nil error while calling CountSimulationRuns. nil responses are not supported")) + return + } + + ctx = callResponsePrepared(ctx, s.hooks) + + respBytes, err := proto.Marshal(respContent) + if err != nil { + s.writeError(ctx, resp, wrapInternal(err, "failed to marshal proto response")) + return + } + + ctx = ctxsetters.WithStatusCode(ctx, http.StatusOK) + resp.Header().Set("Content-Type", "application/protobuf") + resp.Header().Set("Content-Length", strconv.Itoa(len(respBytes))) + resp.WriteHeader(http.StatusOK) + if n, err := resp.Write(respBytes); err != nil { + msg := fmt.Sprintf("failed to write response, %d of %d bytes written: %s", n, len(respBytes), err.Error()) + twerr := twirp.NewError(twirp.Unknown, msg) + ctx = callError(ctx, s.hooks, twerr) + } + callResponseSent(ctx, s.hooks) +} + func (s *agentSimulationServer) serveCancelSimulationRun(ctx context.Context, resp http.ResponseWriter, req *http.Request) { header := req.Header.Get("Content-Type") i := strings.Index(header, ";") @@ -1912,221 +2191,232 @@ func (s *agentSimulationServer) PathPrefix() string { } var twirpFileDescriptor10 = []byte{ - // 3454 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x5a, 0xcd, 0x6f, 0x1b, 0x49, - 0x76, 0x37, 0xbf, 0xc9, 0xc7, 0x4f, 0x95, 0x28, 0x89, 0xee, 0xb1, 0xc7, 0xb6, 0xbc, 0xde, 0x75, - 0x6c, 0x2f, 0xed, 0x68, 0xc7, 0x3b, 0x91, 0x67, 0x37, 0x89, 0x28, 0xd1, 0xa6, 0x1c, 0x49, 0xd6, - 0x14, 0x29, 0x24, 0xeb, 0x20, 0x68, 0xb4, 0xba, 0xcb, 0x54, 0xcb, 0xcd, 0x2e, 0x4e, 0x57, 0xb5, - 0x6d, 0x2d, 0x90, 0x5b, 0x0e, 0x03, 0xe4, 0x94, 0xe4, 0x1e, 0xe4, 0xb2, 0x87, 0xec, 0x35, 0xd7, - 0x00, 0x41, 0xfe, 0x84, 0x5c, 0x02, 0x04, 0xc8, 0x5f, 0x90, 0xfb, 0xde, 0x83, 0xfa, 0xe8, 0x66, - 0xf3, 0x4b, 0x96, 0x17, 0x63, 0x20, 0x87, 0xdc, 0xd8, 0xef, 0xfd, 0xea, 0xd5, 0xeb, 0x57, 0xef, - 0x57, 0xaf, 0xaa, 0x1f, 0xe1, 0x4b, 0xcf, 0x7d, 0x47, 0xde, 0xba, 0xdc, 0xb4, 0x86, 0xc4, 0xe7, - 0x26, 0x73, 0x47, 0xa1, 0x67, 0x71, 0x97, 0xfa, 0xed, 0x71, 0x40, 0x39, 0x45, 0x05, 0xad, 0x37, - 0xee, 0x48, 0xc0, 0xe3, 0x19, 0x38, 0x61, 0x2c, 0xc6, 0x1a, 0xb7, 0x86, 0x94, 0x0e, 0x3d, 0xf2, - 0x58, 0x3e, 0x9d, 0x86, 0x6f, 0x1e, 0x73, 0x77, 0x44, 0x18, 0xb7, 0x46, 0x63, 0x0d, 0xb8, 0x1e, - 0x8d, 0xb6, 0x3d, 0x1a, 0x3a, 0xca, 0x86, 0x56, 0x35, 0x23, 0xd5, 0x88, 0x3a, 0xc4, 0x63, 0x4a, - 0xba, 0xf9, 0x1f, 0x19, 0x68, 0xf6, 0x63, 0x97, 0x70, 0xe8, 0xf7, 0xc3, 0xd1, 0xc8, 0x0a, 0x2e, - 0xd0, 0x3a, 0xe4, 0xc7, 0x16, 0x63, 0xc4, 0x69, 0xa5, 0x6e, 0xa7, 0xee, 0xe7, 0xb0, 0x7e, 0x12, - 0xf2, 0x37, 0x96, 0xeb, 0x11, 0xa7, 0x95, 0x56, 0x72, 0xf5, 0x84, 0x6e, 0x02, 0x0c, 0xa9, 0xeb, - 0x0f, 0xcd, 0xf7, 0xc4, 0xf3, 0x5a, 0x99, 0xdb, 0xa9, 0xfb, 0x25, 0x5c, 0x92, 0x92, 0x3f, 0x27, - 0x9e, 0x27, 0xd4, 0x9c, 0x9a, 0xee, 0x68, 0x1c, 0xd0, 0x77, 0xa4, 0x95, 0x55, 0x6a, 0x4e, 0xf7, - 0x95, 0x00, 0x7d, 0x03, 0x79, 0x97, 0xb1, 0x90, 0xb0, 0x56, 0xee, 0x76, 0xe6, 0x7e, 0x79, 0xeb, - 0x6e, 0x5b, 0x7b, 0xdb, 0x5e, 0xe4, 0x5c, 0x7b, 0x5f, 0x60, 0xb1, 0x1e, 0x82, 0xbe, 0x85, 0x8a, - 0x7d, 0x66, 0x71, 0xf3, 0xcc, 0x65, 0x9c, 0x06, 0x17, 0xad, 0xbc, 0x34, 0xd1, 0xbe, 0xdc, 0xc4, - 0xee, 0x99, 0xc5, 0x7b, 0x6a, 0x40, 0xd7, 0xe7, 0xc1, 0x05, 0x2e, 0xdb, 0x13, 0x89, 0xf1, 0x1a, - 0x1a, 0xb3, 0x00, 0xd4, 0x80, 0xcc, 0x5b, 0x72, 0x21, 0xc3, 0x51, 0xc2, 0xe2, 0x27, 0x7a, 0x02, - 0xb9, 0x77, 0x96, 0x17, 0x12, 0x19, 0x8a, 0xf2, 0x96, 0x11, 0xcf, 0xa8, 0xe2, 0x2e, 0x2c, 0xec, - 0x52, 0x9f, 0x93, 0x0f, 0x1c, 0x2b, 0xe0, 0xb3, 0xf4, 0x1f, 0xa5, 0x0c, 0x13, 0x72, 0xd2, 0x7f, - 0x74, 0x1b, 0xca, 0x0e, 0x61, 0x76, 0xe0, 0x8e, 0x85, 0x6f, 0xda, 0x70, 0x52, 0x84, 0xbe, 0x04, - 0x60, 0xe1, 0x70, 0x48, 0x98, 0x04, 0xa4, 0x25, 0x20, 0x21, 0x41, 0x4d, 0xc8, 0x79, 0xd6, 0x29, - 0x89, 0xe2, 0xad, 0x1e, 0x36, 0xff, 0x61, 0x07, 0xaa, 0x53, 0xef, 0x8c, 0x6a, 0x90, 0x76, 0x1d, - 0x3d, 0x41, 0xda, 0x95, 0x8b, 0x35, 0x0e, 0xe8, 0x39, 0xb1, 0xb9, 0xe9, 0x3a, 0xda, 0x6e, 0x49, - 0x4b, 0xf6, 0x1d, 0xf4, 0x14, 0xf2, 0x8c, 0x5b, 0x3c, 0x64, 0xd2, 0x6e, 0x6d, 0xeb, 0xe6, 0xe2, - 0x50, 0xb6, 0xfb, 0x12, 0x84, 0x35, 0x18, 0x3d, 0x84, 0x15, 0x95, 0xb4, 0xc9, 0xb7, 0x52, 0x4b, - 0xdd, 0x90, 0x8a, 0xbd, 0xc4, 0xab, 0x35, 0x21, 0x47, 0x82, 0x80, 0x06, 0xad, 0x9c, 0x72, 0x5d, - 0x3e, 0xa0, 0x6d, 0x00, 0x3b, 0x20, 0x16, 0x27, 0x8e, 0x69, 0xf1, 0x56, 0x5e, 0x87, 0x55, 0x65, - 0x7d, 0x3b, 0xca, 0xfa, 0xf6, 0x20, 0xca, 0x7a, 0x5c, 0xd2, 0xe8, 0x1d, 0x8e, 0xda, 0x90, 0x3d, - 0xa7, 0xa7, 0xac, 0x55, 0x90, 0xab, 0x6f, 0x2c, 0x71, 0xf9, 0x25, 0x3d, 0xc5, 0x12, 0x27, 0x62, - 0xa0, 0xbc, 0xf5, 0xad, 0x11, 0x69, 0x95, 0x54, 0x0c, 0xa4, 0xe4, 0xc8, 0x1a, 0x11, 0xf4, 0x4b, - 0xa8, 0x31, 0x9b, 0xf8, 0x56, 0xe0, 0x52, 0x73, 0x18, 0xd0, 0x70, 0xdc, 0x02, 0xe9, 0xcd, 0xfa, - 0xc4, 0xb0, 0x56, 0xbf, 0x10, 0x5a, 0x5c, 0x65, 0xc9, 0x47, 0xf4, 0x14, 0x8a, 0xc4, 0x77, 0xd4, - 0x6b, 0x94, 0x3f, 0xfa, 0x1a, 0x05, 0x89, 0xdd, 0xe1, 0xe8, 0x0b, 0x28, 0x9d, 0xd3, 0x53, 0xd3, - 0xa6, 0xa1, 0xcf, 0x5b, 0x15, 0x49, 0xb0, 0xe2, 0x39, 0x3d, 0xdd, 0x15, 0xcf, 0xe8, 0x0e, 0x54, - 0x14, 0x09, 0xb5, 0xbe, 0x2a, 0xf5, 0x65, 0x25, 0x8b, 0x21, 0x8a, 0x8f, 0x1a, 0x52, 0x53, 0x10, - 0x25, 0x53, 0x90, 0x9f, 0x40, 0xdd, 0x0f, 0x47, 0x89, 0x7d, 0x88, 0xb5, 0xea, 0x12, 0x55, 0xf3, - 0xc3, 0xd1, 0x24, 0x58, 0x0c, 0x6d, 0x41, 0x2e, 0x64, 0xd6, 0x90, 0xb4, 0x1a, 0xd2, 0xff, 0x1b, - 0x4b, 0x22, 0x7a, 0x22, 0x30, 0x58, 0x41, 0x45, 0x4a, 0xdb, 0xd4, 0xb7, 0xc3, 0x20, 0x20, 0xbe, - 0x7d, 0xd1, 0x5a, 0x51, 0xd3, 0x27, 0x44, 0xe8, 0x21, 0x64, 0xc5, 0x06, 0xd4, 0x42, 0x32, 0xb3, - 0x36, 0x16, 0x18, 0x3d, 0xa4, 0x0e, 0xc1, 0x12, 0x84, 0xbe, 0x81, 0xc2, 0x88, 0xf0, 0xc0, 0xb5, - 0x59, 0x6b, 0x55, 0x3a, 0x71, 0x67, 0x89, 0x13, 0x38, 0xf4, 0x0f, 0x15, 0x10, 0x47, 0x23, 0x44, - 0x2c, 0x98, 0x22, 0xbb, 0xf9, 0x6b, 0xc6, 0x9d, 0x56, 0xf3, 0x76, 0xea, 0x7e, 0x05, 0x97, 0xb5, - 0xec, 0x35, 0xe3, 0x8e, 0xf1, 0x9f, 0x39, 0xc8, 0xbc, 0xa4, 0xa7, 0x73, 0xfc, 0xd8, 0x8e, 0x09, - 0x90, 0x96, 0x6e, 0xde, 0x59, 0x9e, 0x4d, 0xb3, 0x24, 0xd8, 0x84, 0x8a, 0xeb, 0x33, 0x1e, 0x84, - 0xb6, 0x8a, 0xad, 0x62, 0xe6, 0x94, 0x6c, 0x92, 0xfb, 0xd9, 0x64, 0xee, 0xff, 0x14, 0x90, 0x4a, - 0x48, 0xf2, 0x61, 0x4c, 0x6c, 0xae, 0xd7, 0x46, 0xd1, 0x43, 0x11, 0xab, 0x9b, 0x50, 0x4c, 0xb8, - 0x9f, 0x4f, 0x70, 0x1f, 0x21, 0xc8, 0x72, 0x6b, 0xa8, 0x58, 0x50, 0xc2, 0xf2, 0xb7, 0x48, 0xaa, - 0x80, 0xd2, 0x91, 0x4a, 0xf4, 0xa2, 0x44, 0x17, 0x85, 0x40, 0xe6, 0xf9, 0x36, 0x00, 0xe3, 0x56, - 0xa0, 0x19, 0x07, 0x1f, 0x67, 0x9c, 0x46, 0xef, 0xf0, 0xdf, 0x37, 0xc7, 0x37, 0xa0, 0x20, 0xdd, - 0x71, 0x1d, 0x99, 0xe1, 0x25, 0x9c, 0x17, 0x8f, 0xfb, 0x0e, 0xfa, 0x79, 0x94, 0x70, 0x55, 0x69, - 0xec, 0xf6, 0x25, 0x41, 0x9f, 0x4a, 0xba, 0x44, 0x96, 0xd4, 0x2e, 0xcd, 0x92, 0x97, 0xf4, 0x74, - 0x36, 0x4b, 0x8c, 0xbf, 0x82, 0x9c, 0x34, 0x86, 0xee, 0x43, 0x43, 0xec, 0xd4, 0x26, 0x0f, 0x03, - 0x9f, 0x69, 0xfa, 0xa8, 0xd2, 0x57, 0x13, 0xf2, 0x81, 0x10, 0x2b, 0x06, 0x3d, 0x80, 0x15, 0x2b, - 0x74, 0x5c, 0x3a, 0x05, 0x55, 0xd5, 0xb0, 0x2e, 0x15, 0x13, 0xec, 0x26, 0x85, 0xbc, 0x4a, 0x10, - 0x84, 0xa0, 0xd6, 0x1f, 0xec, 0x0c, 0x4e, 0xfa, 0xe6, 0x71, 0xf7, 0x68, 0x6f, 0xff, 0xe8, 0x45, - 0xe3, 0x5a, 0x42, 0x86, 0x4f, 0x8e, 0x8e, 0x84, 0x2c, 0x85, 0x9a, 0xd0, 0xd0, 0xb2, 0xdd, 0x57, - 0x87, 0xc7, 0x07, 0xdd, 0x41, 0x77, 0xaf, 0x91, 0x46, 0x2b, 0x50, 0xd5, 0xd2, 0xe7, 0x3b, 0xfb, - 0x07, 0xdd, 0xbd, 0x46, 0x26, 0x09, 0xdc, 0x39, 0xda, 0xed, 0x1e, 0x08, 0x69, 0xf6, 0x65, 0xb6, - 0x58, 0x6a, 0x80, 0xf1, 0xef, 0xf7, 0x00, 0x26, 0x6f, 0x8b, 0x1e, 0x40, 0xcd, 0xb2, 0xed, 0x30, - 0xb0, 0xec, 0x0b, 0x93, 0xd9, 0x34, 0x20, 0xf2, 0xcd, 0xd2, 0xbd, 0x6b, 0xb8, 0x1a, 0xc9, 0xfb, - 0x42, 0xfc, 0x7d, 0x2a, 0x85, 0xda, 0xd0, 0x10, 0x09, 0x18, 0xb8, 0xc4, 0xb7, 0x89, 0x46, 0xa7, - 0x25, 0x3a, 0x85, 0xeb, 0x13, 0x4d, 0x8c, 0x7f, 0x04, 0x75, 0x6e, 0xb1, 0xb7, 0xa6, 0x4d, 0x47, - 0x63, 0x8f, 0xc8, 0x3d, 0x3f, 0x23, 0xe1, 0x69, 0x5c, 0x13, 0x8a, 0xdd, 0x58, 0x2e, 0xd0, 0x5f, - 0x43, 0x86, 0x71, 0x2e, 0x13, 0xbf, 0xbc, 0x75, 0xef, 0xa3, 0xeb, 0xd4, 0xee, 0x0f, 0x06, 0x58, - 0x8c, 0x10, 0x03, 0x3d, 0x6f, 0x24, 0xe9, 0x70, 0xa5, 0x81, 0x07, 0x07, 0x87, 0x58, 0x8c, 0x10, - 0x03, 0x39, 0x67, 0xba, 0x96, 0x5c, 0x61, 0xe0, 0x60, 0xd0, 0xc7, 0x62, 0x04, 0xc2, 0x50, 0xb1, - 0xa9, 0xff, 0x8e, 0x04, 0x4c, 0xc2, 0x5a, 0x05, 0x69, 0xa1, 0xfd, 0x71, 0x0b, 0xbb, 0x89, 0x51, - 0x78, 0xca, 0x06, 0xfa, 0x05, 0xe4, 0x64, 0xd2, 0xb4, 0x4a, 0xb2, 0x4a, 0xfd, 0xf8, 0x0a, 0xee, - 0x84, 0x81, 0x8f, 0xd5, 0x20, 0x74, 0x0b, 0xca, 0xe7, 0xa1, 0x33, 0x24, 0xea, 0x08, 0x27, 0xc9, - 0x5a, 0xc2, 0x20, 0x45, 0x62, 0xd3, 0xf4, 0xd0, 0x23, 0x40, 0x67, 0x16, 0x33, 0x03, 0x32, 0xa2, - 0x9c, 0x44, 0x67, 0x47, 0xc9, 0xb2, 0x22, 0x6e, 0x9c, 0x59, 0x0c, 0x4b, 0x45, 0x5f, 0xc9, 0xd1, - 0x03, 0x48, 0xf3, 0x27, 0x9a, 0x6c, 0x97, 0x31, 0x37, 0xcd, 0x9f, 0xa0, 0x7b, 0x6a, 0x63, 0x77, - 0x19, 0xf1, 0x09, 0x53, 0x3c, 0x4b, 0xf7, 0x32, 0x38, 0x29, 0x14, 0xcb, 0xbb, 0x0d, 0xeb, 0xa1, - 0xef, 0x13, 0x9b, 0x30, 0x26, 0xf6, 0x5d, 0x4e, 0xa9, 0x67, 0xda, 0x96, 0xe7, 0xa9, 0x1a, 0x53, - 0xec, 0x65, 0x71, 0x33, 0xa1, 0x1f, 0x50, 0xea, 0xed, 0x0a, 0xad, 0xce, 0x3b, 0xd7, 0x7f, 0x43, - 0x83, 0x91, 0x8c, 0x82, 0xe9, 0x51, 0xc6, 0x64, 0xe5, 0x29, 0xf6, 0x72, 0xb8, 0x9e, 0xd0, 0x1c, - 0x50, 0x35, 0xd5, 0xcf, 0xa1, 0x19, 0x10, 0x27, 0xf4, 0x1d, 0x4b, 0x1c, 0x93, 0xb9, 0xc5, 0xc9, - 0x88, 0xf8, 0x9c, 0xc9, 0x9a, 0x53, 0xec, 0xe5, 0xf1, 0x6a, 0xac, 0xed, 0xc7, 0x4a, 0x95, 0x81, - 0x6b, 0x63, 0x4a, 0x03, 0xf3, 0xbb, 0x50, 0x1d, 0xa2, 0xcc, 0xef, 0x42, 0xcb, 0x73, 0xf9, 0x85, - 0xac, 0x48, 0xc5, 0x5e, 0x01, 0xaf, 0x0a, 0xf5, 0xb7, 0x5a, 0xfb, 0xad, 0x52, 0x8a, 0x81, 0x7f, - 0x0c, 0xad, 0xe4, 0x5a, 0x9a, 0xe3, 0x80, 0x0e, 0x03, 0x1d, 0xe2, 0x55, 0x19, 0x8f, 0x22, 0xde, - 0x48, 0x22, 0x8e, 0x27, 0x80, 0xef, 0x53, 0x29, 0xe3, 0xef, 0xf3, 0x90, 0xe9, 0x0f, 0x06, 0x68, - 0x0d, 0x32, 0xef, 0x49, 0x10, 0x33, 0x50, 0x3c, 0x08, 0xf3, 0xd7, 0x21, 0xf7, 0x9e, 0x06, 0x8e, - 0x2a, 0x39, 0xd5, 0x5e, 0x0a, 0xab, 0x47, 0xa1, 0xfa, 0x11, 0x94, 0xc5, 0x6f, 0x53, 0xd6, 0x09, - 0x55, 0x52, 0xaa, 0xbd, 0x34, 0x06, 0x21, 0xec, 0x4a, 0x99, 0x40, 0xad, 0x41, 0xc6, 0x26, 0xaa, - 0xa6, 0x88, 0xa5, 0x11, 0x0f, 0xda, 0xae, 0x7d, 0x66, 0x05, 0x4c, 0x1e, 0x71, 0xaa, 0xbd, 0x2c, - 0x56, 0x8f, 0xda, 0xae, 0xf8, 0x1d, 0xd9, 0x05, 0x09, 0xc8, 0x61, 0x10, 0xc2, 0x89, 0xdd, 0x7b, - 0x50, 0x61, 0x5c, 0x1c, 0xea, 0x3c, 0xeb, 0xc2, 0x1c, 0x31, 0x59, 0x41, 0xaa, 0xbd, 0x3c, 0x06, - 0xc6, 0xf9, 0x9e, 0x10, 0x1e, 0x4a, 0xd8, 0x16, 0x20, 0xe2, 0x73, 0x97, 0x5f, 0x98, 0x01, 0xb1, - 0xe9, 0xd0, 0x77, 0x25, 0x69, 0xca, 0xd2, 0x9b, 0x02, 0x5e, 0x51, 0x3a, 0x3c, 0x51, 0x45, 0x7b, - 0x8d, 0x90, 0xbb, 0x84, 0x99, 0x21, 0xe7, 0x24, 0x20, 0xaa, 0x26, 0x54, 0x7b, 0x45, 0x5c, 0x8f, - 0x34, 0x27, 0x4a, 0x21, 0xf0, 0x5f, 0xc1, 0x6a, 0x8c, 0xd7, 0xb3, 0xfc, 0x9a, 0x38, 0x32, 0x85, - 0xab, 0xbd, 0x12, 0x46, 0x91, 0x12, 0xc7, 0x3a, 0x31, 0xea, 0x3e, 0x54, 0x27, 0x9e, 0x59, 0x9e, - 0xa7, 0xb3, 0x17, 0x70, 0x25, 0x76, 0xca, 0xf2, 0x3c, 0x81, 0xfc, 0x13, 0xb8, 0x1e, 0xdb, 0xb7, - 0xec, 0xef, 0x42, 0x37, 0x20, 0x4e, 0xec, 0x58, 0x5d, 0xce, 0x52, 0xc6, 0x1b, 0x11, 0x64, 0x47, - 0x23, 0x12, 0x0e, 0x76, 0xe1, 0xc6, 0xbc, 0x81, 0x84, 0xa7, 0x0d, 0x69, 0xa3, 0x82, 0x8d, 0x59, - 0x1b, 0x53, 0x1e, 0x77, 0xf2, 0x90, 0x35, 0xdf, 0x93, 0xa0, 0x53, 0x84, 0xbc, 0x29, 0xb3, 0xa0, - 0x53, 0x83, 0x8a, 0x99, 0xc8, 0x01, 0x89, 0xb0, 0x35, 0x42, 0xae, 0xa7, 0x44, 0x24, 0x56, 0xb3, - 0x53, 0x87, 0xaa, 0x99, 0x5c, 0xb7, 0xce, 0x1a, 0xac, 0x9a, 0xf3, 0x2b, 0xd4, 0x59, 0x85, 0x15, - 0x73, 0x76, 0x11, 0x3a, 0xeb, 0xd0, 0x34, 0x17, 0x44, 0xba, 0xd3, 0x80, 0x9a, 0x39, 0x15, 0xcb, - 0xce, 0x0d, 0x30, 0xcc, 0xa5, 0x31, 0xeb, 0xdc, 0x82, 0x9b, 0xe6, 0x65, 0x01, 0x31, 0xfe, 0x29, - 0x05, 0x99, 0x83, 0x83, 0x43, 0x74, 0x03, 0x0a, 0x9c, 0xbf, 0xe1, 0x22, 0xbf, 0x52, 0x32, 0x46, - 0xd7, 0x70, 0x5e, 0x08, 0x54, 0x6e, 0x29, 0x2d, 0x13, 0xda, 0x88, 0x1d, 0x42, 0xcb, 0x94, 0xf6, - 0x31, 0xac, 0x70, 0xfa, 0x96, 0xf8, 0xcc, 0x1c, 0x93, 0xc0, 0x64, 0xc4, 0xa6, 0xbe, 0x13, 0xd7, - 0xa0, 0xba, 0x52, 0x1d, 0x93, 0xa0, 0x2f, 0x15, 0x22, 0xbc, 0x00, 0x45, 0x53, 0xcf, 0x16, 0xfd, - 0x16, 0xb6, 0x3b, 0x4d, 0x40, 0xe6, 0x9c, 0x25, 0xe3, 0x6f, 0xf2, 0x90, 0x19, 0x0c, 0xfa, 0xda, - 0x89, 0xd3, 0x89, 0x13, 0xca, 0xc5, 0xd3, 0xc3, 0x88, 0x7d, 0x82, 0xd5, 0x19, 0x5d, 0x29, 0xe7, - 0x58, 0x5d, 0xd0, 0xa4, 0x5d, 0xca, 0x6a, 0x45, 0xab, 0xcc, 0x12, 0x56, 0x97, 0xa4, 0xdd, 0xec, - 0x3c, 0xab, 0x23, 0xd2, 0x2e, 0x65, 0x75, 0x39, 0xa2, 0xeb, 0x34, 0xab, 0x17, 0xd3, 0xb5, 0xf6, - 0xc9, 0x74, 0xad, 0x7f, 0x3a, 0x5d, 0x1b, 0x9f, 0x48, 0xd7, 0x95, 0xdf, 0x8b, 0xae, 0xe8, 0x07, - 0xa0, 0xeb, 0xea, 0xd5, 0xe8, 0xaa, 0x73, 0x48, 0xa4, 0xc6, 0x0f, 0x42, 0xdd, 0xff, 0x93, 0x4c, - 0xfd, 0x5d, 0x01, 0x2a, 0xc9, 0x93, 0x8d, 0xa4, 0x5d, 0x18, 0xf8, 0x26, 0xb7, 0xde, 0xba, 0xfe, - 0x70, 0xe6, 0x5c, 0x59, 0x17, 0xaa, 0x81, 0xd4, 0xc4, 0x27, 0xc5, 0x6f, 0xa0, 0x75, 0x46, 0x2c, - 0x11, 0x88, 0x2d, 0x62, 0x7a, 0x16, 0x17, 0xf7, 0x41, 0x73, 0xfc, 0xf4, 0x49, 0xc4, 0xa8, 0x5c, - 0x2f, 0x85, 0x9b, 0x12, 0xd1, 0xdd, 0x22, 0x07, 0x4a, 0x7f, 0xfc, 0xf4, 0x89, 0xe2, 0xd7, 0xe2, - 0xc1, 0xdb, 0x4f, 0xc5, 0xe0, 0x8c, 0x1c, 0x9c, 0x9e, 0x1f, 0xbc, 0xfd, 0xf4, 0xd2, 0xc1, 0xdb, - 0x62, 0x70, 0x56, 0x0e, 0xce, 0x2c, 0x18, 0xbc, 0xad, 0x06, 0x3f, 0x82, 0x06, 0x77, 0x47, 0xc4, - 0xe4, 0xd4, 0xbc, 0x70, 0x89, 0xe7, 0x88, 0x41, 0x39, 0x5d, 0x4b, 0xab, 0x42, 0x33, 0xa0, 0xbf, - 0x12, 0xf2, 0x68, 0xaa, 0x0d, 0x42, 0xb9, 0x39, 0x72, 0xd9, 0x38, 0x20, 0x8e, 0x2b, 0x6f, 0x7c, - 0xfa, 0x8a, 0x90, 0xd7, 0x54, 0x5d, 0x23, 0x94, 0x1f, 0x26, 0xf5, 0xf2, 0xaa, 0xa0, 0x53, 0x9f, - 0xbe, 0x23, 0x81, 0x67, 0x8d, 0xcd, 0x40, 0x04, 0x59, 0xee, 0x1a, 0xe9, 0x5e, 0x1e, 0x57, 0xb4, - 0x18, 0x0b, 0xa9, 0xde, 0xf3, 0x22, 0x24, 0x1b, 0x13, 0x62, 0x9f, 0x4d, 0x2a, 0x73, 0x01, 0xd7, - 0xb5, 0xaa, 0x2f, 0x35, 0xca, 0xaf, 0x87, 0x50, 0xe7, 0x94, 0x5b, 0x5e, 0x02, 0x5e, 0xd2, 0xd4, - 0xad, 0x4a, 0x45, 0x12, 0xfc, 0x35, 0xac, 0x59, 0xef, 0xdf, 0xbe, 0x17, 0x11, 0x63, 0xae, 0x27, - 0x2f, 0x02, 0xea, 0x15, 0xca, 0x9a, 0xba, 0xab, 0x5a, 0xdd, 0x57, 0xda, 0xf8, 0x05, 0xda, 0xd0, - 0x08, 0x7d, 0xcb, 0x67, 0xef, 0x45, 0x4e, 0xa9, 0xfb, 0x91, 0x2e, 0xe8, 0x80, 0xeb, 0x13, 0x8d, - 0xbc, 0x20, 0x09, 0xfc, 0x2f, 0xa1, 0xf5, 0xc6, 0xf2, 0x18, 0x31, 0x5d, 0x9f, 0x93, 0x20, 0x08, - 0xc7, 0x89, 0x70, 0x55, 0x35, 0x81, 0xd7, 0x25, 0x62, 0x3f, 0x01, 0x88, 0xa7, 0xfb, 0x03, 0xa8, - 0x25, 0x57, 0x74, 0xc4, 0xf4, 0x76, 0x54, 0xc1, 0x15, 0x12, 0x2f, 0xa4, 0x7c, 0x25, 0xb5, 0xb7, - 0xcf, 0xa6, 0x6b, 0xe7, 0x0b, 0xb8, 0x6e, 0x2e, 0xcb, 0xc9, 0x65, 0x4a, 0x99, 0x73, 0x4b, 0x95, - 0x22, 0xa7, 0x24, 0x53, 0x67, 0x73, 0xa6, 0x63, 0x40, 0xcb, 0x5c, 0x92, 0x1a, 0x92, 0xad, 0x53, - 0x2b, 0x2f, 0xfd, 0x9d, 0x5b, 0xe1, 0x0e, 0x82, 0x86, 0x39, 0xb3, 0x8c, 0x9d, 0x16, 0xac, 0x9b, - 0x0b, 0x57, 0x4b, 0xba, 0x31, 0xbb, 0x1c, 0xd2, 0xf1, 0x65, 0x31, 0xef, 0xac, 0x40, 0xdd, 0x9c, - 0x8e, 0xa8, 0xf1, 0xdb, 0x02, 0x64, 0xc5, 0x7a, 0xa1, 0x26, 0xe4, 0x5c, 0xdf, 0x21, 0x1f, 0x54, - 0x81, 0xc6, 0xea, 0x01, 0x3d, 0x84, 0x6c, 0x40, 0x3d, 0xa2, 0x3f, 0x94, 0x6c, 0x2c, 0xf8, 0x04, - 0x8a, 0xa9, 0x47, 0xb0, 0x04, 0xa1, 0x2f, 0xa1, 0x28, 0x3f, 0x1f, 0x44, 0xa4, 0x15, 0x35, 0xb4, - 0x20, 0x25, 0x2a, 0xef, 0x0c, 0xc8, 0x13, 0xdf, 0x89, 0x58, 0x29, 0x0f, 0xc1, 0xc4, 0xd7, 0xc4, - 0x9a, 0x3d, 0x86, 0xe6, 0xa2, 0x53, 0xf0, 0xf4, 0x31, 0xf4, 0x2e, 0x94, 0x3d, 0x6f, 0x14, 0x95, - 0x77, 0xcd, 0xb9, 0x0c, 0x2e, 0x79, 0xde, 0x68, 0x10, 0x9f, 0x27, 0x26, 0x20, 0x79, 0xa6, 0x28, - 0x68, 0x36, 0x6b, 0x10, 0x8b, 0x0f, 0x1d, 0x12, 0x34, 0x56, 0xc4, 0x4a, 0xf7, 0x72, 0x38, 0x2f, - 0x00, 0xe3, 0xc8, 0x04, 0xe7, 0x2c, 0xda, 0xf6, 0x35, 0x97, 0xf2, 0xb8, 0xc4, 0x39, 0x1b, 0xc4, - 0x87, 0x82, 0xf9, 0xfc, 0x04, 0x4d, 0xd1, 0xd9, 0xfc, 0x44, 0x5f, 0x41, 0x73, 0x3e, 0x9d, 0x46, - 0xaa, 0x7c, 0xe7, 0x7a, 0x45, 0xbc, 0x32, 0xb3, 0x3d, 0x2d, 0xdf, 0x9b, 0x2a, 0x9a, 0xa3, 0xf3, - 0x7b, 0xd3, 0xc2, 0x1d, 0xbb, 0xaa, 0xab, 0xeb, 0xa2, 0x1d, 0x7b, 0xe1, 0xad, 0xaf, 0x3c, 0x77, - 0xeb, 0x7b, 0x02, 0x2b, 0x73, 0x89, 0xad, 0x2f, 0x7c, 0x15, 0xdc, 0x98, 0xdd, 0xed, 0xf4, 0x47, - 0x83, 0x99, 0x94, 0xd5, 0x77, 0xbd, 0x2a, 0xae, 0x4d, 0x6f, 0x2d, 0x2a, 0xd6, 0x30, 0x49, 0x63, - 0x7d, 0xc1, 0xab, 0xe1, 0x84, 0x4c, 0x10, 0xbc, 0x0c, 0x25, 0x33, 0x4a, 0xae, 0x4e, 0x09, 0x0a, - 0xa6, 0xca, 0xa4, 0xf9, 0x73, 0xb0, 0xa8, 0xb6, 0x89, 0x14, 0x49, 0x3e, 0xb3, 0xe8, 0x44, 0xa8, - 0x17, 0x5e, 0xea, 0x12, 0xcb, 0xbc, 0x80, 0x1f, 0x9d, 0x0d, 0x58, 0x33, 0x17, 0xad, 0xdc, 0xe2, - 0x4d, 0x60, 0xf1, 0x36, 0x24, 0x0f, 0x00, 0x93, 0x98, 0x4a, 0xd4, 0x5c, 0x44, 0x25, 0xf9, 0x67, - 0xa2, 0xd6, 0xa9, 0x42, 0x39, 0x41, 0x71, 0xe9, 0xdf, 0xf4, 0x97, 0x1e, 0x75, 0x6a, 0x98, 0xf9, - 0xa0, 0xa3, 0xf6, 0x91, 0xe9, 0xaf, 0x36, 0x73, 0x4e, 0x5c, 0x87, 0x0d, 0x73, 0xf1, 0x65, 0x5e, - 0xda, 0x9c, 0xbd, 0xac, 0xcb, 0x40, 0x2c, 0xba, 0x91, 0xcb, 0x0d, 0x6a, 0xe1, 0x95, 0x5b, 0xee, - 0x45, 0xcb, 0xee, 0xd4, 0xc6, 0x7f, 0x65, 0x00, 0x26, 0xdf, 0x75, 0x3f, 0xeb, 0x37, 0xac, 0x3f, - 0x04, 0x14, 0x7f, 0xec, 0x1f, 0x5b, 0x8c, 0x89, 0x3d, 0x98, 0xc4, 0x57, 0x88, 0x46, 0xa4, 0x3b, - 0xb6, 0x18, 0xc3, 0x16, 0x27, 0xff, 0xff, 0x21, 0xeb, 0xca, 0x89, 0x26, 0x8e, 0xb2, 0xf3, 0xa1, - 0x35, 0x7e, 0x97, 0x81, 0xfc, 0xae, 0x6c, 0xdd, 0x18, 0xff, 0x9d, 0x86, 0x02, 0x26, 0x32, 0x35, - 0x66, 0xfa, 0x52, 0xa9, 0xd9, 0xbe, 0xd4, 0x74, 0xcb, 0x26, 0x3d, 0xdb, 0xb2, 0x59, 0xd0, 0xd9, - 0xc8, 0x2e, 0xec, 0x6c, 0xac, 0x43, 0x3e, 0x20, 0x43, 0x11, 0x8a, 0xbc, 0xfe, 0x00, 0x2d, 0x9f, - 0x50, 0x67, 0xae, 0xe7, 0x53, 0xb8, 0xac, 0xe7, 0x23, 0x52, 0x6f, 0xaa, 0xeb, 0x93, 0xd8, 0x32, - 0xa3, 0x0e, 0x48, 0x51, 0x9f, 0x6b, 0x93, 0x42, 0x75, 0x1c, 0x53, 0x6d, 0x90, 0xd2, 0x15, 0xda, - 0x20, 0x32, 0xd8, 0xd3, 0x8e, 0xc5, 0x64, 0xd5, 0x26, 0x5f, 0x66, 0x8b, 0x99, 0x46, 0x16, 0xcf, - 0xf7, 0xdf, 0x8c, 0xbf, 0x4d, 0x41, 0x11, 0x13, 0x36, 0xa6, 0x3e, 0x23, 0xe8, 0x01, 0xac, 0x4c, - 0xa2, 0x63, 0x06, 0xa1, 0x3f, 0x09, 0x73, 0x9d, 0x25, 0xb3, 0x60, 0xdf, 0x41, 0x7d, 0x58, 0x1f, - 0x07, 0x84, 0xb9, 0x43, 0x9f, 0x38, 0xe6, 0x98, 0x32, 0x6e, 0x06, 0x6a, 0x95, 0x74, 0xb7, 0x73, - 0xd2, 0x14, 0x3c, 0x8e, 0x60, 0xc7, 0x94, 0x71, 0xbd, 0x94, 0xb8, 0x39, 0x5e, 0x20, 0x15, 0xd7, - 0xfd, 0xd5, 0x5d, 0xea, 0xbf, 0x71, 0x83, 0x51, 0x9f, 0x86, 0x81, 0x4d, 0x4e, 0xc6, 0x1e, 0xb5, - 0x1c, 0xe3, 0xaf, 0xaf, 0x9c, 0x03, 0x0b, 0x5f, 0x21, 0xbd, 0xf8, 0x15, 0x7e, 0x02, 0x75, 0x9b, - 0x3a, 0x44, 0xdc, 0x6b, 0x82, 0x8b, 0x31, 0x75, 0x7d, 0xae, 0xdb, 0x31, 0x35, 0x21, 0xee, 0xc6, - 0x52, 0x03, 0x26, 0x31, 0x32, 0xfe, 0x2e, 0x05, 0x99, 0x17, 0x84, 0x1b, 0x83, 0xcf, 0xe1, 0x92, - 0xf1, 0x55, 0x62, 0x35, 0xee, 0x43, 0x26, 0x08, 0x55, 0xdf, 0x77, 0x2a, 0xc7, 0x92, 0x43, 0xb0, - 0x80, 0x18, 0xff, 0x96, 0x86, 0xec, 0x81, 0xcb, 0xb8, 0xf1, 0xaf, 0xa9, 0x2b, 0x7b, 0xf5, 0x6c, - 0xa6, 0x87, 0x75, 0x79, 0x13, 0xb7, 0x77, 0x2d, 0xea, 0x60, 0x89, 0xec, 0xfc, 0x05, 0xc0, 0xd8, - 0x1a, 0x12, 0xf5, 0x31, 0x44, 0xc6, 0xac, 0xbc, 0xd5, 0x8a, 0xc7, 0x0f, 0x84, 0xf4, 0xd8, 0x1a, - 0xba, 0xbe, 0x34, 0xd2, 0x4b, 0xe1, 0x92, 0x40, 0x4b, 0xb1, 0xa8, 0xc4, 0xa2, 0xf8, 0x2a, 0x5b, - 0xb2, 0x3c, 0x4d, 0x2c, 0x19, 0x1f, 0xa6, 0x72, 0x31, 0x1b, 0x84, 0x3e, 0x6b, 0xa5, 0xe4, 0x97, - 0xf0, 0x65, 0xaf, 0x2f, 0x31, 0xe8, 0x4f, 0xa1, 0xee, 0x93, 0x0f, 0x3c, 0x61, 0x4a, 0x27, 0xe1, - 0x52, 0xa7, 0x70, 0x55, 0x0c, 0x38, 0x8e, 0xdc, 0x32, 0xce, 0x21, 0xbf, 0x6b, 0xf9, 0x36, 0xf1, - 0x3e, 0xd3, 0xba, 0x26, 0x33, 0xe8, 0x33, 0xb7, 0x94, 0x7e, 0x93, 0x8a, 0x7b, 0x4a, 0xd7, 0x61, - 0x6d, 0xba, 0xa7, 0x64, 0x9e, 0x1c, 0x1f, 0xbc, 0xda, 0xd9, 0x6b, 0x5c, 0x43, 0x6b, 0xb0, 0xa2, - 0x55, 0x2f, 0xba, 0x47, 0x5d, 0xbc, 0x33, 0x50, 0xdd, 0xa5, 0xf9, 0x8e, 0x53, 0x1a, 0xad, 0x03, - 0xd2, 0xb2, 0xfe, 0xc9, 0xe1, 0xe1, 0x0e, 0xde, 0x7f, 0x2d, 0xe4, 0x99, 0x85, 0x9d, 0xa8, 0xec, - 0x7c, 0x27, 0x2a, 0xb7, 0xb0, 0x13, 0x95, 0x7f, 0x99, 0x2d, 0x16, 0x1b, 0x25, 0x5c, 0xd0, 0xfd, - 0xd6, 0xcd, 0xdf, 0x64, 0xa0, 0x18, 0x6d, 0x9f, 0x93, 0xe6, 0x65, 0x2a, 0xd9, 0xbc, 0x9c, 0xed, - 0x9d, 0xa6, 0x17, 0xf4, 0x4e, 0x17, 0x77, 0x49, 0x33, 0xcb, 0xba, 0xa4, 0x8f, 0x75, 0x3f, 0x34, - 0x2b, 0xb3, 0xec, 0x8b, 0xb9, 0x8d, 0xbc, 0x3d, 0xb0, 0x86, 0x4c, 0xfd, 0x01, 0x44, 0x35, 0x4b, - 0x0d, 0x28, 0x86, 0x8c, 0x04, 0x8e, 0xc5, 0x2d, 0xdd, 0x7b, 0x8d, 0x9f, 0x8d, 0x7f, 0x4e, 0xc1, - 0x8a, 0xaa, 0x5a, 0xcf, 0x03, 0x3a, 0xd2, 0x6d, 0x14, 0xe3, 0x57, 0x57, 0x4e, 0xa8, 0x44, 0xe7, - 0x33, 0x3d, 0xd5, 0xf9, 0x9c, 0x14, 0xa4, 0x4c, 0xb2, 0x20, 0x19, 0xdb, 0x09, 0xbe, 0xfc, 0x14, - 0x8a, 0x51, 0x0d, 0xd0, 0x5b, 0xc6, 0xca, 0xdc, 0xdb, 0xe0, 0x18, 0x62, 0x7c, 0x0d, 0xa5, 0xf8, - 0xd5, 0x16, 0xfc, 0x75, 0xa5, 0x99, 0xfc, 0xeb, 0x4a, 0x29, 0xf1, 0xf7, 0x94, 0xcd, 0x01, 0x54, - 0xa7, 0xaa, 0x1c, 0x42, 0x90, 0x95, 0xf5, 0x56, 0x8d, 0x96, 0xbf, 0xd1, 0x63, 0x28, 0x45, 0x33, - 0x89, 0x65, 0xca, 0x2c, 0xf6, 0x66, 0x82, 0xd9, 0xfc, 0x97, 0x14, 0xa0, 0x09, 0xb3, 0xf7, 0x5c, - 0x36, 0xb6, 0xb8, 0x7d, 0xf6, 0x49, 0x05, 0x69, 0x0d, 0xf2, 0xe7, 0xf4, 0x74, 0x12, 0xbc, 0xdc, - 0x39, 0x3d, 0xdd, 0x77, 0xa6, 0xe2, 0x92, 0xf9, 0x68, 0x5c, 0xe2, 0xc2, 0x9b, 0xbd, 0x42, 0xe1, - 0x7d, 0xf0, 0x06, 0x6a, 0xd3, 0x72, 0x74, 0x0b, 0xbe, 0xe8, 0xef, 0x1f, 0x9e, 0x1c, 0xec, 0x0c, - 0xf6, 0x5f, 0x1d, 0x99, 0x87, 0xaf, 0xf6, 0xba, 0xe6, 0xc9, 0x51, 0xff, 0xb8, 0xbb, 0xbb, 0xff, - 0x7c, 0xbf, 0x2b, 0x78, 0xd7, 0x82, 0xe6, 0x2c, 0x60, 0xd0, 0xfd, 0x8b, 0x41, 0x23, 0x25, 0xc9, - 0x3a, 0xa3, 0xd9, 0x39, 0xd9, 0xdb, 0x7f, 0xd5, 0x48, 0x6f, 0xfd, 0x63, 0x0e, 0xea, 0x3b, 0x22, - 0x77, 0x27, 0xb3, 0x21, 0x07, 0x56, 0x55, 0xae, 0x4d, 0xff, 0x95, 0x67, 0xd9, 0xc1, 0x4f, 0x61, - 0xdb, 0x51, 0xa1, 0xfd, 0xf1, 0xc7, 0x60, 0x3a, 0xab, 0xbe, 0x4f, 0xc1, 0xcd, 0xa8, 0x20, 0xc7, - 0xc0, 0x64, 0x69, 0x46, 0x5b, 0xcb, 0x2c, 0xcd, 0x97, 0xf1, 0x78, 0xf6, 0x9f, 0x7d, 0xd2, 0x18, - 0xed, 0xca, 0x5f, 0x42, 0xe3, 0x05, 0xe1, 0xd3, 0x6f, 0xbb, 0xb9, 0xc4, 0xd0, 0x0b, 0xc2, 0xe3, - 0xc9, 0xee, 0x5e, 0x8a, 0xd1, 0xc6, 0x4d, 0x40, 0xa2, 0x80, 0x4e, 0x21, 0x18, 0x5a, 0x36, 0x54, - 0x40, 0x63, 0xfb, 0x3f, 0xba, 0x1c, 0xa4, 0x27, 0x10, 0xcb, 0x25, 0x0b, 0xcc, 0x15, 0x97, 0x4b, - 0x62, 0x3f, 0xbe, 0x5c, 0x11, 0x4c, 0xcf, 0xf2, 0x0e, 0xae, 0xeb, 0xa4, 0xd0, 0xf9, 0x9c, 0xd8, - 0x88, 0xd0, 0xc3, 0xf9, 0xdd, 0x6d, 0x6e, 0xb7, 0x8a, 0x67, 0x7c, 0x74, 0x35, 0xb0, 0x9a, 0xb7, - 0xf3, 0xfc, 0xf5, 0xdd, 0xa1, 0xcb, 0xcf, 0xc2, 0xd3, 0xb6, 0x4d, 0x47, 0xd1, 0x5f, 0x14, 0xd5, - 0xdf, 0x10, 0x6d, 0xea, 0x45, 0x82, 0xdf, 0xa6, 0xab, 0x07, 0xee, 0x3b, 0xf2, 0x67, 0xf2, 0x4c, - 0x48, 0x39, 0xfd, 0x9f, 0x74, 0x4d, 0x3f, 0x3f, 0x7b, 0x26, 0x05, 0xa7, 0x79, 0x39, 0xe4, 0x67, - 0xff, 0x1b, 0x00, 0x00, 0xff, 0xff, 0x26, 0x6e, 0x51, 0x9a, 0x15, 0x29, 0x00, 0x00, + // 3632 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x5a, 0x4b, 0x6f, 0x1c, 0x49, + 0x72, 0x56, 0x77, 0xf5, 0x33, 0xfa, 0xc9, 0x64, 0x93, 0x6a, 0xd5, 0xbc, 0x34, 0x9a, 0xd1, 0xae, + 0x2c, 0xcd, 0xb6, 0x64, 0xce, 0x68, 0xc7, 0x9c, 0xd9, 0x59, 0x9b, 0x4d, 0xf6, 0xa8, 0x29, 0x93, + 0x14, 0x27, 0xbb, 0x09, 0x7b, 0xc7, 0x58, 0x14, 0x8a, 0x55, 0xa9, 0x66, 0x49, 0xd5, 0x95, 0x3d, + 0x95, 0x59, 0x94, 0xb8, 0x80, 0x0f, 0x06, 0xe6, 0x30, 0x80, 0x4f, 0xf6, 0x2f, 0xf0, 0x65, 0x0f, + 0xde, 0xa3, 0x0d, 0xff, 0x00, 0xff, 0x04, 0x5f, 0x0c, 0x18, 0xf0, 0x2f, 0xf0, 0xd1, 0xc0, 0x5e, + 0x0d, 0x23, 0x1f, 0x55, 0x5d, 0xfd, 0x22, 0xa9, 0xc5, 0x08, 0xf0, 0xc1, 0xb7, 0xae, 0x88, 0x2f, + 0x23, 0xa3, 0x22, 0xe3, 0xcb, 0x8c, 0xac, 0x68, 0x78, 0xdf, 0xf7, 0xce, 0xc9, 0x4b, 0x8f, 0x5b, + 0xf6, 0x88, 0x04, 0xdc, 0x62, 0xde, 0x38, 0xf2, 0x6d, 0xee, 0xd1, 0xa0, 0x33, 0x09, 0x29, 0xa7, + 0xa8, 0xa8, 0xf5, 0xe6, 0x87, 0x12, 0xf0, 0x70, 0x0e, 0x4e, 0x18, 0x4b, 0xb0, 0xe6, 0xfb, 0x23, + 0x4a, 0x47, 0x3e, 0x79, 0x28, 0x9f, 0x4e, 0xa3, 0xe7, 0x0f, 0xdd, 0x28, 0x4c, 0xd9, 0x32, 0x3f, + 0x98, 0xd7, 0x73, 0x6f, 0x4c, 0x18, 0xb7, 0xc7, 0x13, 0x0d, 0xb8, 0x15, 0x5b, 0x77, 0x7c, 0x1a, + 0xb9, 0x6a, 0x0e, 0xad, 0x6a, 0xc5, 0xaa, 0x31, 0x75, 0x89, 0xcf, 0x94, 0xf4, 0xce, 0xbf, 0x19, + 0xd0, 0x1a, 0x24, 0x2e, 0xe3, 0x28, 0x18, 0x44, 0xe3, 0xb1, 0x1d, 0x5e, 0xa0, 0x4d, 0x28, 0x4c, + 0x6c, 0xc6, 0x88, 0xdb, 0xce, 0xdc, 0xce, 0xdc, 0xcb, 0x63, 0xfd, 0x24, 0xe4, 0xcf, 0x6d, 0xcf, + 0x27, 0x6e, 0x3b, 0xab, 0xe4, 0xea, 0x09, 0xbd, 0x07, 0x30, 0xa2, 0x5e, 0x30, 0xb2, 0x5e, 0x11, + 0xdf, 0x6f, 0x1b, 0xb7, 0x33, 0xf7, 0xca, 0xb8, 0x2c, 0x25, 0x7f, 0x41, 0x7c, 0x5f, 0xa8, 0x39, + 0xb5, 0xbc, 0xf1, 0x24, 0xa4, 0xe7, 0xa4, 0x9d, 0x53, 0x6a, 0x4e, 0xf7, 0x95, 0x00, 0x7d, 0x09, + 0x05, 0x8f, 0xb1, 0x88, 0xb0, 0x76, 0xfe, 0xb6, 0x71, 0xaf, 0xb2, 0xf5, 0x51, 0x47, 0x7b, 0xdb, + 0x59, 0xe6, 0x5c, 0x67, 0x5f, 0x60, 0xb1, 0x1e, 0x82, 0xbe, 0x81, 0xaa, 0x73, 0x66, 0x73, 0xeb, + 0xcc, 0x63, 0x9c, 0x86, 0x17, 0xed, 0x82, 0x34, 0xd1, 0xb9, 0xdc, 0xc4, 0xee, 0x99, 0xcd, 0xfb, + 0x6a, 0x40, 0x2f, 0xe0, 0xe1, 0x05, 0xae, 0x38, 0x53, 0x89, 0xf9, 0x2d, 0x34, 0xe7, 0x01, 0xa8, + 0x09, 0xc6, 0x4b, 0x72, 0x21, 0xc3, 0x51, 0xc6, 0xe2, 0x27, 0x7a, 0x04, 0xf9, 0x73, 0xdb, 0x8f, + 0x88, 0x0c, 0x45, 0x65, 0xcb, 0x4c, 0x66, 0x54, 0x71, 0x17, 0x16, 0x76, 0x69, 0xc0, 0xc9, 0x6b, + 0x8e, 0x15, 0xf0, 0x8b, 0xec, 0x9f, 0x64, 0x4c, 0x0b, 0xf2, 0xd2, 0x7f, 0x74, 0x1b, 0x2a, 0x2e, + 0x61, 0x4e, 0xe8, 0x4d, 0x84, 0x6f, 0xda, 0x70, 0x5a, 0x84, 0xde, 0x07, 0x60, 0xd1, 0x68, 0x44, + 0x98, 0x04, 0x64, 0x25, 0x20, 0x25, 0x41, 0x2d, 0xc8, 0xfb, 0xf6, 0x29, 0x89, 0xe3, 0xad, 0x1e, + 0xee, 0xfc, 0xcf, 0x1e, 0xd4, 0x66, 0xde, 0x19, 0xd5, 0x21, 0xeb, 0xb9, 0x7a, 0x82, 0xac, 0x27, + 0x17, 0x6b, 0x12, 0xd2, 0x17, 0xc4, 0xe1, 0x96, 0xe7, 0x6a, 0xbb, 0x65, 0x2d, 0xd9, 0x77, 0xd1, + 0x63, 0x28, 0x30, 0x6e, 0xf3, 0x88, 0x49, 0xbb, 0xf5, 0xad, 0xf7, 0x96, 0x87, 0xb2, 0x33, 0x90, + 0x20, 0xac, 0xc1, 0xe8, 0x01, 0xac, 0xa9, 0xa4, 0x4e, 0xbf, 0x95, 0x5a, 0xea, 0xa6, 0x54, 0xec, + 0xa5, 0x5e, 0xad, 0x05, 0x79, 0x12, 0x86, 0x34, 0x6c, 0xe7, 0x95, 0xeb, 0xf2, 0x01, 0x6d, 0x03, + 0x38, 0x21, 0xb1, 0x39, 0x71, 0x2d, 0x9b, 0xb7, 0x0b, 0x3a, 0xac, 0x2a, 0xeb, 0x3b, 0x71, 0xd6, + 0x77, 0x86, 0x71, 0xd6, 0xe3, 0xb2, 0x46, 0xef, 0x70, 0xd4, 0x81, 0xdc, 0x0b, 0x7a, 0xca, 0xda, + 0x45, 0xb9, 0xfa, 0xe6, 0x0a, 0x97, 0x9f, 0xd2, 0x53, 0x2c, 0x71, 0x22, 0x06, 0xca, 0xdb, 0xc0, + 0x1e, 0x93, 0x76, 0x59, 0xc5, 0x40, 0x4a, 0x8e, 0xec, 0x31, 0x41, 0x5f, 0x41, 0x9d, 0x39, 0x24, + 0xb0, 0x43, 0x8f, 0x5a, 0xa3, 0x90, 0x46, 0x93, 0x36, 0x48, 0x6f, 0x36, 0xa7, 0x86, 0xb5, 0xfa, + 0x89, 0xd0, 0xe2, 0x1a, 0x4b, 0x3f, 0xa2, 0xc7, 0x50, 0x22, 0x81, 0xab, 0x5e, 0xa3, 0x72, 0xe5, + 0x6b, 0x14, 0x25, 0x76, 0x87, 0xa3, 0x77, 0xa0, 0xfc, 0x82, 0x9e, 0x5a, 0x0e, 0x8d, 0x02, 0xde, + 0xae, 0x4a, 0x82, 0x95, 0x5e, 0xd0, 0xd3, 0x5d, 0xf1, 0x8c, 0x3e, 0x84, 0xaa, 0x22, 0xa1, 0xd6, + 0xd7, 0xa4, 0xbe, 0xa2, 0x64, 0x09, 0x44, 0xf1, 0x51, 0x43, 0xea, 0x0a, 0xa2, 0x64, 0x0a, 0xf2, + 0x53, 0x68, 0x04, 0xd1, 0x38, 0xb5, 0x4f, 0xb1, 0x76, 0x43, 0xa2, 0xea, 0x41, 0x34, 0x9e, 0x06, + 0x8b, 0xa1, 0x2d, 0xc8, 0x47, 0xcc, 0x1e, 0x91, 0x76, 0x53, 0xfa, 0xff, 0xee, 0x8a, 0x88, 0x9e, + 0x08, 0x0c, 0x56, 0x50, 0x91, 0xd2, 0x0e, 0x0d, 0x9c, 0x28, 0x0c, 0x49, 0xe0, 0x5c, 0xb4, 0xd7, + 0xd4, 0xf4, 0x29, 0x11, 0x7a, 0x00, 0x39, 0xb1, 0x01, 0xb5, 0x91, 0xcc, 0xac, 0x9b, 0x4b, 0x8c, + 0x1e, 0x52, 0x97, 0x60, 0x09, 0x42, 0x5f, 0x42, 0x71, 0x4c, 0x78, 0xe8, 0x39, 0xac, 0xbd, 0x2e, + 0x9d, 0xf8, 0x70, 0x85, 0x13, 0x38, 0x0a, 0x0e, 0x15, 0x10, 0xc7, 0x23, 0x44, 0x2c, 0x98, 0x22, + 0xbb, 0xf5, 0x1b, 0xc6, 0xdd, 0x76, 0xeb, 0x76, 0xe6, 0x5e, 0x15, 0x57, 0xb4, 0xec, 0x5b, 0xc6, + 0x5d, 0xf3, 0xdf, 0xf3, 0x60, 0x3c, 0xa5, 0xa7, 0x0b, 0xfc, 0xd8, 0x4e, 0x08, 0x90, 0x95, 0x6e, + 0x7e, 0xb8, 0x3a, 0x9b, 0xe6, 0x49, 0x70, 0x07, 0xaa, 0x5e, 0xc0, 0x78, 0x18, 0x39, 0x2a, 0xb6, + 0x8a, 0x99, 0x33, 0xb2, 0x69, 0xee, 0xe7, 0xd2, 0xb9, 0xff, 0x33, 0x40, 0x2a, 0x21, 0xc9, 0xeb, + 0x09, 0x71, 0xb8, 0x5e, 0x1b, 0x45, 0x0f, 0x45, 0xac, 0x5e, 0x4a, 0x31, 0xe5, 0x7e, 0x21, 0xc5, + 0x7d, 0x84, 0x20, 0xc7, 0xed, 0x91, 0x62, 0x41, 0x19, 0xcb, 0xdf, 0x22, 0xa9, 0x42, 0x4a, 0xc7, + 0x2a, 0xd1, 0x4b, 0x12, 0x5d, 0x12, 0x02, 0x99, 0xe7, 0xdb, 0x00, 0x8c, 0xdb, 0xa1, 0x66, 0x1c, + 0x5c, 0xcd, 0x38, 0x8d, 0xde, 0xe1, 0x7f, 0x68, 0x8e, 0xdf, 0x84, 0xa2, 0x74, 0xc7, 0x73, 0x65, + 0x86, 0x97, 0x71, 0x41, 0x3c, 0xee, 0xbb, 0xe8, 0xe7, 0x71, 0xc2, 0xd5, 0xa4, 0xb1, 0xdb, 0x97, + 0x04, 0x7d, 0x26, 0xe9, 0x52, 0x59, 0x52, 0xbf, 0x34, 0x4b, 0x9e, 0xd2, 0xd3, 0xf9, 0x2c, 0x31, + 0x7f, 0x0d, 0x79, 0x69, 0x0c, 0xdd, 0x83, 0xa6, 0xd8, 0xa9, 0x2d, 0x1e, 0x85, 0x01, 0xd3, 0xf4, + 0x51, 0x47, 0x5f, 0x5d, 0xc8, 0x87, 0x42, 0xac, 0x18, 0x74, 0x1f, 0xd6, 0xec, 0xc8, 0xf5, 0xe8, + 0x0c, 0x54, 0x9d, 0x86, 0x0d, 0xa9, 0x98, 0x62, 0xef, 0x50, 0x28, 0xa8, 0x04, 0x41, 0x08, 0xea, + 0x83, 0xe1, 0xce, 0xf0, 0x64, 0x60, 0x1d, 0xf7, 0x8e, 0xf6, 0xf6, 0x8f, 0x9e, 0x34, 0x6f, 0xa4, + 0x64, 0xf8, 0xe4, 0xe8, 0x48, 0xc8, 0x32, 0xa8, 0x05, 0x4d, 0x2d, 0xdb, 0x7d, 0x76, 0x78, 0x7c, + 0xd0, 0x1b, 0xf6, 0xf6, 0x9a, 0x59, 0xb4, 0x06, 0x35, 0x2d, 0xfd, 0x7a, 0x67, 0xff, 0xa0, 0xb7, + 0xd7, 0x34, 0xd2, 0xc0, 0x9d, 0xa3, 0xdd, 0xde, 0x81, 0x90, 0xe6, 0x9e, 0xe6, 0x4a, 0xe5, 0x26, + 0x98, 0xff, 0x7a, 0x17, 0x60, 0xfa, 0xb6, 0xe8, 0x3e, 0xd4, 0x6d, 0xc7, 0x89, 0x42, 0xdb, 0xb9, + 0xb0, 0x98, 0x43, 0x43, 0x22, 0xdf, 0x2c, 0xdb, 0xbf, 0x81, 0x6b, 0xb1, 0x7c, 0x20, 0xc4, 0x3f, + 0x64, 0x32, 0xa8, 0x03, 0x4d, 0x91, 0x80, 0xa1, 0x47, 0x02, 0x87, 0x68, 0x74, 0x56, 0xa2, 0x33, + 0xb8, 0x31, 0xd5, 0x24, 0xf8, 0x4f, 0xa0, 0xc1, 0x6d, 0xf6, 0xd2, 0x72, 0xe8, 0x78, 0xe2, 0x13, + 0xb9, 0xe7, 0x1b, 0x12, 0x9e, 0xc5, 0x75, 0xa1, 0xd8, 0x4d, 0xe4, 0x02, 0xfd, 0x39, 0x18, 0x8c, + 0x73, 0x99, 0xf8, 0x95, 0xad, 0xbb, 0x57, 0xae, 0x53, 0x67, 0x30, 0x1c, 0x62, 0x31, 0x42, 0x0c, + 0xf4, 0xfd, 0xb1, 0xa4, 0xc3, 0xb5, 0x06, 0x1e, 0x1c, 0x1c, 0x62, 0x31, 0x42, 0x0c, 0xe4, 0x9c, + 0xe9, 0xb3, 0xe4, 0x1a, 0x03, 0x87, 0xc3, 0x01, 0x16, 0x23, 0x10, 0x86, 0xaa, 0x43, 0x83, 0x73, + 0x12, 0x32, 0x09, 0x6b, 0x17, 0xa5, 0x85, 0xce, 0xd5, 0x16, 0x76, 0x53, 0xa3, 0xf0, 0x8c, 0x0d, + 0xf4, 0x0b, 0xc8, 0xcb, 0xa4, 0x69, 0x97, 0xe5, 0x29, 0xf5, 0x93, 0x6b, 0xb8, 0x13, 0x85, 0x01, + 0x56, 0x83, 0xd0, 0x07, 0x50, 0x79, 0x11, 0xb9, 0x23, 0xa2, 0x4a, 0x38, 0x49, 0xd6, 0x32, 0x06, + 0x29, 0x12, 0x9b, 0xa6, 0x8f, 0x3e, 0x01, 0x74, 0x66, 0x33, 0x2b, 0x24, 0x63, 0xca, 0x49, 0x5c, + 0x5b, 0x4a, 0x96, 0x95, 0x70, 0xf3, 0xcc, 0x66, 0x58, 0x2a, 0x06, 0x4a, 0x8e, 0xee, 0x43, 0x96, + 0x3f, 0xd2, 0x64, 0xbb, 0x8c, 0xb9, 0x59, 0xfe, 0x08, 0xdd, 0x55, 0x1b, 0xbb, 0xc7, 0x48, 0x40, + 0x98, 0xe2, 0x59, 0xb6, 0x6f, 0xe0, 0xb4, 0x50, 0x2c, 0xef, 0x36, 0x6c, 0x46, 0x41, 0x40, 0x1c, + 0xc2, 0x98, 0xd8, 0x77, 0x39, 0xa5, 0xbe, 0xe5, 0xd8, 0xbe, 0xaf, 0xce, 0x98, 0x52, 0x3f, 0x87, + 0x5b, 0x29, 0xfd, 0x90, 0x52, 0x7f, 0x57, 0x68, 0x75, 0xde, 0x79, 0xc1, 0x73, 0x1a, 0x8e, 0x65, + 0x14, 0x2c, 0x9f, 0x32, 0x26, 0x4f, 0x9e, 0x52, 0x3f, 0x8f, 0x1b, 0x29, 0xcd, 0x01, 0x55, 0x53, + 0xfd, 0x1c, 0x5a, 0x21, 0x71, 0xa3, 0xc0, 0xb5, 0x45, 0x19, 0xcd, 0x6d, 0x4e, 0xc6, 0x24, 0xe0, + 0x4c, 0x9e, 0x39, 0xa5, 0x7e, 0x01, 0xaf, 0x27, 0xda, 0x41, 0xa2, 0x54, 0x19, 0xb8, 0x31, 0xa1, + 0x34, 0xb4, 0xbe, 0x8b, 0x54, 0x11, 0x65, 0x7d, 0x17, 0xd9, 0xbe, 0xc7, 0x2f, 0xe4, 0x89, 0x54, + 0xea, 0x17, 0xf1, 0xba, 0x50, 0x7f, 0xa3, 0xb5, 0xdf, 0x28, 0xa5, 0x18, 0xf8, 0x4b, 0x68, 0xa7, + 0xd7, 0xd2, 0x9a, 0x84, 0x74, 0x14, 0xea, 0x10, 0xaf, 0xcb, 0x78, 0x94, 0xf0, 0xcd, 0x34, 0xe2, + 0x78, 0x0a, 0xf8, 0x21, 0x93, 0x31, 0xff, 0xbe, 0x00, 0xc6, 0x60, 0x38, 0x44, 0x1b, 0x60, 0xbc, + 0x22, 0x61, 0xc2, 0x40, 0xf1, 0x20, 0xcc, 0xdf, 0x82, 0xfc, 0x2b, 0x1a, 0xba, 0xea, 0xc8, 0xa9, + 0xf5, 0x33, 0x58, 0x3d, 0x0a, 0xd5, 0xc7, 0x50, 0x11, 0xbf, 0x2d, 0x79, 0x4e, 0xa8, 0x23, 0xa5, + 0xd6, 0xcf, 0x62, 0x10, 0xc2, 0x9e, 0x94, 0x09, 0xd4, 0x06, 0x18, 0x0e, 0x51, 0x67, 0x8a, 0x58, + 0x1a, 0xf1, 0xa0, 0xed, 0x3a, 0x67, 0x76, 0xc8, 0x64, 0x89, 0x53, 0xeb, 0xe7, 0xb0, 0x7a, 0xd4, + 0x76, 0xc5, 0xef, 0xd8, 0x2e, 0x48, 0x40, 0x1e, 0x83, 0x10, 0x4e, 0xed, 0xde, 0x85, 0x2a, 0xe3, + 0xa2, 0xa8, 0xf3, 0xed, 0x0b, 0x6b, 0xcc, 0xe4, 0x09, 0x52, 0xeb, 0x17, 0x30, 0x30, 0xce, 0xf7, + 0x84, 0xf0, 0x50, 0xc2, 0xb6, 0x00, 0x91, 0x80, 0x7b, 0xfc, 0xc2, 0x0a, 0x89, 0x43, 0x47, 0x81, + 0x27, 0x49, 0x53, 0x91, 0xde, 0x14, 0xf1, 0x9a, 0xd2, 0xe1, 0xa9, 0x2a, 0xde, 0x6b, 0x84, 0xdc, + 0x23, 0xcc, 0x8a, 0x38, 0x27, 0x21, 0x51, 0x67, 0x42, 0xad, 0x5f, 0xc2, 0x8d, 0x58, 0x73, 0xa2, + 0x14, 0x02, 0xff, 0x19, 0xac, 0x27, 0x78, 0x3d, 0xcb, 0x6f, 0x88, 0x2b, 0x53, 0xb8, 0xd6, 0x2f, + 0x63, 0x14, 0x2b, 0x71, 0xa2, 0x13, 0xa3, 0xee, 0x41, 0x6d, 0xea, 0x99, 0xed, 0xfb, 0x3a, 0x7b, + 0x01, 0x57, 0x13, 0xa7, 0x6c, 0xdf, 0x17, 0xc8, 0x3f, 0x85, 0x5b, 0x89, 0x7d, 0xdb, 0xf9, 0x2e, + 0xf2, 0x42, 0xe2, 0x26, 0x8e, 0x35, 0xe4, 0x2c, 0x15, 0x7c, 0x33, 0x86, 0xec, 0x68, 0x44, 0xca, + 0xc1, 0x1e, 0xbc, 0xbb, 0x68, 0x20, 0xe5, 0x69, 0x53, 0xda, 0xa8, 0x62, 0x73, 0xde, 0xc6, 0x8c, + 0xc7, 0xdd, 0x02, 0xe4, 0xac, 0x57, 0x24, 0xec, 0x96, 0xa0, 0x60, 0xc9, 0x2c, 0xe8, 0xd6, 0xa1, + 0x6a, 0xa5, 0x72, 0x40, 0x22, 0x1c, 0x8d, 0x90, 0xeb, 0x29, 0x11, 0xa9, 0xd5, 0xec, 0x36, 0xa0, + 0x66, 0xa5, 0xd7, 0xad, 0xbb, 0x01, 0xeb, 0xd6, 0xe2, 0x0a, 0x75, 0xd7, 0x61, 0xcd, 0x9a, 0x5f, + 0x84, 0xee, 0x26, 0xb4, 0xac, 0x25, 0x91, 0xee, 0x36, 0xa1, 0x6e, 0xcd, 0xc4, 0xb2, 0xfb, 0x2e, + 0x98, 0xd6, 0xca, 0x98, 0x75, 0x3f, 0x80, 0xf7, 0xac, 0xcb, 0x02, 0x62, 0xfe, 0x43, 0x06, 0x8c, + 0x83, 0x83, 0x43, 0xf4, 0x2e, 0x14, 0x39, 0x7f, 0xce, 0x45, 0x7e, 0x65, 0x64, 0x8c, 0x6e, 0xe0, + 0x82, 0x10, 0xa8, 0xdc, 0x52, 0x5a, 0x26, 0xb4, 0x31, 0x3b, 0x84, 0x96, 0x29, 0xed, 0x43, 0x58, + 0xe3, 0xf4, 0x25, 0x09, 0x98, 0x35, 0x21, 0xa1, 0xc5, 0x88, 0x43, 0x03, 0x37, 0x39, 0x83, 0x1a, + 0x4a, 0x75, 0x4c, 0xc2, 0x81, 0x54, 0x88, 0xf0, 0x02, 0x94, 0x2c, 0x3d, 0x5b, 0xfc, 0x5b, 0xd8, + 0xee, 0xb6, 0x00, 0x59, 0x0b, 0x96, 0xcc, 0xef, 0x0b, 0x60, 0x0c, 0x87, 0x03, 0xed, 0xc4, 0xe9, + 0xd4, 0x09, 0xe5, 0xe2, 0xe9, 0x61, 0xcc, 0x3e, 0xc1, 0x6a, 0x43, 0x9f, 0x94, 0x0b, 0xac, 0x2e, + 0x6a, 0xd2, 0xae, 0x64, 0xb5, 0xa2, 0x95, 0xb1, 0x82, 0xd5, 0x65, 0x69, 0x37, 0xb7, 0xc8, 0xea, + 0x98, 0xb4, 0x2b, 0x59, 0x5d, 0x89, 0xe9, 0x3a, 0xcb, 0xea, 0xe5, 0x74, 0xad, 0xbf, 0x31, 0x5d, + 0x1b, 0x6f, 0x4e, 0xd7, 0xe6, 0x1b, 0xd2, 0x75, 0xed, 0x0f, 0xa2, 0x2b, 0xfa, 0x11, 0xe8, 0xba, + 0x7e, 0x3d, 0xba, 0xea, 0x1c, 0x12, 0xa9, 0xf1, 0xa3, 0x50, 0xf7, 0xff, 0x24, 0x53, 0x7f, 0x5f, + 0x84, 0x6a, 0xba, 0xb2, 0x91, 0xb4, 0x8b, 0xc2, 0xc0, 0xe2, 0xf6, 0x4b, 0x2f, 0x18, 0xcd, 0xd5, + 0x95, 0x0d, 0xa1, 0x1a, 0x4a, 0x4d, 0x52, 0x29, 0x7e, 0x09, 0xed, 0x33, 0x62, 0x8b, 0x40, 0x6c, + 0x11, 0xcb, 0xb7, 0xb9, 0xb8, 0x0f, 0x5a, 0x93, 0xc7, 0x8f, 0x62, 0x46, 0xe5, 0xfb, 0x19, 0xdc, + 0x92, 0x88, 0xde, 0x16, 0x39, 0x50, 0xfa, 0xe3, 0xc7, 0x8f, 0x14, 0xbf, 0x96, 0x0f, 0xde, 0x7e, + 0x2c, 0x06, 0x1b, 0x72, 0x70, 0x76, 0x71, 0xf0, 0xf6, 0xe3, 0x4b, 0x07, 0x6f, 0x8b, 0xc1, 0x39, + 0x39, 0xd8, 0x58, 0x32, 0x78, 0x5b, 0x0d, 0xfe, 0x04, 0x9a, 0xdc, 0x1b, 0x13, 0x8b, 0x53, 0xeb, + 0xc2, 0x23, 0xbe, 0x2b, 0x06, 0xe5, 0xf5, 0x59, 0x5a, 0x13, 0x9a, 0x21, 0xfd, 0x95, 0x90, 0xc7, + 0x53, 0xdd, 0x24, 0x94, 0x5b, 0x63, 0x8f, 0x4d, 0x42, 0xe2, 0x7a, 0xf2, 0xc6, 0xa7, 0xaf, 0x08, + 0x05, 0x4d, 0xd5, 0x0d, 0x42, 0xf9, 0x61, 0x5a, 0x2f, 0xaf, 0x0a, 0x3a, 0xf5, 0xe9, 0x39, 0x09, + 0x7d, 0x7b, 0x62, 0xc9, 0xef, 0x7e, 0x72, 0xd7, 0xc8, 0xf6, 0x0b, 0xb8, 0xaa, 0xc5, 0x58, 0x48, + 0xf5, 0x9e, 0x17, 0x23, 0xd9, 0x84, 0x10, 0xe7, 0x6c, 0x7a, 0x32, 0x17, 0x71, 0x43, 0xab, 0x06, + 0x52, 0xa3, 0xfc, 0x7a, 0x00, 0x0d, 0x4e, 0xb9, 0xed, 0xa7, 0xe0, 0x65, 0x4d, 0xdd, 0x9a, 0x54, + 0xa4, 0xc1, 0x9f, 0xc3, 0x86, 0xfd, 0xea, 0xe5, 0x2b, 0x11, 0x31, 0xe6, 0xf9, 0xf2, 0x22, 0xa0, + 0x5e, 0xa1, 0xa2, 0xa9, 0xbb, 0xae, 0xd5, 0x03, 0xa5, 0x4d, 0x5e, 0xa0, 0x03, 0xcd, 0x28, 0xb0, + 0x03, 0xf6, 0x4a, 0xe4, 0x94, 0xba, 0x1f, 0xe9, 0x03, 0x1d, 0x70, 0x63, 0xaa, 0x91, 0x17, 0x24, + 0x81, 0xff, 0x0a, 0xda, 0xcf, 0x6d, 0x9f, 0x11, 0xcb, 0x0b, 0x38, 0x09, 0xc3, 0x68, 0x92, 0x0a, + 0x57, 0x4d, 0x13, 0x78, 0x53, 0x22, 0xf6, 0x53, 0x80, 0x64, 0xba, 0x3f, 0x82, 0x7a, 0x7a, 0x45, + 0xc7, 0x4c, 0x6f, 0x47, 0x55, 0x5c, 0x25, 0xc9, 0x42, 0xca, 0x57, 0x52, 0x7b, 0xfb, 0x7c, 0xba, + 0x76, 0xdf, 0x81, 0x5b, 0xd6, 0xaa, 0x9c, 0x5c, 0xa5, 0x94, 0x39, 0xb7, 0x52, 0x29, 0x72, 0x4a, + 0x32, 0x75, 0x3e, 0x67, 0xba, 0x26, 0xb4, 0xad, 0x15, 0xa9, 0x21, 0xd9, 0x3a, 0xb3, 0xf2, 0xd2, + 0xdf, 0x85, 0x15, 0xee, 0x22, 0x68, 0x5a, 0x73, 0xcb, 0xd8, 0x6d, 0xc3, 0xa6, 0xb5, 0x74, 0xb5, + 0xa4, 0x1b, 0xf3, 0xcb, 0x21, 0x1d, 0x5f, 0x15, 0xf3, 0xee, 0x1a, 0x34, 0xac, 0xd9, 0x88, 0x9a, + 0xbf, 0x2b, 0x42, 0x4e, 0xac, 0x17, 0x6a, 0x41, 0xde, 0x0b, 0x5c, 0xf2, 0x5a, 0x1d, 0xd0, 0x58, + 0x3d, 0xa0, 0x07, 0x90, 0x0b, 0xa9, 0x4f, 0xf4, 0x87, 0x92, 0x9b, 0x4b, 0x3e, 0x81, 0x62, 0xea, + 0x13, 0x2c, 0x41, 0xe8, 0x7d, 0x28, 0xc9, 0xcf, 0x07, 0x31, 0x69, 0xc5, 0x19, 0x5a, 0x94, 0x12, + 0x95, 0x77, 0x26, 0x14, 0x48, 0xe0, 0xc6, 0xac, 0x94, 0x45, 0x30, 0x09, 0x34, 0xb1, 0xe6, 0xcb, + 0xd0, 0x7c, 0x5c, 0x05, 0xcf, 0x96, 0xa1, 0x1f, 0x41, 0xc5, 0xf7, 0xc7, 0xf1, 0xf1, 0xae, 0x39, + 0x67, 0xe0, 0xb2, 0xef, 0x8f, 0x87, 0x49, 0x3d, 0x31, 0x05, 0xc9, 0x9a, 0xa2, 0xa8, 0xd9, 0xac, + 0x41, 0x2c, 0x29, 0x3a, 0x24, 0x68, 0xa2, 0x88, 0x95, 0xed, 0xe7, 0x71, 0x41, 0x00, 0x26, 0xb1, + 0x09, 0xce, 0x59, 0xbc, 0xed, 0x6b, 0x2e, 0x15, 0x70, 0x99, 0x73, 0x36, 0x4c, 0x8a, 0x82, 0xc5, + 0xfc, 0x04, 0x4d, 0xd1, 0xf9, 0xfc, 0x44, 0x9f, 0x41, 0x6b, 0x31, 0x9d, 0xc6, 0xea, 0xf8, 0xce, + 0xf7, 0x4b, 0x78, 0x6d, 0x6e, 0x7b, 0x5a, 0xbd, 0x37, 0x55, 0x35, 0x47, 0x17, 0xf7, 0xa6, 0xa5, + 0x3b, 0x76, 0x4d, 0x9f, 0xae, 0xcb, 0x76, 0xec, 0xa5, 0xb7, 0xbe, 0xca, 0xc2, 0xad, 0xef, 0x11, + 0xac, 0x2d, 0x24, 0xb6, 0xbe, 0xf0, 0x55, 0x71, 0x73, 0x7e, 0xb7, 0xd3, 0x1f, 0x0d, 0xe6, 0x52, + 0x56, 0xdf, 0xf5, 0x6a, 0xb8, 0x3e, 0xbb, 0xb5, 0xa8, 0x58, 0xc3, 0x34, 0x8d, 0xf5, 0x05, 0xaf, + 0x8e, 0x53, 0x32, 0x41, 0xf0, 0x0a, 0x94, 0xad, 0x38, 0xb9, 0xba, 0x65, 0x28, 0x5a, 0x2a, 0x93, + 0x16, 0xeb, 0x60, 0x71, 0xda, 0xa6, 0x52, 0x24, 0xfd, 0xcc, 0xe2, 0x8a, 0x50, 0x2f, 0xbc, 0xd4, + 0xa5, 0x96, 0x79, 0x09, 0x3f, 0xba, 0x37, 0x61, 0xc3, 0x5a, 0xb6, 0x72, 0xcb, 0x37, 0x81, 0xe5, + 0xdb, 0x90, 0x2c, 0x00, 0xa6, 0x31, 0x95, 0xa8, 0x85, 0x88, 0x4a, 0xf2, 0xcf, 0x45, 0xad, 0x5b, + 0x83, 0x4a, 0x8a, 0xe2, 0xd2, 0xbf, 0xd9, 0x2f, 0x3d, 0xaa, 0x6a, 0x98, 0xfb, 0xa0, 0xa3, 0xf6, + 0x91, 0xd9, 0xaf, 0x36, 0x0b, 0x4e, 0xdc, 0x82, 0x9b, 0xd6, 0xf2, 0xcb, 0xbc, 0xb4, 0x39, 0x7f, + 0x59, 0x97, 0x81, 0x58, 0x76, 0x23, 0x97, 0x1b, 0xd4, 0xd2, 0x2b, 0xb7, 0xdc, 0x8b, 0x56, 0xdd, + 0xa9, 0xcd, 0xff, 0x30, 0x00, 0xa6, 0xdf, 0x75, 0xdf, 0xea, 0x37, 0xac, 0x3f, 0x06, 0x94, 0x7c, + 0xec, 0x9f, 0xd8, 0x8c, 0x89, 0x3d, 0x98, 0x24, 0x57, 0x88, 0x66, 0xac, 0x3b, 0xb6, 0x19, 0xc3, + 0x36, 0x27, 0xff, 0xff, 0x21, 0xeb, 0xda, 0x89, 0x26, 0x4a, 0xd9, 0xc5, 0xd0, 0x9a, 0xbf, 0x37, + 0xa0, 0xb0, 0x2b, 0x5b, 0x37, 0xe6, 0x7f, 0x66, 0xa1, 0x88, 0x89, 0x4c, 0x8d, 0xb9, 0xbe, 0x54, + 0x66, 0xbe, 0x2f, 0x35, 0xdb, 0xb2, 0xc9, 0xce, 0xb7, 0x6c, 0x96, 0x74, 0x36, 0x72, 0x4b, 0x3b, + 0x1b, 0x9b, 0x50, 0x08, 0xc9, 0x48, 0x84, 0xa2, 0xa0, 0x3f, 0x40, 0xcb, 0x27, 0xd4, 0x5d, 0xe8, + 0xf9, 0x14, 0x2f, 0xeb, 0xf9, 0x88, 0xd4, 0x9b, 0xe9, 0xfa, 0xa4, 0xb6, 0xcc, 0xb8, 0x03, 0x52, + 0xd2, 0x75, 0x6d, 0x5a, 0xa8, 0xca, 0x31, 0xd5, 0x06, 0x29, 0x5f, 0xa3, 0x0d, 0x22, 0x83, 0x3d, + 0xeb, 0x58, 0x42, 0x56, 0x6d, 0xf2, 0x69, 0xae, 0x64, 0x34, 0x73, 0x78, 0xb1, 0xff, 0x66, 0xfe, + 0x6d, 0x06, 0x4a, 0x98, 0xb0, 0x09, 0x0d, 0x18, 0x41, 0xf7, 0x61, 0x6d, 0x1a, 0x1d, 0x2b, 0x8c, + 0x82, 0x69, 0x98, 0x1b, 0x2c, 0x9d, 0x05, 0xfb, 0x2e, 0x1a, 0xc0, 0xe6, 0x24, 0x24, 0xcc, 0x1b, + 0x05, 0xc4, 0xb5, 0x26, 0x94, 0x71, 0x2b, 0x54, 0xab, 0xa4, 0xbb, 0x9d, 0xd3, 0xa6, 0xe0, 0x71, + 0x0c, 0x3b, 0xa6, 0x8c, 0xeb, 0xa5, 0xc4, 0xad, 0xc9, 0x12, 0xa9, 0xb8, 0xee, 0xaf, 0xef, 0xd2, + 0xe0, 0xb9, 0x17, 0x8e, 0x07, 0x34, 0x0a, 0x1d, 0x72, 0x32, 0xf1, 0xa9, 0xed, 0x9a, 0x7f, 0x7d, + 0xed, 0x1c, 0x58, 0xfa, 0x0a, 0xd9, 0xe5, 0xaf, 0xf0, 0x53, 0x68, 0x38, 0xd4, 0x25, 0xe2, 0x5e, + 0x13, 0x5e, 0x4c, 0xa8, 0x17, 0x70, 0xdd, 0x8e, 0xa9, 0x0b, 0x71, 0x2f, 0x91, 0x9a, 0x30, 0x8d, + 0x91, 0xf9, 0x77, 0x19, 0x30, 0x9e, 0x10, 0x6e, 0x0e, 0xdf, 0x86, 0x4b, 0xe6, 0x67, 0xa9, 0xd5, + 0xb8, 0x07, 0x46, 0x18, 0xa9, 0xbe, 0xef, 0x4c, 0x8e, 0xa5, 0x87, 0x60, 0x01, 0x31, 0xff, 0xc5, + 0x80, 0xdc, 0x81, 0xc7, 0xb8, 0xf9, 0x4f, 0xd7, 0x27, 0xcb, 0x17, 0x73, 0x3d, 0xac, 0xcb, 0x9b, + 0xb8, 0xfd, 0x1b, 0x71, 0x07, 0x4b, 0x64, 0xe7, 0x2f, 0x00, 0x26, 0xf6, 0x88, 0xa8, 0x8f, 0x21, + 0x32, 0x66, 0x95, 0xad, 0x76, 0x32, 0x7e, 0x28, 0xa4, 0xc7, 0xf6, 0xc8, 0x0b, 0xa4, 0x91, 0x7e, + 0x06, 0x97, 0x05, 0x5a, 0x8a, 0xc5, 0xe8, 0x4f, 0x21, 0xf7, 0x3c, 0xa4, 0x63, 0xbd, 0x37, 0x5e, + 0xf2, 0x65, 0xb9, 0x9f, 0xc5, 0x12, 0xa9, 0x6a, 0x93, 0x2c, 0xa7, 0x7a, 0x57, 0xbc, 0x6c, 0x88, + 0x81, 0xb3, 0x5c, 0xdc, 0x80, 0xe4, 0x11, 0xaf, 0x3c, 0x96, 0x87, 0xe0, 0xd4, 0xdf, 0x6e, 0x11, + 0xf2, 0x96, 0x30, 0xdb, 0xcd, 0x83, 0x61, 0x71, 0x6a, 0xbe, 0x9e, 0x61, 0x40, 0x2e, 0x8c, 0x02, + 0xd6, 0xce, 0xc8, 0xef, 0xef, 0xab, 0x82, 0x2e, 0x31, 0xe8, 0xcf, 0xa0, 0x11, 0x90, 0xd7, 0x3c, + 0x65, 0x5a, 0xa7, 0xfe, 0xca, 0x50, 0xe0, 0x9a, 0x18, 0x70, 0x1c, 0x07, 0xc3, 0xfc, 0xef, 0x2c, + 0x14, 0xe4, 0x65, 0x85, 0x99, 0xdf, 0x67, 0xae, 0xbd, 0x72, 0x1d, 0x1d, 0xbf, 0xec, 0x95, 0x5f, + 0xe6, 0x25, 0x4e, 0x7e, 0xc7, 0xa7, 0x7a, 0x95, 0x2e, 0xff, 0x8e, 0x4f, 0xcd, 0xbf, 0x49, 0x6f, + 0x07, 0xbf, 0x84, 0xe2, 0x69, 0xe4, 0xbc, 0x24, 0x3c, 0x8e, 0xc7, 0xc7, 0x2b, 0x72, 0x44, 0xbd, + 0x43, 0xa7, 0x2b, 0xc1, 0x38, 0x1e, 0x84, 0x1e, 0x43, 0x49, 0xde, 0x21, 0xce, 0x6d, 0x5f, 0x3b, + 0x7b, 0x6b, 0x61, 0xfa, 0x3d, 0xfd, 0x0f, 0x16, 0x9c, 0x40, 0xcd, 0x5f, 0x43, 0x41, 0x59, 0x42, + 0x5f, 0x41, 0x55, 0xd9, 0x52, 0x95, 0x9b, 0xa6, 0xc2, 0x65, 0xef, 0x50, 0x51, 0xf8, 0x81, 0x80, + 0x8b, 0x1b, 0xc9, 0xb4, 0xf9, 0x96, 0xc3, 0xea, 0xc1, 0x7c, 0x01, 0x85, 0x5d, 0x3b, 0x70, 0x88, + 0xff, 0x96, 0x28, 0x9c, 0xde, 0x2c, 0xde, 0x72, 0xf7, 0xf0, 0xb7, 0x99, 0xa4, 0x7d, 0x78, 0x0b, + 0x36, 0x66, 0xdb, 0x87, 0xd6, 0xc9, 0xf1, 0xc1, 0xb3, 0x9d, 0xbd, 0xe6, 0x0d, 0xb4, 0x01, 0x6b, + 0x5a, 0xf5, 0xa4, 0x77, 0xd4, 0xc3, 0x3b, 0x43, 0xd5, 0x48, 0x5c, 0x6c, 0x2e, 0x66, 0xd1, 0x26, + 0x20, 0x2d, 0x1b, 0x9c, 0x1c, 0x1e, 0xee, 0xe0, 0xfd, 0x6f, 0x85, 0xdc, 0x58, 0xda, 0x74, 0xcc, + 0x2d, 0x36, 0x1d, 0xf3, 0x4b, 0x9b, 0x8e, 0x85, 0xa7, 0xb9, 0x52, 0xa9, 0x59, 0xc6, 0x45, 0xdd, + 0x5a, 0xbf, 0xf3, 0x5b, 0x03, 0x4a, 0xf1, 0x49, 0x39, 0xed, 0x53, 0x67, 0xd2, 0x7d, 0xea, 0xf9, + 0x36, 0x79, 0x76, 0x49, 0x9b, 0x7c, 0x79, 0x43, 0xdc, 0x58, 0xd5, 0x10, 0x7f, 0xa8, 0x5b, 0xdf, + 0x39, 0x99, 0xca, 0xef, 0x2c, 0x9c, 0xd9, 0x9d, 0xa1, 0x3d, 0x62, 0xea, 0xbf, 0x3e, 0xaa, 0x2f, + 0x6e, 0x42, 0x29, 0x62, 0x24, 0x74, 0x6d, 0x6e, 0xeb, 0x36, 0x7b, 0xf2, 0x6c, 0xfe, 0x63, 0x06, + 0xd6, 0x54, 0x81, 0xf2, 0x75, 0x48, 0xc7, 0xba, 0x63, 0x66, 0xfe, 0xea, 0xda, 0x09, 0x95, 0x6a, + 0x72, 0x67, 0x67, 0x9a, 0xdc, 0xd3, 0xda, 0xc3, 0x48, 0xd7, 0x1e, 0xe6, 0x76, 0x8a, 0x97, 0x3f, + 0x83, 0x52, 0x7c, 0xdc, 0x6b, 0x4a, 0xac, 0x2d, 0xbc, 0x0d, 0x4e, 0x20, 0xe6, 0xe7, 0x50, 0x4e, + 0x5e, 0x6d, 0xc9, 0xbf, 0x94, 0x5a, 0xe9, 0x7f, 0x29, 0x95, 0x53, 0xff, 0x44, 0xba, 0x33, 0x84, + 0xda, 0x4c, 0x41, 0x83, 0x10, 0xe4, 0x64, 0x69, 0xa5, 0x46, 0xcb, 0xdf, 0xe8, 0x21, 0x94, 0xe3, + 0x99, 0xc4, 0x32, 0x19, 0xcb, 0xbd, 0x99, 0x62, 0xee, 0xfc, 0x73, 0x06, 0xd0, 0x74, 0xfb, 0xd8, + 0xf3, 0xd8, 0xc4, 0xe6, 0xce, 0xd9, 0x1b, 0xd5, 0x1e, 0x1b, 0x50, 0x78, 0x41, 0x4f, 0xa7, 0xc1, + 0xcb, 0xbf, 0xa0, 0xa7, 0xfb, 0xee, 0x4c, 0x5c, 0x8c, 0x2b, 0xe3, 0x92, 0xd4, 0x58, 0xb9, 0x6b, + 0xd4, 0x58, 0xf7, 0x9f, 0x43, 0x7d, 0x56, 0x8e, 0x3e, 0x80, 0x77, 0x06, 0xfb, 0x87, 0x27, 0x07, + 0x3b, 0xc3, 0xfd, 0x67, 0x47, 0xd6, 0xe1, 0xb3, 0xbd, 0x9e, 0x75, 0x72, 0x34, 0x38, 0xee, 0xed, + 0xee, 0x7f, 0xbd, 0xdf, 0x13, 0xbc, 0x6b, 0x43, 0x6b, 0x1e, 0x30, 0xec, 0xfd, 0xe5, 0xb0, 0x99, + 0x91, 0x64, 0x9d, 0xd3, 0xec, 0x9c, 0xec, 0xed, 0x3f, 0x6b, 0x66, 0xb7, 0xbe, 0x2f, 0x40, 0x63, + 0x47, 0xe4, 0xee, 0x74, 0x36, 0xe4, 0xc2, 0xba, 0xca, 0xb5, 0xd9, 0x7f, 0x6d, 0xad, 0xaa, 0xf1, + 0x15, 0xb6, 0x13, 0xd7, 0x54, 0x3f, 0xb9, 0x0a, 0xa6, 0xb3, 0xea, 0x87, 0x0c, 0xbc, 0x17, 0xd7, + 0x5e, 0x09, 0x30, 0x5d, 0x85, 0xa1, 0xad, 0x95, 0xdb, 0xff, 0x42, 0xc5, 0x96, 0xcc, 0xfe, 0xe9, + 0x1b, 0x8d, 0xd1, 0xae, 0xfc, 0x15, 0x34, 0x9f, 0x10, 0x3e, 0xfb, 0xb6, 0x77, 0x56, 0x18, 0x7a, + 0x42, 0x78, 0x32, 0xd9, 0x47, 0x97, 0x62, 0xb4, 0x71, 0x0b, 0x90, 0xa8, 0x95, 0x66, 0x10, 0x0c, + 0xad, 0x1a, 0x2a, 0xa0, 0x89, 0xfd, 0x8f, 0x2f, 0x07, 0xe9, 0x09, 0xc4, 0x72, 0x89, 0xed, 0x79, + 0x6e, 0x86, 0xbb, 0x97, 0x1f, 0x9e, 0x57, 0x2e, 0x57, 0x0c, 0x4b, 0xcd, 0x22, 0x8f, 0xb1, 0x6b, + 0x26, 0x85, 0xc4, 0x5e, 0x3d, 0x4b, 0x0c, 0xd3, 0xb3, 0x9c, 0xc3, 0x2d, 0x9d, 0x7a, 0x9a, 0x35, + 0xa9, 0xed, 0x0e, 0x3d, 0x58, 0xdc, 0x43, 0x17, 0xf6, 0xc4, 0x64, 0xc6, 0x4f, 0xae, 0x07, 0x56, + 0xf3, 0x76, 0xbf, 0xfe, 0xf6, 0xa3, 0x91, 0xc7, 0xcf, 0xa2, 0xd3, 0x8e, 0x43, 0xc7, 0xf1, 0x7f, + 0x62, 0xd5, 0xff, 0x5a, 0x1d, 0xea, 0xc7, 0x82, 0xdf, 0x65, 0x6b, 0x07, 0xde, 0x39, 0xf9, 0x73, + 0x79, 0xc9, 0xa0, 0x9c, 0xfe, 0x57, 0xb6, 0xae, 0x9f, 0xbf, 0xf8, 0x42, 0x0a, 0x4e, 0x0b, 0x72, + 0xc8, 0xa7, 0xff, 0x1b, 0x00, 0x00, 0xff, 0xff, 0x09, 0xea, 0x52, 0xee, 0x86, 0x2b, 0x00, 0x00, }