diff --git a/docs/generated/http/full.md b/docs/generated/http/full.md index fc5e224152d1..8f58a5fb66eb 100644 --- a/docs/generated/http/full.md +++ b/docs/generated/http/full.md @@ -1369,7 +1369,7 @@ Support status: [reserved](#support-status) -Request object for issing a query cancel request. +Request object for issuing a query cancel request. | Field | Type | Label | Description | Support status | @@ -2834,6 +2834,50 @@ Support status: [reserved](#support-status) +## SQLStatisticsReset + +`POST /_status/sqlstatisticsreset` + + + +Support status: [reserved](#support-status) + +#### Request Parameters + + + + +Request object for issuing a SQL stats reset request. + + +| Field | Type | Label | Description | Support status | +| ----- | ---- | ----- | ----------- | -------------- | +| node_id | [string](#cockroach.server.serverpb.SQLStatisticsResetRequest-string) | | | [reserved](#support-status) | + + + + + + + +#### Response Parameters + + + + +Response object returned by SQLStatisticsReset. + + +| Field | Type | Label | Description | Support status | +| ----- | ---- | ----- | ----------- | -------------- | +| num_of_nodes_resetted | [int32](#cockroach.server.serverpb.SQLStatisticsResetResponse-int32) | | Number of nodes that have resetted their SQL stats. | [reserved](#support-status) | + + + + + + + ## Users `GET /_admin/v1/users` diff --git a/docs/generated/sql/functions.md b/docs/generated/sql/functions.md index 259e315a6be1..65fedefc6453 100644 --- a/docs/generated/sql/functions.md +++ b/docs/generated/sql/functions.md @@ -2714,6 +2714,8 @@ SELECT * FROM crdb_internal.check_consistency(true, ‘\x02’, ‘\x04’)

crdb_internal.range_stats(key: bytes) → jsonb

This function is used to retrieve range statistics information as a JSON object.

+crdb_internal.reset_sql_statistics() → bool

This function can be used to clear the collected SQL-related statistics.

+
crdb_internal.round_decimal_values(val: decimal, scale: int) → decimal

This function is used internally to round decimal values during mutations.

crdb_internal.round_decimal_values(val: decimal[], scale: int) → decimal[]

This function is used internally to round decimal array values during mutations.

diff --git a/pkg/server/BUILD.bazel b/pkg/server/BUILD.bazel index 81336cc6d3b0..57e8d491f8e2 100644 --- a/pkg/server/BUILD.bazel +++ b/pkg/server/BUILD.bazel @@ -36,6 +36,7 @@ go_library( "server_systemlog_gc.go", "settings_cache.go", "settingsworker.go", + "sql_stats.go", "statement_diagnostics_requests.go", "statements.go", "status.go", diff --git a/pkg/server/serverpb/status.go b/pkg/server/serverpb/status.go index b738aa0c0f84..e3e245b9ec54 100644 --- a/pkg/server/serverpb/status.go +++ b/pkg/server/serverpb/status.go @@ -25,6 +25,7 @@ type SQLStatusServer interface { CancelSession(context.Context, *CancelSessionRequest) (*CancelSessionResponse, error) ListContentionEvents(context.Context, *ListContentionEventsRequest) (*ListContentionEventsResponse, error) ListLocalContentionEvents(context.Context, *ListContentionEventsRequest) (*ListContentionEventsResponse, error) + SQLStatisticsReset(ctx context.Context, request *SQLStatisticsResetRequest) (*SQLStatisticsResetResponse, error) } // OptionalNodesStatusServer is a StatusServer that is only optionally present diff --git a/pkg/server/serverpb/status.pb.go b/pkg/server/serverpb/status.pb.go index 348f9b40f594..fb4212aa65f2 100644 --- a/pkg/server/serverpb/status.pb.go +++ b/pkg/server/serverpb/status.pb.go @@ -67,7 +67,7 @@ func (x StacksType) String() string { return proto.EnumName(StacksType_name, int32(x)) } func (StacksType) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{0} + return fileDescriptor_status_671ac8d2880d1eb6, []int{0} } // Represents the type of file. @@ -94,7 +94,7 @@ func (x FileType) String() string { return proto.EnumName(FileType_name, int32(x)) } func (FileType) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{1} + return fileDescriptor_status_671ac8d2880d1eb6, []int{1} } // We use an enum to allow reporting of client certs and potential others (eg: @@ -131,7 +131,7 @@ func (x CertificateDetails_CertificateType) String() string { return proto.EnumName(CertificateDetails_CertificateType_name, int32(x)) } func (CertificateDetails_CertificateType) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{1, 0} + return fileDescriptor_status_671ac8d2880d1eb6, []int{1, 0} } type ProfileRequest_Type int32 @@ -154,7 +154,7 @@ func (x ProfileRequest_Type) String() string { return proto.EnumName(ProfileRequest_Type_name, int32(x)) } func (ProfileRequest_Type) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{37, 0} + return fileDescriptor_status_671ac8d2880d1eb6, []int{37, 0} } // Enum for phase of execution. @@ -178,7 +178,7 @@ func (x ActiveQuery_Phase) String() string { return proto.EnumName(ActiveQuery_Phase_name, int32(x)) } func (ActiveQuery_Phase) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{45, 0} + return fileDescriptor_status_671ac8d2880d1eb6, []int{45, 0} } type CertificatesRequest struct { @@ -191,7 +191,7 @@ func (m *CertificatesRequest) Reset() { *m = CertificatesRequest{} } func (m *CertificatesRequest) String() string { return proto.CompactTextString(m) } func (*CertificatesRequest) ProtoMessage() {} func (*CertificatesRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{0} + return fileDescriptor_status_671ac8d2880d1eb6, []int{0} } func (m *CertificatesRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -230,7 +230,7 @@ func (m *CertificateDetails) Reset() { *m = CertificateDetails{} } func (m *CertificateDetails) String() string { return proto.CompactTextString(m) } func (*CertificateDetails) ProtoMessage() {} func (*CertificateDetails) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{1} + return fileDescriptor_status_671ac8d2880d1eb6, []int{1} } func (m *CertificateDetails) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -271,7 +271,7 @@ func (m *CertificateDetails_Fields) Reset() { *m = CertificateDetails_Fi func (m *CertificateDetails_Fields) String() string { return proto.CompactTextString(m) } func (*CertificateDetails_Fields) ProtoMessage() {} func (*CertificateDetails_Fields) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{1, 0} + return fileDescriptor_status_671ac8d2880d1eb6, []int{1, 0} } func (m *CertificateDetails_Fields) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -304,7 +304,7 @@ func (m *CertificatesResponse) Reset() { *m = CertificatesResponse{} } func (m *CertificatesResponse) String() string { return proto.CompactTextString(m) } func (*CertificatesResponse) ProtoMessage() {} func (*CertificatesResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{2} + return fileDescriptor_status_671ac8d2880d1eb6, []int{2} } func (m *CertificatesResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -341,7 +341,7 @@ func (m *DetailsRequest) Reset() { *m = DetailsRequest{} } func (m *DetailsRequest) String() string { return proto.CompactTextString(m) } func (*DetailsRequest) ProtoMessage() {} func (*DetailsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{3} + return fileDescriptor_status_671ac8d2880d1eb6, []int{3} } func (m *DetailsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -378,7 +378,7 @@ func (m *SystemInfo) Reset() { *m = SystemInfo{} } func (m *SystemInfo) String() string { return proto.CompactTextString(m) } func (*SystemInfo) ProtoMessage() {} func (*SystemInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{4} + return fileDescriptor_status_671ac8d2880d1eb6, []int{4} } func (m *SystemInfo) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -415,7 +415,7 @@ func (m *DetailsResponse) Reset() { *m = DetailsResponse{} } func (m *DetailsResponse) String() string { return proto.CompactTextString(m) } func (*DetailsResponse) ProtoMessage() {} func (*DetailsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{5} + return fileDescriptor_status_671ac8d2880d1eb6, []int{5} } func (m *DetailsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -450,7 +450,7 @@ func (m *NodesRequest) Reset() { *m = NodesRequest{} } func (m *NodesRequest) String() string { return proto.CompactTextString(m) } func (*NodesRequest) ProtoMessage() {} func (*NodesRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{6} + return fileDescriptor_status_671ac8d2880d1eb6, []int{6} } func (m *NodesRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -489,7 +489,7 @@ func (m *NodesResponse) Reset() { *m = NodesResponse{} } func (m *NodesResponse) String() string { return proto.CompactTextString(m) } func (*NodesResponse) ProtoMessage() {} func (*NodesResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{7} + return fileDescriptor_status_671ac8d2880d1eb6, []int{7} } func (m *NodesResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -524,7 +524,7 @@ func (m *NodeRequest) Reset() { *m = NodeRequest{} } func (m *NodeRequest) String() string { return proto.CompactTextString(m) } func (*NodeRequest) ProtoMessage() {} func (*NodeRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{8} + return fileDescriptor_status_671ac8d2880d1eb6, []int{8} } func (m *NodeRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -569,7 +569,7 @@ func (m *RaftState) Reset() { *m = RaftState{} } func (m *RaftState) String() string { return proto.CompactTextString(m) } func (*RaftState) ProtoMessage() {} func (*RaftState) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{9} + return fileDescriptor_status_671ac8d2880d1eb6, []int{9} } func (m *RaftState) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -606,7 +606,7 @@ func (m *RaftState_Progress) Reset() { *m = RaftState_Progress{} } func (m *RaftState_Progress) String() string { return proto.CompactTextString(m) } func (*RaftState_Progress) ProtoMessage() {} func (*RaftState_Progress) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{9, 0} + return fileDescriptor_status_671ac8d2880d1eb6, []int{9, 0} } func (m *RaftState_Progress) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -651,7 +651,7 @@ func (m *RangeProblems) Reset() { *m = RangeProblems{} } func (m *RangeProblems) String() string { return proto.CompactTextString(m) } func (*RangeProblems) ProtoMessage() {} func (*RangeProblems) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{10} + return fileDescriptor_status_671ac8d2880d1eb6, []int{10} } func (m *RangeProblems) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -687,7 +687,7 @@ func (m *RangeStatistics) Reset() { *m = RangeStatistics{} } func (m *RangeStatistics) String() string { return proto.CompactTextString(m) } func (*RangeStatistics) ProtoMessage() {} func (*RangeStatistics) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{11} + return fileDescriptor_status_671ac8d2880d1eb6, []int{11} } func (m *RangeStatistics) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -721,7 +721,7 @@ func (m *PrettySpan) Reset() { *m = PrettySpan{} } func (m *PrettySpan) String() string { return proto.CompactTextString(m) } func (*PrettySpan) ProtoMessage() {} func (*PrettySpan) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{12} + return fileDescriptor_status_671ac8d2880d1eb6, []int{12} } func (m *PrettySpan) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -767,7 +767,7 @@ func (m *RangeInfo) Reset() { *m = RangeInfo{} } func (m *RangeInfo) String() string { return proto.CompactTextString(m) } func (*RangeInfo) ProtoMessage() {} func (*RangeInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{13} + return fileDescriptor_status_671ac8d2880d1eb6, []int{13} } func (m *RangeInfo) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -803,7 +803,7 @@ func (m *RangesRequest) Reset() { *m = RangesRequest{} } func (m *RangesRequest) String() string { return proto.CompactTextString(m) } func (*RangesRequest) ProtoMessage() {} func (*RangesRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{14} + return fileDescriptor_status_671ac8d2880d1eb6, []int{14} } func (m *RangesRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -836,7 +836,7 @@ func (m *RangesResponse) Reset() { *m = RangesResponse{} } func (m *RangesResponse) String() string { return proto.CompactTextString(m) } func (*RangesResponse) ProtoMessage() {} func (*RangesResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{15} + return fileDescriptor_status_671ac8d2880d1eb6, []int{15} } func (m *RangesResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -871,7 +871,7 @@ func (m *GossipRequest) Reset() { *m = GossipRequest{} } func (m *GossipRequest) String() string { return proto.CompactTextString(m) } func (*GossipRequest) ProtoMessage() {} func (*GossipRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{16} + return fileDescriptor_status_671ac8d2880d1eb6, []int{16} } func (m *GossipRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -906,7 +906,7 @@ func (m *EngineStatsInfo) Reset() { *m = EngineStatsInfo{} } func (m *EngineStatsInfo) String() string { return proto.CompactTextString(m) } func (*EngineStatsInfo) ProtoMessage() {} func (*EngineStatsInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{17} + return fileDescriptor_status_671ac8d2880d1eb6, []int{17} } func (m *EngineStatsInfo) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -941,7 +941,7 @@ func (m *EngineStatsRequest) Reset() { *m = EngineStatsRequest{} } func (m *EngineStatsRequest) String() string { return proto.CompactTextString(m) } func (*EngineStatsRequest) ProtoMessage() {} func (*EngineStatsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{18} + return fileDescriptor_status_671ac8d2880d1eb6, []int{18} } func (m *EngineStatsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -974,7 +974,7 @@ func (m *EngineStatsResponse) Reset() { *m = EngineStatsResponse{} } func (m *EngineStatsResponse) String() string { return proto.CompactTextString(m) } func (*EngineStatsResponse) ProtoMessage() {} func (*EngineStatsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{19} + return fileDescriptor_status_671ac8d2880d1eb6, []int{19} } func (m *EngineStatsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1008,7 +1008,7 @@ func (m *TraceEvent) Reset() { *m = TraceEvent{} } func (m *TraceEvent) String() string { return proto.CompactTextString(m) } func (*TraceEvent) ProtoMessage() {} func (*TraceEvent) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{20} + return fileDescriptor_status_671ac8d2880d1eb6, []int{20} } func (m *TraceEvent) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1042,7 +1042,7 @@ func (m *AllocatorDryRun) Reset() { *m = AllocatorDryRun{} } func (m *AllocatorDryRun) String() string { return proto.CompactTextString(m) } func (*AllocatorDryRun) ProtoMessage() {} func (*AllocatorDryRun) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{21} + return fileDescriptor_status_671ac8d2880d1eb6, []int{21} } func (m *AllocatorDryRun) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1075,7 +1075,7 @@ func (m *AllocatorRangeRequest) Reset() { *m = AllocatorRangeRequest{} } func (m *AllocatorRangeRequest) String() string { return proto.CompactTextString(m) } func (*AllocatorRangeRequest) ProtoMessage() {} func (*AllocatorRangeRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{22} + return fileDescriptor_status_671ac8d2880d1eb6, []int{22} } func (m *AllocatorRangeRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1111,7 +1111,7 @@ func (m *AllocatorRangeResponse) Reset() { *m = AllocatorRangeResponse{} func (m *AllocatorRangeResponse) String() string { return proto.CompactTextString(m) } func (*AllocatorRangeResponse) ProtoMessage() {} func (*AllocatorRangeResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{23} + return fileDescriptor_status_671ac8d2880d1eb6, []int{23} } func (m *AllocatorRangeResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1145,7 +1145,7 @@ func (m *AllocatorRequest) Reset() { *m = AllocatorRequest{} } func (m *AllocatorRequest) String() string { return proto.CompactTextString(m) } func (*AllocatorRequest) ProtoMessage() {} func (*AllocatorRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{24} + return fileDescriptor_status_671ac8d2880d1eb6, []int{24} } func (m *AllocatorRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1178,7 +1178,7 @@ func (m *AllocatorResponse) Reset() { *m = AllocatorResponse{} } func (m *AllocatorResponse) String() string { return proto.CompactTextString(m) } func (*AllocatorResponse) ProtoMessage() {} func (*AllocatorResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{25} + return fileDescriptor_status_671ac8d2880d1eb6, []int{25} } func (m *AllocatorResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1211,7 +1211,7 @@ func (m *JSONResponse) Reset() { *m = JSONResponse{} } func (m *JSONResponse) String() string { return proto.CompactTextString(m) } func (*JSONResponse) ProtoMessage() {} func (*JSONResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{26} + return fileDescriptor_status_671ac8d2880d1eb6, []int{26} } func (m *JSONResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1247,7 +1247,7 @@ func (m *ResponseError) Reset() { *m = ResponseError{} } func (m *ResponseError) String() string { return proto.CompactTextString(m) } func (*ResponseError) ProtoMessage() {} func (*ResponseError) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{27} + return fileDescriptor_status_671ac8d2880d1eb6, []int{27} } func (m *ResponseError) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1291,7 +1291,7 @@ func (m *LogsRequest) Reset() { *m = LogsRequest{} } func (m *LogsRequest) String() string { return proto.CompactTextString(m) } func (*LogsRequest) ProtoMessage() {} func (*LogsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{28} + return fileDescriptor_status_671ac8d2880d1eb6, []int{28} } func (m *LogsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1324,7 +1324,7 @@ func (m *LogEntriesResponse) Reset() { *m = LogEntriesResponse{} } func (m *LogEntriesResponse) String() string { return proto.CompactTextString(m) } func (*LogEntriesResponse) ProtoMessage() {} func (*LogEntriesResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{29} + return fileDescriptor_status_671ac8d2880d1eb6, []int{29} } func (m *LogEntriesResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1359,7 +1359,7 @@ func (m *LogFilesListRequest) Reset() { *m = LogFilesListRequest{} } func (m *LogFilesListRequest) String() string { return proto.CompactTextString(m) } func (*LogFilesListRequest) ProtoMessage() {} func (*LogFilesListRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{30} + return fileDescriptor_status_671ac8d2880d1eb6, []int{30} } func (m *LogFilesListRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1392,7 +1392,7 @@ func (m *LogFilesListResponse) Reset() { *m = LogFilesListResponse{} } func (m *LogFilesListResponse) String() string { return proto.CompactTextString(m) } func (*LogFilesListResponse) ProtoMessage() {} func (*LogFilesListResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{31} + return fileDescriptor_status_671ac8d2880d1eb6, []int{31} } func (m *LogFilesListResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1432,7 +1432,7 @@ func (m *LogFileRequest) Reset() { *m = LogFileRequest{} } func (m *LogFileRequest) String() string { return proto.CompactTextString(m) } func (*LogFileRequest) ProtoMessage() {} func (*LogFileRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{32} + return fileDescriptor_status_671ac8d2880d1eb6, []int{32} } func (m *LogFileRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1468,7 +1468,7 @@ func (m *StacksRequest) Reset() { *m = StacksRequest{} } func (m *StacksRequest) String() string { return proto.CompactTextString(m) } func (*StacksRequest) ProtoMessage() {} func (*StacksRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{33} + return fileDescriptor_status_671ac8d2880d1eb6, []int{33} } func (m *StacksRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1504,7 +1504,7 @@ func (m *File) Reset() { *m = File{} } func (m *File) String() string { return proto.CompactTextString(m) } func (*File) ProtoMessage() {} func (*File) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{34} + return fileDescriptor_status_671ac8d2880d1eb6, []int{34} } func (m *File) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1548,7 +1548,7 @@ func (m *GetFilesRequest) Reset() { *m = GetFilesRequest{} } func (m *GetFilesRequest) String() string { return proto.CompactTextString(m) } func (*GetFilesRequest) ProtoMessage() {} func (*GetFilesRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{35} + return fileDescriptor_status_671ac8d2880d1eb6, []int{35} } func (m *GetFilesRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1581,7 +1581,7 @@ func (m *GetFilesResponse) Reset() { *m = GetFilesResponse{} } func (m *GetFilesResponse) String() string { return proto.CompactTextString(m) } func (*GetFilesResponse) ProtoMessage() {} func (*GetFilesResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{36} + return fileDescriptor_status_671ac8d2880d1eb6, []int{36} } func (m *GetFilesResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1619,7 +1619,7 @@ func (m *ProfileRequest) Reset() { *m = ProfileRequest{} } func (m *ProfileRequest) String() string { return proto.CompactTextString(m) } func (*ProfileRequest) ProtoMessage() {} func (*ProfileRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{37} + return fileDescriptor_status_671ac8d2880d1eb6, []int{37} } func (m *ProfileRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1654,7 +1654,7 @@ func (m *MetricsRequest) Reset() { *m = MetricsRequest{} } func (m *MetricsRequest) String() string { return proto.CompactTextString(m) } func (*MetricsRequest) ProtoMessage() {} func (*MetricsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{38} + return fileDescriptor_status_671ac8d2880d1eb6, []int{38} } func (m *MetricsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1688,7 +1688,7 @@ func (m *RaftRangeNode) Reset() { *m = RaftRangeNode{} } func (m *RaftRangeNode) String() string { return proto.CompactTextString(m) } func (*RaftRangeNode) ProtoMessage() {} func (*RaftRangeNode) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{39} + return fileDescriptor_status_671ac8d2880d1eb6, []int{39} } func (m *RaftRangeNode) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1721,7 +1721,7 @@ func (m *RaftRangeError) Reset() { *m = RaftRangeError{} } func (m *RaftRangeError) String() string { return proto.CompactTextString(m) } func (*RaftRangeError) ProtoMessage() {} func (*RaftRangeError) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{40} + return fileDescriptor_status_671ac8d2880d1eb6, []int{40} } func (m *RaftRangeError) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1756,7 +1756,7 @@ func (m *RaftRangeStatus) Reset() { *m = RaftRangeStatus{} } func (m *RaftRangeStatus) String() string { return proto.CompactTextString(m) } func (*RaftRangeStatus) ProtoMessage() {} func (*RaftRangeStatus) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{41} + return fileDescriptor_status_671ac8d2880d1eb6, []int{41} } func (m *RaftRangeStatus) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1789,7 +1789,7 @@ func (m *RaftDebugRequest) Reset() { *m = RaftDebugRequest{} } func (m *RaftDebugRequest) String() string { return proto.CompactTextString(m) } func (*RaftDebugRequest) ProtoMessage() {} func (*RaftDebugRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{42} + return fileDescriptor_status_671ac8d2880d1eb6, []int{42} } func (m *RaftDebugRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1823,7 +1823,7 @@ func (m *RaftDebugResponse) Reset() { *m = RaftDebugResponse{} } func (m *RaftDebugResponse) String() string { return proto.CompactTextString(m) } func (*RaftDebugResponse) ProtoMessage() {} func (*RaftDebugResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{43} + return fileDescriptor_status_671ac8d2880d1eb6, []int{43} } func (m *RaftDebugResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1881,7 +1881,7 @@ func (m *TxnInfo) Reset() { *m = TxnInfo{} } func (m *TxnInfo) String() string { return proto.CompactTextString(m) } func (*TxnInfo) ProtoMessage() {} func (*TxnInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{44} + return fileDescriptor_status_671ac8d2880d1eb6, []int{44} } func (m *TxnInfo) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1929,7 +1929,7 @@ func (m *ActiveQuery) Reset() { *m = ActiveQuery{} } func (m *ActiveQuery) String() string { return proto.CompactTextString(m) } func (*ActiveQuery) ProtoMessage() {} func (*ActiveQuery) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{45} + return fileDescriptor_status_671ac8d2880d1eb6, []int{45} } func (m *ActiveQuery) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1966,7 +1966,7 @@ func (m *ListSessionsRequest) Reset() { *m = ListSessionsRequest{} } func (m *ListSessionsRequest) String() string { return proto.CompactTextString(m) } func (*ListSessionsRequest) ProtoMessage() {} func (*ListSessionsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{46} + return fileDescriptor_status_671ac8d2880d1eb6, []int{46} } func (m *ListSessionsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2025,7 +2025,7 @@ func (m *Session) Reset() { *m = Session{} } func (m *Session) String() string { return proto.CompactTextString(m) } func (*Session) ProtoMessage() {} func (*Session) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{47} + return fileDescriptor_status_671ac8d2880d1eb6, []int{47} } func (m *Session) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2062,7 +2062,7 @@ func (m *ListSessionsError) Reset() { *m = ListSessionsError{} } func (m *ListSessionsError) String() string { return proto.CompactTextString(m) } func (*ListSessionsError) ProtoMessage() {} func (*ListSessionsError) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{48} + return fileDescriptor_status_671ac8d2880d1eb6, []int{48} } func (m *ListSessionsError) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2099,7 +2099,7 @@ func (m *ListSessionsResponse) Reset() { *m = ListSessionsResponse{} } func (m *ListSessionsResponse) String() string { return proto.CompactTextString(m) } func (*ListSessionsResponse) ProtoMessage() {} func (*ListSessionsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{49} + return fileDescriptor_status_671ac8d2880d1eb6, []int{49} } func (m *ListSessionsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2124,7 +2124,7 @@ func (m *ListSessionsResponse) XXX_DiscardUnknown() { var xxx_messageInfo_ListSessionsResponse proto.InternalMessageInfo -// Request object for issing a query cancel request. +// Request object for issuing a query cancel request. type CancelQueryRequest struct { // ID of gateway node for the query to be canceled. // @@ -2146,7 +2146,7 @@ func (m *CancelQueryRequest) Reset() { *m = CancelQueryRequest{} } func (m *CancelQueryRequest) String() string { return proto.CompactTextString(m) } func (*CancelQueryRequest) ProtoMessage() {} func (*CancelQueryRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{50} + return fileDescriptor_status_671ac8d2880d1eb6, []int{50} } func (m *CancelQueryRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2183,7 +2183,7 @@ func (m *CancelQueryResponse) Reset() { *m = CancelQueryResponse{} } func (m *CancelQueryResponse) String() string { return proto.CompactTextString(m) } func (*CancelQueryResponse) ProtoMessage() {} func (*CancelQueryResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{51} + return fileDescriptor_status_671ac8d2880d1eb6, []int{51} } func (m *CancelQueryResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2226,7 +2226,7 @@ func (m *CancelSessionRequest) Reset() { *m = CancelSessionRequest{} } func (m *CancelSessionRequest) String() string { return proto.CompactTextString(m) } func (*CancelSessionRequest) ProtoMessage() {} func (*CancelSessionRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{52} + return fileDescriptor_status_671ac8d2880d1eb6, []int{52} } func (m *CancelSessionRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2260,7 +2260,7 @@ func (m *CancelSessionResponse) Reset() { *m = CancelSessionResponse{} } func (m *CancelSessionResponse) String() string { return proto.CompactTextString(m) } func (*CancelSessionResponse) ProtoMessage() {} func (*CancelSessionResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{53} + return fileDescriptor_status_671ac8d2880d1eb6, []int{53} } func (m *CancelSessionResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2293,7 +2293,7 @@ func (m *ListContentionEventsRequest) Reset() { *m = ListContentionEvent func (m *ListContentionEventsRequest) String() string { return proto.CompactTextString(m) } func (*ListContentionEventsRequest) ProtoMessage() {} func (*ListContentionEventsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{54} + return fileDescriptor_status_671ac8d2880d1eb6, []int{54} } func (m *ListContentionEventsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2330,7 +2330,7 @@ func (m *ListContentionEventsError) Reset() { *m = ListContentionEventsE func (m *ListContentionEventsError) String() string { return proto.CompactTextString(m) } func (*ListContentionEventsError) ProtoMessage() {} func (*ListContentionEventsError) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{55} + return fileDescriptor_status_671ac8d2880d1eb6, []int{55} } func (m *ListContentionEventsError) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2367,7 +2367,7 @@ func (m *ListContentionEventsResponse) Reset() { *m = ListContentionEven func (m *ListContentionEventsResponse) String() string { return proto.CompactTextString(m) } func (*ListContentionEventsResponse) ProtoMessage() {} func (*ListContentionEventsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{56} + return fileDescriptor_status_671ac8d2880d1eb6, []int{56} } func (m *ListContentionEventsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2402,7 +2402,7 @@ func (m *SpanStatsRequest) Reset() { *m = SpanStatsRequest{} } func (m *SpanStatsRequest) String() string { return proto.CompactTextString(m) } func (*SpanStatsRequest) ProtoMessage() {} func (*SpanStatsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{57} + return fileDescriptor_status_671ac8d2880d1eb6, []int{57} } func (m *SpanStatsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2437,7 +2437,7 @@ func (m *SpanStatsResponse) Reset() { *m = SpanStatsResponse{} } func (m *SpanStatsResponse) String() string { return proto.CompactTextString(m) } func (*SpanStatsResponse) ProtoMessage() {} func (*SpanStatsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{58} + return fileDescriptor_status_671ac8d2880d1eb6, []int{58} } func (m *SpanStatsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2471,7 +2471,7 @@ func (m *ProblemRangesRequest) Reset() { *m = ProblemRangesRequest{} } func (m *ProblemRangesRequest) String() string { return proto.CompactTextString(m) } func (*ProblemRangesRequest) ProtoMessage() {} func (*ProblemRangesRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{59} + return fileDescriptor_status_671ac8d2880d1eb6, []int{59} } func (m *ProblemRangesRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2506,7 +2506,7 @@ func (m *ProblemRangesResponse) Reset() { *m = ProblemRangesResponse{} } func (m *ProblemRangesResponse) String() string { return proto.CompactTextString(m) } func (*ProblemRangesResponse) ProtoMessage() {} func (*ProblemRangesResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{60} + return fileDescriptor_status_671ac8d2880d1eb6, []int{60} } func (m *ProblemRangesResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2547,7 +2547,7 @@ func (m *ProblemRangesResponse_NodeProblems) Reset() { *m = ProblemRange func (m *ProblemRangesResponse_NodeProblems) String() string { return proto.CompactTextString(m) } func (*ProblemRangesResponse_NodeProblems) ProtoMessage() {} func (*ProblemRangesResponse_NodeProblems) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{60, 0} + return fileDescriptor_status_671ac8d2880d1eb6, []int{60, 0} } func (m *ProblemRangesResponse_NodeProblems) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2591,7 +2591,7 @@ func (m *HotRangesRequest) Reset() { *m = HotRangesRequest{} } func (m *HotRangesRequest) String() string { return proto.CompactTextString(m) } func (*HotRangesRequest) ProtoMessage() {} func (*HotRangesRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{61} + return fileDescriptor_status_671ac8d2880d1eb6, []int{61} } func (m *HotRangesRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2634,7 +2634,7 @@ func (m *HotRangesResponse) Reset() { *m = HotRangesResponse{} } func (m *HotRangesResponse) String() string { return proto.CompactTextString(m) } func (*HotRangesResponse) ProtoMessage() {} func (*HotRangesResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{62} + return fileDescriptor_status_671ac8d2880d1eb6, []int{62} } func (m *HotRangesResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2679,7 +2679,7 @@ func (m *HotRangesResponse_HotRange) Reset() { *m = HotRangesResponse_Ho func (m *HotRangesResponse_HotRange) String() string { return proto.CompactTextString(m) } func (*HotRangesResponse_HotRange) ProtoMessage() {} func (*HotRangesResponse_HotRange) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{62, 0} + return fileDescriptor_status_671ac8d2880d1eb6, []int{62, 0} } func (m *HotRangesResponse_HotRange) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2722,7 +2722,7 @@ func (m *HotRangesResponse_StoreResponse) Reset() { *m = HotRangesRespon func (m *HotRangesResponse_StoreResponse) String() string { return proto.CompactTextString(m) } func (*HotRangesResponse_StoreResponse) ProtoMessage() {} func (*HotRangesResponse_StoreResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{62, 1} + return fileDescriptor_status_671ac8d2880d1eb6, []int{62, 1} } func (m *HotRangesResponse_StoreResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2767,7 +2767,7 @@ func (m *HotRangesResponse_NodeResponse) Reset() { *m = HotRangesRespons func (m *HotRangesResponse_NodeResponse) String() string { return proto.CompactTextString(m) } func (*HotRangesResponse_NodeResponse) ProtoMessage() {} func (*HotRangesResponse_NodeResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{62, 2} + return fileDescriptor_status_671ac8d2880d1eb6, []int{62, 2} } func (m *HotRangesResponse_NodeResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2800,7 +2800,7 @@ func (m *RangeRequest) Reset() { *m = RangeRequest{} } func (m *RangeRequest) String() string { return proto.CompactTextString(m) } func (*RangeRequest) ProtoMessage() {} func (*RangeRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{63} + return fileDescriptor_status_671ac8d2880d1eb6, []int{63} } func (m *RangeRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2836,7 +2836,7 @@ func (m *RangeResponse) Reset() { *m = RangeResponse{} } func (m *RangeResponse) String() string { return proto.CompactTextString(m) } func (*RangeResponse) ProtoMessage() {} func (*RangeResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{64} + return fileDescriptor_status_671ac8d2880d1eb6, []int{64} } func (m *RangeResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2871,7 +2871,7 @@ func (m *RangeResponse_NodeResponse) Reset() { *m = RangeResponse_NodeRe func (m *RangeResponse_NodeResponse) String() string { return proto.CompactTextString(m) } func (*RangeResponse_NodeResponse) ProtoMessage() {} func (*RangeResponse_NodeResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{64, 0} + return fileDescriptor_status_671ac8d2880d1eb6, []int{64, 0} } func (m *RangeResponse_NodeResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2907,7 +2907,7 @@ func (m *DiagnosticsRequest) Reset() { *m = DiagnosticsRequest{} } func (m *DiagnosticsRequest) String() string { return proto.CompactTextString(m) } func (*DiagnosticsRequest) ProtoMessage() {} func (*DiagnosticsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{65} + return fileDescriptor_status_671ac8d2880d1eb6, []int{65} } func (m *DiagnosticsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2942,7 +2942,7 @@ func (m *StoresRequest) Reset() { *m = StoresRequest{} } func (m *StoresRequest) String() string { return proto.CompactTextString(m) } func (*StoresRequest) ProtoMessage() {} func (*StoresRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{66} + return fileDescriptor_status_671ac8d2880d1eb6, []int{66} } func (m *StoresRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2985,7 +2985,7 @@ func (m *StoreDetails) Reset() { *m = StoreDetails{} } func (m *StoreDetails) String() string { return proto.CompactTextString(m) } func (*StoreDetails) ProtoMessage() {} func (*StoreDetails) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{67} + return fileDescriptor_status_671ac8d2880d1eb6, []int{67} } func (m *StoreDetails) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3018,7 +3018,7 @@ func (m *StoresResponse) Reset() { *m = StoresResponse{} } func (m *StoresResponse) String() string { return proto.CompactTextString(m) } func (*StoresResponse) ProtoMessage() {} func (*StoresResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{68} + return fileDescriptor_status_671ac8d2880d1eb6, []int{68} } func (m *StoresResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3051,7 +3051,7 @@ func (m *StatementsRequest) Reset() { *m = StatementsRequest{} } func (m *StatementsRequest) String() string { return proto.CompactTextString(m) } func (*StatementsRequest) ProtoMessage() {} func (*StatementsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{69} + return fileDescriptor_status_671ac8d2880d1eb6, []int{69} } func (m *StatementsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3092,7 +3092,7 @@ func (m *StatementsResponse) Reset() { *m = StatementsResponse{} } func (m *StatementsResponse) String() string { return proto.CompactTextString(m) } func (*StatementsResponse) ProtoMessage() {} func (*StatementsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{70} + return fileDescriptor_status_671ac8d2880d1eb6, []int{70} } func (m *StatementsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3130,7 +3130,7 @@ func (m *StatementsResponse_ExtendedStatementStatisticsKey) String() string { } func (*StatementsResponse_ExtendedStatementStatisticsKey) ProtoMessage() {} func (*StatementsResponse_ExtendedStatementStatisticsKey) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{70, 0} + return fileDescriptor_status_671ac8d2880d1eb6, []int{70, 0} } func (m *StatementsResponse_ExtendedStatementStatisticsKey) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3169,7 +3169,7 @@ func (m *StatementsResponse_CollectedStatementStatistics) String() string { } func (*StatementsResponse_CollectedStatementStatistics) ProtoMessage() {} func (*StatementsResponse_CollectedStatementStatistics) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{70, 1} + return fileDescriptor_status_671ac8d2880d1eb6, []int{70, 1} } func (m *StatementsResponse_CollectedStatementStatistics) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3207,7 +3207,7 @@ func (m *StatementsResponse_ExtendedCollectedTransactionStatistics) String() str } func (*StatementsResponse_ExtendedCollectedTransactionStatistics) ProtoMessage() {} func (*StatementsResponse_ExtendedCollectedTransactionStatistics) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{70, 2} + return fileDescriptor_status_671ac8d2880d1eb6, []int{70, 2} } func (m *StatementsResponse_ExtendedCollectedTransactionStatistics) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3244,7 +3244,7 @@ func (m *StatementDiagnosticsReport) Reset() { *m = StatementDiagnostics func (m *StatementDiagnosticsReport) String() string { return proto.CompactTextString(m) } func (*StatementDiagnosticsReport) ProtoMessage() {} func (*StatementDiagnosticsReport) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{71} + return fileDescriptor_status_671ac8d2880d1eb6, []int{71} } func (m *StatementDiagnosticsReport) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3279,7 +3279,7 @@ func (m *CreateStatementDiagnosticsReportRequest) Reset() { func (m *CreateStatementDiagnosticsReportRequest) String() string { return proto.CompactTextString(m) } func (*CreateStatementDiagnosticsReportRequest) ProtoMessage() {} func (*CreateStatementDiagnosticsReportRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{72} + return fileDescriptor_status_671ac8d2880d1eb6, []int{72} } func (m *CreateStatementDiagnosticsReportRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3314,7 +3314,7 @@ func (m *CreateStatementDiagnosticsReportResponse) Reset() { func (m *CreateStatementDiagnosticsReportResponse) String() string { return proto.CompactTextString(m) } func (*CreateStatementDiagnosticsReportResponse) ProtoMessage() {} func (*CreateStatementDiagnosticsReportResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{73} + return fileDescriptor_status_671ac8d2880d1eb6, []int{73} } func (m *CreateStatementDiagnosticsReportResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3346,7 +3346,7 @@ func (m *StatementDiagnosticsReportsRequest) Reset() { *m = StatementDia func (m *StatementDiagnosticsReportsRequest) String() string { return proto.CompactTextString(m) } func (*StatementDiagnosticsReportsRequest) ProtoMessage() {} func (*StatementDiagnosticsReportsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{74} + return fileDescriptor_status_671ac8d2880d1eb6, []int{74} } func (m *StatementDiagnosticsReportsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3379,7 +3379,7 @@ func (m *StatementDiagnosticsReportsResponse) Reset() { *m = StatementDi func (m *StatementDiagnosticsReportsResponse) String() string { return proto.CompactTextString(m) } func (*StatementDiagnosticsReportsResponse) ProtoMessage() {} func (*StatementDiagnosticsReportsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{75} + return fileDescriptor_status_671ac8d2880d1eb6, []int{75} } func (m *StatementDiagnosticsReportsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3414,7 +3414,7 @@ func (m *StatementDiagnostics) Reset() { *m = StatementDiagnostics{} } func (m *StatementDiagnostics) String() string { return proto.CompactTextString(m) } func (*StatementDiagnostics) ProtoMessage() {} func (*StatementDiagnostics) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{76} + return fileDescriptor_status_671ac8d2880d1eb6, []int{76} } func (m *StatementDiagnostics) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3447,7 +3447,7 @@ func (m *StatementDiagnosticsRequest) Reset() { *m = StatementDiagnostic func (m *StatementDiagnosticsRequest) String() string { return proto.CompactTextString(m) } func (*StatementDiagnosticsRequest) ProtoMessage() {} func (*StatementDiagnosticsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{77} + return fileDescriptor_status_671ac8d2880d1eb6, []int{77} } func (m *StatementDiagnosticsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3480,7 +3480,7 @@ func (m *StatementDiagnosticsResponse) Reset() { *m = StatementDiagnosti func (m *StatementDiagnosticsResponse) String() string { return proto.CompactTextString(m) } func (*StatementDiagnosticsResponse) ProtoMessage() {} func (*StatementDiagnosticsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{78} + return fileDescriptor_status_671ac8d2880d1eb6, []int{78} } func (m *StatementDiagnosticsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3513,7 +3513,7 @@ func (m *JobRegistryStatusRequest) Reset() { *m = JobRegistryStatusReque func (m *JobRegistryStatusRequest) String() string { return proto.CompactTextString(m) } func (*JobRegistryStatusRequest) ProtoMessage() {} func (*JobRegistryStatusRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{79} + return fileDescriptor_status_671ac8d2880d1eb6, []int{79} } func (m *JobRegistryStatusRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3547,7 +3547,7 @@ func (m *JobRegistryStatusResponse) Reset() { *m = JobRegistryStatusResp func (m *JobRegistryStatusResponse) String() string { return proto.CompactTextString(m) } func (*JobRegistryStatusResponse) ProtoMessage() {} func (*JobRegistryStatusResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{80} + return fileDescriptor_status_671ac8d2880d1eb6, []int{80} } func (m *JobRegistryStatusResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3580,7 +3580,7 @@ func (m *JobRegistryStatusResponse_Job) Reset() { *m = JobRegistryStatus func (m *JobRegistryStatusResponse_Job) String() string { return proto.CompactTextString(m) } func (*JobRegistryStatusResponse_Job) ProtoMessage() {} func (*JobRegistryStatusResponse_Job) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{80, 0} + return fileDescriptor_status_671ac8d2880d1eb6, []int{80, 0} } func (m *JobRegistryStatusResponse_Job) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3613,7 +3613,7 @@ func (m *JobStatusRequest) Reset() { *m = JobStatusRequest{} } func (m *JobStatusRequest) String() string { return proto.CompactTextString(m) } func (*JobStatusRequest) ProtoMessage() {} func (*JobStatusRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{81} + return fileDescriptor_status_671ac8d2880d1eb6, []int{81} } func (m *JobStatusRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3646,7 +3646,7 @@ func (m *JobStatusResponse) Reset() { *m = JobStatusResponse{} } func (m *JobStatusResponse) String() string { return proto.CompactTextString(m) } func (*JobStatusResponse) ProtoMessage() {} func (*JobStatusResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_status_12bae1dbe68ada79, []int{82} + return fileDescriptor_status_671ac8d2880d1eb6, []int{82} } func (m *JobStatusResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3671,6 +3671,75 @@ func (m *JobStatusResponse) XXX_DiscardUnknown() { var xxx_messageInfo_JobStatusResponse proto.InternalMessageInfo +// Request object for issuing a SQL stats reset request. +type SQLStatisticsResetRequest struct { + NodeID string `protobuf:"bytes,1,opt,name=node_id,json=nodeId,proto3" json:"node_id,omitempty"` +} + +func (m *SQLStatisticsResetRequest) Reset() { *m = SQLStatisticsResetRequest{} } +func (m *SQLStatisticsResetRequest) String() string { return proto.CompactTextString(m) } +func (*SQLStatisticsResetRequest) ProtoMessage() {} +func (*SQLStatisticsResetRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_status_671ac8d2880d1eb6, []int{83} +} +func (m *SQLStatisticsResetRequest) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *SQLStatisticsResetRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + b = b[:cap(b)] + n, err := m.MarshalTo(b) + if err != nil { + return nil, err + } + return b[:n], nil +} +func (dst *SQLStatisticsResetRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_SQLStatisticsResetRequest.Merge(dst, src) +} +func (m *SQLStatisticsResetRequest) XXX_Size() int { + return m.Size() +} +func (m *SQLStatisticsResetRequest) XXX_DiscardUnknown() { + xxx_messageInfo_SQLStatisticsResetRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_SQLStatisticsResetRequest proto.InternalMessageInfo + +// Response object returned by SQLStatisticsReset. +type SQLStatisticsResetResponse struct { + // Number of nodes that have resetted their SQL stats. + NumOfNodesResetted int32 `protobuf:"varint,1,opt,name=num_of_nodes_resetted,json=numOfNodesResetted,proto3" json:"num_of_nodes_resetted,omitempty"` +} + +func (m *SQLStatisticsResetResponse) Reset() { *m = SQLStatisticsResetResponse{} } +func (m *SQLStatisticsResetResponse) String() string { return proto.CompactTextString(m) } +func (*SQLStatisticsResetResponse) ProtoMessage() {} +func (*SQLStatisticsResetResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_status_671ac8d2880d1eb6, []int{84} +} +func (m *SQLStatisticsResetResponse) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *SQLStatisticsResetResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + b = b[:cap(b)] + n, err := m.MarshalTo(b) + if err != nil { + return nil, err + } + return b[:n], nil +} +func (dst *SQLStatisticsResetResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_SQLStatisticsResetResponse.Merge(dst, src) +} +func (m *SQLStatisticsResetResponse) XXX_Size() int { + return m.Size() +} +func (m *SQLStatisticsResetResponse) XXX_DiscardUnknown() { + xxx_messageInfo_SQLStatisticsResetResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_SQLStatisticsResetResponse proto.InternalMessageInfo + func init() { proto.RegisterType((*CertificatesRequest)(nil), "cockroach.server.serverpb.CertificatesRequest") proto.RegisterType((*CertificateDetails)(nil), "cockroach.server.serverpb.CertificateDetails") @@ -3772,6 +3841,8 @@ func init() { proto.RegisterType((*JobRegistryStatusResponse_Job)(nil), "cockroach.server.serverpb.JobRegistryStatusResponse.Job") proto.RegisterType((*JobStatusRequest)(nil), "cockroach.server.serverpb.JobStatusRequest") proto.RegisterType((*JobStatusResponse)(nil), "cockroach.server.serverpb.JobStatusResponse") + proto.RegisterType((*SQLStatisticsResetRequest)(nil), "cockroach.server.serverpb.SQLStatisticsResetRequest") + proto.RegisterType((*SQLStatisticsResetResponse)(nil), "cockroach.server.serverpb.SQLStatisticsResetResponse") proto.RegisterEnum("cockroach.server.serverpb.StacksType", StacksType_name, StacksType_value) proto.RegisterEnum("cockroach.server.serverpb.FileType", FileType_name, FileType_value) proto.RegisterEnum("cockroach.server.serverpb.CertificateDetails_CertificateType", CertificateDetails_CertificateType_name, CertificateDetails_CertificateType_value) @@ -3931,6 +4002,7 @@ type StatusClient interface { StatementDiagnostics(ctx context.Context, in *StatementDiagnosticsRequest, opts ...grpc.CallOption) (*StatementDiagnosticsResponse, error) JobRegistryStatus(ctx context.Context, in *JobRegistryStatusRequest, opts ...grpc.CallOption) (*JobRegistryStatusResponse, error) JobStatus(ctx context.Context, in *JobStatusRequest, opts ...grpc.CallOption) (*JobStatusResponse, error) + SQLStatisticsReset(ctx context.Context, in *SQLStatisticsResetRequest, opts ...grpc.CallOption) (*SQLStatisticsResetResponse, error) } type statusClient struct { @@ -4256,6 +4328,15 @@ func (c *statusClient) JobStatus(ctx context.Context, in *JobStatusRequest, opts return out, nil } +func (c *statusClient) SQLStatisticsReset(ctx context.Context, in *SQLStatisticsResetRequest, opts ...grpc.CallOption) (*SQLStatisticsResetResponse, error) { + out := new(SQLStatisticsResetResponse) + err := c.cc.Invoke(ctx, "/cockroach.server.serverpb.Status/SQLStatisticsReset", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + // StatusServer is the server API for Status service. type StatusServer interface { // Certificates retrieves a copy of the TLS certificates. @@ -4371,6 +4452,7 @@ type StatusServer interface { StatementDiagnostics(context.Context, *StatementDiagnosticsRequest) (*StatementDiagnosticsResponse, error) JobRegistryStatus(context.Context, *JobRegistryStatusRequest) (*JobRegistryStatusResponse, error) JobStatus(context.Context, *JobStatusRequest) (*JobStatusResponse, error) + SQLStatisticsReset(context.Context, *SQLStatisticsResetRequest) (*SQLStatisticsResetResponse, error) } func RegisterStatusServer(s *grpc.Server, srv StatusServer) { @@ -5007,6 +5089,24 @@ func _Status_JobStatus_Handler(srv interface{}, ctx context.Context, dec func(in return interceptor(ctx, in, info, handler) } +func _Status_SQLStatisticsReset_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(SQLStatisticsResetRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(StatusServer).SQLStatisticsReset(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/cockroach.server.serverpb.Status/SQLStatisticsReset", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(StatusServer).SQLStatisticsReset(ctx, req.(*SQLStatisticsResetRequest)) + } + return interceptor(ctx, in, info, handler) +} + var _Status_serviceDesc = grpc.ServiceDesc{ ServiceName: "cockroach.server.serverpb.Status", HandlerType: (*StatusServer)(nil), @@ -5151,6 +5251,10 @@ var _Status_serviceDesc = grpc.ServiceDesc{ MethodName: "JobStatus", Handler: _Status_JobStatus_Handler, }, + { + MethodName: "SQLStatisticsReset", + Handler: _Status_SQLStatisticsReset_Handler, + }, }, Streams: []grpc.StreamDesc{}, Metadata: "server/serverpb/status.proto", @@ -8929,6 +9033,53 @@ func (m *JobStatusResponse) MarshalTo(dAtA []byte) (int, error) { return i, nil } +func (m *SQLStatisticsResetRequest) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalTo(dAtA) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *SQLStatisticsResetRequest) MarshalTo(dAtA []byte) (int, error) { + var i int + _ = i + var l int + _ = l + if len(m.NodeID) > 0 { + dAtA[i] = 0xa + i++ + i = encodeVarintStatus(dAtA, i, uint64(len(m.NodeID))) + i += copy(dAtA[i:], m.NodeID) + } + return i, nil +} + +func (m *SQLStatisticsResetResponse) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalTo(dAtA) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *SQLStatisticsResetResponse) MarshalTo(dAtA []byte) (int, error) { + var i int + _ = i + var l int + _ = l + if m.NumOfNodesResetted != 0 { + dAtA[i] = 0x8 + i++ + i = encodeVarintStatus(dAtA, i, uint64(m.NumOfNodesResetted)) + } + return i, nil +} + func encodeVarintStatus(dAtA []byte, offset int, v uint64) int { for v >= 1<<7 { dAtA[offset] = uint8(v&0x7f | 0x80) @@ -10760,6 +10911,31 @@ func (m *JobStatusResponse) Size() (n int) { return n } +func (m *SQLStatisticsResetRequest) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.NodeID) + if l > 0 { + n += 1 + l + sovStatus(uint64(l)) + } + return n +} + +func (m *SQLStatisticsResetResponse) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.NumOfNodesResetted != 0 { + n += 1 + sovStatus(uint64(m.NumOfNodesResetted)) + } + return n +} + func sovStatus(x uint64) (n int) { for { n++ @@ -22942,6 +23118,154 @@ func (m *JobStatusResponse) Unmarshal(dAtA []byte) error { } return nil } +func (m *SQLStatisticsResetRequest) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowStatus + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: SQLStatisticsResetRequest: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: SQLStatisticsResetRequest: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field NodeID", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowStatus + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthStatus + } + postIndex := iNdEx + intStringLen + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.NodeID = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipStatus(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthStatus + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *SQLStatisticsResetResponse) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowStatus + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: SQLStatisticsResetResponse: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: SQLStatisticsResetResponse: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field NumOfNodesResetted", wireType) + } + m.NumOfNodesResetted = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowStatus + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.NumOfNodesResetted |= (int32(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + default: + iNdEx = preIndex + skippy, err := skipStatus(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthStatus + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func skipStatus(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 @@ -23048,405 +23372,410 @@ var ( ) func init() { - proto.RegisterFile("server/serverpb/status.proto", fileDescriptor_status_12bae1dbe68ada79) -} - -var fileDescriptor_status_12bae1dbe68ada79 = []byte{ - // 6321 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x5c, 0x7d, 0x6c, 0x24, 0xc9, - 0x55, 0xdf, 0xf6, 0x8c, 0xc7, 0x33, 0x6f, 0xfc, 0x31, 0x2e, 0x7f, 0xec, 0xec, 0xec, 0x9e, 0xbd, - 0xd7, 0x7b, 0xb7, 0xe7, 0xdd, 0xbb, 0x9b, 0xb9, 0xdb, 0xfb, 0xcc, 0x91, 0xbb, 0x9c, 0xbf, 0x6e, - 0xd7, 0xbb, 0xbe, 0x5d, 0x5f, 0xdb, 0x26, 0xe8, 0x12, 0x32, 0xf4, 0x4c, 0x97, 0x67, 0x7b, 0xdd, - 0xd3, 0x3d, 0xee, 0xee, 0x31, 0x9e, 0x1c, 0x17, 0xc2, 0xf1, 0x15, 0x42, 0xc8, 0x27, 0x48, 0x41, - 0x42, 0x22, 0xba, 0x3f, 0x08, 0x02, 0x81, 0x82, 0x90, 0x10, 0x48, 0x01, 0x22, 0x84, 0x20, 0x08, - 0x09, 0x45, 0x82, 0x3f, 0x22, 0x90, 0x1c, 0x70, 0xf8, 0x03, 0x89, 0x3f, 0xf8, 0x3f, 0x12, 0x12, - 0xaa, 0x57, 0xd5, 0x3d, 0xd5, 0x33, 0xe3, 0x9e, 0xb1, 0x7d, 0x7b, 0xe1, 0x8f, 0x5d, 0x77, 0x7d, - 0xbd, 0xfa, 0xd5, 0xab, 0x57, 0xaf, 0x5e, 0xbd, 0x7a, 0x35, 0x70, 0xc9, 0xa3, 0xee, 0x3e, 0x75, - 0x4b, 0xfc, 0x4f, 0xa3, 0x52, 0xf2, 0x7c, 0xdd, 0x6f, 0x7a, 0xc5, 0x86, 0xeb, 0xf8, 0x0e, 0xb9, - 0x50, 0x75, 0xaa, 0xbb, 0xae, 0xa3, 0x57, 0xef, 0x17, 0x79, 0x85, 0x62, 0x50, 0xaf, 0x90, 0xab, - 0x34, 0x4d, 0xcb, 0x28, 0x99, 0xf6, 0x8e, 0xc3, 0x2b, 0x17, 0xa6, 0x6a, 0x8e, 0xe7, 0x99, 0x8d, - 0x12, 0xff, 0x23, 0x32, 0x67, 0x1f, 0x38, 0x15, 0xaf, 0xc4, 0xfe, 0x6b, 0x54, 0xf0, 0x8f, 0xc8, - 0x3f, 0x8f, 0x54, 0x1b, 0x95, 0x92, 0xde, 0x68, 0x94, 0x59, 0x9f, 0x41, 0x01, 0x09, 0x0a, 0x0c, - 0xdd, 0xd7, 0x03, 0x22, 0x41, 0x5e, 0x9d, 0xfa, 0xba, 0x94, 0x7f, 0x43, 0x80, 0x37, 0x4c, 0xbd, - 0x66, 0x3b, 0x9e, 0x6f, 0x56, 0x3d, 0xf9, 0x9b, 0x11, 0x69, 0xa7, 0x44, 0x9b, 0x2b, 0xc1, 0x80, - 0x71, 0x9c, 0xe2, 0x4f, 0xc7, 0xb8, 0x0b, 0x8f, 0x7a, 0x7b, 0x56, 0xa9, 0xea, 0xd8, 0x3e, 0xb5, - 0x7d, 0xd3, 0xb1, 0x1b, 0x15, 0x29, 0x21, 0xaa, 0x3c, 0xe2, 0xf9, 0x8e, 0xab, 0xd7, 0x68, 0x89, - 0xda, 0x35, 0xd3, 0xa6, 0x8d, 0x8a, 0xf8, 0x10, 0xc5, 0x17, 0xbb, 0x8a, 0xeb, 0xfb, 0xd5, 0xaa, - 0x28, 0x9c, 0xeb, 0x2a, 0x74, 0x9d, 0xea, 0xae, 0x67, 0x54, 0x44, 0xf9, 0xb5, 0xdd, 0xfd, 0xd2, - 0xee, 0xbe, 0x00, 0x1a, 0x7c, 0x34, 0x2a, 0x25, 0x8b, 0xea, 0x1e, 0x2d, 0x47, 0x90, 0xaa, 0xc7, - 0x54, 0x65, 0x95, 0x02, 0x2c, 0x45, 0xb9, 0x8e, 0x65, 0xee, 0x53, 0x9b, 0x7a, 0x5e, 0xf8, 0xc1, - 0xe8, 0x8a, 0x4f, 0x51, 0x3f, 0xdf, 0xf4, 0x4d, 0xab, 0x64, 0x39, 0x35, 0xf6, 0x8f, 0x15, 0x3b, - 0x35, 0x51, 0x52, 0xc0, 0x92, 0xa6, 0xed, 0x52, 0xcf, 0xb1, 0xf6, 0xa9, 0x51, 0xd6, 0x0d, 0xc3, - 0x0d, 0x06, 0x45, 0xfd, 0xaa, 0x51, 0x72, 0xf5, 0x1d, 0xbf, 0xb4, 0xff, 0x1c, 0xfe, 0x65, 0xe3, - 0xd2, 0x77, 0x7c, 0x51, 0x3e, 0x5d, 0x73, 0x6a, 0x0e, 0x7e, 0x96, 0xd8, 0x97, 0xc8, 0xbd, 0x54, - 0x73, 0x9c, 0x9a, 0x45, 0x4b, 0x7a, 0xc3, 0x2c, 0xe9, 0xb6, 0xed, 0xf8, 0x3a, 0xe3, 0x71, 0x80, - 0x64, 0x5e, 0x94, 0x62, 0xaa, 0xd2, 0xdc, 0x29, 0xf9, 0x66, 0x9d, 0x7a, 0xbe, 0x5e, 0x17, 0xe2, - 0xa5, 0x16, 0x61, 0x6a, 0x99, 0xba, 0xbe, 0xb9, 0x63, 0x56, 0x75, 0x9f, 0x7a, 0x1a, 0xdd, 0x6b, - 0x52, 0xcf, 0x27, 0xe7, 0x61, 0xc4, 0x76, 0x0c, 0x5a, 0x36, 0x8d, 0xbc, 0x72, 0x59, 0x59, 0xc8, - 0x68, 0x29, 0x96, 0x5c, 0x33, 0xd4, 0xff, 0x4d, 0x02, 0x91, 0x1a, 0xac, 0x50, 0x5f, 0x37, 0x2d, - 0x8f, 0xbc, 0x05, 0x49, 0xbf, 0xd5, 0xa0, 0x58, 0x79, 0xfc, 0xc6, 0xab, 0xc5, 0x63, 0xc5, 0xbe, - 0xd8, 0xdd, 0x58, 0xce, 0xda, 0x6a, 0x35, 0xa8, 0x86, 0xa4, 0xc8, 0x15, 0x18, 0xa3, 0xae, 0xeb, - 0xb8, 0xe5, 0x3a, 0xf5, 0x3c, 0xbd, 0x46, 0xf3, 0x43, 0x08, 0x64, 0x14, 0x33, 0xdf, 0xe4, 0x79, - 0x84, 0x40, 0x92, 0x89, 0x73, 0x3e, 0x71, 0x59, 0x59, 0x18, 0xd5, 0xf0, 0x9b, 0x68, 0x90, 0xda, - 0x31, 0xa9, 0x65, 0x78, 0xf9, 0xe4, 0xe5, 0xc4, 0x42, 0xf6, 0xc6, 0xf3, 0x27, 0x43, 0xf3, 0x06, - 0xb6, 0x5d, 0x4a, 0x7e, 0xf7, 0x70, 0xfe, 0x9c, 0x26, 0x28, 0x15, 0xfe, 0x74, 0x08, 0x52, 0xbc, - 0x80, 0xcc, 0x42, 0xca, 0xf4, 0xbc, 0x26, 0x75, 0x03, 0xce, 0xf0, 0x14, 0xc9, 0xc3, 0x88, 0xd7, - 0xac, 0x3c, 0xa0, 0x55, 0x5f, 0x20, 0x0d, 0x92, 0xe4, 0x11, 0x80, 0x7d, 0xdd, 0x32, 0x8d, 0xf2, - 0x8e, 0xeb, 0xd4, 0x11, 0x6a, 0x42, 0xcb, 0x60, 0xce, 0x1b, 0xae, 0x53, 0x27, 0xf3, 0x90, 0xe5, - 0xc5, 0x4d, 0xdb, 0x37, 0xad, 0x7c, 0x12, 0xcb, 0x79, 0x8b, 0x6d, 0x96, 0x43, 0x2e, 0x41, 0x86, - 0x89, 0x09, 0xf5, 0x3c, 0xea, 0xe5, 0x87, 0x2f, 0x27, 0x16, 0x32, 0x5a, 0x3b, 0x83, 0x94, 0x60, - 0xca, 0x33, 0x6b, 0xb6, 0xee, 0x37, 0x5d, 0x5a, 0xd6, 0xad, 0x9a, 0xe3, 0x9a, 0xfe, 0xfd, 0x7a, - 0x3e, 0x85, 0x18, 0x48, 0x58, 0xb4, 0x18, 0x94, 0x30, 0x38, 0x8d, 0x66, 0xc5, 0x32, 0xab, 0xe5, - 0x5d, 0xda, 0xca, 0x8f, 0x60, 0xbd, 0x0c, 0xcf, 0xb9, 0x43, 0x5b, 0xe4, 0x22, 0x64, 0x76, 0x69, - 0xab, 0xdc, 0x44, 0x9e, 0xa7, 0xb1, 0xb7, 0xf4, 0x2e, 0x6d, 0x6d, 0x23, 0xbf, 0x9f, 0x02, 0x42, - 0x0f, 0x7c, 0x6a, 0x1b, 0xd4, 0x28, 0xb7, 0x6b, 0x65, 0xb0, 0x56, 0x2e, 0x28, 0xb9, 0x23, 0x6a, - 0xab, 0x6f, 0xc1, 0x44, 0xc7, 0xdc, 0x92, 0x14, 0x0c, 0x2d, 0x2f, 0xe6, 0xce, 0x91, 0x34, 0x24, - 0xef, 0xde, 0x5b, 0x59, 0xcd, 0x29, 0x64, 0x0c, 0x32, 0xcb, 0xeb, 0x6b, 0xab, 0x77, 0xb7, 0xca, - 0xcb, 0x8b, 0xb9, 0x21, 0x02, 0x90, 0xe2, 0xc9, 0x5c, 0x82, 0x64, 0x60, 0x78, 0x7b, 0x8d, 0x65, - 0x27, 0x59, 0xbb, 0xed, 0xb5, 0xdc, 0xb0, 0xea, 0xc0, 0x74, 0x54, 0x5e, 0xbd, 0x86, 0x63, 0x7b, - 0x94, 0x7c, 0x1c, 0x46, 0xab, 0x52, 0x7e, 0x5e, 0xc1, 0xa9, 0x7f, 0xfa, 0x44, 0x53, 0x2f, 0xe6, - 0x3c, 0x42, 0x48, 0x2d, 0xc1, 0xb8, 0x28, 0xee, 0xb7, 0x36, 0x6e, 0x27, 0xd3, 0x43, 0xb9, 0x84, - 0x7a, 0x17, 0x60, 0xb3, 0xe5, 0xf9, 0xb4, 0xbe, 0x66, 0xef, 0x38, 0x6c, 0x72, 0x3d, 0x4c, 0x95, - 0x99, 0xa2, 0x17, 0x0d, 0xc0, 0x8b, 0x54, 0xd8, 0xa5, 0xae, 0x4d, 0x2d, 0x5e, 0x81, 0x8b, 0x0e, - 0xf0, 0x2c, 0x56, 0x41, 0xfd, 0x42, 0x02, 0x26, 0x42, 0x04, 0x62, 0xb4, 0x6f, 0x47, 0x21, 0x0c, - 0x2f, 0x2d, 0x1e, 0x1d, 0xce, 0xa7, 0xee, 0x32, 0x18, 0x2b, 0x3f, 0x3a, 0x9c, 0x7f, 0xae, 0x66, - 0xfa, 0xf7, 0x9b, 0x95, 0x62, 0xd5, 0xa9, 0x97, 0x42, 0x06, 0x18, 0x95, 0xf6, 0x77, 0xa9, 0xb1, - 0x5b, 0x2b, 0x89, 0x3d, 0xa1, 0xc8, 0x9b, 0x05, 0xa3, 0x20, 0xaf, 0xc1, 0x88, 0x10, 0x2e, 0x04, - 0x93, 0xbd, 0x31, 0x27, 0x31, 0x91, 0xa9, 0xaf, 0xe2, 0x76, 0xa8, 0xbe, 0x16, 0x0d, 0xc3, 0x15, - 0x5c, 0x0b, 0x1a, 0x91, 0x57, 0x00, 0x70, 0x67, 0xe3, 0xe3, 0x49, 0x20, 0x89, 0x19, 0x89, 0x04, - 0x16, 0x16, 0xd9, 0xd0, 0x44, 0xcb, 0x0c, 0xe6, 0x20, 0x33, 0xd6, 0xa3, 0xdc, 0x4a, 0x62, 0xe3, - 0xc7, 0x63, 0x26, 0xb1, 0xcd, 0x69, 0x41, 0x4c, 0x66, 0xed, 0x26, 0x64, 0xbd, 0x3d, 0xab, 0x1c, - 0x8c, 0x66, 0x78, 0xa0, 0xd1, 0x10, 0x46, 0xe6, 0xe8, 0x70, 0x1e, 0x36, 0xdf, 0x5a, 0x5f, 0xe4, - 0x2d, 0x35, 0xf0, 0xf6, 0x2c, 0xf1, 0xad, 0x8e, 0xc3, 0x28, 0x63, 0x58, 0x20, 0x0d, 0xea, 0xef, - 0x26, 0x60, 0x4c, 0x64, 0x88, 0xc9, 0xb9, 0x05, 0xc3, 0x8c, 0x95, 0x81, 0x0c, 0x3e, 0xd5, 0x03, - 0x3e, 0xdf, 0x80, 0x82, 0xad, 0x13, 0x67, 0x60, 0x13, 0x13, 0x62, 0x14, 0x9c, 0x00, 0xf9, 0x2b, - 0x05, 0xa6, 0x82, 0xad, 0xa5, 0x5c, 0x69, 0x95, 0x83, 0x39, 0x1f, 0x42, 0xc2, 0xaf, 0xc5, 0xf0, - 0x25, 0x82, 0xa8, 0xb8, 0x2e, 0x68, 0x2c, 0xb5, 0x70, 0xae, 0x8d, 0x55, 0xdb, 0x77, 0x5b, 0x4b, - 0xf7, 0xc4, 0x48, 0x73, 0x1d, 0xc5, 0x2b, 0xef, 0xfd, 0xe0, 0x74, 0x12, 0x94, 0xb3, 0x3a, 0xfa, - 0x29, 0xbc, 0xa7, 0xc0, 0x4c, 0xcf, 0xce, 0x49, 0x0e, 0x12, 0x4c, 0xfb, 0xa0, 0xf4, 0x6a, 0xec, - 0x93, 0x6c, 0xc2, 0xf0, 0xbe, 0x6e, 0x35, 0xb9, 0x9e, 0x8f, 0xee, 0x21, 0xbb, 0xfb, 0xc5, 0x60, - 0xfb, 0x2d, 0x86, 0x5b, 0x6d, 0x7b, 0xfb, 0xc5, 0xfe, 0x83, 0x6e, 0x38, 0x1f, 0x35, 0x4e, 0xeb, - 0x95, 0xa1, 0x97, 0x15, 0xf5, 0x2a, 0x64, 0x59, 0x85, 0xbe, 0x5b, 0xdb, 0xb7, 0x92, 0x90, 0xd1, - 0xf4, 0x1d, 0x9f, 0x51, 0x60, 0x9a, 0x0e, 0x5c, 0xda, 0xb0, 0xcc, 0xaa, 0x1e, 0xd4, 0x4c, 0x2e, - 0x8d, 0x1d, 0x1d, 0xce, 0x67, 0x34, 0x9e, 0xbb, 0xb6, 0xa2, 0x65, 0x44, 0x85, 0x35, 0x83, 0xbc, - 0x08, 0x70, 0x5f, 0x77, 0x0d, 0x34, 0x2d, 0xa8, 0x58, 0x37, 0x93, 0x45, 0xbe, 0x87, 0x17, 0x6f, - 0xe9, 0xae, 0x81, 0x44, 0x03, 0x81, 0xbf, 0x1f, 0x64, 0xb0, 0xfd, 0xcb, 0xa2, 0xba, 0x81, 0xcb, - 0x24, 0xa9, 0xe1, 0x37, 0x99, 0x86, 0x61, 0x4e, 0x26, 0x89, 0xf0, 0x78, 0x82, 0x6d, 0x2f, 0x7a, - 0xa3, 0x61, 0x99, 0xd4, 0x40, 0x41, 0x4e, 0x6a, 0x41, 0x92, 0x6c, 0x41, 0xba, 0xe1, 0x3a, 0x35, - 0x94, 0xf1, 0x14, 0x4a, 0xc6, 0x8d, 0x18, 0xc9, 0x08, 0x47, 0x58, 0xdc, 0x10, 0x8d, 0xb8, 0x34, - 0x70, 0x68, 0x21, 0x25, 0xf2, 0x04, 0x4c, 0x30, 0x34, 0x65, 0xdf, 0xd5, 0x6d, 0x6f, 0x87, 0xba, - 0x94, 0xe2, 0x56, 0x91, 0xd4, 0xc6, 0x59, 0xf6, 0x56, 0x98, 0x5b, 0xf8, 0x0d, 0x05, 0xd2, 0x01, - 0x29, 0x86, 0xbd, 0xae, 0xfb, 0xd5, 0xfb, 0x9c, 0x61, 0x1a, 0x4f, 0xb0, 0x51, 0xda, 0xf4, 0x80, - 0xef, 0x8b, 0x49, 0x0d, 0xbf, 0xdb, 0xa3, 0x4c, 0xc8, 0xa3, 0x9c, 0x85, 0x54, 0x43, 0x6f, 0x7a, - 0xd4, 0xc0, 0xc1, 0xa7, 0x35, 0x91, 0x22, 0xd7, 0x20, 0xd7, 0xa0, 0xb6, 0x61, 0xda, 0xb5, 0xb2, - 0x67, 0xeb, 0x0d, 0xef, 0xbe, 0xe3, 0x0b, 0x36, 0x4c, 0x88, 0xfc, 0x4d, 0x91, 0x5d, 0x78, 0x00, - 0x63, 0x91, 0x91, 0xc9, 0xa2, 0x96, 0xe4, 0xa2, 0xb6, 0x2c, 0x8b, 0x5a, 0xfc, 0x2e, 0xd1, 0xcd, - 0x2e, 0x59, 0xb4, 0x8e, 0x86, 0x60, 0x4c, 0xd3, 0xed, 0x1a, 0xdd, 0x70, 0x9d, 0x8a, 0x45, 0xeb, - 0x1e, 0xb9, 0x0c, 0xd9, 0xa6, 0xad, 0xef, 0xeb, 0xa6, 0xa5, 0x57, 0x2c, 0x6e, 0x0f, 0xa5, 0x35, - 0x39, 0x8b, 0xbc, 0x00, 0xe7, 0x19, 0x07, 0xa9, 0x5b, 0xb6, 0x1d, 0xbf, 0xcc, 0x2d, 0xd2, 0xfb, - 0x8e, 0x65, 0x50, 0x17, 0xe1, 0xa4, 0xb5, 0x69, 0x5e, 0x7c, 0xd7, 0xf1, 0xd7, 0x59, 0xe1, 0x2d, - 0x2c, 0x23, 0x8f, 0xc1, 0xb8, 0xed, 0x94, 0x99, 0x44, 0x95, 0x79, 0x39, 0x32, 0x2e, 0xad, 0x8d, - 0xda, 0x0e, 0xc3, 0xb8, 0x8e, 0x79, 0x64, 0x01, 0x26, 0x9a, 0xb6, 0x41, 0x5d, 0x21, 0x99, 0x7e, - 0xc8, 0xc8, 0xce, 0x6c, 0x72, 0x01, 0xd2, 0xb6, 0xc3, 0xbb, 0x47, 0x4e, 0xa6, 0xb5, 0x11, 0xdb, - 0xc1, 0x0e, 0xc9, 0xcb, 0x90, 0xdf, 0x6b, 0x9a, 0xd4, 0xab, 0x52, 0xdb, 0x2f, 0xd3, 0xbd, 0xa6, - 0x6e, 0x79, 0x65, 0xdf, 0xac, 0xee, 0x9a, 0x76, 0x0d, 0xcd, 0x8a, 0xb4, 0x36, 0x1b, 0x96, 0xaf, - 0x62, 0xf1, 0x16, 0x2f, 0x25, 0x4f, 0x02, 0xe1, 0x08, 0x9d, 0x5a, 0xd9, 0x77, 0x9c, 0xb2, 0xa5, - 0xbb, 0x35, 0x2e, 0x37, 0x69, 0x6d, 0x82, 0x95, 0xac, 0x3b, 0xb5, 0x2d, 0xc7, 0x59, 0x67, 0xd9, - 0xe4, 0x2a, 0x8c, 0x3b, 0xfb, 0x11, 0xa8, 0x69, 0xac, 0xd8, 0x91, 0xab, 0xee, 0xc2, 0x04, 0xf2, - 0x98, 0x4d, 0x83, 0x89, 0x27, 0x11, 0x66, 0x86, 0xec, 0x35, 0xa9, 0x6b, 0x52, 0xaf, 0xdc, 0xa0, - 0x6e, 0xd9, 0xa3, 0x55, 0xc7, 0xe6, 0x8b, 0x54, 0xd1, 0x72, 0xa2, 0x64, 0x83, 0xba, 0x9b, 0x98, - 0x4f, 0xae, 0xc3, 0xe4, 0xcf, 0xba, 0xa6, 0x1f, 0xad, 0x3c, 0x84, 0x95, 0x27, 0x78, 0x41, 0x58, - 0x57, 0xbd, 0x05, 0xb0, 0xe1, 0x52, 0xdf, 0x6f, 0x6d, 0x36, 0x74, 0x9b, 0xd9, 0x42, 0x9e, 0xaf, - 0xbb, 0x7e, 0x39, 0x10, 0xa0, 0x8c, 0x96, 0xc6, 0x0c, 0x66, 0x28, 0x9d, 0x87, 0x11, 0x6a, 0xa3, - 0x19, 0x24, 0x76, 0xed, 0x14, 0xb5, 0x99, 0xed, 0xf3, 0x4a, 0xf2, 0xbf, 0xbe, 0x31, 0xaf, 0xa8, - 0x5f, 0x48, 0x33, 0x75, 0x62, 0xd7, 0x28, 0xee, 0x45, 0x1f, 0x83, 0xa4, 0xd7, 0xd0, 0x6d, 0x24, - 0x12, 0xbf, 0xa5, 0xb5, 0xbb, 0x17, 0x6b, 0x12, 0x1b, 0x92, 0x35, 0x00, 0x64, 0xad, 0xac, 0x61, - 0x1e, 0x1b, 0x44, 0x70, 0x03, 0xa5, 0xe3, 0x86, 0xaa, 0xed, 0x0d, 0x59, 0xc1, 0x64, 0x6f, 0x5c, - 0x3f, 0x46, 0xd3, 0x8a, 0x33, 0x16, 0xd2, 0x12, 0xc3, 0x08, 0xb6, 0x27, 0xbe, 0x58, 0xeb, 0x30, - 0xee, 0x39, 0x4d, 0xb7, 0x4a, 0xc3, 0x8d, 0x69, 0x18, 0x8d, 0x91, 0x9b, 0x47, 0x87, 0xf3, 0xa3, - 0x9b, 0x58, 0x72, 0x36, 0x93, 0x64, 0xd4, 0x6b, 0x13, 0x31, 0xc8, 0x1e, 0x4c, 0x88, 0xee, 0x18, - 0x32, 0xec, 0x2f, 0x85, 0xfd, 0xad, 0x1d, 0x1d, 0xce, 0x8f, 0xf1, 0xfe, 0x36, 0x59, 0x09, 0x76, - 0xf8, 0xfc, 0x89, 0x3a, 0x14, 0xed, 0xb4, 0x31, 0x4f, 0x22, 0x63, 0x74, 0x9f, 0x41, 0x46, 0x7a, - 0x9c, 0x41, 0x96, 0x61, 0x4c, 0xac, 0x62, 0x93, 0x01, 0x6b, 0xa1, 0xd1, 0x9c, 0xbd, 0x91, 0x97, - 0xd8, 0x1a, 0x74, 0x83, 0xeb, 0x2b, 0x30, 0x33, 0xb1, 0xd1, 0x2d, 0xde, 0x86, 0xdc, 0x46, 0x25, - 0x8e, 0x3a, 0x24, 0x9f, 0xc1, 0x69, 0x59, 0x88, 0x9d, 0x5c, 0x49, 0xe7, 0x48, 0xaa, 0x9b, 0xeb, - 0x20, 0x31, 0xbf, 0x5e, 0x1e, 0xba, 0xe6, 0xb7, 0x27, 0xa1, 0xf6, 0xc2, 0x92, 0xe7, 0xd7, 0x23, - 0x9f, 0x84, 0x31, 0x8b, 0xe9, 0x6f, 0xea, 0x95, 0x2d, 0xa7, 0xaa, 0x5b, 0xf9, 0x2c, 0xd2, 0x7b, - 0xb6, 0xaf, 0xbc, 0xac, 0xb3, 0x56, 0x6f, 0xea, 0xb6, 0x5e, 0xa3, 0xae, 0x24, 0x36, 0xa3, 0x82, - 0xda, 0x3a, 0x23, 0x46, 0x3e, 0x05, 0xe3, 0x01, 0xf5, 0x9a, 0xe5, 0x54, 0x74, 0x2b, 0x3f, 0x7a, - 0x36, 0xf2, 0x01, 0xd8, 0x9b, 0x48, 0x8d, 0x6c, 0xc3, 0xa8, 0x7c, 0xdc, 0xcf, 0x8f, 0x21, 0xf5, - 0xa7, 0xfa, 0x53, 0x67, 0x8d, 0x22, 0xd6, 0x58, 0xd6, 0x6a, 0x67, 0xb1, 0xc3, 0x58, 0xa8, 0xfc, - 0xf2, 0xe3, 0xa8, 0xb0, 0xda, 0x19, 0x6c, 0x97, 0x0e, 0x34, 0xe5, 0x04, 0x57, 0xaa, 0x22, 0xa9, - 0xfe, 0xba, 0x22, 0xb6, 0x8a, 0xbe, 0xe7, 0x08, 0xa2, 0x43, 0xc6, 0x65, 0x35, 0xcb, 0xa6, 0xe1, - 0xa1, 0xad, 0x97, 0x58, 0x5a, 0x39, 0x3a, 0x9c, 0x4f, 0xf3, 0x65, 0xb8, 0xe2, 0x9d, 0x58, 0xba, - 0x45, 0x43, 0x2d, 0x8d, 0x64, 0xd7, 0x0c, 0x4f, 0xdd, 0x82, 0xf1, 0x00, 0x8c, 0xb0, 0x5a, 0x97, - 0x20, 0x85, 0xa5, 0x81, 0xd9, 0xfa, 0x58, 0x3f, 0xa9, 0x91, 0x38, 0x2f, 0x5a, 0xaa, 0x0b, 0x30, - 0x76, 0x13, 0x7d, 0x57, 0x7d, 0x6d, 0xad, 0xf7, 0x87, 0x60, 0x62, 0x15, 0x7d, 0x37, 0x8c, 0xad, - 0x1e, 0xaa, 0xc8, 0x4f, 0x41, 0x3a, 0x5c, 0xd8, 0xfc, 0x54, 0xb3, 0x7c, 0x74, 0x38, 0x3f, 0x72, - 0xd6, 0x25, 0x3d, 0xe2, 0x89, 0xc5, 0xbc, 0x03, 0xb3, 0x6c, 0x32, 0xa8, 0xeb, 0x95, 0x75, 0xdb, - 0xe0, 0xab, 0xb5, 0xe6, 0xea, 0xf5, 0xe0, 0x9c, 0xf3, 0x8c, 0x3c, 0x62, 0x2e, 0x0e, 0xc5, 0xc0, - 0xbf, 0x54, 0xdc, 0xe2, 0x2d, 0x17, 0x6d, 0xe3, 0x56, 0xd8, 0x4e, 0x9b, 0xf6, 0x7b, 0xe4, 0x92, - 0x9b, 0x90, 0xe5, 0xcd, 0xca, 0xe8, 0x12, 0x49, 0xa0, 0x39, 0x7b, 0x35, 0x8e, 0x38, 0xe7, 0x04, - 0xfa, 0x3e, 0x80, 0x86, 0xdf, 0xea, 0xd3, 0x40, 0x24, 0x1e, 0xf5, 0xe5, 0xe9, 0x4f, 0xc3, 0x54, - 0xa4, 0xba, 0x98, 0xd8, 0x50, 0x1b, 0xf0, 0x79, 0x8d, 0xd3, 0x06, 0x1d, 0x33, 0x12, 0xd1, 0x06, - 0xea, 0xcf, 0x00, 0x6c, 0xb9, 0x7a, 0x95, 0xae, 0xee, 0x33, 0x41, 0x7f, 0x19, 0x92, 0xbe, 0x59, - 0xa7, 0x62, 0x3f, 0x2b, 0x14, 0xb9, 0x9f, 0xa9, 0x18, 0xf8, 0x99, 0x8a, 0x5b, 0x81, 0x9f, 0x69, - 0x29, 0xcd, 0x88, 0x7c, 0xf9, 0x07, 0xf3, 0x8a, 0x86, 0x2d, 0xd8, 0x12, 0x89, 0x7a, 0x74, 0x82, - 0xa4, 0xfa, 0x2d, 0x05, 0x26, 0x16, 0x2d, 0xa6, 0x6a, 0x7c, 0xc7, 0x5d, 0x71, 0x5b, 0x5a, 0xd3, - 0x66, 0x42, 0x11, 0xac, 0x05, 0xec, 0x2b, 0xc1, 0x85, 0x42, 0x48, 0xf4, 0xa9, 0x57, 0xc2, 0x88, - 0x58, 0x09, 0xe4, 0x55, 0x48, 0x51, 0x36, 0x20, 0x4f, 0x1c, 0xaa, 0xe2, 0x76, 0xe6, 0xf6, 0xf0, - 0x35, 0xd1, 0x48, 0xbd, 0x01, 0x33, 0x21, 0x62, 0xa4, 0x1d, 0xcc, 0xd2, 0x85, 0x4e, 0xdc, 0x61, - 0x97, 0xea, 0x5f, 0x28, 0x30, 0xdb, 0xd9, 0xa8, 0xf7, 0xb9, 0x3e, 0xf1, 0x41, 0x9e, 0xeb, 0x97, - 0x61, 0xc4, 0x70, 0x5b, 0x65, 0xb7, 0x69, 0x0b, 0x79, 0x8f, 0x93, 0x84, 0x8e, 0x69, 0xd0, 0x52, - 0x06, 0xfe, 0x55, 0xbf, 0xa8, 0x40, 0xae, 0x8d, 0xfd, 0xff, 0x81, 0x22, 0x7b, 0x1b, 0x26, 0x25, - 0x3c, 0x82, 0x8d, 0xab, 0x90, 0x16, 0x43, 0x1d, 0x44, 0xea, 0x3b, 0xc7, 0x3a, 0xc2, 0xc7, 0xea, - 0xa9, 0x2a, 0x8c, 0xde, 0xde, 0xbc, 0x77, 0x37, 0x24, 0x1b, 0x38, 0x1b, 0x95, 0xb6, 0xb3, 0x51, - 0xad, 0xc3, 0x58, 0x50, 0xbe, 0xca, 0x8c, 0x02, 0x76, 0xae, 0x41, 0xeb, 0x40, 0xb0, 0x82, 0x27, - 0x58, 0xd3, 0xaa, 0x63, 0x70, 0x89, 0x1f, 0xd6, 0xf0, 0x5b, 0x5e, 0x08, 0x89, 0xc8, 0x42, 0x60, - 0x25, 0x06, 0xf7, 0xf8, 0xa0, 0x0b, 0x33, 0xa3, 0x05, 0x49, 0xf5, 0x3b, 0x0a, 0x64, 0xd7, 0x9d, - 0x5a, 0xff, 0x3d, 0x64, 0x1a, 0x86, 0x2d, 0xba, 0x4f, 0x2d, 0xb1, 0xc6, 0x78, 0x82, 0x3c, 0x02, - 0xc0, 0xed, 0x59, 0x5c, 0xbb, 0xbc, 0x57, 0x6e, 0xe1, 0xb2, 0xf5, 0xca, 0x84, 0x96, 0x59, 0xb4, - 0x58, 0xc8, 0x0f, 0x9f, 0xcc, 0xc2, 0xc5, 0xa2, 0x1c, 0x24, 0xea, 0xfa, 0x01, 0x1a, 0x78, 0x19, - 0x8d, 0x7d, 0x32, 0x90, 0x0d, 0xdd, 0xf7, 0xa9, 0x6b, 0x0b, 0x5f, 0x63, 0x90, 0x64, 0x87, 0x38, - 0x97, 0x1a, 0x7a, 0xd5, 0x17, 0x96, 0xbf, 0x48, 0xdd, 0x4e, 0xa6, 0xd3, 0xb9, 0x8c, 0x7a, 0x0f, - 0xc8, 0xba, 0x53, 0x63, 0x47, 0x33, 0x53, 0xda, 0x7e, 0x3e, 0xc2, 0x8c, 0x69, 0xcc, 0x12, 0x33, - 0x76, 0xa1, 0xd3, 0x4f, 0x63, 0x39, 0xb5, 0xa2, 0x7c, 0x54, 0x0d, 0xea, 0xab, 0x45, 0x98, 0x5a, - 0x77, 0x6a, 0x6f, 0x98, 0x16, 0xf5, 0xd6, 0x4d, 0xcf, 0xef, 0xab, 0x27, 0x37, 0x60, 0x3a, 0x5a, - 0x5f, 0x40, 0x78, 0x19, 0x86, 0x77, 0x58, 0xa6, 0x00, 0x70, 0xa9, 0x17, 0x00, 0xd6, 0x4a, 0x56, - 0x8d, 0xd8, 0x40, 0xfd, 0x04, 0x8c, 0x0b, 0x8a, 0x7d, 0xe7, 0x85, 0x40, 0x92, 0xb5, 0x11, 0xd3, - 0x82, 0xdf, 0x12, 0xbf, 0x12, 0x1d, 0xfc, 0x4a, 0xe6, 0x86, 0xd5, 0x2a, 0x8c, 0x6d, 0xfa, 0x7a, - 0x75, 0xb7, 0xff, 0x9c, 0x7f, 0x44, 0x38, 0xe1, 0xb9, 0x03, 0x25, 0xd6, 0x6d, 0x86, 0x04, 0xdb, - 0xce, 0x76, 0x75, 0x13, 0x92, 0x0c, 0x3e, 0x9e, 0xd4, 0x75, 0xa1, 0xd6, 0x33, 0x1a, 0x7e, 0xb3, - 0x43, 0x10, 0x83, 0x59, 0xf6, 0xcc, 0x4f, 0x73, 0xda, 0x09, 0x2d, 0xcd, 0x32, 0x36, 0xcd, 0x4f, - 0x53, 0x52, 0x80, 0xb4, 0xb8, 0xd9, 0xf1, 0x84, 0x13, 0x3e, 0x4c, 0xab, 0xbf, 0xa3, 0xc0, 0xc4, - 0x4d, 0xea, 0x23, 0xa7, 0xfb, 0x82, 0xbf, 0x08, 0x19, 0xcb, 0xf4, 0xfc, 0xb2, 0x63, 0x5b, 0x2d, - 0x71, 0x10, 0x4e, 0xb3, 0x8c, 0x7b, 0xb6, 0xd5, 0x22, 0x2f, 0x89, 0x91, 0x0d, 0xe3, 0xc8, 0xae, - 0xc4, 0x8c, 0x8c, 0x75, 0x26, 0x5d, 0x22, 0x14, 0x20, 0x2d, 0xa4, 0x92, 0xfb, 0x46, 0x32, 0x5a, - 0x98, 0x56, 0xd7, 0x20, 0xd7, 0x46, 0x27, 0x64, 0xe0, 0x85, 0xa8, 0x0c, 0xcc, 0xf7, 0xe9, 0x29, - 0x10, 0x80, 0xf7, 0x15, 0x18, 0xdf, 0x70, 0x9d, 0x9d, 0x41, 0x24, 0x60, 0x29, 0x32, 0x96, 0x62, - 0xec, 0x49, 0x50, 0xa6, 0x58, 0x94, 0x86, 0x95, 0x87, 0x11, 0x7e, 0x8c, 0xf5, 0xf8, 0x11, 0x48, - 0x0b, 0x92, 0xea, 0x05, 0x48, 0xa2, 0x9f, 0x3d, 0x0d, 0xc9, 0x5b, 0xab, 0x8b, 0x1b, 0xb9, 0x73, - 0x64, 0x04, 0x12, 0xcb, 0x1b, 0xdb, 0x39, 0x45, 0xbd, 0x06, 0xe3, 0x6f, 0x52, 0xdf, 0x35, 0xab, - 0xfd, 0x4d, 0x89, 0x3f, 0x42, 0x63, 0x75, 0xc7, 0x47, 0x7d, 0xcb, 0xf6, 0x91, 0x87, 0xea, 0x71, - 0x7e, 0x1d, 0x86, 0x51, 0x9f, 0x0f, 0x74, 0xaa, 0xed, 0x38, 0x89, 0x62, 0x43, 0xf5, 0x3a, 0x33, - 0x67, 0x05, 0x5c, 0xae, 0x86, 0x25, 0xe5, 0xaa, 0x44, 0xad, 0x8c, 0xcf, 0x0e, 0xc1, 0x44, 0x58, - 0x59, 0x18, 0xf5, 0x0f, 0xdb, 0xca, 0xb8, 0x09, 0x29, 0xdc, 0x07, 0x02, 0x2b, 0xe3, 0x5a, 0x9f, - 0x83, 0x7b, 0x7b, 0x20, 0x81, 0x85, 0xcd, 0x9b, 0x93, 0x95, 0xc0, 0xb7, 0x9c, 0x40, 0x3a, 0x0b, - 0x83, 0xd0, 0x61, 0xdc, 0x8e, 0xf8, 0x95, 0xd5, 0x26, 0xe4, 0x58, 0xe9, 0x0a, 0xad, 0x34, 0x6b, - 0x81, 0x2c, 0x44, 0xf6, 0x6a, 0xe5, 0xa1, 0xec, 0xd5, 0xff, 0x32, 0x04, 0x93, 0x52, 0xbf, 0x62, - 0xc9, 0x7d, 0x51, 0xe9, 0x38, 0x79, 0xbc, 0xdc, 0x67, 0x50, 0x91, 0xe6, 0xbc, 0x1b, 0xe1, 0xc3, - 0xfc, 0x28, 0x1b, 0xe4, 0x7b, 0x3f, 0x38, 0x25, 0x50, 0x81, 0xe2, 0x03, 0x9b, 0xac, 0x02, 0x85, - 0xac, 0x84, 0x4e, 0xf6, 0x43, 0x26, 0xb8, 0x1f, 0xf2, 0xf5, 0xa8, 0x1f, 0xf2, 0xfa, 0x20, 0x1d, - 0x75, 0xfb, 0xb7, 0xff, 0x21, 0x09, 0x23, 0x5b, 0x07, 0x36, 0x9e, 0xa1, 0xde, 0x82, 0x21, 0x21, - 0xc2, 0xa3, 0x4b, 0x8b, 0x0c, 0xcc, 0xbf, 0x0e, 0xba, 0x36, 0xf9, 0xc5, 0x74, 0xd3, 0x34, 0x8a, - 0xdb, 0xdb, 0x6b, 0x6c, 0xe6, 0x87, 0xd6, 0x56, 0xb4, 0x21, 0xd3, 0x20, 0xaf, 0xe0, 0xf9, 0xc1, - 0xf5, 0x05, 0xc8, 0xc1, 0x4c, 0x7d, 0xde, 0x84, 0x3c, 0x01, 0x13, 0xfe, 0x81, 0x5d, 0x36, 0xa8, - 0x57, 0x75, 0xcd, 0x86, 0x6f, 0x3a, 0xb6, 0x30, 0x3a, 0xc6, 0xfd, 0x03, 0x7b, 0xa5, 0x9d, 0x4b, - 0x5e, 0x84, 0xf3, 0x76, 0xb3, 0xce, 0x9d, 0x5b, 0x75, 0xb6, 0x79, 0x94, 0xe9, 0x01, 0xad, 0x36, - 0x03, 0xff, 0xe5, 0xb0, 0x36, 0x63, 0x37, 0xeb, 0x9b, 0x61, 0xe9, 0xaa, 0x28, 0x24, 0xf3, 0x90, - 0x65, 0xed, 0x5c, 0xca, 0x4d, 0x07, 0xf4, 0x3f, 0x69, 0x60, 0x37, 0xeb, 0x1a, 0xcf, 0x21, 0x0b, - 0x90, 0x63, 0x15, 0xf4, 0xa6, 0xef, 0x84, 0xb5, 0xb8, 0xca, 0x1c, 0xb7, 0x9b, 0xf5, 0xc5, 0xa6, - 0xef, 0x04, 0x35, 0x5f, 0x87, 0xb4, 0x41, 0x75, 0xc3, 0x32, 0x6d, 0xee, 0xe6, 0x19, 0x74, 0xa8, - 0x61, 0x2b, 0xb6, 0xd9, 0x98, 0xf5, 0x86, 0x65, 0x56, 0x4d, 0x5f, 0xb8, 0x32, 0xc3, 0x34, 0x03, - 0xaa, 0x33, 0x3b, 0xb3, 0x5c, 0x69, 0xf9, 0x94, 0xbb, 0x78, 0x12, 0x1a, 0x60, 0xd6, 0x12, 0xcb, - 0x21, 0x57, 0x61, 0xa2, 0xae, 0x1f, 0x94, 0xe5, 0x4a, 0x80, 0x95, 0xc6, 0xea, 0xfa, 0xc1, 0x62, - 0xbb, 0xde, 0x45, 0xc8, 0xb8, 0x54, 0x37, 0xf8, 0x3e, 0x99, 0xe5, 0xbd, 0xb0, 0x0c, 0xdc, 0x27, - 0xaf, 0xc0, 0x98, 0xe9, 0x09, 0x3f, 0x94, 0x59, 0x15, 0x2e, 0x95, 0xb4, 0x36, 0x6a, 0x7a, 0xb7, - 0xc2, 0x3c, 0xdc, 0x13, 0x5d, 0xd3, 0x71, 0x4d, 0xbf, 0x85, 0x4e, 0x11, 0xb6, 0x27, 0x8a, 0xb4, - 0xfa, 0xdb, 0x09, 0xc8, 0x2e, 0x56, 0x7d, 0x73, 0x9f, 0xbe, 0xd5, 0xa4, 0x6e, 0x8b, 0xcc, 0x86, - 0xf2, 0x94, 0x59, 0x4a, 0x49, 0x42, 0x91, 0x83, 0x84, 0xb7, 0x17, 0x18, 0x97, 0xec, 0xb3, 0x2d, - 0x26, 0x89, 0x93, 0x8b, 0xc9, 0xe3, 0x30, 0x6e, 0x7a, 0x65, 0xc3, 0xf4, 0x7c, 0xd7, 0xac, 0x34, - 0xdb, 0x4e, 0xeb, 0x31, 0xd3, 0x5b, 0x69, 0x67, 0x92, 0x25, 0x18, 0x6e, 0xdc, 0x0f, 0xfc, 0xd5, - 0xe3, 0x3d, 0x2f, 0xd6, 0x42, 0x9b, 0xbe, 0x3d, 0x86, 0xe2, 0x06, 0x6b, 0xa3, 0xf1, 0xa6, 0x7c, - 0xf0, 0xe1, 0x65, 0x89, 0xb2, 0x30, 0x24, 0x5d, 0x79, 0x7c, 0x02, 0x52, 0x4c, 0x5a, 0x4d, 0x03, - 0xe7, 0x7f, 0x74, 0x69, 0xe5, 0x6c, 0x0b, 0x68, 0x98, 0x2d, 0xca, 0x15, 0x6d, 0xd8, 0x3f, 0xb0, - 0xd7, 0xd0, 0xdf, 0x8e, 0x97, 0x91, 0xb6, 0x63, 0xa3, 0x70, 0x64, 0xb4, 0x11, 0x6f, 0xcf, 0x5a, - 0xb4, 0x1d, 0x5b, 0x7d, 0x1c, 0x86, 0x11, 0x23, 0x19, 0x83, 0xcc, 0x86, 0xb6, 0xba, 0xb1, 0xa8, - 0xad, 0xdd, 0xbd, 0x99, 0x3b, 0xc7, 0x92, 0xab, 0x3f, 0xb5, 0xba, 0xbc, 0xbd, 0xc5, 0x92, 0x8a, - 0xfa, 0x2c, 0x4c, 0x31, 0x7b, 0x75, 0x93, 0x7a, 0x9e, 0xe9, 0xd8, 0xe1, 0x26, 0x5e, 0x80, 0x74, - 0xd3, 0xa3, 0xae, 0x64, 0xb6, 0x85, 0x69, 0xf5, 0x7f, 0x92, 0x30, 0x22, 0xea, 0x3f, 0xd4, 0x1d, - 0x5c, 0xc6, 0x30, 0x14, 0xc5, 0xc0, 0x26, 0xb7, 0x6a, 0x99, 0xd4, 0xf6, 0xc3, 0x8b, 0x58, 0xae, - 0x02, 0xc6, 0x78, 0xae, 0xb8, 0x57, 0x25, 0xd7, 0x20, 0x87, 0x17, 0x5a, 0x55, 0x8c, 0x5f, 0x29, - 0x23, 0x29, 0x7e, 0x06, 0x99, 0x90, 0xf2, 0xef, 0x32, 0x8a, 0x9b, 0x30, 0xae, 0xe3, 0xfc, 0x96, - 0x85, 0xab, 0x1f, 0x83, 0x22, 0xb2, 0x51, 0x1f, 0xcb, 0xf1, 0x02, 0x11, 0xb8, 0x0b, 0xf5, 0x30, - 0x8b, 0x2d, 0xff, 0x50, 0x7e, 0x53, 0x27, 0x97, 0xdf, 0xeb, 0x30, 0x69, 0xe9, 0x9e, 0x5f, 0x96, - 0x50, 0xb5, 0xc4, 0x24, 0x4f, 0xb0, 0x82, 0xee, 0x15, 0x95, 0x41, 0x01, 0x93, 0x57, 0x54, 0x87, - 0x82, 0x80, 0x41, 0x14, 0x44, 0xb6, 0x97, 0x82, 0x58, 0x04, 0x10, 0x38, 0xfc, 0x03, 0x5b, 0xf8, - 0x54, 0xd5, 0x38, 0xaf, 0x06, 0xdf, 0x3a, 0xb4, 0x0c, 0x6f, 0xb5, 0x75, 0x60, 0x93, 0xe7, 0x60, - 0xb6, 0x6b, 0x3c, 0x5c, 0x72, 0xb9, 0xbe, 0x98, 0xea, 0x18, 0x14, 0x93, 0xe2, 0xdb, 0xc9, 0xf4, - 0x48, 0x2e, 0xad, 0xfe, 0x9a, 0x02, 0x93, 0xb2, 0x94, 0x72, 0x6b, 0xec, 0x61, 0xca, 0xde, 0xf1, - 0xfe, 0xa4, 0xdf, 0x57, 0x60, 0x3a, 0xba, 0x62, 0x84, 0xc9, 0xb1, 0x02, 0x69, 0x4f, 0xe4, 0x09, - 0x9b, 0x23, 0x8e, 0x41, 0xa2, 0x79, 0xe0, 0x66, 0x0f, 0x5a, 0x92, 0xdb, 0x1d, 0x76, 0x42, 0x9c, - 0x3e, 0xea, 0x62, 0x49, 0xd4, 0x54, 0x50, 0xf7, 0x80, 0x2c, 0xeb, 0x76, 0x95, 0x5a, 0xc8, 0xcf, - 0xbe, 0x67, 0x88, 0xab, 0x90, 0xe6, 0x93, 0x62, 0xf2, 0x8b, 0xac, 0xcc, 0x52, 0x96, 0xd9, 0xab, - 0xd8, 0x98, 0xd9, 0x9d, 0x58, 0xd8, 0xb1, 0x2e, 0x13, 0x1d, 0xba, 0xe1, 0x26, 0x4c, 0x45, 0xba, - 0x14, 0xbc, 0x61, 0x07, 0x3a, 0xcc, 0xa6, 0x86, 0xb8, 0xbd, 0x0c, 0xd3, 0x6d, 0xdf, 0xc6, 0x90, - 0xe4, 0xdb, 0x50, 0x5b, 0x30, 0xcd, 0x09, 0x89, 0x01, 0xf6, 0x45, 0xff, 0x14, 0x80, 0x60, 0x62, - 0x80, 0x7f, 0x94, 0x5f, 0xad, 0x0b, 0x02, 0x6b, 0x2b, 0x5a, 0x46, 0x54, 0xe8, 0x33, 0x86, 0x35, - 0x98, 0xe9, 0xe8, 0xfa, 0xd4, 0xa3, 0x78, 0x04, 0x2e, 0xb2, 0x49, 0x5a, 0x0e, 0xc3, 0x14, 0xd1, - 0xd1, 0x17, 0x86, 0x79, 0x7c, 0x45, 0x81, 0x0b, 0xbd, 0xca, 0x7f, 0x9c, 0xf2, 0xfd, 0x1d, 0x05, - 0x2e, 0xf5, 0xc6, 0x2c, 0xb8, 0xb0, 0x1e, 0x3a, 0x37, 0xb9, 0x9b, 0x36, 0x72, 0xd8, 0xdc, 0xb3, - 0x8a, 0x72, 0x80, 0x66, 0x71, 0x93, 0xba, 0xa6, 0x6e, 0x99, 0x9f, 0xa6, 0x86, 0x46, 0x6b, 0x6c, - 0xd7, 0x6d, 0x85, 0x32, 0x8a, 0x34, 0x88, 0xd6, 0x21, 0xef, 0xcf, 0xf7, 0x91, 0xf7, 0x9e, 0xac, - 0xea, 0x90, 0xfb, 0x7f, 0x53, 0x20, 0xb7, 0xd9, 0xd0, 0xed, 0x88, 0x87, 0xfb, 0x4a, 0x87, 0xe0, - 0x2c, 0x41, 0x9b, 0x9b, 0x21, 0x5b, 0x34, 0xf9, 0x6a, 0x96, 0xcb, 0xd0, 0x0b, 0x3f, 0x3a, 0x9c, - 0x7f, 0xf6, 0x64, 0xa6, 0xff, 0x1d, 0xda, 0x92, 0x6e, 0x74, 0xef, 0xb6, 0x6f, 0x74, 0x13, 0x67, - 0xa1, 0x28, 0x2e, 0x82, 0xd5, 0x3f, 0x57, 0x60, 0x52, 0x1a, 0x5d, 0x38, 0x2b, 0x59, 0xdf, 0xf1, - 0x75, 0xab, 0x1c, 0xb8, 0xe5, 0xbb, 0x6e, 0x84, 0x3b, 0xef, 0x07, 0xde, 0xfc, 0xc9, 0xe5, 0x65, - 0xa4, 0x11, 0x04, 0x39, 0x61, 0x7b, 0xcc, 0x61, 0xfb, 0x06, 0x3f, 0xb7, 0x55, 0x9d, 0xa6, 0xed, - 0x0b, 0x07, 0x23, 0x60, 0xd6, 0x32, 0xcb, 0x21, 0xcf, 0xc3, 0xac, 0xde, 0x68, 0xb8, 0xce, 0x81, - 0x59, 0xd7, 0x7d, 0xca, 0xac, 0xac, 0x5d, 0xb1, 0x7d, 0xf0, 0xa0, 0x93, 0x69, 0xa9, 0x74, 0xc5, - 0xf4, 0x76, 0x71, 0x17, 0x51, 0x7f, 0x02, 0xa6, 0xc5, 0xfd, 0x62, 0xf4, 0xd2, 0x6a, 0x90, 0xb9, - 0x51, 0xbf, 0x3e, 0x06, 0x33, 0x1d, 0xad, 0xbb, 0x1d, 0xdc, 0xe9, 0x0f, 0x7a, 0xa1, 0xfc, 0x9d, - 0x02, 0x53, 0xc1, 0x1d, 0xa8, 0x1c, 0x2d, 0x95, 0x41, 0x69, 0x7d, 0x23, 0xde, 0xd1, 0xd2, 0x8d, - 0xb5, 0x18, 0xde, 0xaf, 0xf6, 0x8e, 0x9a, 0xea, 0x28, 0x3e, 0x7d, 0xd4, 0x54, 0xa3, 0xa3, 0x9f, - 0xc2, 0x3f, 0x65, 0x78, 0x8c, 0x59, 0x18, 0x54, 0xd2, 0x75, 0x0d, 0xad, 0xf4, 0xb8, 0x86, 0xfe, - 0x45, 0x05, 0x66, 0xa4, 0x38, 0x93, 0x72, 0xa7, 0xe7, 0xfd, 0xde, 0xd1, 0xe1, 0xfc, 0xd4, 0x76, - 0xbb, 0xc2, 0x99, 0x0f, 0xf6, 0x53, 0xcd, 0x4e, 0x62, 0x86, 0x47, 0xfe, 0x58, 0x81, 0xab, 0x52, - 0x90, 0x4a, 0x57, 0x8c, 0x8b, 0x04, 0x2b, 0x81, 0xb0, 0x3e, 0x79, 0x74, 0x38, 0x7f, 0xb9, 0x1d, - 0xc1, 0x12, 0x8d, 0x7a, 0x39, 0x33, 0xc6, 0xcb, 0x6e, 0x2c, 0x65, 0xc3, 0x23, 0x9f, 0x53, 0x20, - 0x1f, 0x0d, 0xac, 0x91, 0x20, 0x26, 0x11, 0xe2, 0xc6, 0xd1, 0xe1, 0xfc, 0xf4, 0x5d, 0x29, 0xcc, - 0xe6, 0xcc, 0xb0, 0xa6, 0xed, 0x2e, 0x6a, 0x86, 0x47, 0x0e, 0x80, 0x04, 0x21, 0x39, 0x12, 0x86, - 0x61, 0xc4, 0x70, 0xe7, 0xe8, 0x70, 0x7e, 0xe2, 0x2e, 0x0f, 0xd0, 0x39, 0x73, 0xf7, 0x13, 0xb6, - 0x4c, 0xc8, 0xf0, 0xc8, 0x97, 0x14, 0xb8, 0xd0, 0x11, 0x20, 0x24, 0x21, 0x48, 0x21, 0x82, 0xcd, - 0xa3, 0xc3, 0xf9, 0xf3, 0xdb, 0xd1, 0x4a, 0x67, 0x46, 0x72, 0xbe, 0xd9, 0x8b, 0xa0, 0xe1, 0x91, - 0xdf, 0x53, 0x40, 0x3d, 0x2e, 0x08, 0x49, 0x82, 0x36, 0x82, 0xd0, 0xde, 0x3e, 0x3a, 0x9c, 0x9f, - 0x7b, 0xab, 0x67, 0x48, 0xd2, 0x99, 0x11, 0xce, 0xed, 0xc5, 0xd0, 0x35, 0x3c, 0xf2, 0x55, 0x05, - 0x2e, 0x75, 0xc7, 0x3c, 0x49, 0x10, 0xd3, 0x6d, 0xee, 0x69, 0xd1, 0x08, 0xa8, 0xb3, 0x73, 0xcf, - 0xed, 0x45, 0xd0, 0xf0, 0xc8, 0x17, 0x14, 0xc8, 0x47, 0xa3, 0xa8, 0x24, 0x40, 0x19, 0x04, 0xa4, - 0x1d, 0x1d, 0xce, 0xcf, 0xde, 0xdb, 0xff, 0x40, 0x67, 0x73, 0xd6, 0xd9, 0xef, 0x35, 0x99, 0x18, - 0x06, 0xda, 0x53, 0x9b, 0xf6, 0x0b, 0x03, 0xcd, 0xc6, 0x3e, 0x25, 0xe8, 0xad, 0xb6, 0x65, 0xcd, - 0x29, 0xb9, 0xc9, 0x6e, 0x27, 0xd3, 0x4a, 0x2e, 0xad, 0xbe, 0x04, 0xb9, 0x5b, 0x8e, 0x7f, 0x8a, - 0x3d, 0xed, 0xf3, 0x23, 0x30, 0x29, 0xb5, 0xfc, 0x10, 0x02, 0xb1, 0xff, 0x5e, 0x81, 0x99, 0xfb, - 0x8e, 0xcf, 0x67, 0xae, 0x47, 0xfc, 0xef, 0x72, 0x0c, 0x6b, 0xba, 0x90, 0xb6, 0x73, 0xa2, 0xdb, - 0xd9, 0x86, 0xd8, 0xce, 0x26, 0x3b, 0xcb, 0x4f, 0xbd, 0x9f, 0x4d, 0xde, 0xef, 0xec, 0xa9, 0xb0, - 0x0f, 0xe9, 0x80, 0x3c, 0xf9, 0x28, 0x24, 0x0d, 0xea, 0x55, 0x85, 0xd9, 0xa3, 0xf6, 0x08, 0x92, - 0xc2, 0x7a, 0x81, 0x73, 0x30, 0xb4, 0x18, 0xb1, 0xd5, 0x31, 0x81, 0x7f, 0x43, 0xbd, 0x03, 0xff, - 0x0a, 0xff, 0xa8, 0xc0, 0x18, 0x86, 0x81, 0x84, 0xf3, 0xf5, 0xb0, 0x63, 0x4c, 0xde, 0x06, 0x68, - 0x4f, 0x99, 0x98, 0xa7, 0x17, 0x4e, 0x35, 0x4f, 0x61, 0xac, 0x70, 0x50, 0xa3, 0xf0, 0xab, 0x0a, - 0x37, 0x0b, 0xc2, 0xc1, 0x0c, 0x64, 0x16, 0x68, 0x90, 0x42, 0x70, 0x01, 0x9a, 0x57, 0x4e, 0x84, - 0x26, 0xc2, 0x3d, 0x4d, 0x50, 0x2a, 0xfc, 0x3c, 0xcc, 0xf6, 0x16, 0xa7, 0x1e, 0xeb, 0xf9, 0x5e, - 0x74, 0x3d, 0x7f, 0xe4, 0x44, 0xdd, 0xcb, 0xc3, 0x95, 0x5d, 0xde, 0xd7, 0x60, 0x74, 0xd0, 0x68, - 0x8b, 0x6f, 0x0e, 0x8b, 0xb8, 0xab, 0x0f, 0x65, 0xcd, 0xca, 0x17, 0x49, 0x43, 0x0f, 0xe1, 0x22, - 0xe9, 0x6f, 0x14, 0x98, 0x76, 0xc5, 0x40, 0x22, 0x2a, 0x81, 0xdf, 0x07, 0x7d, 0xac, 0xdf, 0xd5, - 0x59, 0xfb, 0xda, 0x24, 0x20, 0x72, 0x8c, 0x3a, 0xe8, 0x2c, 0x3f, 0xbd, 0x3a, 0x70, 0x3b, 0x7b, - 0x2a, 0x7c, 0xa5, 0x53, 0x90, 0x0b, 0x90, 0x0e, 0x6a, 0x05, 0xa7, 0x75, 0xf7, 0x58, 0x21, 0xef, - 0xf5, 0x0c, 0xec, 0x75, 0x18, 0x36, 0xed, 0x1d, 0x27, 0xb8, 0x16, 0x3b, 0xd1, 0x0d, 0x22, 0x36, - 0x2c, 0xbc, 0x03, 0xb3, 0xbd, 0x59, 0xd2, 0x43, 0xa4, 0xef, 0x44, 0x45, 0xfa, 0x85, 0x81, 0x99, - 0x7e, 0x8c, 0x38, 0x8b, 0x8b, 0xfe, 0xa7, 0x81, 0xac, 0xb4, 0x5f, 0x5b, 0xf6, 0xbd, 0xa3, 0x5d, - 0x10, 0xba, 0xad, 0x7f, 0xcd, 0x3f, 0x19, 0x82, 0x51, 0xac, 0x1a, 0xbc, 0xd6, 0x7b, 0xd8, 0x5a, - 0xf0, 0x49, 0x98, 0xa4, 0x76, 0xd5, 0x6d, 0xe1, 0xdd, 0x4e, 0x10, 0x7f, 0x89, 0x67, 0x74, 0x2d, - 0xd7, 0x2e, 0x10, 0x77, 0xaf, 0xf3, 0xc1, 0x71, 0x98, 0x5f, 0xbc, 0xf3, 0x43, 0x29, 0x3f, 0xe1, - 0xe2, 0xdd, 0x7c, 0xbb, 0x02, 0x3f, 0xb5, 0x26, 0xa5, 0x0a, 0xdc, 0xe3, 0xb9, 0x00, 0x39, 0xe1, - 0xa9, 0xdc, 0xa5, 0x2d, 0x41, 0x86, 0x3f, 0x0e, 0x10, 0x7e, 0xe2, 0x3b, 0xb4, 0xc5, 0x49, 0x45, - 0x6b, 0x72, 0x7a, 0xa9, 0x8e, 0x9a, 0xfc, 0xfc, 0xfb, 0x71, 0x18, 0x0f, 0xb8, 0x1b, 0x06, 0x15, - 0x05, 0x8a, 0x94, 0xbb, 0x0c, 0x9f, 0x88, 0x8d, 0xaf, 0x68, 0x73, 0x3b, 0xf0, 0x78, 0xf0, 0xc6, - 0xea, 0xcb, 0x30, 0xd9, 0xbe, 0xc7, 0x3a, 0x91, 0x05, 0xf2, 0xed, 0x34, 0x10, 0xb9, 0xa9, 0xc0, - 0xd5, 0xc0, 0x98, 0x1e, 0x91, 0x2b, 0xb0, 0xdd, 0x8e, 0x8f, 0xfd, 0xe8, 0x20, 0x51, 0x5c, 0x76, - 0x2c, 0x8b, 0x56, 0x7d, 0x6a, 0x84, 0x65, 0x5d, 0x21, 0xc1, 0x52, 0x1f, 0x64, 0x19, 0x00, 0xdd, - 0xc3, 0x2e, 0xf5, 0xe8, 0xc9, 0xee, 0x7b, 0x32, 0xac, 0x9d, 0xc6, 0x9a, 0x91, 0x97, 0x20, 0x6f, - 0xda, 0x3e, 0x75, 0x6d, 0xdd, 0x2a, 0xeb, 0x8d, 0x06, 0x3a, 0xfc, 0xcb, 0x0d, 0x97, 0xee, 0x98, - 0x07, 0xc2, 0xef, 0x3f, 0x13, 0x94, 0x2f, 0x36, 0x1a, 0x77, 0xf5, 0x3a, 0xdd, 0xc0, 0x42, 0xf2, - 0x19, 0x18, 0xc5, 0x37, 0x29, 0x6c, 0xc2, 0x1c, 0x3b, 0xf0, 0xfd, 0x6f, 0x9d, 0x6c, 0xc4, 0xab, - 0xe2, 0xa9, 0x62, 0x38, 0xf2, 0xad, 0x36, 0xc9, 0xae, 0xb1, 0x47, 0xfa, 0x2b, 0xfc, 0xad, 0x02, - 0x73, 0x41, 0xf3, 0x1e, 0xfc, 0xba, 0x43, 0x5b, 0xe4, 0x0d, 0x48, 0x33, 0xf9, 0x0a, 0x83, 0xc5, - 0x3a, 0xdc, 0x3b, 0x7b, 0x56, 0xb1, 0x77, 0xc3, 0x20, 0xb2, 0x69, 0x97, 0xb6, 0x56, 0x74, 0x5f, - 0x97, 0x77, 0xaa, 0xa1, 0x0f, 0x78, 0xa7, 0x2a, 0x7c, 0x6d, 0x08, 0x2e, 0xc5, 0xcd, 0x3b, 0x31, - 0xda, 0x7a, 0x2f, 0x7b, 0x63, 0xfd, 0x74, 0xec, 0x8d, 0x1d, 0x26, 0xea, 0xd2, 0xd7, 0x82, 0xe8, - 0xd4, 0xa1, 0xee, 0x8b, 0x8a, 0xde, 0x7c, 0x8a, 0xc6, 0xa8, 0xbf, 0x89, 0xd7, 0x29, 0xa8, 0x34, - 0x96, 0x5e, 0xe5, 0xd7, 0x29, 0x27, 0xe6, 0xcc, 0xa6, 0x5f, 0xf7, 0xf9, 0x2d, 0x4c, 0xe1, 0xfb, - 0x0a, 0x5c, 0x1d, 0x4c, 0x36, 0x88, 0xc6, 0xd7, 0x9d, 0x27, 0x4f, 0xf3, 0xd3, 0x1d, 0xf0, 0x07, - 0x12, 0xaf, 0x0c, 0x92, 0x79, 0xd8, 0x13, 0xae, 0x7e, 0x6e, 0x08, 0x0a, 0x21, 0x3b, 0x23, 0x1b, - 0x4d, 0xc3, 0x71, 0x7d, 0x32, 0x1e, 0xde, 0xf4, 0x26, 0xf0, 0x3e, 0xea, 0x12, 0x64, 0xaa, 0x4e, - 0xbd, 0x61, 0x51, 0x9f, 0x1a, 0x22, 0x1e, 0xab, 0x9d, 0x41, 0x9e, 0x83, 0x99, 0x50, 0x21, 0x94, - 0x77, 0x4c, 0xbb, 0x46, 0xdd, 0x86, 0x6b, 0xda, 0xbe, 0xf0, 0xd0, 0x4f, 0x87, 0x85, 0x6f, 0xb4, - 0xcb, 0xc8, 0x6b, 0x90, 0x6f, 0x37, 0x92, 0x7e, 0x58, 0x80, 0x0d, 0x17, 0x5f, 0x3d, 0x23, 0x43, - 0x14, 0x6d, 0xd6, 0xeb, 0x01, 0x13, 0xa3, 0x68, 0x46, 0x5d, 0xae, 0x30, 0xa9, 0x51, 0xd6, 0x7d, - 0xf1, 0xa0, 0x73, 0x30, 0xcd, 0x93, 0x0d, 0x5b, 0x2e, 0xfa, 0xea, 0xa7, 0xe0, 0x89, 0x65, 0x97, - 0xea, 0x3e, 0x3d, 0x9e, 0x1f, 0x81, 0x66, 0x3e, 0x76, 0xa0, 0xca, 0xf1, 0x03, 0x55, 0x5b, 0xb0, - 0xd0, 0x9f, 0xbe, 0x50, 0xdf, 0x6f, 0x42, 0xca, 0xc5, 0x1c, 0x21, 0x42, 0x2f, 0x0c, 0xb2, 0xd2, - 0xba, 0xc9, 0x09, 0x22, 0xea, 0x63, 0xa0, 0x1e, 0x5f, 0x2b, 0xbc, 0xcd, 0xf8, 0x39, 0xb8, 0x12, - 0x5b, 0x4b, 0x60, 0xdb, 0x86, 0x11, 0x4e, 0x36, 0xd8, 0x57, 0x4e, 0x07, 0x2e, 0x50, 0x6b, 0x82, - 0x96, 0xfa, 0x07, 0x0a, 0x4c, 0xf7, 0xaa, 0xdd, 0x25, 0x83, 0xc7, 0x32, 0x7f, 0x28, 0x46, 0xca, - 0x6e, 0xc2, 0x68, 0x35, 0x58, 0x76, 0x4c, 0x4a, 0x4e, 0xb2, 0x3f, 0x65, 0xc3, 0x96, 0x8b, 0x41, - 0xf8, 0xe5, 0xc7, 0xe1, 0x62, 0xef, 0x91, 0x71, 0xf9, 0x78, 0x39, 0x46, 0xa6, 0xf9, 0x40, 0x8e, - 0x91, 0x66, 0x75, 0x0f, 0x2e, 0xf5, 0x26, 0x2c, 0x98, 0xff, 0x16, 0x64, 0x25, 0x7a, 0x42, 0x3f, - 0x96, 0x4e, 0x3a, 0x01, 0x32, 0x0d, 0xf5, 0x39, 0xc8, 0xdf, 0x76, 0x2a, 0xc1, 0xf5, 0x8e, 0x88, - 0x24, 0xea, 0x67, 0x3d, 0xfe, 0xb7, 0x02, 0x17, 0x7a, 0xb4, 0xfa, 0x10, 0x0e, 0x53, 0x9f, 0x80, - 0x51, 0xb7, 0x69, 0xdb, 0xa6, 0x5d, 0x2b, 0x3f, 0x70, 0x2a, 0xc1, 0x01, 0x36, 0x2e, 0x3c, 0xec, - 0x58, 0x9c, 0x58, 0x92, 0x15, 0xd4, 0x6e, 0x3b, 0x15, 0xaf, 0x30, 0x03, 0x89, 0xdb, 0x4e, 0xa5, - 0x53, 0xe4, 0xd4, 0x6b, 0x90, 0xbb, 0xed, 0x54, 0xa2, 0xac, 0x99, 0x81, 0xd4, 0x03, 0xa7, 0xd2, - 0x9e, 0xd1, 0xe1, 0x07, 0x4e, 0x65, 0xcd, 0x50, 0x57, 0x61, 0x52, 0xaa, 0x2a, 0xf8, 0xf1, 0x0c, - 0x24, 0x1e, 0x38, 0x15, 0xb1, 0x96, 0xe7, 0x3a, 0xb6, 0x03, 0xfc, 0xf9, 0x16, 0xfe, 0x53, 0x2e, - 0x08, 0x88, 0x55, 0xbd, 0xfe, 0x02, 0x40, 0x3b, 0x1c, 0x97, 0x4c, 0x43, 0xee, 0xe6, 0x3d, 0xed, - 0xde, 0xf6, 0xd6, 0xda, 0xdd, 0xd5, 0xf2, 0xe6, 0xd6, 0xe2, 0xf2, 0x9d, 0xcd, 0xdc, 0x39, 0x32, - 0x09, 0x63, 0x5b, 0xb7, 0xb4, 0xd5, 0xc5, 0x95, 0x20, 0x4b, 0xb9, 0xfe, 0x18, 0xa4, 0x83, 0x58, - 0x57, 0x29, 0xd8, 0x73, 0x1c, 0x20, 0x6c, 0xbe, 0x99, 0x53, 0x6e, 0x7c, 0x7b, 0x01, 0x52, 0xc2, - 0xce, 0xfe, 0xba, 0x02, 0xa3, 0xf2, 0x4f, 0x27, 0x90, 0xe2, 0x60, 0x3f, 0x8e, 0x10, 0xb0, 0xa1, - 0x50, 0x1a, 0xb8, 0x3e, 0xe7, 0x85, 0xfa, 0xc4, 0x7b, 0xff, 0xfc, 0x9f, 0x5f, 0x1b, 0x7a, 0x94, - 0xcc, 0x97, 0xc4, 0x19, 0xa0, 0x24, 0xff, 0xb2, 0x42, 0xe9, 0x1d, 0x21, 0x38, 0xef, 0x92, 0x5f, - 0x52, 0x60, 0x24, 0x38, 0x9b, 0xc4, 0x45, 0xdb, 0x45, 0x7f, 0x88, 0xa1, 0x70, 0x7d, 0x90, 0xaa, - 0x02, 0x8b, 0x8a, 0x58, 0x2e, 0x91, 0x42, 0x88, 0x45, 0x84, 0xd4, 0x4b, 0x30, 0x5c, 0x18, 0xc6, - 0x77, 0xf3, 0xe4, 0x89, 0xfe, 0x2f, 0xeb, 0x39, 0x82, 0x85, 0x41, 0x9f, 0xe0, 0xab, 0xb3, 0xd8, - 0x7f, 0x8e, 0x8c, 0x87, 0xfd, 0xf3, 0x27, 0xfe, 0x9f, 0x81, 0x24, 0xc6, 0xd7, 0x5e, 0xed, 0x43, - 0x29, 0xe8, 0xf1, 0x44, 0xbf, 0x26, 0xa0, 0x5e, 0xc6, 0x5e, 0x0b, 0x24, 0x1f, 0xed, 0x55, 0x1a, - 0xf3, 0xbb, 0xfc, 0xcd, 0x3b, 0xc6, 0x54, 0x92, 0x27, 0x07, 0x8b, 0xbc, 0x3c, 0x1e, 0xc9, 0xb1, - 0x61, 0x9a, 0xea, 0x0c, 0x22, 0x99, 0x20, 0x63, 0x21, 0x12, 0x57, 0xdf, 0xf1, 0xc9, 0x67, 0x15, - 0x48, 0x71, 0x9f, 0x0f, 0xe9, 0xfb, 0xde, 0x31, 0xe4, 0xfa, 0xb5, 0x01, 0x6a, 0x8a, 0x6e, 0x1f, - 0xc5, 0x6e, 0x2f, 0x92, 0x0b, 0x52, 0xb7, 0xac, 0x82, 0xc4, 0x01, 0x0f, 0x52, 0xfc, 0xd1, 0x5a, - 0x2c, 0x82, 0xc8, 0xbb, 0xb6, 0x82, 0xfc, 0x36, 0x40, 0xfc, 0x5a, 0xd3, 0x9a, 0xbd, 0xe3, 0x08, - 0xae, 0x77, 0x77, 0x2a, 0x7e, 0xd8, 0xa9, 0xdd, 0xe9, 0x6f, 0x2a, 0x90, 0x95, 0x5e, 0x5b, 0x91, - 0xa7, 0x07, 0x7b, 0x95, 0x15, 0xf4, 0x5f, 0x1c, 0xb4, 0xba, 0x60, 0xc3, 0x55, 0x44, 0x74, 0x99, - 0xcc, 0x85, 0x88, 0xf8, 0xdd, 0x32, 0x5a, 0x9e, 0x12, 0xac, 0xaf, 0x28, 0x90, 0x09, 0x9f, 0xc3, - 0xc4, 0x8a, 0x43, 0xe7, 0x23, 0xa0, 0x58, 0x71, 0xe8, 0x7a, 0xa1, 0xa3, 0x5e, 0x43, 0x40, 0x57, - 0xc8, 0xa3, 0x21, 0x20, 0x3d, 0xa8, 0x83, 0x22, 0x2a, 0x61, 0x7a, 0x5f, 0x81, 0xf1, 0xe8, 0x73, - 0x29, 0xf2, 0xcc, 0x40, 0x7d, 0x49, 0x0e, 0xc2, 0xc2, 0xb3, 0x27, 0x68, 0x21, 0x20, 0x3e, 0x89, - 0x10, 0x1f, 0x27, 0x57, 0x7a, 0x40, 0x44, 0x21, 0x2a, 0xbd, 0x13, 0xb8, 0xfa, 0xde, 0x25, 0x9f, - 0x57, 0x60, 0x54, 0x8e, 0xf1, 0x89, 0x55, 0xae, 0x3d, 0xa2, 0xf8, 0x62, 0x95, 0x6b, 0xaf, 0x18, - 0x26, 0xf5, 0x02, 0xc2, 0x9b, 0x22, 0x93, 0x21, 0xbc, 0x30, 0x30, 0xe9, 0xb7, 0x44, 0x0c, 0x16, - 0xbe, 0xb3, 0xfd, 0xf0, 0x10, 0xcd, 0x23, 0xa2, 0x0b, 0xe4, 0x7c, 0x88, 0x08, 0x5f, 0x0d, 0x97, - 0x43, 0x5c, 0x5f, 0x57, 0x20, 0x2b, 0x85, 0x1c, 0xc5, 0x0a, 0x7d, 0x77, 0x34, 0x54, 0xac, 0xd0, - 0xf7, 0x88, 0x64, 0x52, 0xaf, 0x23, 0x9e, 0xc7, 0x54, 0x69, 0xfb, 0xc1, 0x5a, 0x3c, 0x9e, 0xad, - 0x2d, 0x61, 0xaf, 0x28, 0xd7, 0xc9, 0x1f, 0x8a, 0x50, 0xb1, 0xce, 0x98, 0x15, 0xf2, 0xe2, 0x09, - 0x83, 0x5c, 0x02, 0xb0, 0x2f, 0x9d, 0xb8, 0xdd, 0xb1, 0x1b, 0x55, 0x3b, 0x4a, 0xa7, 0x2c, 0x22, - 0x71, 0xfe, 0x4c, 0x04, 0x23, 0xe1, 0x04, 0xff, 0xf8, 0x21, 0x2f, 0x20, 0x64, 0x95, 0x5c, 0xee, - 0x98, 0xf8, 0x6e, 0xe0, 0xdf, 0x50, 0x60, 0x2c, 0x12, 0xb0, 0x45, 0x4a, 0x7d, 0x27, 0x35, 0x1a, - 0x55, 0x56, 0x78, 0x66, 0xf0, 0x06, 0x02, 0xde, 0x53, 0x08, 0xef, 0xaa, 0xfa, 0x68, 0xa7, 0x1c, - 0x08, 0xc1, 0x8c, 0x4a, 0xc2, 0x67, 0x15, 0xc8, 0x84, 0x31, 0x3b, 0xb1, 0x2a, 0xb0, 0x33, 0x6e, - 0x29, 0x56, 0x05, 0x76, 0x85, 0x01, 0xa9, 0x79, 0x84, 0x45, 0xd4, 0xf6, 0x8e, 0xe8, 0x35, 0x74, - 0x9b, 0x41, 0xf8, 0x0c, 0xda, 0x6c, 0xd5, 0xdd, 0xf8, 0x3d, 0x31, 0xf2, 0x28, 0xac, 0x10, 0x67, - 0xb2, 0xc8, 0x8f, 0x18, 0x7b, 0x6c, 0x4e, 0x1e, 0x12, 0x92, 0x34, 0xee, 0x2f, 0x28, 0x30, 0x22, - 0xde, 0x1e, 0xc5, 0x9a, 0x63, 0xd1, 0xf7, 0x49, 0x83, 0x43, 0xe8, 0x16, 0xf1, 0x06, 0xa7, 0xd4, - 0x81, 0x41, 0xbc, 0x56, 0x8a, 0xc5, 0x10, 0x7d, 0xd1, 0x74, 0x16, 0x0c, 0x75, 0x4e, 0x49, 0xc2, - 0xf0, 0xcb, 0x0a, 0xa4, 0x83, 0x17, 0x62, 0x24, 0xce, 0xd8, 0xec, 0x78, 0xe4, 0x56, 0x78, 0x72, - 0xa0, 0xba, 0x02, 0x49, 0xb7, 0x8d, 0x86, 0x1e, 0xec, 0xa8, 0xb1, 0x30, 0x2a, 0xbf, 0x58, 0x8c, - 0x57, 0xe5, 0xdd, 0x4f, 0x21, 0xe3, 0x55, 0x79, 0x8f, 0xa7, 0x90, 0xea, 0x15, 0xc4, 0xf4, 0x08, - 0xb9, 0x28, 0xad, 0xe8, 0x5a, 0x27, 0xac, 0x2f, 0x29, 0x30, 0x22, 0x5a, 0xc7, 0x4e, 0x51, 0xf4, - 0x69, 0x64, 0xe1, 0xe9, 0xf8, 0xaa, 0x1d, 0x0f, 0x43, 0x03, 0x2d, 0x4e, 0xd4, 0x18, 0x28, 0xa5, - 0x77, 0x58, 0xc6, 0xbb, 0xcc, 0x98, 0x5e, 0x77, 0x6a, 0x5e, 0xac, 0x31, 0x2d, 0xbd, 0x9e, 0x3d, - 0x29, 0x94, 0x5e, 0x1b, 0x5c, 0x4d, 0xe6, 0xc8, 0x57, 0x15, 0xfc, 0xed, 0xa1, 0x76, 0x50, 0x42, - 0xac, 0x7a, 0xeb, 0x15, 0x5f, 0x17, 0xab, 0xde, 0x7a, 0xc6, 0x3b, 0xa8, 0x73, 0x88, 0x2a, 0x4f, - 0x66, 0xe5, 0xd5, 0xc4, 0xea, 0x89, 0xe7, 0x4c, 0xef, 0x29, 0x90, 0x09, 0x6f, 0x56, 0x63, 0x15, - 0x5a, 0x67, 0x60, 0x44, 0xac, 0x42, 0xeb, 0xba, 0xac, 0x55, 0x0b, 0x08, 0x64, 0x9a, 0x90, 0x10, - 0xc8, 0x7d, 0xc7, 0x17, 0x20, 0xde, 0x85, 0x61, 0x6e, 0xba, 0x3d, 0xd1, 0xff, 0xb2, 0xac, 0xff, - 0xd1, 0x2a, 0x6a, 0xa8, 0x1d, 0x63, 0xe3, 0xcb, 0xe6, 0xd9, 0xfb, 0x0a, 0x64, 0x65, 0x47, 0x53, - 0xdc, 0xc4, 0x77, 0x3b, 0x79, 0x0a, 0x1f, 0xed, 0xae, 0x2e, 0xff, 0x2e, 0x6a, 0xe4, 0x17, 0x53, - 0xa5, 0xf6, 0xdc, 0xfb, 0xd5, 0xc3, 0xf8, 0x96, 0x7f, 0x6e, 0xb5, 0x2d, 0x3d, 0xec, 0x2c, 0xc4, - 0xef, 0x9c, 0xfa, 0xe8, 0x7d, 0xe9, 0xd2, 0x2f, 0xf6, 0x2c, 0x14, 0xbd, 0xc0, 0xea, 0xa9, 0xf9, - 0x59, 0x05, 0x09, 0xc2, 0xaf, 0x28, 0xe8, 0x8c, 0x08, 0x2e, 0x7a, 0x9e, 0x1a, 0xd0, 0xeb, 0xdf, - 0x7f, 0x35, 0x75, 0xdf, 0x11, 0xa8, 0x17, 0x11, 0xce, 0x0c, 0x99, 0x92, 0x37, 0xa2, 0xa0, 0xe7, - 0xef, 0x29, 0x70, 0xb9, 0x9f, 0x0b, 0x95, 0x2c, 0xc5, 0x99, 0x02, 0x83, 0xf9, 0x77, 0x0b, 0xcb, - 0x67, 0xa2, 0x11, 0x55, 0x97, 0x6a, 0x5e, 0x1a, 0x4a, 0xdd, 0x67, 0xb3, 0x2c, 0x5c, 0x9e, 0x6c, - 0x57, 0xff, 0x6b, 0xe5, 0x38, 0x87, 0x1f, 0x22, 0xf1, 0xc8, 0xab, 0xa7, 0x72, 0xae, 0x86, 0xec, - 0x7f, 0xed, 0xb4, 0xcd, 0x8f, 0xdd, 0x87, 0x3a, 0x06, 0x41, 0xfe, 0xf2, 0x38, 0xbf, 0xed, 0x8b, - 0x27, 0xee, 0xba, 0xbf, 0xc5, 0x19, 0xe7, 0x1b, 0x55, 0x9f, 0x47, 0xac, 0x45, 0xf2, 0x54, 0x17, - 0xd6, 0xd2, 0x3b, 0xc7, 0xb9, 0x63, 0xdf, 0x25, 0xdf, 0x54, 0xd0, 0x63, 0x17, 0xf5, 0x10, 0x92, - 0xe7, 0x4e, 0xe6, 0x4f, 0xe4, 0xc8, 0x9f, 0x3f, 0x8d, 0x13, 0xb2, 0x87, 0x43, 0xec, 0x81, 0x53, - 0x29, 0xbb, 0xa2, 0x72, 0xd4, 0xf2, 0xc8, 0x84, 0xbe, 0xc5, 0x58, 0x9d, 0xdd, 0xe9, 0xac, 0x8c, - 0xd5, 0xd9, 0x5d, 0xee, 0x4a, 0xf5, 0x11, 0x44, 0x74, 0x9e, 0xcc, 0xc8, 0x88, 0x4a, 0xef, 0x70, - 0x77, 0xe7, 0xbb, 0x4b, 0xd7, 0xbf, 0xfb, 0x1f, 0x73, 0xe7, 0xbe, 0x7b, 0x34, 0xa7, 0x7c, 0xef, - 0x68, 0x4e, 0xf9, 0xfe, 0xd1, 0x9c, 0xf2, 0xef, 0x47, 0x73, 0xca, 0x97, 0x7f, 0x38, 0x77, 0xee, - 0x7b, 0x3f, 0x9c, 0x3b, 0xf7, 0xfd, 0x1f, 0xce, 0x9d, 0x7b, 0x3b, 0x1d, 0x10, 0xaf, 0xa4, 0xd0, - 0xb3, 0xfe, 0xdc, 0xff, 0x05, 0x00, 0x00, 0xff, 0xff, 0x13, 0x04, 0x60, 0xd6, 0x11, 0x5b, 0x00, - 0x00, + proto.RegisterFile("server/serverpb/status.proto", fileDescriptor_status_671ac8d2880d1eb6) +} + +var fileDescriptor_status_671ac8d2880d1eb6 = []byte{ + // 6408 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x7c, 0x6b, 0x6c, 0x23, 0xd7, + 0x75, 0xff, 0x8e, 0x48, 0x51, 0xe4, 0xa1, 0x1e, 0xd4, 0x5d, 0x49, 0xcb, 0xe5, 0xae, 0xa5, 0xf5, + 0xac, 0xbd, 0xd6, 0xae, 0x6d, 0xd2, 0x5e, 0x7b, 0x6d, 0xc7, 0xff, 0xd8, 0xb1, 0x5e, 0xde, 0xd5, + 0xae, 0xbc, 0xab, 0x1d, 0x49, 0xff, 0x14, 0x4e, 0x1a, 0x76, 0xc8, 0xb9, 0xe2, 0xce, 0x6a, 0x38, + 0x43, 0xcd, 0x0c, 0x55, 0x31, 0xae, 0xd3, 0xd4, 0x7d, 0xa5, 0x69, 0x9a, 0x67, 0x0b, 0xa4, 0x40, + 0x81, 0x06, 0xfe, 0xd0, 0xf4, 0x81, 0x16, 0x29, 0x0a, 0x14, 0x2d, 0xd0, 0x47, 0x50, 0x14, 0x6d, + 0x8a, 0x02, 0x45, 0x80, 0xf6, 0x43, 0xd0, 0x02, 0x4a, 0xab, 0xf4, 0x43, 0x80, 0x7e, 0xe8, 0xf7, + 0x00, 0x05, 0x8a, 0x7b, 0xee, 0x9d, 0xe1, 0x1d, 0x92, 0x1a, 0x52, 0x92, 0xd7, 0xe9, 0x87, 0x5d, + 0xcd, 0x7d, 0x9d, 0xfb, 0xbb, 0xe7, 0x9e, 0x7b, 0xee, 0xb9, 0xe7, 0x9e, 0x4b, 0xb8, 0xe8, 0x51, + 0x77, 0x8f, 0xba, 0x25, 0xfe, 0xa7, 0x51, 0x29, 0x79, 0xbe, 0xee, 0x37, 0xbd, 0x62, 0xc3, 0x75, + 0x7c, 0x87, 0x9c, 0xaf, 0x3a, 0xd5, 0x1d, 0xd7, 0xd1, 0xab, 0x0f, 0x8a, 0xbc, 0x42, 0x31, 0xa8, + 0x57, 0xc8, 0x55, 0x9a, 0xa6, 0x65, 0x94, 0x4c, 0x7b, 0xdb, 0xe1, 0x95, 0x0b, 0x67, 0x6b, 0x8e, + 0xe7, 0x99, 0x8d, 0x12, 0xff, 0x23, 0x32, 0x67, 0x1e, 0x3a, 0x15, 0xaf, 0xc4, 0xfe, 0x6b, 0x54, + 0xf0, 0x8f, 0xc8, 0x3f, 0x87, 0x54, 0x1b, 0x95, 0x92, 0xde, 0x68, 0x94, 0x59, 0x9f, 0x41, 0x01, + 0x09, 0x0a, 0x0c, 0xdd, 0xd7, 0x03, 0x22, 0x41, 0x5e, 0x9d, 0xfa, 0xba, 0x94, 0x7f, 0x5d, 0x80, + 0x37, 0x4c, 0xbd, 0x66, 0x3b, 0x9e, 0x6f, 0x56, 0x3d, 0xf9, 0x9b, 0x11, 0x69, 0xa7, 0x44, 0x9b, + 0xcb, 0xc1, 0x80, 0x71, 0x9c, 0xe2, 0x4f, 0xc7, 0xb8, 0x0b, 0x8f, 0x7b, 0xbb, 0x56, 0xa9, 0xea, + 0xd8, 0x3e, 0xb5, 0x7d, 0xd3, 0xb1, 0x1b, 0x15, 0x29, 0x21, 0xaa, 0x3c, 0xe6, 0xf9, 0x8e, 0xab, + 0xd7, 0x68, 0x89, 0xda, 0x35, 0xd3, 0xa6, 0x8d, 0x8a, 0xf8, 0x10, 0xc5, 0x17, 0xba, 0x8a, 0xeb, + 0x7b, 0xd5, 0xaa, 0x28, 0x9c, 0xed, 0x2a, 0x74, 0x9d, 0xea, 0x8e, 0x67, 0x54, 0x44, 0xf9, 0xd5, + 0x9d, 0xbd, 0xd2, 0xce, 0x9e, 0x00, 0x1a, 0x7c, 0x34, 0x2a, 0x25, 0x8b, 0xea, 0x1e, 0x2d, 0x47, + 0x90, 0xaa, 0x47, 0x54, 0x65, 0x95, 0x02, 0x2c, 0x45, 0xb9, 0x8e, 0x65, 0xee, 0x51, 0x9b, 0x7a, + 0x5e, 0xf8, 0xc1, 0xe8, 0x8a, 0x4f, 0x51, 0x3f, 0xdf, 0xf4, 0x4d, 0xab, 0x64, 0x39, 0x35, 0xf6, + 0x8f, 0x15, 0x3b, 0x35, 0x51, 0x52, 0xc0, 0x92, 0xa6, 0xed, 0x52, 0xcf, 0xb1, 0xf6, 0xa8, 0x51, + 0xd6, 0x0d, 0xc3, 0x0d, 0x06, 0x45, 0xfd, 0xaa, 0x51, 0x72, 0xf5, 0x6d, 0xbf, 0xb4, 0xf7, 0x02, + 0xfe, 0x65, 0xe3, 0xd2, 0xb7, 0x7d, 0x51, 0x3e, 0x55, 0x73, 0x6a, 0x0e, 0x7e, 0x96, 0xd8, 0x97, + 0xc8, 0xbd, 0x58, 0x73, 0x9c, 0x9a, 0x45, 0x4b, 0x7a, 0xc3, 0x2c, 0xe9, 0xb6, 0xed, 0xf8, 0x3a, + 0xe3, 0x71, 0x80, 0x64, 0x4e, 0x94, 0x62, 0xaa, 0xd2, 0xdc, 0x2e, 0xf9, 0x66, 0x9d, 0x7a, 0xbe, + 0x5e, 0x17, 0xe2, 0xa5, 0x16, 0xe1, 0xec, 0x12, 0x75, 0x7d, 0x73, 0xdb, 0xac, 0xea, 0x3e, 0xf5, + 0x34, 0xba, 0xdb, 0xa4, 0x9e, 0x4f, 0xce, 0xc1, 0x88, 0xed, 0x18, 0xb4, 0x6c, 0x1a, 0x79, 0xe5, + 0x92, 0x32, 0x9f, 0xd1, 0x52, 0x2c, 0xb9, 0x6a, 0xa8, 0xff, 0x93, 0x04, 0x22, 0x35, 0x58, 0xa6, + 0xbe, 0x6e, 0x5a, 0x1e, 0xb9, 0x0f, 0x49, 0xbf, 0xd5, 0xa0, 0x58, 0x79, 0xfc, 0xfa, 0x6b, 0xc5, + 0x23, 0xc5, 0xbe, 0xd8, 0xdd, 0x58, 0xce, 0xda, 0x6c, 0x35, 0xa8, 0x86, 0xa4, 0xc8, 0x65, 0x18, + 0xa3, 0xae, 0xeb, 0xb8, 0xe5, 0x3a, 0xf5, 0x3c, 0xbd, 0x46, 0xf3, 0x43, 0x08, 0x64, 0x14, 0x33, + 0xdf, 0xe2, 0x79, 0x84, 0x40, 0x92, 0x89, 0x73, 0x3e, 0x71, 0x49, 0x99, 0x1f, 0xd5, 0xf0, 0x9b, + 0x68, 0x90, 0xda, 0x36, 0xa9, 0x65, 0x78, 0xf9, 0xe4, 0xa5, 0xc4, 0x7c, 0xf6, 0xfa, 0x8b, 0xc7, + 0x43, 0xf3, 0x26, 0xb6, 0x5d, 0x4c, 0x7e, 0xe7, 0x60, 0xee, 0x8c, 0x26, 0x28, 0x15, 0xfe, 0x64, + 0x08, 0x52, 0xbc, 0x80, 0xcc, 0x40, 0xca, 0xf4, 0xbc, 0x26, 0x75, 0x03, 0xce, 0xf0, 0x14, 0xc9, + 0xc3, 0x88, 0xd7, 0xac, 0x3c, 0xa4, 0x55, 0x5f, 0x20, 0x0d, 0x92, 0xe4, 0x31, 0x80, 0x3d, 0xdd, + 0x32, 0x8d, 0xf2, 0xb6, 0xeb, 0xd4, 0x11, 0x6a, 0x42, 0xcb, 0x60, 0xce, 0x9b, 0xae, 0x53, 0x27, + 0x73, 0x90, 0xe5, 0xc5, 0x4d, 0xdb, 0x37, 0xad, 0x7c, 0x12, 0xcb, 0x79, 0x8b, 0x2d, 0x96, 0x43, + 0x2e, 0x42, 0x86, 0x89, 0x09, 0xf5, 0x3c, 0xea, 0xe5, 0x87, 0x2f, 0x25, 0xe6, 0x33, 0x5a, 0x3b, + 0x83, 0x94, 0xe0, 0xac, 0x67, 0xd6, 0x6c, 0xdd, 0x6f, 0xba, 0xb4, 0xac, 0x5b, 0x35, 0xc7, 0x35, + 0xfd, 0x07, 0xf5, 0x7c, 0x0a, 0x31, 0x90, 0xb0, 0x68, 0x21, 0x28, 0x61, 0x70, 0x1a, 0xcd, 0x8a, + 0x65, 0x56, 0xcb, 0x3b, 0xb4, 0x95, 0x1f, 0xc1, 0x7a, 0x19, 0x9e, 0x73, 0x87, 0xb6, 0xc8, 0x05, + 0xc8, 0xec, 0xd0, 0x56, 0xb9, 0x89, 0x3c, 0x4f, 0x63, 0x6f, 0xe9, 0x1d, 0xda, 0xda, 0x42, 0x7e, + 0x3f, 0x03, 0x84, 0xee, 0xfb, 0xd4, 0x36, 0xa8, 0x51, 0x6e, 0xd7, 0xca, 0x60, 0xad, 0x5c, 0x50, + 0x72, 0x47, 0xd4, 0x56, 0xef, 0xc3, 0x44, 0xc7, 0xdc, 0x92, 0x14, 0x0c, 0x2d, 0x2d, 0xe4, 0xce, + 0x90, 0x34, 0x24, 0xef, 0xde, 0x5b, 0x5e, 0xc9, 0x29, 0x64, 0x0c, 0x32, 0x4b, 0x6b, 0xab, 0x2b, + 0x77, 0x37, 0xcb, 0x4b, 0x0b, 0xb9, 0x21, 0x02, 0x90, 0xe2, 0xc9, 0x5c, 0x82, 0x64, 0x60, 0x78, + 0x6b, 0x95, 0x65, 0x27, 0x59, 0xbb, 0xad, 0xd5, 0xdc, 0xb0, 0xea, 0xc0, 0x54, 0x54, 0x5e, 0xbd, + 0x86, 0x63, 0x7b, 0x94, 0x7c, 0x1c, 0x46, 0xab, 0x52, 0x7e, 0x5e, 0xc1, 0xa9, 0x7f, 0xf6, 0x58, + 0x53, 0x2f, 0xe6, 0x3c, 0x42, 0x48, 0x2d, 0xc1, 0xb8, 0x28, 0xee, 0xb7, 0x36, 0x6e, 0x27, 0xd3, + 0x43, 0xb9, 0x84, 0x7a, 0x17, 0x60, 0xa3, 0xe5, 0xf9, 0xb4, 0xbe, 0x6a, 0x6f, 0x3b, 0x6c, 0x72, + 0x3d, 0x4c, 0x95, 0x99, 0xa2, 0x17, 0x0d, 0xc0, 0x8b, 0x54, 0xd8, 0xa1, 0xae, 0x4d, 0x2d, 0x5e, + 0x81, 0x8b, 0x0e, 0xf0, 0x2c, 0x56, 0x41, 0xfd, 0x42, 0x02, 0x26, 0x42, 0x04, 0x62, 0xb4, 0x6f, + 0x47, 0x21, 0x0c, 0x2f, 0x2e, 0x1c, 0x1e, 0xcc, 0xa5, 0xee, 0x32, 0x18, 0xcb, 0x3f, 0x3a, 0x98, + 0x7b, 0xa1, 0x66, 0xfa, 0x0f, 0x9a, 0x95, 0x62, 0xd5, 0xa9, 0x97, 0x42, 0x06, 0x18, 0x95, 0xf6, + 0x77, 0xa9, 0xb1, 0x53, 0x2b, 0x89, 0x3d, 0xa1, 0xc8, 0x9b, 0x05, 0xa3, 0x20, 0xaf, 0xc3, 0x88, + 0x10, 0x2e, 0x04, 0x93, 0xbd, 0x3e, 0x2b, 0x31, 0x91, 0xa9, 0xaf, 0xe2, 0x56, 0xa8, 0xbe, 0x16, + 0x0c, 0xc3, 0x15, 0x5c, 0x0b, 0x1a, 0x91, 0x57, 0x01, 0x70, 0x67, 0xe3, 0xe3, 0x49, 0x20, 0x89, + 0x69, 0x89, 0x04, 0x16, 0x16, 0xd9, 0xd0, 0x44, 0xcb, 0x0c, 0xe6, 0x20, 0x33, 0xd6, 0xa2, 0xdc, + 0x4a, 0x62, 0xe3, 0x27, 0x63, 0x26, 0xb1, 0xcd, 0x69, 0x41, 0x4c, 0x66, 0xed, 0x06, 0x64, 0xbd, + 0x5d, 0xab, 0x1c, 0x8c, 0x66, 0x78, 0xa0, 0xd1, 0x10, 0x46, 0xe6, 0xf0, 0x60, 0x0e, 0x36, 0xee, + 0xaf, 0x2d, 0xf0, 0x96, 0x1a, 0x78, 0xbb, 0x96, 0xf8, 0x56, 0xc7, 0x61, 0x94, 0x31, 0x2c, 0x90, + 0x06, 0xf5, 0xb7, 0x13, 0x30, 0x26, 0x32, 0xc4, 0xe4, 0xdc, 0x82, 0x61, 0xc6, 0xca, 0x40, 0x06, + 0x9f, 0xe9, 0x01, 0x9f, 0x6f, 0x40, 0xc1, 0xd6, 0x89, 0x33, 0xb0, 0x81, 0x09, 0x31, 0x0a, 0x4e, + 0x80, 0xfc, 0x95, 0x02, 0x67, 0x83, 0xad, 0xa5, 0x5c, 0x69, 0x95, 0x83, 0x39, 0x1f, 0x42, 0xc2, + 0xaf, 0xc7, 0xf0, 0x25, 0x82, 0xa8, 0xb8, 0x26, 0x68, 0x2c, 0xb6, 0x70, 0xae, 0x8d, 0x15, 0xdb, + 0x77, 0x5b, 0x8b, 0xf7, 0xc4, 0x48, 0x73, 0x1d, 0xc5, 0xcb, 0xef, 0x7d, 0xff, 0x64, 0x12, 0x94, + 0xb3, 0x3a, 0xfa, 0x29, 0xbc, 0xa7, 0xc0, 0x74, 0xcf, 0xce, 0x49, 0x0e, 0x12, 0x4c, 0xfb, 0xa0, + 0xf4, 0x6a, 0xec, 0x93, 0x6c, 0xc0, 0xf0, 0x9e, 0x6e, 0x35, 0xb9, 0x9e, 0x8f, 0xee, 0x21, 0x3b, + 0x7b, 0xc5, 0x60, 0xfb, 0x2d, 0x86, 0x5b, 0x6d, 0x7b, 0xfb, 0xc5, 0xfe, 0x83, 0x6e, 0x38, 0x1f, + 0x35, 0x4e, 0xeb, 0xd5, 0xa1, 0x57, 0x14, 0xf5, 0x0a, 0x64, 0x59, 0x85, 0xbe, 0x5b, 0xdb, 0xb7, + 0x92, 0x90, 0xd1, 0xf4, 0x6d, 0x9f, 0x51, 0x60, 0x9a, 0x0e, 0x5c, 0xda, 0xb0, 0xcc, 0xaa, 0x1e, + 0xd4, 0x4c, 0x2e, 0x8e, 0x1d, 0x1e, 0xcc, 0x65, 0x34, 0x9e, 0xbb, 0xba, 0xac, 0x65, 0x44, 0x85, + 0x55, 0x83, 0xbc, 0x04, 0xf0, 0x40, 0x77, 0x0d, 0x34, 0x2d, 0xa8, 0x58, 0x37, 0x93, 0x45, 0xbe, + 0x87, 0x17, 0x6f, 0xe9, 0xae, 0x81, 0x44, 0x03, 0x81, 0x7f, 0x10, 0x64, 0xb0, 0xfd, 0xcb, 0xa2, + 0xba, 0x81, 0xcb, 0x24, 0xa9, 0xe1, 0x37, 0x99, 0x82, 0x61, 0x4e, 0x26, 0x89, 0xf0, 0x78, 0x82, + 0x6d, 0x2f, 0x7a, 0xa3, 0x61, 0x99, 0xd4, 0x40, 0x41, 0x4e, 0x6a, 0x41, 0x92, 0x6c, 0x42, 0xba, + 0xe1, 0x3a, 0x35, 0x94, 0xf1, 0x14, 0x4a, 0xc6, 0xf5, 0x18, 0xc9, 0x08, 0x47, 0x58, 0x5c, 0x17, + 0x8d, 0xb8, 0x34, 0x70, 0x68, 0x21, 0x25, 0xf2, 0x14, 0x4c, 0x30, 0x34, 0x65, 0xdf, 0xd5, 0x6d, + 0x6f, 0x9b, 0xba, 0x94, 0xe2, 0x56, 0x91, 0xd4, 0xc6, 0x59, 0xf6, 0x66, 0x98, 0x5b, 0xf8, 0x35, + 0x05, 0xd2, 0x01, 0x29, 0x86, 0xbd, 0xae, 0xfb, 0xd5, 0x07, 0x9c, 0x61, 0x1a, 0x4f, 0xb0, 0x51, + 0xda, 0x74, 0x9f, 0xef, 0x8b, 0x49, 0x0d, 0xbf, 0xdb, 0xa3, 0x4c, 0xc8, 0xa3, 0x9c, 0x81, 0x54, + 0x43, 0x6f, 0x7a, 0xd4, 0xc0, 0xc1, 0xa7, 0x35, 0x91, 0x22, 0x57, 0x21, 0xd7, 0xa0, 0xb6, 0x61, + 0xda, 0xb5, 0xb2, 0x67, 0xeb, 0x0d, 0xef, 0x81, 0xe3, 0x0b, 0x36, 0x4c, 0x88, 0xfc, 0x0d, 0x91, + 0x5d, 0x78, 0x08, 0x63, 0x91, 0x91, 0xc9, 0xa2, 0x96, 0xe4, 0xa2, 0xb6, 0x24, 0x8b, 0x5a, 0xfc, + 0x2e, 0xd1, 0xcd, 0x2e, 0x59, 0xb4, 0x0e, 0x87, 0x60, 0x4c, 0xd3, 0xed, 0x1a, 0x5d, 0x77, 0x9d, + 0x8a, 0x45, 0xeb, 0x1e, 0xb9, 0x04, 0xd9, 0xa6, 0xad, 0xef, 0xe9, 0xa6, 0xa5, 0x57, 0x2c, 0x6e, + 0x0f, 0xa5, 0x35, 0x39, 0x8b, 0xdc, 0x80, 0x73, 0x8c, 0x83, 0xd4, 0x2d, 0xdb, 0x8e, 0x5f, 0xe6, + 0x16, 0xe9, 0x03, 0xc7, 0x32, 0xa8, 0x8b, 0x70, 0xd2, 0xda, 0x14, 0x2f, 0xbe, 0xeb, 0xf8, 0x6b, + 0xac, 0xf0, 0x16, 0x96, 0x91, 0x27, 0x60, 0xdc, 0x76, 0xca, 0x4c, 0xa2, 0xca, 0xbc, 0x1c, 0x19, + 0x97, 0xd6, 0x46, 0x6d, 0x87, 0x61, 0x5c, 0xc3, 0x3c, 0x32, 0x0f, 0x13, 0x4d, 0xdb, 0xa0, 0xae, + 0x90, 0x4c, 0x3f, 0x64, 0x64, 0x67, 0x36, 0x39, 0x0f, 0x69, 0xdb, 0xe1, 0xdd, 0x23, 0x27, 0xd3, + 0xda, 0x88, 0xed, 0x60, 0x87, 0xe4, 0x15, 0xc8, 0xef, 0x36, 0x4d, 0xea, 0x55, 0xa9, 0xed, 0x97, + 0xe9, 0x6e, 0x53, 0xb7, 0xbc, 0xb2, 0x6f, 0x56, 0x77, 0x4c, 0xbb, 0x86, 0x66, 0x45, 0x5a, 0x9b, + 0x09, 0xcb, 0x57, 0xb0, 0x78, 0x93, 0x97, 0x92, 0xa7, 0x81, 0x70, 0x84, 0x4e, 0xad, 0xec, 0x3b, + 0x4e, 0xd9, 0xd2, 0xdd, 0x1a, 0x97, 0x9b, 0xb4, 0x36, 0xc1, 0x4a, 0xd6, 0x9c, 0xda, 0xa6, 0xe3, + 0xac, 0xb1, 0x6c, 0x72, 0x05, 0xc6, 0x9d, 0xbd, 0x08, 0xd4, 0x34, 0x56, 0xec, 0xc8, 0x55, 0x77, + 0x60, 0x02, 0x79, 0xcc, 0xa6, 0xc1, 0xc4, 0x93, 0x08, 0x33, 0x43, 0x76, 0x9b, 0xd4, 0x35, 0xa9, + 0x57, 0x6e, 0x50, 0xb7, 0xec, 0xd1, 0xaa, 0x63, 0xf3, 0x45, 0xaa, 0x68, 0x39, 0x51, 0xb2, 0x4e, + 0xdd, 0x0d, 0xcc, 0x27, 0xd7, 0x60, 0xf2, 0xa7, 0x5d, 0xd3, 0x8f, 0x56, 0x1e, 0xc2, 0xca, 0x13, + 0xbc, 0x20, 0xac, 0xab, 0xde, 0x02, 0x58, 0x77, 0xa9, 0xef, 0xb7, 0x36, 0x1a, 0xba, 0xcd, 0x6c, + 0x21, 0xcf, 0xd7, 0x5d, 0xbf, 0x1c, 0x08, 0x50, 0x46, 0x4b, 0x63, 0x06, 0x33, 0x94, 0xce, 0xc1, + 0x08, 0xb5, 0xd1, 0x0c, 0x12, 0xbb, 0x76, 0x8a, 0xda, 0xcc, 0xf6, 0x79, 0x35, 0xf9, 0xc3, 0x6f, + 0xcc, 0x29, 0xea, 0x17, 0xd2, 0x4c, 0x9d, 0xd8, 0x35, 0x8a, 0x7b, 0xd1, 0xc7, 0x20, 0xe9, 0x35, + 0x74, 0x1b, 0x89, 0xc4, 0x6f, 0x69, 0xed, 0xee, 0xc5, 0x9a, 0xc4, 0x86, 0x64, 0x15, 0x00, 0x59, + 0x2b, 0x6b, 0x98, 0x27, 0x06, 0x11, 0xdc, 0x40, 0xe9, 0xb8, 0xa1, 0x6a, 0x7b, 0x53, 0x56, 0x30, + 0xd9, 0xeb, 0xd7, 0x8e, 0xd0, 0xb4, 0xe2, 0x8c, 0x85, 0xb4, 0xc4, 0x30, 0x82, 0xed, 0x89, 0x2f, + 0xd6, 0x3a, 0x8c, 0x7b, 0x4e, 0xd3, 0xad, 0xd2, 0x70, 0x63, 0x1a, 0x46, 0x63, 0xe4, 0xe6, 0xe1, + 0xc1, 0xdc, 0xe8, 0x06, 0x96, 0x9c, 0xce, 0x24, 0x19, 0xf5, 0xda, 0x44, 0x0c, 0xb2, 0x0b, 0x13, + 0xa2, 0x3b, 0x86, 0x0c, 0xfb, 0x4b, 0x61, 0x7f, 0xab, 0x87, 0x07, 0x73, 0x63, 0xbc, 0xbf, 0x0d, + 0x56, 0x82, 0x1d, 0xbe, 0x78, 0xac, 0x0e, 0x45, 0x3b, 0x6d, 0xcc, 0x93, 0xc8, 0x18, 0xdd, 0x67, + 0x90, 0x91, 0x1e, 0x67, 0x90, 0x25, 0x18, 0x13, 0xab, 0xd8, 0x64, 0xc0, 0x5a, 0x68, 0x34, 0x67, + 0xaf, 0xe7, 0x25, 0xb6, 0x06, 0xdd, 0xe0, 0xfa, 0x0a, 0xcc, 0x4c, 0x6c, 0x74, 0x8b, 0xb7, 0x21, + 0xb7, 0x51, 0x89, 0xa3, 0x0e, 0xc9, 0x67, 0x70, 0x5a, 0xe6, 0x63, 0x27, 0x57, 0xd2, 0x39, 0x92, + 0xea, 0xe6, 0x3a, 0x48, 0xcc, 0xaf, 0x97, 0x87, 0xae, 0xf9, 0xed, 0x49, 0xa8, 0xbd, 0xb0, 0xe4, + 0xf9, 0xf5, 0xc8, 0x27, 0x61, 0xcc, 0x62, 0xfa, 0x9b, 0x7a, 0x65, 0xcb, 0xa9, 0xea, 0x56, 0x3e, + 0x8b, 0xf4, 0x9e, 0xef, 0x2b, 0x2f, 0x6b, 0xac, 0xd5, 0x5b, 0xba, 0xad, 0xd7, 0xa8, 0x2b, 0x89, + 0xcd, 0xa8, 0xa0, 0xb6, 0xc6, 0x88, 0x91, 0x4f, 0xc1, 0x78, 0x40, 0xbd, 0x66, 0x39, 0x15, 0xdd, + 0xca, 0x8f, 0x9e, 0x8e, 0x7c, 0x00, 0xf6, 0x26, 0x52, 0x23, 0x5b, 0x30, 0x2a, 0x1f, 0xf7, 0xf3, + 0x63, 0x48, 0xfd, 0x99, 0xfe, 0xd4, 0x59, 0xa3, 0x88, 0x35, 0x96, 0xb5, 0xda, 0x59, 0xec, 0x30, + 0x16, 0x2a, 0xbf, 0xfc, 0x38, 0x2a, 0xac, 0x76, 0x06, 0xdb, 0xa5, 0x03, 0x4d, 0x39, 0xc1, 0x95, + 0xaa, 0x48, 0xaa, 0xbf, 0xaa, 0x88, 0xad, 0xa2, 0xef, 0x39, 0x82, 0xe8, 0x90, 0x71, 0x59, 0xcd, + 0xb2, 0x69, 0x78, 0x68, 0xeb, 0x25, 0x16, 0x97, 0x0f, 0x0f, 0xe6, 0xd2, 0x7c, 0x19, 0x2e, 0x7b, + 0xc7, 0x96, 0x6e, 0xd1, 0x50, 0x4b, 0x23, 0xd9, 0x55, 0xc3, 0x53, 0x37, 0x61, 0x3c, 0x00, 0x23, + 0xac, 0xd6, 0x45, 0x48, 0x61, 0x69, 0x60, 0xb6, 0x3e, 0xd1, 0x4f, 0x6a, 0x24, 0xce, 0x8b, 0x96, + 0xea, 0x3c, 0x8c, 0xdd, 0x44, 0xdf, 0x55, 0x5f, 0x5b, 0xeb, 0xfd, 0x21, 0x98, 0x58, 0x41, 0xdf, + 0x0d, 0x63, 0xab, 0x87, 0x2a, 0xf2, 0x53, 0x90, 0x0e, 0x17, 0x36, 0x3f, 0xd5, 0x2c, 0x1d, 0x1e, + 0xcc, 0x8d, 0x9c, 0x76, 0x49, 0x8f, 0x78, 0x62, 0x31, 0x6f, 0xc3, 0x0c, 0x9b, 0x0c, 0xea, 0x7a, + 0x65, 0xdd, 0x36, 0xf8, 0x6a, 0xad, 0xb9, 0x7a, 0x3d, 0x38, 0xe7, 0x3c, 0x27, 0x8f, 0x98, 0x8b, + 0x43, 0x31, 0xf0, 0x2f, 0x15, 0x37, 0x79, 0xcb, 0x05, 0xdb, 0xb8, 0x15, 0xb6, 0xd3, 0xa6, 0xfc, + 0x1e, 0xb9, 0xe4, 0x26, 0x64, 0x79, 0xb3, 0x32, 0xba, 0x44, 0x12, 0x68, 0xce, 0x5e, 0x89, 0x23, + 0xce, 0x39, 0x81, 0xbe, 0x0f, 0xa0, 0xe1, 0xb7, 0xfa, 0x2c, 0x10, 0x89, 0x47, 0x7d, 0x79, 0xfa, + 0x93, 0x70, 0x36, 0x52, 0x5d, 0x4c, 0x6c, 0xa8, 0x0d, 0xf8, 0xbc, 0xc6, 0x69, 0x83, 0x8e, 0x19, + 0x89, 0x68, 0x03, 0xf5, 0xa7, 0x00, 0x36, 0x5d, 0xbd, 0x4a, 0x57, 0xf6, 0x98, 0xa0, 0xbf, 0x02, + 0x49, 0xdf, 0xac, 0x53, 0xb1, 0x9f, 0x15, 0x8a, 0xdc, 0xcf, 0x54, 0x0c, 0xfc, 0x4c, 0xc5, 0xcd, + 0xc0, 0xcf, 0xb4, 0x98, 0x66, 0x44, 0xbe, 0xfc, 0xfd, 0x39, 0x45, 0xc3, 0x16, 0x6c, 0x89, 0x44, + 0x3d, 0x3a, 0x41, 0x52, 0xfd, 0x96, 0x02, 0x13, 0x0b, 0x16, 0x53, 0x35, 0xbe, 0xe3, 0x2e, 0xbb, + 0x2d, 0xad, 0x69, 0x33, 0xa1, 0x08, 0xd6, 0x02, 0xf6, 0x95, 0xe0, 0x42, 0x21, 0x24, 0xfa, 0xc4, + 0x2b, 0x61, 0x44, 0xac, 0x04, 0xf2, 0x1a, 0xa4, 0x28, 0x1b, 0x90, 0x27, 0x0e, 0x55, 0x71, 0x3b, + 0x73, 0x7b, 0xf8, 0x9a, 0x68, 0xa4, 0x5e, 0x87, 0xe9, 0x10, 0x31, 0xd2, 0x0e, 0x66, 0xe9, 0x7c, + 0x27, 0xee, 0xb0, 0x4b, 0xf5, 0xcf, 0x15, 0x98, 0xe9, 0x6c, 0xd4, 0xfb, 0x5c, 0x9f, 0xf8, 0x20, + 0xcf, 0xf5, 0x4b, 0x30, 0x62, 0xb8, 0xad, 0xb2, 0xdb, 0xb4, 0x85, 0xbc, 0xc7, 0x49, 0x42, 0xc7, + 0x34, 0x68, 0x29, 0x03, 0xff, 0xaa, 0x5f, 0x54, 0x20, 0xd7, 0xc6, 0xfe, 0x7f, 0x40, 0x91, 0xbd, + 0x0d, 0x93, 0x12, 0x1e, 0xc1, 0xc6, 0x15, 0x48, 0x8b, 0xa1, 0x0e, 0x22, 0xf5, 0x9d, 0x63, 0x1d, + 0xe1, 0x63, 0xf5, 0x54, 0x15, 0x46, 0x6f, 0x6f, 0xdc, 0xbb, 0x1b, 0x92, 0x0d, 0x9c, 0x8d, 0x4a, + 0xdb, 0xd9, 0xa8, 0xd6, 0x61, 0x2c, 0x28, 0x5f, 0x61, 0x46, 0x01, 0x3b, 0xd7, 0xa0, 0x75, 0x20, + 0x58, 0xc1, 0x13, 0xac, 0x69, 0xd5, 0x31, 0xb8, 0xc4, 0x0f, 0x6b, 0xf8, 0x2d, 0x2f, 0x84, 0x44, + 0x64, 0x21, 0xb0, 0x12, 0x83, 0x7b, 0x7c, 0xd0, 0x85, 0x99, 0xd1, 0x82, 0xa4, 0xfa, 0x6d, 0x05, + 0xb2, 0x6b, 0x4e, 0xad, 0xff, 0x1e, 0x32, 0x05, 0xc3, 0x16, 0xdd, 0xa3, 0x96, 0x58, 0x63, 0x3c, + 0x41, 0x1e, 0x03, 0xe0, 0xf6, 0x2c, 0xae, 0x5d, 0xde, 0x2b, 0xb7, 0x70, 0xd9, 0x7a, 0x65, 0x42, + 0xcb, 0x2c, 0x5a, 0x2c, 0xe4, 0x87, 0x4f, 0x66, 0xe1, 0x62, 0x51, 0x0e, 0x12, 0x75, 0x7d, 0x1f, + 0x0d, 0xbc, 0x8c, 0xc6, 0x3e, 0x19, 0xc8, 0x86, 0xee, 0xfb, 0xd4, 0xb5, 0x85, 0xaf, 0x31, 0x48, + 0xb2, 0x43, 0x9c, 0x4b, 0x0d, 0xbd, 0xea, 0x0b, 0xcb, 0x5f, 0xa4, 0x6e, 0x27, 0xd3, 0xe9, 0x5c, + 0x46, 0xbd, 0x07, 0x64, 0xcd, 0xa9, 0xb1, 0xa3, 0x99, 0x29, 0x6d, 0x3f, 0x1f, 0x61, 0xc6, 0x34, + 0x66, 0x89, 0x19, 0x3b, 0xdf, 0xe9, 0xa7, 0xb1, 0x9c, 0x5a, 0x51, 0x3e, 0xaa, 0x06, 0xf5, 0xd5, + 0x22, 0x9c, 0x5d, 0x73, 0x6a, 0x6f, 0x9a, 0x16, 0xf5, 0xd6, 0x4c, 0xcf, 0xef, 0xab, 0x27, 0xd7, + 0x61, 0x2a, 0x5a, 0x5f, 0x40, 0x78, 0x05, 0x86, 0xb7, 0x59, 0xa6, 0x00, 0x70, 0xb1, 0x17, 0x00, + 0xd6, 0x4a, 0x56, 0x8d, 0xd8, 0x40, 0xfd, 0x04, 0x8c, 0x0b, 0x8a, 0x7d, 0xe7, 0x85, 0x40, 0x92, + 0xb5, 0x11, 0xd3, 0x82, 0xdf, 0x12, 0xbf, 0x12, 0x1d, 0xfc, 0x4a, 0xe6, 0x86, 0xd5, 0x2a, 0x8c, + 0x6d, 0xf8, 0x7a, 0x75, 0xa7, 0xff, 0x9c, 0x7f, 0x44, 0x38, 0xe1, 0xb9, 0x03, 0x25, 0xd6, 0x6d, + 0x86, 0x04, 0xdb, 0xce, 0x76, 0x75, 0x03, 0x92, 0x0c, 0x3e, 0x9e, 0xd4, 0x75, 0xa1, 0xd6, 0x33, + 0x1a, 0x7e, 0xb3, 0x43, 0x10, 0x83, 0x59, 0xf6, 0xcc, 0x4f, 0x73, 0xda, 0x09, 0x2d, 0xcd, 0x32, + 0x36, 0xcc, 0x4f, 0x53, 0x52, 0x80, 0xb4, 0xb8, 0xd9, 0xf1, 0x84, 0x13, 0x3e, 0x4c, 0xab, 0xbf, + 0xa5, 0xc0, 0xc4, 0x4d, 0xea, 0x23, 0xa7, 0xfb, 0x82, 0xbf, 0x00, 0x19, 0xcb, 0xf4, 0xfc, 0xb2, + 0x63, 0x5b, 0x2d, 0x71, 0x10, 0x4e, 0xb3, 0x8c, 0x7b, 0xb6, 0xd5, 0x22, 0x2f, 0x8b, 0x91, 0x0d, + 0xe3, 0xc8, 0x2e, 0xc7, 0x8c, 0x8c, 0x75, 0x26, 0x5d, 0x22, 0x14, 0x20, 0x2d, 0xa4, 0x92, 0xfb, + 0x46, 0x32, 0x5a, 0x98, 0x56, 0x57, 0x21, 0xd7, 0x46, 0x27, 0x64, 0xe0, 0x46, 0x54, 0x06, 0xe6, + 0xfa, 0xf4, 0x14, 0x08, 0xc0, 0xfb, 0x0a, 0x8c, 0xaf, 0xbb, 0xce, 0xf6, 0x20, 0x12, 0xb0, 0x18, + 0x19, 0x4b, 0x31, 0xf6, 0x24, 0x28, 0x53, 0x2c, 0x4a, 0xc3, 0xca, 0xc3, 0x08, 0x3f, 0xc6, 0x7a, + 0xfc, 0x08, 0xa4, 0x05, 0x49, 0xf5, 0x3c, 0x24, 0xd1, 0xcf, 0x9e, 0x86, 0xe4, 0xad, 0x95, 0x85, + 0xf5, 0xdc, 0x19, 0x32, 0x02, 0x89, 0xa5, 0xf5, 0xad, 0x9c, 0xa2, 0x5e, 0x85, 0xf1, 0xb7, 0xa8, + 0xef, 0x9a, 0xd5, 0xfe, 0xa6, 0xc4, 0x1f, 0xa2, 0xb1, 0xba, 0xed, 0xa3, 0xbe, 0x65, 0xfb, 0xc8, + 0x23, 0xf5, 0x38, 0xbf, 0x01, 0xc3, 0xa8, 0xcf, 0x07, 0x3a, 0xd5, 0x76, 0x9c, 0x44, 0xb1, 0xa1, + 0x7a, 0x8d, 0x99, 0xb3, 0x02, 0x2e, 0x57, 0xc3, 0x92, 0x72, 0x55, 0xa2, 0x56, 0xc6, 0x67, 0x87, + 0x60, 0x22, 0xac, 0x2c, 0x8c, 0xfa, 0x47, 0x6d, 0x65, 0xdc, 0x84, 0x14, 0xee, 0x03, 0x81, 0x95, + 0x71, 0xb5, 0xcf, 0xc1, 0xbd, 0x3d, 0x90, 0xc0, 0xc2, 0xe6, 0xcd, 0xc9, 0x72, 0xe0, 0x5b, 0x4e, + 0x20, 0x9d, 0xf9, 0x41, 0xe8, 0x30, 0x6e, 0x47, 0xfc, 0xca, 0x6a, 0x13, 0x72, 0xac, 0x74, 0x99, + 0x56, 0x9a, 0xb5, 0x40, 0x16, 0x22, 0x7b, 0xb5, 0xf2, 0x48, 0xf6, 0xea, 0x7f, 0x19, 0x82, 0x49, + 0xa9, 0x5f, 0xb1, 0xe4, 0xbe, 0xa8, 0x74, 0x9c, 0x3c, 0x5e, 0xe9, 0x33, 0xa8, 0x48, 0x73, 0xde, + 0x8d, 0xf0, 0x61, 0x7e, 0x94, 0x0d, 0xf2, 0xbd, 0xef, 0x9f, 0x10, 0xa8, 0x40, 0xf1, 0x81, 0x4d, + 0x56, 0x81, 0x42, 0x56, 0x42, 0x27, 0xfb, 0x21, 0x13, 0xdc, 0x0f, 0xf9, 0x46, 0xd4, 0x0f, 0x79, + 0x6d, 0x90, 0x8e, 0xba, 0xfd, 0xdb, 0xff, 0x90, 0x84, 0x91, 0xcd, 0x7d, 0x1b, 0xcf, 0x50, 0xf7, + 0x61, 0x48, 0x88, 0xf0, 0xe8, 0xe2, 0x02, 0x03, 0xf3, 0xaf, 0x83, 0xae, 0x4d, 0x7e, 0x31, 0xdd, + 0x34, 0x8d, 0xe2, 0xd6, 0xd6, 0x2a, 0x9b, 0xf9, 0xa1, 0xd5, 0x65, 0x6d, 0xc8, 0x34, 0xc8, 0xab, + 0x78, 0x7e, 0x70, 0x7d, 0x01, 0x72, 0x30, 0x53, 0x9f, 0x37, 0x21, 0x4f, 0xc1, 0x84, 0xbf, 0x6f, + 0x97, 0x0d, 0xea, 0x55, 0x5d, 0xb3, 0xe1, 0x9b, 0x8e, 0x2d, 0x8c, 0x8e, 0x71, 0x7f, 0xdf, 0x5e, + 0x6e, 0xe7, 0x92, 0x97, 0xe0, 0x9c, 0xdd, 0xac, 0x73, 0xe7, 0x56, 0x9d, 0x6d, 0x1e, 0x65, 0xba, + 0x4f, 0xab, 0xcd, 0xc0, 0x7f, 0x39, 0xac, 0x4d, 0xdb, 0xcd, 0xfa, 0x46, 0x58, 0xba, 0x22, 0x0a, + 0xc9, 0x1c, 0x64, 0x59, 0x3b, 0x97, 0x72, 0xd3, 0x01, 0xfd, 0x4f, 0x1a, 0xd8, 0xcd, 0xba, 0xc6, + 0x73, 0xc8, 0x3c, 0xe4, 0x58, 0x05, 0xbd, 0xe9, 0x3b, 0x61, 0x2d, 0xae, 0x32, 0xc7, 0xed, 0x66, + 0x7d, 0xa1, 0xe9, 0x3b, 0x41, 0xcd, 0x37, 0x20, 0x6d, 0x50, 0xdd, 0xb0, 0x4c, 0x9b, 0xbb, 0x79, + 0x06, 0x1d, 0x6a, 0xd8, 0x8a, 0x6d, 0x36, 0x66, 0xbd, 0x61, 0x99, 0x55, 0xd3, 0x17, 0xae, 0xcc, + 0x30, 0xcd, 0x80, 0xea, 0xcc, 0xce, 0x2c, 0x57, 0x5a, 0x3e, 0xe5, 0x2e, 0x9e, 0x84, 0x06, 0x98, + 0xb5, 0xc8, 0x72, 0xc8, 0x15, 0x98, 0xa8, 0xeb, 0xfb, 0x65, 0xb9, 0x12, 0x60, 0xa5, 0xb1, 0xba, + 0xbe, 0xbf, 0xd0, 0xae, 0x77, 0x01, 0x32, 0x2e, 0xd5, 0x0d, 0xbe, 0x4f, 0x66, 0x79, 0x2f, 0x2c, + 0x03, 0xf7, 0xc9, 0xcb, 0x30, 0x66, 0x7a, 0xc2, 0x0f, 0x65, 0x56, 0x85, 0x4b, 0x25, 0xad, 0x8d, + 0x9a, 0xde, 0xad, 0x30, 0x0f, 0xf7, 0x44, 0xd7, 0x74, 0x5c, 0xd3, 0x6f, 0xa1, 0x53, 0x84, 0xed, + 0x89, 0x22, 0xad, 0xfe, 0x66, 0x02, 0xb2, 0x0b, 0x55, 0xdf, 0xdc, 0xa3, 0xf7, 0x9b, 0xd4, 0x6d, + 0x91, 0x99, 0x50, 0x9e, 0x32, 0x8b, 0x29, 0x49, 0x28, 0x72, 0x90, 0xf0, 0x76, 0x03, 0xe3, 0x92, + 0x7d, 0xb6, 0xc5, 0x24, 0x71, 0x7c, 0x31, 0x79, 0x12, 0xc6, 0x4d, 0xaf, 0x6c, 0x98, 0x9e, 0xef, + 0x9a, 0x95, 0x66, 0xdb, 0x69, 0x3d, 0x66, 0x7a, 0xcb, 0xed, 0x4c, 0xb2, 0x08, 0xc3, 0x8d, 0x07, + 0x81, 0xbf, 0x7a, 0xbc, 0xe7, 0xc5, 0x5a, 0x68, 0xd3, 0xb7, 0xc7, 0x50, 0x5c, 0x67, 0x6d, 0x34, + 0xde, 0x94, 0x0f, 0x3e, 0xbc, 0x2c, 0x51, 0xe6, 0x87, 0xa4, 0x2b, 0x8f, 0x4f, 0x40, 0x8a, 0x49, + 0xab, 0x69, 0xe0, 0xfc, 0x8f, 0x2e, 0x2e, 0x9f, 0x6e, 0x01, 0x0d, 0xb3, 0x45, 0xb9, 0xac, 0x0d, + 0xfb, 0xfb, 0xf6, 0x2a, 0xfa, 0xdb, 0xf1, 0x32, 0xd2, 0x76, 0x6c, 0x14, 0x8e, 0x8c, 0x36, 0xe2, + 0xed, 0x5a, 0x0b, 0xb6, 0x63, 0xab, 0x4f, 0xc2, 0x30, 0x62, 0x24, 0x63, 0x90, 0x59, 0xd7, 0x56, + 0xd6, 0x17, 0xb4, 0xd5, 0xbb, 0x37, 0x73, 0x67, 0x58, 0x72, 0xe5, 0x27, 0x56, 0x96, 0xb6, 0x36, + 0x59, 0x52, 0x51, 0x9f, 0x87, 0xb3, 0xcc, 0x5e, 0xdd, 0xa0, 0x9e, 0x67, 0x3a, 0x76, 0xb8, 0x89, + 0x17, 0x20, 0xdd, 0xf4, 0xa8, 0x2b, 0x99, 0x6d, 0x61, 0x5a, 0xfd, 0xef, 0x24, 0x8c, 0x88, 0xfa, + 0x8f, 0x74, 0x07, 0x97, 0x31, 0x0c, 0x45, 0x31, 0xb0, 0xc9, 0xad, 0x5a, 0x26, 0xb5, 0xfd, 0xf0, + 0x22, 0x96, 0xab, 0x80, 0x31, 0x9e, 0x2b, 0xee, 0x55, 0xc9, 0x55, 0xc8, 0xe1, 0x85, 0x56, 0x15, + 0xe3, 0x57, 0xca, 0x48, 0x8a, 0x9f, 0x41, 0x26, 0xa4, 0xfc, 0xbb, 0x8c, 0xe2, 0x06, 0x8c, 0xeb, + 0x38, 0xbf, 0x65, 0xe1, 0xea, 0xc7, 0xa0, 0x88, 0x6c, 0xd4, 0xc7, 0x72, 0xb4, 0x40, 0x04, 0xee, + 0x42, 0x3d, 0xcc, 0x62, 0xcb, 0x3f, 0x94, 0xdf, 0xd4, 0xf1, 0xe5, 0xf7, 0x1a, 0x4c, 0x5a, 0xba, + 0xe7, 0x97, 0x25, 0x54, 0x2d, 0x31, 0xc9, 0x13, 0xac, 0xa0, 0x7b, 0x45, 0x65, 0x50, 0xc0, 0xe4, + 0x15, 0xd5, 0xa1, 0x20, 0x60, 0x10, 0x05, 0x91, 0xed, 0xa5, 0x20, 0x16, 0x00, 0x04, 0x0e, 0x7f, + 0xdf, 0x16, 0x3e, 0x55, 0x35, 0xce, 0xab, 0xc1, 0xb7, 0x0e, 0x2d, 0xc3, 0x5b, 0x6d, 0xee, 0xdb, + 0xe4, 0x05, 0x98, 0xe9, 0x1a, 0x0f, 0x97, 0x5c, 0xae, 0x2f, 0xce, 0x76, 0x0c, 0x8a, 0x49, 0xf1, + 0xed, 0x64, 0x7a, 0x24, 0x97, 0x56, 0x7f, 0x45, 0x81, 0x49, 0x59, 0x4a, 0xb9, 0x35, 0xf6, 0x28, + 0x65, 0xef, 0x68, 0x7f, 0xd2, 0xef, 0x2a, 0x30, 0x15, 0x5d, 0x31, 0xc2, 0xe4, 0x58, 0x86, 0xb4, + 0x27, 0xf2, 0x84, 0xcd, 0x11, 0xc7, 0x20, 0xd1, 0x3c, 0x70, 0xb3, 0x07, 0x2d, 0xc9, 0xed, 0x0e, + 0x3b, 0x21, 0x4e, 0x1f, 0x75, 0xb1, 0x24, 0x6a, 0x2a, 0xa8, 0xbb, 0x40, 0x96, 0x74, 0xbb, 0x4a, + 0x2d, 0xe4, 0x67, 0xdf, 0x33, 0xc4, 0x15, 0x48, 0xf3, 0x49, 0x31, 0xf9, 0x45, 0x56, 0x66, 0x31, + 0xcb, 0xec, 0x55, 0x6c, 0xcc, 0xec, 0x4e, 0x2c, 0xec, 0x58, 0x97, 0x89, 0x0e, 0xdd, 0x70, 0x13, + 0xce, 0x46, 0xba, 0x14, 0xbc, 0x61, 0x07, 0x3a, 0xcc, 0xa6, 0x86, 0xb8, 0xbd, 0x0c, 0xd3, 0x6d, + 0xdf, 0xc6, 0x90, 0xe4, 0xdb, 0x50, 0x5b, 0x30, 0xc5, 0x09, 0x89, 0x01, 0xf6, 0x45, 0xff, 0x0c, + 0x80, 0x60, 0x62, 0x80, 0x7f, 0x94, 0x5f, 0xad, 0x0b, 0x02, 0xab, 0xcb, 0x5a, 0x46, 0x54, 0xe8, + 0x33, 0x86, 0x55, 0x98, 0xee, 0xe8, 0xfa, 0xc4, 0xa3, 0x78, 0x0c, 0x2e, 0xb0, 0x49, 0x5a, 0x0a, + 0xc3, 0x14, 0xd1, 0xd1, 0x17, 0x86, 0x79, 0x7c, 0x45, 0x81, 0xf3, 0xbd, 0xca, 0x7f, 0x9c, 0xf2, + 0xfd, 0x6d, 0x05, 0x2e, 0xf6, 0xc6, 0x2c, 0xb8, 0xb0, 0x16, 0x3a, 0x37, 0xb9, 0x9b, 0x36, 0x72, + 0xd8, 0xdc, 0xb5, 0x8a, 0x72, 0x80, 0x66, 0x71, 0x83, 0xba, 0xa6, 0x6e, 0x99, 0x9f, 0xa6, 0x86, + 0x46, 0x6b, 0x6c, 0xd7, 0x6d, 0x85, 0x32, 0x8a, 0x34, 0x88, 0xd6, 0x21, 0xef, 0x2f, 0xf6, 0x91, + 0xf7, 0x9e, 0xac, 0xea, 0x90, 0xfb, 0x7f, 0x53, 0x20, 0xb7, 0xd1, 0xd0, 0xed, 0x88, 0x87, 0xfb, + 0x72, 0x87, 0xe0, 0x2c, 0x42, 0x9b, 0x9b, 0x21, 0x5b, 0x34, 0xf9, 0x6a, 0x96, 0xcb, 0xd0, 0x8d, + 0x1f, 0x1d, 0xcc, 0x3d, 0x7f, 0x3c, 0xd3, 0xff, 0x0e, 0x6d, 0x49, 0x37, 0xba, 0x77, 0xdb, 0x37, + 0xba, 0x89, 0xd3, 0x50, 0x14, 0x17, 0xc1, 0xea, 0x9f, 0x29, 0x30, 0x29, 0x8d, 0x2e, 0x9c, 0x95, + 0xac, 0xef, 0xf8, 0xba, 0x55, 0x0e, 0xdc, 0xf2, 0x5d, 0x37, 0xc2, 0x9d, 0xf7, 0x03, 0x6f, 0xfd, + 0xff, 0xa5, 0x25, 0xa4, 0x11, 0x04, 0x39, 0x61, 0x7b, 0xcc, 0x61, 0xfb, 0x06, 0x3f, 0xb7, 0x55, + 0x9d, 0xa6, 0xed, 0x0b, 0x07, 0x23, 0x60, 0xd6, 0x12, 0xcb, 0x21, 0x2f, 0xc2, 0x8c, 0xde, 0x68, + 0xb8, 0xce, 0xbe, 0x59, 0xd7, 0x7d, 0xca, 0xac, 0xac, 0x1d, 0xb1, 0x7d, 0xf0, 0xa0, 0x93, 0x29, + 0xa9, 0x74, 0xd9, 0xf4, 0x76, 0x70, 0x17, 0x51, 0xff, 0x1f, 0x4c, 0x89, 0xfb, 0xc5, 0xe8, 0xa5, + 0xd5, 0x20, 0x73, 0xa3, 0x7e, 0x7d, 0x0c, 0xa6, 0x3b, 0x5a, 0x77, 0x3b, 0xb8, 0xd3, 0x1f, 0xf4, + 0x42, 0xf9, 0x3b, 0x05, 0xce, 0x06, 0x77, 0xa0, 0x72, 0xb4, 0x54, 0x06, 0xa5, 0xf5, 0xcd, 0x78, + 0x47, 0x4b, 0x37, 0xd6, 0x62, 0x78, 0xbf, 0xda, 0x3b, 0x6a, 0xaa, 0xa3, 0xf8, 0xe4, 0x51, 0x53, + 0x8d, 0x8e, 0x7e, 0x0a, 0xff, 0x94, 0xe1, 0x31, 0x66, 0x61, 0x50, 0x49, 0xd7, 0x35, 0xb4, 0xd2, + 0xe3, 0x1a, 0xfa, 0xe7, 0x15, 0x98, 0x96, 0xe2, 0x4c, 0xca, 0x9d, 0x9e, 0xf7, 0x7b, 0x87, 0x07, + 0x73, 0x67, 0xb7, 0xda, 0x15, 0x4e, 0x7d, 0xb0, 0x3f, 0xdb, 0xec, 0x24, 0x66, 0x78, 0xe4, 0x8f, + 0x14, 0xb8, 0x22, 0x05, 0xa9, 0x74, 0xc5, 0xb8, 0x48, 0xb0, 0x12, 0x08, 0xeb, 0x93, 0x87, 0x07, + 0x73, 0x97, 0xda, 0x11, 0x2c, 0xd1, 0xa8, 0x97, 0x53, 0x63, 0xbc, 0xe4, 0xc6, 0x52, 0x36, 0x3c, + 0xf2, 0x39, 0x05, 0xf2, 0xd1, 0xc0, 0x1a, 0x09, 0x62, 0x12, 0x21, 0xae, 0x1f, 0x1e, 0xcc, 0x4d, + 0xdd, 0x95, 0xc2, 0x6c, 0x4e, 0x0d, 0x6b, 0xca, 0xee, 0xa2, 0x66, 0x78, 0x64, 0x1f, 0x48, 0x10, + 0x92, 0x23, 0x61, 0x18, 0x46, 0x0c, 0x77, 0x0e, 0x0f, 0xe6, 0x26, 0xee, 0xf2, 0x00, 0x9d, 0x53, + 0x77, 0x3f, 0x61, 0xcb, 0x84, 0x0c, 0x8f, 0x7c, 0x49, 0x81, 0xf3, 0x1d, 0x01, 0x42, 0x12, 0x82, + 0x14, 0x22, 0xd8, 0x38, 0x3c, 0x98, 0x3b, 0xb7, 0x15, 0xad, 0x74, 0x6a, 0x24, 0xe7, 0x9a, 0xbd, + 0x08, 0x1a, 0x1e, 0xf9, 0x1d, 0x05, 0xd4, 0xa3, 0x82, 0x90, 0x24, 0x68, 0x23, 0x08, 0xed, 0xed, + 0xc3, 0x83, 0xb9, 0xd9, 0xfb, 0x3d, 0x43, 0x92, 0x4e, 0x8d, 0x70, 0x76, 0x37, 0x86, 0xae, 0xe1, + 0x91, 0xaf, 0x2a, 0x70, 0xb1, 0x3b, 0xe6, 0x49, 0x82, 0x98, 0x6e, 0x73, 0x4f, 0x8b, 0x46, 0x40, + 0x9d, 0x9e, 0x7b, 0x6e, 0x2f, 0x82, 0x86, 0x47, 0xbe, 0xa0, 0x40, 0x3e, 0x1a, 0x45, 0x25, 0x01, + 0xca, 0x20, 0x20, 0xed, 0xf0, 0x60, 0x6e, 0xe6, 0xde, 0xde, 0x07, 0x3a, 0x9b, 0x33, 0xce, 0x5e, + 0xaf, 0xc9, 0xc4, 0x30, 0xd0, 0x9e, 0xda, 0xb4, 0x5f, 0x18, 0x68, 0x36, 0xf6, 0x29, 0x41, 0x6f, + 0xb5, 0x2d, 0x6b, 0x4e, 0xc9, 0x4d, 0x76, 0x3b, 0x99, 0x56, 0x72, 0x69, 0xf5, 0x65, 0xc8, 0xdd, + 0x72, 0xfc, 0x13, 0xec, 0x69, 0x9f, 0x1f, 0x81, 0x49, 0xa9, 0xe5, 0x87, 0x10, 0x88, 0xfd, 0xf7, + 0x0a, 0x4c, 0x3f, 0x70, 0x7c, 0x3e, 0x73, 0x3d, 0xe2, 0x7f, 0x97, 0x62, 0x58, 0xd3, 0x85, 0xb4, + 0x9d, 0x13, 0xdd, 0xce, 0xd6, 0xc5, 0x76, 0x36, 0xd9, 0x59, 0x7e, 0xe2, 0xfd, 0x6c, 0xf2, 0x41, + 0x67, 0x4f, 0x85, 0x3d, 0x48, 0x07, 0xe4, 0xc9, 0x47, 0x21, 0x69, 0x50, 0xaf, 0x2a, 0xcc, 0x1e, + 0xb5, 0x47, 0x90, 0x14, 0xd6, 0x0b, 0x9c, 0x83, 0xa1, 0xc5, 0x88, 0xad, 0x8e, 0x08, 0xfc, 0x1b, + 0xea, 0x1d, 0xf8, 0x57, 0xf8, 0x47, 0x05, 0xc6, 0x30, 0x0c, 0x24, 0x9c, 0xaf, 0x47, 0x1d, 0x63, + 0xf2, 0x36, 0x40, 0x7b, 0xca, 0xc4, 0x3c, 0xdd, 0x38, 0xd1, 0x3c, 0x85, 0xb1, 0xc2, 0x41, 0x8d, + 0xc2, 0x2f, 0x2b, 0xdc, 0x2c, 0x08, 0x07, 0x33, 0x90, 0x59, 0xa0, 0x41, 0x0a, 0xc1, 0x05, 0x68, + 0x5e, 0x3d, 0x16, 0x9a, 0x08, 0xf7, 0x34, 0x41, 0xa9, 0xf0, 0xb3, 0x30, 0xd3, 0x5b, 0x9c, 0x7a, + 0xac, 0xe7, 0x7b, 0xd1, 0xf5, 0xfc, 0x91, 0x63, 0x75, 0x2f, 0x0f, 0x57, 0x76, 0x79, 0x5f, 0x85, + 0xd1, 0x41, 0xa3, 0x2d, 0xbe, 0x39, 0x2c, 0xe2, 0xae, 0x3e, 0x94, 0x35, 0x2b, 0x5f, 0x24, 0x0d, + 0x3d, 0x82, 0x8b, 0xa4, 0xbf, 0x51, 0x60, 0xca, 0x15, 0x03, 0x89, 0xa8, 0x04, 0x7e, 0x1f, 0xf4, + 0xb1, 0x7e, 0x57, 0x67, 0xed, 0x6b, 0x93, 0x80, 0xc8, 0x11, 0xea, 0xa0, 0xb3, 0xfc, 0xe4, 0xea, + 0xc0, 0xed, 0xec, 0xa9, 0xf0, 0x95, 0x4e, 0x41, 0x2e, 0x40, 0x3a, 0xa8, 0x15, 0x9c, 0xd6, 0xdd, + 0x23, 0x85, 0xbc, 0xd7, 0x33, 0xb0, 0x37, 0x60, 0xd8, 0xb4, 0xb7, 0x9d, 0xe0, 0x5a, 0xec, 0x58, + 0x37, 0x88, 0xd8, 0xb0, 0xf0, 0x0e, 0xcc, 0xf4, 0x66, 0x49, 0x0f, 0x91, 0xbe, 0x13, 0x15, 0xe9, + 0x1b, 0x03, 0x33, 0xfd, 0x08, 0x71, 0x16, 0x17, 0xfd, 0xcf, 0x02, 0x59, 0x6e, 0xbf, 0xb6, 0xec, + 0x7b, 0x47, 0x3b, 0x2f, 0x74, 0x5b, 0xff, 0x9a, 0x7f, 0x3c, 0x04, 0xa3, 0x58, 0x35, 0x78, 0xad, + 0xf7, 0xa8, 0xb5, 0xe0, 0xd3, 0x30, 0x49, 0xed, 0xaa, 0xdb, 0xc2, 0xbb, 0x9d, 0x20, 0xfe, 0x12, + 0xcf, 0xe8, 0x5a, 0xae, 0x5d, 0x20, 0xee, 0x5e, 0xe7, 0x82, 0xe3, 0x30, 0xbf, 0x78, 0xe7, 0x87, + 0x52, 0x7e, 0xc2, 0xc5, 0xbb, 0xf9, 0x76, 0x05, 0x7e, 0x6a, 0x4d, 0x4a, 0x15, 0xb8, 0xc7, 0x73, + 0x1e, 0x72, 0xc2, 0x53, 0xb9, 0x43, 0x5b, 0x82, 0x0c, 0x7f, 0x1c, 0x20, 0xfc, 0xc4, 0x77, 0x68, + 0x8b, 0x93, 0x8a, 0xd6, 0xe4, 0xf4, 0x52, 0x1d, 0x35, 0xf9, 0xf9, 0xf7, 0xe3, 0x30, 0x1e, 0x70, + 0x37, 0x0c, 0x2a, 0x0a, 0x14, 0x29, 0x77, 0x19, 0x3e, 0x15, 0x1b, 0x5f, 0xd1, 0xe6, 0x76, 0xe0, + 0xf1, 0xe0, 0x8d, 0xd5, 0x57, 0x60, 0xb2, 0x7d, 0x8f, 0x75, 0x2c, 0x0b, 0xe4, 0x2f, 0xd2, 0x40, + 0xe4, 0xa6, 0x02, 0x57, 0x03, 0x63, 0x7a, 0x44, 0xae, 0xc0, 0x76, 0x3b, 0x3e, 0xf6, 0xa3, 0x83, + 0x44, 0x71, 0xc9, 0xb1, 0x2c, 0x5a, 0xf5, 0xa9, 0x11, 0x96, 0x75, 0x85, 0x04, 0x4b, 0x7d, 0x90, + 0x25, 0x00, 0x74, 0x0f, 0xbb, 0xd4, 0xa3, 0xc7, 0xbb, 0xef, 0xc9, 0xb0, 0x76, 0x1a, 0x6b, 0x46, + 0x5e, 0x86, 0xbc, 0x69, 0xfb, 0xd4, 0xb5, 0x75, 0xab, 0xac, 0x37, 0x1a, 0xe8, 0xf0, 0x2f, 0x37, + 0x5c, 0xba, 0x6d, 0xee, 0x0b, 0xbf, 0xff, 0x74, 0x50, 0xbe, 0xd0, 0x68, 0xdc, 0xd5, 0xeb, 0x74, + 0x1d, 0x0b, 0xc9, 0x67, 0x60, 0x14, 0xdf, 0xa4, 0xb0, 0x09, 0x73, 0xec, 0xc0, 0xf7, 0xbf, 0x79, + 0xbc, 0x11, 0xaf, 0x88, 0xa7, 0x8a, 0xe1, 0xc8, 0x37, 0xdb, 0x24, 0xbb, 0xc6, 0x1e, 0xe9, 0xaf, + 0xf0, 0xb7, 0x0a, 0xcc, 0x06, 0xcd, 0x7b, 0xf0, 0xeb, 0x0e, 0x6d, 0x91, 0x37, 0x21, 0xcd, 0xe4, + 0x2b, 0x0c, 0x16, 0xeb, 0x70, 0xef, 0xec, 0x5a, 0xc5, 0xde, 0x0d, 0x83, 0xc8, 0xa6, 0x1d, 0xda, + 0x5a, 0xd6, 0x7d, 0x5d, 0xde, 0xa9, 0x86, 0x3e, 0xe0, 0x9d, 0xaa, 0xf0, 0xb5, 0x21, 0xb8, 0x18, + 0x37, 0xef, 0xc4, 0x68, 0xeb, 0xbd, 0xec, 0xf5, 0xb5, 0x93, 0xb1, 0x37, 0x76, 0x98, 0xa8, 0x4b, + 0x5f, 0x0f, 0xa2, 0x53, 0x87, 0xba, 0x2f, 0x2a, 0x7a, 0xf3, 0x29, 0x1a, 0xa3, 0xfe, 0x16, 0x5e, + 0xa7, 0xa0, 0xd2, 0x58, 0x7c, 0x8d, 0x5f, 0xa7, 0x1c, 0x9b, 0x33, 0x1b, 0x7e, 0xdd, 0xe7, 0xb7, + 0x30, 0x85, 0xef, 0x29, 0x70, 0x65, 0x30, 0xd9, 0x20, 0x1a, 0x5f, 0x77, 0x9e, 0x3c, 0xcd, 0xcf, + 0x76, 0xc0, 0x1f, 0x48, 0xbc, 0x32, 0x48, 0xe6, 0x51, 0x4f, 0xb8, 0xfa, 0xb9, 0x21, 0x28, 0x84, + 0xec, 0x8c, 0x6c, 0x34, 0x0d, 0xc7, 0xf5, 0xc9, 0x78, 0x78, 0xd3, 0x9b, 0xc0, 0xfb, 0xa8, 0x8b, + 0x90, 0xa9, 0x3a, 0xf5, 0x86, 0x45, 0x7d, 0x6a, 0x88, 0x78, 0xac, 0x76, 0x06, 0x79, 0x01, 0xa6, + 0x43, 0x85, 0x50, 0xde, 0x36, 0xed, 0x1a, 0x75, 0x1b, 0xae, 0x69, 0xfb, 0xc2, 0x43, 0x3f, 0x15, + 0x16, 0xbe, 0xd9, 0x2e, 0x23, 0xaf, 0x43, 0xbe, 0xdd, 0x48, 0xfa, 0x61, 0x01, 0x36, 0x5c, 0x7c, + 0xf5, 0x8c, 0x0c, 0x51, 0xb4, 0x19, 0xaf, 0x07, 0x4c, 0x8c, 0xa2, 0x19, 0x75, 0xb9, 0xc2, 0xa4, + 0x46, 0x59, 0xf7, 0xc5, 0x83, 0xce, 0xc1, 0x34, 0x4f, 0x36, 0x6c, 0xb9, 0xe0, 0xab, 0x9f, 0x82, + 0xa7, 0x96, 0x5c, 0xaa, 0xfb, 0xf4, 0x68, 0x7e, 0x04, 0x9a, 0xf9, 0xc8, 0x81, 0x2a, 0x47, 0x0f, + 0x54, 0x6d, 0xc1, 0x7c, 0x7f, 0xfa, 0x42, 0x7d, 0xbf, 0x05, 0x29, 0x17, 0x73, 0x84, 0x08, 0xdd, + 0x18, 0x64, 0xa5, 0x75, 0x93, 0x13, 0x44, 0xd4, 0x27, 0x40, 0x3d, 0xba, 0x56, 0x78, 0x9b, 0xf1, + 0x33, 0x70, 0x39, 0xb6, 0x96, 0xc0, 0xb6, 0x05, 0x23, 0x9c, 0x6c, 0xb0, 0xaf, 0x9c, 0x0c, 0x5c, + 0xa0, 0xd6, 0x04, 0x2d, 0xf5, 0xf7, 0x15, 0x98, 0xea, 0x55, 0xbb, 0x4b, 0x06, 0x8f, 0x64, 0xfe, + 0x50, 0x8c, 0x94, 0xdd, 0x84, 0xd1, 0x6a, 0xb0, 0xec, 0x98, 0x94, 0x1c, 0x67, 0x7f, 0xca, 0x86, + 0x2d, 0x17, 0x82, 0xf0, 0xcb, 0x8f, 0xc3, 0x85, 0xde, 0x23, 0xe3, 0xf2, 0xf1, 0x4a, 0x8c, 0x4c, + 0xf3, 0x81, 0x1c, 0x21, 0xcd, 0xea, 0x2e, 0x5c, 0xec, 0x4d, 0x58, 0x30, 0xff, 0x3e, 0x64, 0x25, + 0x7a, 0x42, 0x3f, 0x96, 0x8e, 0x3b, 0x01, 0x32, 0x0d, 0xf5, 0x05, 0xc8, 0xdf, 0x76, 0x2a, 0xc1, + 0xf5, 0x8e, 0x88, 0x24, 0xea, 0x67, 0x3d, 0xfe, 0x97, 0x02, 0xe7, 0x7b, 0xb4, 0xfa, 0x10, 0x0e, + 0x53, 0x9f, 0x80, 0x51, 0xb7, 0x69, 0xdb, 0xa6, 0x5d, 0x2b, 0x3f, 0x74, 0x2a, 0xc1, 0x01, 0x36, + 0x2e, 0x3c, 0xec, 0x48, 0x9c, 0x58, 0x92, 0x15, 0xd4, 0x6e, 0x3b, 0x15, 0xaf, 0x30, 0x0d, 0x89, + 0xdb, 0x4e, 0xa5, 0x53, 0xe4, 0xd4, 0xab, 0x90, 0xbb, 0xed, 0x54, 0xa2, 0xac, 0x99, 0x86, 0xd4, + 0x43, 0xa7, 0xd2, 0x9e, 0xd1, 0xe1, 0x87, 0x4e, 0x65, 0xd5, 0x50, 0x57, 0x60, 0x52, 0xaa, 0x2a, + 0xf8, 0xf1, 0x1c, 0x24, 0x1e, 0x3a, 0x15, 0xb1, 0x96, 0x67, 0x3b, 0xb6, 0x03, 0xfc, 0xf9, 0x16, + 0xfe, 0x53, 0x2e, 0x08, 0x88, 0x55, 0x55, 0xdf, 0x80, 0xf3, 0x1b, 0xf7, 0xd7, 0xda, 0xbb, 0x02, + 0x9a, 0x47, 0xc7, 0x32, 0x0c, 0xef, 0x41, 0xa1, 0x17, 0x05, 0x81, 0xe8, 0x79, 0x98, 0xb6, 0x9b, + 0xf5, 0xb2, 0xb3, 0x8d, 0x67, 0x45, 0x8f, 0x5b, 0x6d, 0xbe, 0xb8, 0x17, 0x1d, 0xd6, 0x88, 0xdd, + 0xac, 0xdf, 0xdb, 0x0e, 0xde, 0x8b, 0x63, 0xc9, 0xb5, 0x1b, 0x00, 0xed, 0x08, 0x61, 0x32, 0x05, + 0xb9, 0x9b, 0xf7, 0xb4, 0x7b, 0x5b, 0x9b, 0xab, 0x77, 0x57, 0xca, 0x1b, 0x9b, 0x0b, 0x4b, 0x77, + 0x36, 0x72, 0x67, 0xc8, 0x24, 0x8c, 0x6d, 0xde, 0xd2, 0x56, 0x16, 0x96, 0x83, 0x2c, 0xe5, 0xda, + 0x13, 0x90, 0x0e, 0xc2, 0x6f, 0xa5, 0xf8, 0xd3, 0x71, 0x80, 0xb0, 0xf9, 0x46, 0x4e, 0xb9, 0xfe, + 0xc3, 0xab, 0x90, 0x12, 0xa6, 0xff, 0xd7, 0x15, 0x18, 0x95, 0x7f, 0xcd, 0x81, 0x14, 0x07, 0xfb, + 0xbd, 0x86, 0x60, 0x66, 0x0a, 0xa5, 0x81, 0xeb, 0x73, 0x66, 0xa8, 0x4f, 0xbd, 0xf7, 0xcf, 0xff, + 0xf9, 0xb5, 0xa1, 0xc7, 0xc9, 0x5c, 0x49, 0x1c, 0x4b, 0x4a, 0xf2, 0x8f, 0x3d, 0x94, 0xde, 0x11, + 0xcc, 0x7e, 0x97, 0xfc, 0x82, 0x02, 0x23, 0xc1, 0x71, 0x29, 0x2e, 0x00, 0x30, 0xfa, 0xdb, 0x10, + 0x85, 0x6b, 0x83, 0x54, 0x15, 0x58, 0x54, 0xc4, 0x72, 0x91, 0x14, 0x42, 0x2c, 0x22, 0xca, 0x5f, + 0x82, 0xe1, 0xc2, 0x30, 0x4e, 0x0d, 0x79, 0xaa, 0xff, 0x63, 0x7f, 0x8e, 0x60, 0x7e, 0xd0, 0x5f, + 0x05, 0x50, 0x67, 0xb0, 0xff, 0x1c, 0x19, 0x0f, 0xfb, 0xe7, 0xbf, 0x3a, 0xf0, 0x19, 0x48, 0x62, + 0xc8, 0xef, 0x95, 0x3e, 0x94, 0x82, 0x1e, 0x8f, 0xf5, 0x03, 0x07, 0xea, 0x25, 0xec, 0xb5, 0x40, + 0xf2, 0xd1, 0x5e, 0xa5, 0x31, 0xbf, 0xcb, 0x9f, 0xe1, 0x63, 0x98, 0x27, 0x79, 0x7a, 0xb0, 0x60, + 0xd0, 0xa3, 0x91, 0x1c, 0x19, 0x39, 0xaa, 0x4e, 0x23, 0x92, 0x09, 0x32, 0x16, 0x22, 0x71, 0xf5, + 0x6d, 0x9f, 0x7c, 0x56, 0x81, 0x14, 0x77, 0x43, 0x91, 0xbe, 0x4f, 0x30, 0x43, 0xae, 0x5f, 0x1d, + 0xa0, 0xa6, 0xe8, 0xf6, 0x71, 0xec, 0xf6, 0x02, 0x39, 0x2f, 0x75, 0xcb, 0x2a, 0x48, 0x1c, 0xf0, + 0x20, 0xc5, 0xdf, 0xd1, 0xc5, 0x22, 0x88, 0x3c, 0xb5, 0x2b, 0xc8, 0xcf, 0x15, 0xc4, 0x0f, 0x48, + 0xad, 0xda, 0xdb, 0x8e, 0xe0, 0x7a, 0x77, 0xa7, 0xe2, 0xb7, 0xa6, 0xda, 0x9d, 0xfe, 0xba, 0x02, + 0x59, 0xe9, 0x01, 0x18, 0x79, 0x76, 0xb0, 0x87, 0x62, 0x41, 0xff, 0xc5, 0x41, 0xab, 0x0b, 0x36, + 0x5c, 0x41, 0x44, 0x97, 0xc8, 0x6c, 0x88, 0x88, 0x5f, 0x77, 0xa3, 0x31, 0x2c, 0xc1, 0xfa, 0x8a, + 0x02, 0x99, 0xf0, 0x85, 0x4e, 0xac, 0x38, 0x74, 0xbe, 0x4b, 0x8a, 0x15, 0x87, 0xae, 0x47, 0x43, + 0xea, 0x55, 0x04, 0x74, 0x99, 0x3c, 0x1e, 0x02, 0xd2, 0x83, 0x3a, 0x28, 0xa2, 0x12, 0xa6, 0xf7, + 0x15, 0x18, 0x8f, 0xbe, 0xe0, 0x22, 0xcf, 0x0d, 0xd4, 0x97, 0xe4, 0xb3, 0x2c, 0x3c, 0x7f, 0x8c, + 0x16, 0x02, 0xe2, 0xd3, 0x08, 0xf1, 0x49, 0x72, 0xb9, 0x07, 0x44, 0x14, 0xa2, 0xd2, 0x3b, 0x81, + 0xf7, 0xf1, 0x5d, 0xf2, 0x79, 0x05, 0x46, 0xe5, 0xb0, 0xa3, 0x58, 0xe5, 0xda, 0x23, 0xb0, 0x30, + 0x56, 0xb9, 0xf6, 0x0a, 0xab, 0x52, 0xcf, 0x23, 0xbc, 0xb3, 0x64, 0x32, 0x84, 0x17, 0xc6, 0x4a, + 0xfd, 0x86, 0x08, 0x0b, 0xc3, 0xa7, 0xbf, 0x1f, 0x1e, 0xa2, 0x39, 0x44, 0x74, 0x9e, 0x9c, 0x0b, + 0x11, 0xe1, 0x43, 0xe6, 0x72, 0x88, 0xeb, 0xeb, 0x0a, 0x64, 0xa5, 0x28, 0xa8, 0x58, 0xa1, 0xef, + 0x0e, 0xd0, 0x8a, 0x15, 0xfa, 0x1e, 0xc1, 0x55, 0xea, 0x35, 0xc4, 0xf3, 0x84, 0x2a, 0x6d, 0x3f, + 0x58, 0x8b, 0x87, 0xd8, 0xb5, 0x25, 0xec, 0x55, 0xe5, 0x1a, 0xf9, 0x03, 0x11, 0xbd, 0xd6, 0x19, + 0x46, 0x43, 0x5e, 0x3a, 0x66, 0xdc, 0x4d, 0x00, 0xf6, 0xe5, 0x63, 0xb7, 0x3b, 0x72, 0xa3, 0x6a, + 0x07, 0x0e, 0x95, 0x45, 0x70, 0xd0, 0x9f, 0x8a, 0xf8, 0x28, 0x9c, 0xe0, 0x1f, 0x3f, 0xe4, 0x79, + 0x84, 0xac, 0x92, 0x4b, 0x1d, 0x13, 0xdf, 0x0d, 0xfc, 0x1b, 0x0a, 0x8c, 0x45, 0x62, 0xc8, 0x48, + 0xa9, 0xef, 0xa4, 0x46, 0x03, 0xdd, 0x0a, 0xcf, 0x0d, 0xde, 0x40, 0xc0, 0x7b, 0x06, 0xe1, 0x5d, + 0x51, 0x1f, 0xef, 0x94, 0x03, 0x21, 0x98, 0x51, 0x49, 0xf8, 0xac, 0x02, 0x99, 0x30, 0x8c, 0x28, + 0x56, 0x05, 0x76, 0x86, 0x52, 0xc5, 0xaa, 0xc0, 0xae, 0xc8, 0x24, 0x35, 0x8f, 0xb0, 0x88, 0xda, + 0xde, 0x11, 0xbd, 0x86, 0x6e, 0x33, 0x08, 0x9f, 0x41, 0x9b, 0xad, 0xba, 0x13, 0xbf, 0x27, 0x46, + 0xde, 0xa9, 0x15, 0xe2, 0x4c, 0x16, 0xf9, 0x5d, 0x65, 0x8f, 0xcd, 0xc9, 0x43, 0x42, 0x92, 0xc6, + 0xfd, 0x39, 0x05, 0x46, 0xc4, 0x73, 0xa8, 0x58, 0x73, 0x2c, 0xfa, 0x64, 0x6a, 0x70, 0x08, 0xdd, + 0x22, 0xde, 0xe0, 0x94, 0x3a, 0x30, 0x88, 0x07, 0x54, 0xb1, 0x18, 0xa2, 0x8f, 0xac, 0x4e, 0x83, + 0xa1, 0xce, 0x29, 0x49, 0x18, 0x7e, 0x51, 0x81, 0x74, 0xf0, 0x68, 0x8d, 0xc4, 0x19, 0x9b, 0x1d, + 0xef, 0xee, 0x0a, 0x4f, 0x0f, 0x54, 0x57, 0x20, 0xe9, 0xb6, 0xd1, 0xd0, 0xa9, 0x1e, 0x35, 0x16, + 0x46, 0xe5, 0x47, 0x94, 0xf1, 0xaa, 0xbc, 0xfb, 0x75, 0x66, 0xbc, 0x2a, 0xef, 0xf1, 0x3a, 0x53, + 0xbd, 0x8c, 0x98, 0x1e, 0x23, 0x17, 0xa4, 0x15, 0x5d, 0xeb, 0x84, 0xf5, 0x25, 0x05, 0x46, 0x44, + 0xeb, 0xd8, 0x29, 0x8a, 0xbe, 0xd6, 0x2c, 0x3c, 0x1b, 0x5f, 0xb5, 0xe3, 0xad, 0x6a, 0xa0, 0xc5, + 0x89, 0x1a, 0x03, 0xa5, 0xf4, 0x0e, 0xcb, 0x78, 0x97, 0x19, 0xd3, 0x6b, 0x4e, 0xcd, 0x8b, 0x35, + 0xa6, 0xa5, 0x07, 0xbd, 0xc7, 0x85, 0xd2, 0x6b, 0x83, 0xab, 0xc9, 0x1c, 0xf9, 0xaa, 0x82, 0x3f, + 0x87, 0xd4, 0x8e, 0x93, 0x88, 0x55, 0x6f, 0xbd, 0x42, 0xfe, 0x62, 0xd5, 0x5b, 0xcf, 0x10, 0x0c, + 0x75, 0x16, 0x51, 0xe5, 0xc9, 0x8c, 0xbc, 0x9a, 0x58, 0x3d, 0xf1, 0xc2, 0xea, 0x3d, 0x05, 0x32, + 0xe1, 0x65, 0x6f, 0xac, 0x42, 0xeb, 0x8c, 0xd5, 0x88, 0x55, 0x68, 0x5d, 0xf7, 0xc7, 0x6a, 0x01, + 0x81, 0x4c, 0x11, 0x12, 0x02, 0x79, 0xe0, 0xf8, 0x02, 0xc4, 0xbb, 0x30, 0xcc, 0x4d, 0xb7, 0xa7, + 0xfa, 0xdf, 0xdf, 0xf5, 0x3f, 0x5a, 0x45, 0x0d, 0xb5, 0x23, 0x6c, 0x7c, 0xd9, 0x3c, 0x7b, 0x5f, + 0x81, 0xac, 0xec, 0xfb, 0x8a, 0x9b, 0xf8, 0x6e, 0xbf, 0x53, 0xe1, 0xa3, 0xdd, 0xd5, 0xe5, 0x9f, + 0x6a, 0x8d, 0xfc, 0x88, 0xab, 0xd4, 0x9e, 0x3b, 0xe4, 0x7a, 0x18, 0xdf, 0xf2, 0x2f, 0xc0, 0xb6, + 0xa5, 0x87, 0x9d, 0x85, 0xf8, 0x35, 0x58, 0x1f, 0xbd, 0x2f, 0xdd, 0x43, 0xc6, 0x9e, 0x85, 0xa2, + 0x77, 0x6a, 0x3d, 0x35, 0x3f, 0xab, 0x20, 0x41, 0xf8, 0x25, 0x05, 0x9d, 0x11, 0xc1, 0xdd, 0xd3, + 0x33, 0x03, 0x5e, 0x44, 0xf4, 0x5f, 0x4d, 0xdd, 0xd7, 0x16, 0xea, 0x05, 0x84, 0x33, 0x4d, 0xce, + 0xca, 0x1b, 0x51, 0xd0, 0xf3, 0x77, 0x15, 0xb8, 0xd4, 0xcf, 0xab, 0x4b, 0x16, 0xe3, 0x4c, 0x81, + 0xc1, 0x5c, 0xce, 0x85, 0xa5, 0x53, 0xd1, 0x88, 0xaa, 0x4b, 0x35, 0x2f, 0x0d, 0xa5, 0xee, 0xb3, + 0x59, 0x16, 0x5e, 0x58, 0xb6, 0xab, 0xff, 0xb5, 0x72, 0x94, 0x0f, 0x12, 0x91, 0x78, 0xe4, 0xb5, + 0x13, 0xf9, 0x7b, 0x43, 0xf6, 0xbf, 0x7e, 0xd2, 0xe6, 0x47, 0xee, 0x43, 0x1d, 0x83, 0x20, 0x7f, + 0x79, 0x94, 0x2b, 0xf9, 0xa5, 0x63, 0x77, 0xdd, 0xdf, 0xe2, 0x8c, 0x73, 0xd7, 0xaa, 0x2f, 0x22, + 0xd6, 0x22, 0x79, 0xa6, 0x0b, 0x6b, 0xe9, 0x9d, 0xa3, 0x3c, 0xc4, 0xef, 0x92, 0x6f, 0x2a, 0xe8, + 0x44, 0x8c, 0x3a, 0x2d, 0xc9, 0x0b, 0xc7, 0x73, 0x71, 0x72, 0xe4, 0x2f, 0x9e, 0xc4, 0x2f, 0xda, + 0xc3, 0x21, 0xf6, 0xd0, 0xa9, 0x94, 0x5d, 0x51, 0x39, 0x6a, 0x79, 0x64, 0x42, 0x77, 0x67, 0xac, + 0xce, 0xee, 0xf4, 0x9f, 0xc6, 0xea, 0xec, 0x2e, 0x0f, 0xaa, 0xfa, 0x18, 0x22, 0x3a, 0x47, 0xa6, + 0x65, 0x44, 0xa5, 0x77, 0xb8, 0x07, 0xf6, 0x5d, 0xf2, 0x7b, 0x0a, 0x90, 0x6e, 0x6f, 0x27, 0x89, + 0x1b, 0xfd, 0x91, 0xee, 0xd5, 0xc2, 0x8d, 0x63, 0xb6, 0x8a, 0xfa, 0x2e, 0xd4, 0xb6, 0x2d, 0xe2, + 0xed, 0x5a, 0x5e, 0x58, 0x19, 0x3d, 0xac, 0xaf, 0x2a, 0xd7, 0x16, 0xaf, 0x7d, 0xe7, 0x3f, 0x66, + 0xcf, 0x7c, 0xe7, 0x70, 0x56, 0xf9, 0xee, 0xe1, 0xac, 0xf2, 0xbd, 0xc3, 0x59, 0xe5, 0xdf, 0x0f, + 0x67, 0x95, 0x2f, 0xff, 0x60, 0xf6, 0xcc, 0x77, 0x7f, 0x30, 0x7b, 0xe6, 0x7b, 0x3f, 0x98, 0x3d, + 0xf3, 0x76, 0x3a, 0xe8, 0xae, 0x92, 0xc2, 0x8b, 0x89, 0x17, 0xfe, 0x37, 0x00, 0x00, 0xff, 0xff, + 0xc4, 0xd1, 0xd0, 0x31, 0x50, 0x5c, 0x00, 0x00, } diff --git a/pkg/server/serverpb/status.pb.gw.go b/pkg/server/serverpb/status.pb.gw.go index fe870c73dba0..3de0c7485009 100644 --- a/pkg/server/serverpb/status.pb.gw.go +++ b/pkg/server/serverpb/status.pb.gw.go @@ -1809,6 +1809,40 @@ func local_request_Status_JobStatus_0(ctx context.Context, marshaler runtime.Mar } +func request_Status_SQLStatisticsReset_0(ctx context.Context, marshaler runtime.Marshaler, client StatusClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) { + var protoReq SQLStatisticsResetRequest + var metadata runtime.ServerMetadata + + newReader, berr := utilities.IOReaderFactory(req.Body) + if berr != nil { + return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr) + } + if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF { + return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err) + } + + msg, err := client.SQLStatisticsReset(ctx, &protoReq, grpc.Header(&metadata.HeaderMD), grpc.Trailer(&metadata.TrailerMD)) + return msg, metadata, err + +} + +func local_request_Status_SQLStatisticsReset_0(ctx context.Context, marshaler runtime.Marshaler, server StatusServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) { + var protoReq SQLStatisticsResetRequest + var metadata runtime.ServerMetadata + + newReader, berr := utilities.IOReaderFactory(req.Body) + if berr != nil { + return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr) + } + if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF { + return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err) + } + + msg, err := server.SQLStatisticsReset(ctx, &protoReq) + return msg, metadata, err + +} + // RegisterStatusHandlerServer registers the http handlers for service Status to "mux". // UnaryRPC :call StatusServer directly. // StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906. @@ -2514,6 +2548,26 @@ func RegisterStatusHandlerServer(ctx context.Context, mux *runtime.ServeMux, ser }) + mux.Handle("POST", pattern_Status_SQLStatisticsReset_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { + ctx, cancel := context.WithCancel(req.Context()) + defer cancel() + inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req) + rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req) + if err != nil { + runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) + return + } + resp, md, err := local_request_Status_SQLStatisticsReset_0(rctx, inboundMarshaler, server, req, pathParams) + ctx = runtime.NewServerMetadataContext(ctx, md) + if err != nil { + runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) + return + } + + forward_Status_SQLStatisticsReset_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...) + + }) + return nil } @@ -3255,6 +3309,26 @@ func RegisterStatusHandlerClient(ctx context.Context, mux *runtime.ServeMux, cli }) + mux.Handle("POST", pattern_Status_SQLStatisticsReset_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { + ctx, cancel := context.WithCancel(req.Context()) + defer cancel() + inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req) + rctx, err := runtime.AnnotateContext(ctx, mux, req) + if err != nil { + runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) + return + } + resp, md, err := request_Status_SQLStatisticsReset_0(rctx, inboundMarshaler, client, req, pathParams) + ctx = runtime.NewServerMetadataContext(ctx, md) + if err != nil { + runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) + return + } + + forward_Status_SQLStatisticsReset_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...) + + }) + return nil } @@ -3328,6 +3402,8 @@ var ( pattern_Status_JobRegistryStatus_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 1, 0, 4, 1, 5, 2}, []string{"_status", "job_registry", "node_id"}, "", runtime.AssumeColonVerbOpt(true))) pattern_Status_JobStatus_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 1, 0, 4, 1, 5, 2}, []string{"_status", "job", "job_id"}, "", runtime.AssumeColonVerbOpt(true))) + + pattern_Status_SQLStatisticsReset_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"_status", "sqlstatisticsreset"}, "", runtime.AssumeColonVerbOpt(true))) ) var ( @@ -3400,4 +3476,6 @@ var ( forward_Status_JobRegistryStatus_0 = runtime.ForwardResponseMessage forward_Status_JobStatus_0 = runtime.ForwardResponseMessage + + forward_Status_SQLStatisticsReset_0 = runtime.ForwardResponseMessage ) diff --git a/pkg/server/serverpb/status.proto b/pkg/server/serverpb/status.proto index 8b21bf49dc10..1f40493ce138 100644 --- a/pkg/server/serverpb/status.proto +++ b/pkg/server/serverpb/status.proto @@ -600,7 +600,7 @@ message ListSessionsResponse { repeated ListSessionsError errors = 2 [ (gogoproto.nullable) = false ]; } -// Request object for issing a query cancel request. +// Request object for issuing a query cancel request. message CancelQueryRequest { // ID of gateway node for the query to be canceled. // @@ -1010,6 +1010,17 @@ message JobStatusResponse { cockroach.sql.jobs.jobspb.Job job = 1; } +// Request object for issuing a SQL stats reset request. +message SQLStatisticsResetRequest { + string node_id = 1 [(gogoproto.customname) = "NodeID"]; +} + +// Response object returned by SQLStatisticsReset. +message SQLStatisticsResetResponse { + // Number of nodes that have resetted their SQL stats. + int32 num_of_nodes_resetted = 1; +} + service Status { // Certificates retrieves a copy of the TLS certificates. rpc Certificates(CertificatesRequest) returns (CertificatesResponse) { @@ -1295,4 +1306,11 @@ service Status { get : "/_status/job/{job_id}" }; } + + rpc SQLStatisticsReset(SQLStatisticsResetRequest) returns (SQLStatisticsResetResponse) { + option (google.api.http) = { + post: "/_status/sqlstatisticsreset" + body: "*" + }; + } } diff --git a/pkg/server/sql_stats.go b/pkg/server/sql_stats.go new file mode 100644 index 000000000000..b91c194753de --- /dev/null +++ b/pkg/server/sql_stats.go @@ -0,0 +1,78 @@ +// Copyright 2021 The Cockroach Authors. +// +// Use of this software is governed by the Business Source License +// included in the file licenses/BSL.txt. +// +// As of the Change Date specified in that file, in accordance with +// the Business Source License, use of this software will be governed +// by the Apache License, Version 2.0, included in the file +// licenses/APL.txt. + +package server + +import ( + "context" + "fmt" + + "github.com/cockroachdb/cockroach/pkg/roachpb" + "github.com/cockroachdb/cockroach/pkg/server/serverpb" + "google.golang.org/grpc/codes" + "google.golang.org/grpc/status" +) + +func (s *statusServer) SQLStatisticsReset( + ctx context.Context, req *serverpb.SQLStatisticsResetRequest, +) (*serverpb.SQLStatisticsResetResponse, error) { + ctx = propagateGatewayMetadata(ctx) + ctx = s.AnnotateCtx(ctx) + + if _, err := s.privilegeChecker.requireAdminUser(ctx); err != nil { + return nil, err + } + + response := &serverpb.SQLStatisticsResetResponse{} + + localReq := &serverpb.SQLStatisticsResetRequest{ + NodeID: "local", + } + + if len(req.NodeID) > 0 { + requestedNodeID, local, err := s.parseNodeID(req.NodeID) + if err != nil { + return nil, status.Errorf(codes.InvalidArgument, err.Error()) + } + if local { + s.admin.server.sqlServer.pgServer.SQLServer.ResetSQLStats(ctx) + response.NumOfNodesResetted = 1 + return response, nil + } + status, err := s.dialNode(ctx, requestedNodeID) + if err != nil { + return nil, err + } + return status.SQLStatisticsReset(ctx, localReq) + } + + dialFn := func(ctx context.Context, nodeID roachpb.NodeID) (interface{}, error) { + client, err := s.dialNode(ctx, nodeID) + return client, err + } + + resetSQLStats := func(ctx context.Context, client interface{}, _ roachpb.NodeID) (interface{}, error) { + status := client.(serverpb.StatusClient) + return status.SQLStatisticsReset(ctx, localReq) + } + + if err := s.iterateNodes(ctx, fmt.Sprintf("reset SQL statistics for node %s", req.NodeID), + dialFn, + resetSQLStats, + func(nodeID roachpb.NodeID, resp interface{}) { + response.NumOfNodesResetted++ + }, + func(nodeID roachpb.NodeID, err error) { + }, + ); err != nil { + return nil, err + } + return response, nil +} diff --git a/pkg/server/stats_test.go b/pkg/server/stats_test.go index 180c34cdcd06..12446955c753 100644 --- a/pkg/server/stats_test.go +++ b/pkg/server/stats_test.go @@ -12,10 +12,13 @@ package server import ( "context" + gosql "database/sql" + "reflect" "strings" "testing" "time" + "github.com/cockroachdb/cockroach/pkg/base" "github.com/cockroachdb/cockroach/pkg/roachpb" "github.com/cockroachdb/cockroach/pkg/server/diagnostics" "github.com/cockroachdb/cockroach/pkg/server/serverpb" @@ -244,3 +247,94 @@ func TestSQLStatCollection(t *testing.T) { t.Fatal("expected to find stats for insert query in reported pool, but didn't") } } + +func populateStats(t *testing.T, sqlDB *gosql.DB) { + if _, err := sqlDB.Exec(` + CREATE DATABASE t; + CREATE TABLE t.test (x INT PRIMARY KEY); + INSERT INTO t.test VALUES (1); + INSERT INTO t.test VALUES (2); + INSERT INTO t.test VALUES (3); +`); err != nil { + t.Fatal(err) + } +} + +func resetClusterStats(ctx context.Context, cluster serverutils.TestClusterInterface) { + // Flush stats at the beginning of the test. + for i := 0; i < cluster.NumServers(); i++ { + sqlServer := cluster.Server(i).(*TestServer).PGServer().SQLServer + sqlServer.ResetSQLStats(ctx) + sqlServer.ResetReportedStats(ctx) + } + +} + +func TestClusterSQLStatsReset(t *testing.T) { + defer leaktest.AfterTest(t)() + defer log.Scope(t).Close(t) + + ctx := context.Background() + + testCluster := serverutils.StartNewTestCluster(t, 3 /* numNodes */, base.TestClusterArgs{ + ServerArgs: base.TestServerArgs{ + Insecure: true, + }, + }) + defer testCluster.Stopper().Stop(ctx) + + // Flush stats at the beginning of the test. + resetClusterStats(ctx, testCluster) + + gatewayServer := testCluster.Server(1 /* idx */).(*TestServer) + status := gatewayServer.status + + sqlDB := serverutils.OpenDBConn( + t, gatewayServer.ServingSQLAddr(), "" /* useDatabase */, true, /* insecure */ + gatewayServer.Stopper()) + + populateStats(t, sqlDB) + + statsPreReset, err := status.Statements(ctx, &serverpb.StatementsRequest{}) + if err != nil { + t.Fatal(err) + } + + if statsCount := len(statsPreReset.Statements); statsCount == 0 { + t.Fatal("expected to find stats for at least one statement, but found:", statsCount) + } + + resp, err := status.SQLStatisticsReset(ctx, &serverpb.SQLStatisticsResetRequest{}) + if err != nil { + t.Fatal(err) + } + + if resp.NumOfNodesResetted != 3 { + t.Fatal("expected all 3 nodes to reset stats, but found", resp.NumOfNodesResetted) + } + + statsPostReset, err := status.Statements(ctx, &serverpb.StatementsRequest{}) + if err != nil { + t.Fatal(err) + } + + if !statsPostReset.LastReset.After(statsPreReset.LastReset) { + t.Fatal("expected to find stats last reset value changed, but didn't") + } + + for _, txn := range statsPostReset.Transactions { + for _, previousTxn := range statsPreReset.Transactions { + if reflect.DeepEqual(txn, previousTxn) { + t.Fatal("expected to have reset SQL stats, but still found transaction", txn) + } + } + } + + for _, stmt := range statsPostReset.Statements { + for _, previousStmt := range statsPreReset.Statements { + if reflect.DeepEqual(stmt, previousStmt) { + t.Fatal("expected to have reset SQL stats, but still found statement", stmt) + } + } + } +} diff --git a/pkg/server/status.go b/pkg/server/status.go index 7a429975263d..e02aa5022794 100644 --- a/pkg/server/status.go +++ b/pkg/server/status.go @@ -142,6 +142,7 @@ type baseStatusServer struct { sessionRegistry *sql.SessionRegistry contentionRegistry *contention.Registry st *cluster.Settings + sqlServer *SQLServer } // getLocalSessions returns a list of local sessions on this node. Note that the diff --git a/pkg/server/tenant_status.go b/pkg/server/tenant_status.go index 15328f0691fd..e06e4e01aa5b 100644 --- a/pkg/server/tenant_status.go +++ b/pkg/server/tenant_status.go @@ -37,6 +37,7 @@ func newTenantStatusServer( sessionRegistry *sql.SessionRegistry, contentionRegistry *contention.Registry, st *cluster.Settings, + sqlServer *SQLServer, ) *tenantStatusServer { ambient.AddLogTag("tenant-status", nil) return &tenantStatusServer{ @@ -46,6 +47,7 @@ func newTenantStatusServer( sessionRegistry: sessionRegistry, contentionRegistry: contentionRegistry, st: st, + sqlServer: sqlServer, }, } } @@ -109,3 +111,14 @@ func (t *tenantStatusServer) ListLocalContentionEvents( } return &serverpb.ListContentionEventsResponse{Events: events}, nil } + +func (t *tenantStatusServer) SQLStatisticsReset( + ctx context.Context, _ *serverpb.SQLStatisticsResetRequest, +) (*serverpb.SQLStatisticsResetResponse, error) { + // TODO(azhng): Currently a tenant status server only reset its local SQL stats, + // this needs to be updated once the pod-to-pod communication is implemented. + t.sqlServer.pgServer.SQLServer.ResetSQLStats(ctx) + return &serverpb.SQLStatisticsResetResponse{ + NumOfNodesResetted: 1, + }, nil +} diff --git a/pkg/server/testserver.go b/pkg/server/testserver.go index 082bf105583b..8e901a4cc194 100644 --- a/pkg/server/testserver.go +++ b/pkg/server/testserver.go @@ -633,10 +633,6 @@ func makeSQLServerArgs( circularJobRegistry: &jobs.Registry{}, protectedtsProvider: protectedTSProvider, rangeFeedFactory: rangeFeedFactory, - sqlStatusServer: newTenantStatusServer( - baseCfg.AmbientCtx, &adminPrivilegeChecker{ie: circularInternalExecutor}, - sessionRegistry, contentionRegistry, baseCfg.Settings, - ), }, nil } @@ -763,6 +759,13 @@ func StartTenant( return nil, "", "", err } + // Since SQLStatusServer requires a pointer to SQLServer, it is constructed after SQLServer is + // constructed and retrospectively added to SQLServer's execCfg. + s.execCfg.SQLStatusServer = newTenantStatusServer( + baseCfg.AmbientCtx, &adminPrivilegeChecker{ie: args.circularInternalExecutor}, + args.sessionRegistry, args.contentionRegistry, baseCfg.Settings, s, + ) + // TODO(asubiotto): remove this. Right now it is needed to initialize the // SpanResolver. s.execCfg.DistSQLPlanner.SetNodeInfo(roachpb.NodeDescriptor{NodeID: 0}) diff --git a/pkg/sql/conn_executor.go b/pkg/sql/conn_executor.go index 1ff8ebeb8190..f9ea563fbe4e 100644 --- a/pkg/sql/conn_executor.go +++ b/pkg/sql/conn_executor.go @@ -270,6 +270,8 @@ type Server struct { InternalMetrics Metrics } +var _ tree.SQLStatisticsResetter = &Server{} + // Metrics collects timeseries data about SQL activity. type Metrics struct { // EngineMetrics is exported as required by the metrics.Struct magic we use @@ -762,6 +764,13 @@ func (s *Server) PeriodicallyClearSQLStats( }) } +// SQLStatsReset resets the collected cluster-wide SQL statistics by calling into the statusServer. +func (s *Server) SQLStatsReset(ctx context.Context) error { + req := &serverpb.SQLStatisticsResetRequest{} + _, err := s.cfg.SQLStatusServer.SQLStatisticsReset(ctx, req) + return err +} + type closeType int const ( @@ -2191,6 +2200,7 @@ func (ex *connExecutor) initEvalCtx(ctx context.Context, evalCtx *extendedEvalCo InternalExecutor: &ie, DB: ex.server.cfg.DB, SQLLivenessReader: ex.server.cfg.SQLLivenessReader, + SQLStatsResetter: ex.server, }, SessionMutator: ex.dataMutator, VirtualSchemas: ex.server.cfg.VirtualSchemas, diff --git a/pkg/sql/sem/builtins/builtins.go b/pkg/sql/sem/builtins/builtins.go index 35fca9af316c..fb1b353e5cbb 100644 --- a/pkg/sql/sem/builtins/builtins.go +++ b/pkg/sql/sem/builtins/builtins.go @@ -5062,6 +5062,28 @@ table's zone configuration this will return NULL.`, tree.VolatilityStable, ), ), + + "crdb_internal.reset_sql_statistics": makeBuiltin( + tree.FunctionProperties{ + Category: categorySystemInfo, + }, + tree.Overload{ + Types: tree.ArgTypes{}, + ReturnType: tree.FixedReturnType(types.Bool), + Fn: func(evalCtx *tree.EvalContext, args tree.Datums) (tree.Datum, error) { + if evalCtx.SQLStatsResetter == nil { + return nil, errors.AssertionFailedf("sql stats resetter not set") + } + ctx := evalCtx.Ctx() + if err := evalCtx.SQLStatsResetter.SQLStatsReset(ctx); err != nil { + return nil, err + } + return tree.MakeDBool(true), nil + }, + Info: `This function can be used to clear the collected SQL-related statistics.`, + Volatility: tree.VolatilityVolatile, + }, + ), } var lengthImpls = func(incBitOverload bool) builtinDefinition { diff --git a/pkg/sql/sem/tree/eval.go b/pkg/sql/sem/tree/eval.go index e2987cff7343..c5379b33ee78 100644 --- a/pkg/sql/sem/tree/eval.go +++ b/pkg/sql/sem/tree/eval.go @@ -3266,6 +3266,12 @@ var _ base.ModuleTestingKnobs = &EvalContextTestingKnobs{} // ModuleTestingKnobs is part of the base.ModuleTestingKnobs interface. func (*EvalContextTestingKnobs) ModuleTestingKnobs() {} +// SQLStatisticsResetter is an interface embedded in EvalCtx which can be used by +// the builtins to reset SQL stats. +type SQLStatisticsResetter interface { + SQLStatsReset(ctx context.Context) error +} + // EvalContext defines the context in which to evaluate an expression, allowing // the retrieval of state such as the node ID or statement start time. // @@ -3388,6 +3394,8 @@ type EvalContext struct { SingleDatumAggMemAccount *mon.BoundAccount SQLLivenessReader sqlliveness.Reader + + SQLStatsResetter SQLStatisticsResetter } // MakeTestingEvalContext returns an EvalContext that includes a MemoryMonitor.