From a8c1615f0a3ef8b109b49bfabec42594e7ce7e43 Mon Sep 17 00:00:00 2001 From: MrPresent-Han Date: Fri, 21 Jun 2024 02:47:00 -0400 Subject: [PATCH] enhance:add support for partition stats for major compaction test(#276) Signed-off-by: MrPresent-Han --- models/segment.go | 4 + models/segment_state.go | 3 + proto/v2.2/data_coord.proto | 103 +- proto/v2.2/datapb/data_coord.pb.go | 1768 +++++++++++++++++++------- proto/v2.2/gen_proto.sh | 1 - proto/v2.2/query_coord.proto | 5 + proto/v2.2/querypb/query_coord.pb.go | 845 ++++++------ states/etcd/show/segment.go | 7 +- 8 files changed, 1838 insertions(+), 898 deletions(-) diff --git a/models/segment.go b/models/segment.go index d6bb9f8..d51f911 100644 --- a/models/segment.go +++ b/models/segment.go @@ -33,6 +33,9 @@ type Segment struct { // Semantic version Version string + //PartitionStats version + PartitionStatsVersion int64 + // etcd segment key key string @@ -125,6 +128,7 @@ func NewSegmentFromV2_2(info *datapbv2.SegmentInfo, key string, } s.Version = ">=2.2.0" + s.PartitionStatsVersion = info.GetPartitionStatsVersion() return s } diff --git a/models/segment_state.go b/models/segment_state.go index fe5f2d2..68d75d7 100644 --- a/models/segment_state.go +++ b/models/segment_state.go @@ -45,18 +45,21 @@ const ( SegmentLevelLegacy SegmentLevel = 0 SegmentLevelL0 SegmentLevel = 1 SegmentLevelL1 SegmentLevel = 2 + SegmentLevelL2 SegmentLevel = 3 ) var SegmentLevelName = map[int32]string{ 0: "Legacy", 1: "L0", 2: "L1", + 3: "L2", } var SegmentLevelValue = map[string]int32{ "Legacy": 0, "L0": 1, "L1": 2, + "L2": 3, } func (x SegmentLevel) String() string { diff --git a/proto/v2.2/data_coord.proto b/proto/v2.2/data_coord.proto index 7f5e66a..a538e5b 100644 --- a/proto/v2.2/data_coord.proto +++ b/proto/v2.2/data_coord.proto @@ -25,7 +25,7 @@ enum SegmentLevel { Legacy = 0; // zero value for legacy logic L0 = 1; // L0 segment, contains delta data for current channel L1 = 2; // L1 segment, normal segment, with no extra compaction attribute - L2 = 3; // L2 segemnt, segment with extra data distribution info + L2 = 3; // L2 segment, segment with extra data distribution info } service DataCoord { @@ -110,7 +110,7 @@ service DataNode { // https://wiki.lfaidata.foundation/display/MIL/MEP+8+--+Add+metrics+for+proxy rpc GetMetrics(milvus.GetMetricsRequest) returns (milvus.GetMetricsResponse) {} - rpc Compaction(CompactionPlan) returns (common.Status) {} + rpc CompactionV2(CompactionPlan) returns (common.Status) {} rpc GetCompactionState(CompactionStateRequest) returns (CompactionStateResponse) {} rpc SyncSegments(SyncSegmentsRequest) returns (common.Status) {} @@ -127,6 +127,10 @@ service DataNode { rpc QueryPreImport(QueryPreImportRequest) returns(QueryPreImportResponse) {} rpc QueryImport(QueryImportRequest) returns(QueryImportResponse) {} rpc DropImport(DropImportRequest) returns(common.Status) {} + + rpc QuerySlot(QuerySlotRequest) returns(QuerySlotResponse) {} + + rpc DropCompactionPlan(DropCompactionPlanRequest) returns(common.Status) {} } message FlushRequest { @@ -265,6 +269,7 @@ message VchannelInfo { repeated int64 indexed_segmentIds = 10; repeated SegmentInfo indexed_segments = 11; repeated int64 level_zero_segment_ids = 12; + map partition_stats_versions = 13; } message WatchDmChannelsRequest { @@ -321,6 +326,12 @@ message SegmentInfo { // so segments with Legacy level shall be treated as L1 segment SegmentLevel level = 20; int64 storage_version = 21; + + int64 partition_stats_version = 22; + // use in major compaction, if compaction fail, should revert segment level to last value + SegmentLevel last_level = 23; + // use in major compaction, if compaction fail, should revert partition stats version to last value + int64 last_partition_stats_version = 24; } message SegmentStartPosition { @@ -488,21 +499,37 @@ enum CompactionType { MinorCompaction = 5; MajorCompaction = 6; Level0DeleteCompaction = 7; + ClusteringCompaction = 8; } message CompactionStateRequest { common.MsgBase base = 1; + int64 planID = 2; +} + +message SyncSegmentInfo { + int64 segment_id = 1; + FieldBinlog pk_stats_log = 2; + common.SegmentState state = 3; + SegmentLevel level = 4; + int64 num_of_rows = 5; } message SyncSegmentsRequest { + // Deprecated, after v2.4.3 int64 planID = 1; + // Deprecated, after v2.4.3 int64 compacted_to = 2; + // Deprecated, after v2.4.3 int64 num_of_rows = 3; + // Deprecated, after v2.4.3 repeated int64 compacted_from = 4; + // Deprecated, after v2.4.3 repeated FieldBinlog stats_logs = 5; string channel_name = 6; int64 partition_id = 7; int64 collection_id = 8; + map segment_infos = 9; } message CompactionSegmentBinlogs { @@ -519,13 +546,20 @@ message CompactionSegmentBinlogs { message CompactionPlan { int64 planID = 1; repeated CompactionSegmentBinlogs segmentBinlogs = 2; - uint64 start_time = 3; + int64 start_time = 3; int32 timeout_in_seconds = 4; CompactionType type = 5; uint64 timetravel = 6; string channel = 7; int64 collection_ttl = 8; int64 total_rows = 9; + schema.CollectionSchema schema = 10; + int64 clustering_key_field = 11; + int64 max_segment_rows = 12; + int64 prefer_segment_rows = 13; + string analyze_result_path = 14; + repeated int64 analyze_segment_ids = 15; + int32 state = 16; } message CompactionSegment { @@ -540,7 +574,7 @@ message CompactionSegment { message CompactionPlanResult { int64 planID = 1; - common.CompactionState state = 2; + CompactionTaskState state = 2; repeated CompactionSegment segments = 3; string channel = 4; CompactionType type = 5; @@ -755,6 +789,7 @@ message ImportSegmentInfo { int64 imported_rows = 2; repeated FieldBinlog binlogs = 3; repeated FieldBinlog statslogs = 4; + repeated FieldBinlog deltalogs = 5; } message QueryImportResponse { @@ -832,3 +867,63 @@ message GcControlRequest { GcCommand command = 2; repeated common.KeyValuePair params = 3; } + +message QuerySlotRequest {} + +message QuerySlotResponse { + common.Status status = 1; + int64 num_slots = 2; +} + +enum CompactionTaskState { + unknown = 0; + executing = 1; + pipelining = 2; + completed = 3; + failed = 4; + timeout = 5; + analyzing = 6; + indexing = 7; + cleaned = 8; + meta_saved = 9; +} + +message CompactionTask{ + int64 planID = 1; + int64 triggerID = 2; + int64 collectionID = 3; + int64 partitionID = 4; + string channel = 5; + CompactionType type = 6; + CompactionTaskState state = 7; + string fail_reason = 8; + int64 start_time = 9; + int64 end_time = 10; + int32 timeout_in_seconds = 11; + int32 retry_times = 12; + int64 collection_ttl = 13; + int64 total_rows = 14; + repeated int64 inputSegments = 15; + repeated int64 resultSegments = 16; + msg.MsgPosition pos = 17; + int64 nodeID = 18; + schema.CollectionSchema schema = 19; + schema.FieldSchema clustering_key_field = 20; + int64 max_segment_rows = 21; + int64 prefer_segment_rows = 22; + int64 analyzeTaskID = 23; + int64 analyzeVersion = 24; +} + +message PartitionStatsInfo { + int64 collectionID = 1; + int64 partitionID = 2; + string vChannel = 3; + int64 version = 4; + repeated int64 segmentIDs = 5; + int64 analyzeTaskID = 6; +} + +message DropCompactionPlanRequest { + int64 planID = 1; +} diff --git a/proto/v2.2/datapb/data_coord.pb.go b/proto/v2.2/datapb/data_coord.pb.go index 5621101..2dba198 100644 --- a/proto/v2.2/datapb/data_coord.pb.go +++ b/proto/v2.2/datapb/data_coord.pb.go @@ -146,6 +146,7 @@ const ( CompactionType_MinorCompaction CompactionType = 5 CompactionType_MajorCompaction CompactionType = 6 CompactionType_Level0DeleteCompaction CompactionType = 7 + CompactionType_ClusteringCompaction CompactionType = 8 ) var CompactionType_name = map[int32]string{ @@ -156,6 +157,7 @@ var CompactionType_name = map[int32]string{ 5: "MinorCompaction", 6: "MajorCompaction", 7: "Level0DeleteCompaction", + 8: "ClusteringCompaction", } var CompactionType_value = map[string]int32{ @@ -166,6 +168,7 @@ var CompactionType_value = map[string]int32{ "MinorCompaction": 5, "MajorCompaction": 6, "Level0DeleteCompaction": 7, + "ClusteringCompaction": 8, } func (x CompactionType) String() string { @@ -238,6 +241,55 @@ func (GcCommand) EnumDescriptor() ([]byte, []int) { return fileDescriptor_82cd95f524594f49, []int{5} } +type CompactionTaskState int32 + +const ( + CompactionTaskState_unknown CompactionTaskState = 0 + CompactionTaskState_executing CompactionTaskState = 1 + CompactionTaskState_pipelining CompactionTaskState = 2 + CompactionTaskState_completed CompactionTaskState = 3 + CompactionTaskState_failed CompactionTaskState = 4 + CompactionTaskState_timeout CompactionTaskState = 5 + CompactionTaskState_analyzing CompactionTaskState = 6 + CompactionTaskState_indexing CompactionTaskState = 7 + CompactionTaskState_cleaned CompactionTaskState = 8 + CompactionTaskState_meta_saved CompactionTaskState = 9 +) + +var CompactionTaskState_name = map[int32]string{ + 0: "unknown", + 1: "executing", + 2: "pipelining", + 3: "completed", + 4: "failed", + 5: "timeout", + 6: "analyzing", + 7: "indexing", + 8: "cleaned", + 9: "meta_saved", +} + +var CompactionTaskState_value = map[string]int32{ + "unknown": 0, + "executing": 1, + "pipelining": 2, + "completed": 3, + "failed": 4, + "timeout": 5, + "analyzing": 6, + "indexing": 7, + "cleaned": 8, + "meta_saved": 9, +} + +func (x CompactionTaskState) String() string { + return proto.EnumName(CompactionTaskState_name, int32(x)) +} + +func (CompactionTaskState) EnumDescriptor() ([]byte, []int) { + return fileDescriptor_82cd95f524594f49, []int{6} +} + // TODO: import google/protobuf/empty.proto type Empty struct { XXX_NoUnkeyedLiteral struct{} `json:"-"` @@ -1388,21 +1440,22 @@ func (m *GetSegmentInfoChannelRequest) XXX_DiscardUnknown() { var xxx_messageInfo_GetSegmentInfoChannelRequest proto.InternalMessageInfo type VchannelInfo struct { - CollectionID int64 `protobuf:"varint,1,opt,name=collectionID,proto3" json:"collectionID,omitempty"` - ChannelName string `protobuf:"bytes,2,opt,name=channelName,proto3" json:"channelName,omitempty"` - SeekPosition *msgpb.MsgPosition `protobuf:"bytes,3,opt,name=seek_position,json=seekPosition,proto3" json:"seek_position,omitempty"` - UnflushedSegments []*SegmentInfo `protobuf:"bytes,4,rep,name=unflushedSegments,proto3" json:"unflushedSegments,omitempty"` - FlushedSegments []*SegmentInfo `protobuf:"bytes,5,rep,name=flushedSegments,proto3" json:"flushedSegments,omitempty"` - DroppedSegments []*SegmentInfo `protobuf:"bytes,6,rep,name=dropped_segments,json=droppedSegments,proto3" json:"dropped_segments,omitempty"` - UnflushedSegmentIds []int64 `protobuf:"varint,7,rep,packed,name=unflushedSegmentIds,proto3" json:"unflushedSegmentIds,omitempty"` - FlushedSegmentIds []int64 `protobuf:"varint,8,rep,packed,name=flushedSegmentIds,proto3" json:"flushedSegmentIds,omitempty"` - DroppedSegmentIds []int64 `protobuf:"varint,9,rep,packed,name=dropped_segmentIds,json=droppedSegmentIds,proto3" json:"dropped_segmentIds,omitempty"` - IndexedSegmentIds []int64 `protobuf:"varint,10,rep,packed,name=indexed_segmentIds,json=indexedSegmentIds,proto3" json:"indexed_segmentIds,omitempty"` - IndexedSegments []*SegmentInfo `protobuf:"bytes,11,rep,name=indexed_segments,json=indexedSegments,proto3" json:"indexed_segments,omitempty"` - LevelZeroSegmentIds []int64 `protobuf:"varint,12,rep,packed,name=level_zero_segment_ids,json=levelZeroSegmentIds,proto3" json:"level_zero_segment_ids,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + CollectionID int64 `protobuf:"varint,1,opt,name=collectionID,proto3" json:"collectionID,omitempty"` + ChannelName string `protobuf:"bytes,2,opt,name=channelName,proto3" json:"channelName,omitempty"` + SeekPosition *msgpb.MsgPosition `protobuf:"bytes,3,opt,name=seek_position,json=seekPosition,proto3" json:"seek_position,omitempty"` + UnflushedSegments []*SegmentInfo `protobuf:"bytes,4,rep,name=unflushedSegments,proto3" json:"unflushedSegments,omitempty"` + FlushedSegments []*SegmentInfo `protobuf:"bytes,5,rep,name=flushedSegments,proto3" json:"flushedSegments,omitempty"` + DroppedSegments []*SegmentInfo `protobuf:"bytes,6,rep,name=dropped_segments,json=droppedSegments,proto3" json:"dropped_segments,omitempty"` + UnflushedSegmentIds []int64 `protobuf:"varint,7,rep,packed,name=unflushedSegmentIds,proto3" json:"unflushedSegmentIds,omitempty"` + FlushedSegmentIds []int64 `protobuf:"varint,8,rep,packed,name=flushedSegmentIds,proto3" json:"flushedSegmentIds,omitempty"` + DroppedSegmentIds []int64 `protobuf:"varint,9,rep,packed,name=dropped_segmentIds,json=droppedSegmentIds,proto3" json:"dropped_segmentIds,omitempty"` + IndexedSegmentIds []int64 `protobuf:"varint,10,rep,packed,name=indexed_segmentIds,json=indexedSegmentIds,proto3" json:"indexed_segmentIds,omitempty"` + IndexedSegments []*SegmentInfo `protobuf:"bytes,11,rep,name=indexed_segments,json=indexedSegments,proto3" json:"indexed_segments,omitempty"` + LevelZeroSegmentIds []int64 `protobuf:"varint,12,rep,packed,name=level_zero_segment_ids,json=levelZeroSegmentIds,proto3" json:"level_zero_segment_ids,omitempty"` + PartitionStatsVersions map[int64]int64 `protobuf:"bytes,13,rep,name=partition_stats_versions,json=partitionStatsVersions,proto3" json:"partition_stats_versions,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *VchannelInfo) Reset() { *m = VchannelInfo{} } @@ -1514,6 +1567,13 @@ func (m *VchannelInfo) GetLevelZeroSegmentIds() []int64 { return nil } +func (m *VchannelInfo) GetPartitionStatsVersions() map[int64]int64 { + if m != nil { + return m.PartitionStatsVersions + } + return nil +} + type WatchDmChannelsRequest struct { Base *commonpb.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"` Vchannels []*VchannelInfo `protobuf:"bytes,2,rep,name=vchannels,proto3" json:"vchannels,omitempty"` @@ -1711,11 +1771,16 @@ type SegmentInfo struct { // Available value: Legacy, L0, L1, L2 // For legacy level, it represent old segment before segment level introduced // so segments with Legacy level shall be treated as L1 segment - Level SegmentLevel `protobuf:"varint,20,opt,name=level,proto3,enum=milvus.protov2.data.SegmentLevel" json:"level,omitempty"` - StorageVersion int64 `protobuf:"varint,21,opt,name=storage_version,json=storageVersion,proto3" json:"storage_version,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + Level SegmentLevel `protobuf:"varint,20,opt,name=level,proto3,enum=milvus.protov2.data.SegmentLevel" json:"level,omitempty"` + StorageVersion int64 `protobuf:"varint,21,opt,name=storage_version,json=storageVersion,proto3" json:"storage_version,omitempty"` + PartitionStatsVersion int64 `protobuf:"varint,22,opt,name=partition_stats_version,json=partitionStatsVersion,proto3" json:"partition_stats_version,omitempty"` + // use in major compaction, if compaction fail, should revert segment level to last value + LastLevel SegmentLevel `protobuf:"varint,23,opt,name=last_level,json=lastLevel,proto3,enum=milvus.protov2.data.SegmentLevel" json:"last_level,omitempty"` + // use in major compaction, if compaction fail, should revert partition stats version to last value + LastPartitionStatsVersion int64 `protobuf:"varint,24,opt,name=last_partition_stats_version,json=lastPartitionStatsVersion,proto3" json:"last_partition_stats_version,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *SegmentInfo) Reset() { *m = SegmentInfo{} } @@ -1890,6 +1955,27 @@ func (m *SegmentInfo) GetStorageVersion() int64 { return 0 } +func (m *SegmentInfo) GetPartitionStatsVersion() int64 { + if m != nil { + return m.PartitionStatsVersion + } + return 0 +} + +func (m *SegmentInfo) GetLastLevel() SegmentLevel { + if m != nil { + return m.LastLevel + } + return SegmentLevel_Legacy +} + +func (m *SegmentInfo) GetLastPartitionStatsVersion() int64 { + if m != nil { + return m.LastPartitionStatsVersion + } + return 0 +} + type SegmentStartPosition struct { StartPosition *msgpb.MsgPosition `protobuf:"bytes,1,opt,name=start_position,json=startPosition,proto3" json:"start_position,omitempty"` SegmentID int64 `protobuf:"varint,2,opt,name=segmentID,proto3" json:"segmentID,omitempty"` @@ -3121,6 +3207,7 @@ func (m *ChannelWatchInfo) GetOpID() int64 { type CompactionStateRequest struct { Base *commonpb.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"` + PlanID int64 `protobuf:"varint,2,opt,name=planID,proto3" json:"planID,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -3158,25 +3245,109 @@ func (m *CompactionStateRequest) GetBase() *commonpb.MsgBase { return nil } +func (m *CompactionStateRequest) GetPlanID() int64 { + if m != nil { + return m.PlanID + } + return 0 +} + +type SyncSegmentInfo struct { + SegmentId int64 `protobuf:"varint,1,opt,name=segment_id,json=segmentId,proto3" json:"segment_id,omitempty"` + PkStatsLog *FieldBinlog `protobuf:"bytes,2,opt,name=pk_stats_log,json=pkStatsLog,proto3" json:"pk_stats_log,omitempty"` + State commonpb.SegmentState `protobuf:"varint,3,opt,name=state,proto3,enum=milvus.protov2.common.SegmentState" json:"state,omitempty"` + Level SegmentLevel `protobuf:"varint,4,opt,name=level,proto3,enum=milvus.protov2.data.SegmentLevel" json:"level,omitempty"` + NumOfRows int64 `protobuf:"varint,5,opt,name=num_of_rows,json=numOfRows,proto3" json:"num_of_rows,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *SyncSegmentInfo) Reset() { *m = SyncSegmentInfo{} } +func (m *SyncSegmentInfo) String() string { return proto.CompactTextString(m) } +func (*SyncSegmentInfo) ProtoMessage() {} +func (*SyncSegmentInfo) Descriptor() ([]byte, []int) { + return fileDescriptor_82cd95f524594f49, []int{45} +} + +func (m *SyncSegmentInfo) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_SyncSegmentInfo.Unmarshal(m, b) +} +func (m *SyncSegmentInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_SyncSegmentInfo.Marshal(b, m, deterministic) +} +func (m *SyncSegmentInfo) XXX_Merge(src proto.Message) { + xxx_messageInfo_SyncSegmentInfo.Merge(m, src) +} +func (m *SyncSegmentInfo) XXX_Size() int { + return xxx_messageInfo_SyncSegmentInfo.Size(m) +} +func (m *SyncSegmentInfo) XXX_DiscardUnknown() { + xxx_messageInfo_SyncSegmentInfo.DiscardUnknown(m) +} + +var xxx_messageInfo_SyncSegmentInfo proto.InternalMessageInfo + +func (m *SyncSegmentInfo) GetSegmentId() int64 { + if m != nil { + return m.SegmentId + } + return 0 +} + +func (m *SyncSegmentInfo) GetPkStatsLog() *FieldBinlog { + if m != nil { + return m.PkStatsLog + } + return nil +} + +func (m *SyncSegmentInfo) GetState() commonpb.SegmentState { + if m != nil { + return m.State + } + return commonpb.SegmentState_SegmentStateNone +} + +func (m *SyncSegmentInfo) GetLevel() SegmentLevel { + if m != nil { + return m.Level + } + return SegmentLevel_Legacy +} + +func (m *SyncSegmentInfo) GetNumOfRows() int64 { + if m != nil { + return m.NumOfRows + } + return 0 +} + type SyncSegmentsRequest struct { - PlanID int64 `protobuf:"varint,1,opt,name=planID,proto3" json:"planID,omitempty"` - CompactedTo int64 `protobuf:"varint,2,opt,name=compacted_to,json=compactedTo,proto3" json:"compacted_to,omitempty"` - NumOfRows int64 `protobuf:"varint,3,opt,name=num_of_rows,json=numOfRows,proto3" json:"num_of_rows,omitempty"` - CompactedFrom []int64 `protobuf:"varint,4,rep,packed,name=compacted_from,json=compactedFrom,proto3" json:"compacted_from,omitempty"` - StatsLogs []*FieldBinlog `protobuf:"bytes,5,rep,name=stats_logs,json=statsLogs,proto3" json:"stats_logs,omitempty"` - ChannelName string `protobuf:"bytes,6,opt,name=channel_name,json=channelName,proto3" json:"channel_name,omitempty"` - PartitionId int64 `protobuf:"varint,7,opt,name=partition_id,json=partitionId,proto3" json:"partition_id,omitempty"` - CollectionId int64 `protobuf:"varint,8,opt,name=collection_id,json=collectionId,proto3" json:"collection_id,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + // Deprecated, after v2.4.3 + PlanID int64 `protobuf:"varint,1,opt,name=planID,proto3" json:"planID,omitempty"` + // Deprecated, after v2.4.3 + CompactedTo int64 `protobuf:"varint,2,opt,name=compacted_to,json=compactedTo,proto3" json:"compacted_to,omitempty"` + // Deprecated, after v2.4.3 + NumOfRows int64 `protobuf:"varint,3,opt,name=num_of_rows,json=numOfRows,proto3" json:"num_of_rows,omitempty"` + // Deprecated, after v2.4.3 + CompactedFrom []int64 `protobuf:"varint,4,rep,packed,name=compacted_from,json=compactedFrom,proto3" json:"compacted_from,omitempty"` + // Deprecated, after v2.4.3 + StatsLogs []*FieldBinlog `protobuf:"bytes,5,rep,name=stats_logs,json=statsLogs,proto3" json:"stats_logs,omitempty"` + ChannelName string `protobuf:"bytes,6,opt,name=channel_name,json=channelName,proto3" json:"channel_name,omitempty"` + PartitionId int64 `protobuf:"varint,7,opt,name=partition_id,json=partitionId,proto3" json:"partition_id,omitempty"` + CollectionId int64 `protobuf:"varint,8,opt,name=collection_id,json=collectionId,proto3" json:"collection_id,omitempty"` + SegmentInfos map[int64]*SyncSegmentInfo `protobuf:"bytes,9,rep,name=segment_infos,json=segmentInfos,proto3" json:"segment_infos,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *SyncSegmentsRequest) Reset() { *m = SyncSegmentsRequest{} } func (m *SyncSegmentsRequest) String() string { return proto.CompactTextString(m) } func (*SyncSegmentsRequest) ProtoMessage() {} func (*SyncSegmentsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_82cd95f524594f49, []int{45} + return fileDescriptor_82cd95f524594f49, []int{46} } func (m *SyncSegmentsRequest) XXX_Unmarshal(b []byte) error { @@ -3253,6 +3424,13 @@ func (m *SyncSegmentsRequest) GetCollectionId() int64 { return 0 } +func (m *SyncSegmentsRequest) GetSegmentInfos() map[int64]*SyncSegmentInfo { + if m != nil { + return m.SegmentInfos + } + return nil +} + type CompactionSegmentBinlogs struct { SegmentID int64 `protobuf:"varint,1,opt,name=segmentID,proto3" json:"segmentID,omitempty"` FieldBinlogs []*FieldBinlog `protobuf:"bytes,2,rep,name=fieldBinlogs,proto3" json:"fieldBinlogs,omitempty"` @@ -3271,7 +3449,7 @@ func (m *CompactionSegmentBinlogs) Reset() { *m = CompactionSegmentBinlo func (m *CompactionSegmentBinlogs) String() string { return proto.CompactTextString(m) } func (*CompactionSegmentBinlogs) ProtoMessage() {} func (*CompactionSegmentBinlogs) Descriptor() ([]byte, []int) { - return fileDescriptor_82cd95f524594f49, []int{46} + return fileDescriptor_82cd95f524594f49, []int{47} } func (m *CompactionSegmentBinlogs) XXX_Unmarshal(b []byte) error { @@ -3351,13 +3529,20 @@ func (m *CompactionSegmentBinlogs) GetPartitionID() int64 { type CompactionPlan struct { PlanID int64 `protobuf:"varint,1,opt,name=planID,proto3" json:"planID,omitempty"` SegmentBinlogs []*CompactionSegmentBinlogs `protobuf:"bytes,2,rep,name=segmentBinlogs,proto3" json:"segmentBinlogs,omitempty"` - StartTime uint64 `protobuf:"varint,3,opt,name=start_time,json=startTime,proto3" json:"start_time,omitempty"` + StartTime int64 `protobuf:"varint,3,opt,name=start_time,json=startTime,proto3" json:"start_time,omitempty"` TimeoutInSeconds int32 `protobuf:"varint,4,opt,name=timeout_in_seconds,json=timeoutInSeconds,proto3" json:"timeout_in_seconds,omitempty"` Type CompactionType `protobuf:"varint,5,opt,name=type,proto3,enum=milvus.protov2.data.CompactionType" json:"type,omitempty"` Timetravel uint64 `protobuf:"varint,6,opt,name=timetravel,proto3" json:"timetravel,omitempty"` Channel string `protobuf:"bytes,7,opt,name=channel,proto3" json:"channel,omitempty"` CollectionTtl int64 `protobuf:"varint,8,opt,name=collection_ttl,json=collectionTtl,proto3" json:"collection_ttl,omitempty"` TotalRows int64 `protobuf:"varint,9,opt,name=total_rows,json=totalRows,proto3" json:"total_rows,omitempty"` + Schema *schemapb.CollectionSchema `protobuf:"bytes,10,opt,name=schema,proto3" json:"schema,omitempty"` + ClusteringKeyField int64 `protobuf:"varint,11,opt,name=clustering_key_field,json=clusteringKeyField,proto3" json:"clustering_key_field,omitempty"` + MaxSegmentRows int64 `protobuf:"varint,12,opt,name=max_segment_rows,json=maxSegmentRows,proto3" json:"max_segment_rows,omitempty"` + PreferSegmentRows int64 `protobuf:"varint,13,opt,name=prefer_segment_rows,json=preferSegmentRows,proto3" json:"prefer_segment_rows,omitempty"` + AnalyzeResultPath string `protobuf:"bytes,14,opt,name=analyze_result_path,json=analyzeResultPath,proto3" json:"analyze_result_path,omitempty"` + AnalyzeSegmentIds []int64 `protobuf:"varint,15,rep,packed,name=analyze_segment_ids,json=analyzeSegmentIds,proto3" json:"analyze_segment_ids,omitempty"` + State int32 `protobuf:"varint,16,opt,name=state,proto3" json:"state,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -3367,7 +3552,7 @@ func (m *CompactionPlan) Reset() { *m = CompactionPlan{} } func (m *CompactionPlan) String() string { return proto.CompactTextString(m) } func (*CompactionPlan) ProtoMessage() {} func (*CompactionPlan) Descriptor() ([]byte, []int) { - return fileDescriptor_82cd95f524594f49, []int{47} + return fileDescriptor_82cd95f524594f49, []int{48} } func (m *CompactionPlan) XXX_Unmarshal(b []byte) error { @@ -3402,7 +3587,7 @@ func (m *CompactionPlan) GetSegmentBinlogs() []*CompactionSegmentBinlogs { return nil } -func (m *CompactionPlan) GetStartTime() uint64 { +func (m *CompactionPlan) GetStartTime() int64 { if m != nil { return m.StartTime } @@ -3451,6 +3636,55 @@ func (m *CompactionPlan) GetTotalRows() int64 { return 0 } +func (m *CompactionPlan) GetSchema() *schemapb.CollectionSchema { + if m != nil { + return m.Schema + } + return nil +} + +func (m *CompactionPlan) GetClusteringKeyField() int64 { + if m != nil { + return m.ClusteringKeyField + } + return 0 +} + +func (m *CompactionPlan) GetMaxSegmentRows() int64 { + if m != nil { + return m.MaxSegmentRows + } + return 0 +} + +func (m *CompactionPlan) GetPreferSegmentRows() int64 { + if m != nil { + return m.PreferSegmentRows + } + return 0 +} + +func (m *CompactionPlan) GetAnalyzeResultPath() string { + if m != nil { + return m.AnalyzeResultPath + } + return "" +} + +func (m *CompactionPlan) GetAnalyzeSegmentIds() []int64 { + if m != nil { + return m.AnalyzeSegmentIds + } + return nil +} + +func (m *CompactionPlan) GetState() int32 { + if m != nil { + return m.State + } + return 0 +} + type CompactionSegment struct { PlanID int64 `protobuf:"varint,1,opt,name=planID,proto3" json:"planID,omitempty"` SegmentID int64 `protobuf:"varint,2,opt,name=segmentID,proto3" json:"segmentID,omitempty"` @@ -3468,7 +3702,7 @@ func (m *CompactionSegment) Reset() { *m = CompactionSegment{} } func (m *CompactionSegment) String() string { return proto.CompactTextString(m) } func (*CompactionSegment) ProtoMessage() {} func (*CompactionSegment) Descriptor() ([]byte, []int) { - return fileDescriptor_82cd95f524594f49, []int{48} + return fileDescriptor_82cd95f524594f49, []int{49} } func (m *CompactionSegment) XXX_Unmarshal(b []byte) error { @@ -3539,21 +3773,21 @@ func (m *CompactionSegment) GetChannel() string { } type CompactionPlanResult struct { - PlanID int64 `protobuf:"varint,1,opt,name=planID,proto3" json:"planID,omitempty"` - State commonpb.CompactionState `protobuf:"varint,2,opt,name=state,proto3,enum=milvus.protov2.common.CompactionState" json:"state,omitempty"` - Segments []*CompactionSegment `protobuf:"bytes,3,rep,name=segments,proto3" json:"segments,omitempty"` - Channel string `protobuf:"bytes,4,opt,name=channel,proto3" json:"channel,omitempty"` - Type CompactionType `protobuf:"varint,5,opt,name=type,proto3,enum=milvus.protov2.data.CompactionType" json:"type,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + PlanID int64 `protobuf:"varint,1,opt,name=planID,proto3" json:"planID,omitempty"` + State CompactionTaskState `protobuf:"varint,2,opt,name=state,proto3,enum=milvus.protov2.data.CompactionTaskState" json:"state,omitempty"` + Segments []*CompactionSegment `protobuf:"bytes,3,rep,name=segments,proto3" json:"segments,omitempty"` + Channel string `protobuf:"bytes,4,opt,name=channel,proto3" json:"channel,omitempty"` + Type CompactionType `protobuf:"varint,5,opt,name=type,proto3,enum=milvus.protov2.data.CompactionType" json:"type,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *CompactionPlanResult) Reset() { *m = CompactionPlanResult{} } func (m *CompactionPlanResult) String() string { return proto.CompactTextString(m) } func (*CompactionPlanResult) ProtoMessage() {} func (*CompactionPlanResult) Descriptor() ([]byte, []int) { - return fileDescriptor_82cd95f524594f49, []int{49} + return fileDescriptor_82cd95f524594f49, []int{50} } func (m *CompactionPlanResult) XXX_Unmarshal(b []byte) error { @@ -3581,11 +3815,11 @@ func (m *CompactionPlanResult) GetPlanID() int64 { return 0 } -func (m *CompactionPlanResult) GetState() commonpb.CompactionState { +func (m *CompactionPlanResult) GetState() CompactionTaskState { if m != nil { return m.State } - return commonpb.CompactionState_UndefiedState + return CompactionTaskState_unknown } func (m *CompactionPlanResult) GetSegments() []*CompactionSegment { @@ -3621,7 +3855,7 @@ func (m *CompactionStateResponse) Reset() { *m = CompactionStateResponse func (m *CompactionStateResponse) String() string { return proto.CompactTextString(m) } func (*CompactionStateResponse) ProtoMessage() {} func (*CompactionStateResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_82cd95f524594f49, []int{50} + return fileDescriptor_82cd95f524594f49, []int{51} } func (m *CompactionStateResponse) XXX_Unmarshal(b []byte) error { @@ -3669,7 +3903,7 @@ func (m *SegmentFieldBinlogMeta) Reset() { *m = SegmentFieldBinlogMeta{} func (m *SegmentFieldBinlogMeta) String() string { return proto.CompactTextString(m) } func (*SegmentFieldBinlogMeta) ProtoMessage() {} func (*SegmentFieldBinlogMeta) Descriptor() ([]byte, []int) { - return fileDescriptor_82cd95f524594f49, []int{51} + return fileDescriptor_82cd95f524594f49, []int{52} } func (m *SegmentFieldBinlogMeta) XXX_Unmarshal(b []byte) error { @@ -3719,7 +3953,7 @@ func (m *WatchChannelsRequest) Reset() { *m = WatchChannelsRequest{} } func (m *WatchChannelsRequest) String() string { return proto.CompactTextString(m) } func (*WatchChannelsRequest) ProtoMessage() {} func (*WatchChannelsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_82cd95f524594f49, []int{52} + return fileDescriptor_82cd95f524594f49, []int{53} } func (m *WatchChannelsRequest) XXX_Unmarshal(b []byte) error { @@ -3786,7 +4020,7 @@ func (m *WatchChannelsResponse) Reset() { *m = WatchChannelsResponse{} } func (m *WatchChannelsResponse) String() string { return proto.CompactTextString(m) } func (*WatchChannelsResponse) ProtoMessage() {} func (*WatchChannelsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_82cd95f524594f49, []int{53} + return fileDescriptor_82cd95f524594f49, []int{54} } func (m *WatchChannelsResponse) XXX_Unmarshal(b []byte) error { @@ -3827,7 +4061,7 @@ func (m *SetSegmentStateRequest) Reset() { *m = SetSegmentStateRequest{} func (m *SetSegmentStateRequest) String() string { return proto.CompactTextString(m) } func (*SetSegmentStateRequest) ProtoMessage() {} func (*SetSegmentStateRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_82cd95f524594f49, []int{54} + return fileDescriptor_82cd95f524594f49, []int{55} } func (m *SetSegmentStateRequest) XXX_Unmarshal(b []byte) error { @@ -3880,7 +4114,7 @@ func (m *SetSegmentStateResponse) Reset() { *m = SetSegmentStateResponse func (m *SetSegmentStateResponse) String() string { return proto.CompactTextString(m) } func (*SetSegmentStateResponse) ProtoMessage() {} func (*SetSegmentStateResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_82cd95f524594f49, []int{55} + return fileDescriptor_82cd95f524594f49, []int{56} } func (m *SetSegmentStateResponse) XXX_Unmarshal(b []byte) error { @@ -3921,7 +4155,7 @@ func (m *DropVirtualChannelRequest) Reset() { *m = DropVirtualChannelReq func (m *DropVirtualChannelRequest) String() string { return proto.CompactTextString(m) } func (*DropVirtualChannelRequest) ProtoMessage() {} func (*DropVirtualChannelRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_82cd95f524594f49, []int{56} + return fileDescriptor_82cd95f524594f49, []int{57} } func (m *DropVirtualChannelRequest) XXX_Unmarshal(b []byte) error { @@ -3981,7 +4215,7 @@ func (m *DropVirtualChannelSegment) Reset() { *m = DropVirtualChannelSeg func (m *DropVirtualChannelSegment) String() string { return proto.CompactTextString(m) } func (*DropVirtualChannelSegment) ProtoMessage() {} func (*DropVirtualChannelSegment) Descriptor() ([]byte, []int) { - return fileDescriptor_82cd95f524594f49, []int{57} + return fileDescriptor_82cd95f524594f49, []int{58} } func (m *DropVirtualChannelSegment) XXX_Unmarshal(b []byte) error { @@ -4069,7 +4303,7 @@ func (m *DropVirtualChannelResponse) Reset() { *m = DropVirtualChannelRe func (m *DropVirtualChannelResponse) String() string { return proto.CompactTextString(m) } func (*DropVirtualChannelResponse) ProtoMessage() {} func (*DropVirtualChannelResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_82cd95f524594f49, []int{58} + return fileDescriptor_82cd95f524594f49, []int{59} } func (m *DropVirtualChannelResponse) XXX_Unmarshal(b []byte) error { @@ -4109,7 +4343,7 @@ func (m *UpdateSegmentStatisticsRequest) Reset() { *m = UpdateSegmentSta func (m *UpdateSegmentStatisticsRequest) String() string { return proto.CompactTextString(m) } func (*UpdateSegmentStatisticsRequest) ProtoMessage() {} func (*UpdateSegmentStatisticsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_82cd95f524594f49, []int{59} + return fileDescriptor_82cd95f524594f49, []int{60} } func (m *UpdateSegmentStatisticsRequest) XXX_Unmarshal(b []byte) error { @@ -4158,7 +4392,7 @@ func (m *UpdateChannelCheckpointRequest) Reset() { *m = UpdateChannelChe func (m *UpdateChannelCheckpointRequest) String() string { return proto.CompactTextString(m) } func (*UpdateChannelCheckpointRequest) ProtoMessage() {} func (*UpdateChannelCheckpointRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_82cd95f524594f49, []int{60} + return fileDescriptor_82cd95f524594f49, []int{61} } func (m *UpdateChannelCheckpointRequest) XXX_Unmarshal(b []byte) error { @@ -4218,7 +4452,7 @@ func (m *ResendSegmentStatsRequest) Reset() { *m = ResendSegmentStatsReq func (m *ResendSegmentStatsRequest) String() string { return proto.CompactTextString(m) } func (*ResendSegmentStatsRequest) ProtoMessage() {} func (*ResendSegmentStatsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_82cd95f524594f49, []int{61} + return fileDescriptor_82cd95f524594f49, []int{62} } func (m *ResendSegmentStatsRequest) XXX_Unmarshal(b []byte) error { @@ -4258,7 +4492,7 @@ func (m *ResendSegmentStatsResponse) Reset() { *m = ResendSegmentStatsRe func (m *ResendSegmentStatsResponse) String() string { return proto.CompactTextString(m) } func (*ResendSegmentStatsResponse) ProtoMessage() {} func (*ResendSegmentStatsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_82cd95f524594f49, []int{62} + return fileDescriptor_82cd95f524594f49, []int{63} } func (m *ResendSegmentStatsResponse) XXX_Unmarshal(b []byte) error { @@ -4305,7 +4539,7 @@ func (m *MarkSegmentsDroppedRequest) Reset() { *m = MarkSegmentsDroppedR func (m *MarkSegmentsDroppedRequest) String() string { return proto.CompactTextString(m) } func (*MarkSegmentsDroppedRequest) ProtoMessage() {} func (*MarkSegmentsDroppedRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_82cd95f524594f49, []int{63} + return fileDescriptor_82cd95f524594f49, []int{64} } func (m *MarkSegmentsDroppedRequest) XXX_Unmarshal(b []byte) error { @@ -4353,7 +4587,7 @@ func (m *SegmentReferenceLock) Reset() { *m = SegmentReferenceLock{} } func (m *SegmentReferenceLock) String() string { return proto.CompactTextString(m) } func (*SegmentReferenceLock) ProtoMessage() {} func (*SegmentReferenceLock) Descriptor() ([]byte, []int) { - return fileDescriptor_82cd95f524594f49, []int{64} + return fileDescriptor_82cd95f524594f49, []int{65} } func (m *SegmentReferenceLock) XXX_Unmarshal(b []byte) error { @@ -4412,7 +4646,7 @@ func (m *AlterCollectionRequest) Reset() { *m = AlterCollectionRequest{} func (m *AlterCollectionRequest) String() string { return proto.CompactTextString(m) } func (*AlterCollectionRequest) ProtoMessage() {} func (*AlterCollectionRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_82cd95f524594f49, []int{65} + return fileDescriptor_82cd95f524594f49, []int{66} } func (m *AlterCollectionRequest) XXX_Unmarshal(b []byte) error { @@ -4494,7 +4728,7 @@ func (m *GcConfirmRequest) Reset() { *m = GcConfirmRequest{} } func (m *GcConfirmRequest) String() string { return proto.CompactTextString(m) } func (*GcConfirmRequest) ProtoMessage() {} func (*GcConfirmRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_82cd95f524594f49, []int{66} + return fileDescriptor_82cd95f524594f49, []int{67} } func (m *GcConfirmRequest) XXX_Unmarshal(b []byte) error { @@ -4541,7 +4775,7 @@ func (m *GcConfirmResponse) Reset() { *m = GcConfirmResponse{} } func (m *GcConfirmResponse) String() string { return proto.CompactTextString(m) } func (*GcConfirmResponse) ProtoMessage() {} func (*GcConfirmResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_82cd95f524594f49, []int{67} + return fileDescriptor_82cd95f524594f49, []int{68} } func (m *GcConfirmResponse) XXX_Unmarshal(b []byte) error { @@ -4588,7 +4822,7 @@ func (m *ReportDataNodeTtMsgsRequest) Reset() { *m = ReportDataNodeTtMsg func (m *ReportDataNodeTtMsgsRequest) String() string { return proto.CompactTextString(m) } func (*ReportDataNodeTtMsgsRequest) ProtoMessage() {} func (*ReportDataNodeTtMsgsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_82cd95f524594f49, []int{68} + return fileDescriptor_82cd95f524594f49, []int{69} } func (m *ReportDataNodeTtMsgsRequest) XXX_Unmarshal(b []byte) error { @@ -4638,7 +4872,7 @@ func (m *GetFlushStateRequest) Reset() { *m = GetFlushStateRequest{} } func (m *GetFlushStateRequest) String() string { return proto.CompactTextString(m) } func (*GetFlushStateRequest) ProtoMessage() {} func (*GetFlushStateRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_82cd95f524594f49, []int{69} + return fileDescriptor_82cd95f524594f49, []int{70} } func (m *GetFlushStateRequest) XXX_Unmarshal(b []byte) error { @@ -4705,7 +4939,7 @@ func (m *ChannelOperationsRequest) Reset() { *m = ChannelOperationsReque func (m *ChannelOperationsRequest) String() string { return proto.CompactTextString(m) } func (*ChannelOperationsRequest) ProtoMessage() {} func (*ChannelOperationsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_82cd95f524594f49, []int{70} + return fileDescriptor_82cd95f524594f49, []int{71} } func (m *ChannelOperationsRequest) XXX_Unmarshal(b []byte) error { @@ -4747,7 +4981,7 @@ func (m *ChannelOperationProgressResponse) Reset() { *m = ChannelOperati func (m *ChannelOperationProgressResponse) String() string { return proto.CompactTextString(m) } func (*ChannelOperationProgressResponse) ProtoMessage() {} func (*ChannelOperationProgressResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_82cd95f524594f49, []int{71} + return fileDescriptor_82cd95f524594f49, []int{72} } func (m *ChannelOperationProgressResponse) XXX_Unmarshal(b []byte) error { @@ -4815,7 +5049,7 @@ func (m *PreImportRequest) Reset() { *m = PreImportRequest{} } func (m *PreImportRequest) String() string { return proto.CompactTextString(m) } func (*PreImportRequest) ProtoMessage() {} func (*PreImportRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_82cd95f524594f49, []int{72} + return fileDescriptor_82cd95f524594f49, []int{73} } func (m *PreImportRequest) XXX_Unmarshal(b []byte) error { @@ -4911,7 +5145,7 @@ func (m *AutoIDRange) Reset() { *m = AutoIDRange{} } func (m *AutoIDRange) String() string { return proto.CompactTextString(m) } func (*AutoIDRange) ProtoMessage() {} func (*AutoIDRange) Descriptor() ([]byte, []int) { - return fileDescriptor_82cd95f524594f49, []int{73} + return fileDescriptor_82cd95f524594f49, []int{74} } func (m *AutoIDRange) XXX_Unmarshal(b []byte) error { @@ -4959,7 +5193,7 @@ func (m *ImportRequestSegment) Reset() { *m = ImportRequestSegment{} } func (m *ImportRequestSegment) String() string { return proto.CompactTextString(m) } func (*ImportRequestSegment) ProtoMessage() {} func (*ImportRequestSegment) Descriptor() ([]byte, []int) { - return fileDescriptor_82cd95f524594f49, []int{74} + return fileDescriptor_82cd95f524594f49, []int{75} } func (m *ImportRequestSegment) XXX_Unmarshal(b []byte) error { @@ -5023,7 +5257,7 @@ func (m *ImportRequest) Reset() { *m = ImportRequest{} } func (m *ImportRequest) String() string { return proto.CompactTextString(m) } func (*ImportRequest) ProtoMessage() {} func (*ImportRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_82cd95f524594f49, []int{75} + return fileDescriptor_82cd95f524594f49, []int{76} } func (m *ImportRequest) XXX_Unmarshal(b []byte) error { @@ -5141,7 +5375,7 @@ func (m *QueryPreImportRequest) Reset() { *m = QueryPreImportRequest{} } func (m *QueryPreImportRequest) String() string { return proto.CompactTextString(m) } func (*QueryPreImportRequest) ProtoMessage() {} func (*QueryPreImportRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_82cd95f524594f49, []int{76} + return fileDescriptor_82cd95f524594f49, []int{77} } func (m *QueryPreImportRequest) XXX_Unmarshal(b []byte) error { @@ -5195,7 +5429,7 @@ func (m *PartitionImportStats) Reset() { *m = PartitionImportStats{} } func (m *PartitionImportStats) String() string { return proto.CompactTextString(m) } func (*PartitionImportStats) ProtoMessage() {} func (*PartitionImportStats) Descriptor() ([]byte, []int) { - return fileDescriptor_82cd95f524594f49, []int{77} + return fileDescriptor_82cd95f524594f49, []int{78} } func (m *PartitionImportStats) XXX_Unmarshal(b []byte) error { @@ -5245,7 +5479,7 @@ func (m *ImportFileStats) Reset() { *m = ImportFileStats{} } func (m *ImportFileStats) String() string { return proto.CompactTextString(m) } func (*ImportFileStats) ProtoMessage() {} func (*ImportFileStats) Descriptor() ([]byte, []int) { - return fileDescriptor_82cd95f524594f49, []int{78} + return fileDescriptor_82cd95f524594f49, []int{79} } func (m *ImportFileStats) XXX_Unmarshal(b []byte) error { @@ -5317,7 +5551,7 @@ func (m *QueryPreImportResponse) Reset() { *m = QueryPreImportResponse{} func (m *QueryPreImportResponse) String() string { return proto.CompactTextString(m) } func (*QueryPreImportResponse) ProtoMessage() {} func (*QueryPreImportResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_82cd95f524594f49, []int{79} + return fileDescriptor_82cd95f524594f49, []int{80} } func (m *QueryPreImportResponse) XXX_Unmarshal(b []byte) error { @@ -5394,7 +5628,7 @@ func (m *QueryImportRequest) Reset() { *m = QueryImportRequest{} } func (m *QueryImportRequest) String() string { return proto.CompactTextString(m) } func (*QueryImportRequest) ProtoMessage() {} func (*QueryImportRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_82cd95f524594f49, []int{80} + return fileDescriptor_82cd95f524594f49, []int{81} } func (m *QueryImportRequest) XXX_Unmarshal(b []byte) error { @@ -5448,6 +5682,7 @@ type ImportSegmentInfo struct { ImportedRows int64 `protobuf:"varint,2,opt,name=imported_rows,json=importedRows,proto3" json:"imported_rows,omitempty"` Binlogs []*FieldBinlog `protobuf:"bytes,3,rep,name=binlogs,proto3" json:"binlogs,omitempty"` Statslogs []*FieldBinlog `protobuf:"bytes,4,rep,name=statslogs,proto3" json:"statslogs,omitempty"` + Deltalogs []*FieldBinlog `protobuf:"bytes,5,rep,name=deltalogs,proto3" json:"deltalogs,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -5457,7 +5692,7 @@ func (m *ImportSegmentInfo) Reset() { *m = ImportSegmentInfo{} } func (m *ImportSegmentInfo) String() string { return proto.CompactTextString(m) } func (*ImportSegmentInfo) ProtoMessage() {} func (*ImportSegmentInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_82cd95f524594f49, []int{81} + return fileDescriptor_82cd95f524594f49, []int{82} } func (m *ImportSegmentInfo) XXX_Unmarshal(b []byte) error { @@ -5506,6 +5741,13 @@ func (m *ImportSegmentInfo) GetStatslogs() []*FieldBinlog { return nil } +func (m *ImportSegmentInfo) GetDeltalogs() []*FieldBinlog { + if m != nil { + return m.Deltalogs + } + return nil +} + type QueryImportResponse struct { Status *commonpb.Status `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"` TaskID int64 `protobuf:"varint,2,opt,name=taskID,proto3" json:"taskID,omitempty"` @@ -5522,7 +5764,7 @@ func (m *QueryImportResponse) Reset() { *m = QueryImportResponse{} } func (m *QueryImportResponse) String() string { return proto.CompactTextString(m) } func (*QueryImportResponse) ProtoMessage() {} func (*QueryImportResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_82cd95f524594f49, []int{82} + return fileDescriptor_82cd95f524594f49, []int{83} } func (m *QueryImportResponse) XXX_Unmarshal(b []byte) error { @@ -5598,7 +5840,7 @@ func (m *DropImportRequest) Reset() { *m = DropImportRequest{} } func (m *DropImportRequest) String() string { return proto.CompactTextString(m) } func (*DropImportRequest) ProtoMessage() {} func (*DropImportRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_82cd95f524594f49, []int{83} + return fileDescriptor_82cd95f524594f49, []int{84} } func (m *DropImportRequest) XXX_Unmarshal(b []byte) error { @@ -5666,7 +5908,7 @@ func (m *ImportJob) Reset() { *m = ImportJob{} } func (m *ImportJob) String() string { return proto.CompactTextString(m) } func (*ImportJob) ProtoMessage() {} func (*ImportJob) Descriptor() ([]byte, []int) { - return fileDescriptor_82cd95f524594f49, []int{84} + return fileDescriptor_82cd95f524594f49, []int{85} } func (m *ImportJob) XXX_Unmarshal(b []byte) error { @@ -5816,7 +6058,7 @@ func (m *PreImportTask) Reset() { *m = PreImportTask{} } func (m *PreImportTask) String() string { return proto.CompactTextString(m) } func (*PreImportTask) ProtoMessage() {} func (*PreImportTask) Descriptor() ([]byte, []int) { - return fileDescriptor_82cd95f524594f49, []int{85} + return fileDescriptor_82cd95f524594f49, []int{86} } func (m *PreImportTask) XXX_Unmarshal(b []byte) error { @@ -5905,7 +6147,7 @@ func (m *ImportTaskV2) Reset() { *m = ImportTaskV2{} } func (m *ImportTaskV2) String() string { return proto.CompactTextString(m) } func (*ImportTaskV2) ProtoMessage() {} func (*ImportTaskV2) Descriptor() ([]byte, []int) { - return fileDescriptor_82cd95f524594f49, []int{86} + return fileDescriptor_82cd95f524594f49, []int{87} } func (m *ImportTaskV2) XXX_Unmarshal(b []byte) error { @@ -6002,7 +6244,7 @@ func (m *GcControlRequest) Reset() { *m = GcControlRequest{} } func (m *GcControlRequest) String() string { return proto.CompactTextString(m) } func (*GcControlRequest) ProtoMessage() {} func (*GcControlRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_82cd95f524594f49, []int{87} + return fileDescriptor_82cd95f524594f49, []int{88} } func (m *GcControlRequest) XXX_Unmarshal(b []byte) error { @@ -6044,36 +6286,457 @@ func (m *GcControlRequest) GetParams() []*commonpb.KeyValuePair { return nil } -func init() { - proto.RegisterEnum("milvus.protov2.data.SegmentType", SegmentType_name, SegmentType_value) - proto.RegisterEnum("milvus.protov2.data.SegmentLevel", SegmentLevel_name, SegmentLevel_value) - proto.RegisterEnum("milvus.protov2.data.ChannelWatchState", ChannelWatchState_name, ChannelWatchState_value) - proto.RegisterEnum("milvus.protov2.data.CompactionType", CompactionType_name, CompactionType_value) - proto.RegisterEnum("milvus.protov2.data.ImportTaskStateV2", ImportTaskStateV2_name, ImportTaskStateV2_value) - proto.RegisterEnum("milvus.protov2.data.GcCommand", GcCommand_name, GcCommand_value) - proto.RegisterType((*Empty)(nil), "milvus.protov2.data.Empty") - proto.RegisterType((*FlushRequest)(nil), "milvus.protov2.data.FlushRequest") - proto.RegisterType((*FlushResponse)(nil), "milvus.protov2.data.FlushResponse") - proto.RegisterMapType((map[string]*msgpb.MsgPosition)(nil), "milvus.protov2.data.FlushResponse.ChannelCpsEntry") - proto.RegisterType((*FlushChannelsRequest)(nil), "milvus.protov2.data.FlushChannelsRequest") - proto.RegisterType((*SegmentIDRequest)(nil), "milvus.protov2.data.SegmentIDRequest") - proto.RegisterType((*AssignSegmentIDRequest)(nil), "milvus.protov2.data.AssignSegmentIDRequest") - proto.RegisterType((*SegmentIDAssignment)(nil), "milvus.protov2.data.SegmentIDAssignment") - proto.RegisterType((*AssignSegmentIDResponse)(nil), "milvus.protov2.data.AssignSegmentIDResponse") - proto.RegisterType((*GetSegmentStatesRequest)(nil), "milvus.protov2.data.GetSegmentStatesRequest") - proto.RegisterType((*SegmentStateInfo)(nil), "milvus.protov2.data.SegmentStateInfo") - proto.RegisterType((*GetSegmentStatesResponse)(nil), "milvus.protov2.data.GetSegmentStatesResponse") - proto.RegisterType((*GetSegmentInfoRequest)(nil), "milvus.protov2.data.GetSegmentInfoRequest") - proto.RegisterType((*GetSegmentInfoResponse)(nil), "milvus.protov2.data.GetSegmentInfoResponse") - proto.RegisterMapType((map[string]*msgpb.MsgPosition)(nil), "milvus.protov2.data.GetSegmentInfoResponse.ChannelCheckpointEntry") - proto.RegisterType((*GetInsertBinlogPathsRequest)(nil), "milvus.protov2.data.GetInsertBinlogPathsRequest") - proto.RegisterType((*GetInsertBinlogPathsResponse)(nil), "milvus.protov2.data.GetInsertBinlogPathsResponse") - proto.RegisterType((*GetCollectionStatisticsRequest)(nil), "milvus.protov2.data.GetCollectionStatisticsRequest") +type QuerySlotRequest struct { + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *QuerySlotRequest) Reset() { *m = QuerySlotRequest{} } +func (m *QuerySlotRequest) String() string { return proto.CompactTextString(m) } +func (*QuerySlotRequest) ProtoMessage() {} +func (*QuerySlotRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_82cd95f524594f49, []int{89} +} + +func (m *QuerySlotRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_QuerySlotRequest.Unmarshal(m, b) +} +func (m *QuerySlotRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_QuerySlotRequest.Marshal(b, m, deterministic) +} +func (m *QuerySlotRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_QuerySlotRequest.Merge(m, src) +} +func (m *QuerySlotRequest) XXX_Size() int { + return xxx_messageInfo_QuerySlotRequest.Size(m) +} +func (m *QuerySlotRequest) XXX_DiscardUnknown() { + xxx_messageInfo_QuerySlotRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_QuerySlotRequest proto.InternalMessageInfo + +type QuerySlotResponse struct { + Status *commonpb.Status `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"` + NumSlots int64 `protobuf:"varint,2,opt,name=num_slots,json=numSlots,proto3" json:"num_slots,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *QuerySlotResponse) Reset() { *m = QuerySlotResponse{} } +func (m *QuerySlotResponse) String() string { return proto.CompactTextString(m) } +func (*QuerySlotResponse) ProtoMessage() {} +func (*QuerySlotResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_82cd95f524594f49, []int{90} +} + +func (m *QuerySlotResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_QuerySlotResponse.Unmarshal(m, b) +} +func (m *QuerySlotResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_QuerySlotResponse.Marshal(b, m, deterministic) +} +func (m *QuerySlotResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_QuerySlotResponse.Merge(m, src) +} +func (m *QuerySlotResponse) XXX_Size() int { + return xxx_messageInfo_QuerySlotResponse.Size(m) +} +func (m *QuerySlotResponse) XXX_DiscardUnknown() { + xxx_messageInfo_QuerySlotResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_QuerySlotResponse proto.InternalMessageInfo + +func (m *QuerySlotResponse) GetStatus() *commonpb.Status { + if m != nil { + return m.Status + } + return nil +} + +func (m *QuerySlotResponse) GetNumSlots() int64 { + if m != nil { + return m.NumSlots + } + return 0 +} + +type CompactionTask struct { + PlanID int64 `protobuf:"varint,1,opt,name=planID,proto3" json:"planID,omitempty"` + TriggerID int64 `protobuf:"varint,2,opt,name=triggerID,proto3" json:"triggerID,omitempty"` + CollectionID int64 `protobuf:"varint,3,opt,name=collectionID,proto3" json:"collectionID,omitempty"` + PartitionID int64 `protobuf:"varint,4,opt,name=partitionID,proto3" json:"partitionID,omitempty"` + Channel string `protobuf:"bytes,5,opt,name=channel,proto3" json:"channel,omitempty"` + Type CompactionType `protobuf:"varint,6,opt,name=type,proto3,enum=milvus.protov2.data.CompactionType" json:"type,omitempty"` + State CompactionTaskState `protobuf:"varint,7,opt,name=state,proto3,enum=milvus.protov2.data.CompactionTaskState" json:"state,omitempty"` + FailReason string `protobuf:"bytes,8,opt,name=fail_reason,json=failReason,proto3" json:"fail_reason,omitempty"` + StartTime int64 `protobuf:"varint,9,opt,name=start_time,json=startTime,proto3" json:"start_time,omitempty"` + EndTime int64 `protobuf:"varint,10,opt,name=end_time,json=endTime,proto3" json:"end_time,omitempty"` + TimeoutInSeconds int32 `protobuf:"varint,11,opt,name=timeout_in_seconds,json=timeoutInSeconds,proto3" json:"timeout_in_seconds,omitempty"` + RetryTimes int32 `protobuf:"varint,12,opt,name=retry_times,json=retryTimes,proto3" json:"retry_times,omitempty"` + CollectionTtl int64 `protobuf:"varint,13,opt,name=collection_ttl,json=collectionTtl,proto3" json:"collection_ttl,omitempty"` + TotalRows int64 `protobuf:"varint,14,opt,name=total_rows,json=totalRows,proto3" json:"total_rows,omitempty"` + InputSegments []int64 `protobuf:"varint,15,rep,packed,name=inputSegments,proto3" json:"inputSegments,omitempty"` + ResultSegments []int64 `protobuf:"varint,16,rep,packed,name=resultSegments,proto3" json:"resultSegments,omitempty"` + Pos *msgpb.MsgPosition `protobuf:"bytes,17,opt,name=pos,proto3" json:"pos,omitempty"` + NodeID int64 `protobuf:"varint,18,opt,name=nodeID,proto3" json:"nodeID,omitempty"` + Schema *schemapb.CollectionSchema `protobuf:"bytes,19,opt,name=schema,proto3" json:"schema,omitempty"` + ClusteringKeyField *schemapb.FieldSchema `protobuf:"bytes,20,opt,name=clustering_key_field,json=clusteringKeyField,proto3" json:"clustering_key_field,omitempty"` + MaxSegmentRows int64 `protobuf:"varint,21,opt,name=max_segment_rows,json=maxSegmentRows,proto3" json:"max_segment_rows,omitempty"` + PreferSegmentRows int64 `protobuf:"varint,22,opt,name=prefer_segment_rows,json=preferSegmentRows,proto3" json:"prefer_segment_rows,omitempty"` + AnalyzeTaskID int64 `protobuf:"varint,23,opt,name=analyzeTaskID,proto3" json:"analyzeTaskID,omitempty"` + AnalyzeVersion int64 `protobuf:"varint,24,opt,name=analyzeVersion,proto3" json:"analyzeVersion,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *CompactionTask) Reset() { *m = CompactionTask{} } +func (m *CompactionTask) String() string { return proto.CompactTextString(m) } +func (*CompactionTask) ProtoMessage() {} +func (*CompactionTask) Descriptor() ([]byte, []int) { + return fileDescriptor_82cd95f524594f49, []int{91} +} + +func (m *CompactionTask) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_CompactionTask.Unmarshal(m, b) +} +func (m *CompactionTask) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_CompactionTask.Marshal(b, m, deterministic) +} +func (m *CompactionTask) XXX_Merge(src proto.Message) { + xxx_messageInfo_CompactionTask.Merge(m, src) +} +func (m *CompactionTask) XXX_Size() int { + return xxx_messageInfo_CompactionTask.Size(m) +} +func (m *CompactionTask) XXX_DiscardUnknown() { + xxx_messageInfo_CompactionTask.DiscardUnknown(m) +} + +var xxx_messageInfo_CompactionTask proto.InternalMessageInfo + +func (m *CompactionTask) GetPlanID() int64 { + if m != nil { + return m.PlanID + } + return 0 +} + +func (m *CompactionTask) GetTriggerID() int64 { + if m != nil { + return m.TriggerID + } + return 0 +} + +func (m *CompactionTask) GetCollectionID() int64 { + if m != nil { + return m.CollectionID + } + return 0 +} + +func (m *CompactionTask) GetPartitionID() int64 { + if m != nil { + return m.PartitionID + } + return 0 +} + +func (m *CompactionTask) GetChannel() string { + if m != nil { + return m.Channel + } + return "" +} + +func (m *CompactionTask) GetType() CompactionType { + if m != nil { + return m.Type + } + return CompactionType_UndefinedCompaction +} + +func (m *CompactionTask) GetState() CompactionTaskState { + if m != nil { + return m.State + } + return CompactionTaskState_unknown +} + +func (m *CompactionTask) GetFailReason() string { + if m != nil { + return m.FailReason + } + return "" +} + +func (m *CompactionTask) GetStartTime() int64 { + if m != nil { + return m.StartTime + } + return 0 +} + +func (m *CompactionTask) GetEndTime() int64 { + if m != nil { + return m.EndTime + } + return 0 +} + +func (m *CompactionTask) GetTimeoutInSeconds() int32 { + if m != nil { + return m.TimeoutInSeconds + } + return 0 +} + +func (m *CompactionTask) GetRetryTimes() int32 { + if m != nil { + return m.RetryTimes + } + return 0 +} + +func (m *CompactionTask) GetCollectionTtl() int64 { + if m != nil { + return m.CollectionTtl + } + return 0 +} + +func (m *CompactionTask) GetTotalRows() int64 { + if m != nil { + return m.TotalRows + } + return 0 +} + +func (m *CompactionTask) GetInputSegments() []int64 { + if m != nil { + return m.InputSegments + } + return nil +} + +func (m *CompactionTask) GetResultSegments() []int64 { + if m != nil { + return m.ResultSegments + } + return nil +} + +func (m *CompactionTask) GetPos() *msgpb.MsgPosition { + if m != nil { + return m.Pos + } + return nil +} + +func (m *CompactionTask) GetNodeID() int64 { + if m != nil { + return m.NodeID + } + return 0 +} + +func (m *CompactionTask) GetSchema() *schemapb.CollectionSchema { + if m != nil { + return m.Schema + } + return nil +} + +func (m *CompactionTask) GetClusteringKeyField() *schemapb.FieldSchema { + if m != nil { + return m.ClusteringKeyField + } + return nil +} + +func (m *CompactionTask) GetMaxSegmentRows() int64 { + if m != nil { + return m.MaxSegmentRows + } + return 0 +} + +func (m *CompactionTask) GetPreferSegmentRows() int64 { + if m != nil { + return m.PreferSegmentRows + } + return 0 +} + +func (m *CompactionTask) GetAnalyzeTaskID() int64 { + if m != nil { + return m.AnalyzeTaskID + } + return 0 +} + +func (m *CompactionTask) GetAnalyzeVersion() int64 { + if m != nil { + return m.AnalyzeVersion + } + return 0 +} + +type PartitionStatsInfo struct { + CollectionID int64 `protobuf:"varint,1,opt,name=collectionID,proto3" json:"collectionID,omitempty"` + PartitionID int64 `protobuf:"varint,2,opt,name=partitionID,proto3" json:"partitionID,omitempty"` + VChannel string `protobuf:"bytes,3,opt,name=vChannel,proto3" json:"vChannel,omitempty"` + Version int64 `protobuf:"varint,4,opt,name=version,proto3" json:"version,omitempty"` + SegmentIDs []int64 `protobuf:"varint,5,rep,packed,name=segmentIDs,proto3" json:"segmentIDs,omitempty"` + AnalyzeTaskID int64 `protobuf:"varint,6,opt,name=analyzeTaskID,proto3" json:"analyzeTaskID,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *PartitionStatsInfo) Reset() { *m = PartitionStatsInfo{} } +func (m *PartitionStatsInfo) String() string { return proto.CompactTextString(m) } +func (*PartitionStatsInfo) ProtoMessage() {} +func (*PartitionStatsInfo) Descriptor() ([]byte, []int) { + return fileDescriptor_82cd95f524594f49, []int{92} +} + +func (m *PartitionStatsInfo) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_PartitionStatsInfo.Unmarshal(m, b) +} +func (m *PartitionStatsInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_PartitionStatsInfo.Marshal(b, m, deterministic) +} +func (m *PartitionStatsInfo) XXX_Merge(src proto.Message) { + xxx_messageInfo_PartitionStatsInfo.Merge(m, src) +} +func (m *PartitionStatsInfo) XXX_Size() int { + return xxx_messageInfo_PartitionStatsInfo.Size(m) +} +func (m *PartitionStatsInfo) XXX_DiscardUnknown() { + xxx_messageInfo_PartitionStatsInfo.DiscardUnknown(m) +} + +var xxx_messageInfo_PartitionStatsInfo proto.InternalMessageInfo + +func (m *PartitionStatsInfo) GetCollectionID() int64 { + if m != nil { + return m.CollectionID + } + return 0 +} + +func (m *PartitionStatsInfo) GetPartitionID() int64 { + if m != nil { + return m.PartitionID + } + return 0 +} + +func (m *PartitionStatsInfo) GetVChannel() string { + if m != nil { + return m.VChannel + } + return "" +} + +func (m *PartitionStatsInfo) GetVersion() int64 { + if m != nil { + return m.Version + } + return 0 +} + +func (m *PartitionStatsInfo) GetSegmentIDs() []int64 { + if m != nil { + return m.SegmentIDs + } + return nil +} + +func (m *PartitionStatsInfo) GetAnalyzeTaskID() int64 { + if m != nil { + return m.AnalyzeTaskID + } + return 0 +} + +type DropCompactionPlanRequest struct { + PlanID int64 `protobuf:"varint,1,opt,name=planID,proto3" json:"planID,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *DropCompactionPlanRequest) Reset() { *m = DropCompactionPlanRequest{} } +func (m *DropCompactionPlanRequest) String() string { return proto.CompactTextString(m) } +func (*DropCompactionPlanRequest) ProtoMessage() {} +func (*DropCompactionPlanRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_82cd95f524594f49, []int{93} +} + +func (m *DropCompactionPlanRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_DropCompactionPlanRequest.Unmarshal(m, b) +} +func (m *DropCompactionPlanRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_DropCompactionPlanRequest.Marshal(b, m, deterministic) +} +func (m *DropCompactionPlanRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_DropCompactionPlanRequest.Merge(m, src) +} +func (m *DropCompactionPlanRequest) XXX_Size() int { + return xxx_messageInfo_DropCompactionPlanRequest.Size(m) +} +func (m *DropCompactionPlanRequest) XXX_DiscardUnknown() { + xxx_messageInfo_DropCompactionPlanRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_DropCompactionPlanRequest proto.InternalMessageInfo + +func (m *DropCompactionPlanRequest) GetPlanID() int64 { + if m != nil { + return m.PlanID + } + return 0 +} + +func init() { + proto.RegisterEnum("milvus.protov2.data.SegmentType", SegmentType_name, SegmentType_value) + proto.RegisterEnum("milvus.protov2.data.SegmentLevel", SegmentLevel_name, SegmentLevel_value) + proto.RegisterEnum("milvus.protov2.data.ChannelWatchState", ChannelWatchState_name, ChannelWatchState_value) + proto.RegisterEnum("milvus.protov2.data.CompactionType", CompactionType_name, CompactionType_value) + proto.RegisterEnum("milvus.protov2.data.ImportTaskStateV2", ImportTaskStateV2_name, ImportTaskStateV2_value) + proto.RegisterEnum("milvus.protov2.data.GcCommand", GcCommand_name, GcCommand_value) + proto.RegisterEnum("milvus.protov2.data.CompactionTaskState", CompactionTaskState_name, CompactionTaskState_value) + proto.RegisterType((*Empty)(nil), "milvus.protov2.data.Empty") + proto.RegisterType((*FlushRequest)(nil), "milvus.protov2.data.FlushRequest") + proto.RegisterType((*FlushResponse)(nil), "milvus.protov2.data.FlushResponse") + proto.RegisterMapType((map[string]*msgpb.MsgPosition)(nil), "milvus.protov2.data.FlushResponse.ChannelCpsEntry") + proto.RegisterType((*FlushChannelsRequest)(nil), "milvus.protov2.data.FlushChannelsRequest") + proto.RegisterType((*SegmentIDRequest)(nil), "milvus.protov2.data.SegmentIDRequest") + proto.RegisterType((*AssignSegmentIDRequest)(nil), "milvus.protov2.data.AssignSegmentIDRequest") + proto.RegisterType((*SegmentIDAssignment)(nil), "milvus.protov2.data.SegmentIDAssignment") + proto.RegisterType((*AssignSegmentIDResponse)(nil), "milvus.protov2.data.AssignSegmentIDResponse") + proto.RegisterType((*GetSegmentStatesRequest)(nil), "milvus.protov2.data.GetSegmentStatesRequest") + proto.RegisterType((*SegmentStateInfo)(nil), "milvus.protov2.data.SegmentStateInfo") + proto.RegisterType((*GetSegmentStatesResponse)(nil), "milvus.protov2.data.GetSegmentStatesResponse") + proto.RegisterType((*GetSegmentInfoRequest)(nil), "milvus.protov2.data.GetSegmentInfoRequest") + proto.RegisterType((*GetSegmentInfoResponse)(nil), "milvus.protov2.data.GetSegmentInfoResponse") + proto.RegisterMapType((map[string]*msgpb.MsgPosition)(nil), "milvus.protov2.data.GetSegmentInfoResponse.ChannelCheckpointEntry") + proto.RegisterType((*GetInsertBinlogPathsRequest)(nil), "milvus.protov2.data.GetInsertBinlogPathsRequest") + proto.RegisterType((*GetInsertBinlogPathsResponse)(nil), "milvus.protov2.data.GetInsertBinlogPathsResponse") + proto.RegisterType((*GetCollectionStatisticsRequest)(nil), "milvus.protov2.data.GetCollectionStatisticsRequest") proto.RegisterType((*GetCollectionStatisticsResponse)(nil), "milvus.protov2.data.GetCollectionStatisticsResponse") proto.RegisterType((*GetPartitionStatisticsRequest)(nil), "milvus.protov2.data.GetPartitionStatisticsRequest") proto.RegisterType((*GetPartitionStatisticsResponse)(nil), "milvus.protov2.data.GetPartitionStatisticsResponse") proto.RegisterType((*GetSegmentInfoChannelRequest)(nil), "milvus.protov2.data.GetSegmentInfoChannelRequest") proto.RegisterType((*VchannelInfo)(nil), "milvus.protov2.data.VchannelInfo") + proto.RegisterMapType((map[int64]int64)(nil), "milvus.protov2.data.VchannelInfo.PartitionStatsVersionsEntry") proto.RegisterType((*WatchDmChannelsRequest)(nil), "milvus.protov2.data.WatchDmChannelsRequest") proto.RegisterType((*FlushSegmentsRequest)(nil), "milvus.protov2.data.FlushSegmentsRequest") proto.RegisterType((*SegmentMsg)(nil), "milvus.protov2.data.SegmentMsg") @@ -6098,7 +6761,9 @@ func init() { proto.RegisterType((*SegmentFlushCompletedMsg)(nil), "milvus.protov2.data.SegmentFlushCompletedMsg") proto.RegisterType((*ChannelWatchInfo)(nil), "milvus.protov2.data.ChannelWatchInfo") proto.RegisterType((*CompactionStateRequest)(nil), "milvus.protov2.data.CompactionStateRequest") + proto.RegisterType((*SyncSegmentInfo)(nil), "milvus.protov2.data.SyncSegmentInfo") proto.RegisterType((*SyncSegmentsRequest)(nil), "milvus.protov2.data.SyncSegmentsRequest") + proto.RegisterMapType((map[int64]*SyncSegmentInfo)(nil), "milvus.protov2.data.SyncSegmentsRequest.SegmentInfosEntry") proto.RegisterType((*CompactionSegmentBinlogs)(nil), "milvus.protov2.data.CompactionSegmentBinlogs") proto.RegisterType((*CompactionPlan)(nil), "milvus.protov2.data.CompactionPlan") proto.RegisterType((*CompactionSegment)(nil), "milvus.protov2.data.CompactionSegment") @@ -6144,379 +6809,428 @@ func init() { proto.RegisterType((*PreImportTask)(nil), "milvus.protov2.data.PreImportTask") proto.RegisterType((*ImportTaskV2)(nil), "milvus.protov2.data.ImportTaskV2") proto.RegisterType((*GcControlRequest)(nil), "milvus.protov2.data.GcControlRequest") + proto.RegisterType((*QuerySlotRequest)(nil), "milvus.protov2.data.QuerySlotRequest") + proto.RegisterType((*QuerySlotResponse)(nil), "milvus.protov2.data.QuerySlotResponse") + proto.RegisterType((*CompactionTask)(nil), "milvus.protov2.data.CompactionTask") + proto.RegisterType((*PartitionStatsInfo)(nil), "milvus.protov2.data.PartitionStatsInfo") + proto.RegisterType((*DropCompactionPlanRequest)(nil), "milvus.protov2.data.DropCompactionPlanRequest") } func init() { proto.RegisterFile("data_coord.proto", fileDescriptor_82cd95f524594f49) } var fileDescriptor_82cd95f524594f49 = []byte{ - // 5863 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x3d, 0x5b, 0x8f, 0x24, 0xd7, - 0x59, 0x5b, 0x7d, 0xef, 0xaf, 0x7b, 0x7a, 0x7a, 0xce, 0x8c, 0x67, 0xdb, 0xed, 0xbd, 0xb9, 0x1c, - 0xaf, 0x77, 0x37, 0xf6, 0xae, 0xdd, 0xce, 0x92, 0xc4, 0x8e, 0xe3, 0x78, 0x67, 0xbc, 0xce, 0xd8, - 0xbb, 0xeb, 0xa1, 0x66, 0x76, 0x12, 0x02, 0x4a, 0xab, 0xa6, 0xeb, 0x4c, 0x4f, 0x79, 0xaa, 0xab, - 0xda, 0x55, 0xd5, 0xbb, 0x3b, 0x26, 0x80, 0x70, 0x2e, 0xa0, 0x28, 0x08, 0x14, 0x2e, 0x81, 0x57, - 0x1e, 0x82, 0x84, 0x02, 0x48, 0x20, 0x41, 0x24, 0x04, 0x12, 0x0a, 0x12, 0x48, 0x48, 0x20, 0xc1, - 0x0b, 0xe2, 0x09, 0x1e, 0x10, 0xbf, 0x80, 0xe7, 0xa0, 0x73, 0xa9, 0x53, 0xa7, 0x6e, 0xdd, 0xd5, - 0xd3, 0xb3, 0x59, 0xa1, 0x3c, 0x4d, 0xd7, 0xa9, 0xef, 0x3b, 0x97, 0xef, 0x7c, 0xf7, 0xf3, 0x9d, - 0x1a, 0x68, 0x1b, 0xba, 0xaf, 0xf7, 0x07, 0x8e, 0xe3, 0x1a, 0xd7, 0xc7, 0xae, 0xe3, 0x3b, 0x68, - 0x75, 0x64, 0x5a, 0x0f, 0x26, 0x1e, 0x7b, 0x7a, 0xd0, 0xbb, 0x4e, 0x00, 0xba, 0xcd, 0x81, 0x33, - 0x1a, 0x39, 0x36, 0x6b, 0xec, 0xb6, 0x4c, 0xdb, 0xc7, 0xae, 0xad, 0x5b, 0xfc, 0xb9, 0x29, 0xa3, - 0x74, 0x9b, 0xde, 0xe0, 0x10, 0x8f, 0x74, 0xfe, 0x54, 0x1f, 0x79, 0x43, 0xfe, 0x73, 0xc5, 0xb4, - 0x0d, 0xfc, 0x48, 0x1e, 0x4c, 0xad, 0x42, 0xf9, 0xed, 0xd1, 0xd8, 0x3f, 0x56, 0xff, 0x52, 0x81, - 0xe6, 0x6d, 0x6b, 0xe2, 0x1d, 0x6a, 0xf8, 0xc3, 0x09, 0xf6, 0x7c, 0xd4, 0x83, 0xd2, 0xbe, 0xee, - 0xe1, 0x8e, 0x72, 0x49, 0xb9, 0xd2, 0xe8, 0x5d, 0xb8, 0x1e, 0x9b, 0x15, 0x9f, 0xcf, 0x5d, 0x6f, - 0x78, 0x4b, 0xf7, 0xb0, 0x46, 0x61, 0x11, 0x82, 0x92, 0xb1, 0xbf, 0xb5, 0xd9, 0x29, 0x5c, 0x52, - 0xae, 0x14, 0x35, 0xfa, 0x1b, 0x5d, 0x00, 0xf0, 0xf0, 0x70, 0x84, 0x6d, 0x7f, 0x6b, 0xd3, 0xeb, - 0x14, 0x2f, 0x15, 0xaf, 0x14, 0x35, 0xa9, 0x05, 0xa9, 0xd0, 0x1c, 0x38, 0x96, 0x85, 0x07, 0xbe, - 0xe9, 0xd8, 0x5b, 0x9b, 0x9d, 0x12, 0xc5, 0x8d, 0xb4, 0xa1, 0x2e, 0xd4, 0x4c, 0x6f, 0x6b, 0x34, - 0x76, 0x5c, 0xbf, 0x53, 0xbe, 0xa4, 0x5c, 0xa9, 0x69, 0xe2, 0x59, 0xfd, 0x61, 0x11, 0x96, 0xf8, - 0xc4, 0xbd, 0xb1, 0x63, 0x7b, 0x18, 0xdd, 0x84, 0x8a, 0xe7, 0xeb, 0xfe, 0xc4, 0xe3, 0x73, 0x3f, - 0x9f, 0x31, 0xf7, 0x1d, 0x0a, 0xa4, 0x71, 0xe0, 0xd4, 0xc9, 0xc7, 0x27, 0x57, 0x4c, 0x99, 0x5c, - 0x74, 0x81, 0xa5, 0xc4, 0x02, 0xaf, 0xc0, 0xf2, 0x01, 0x99, 0xdf, 0x4e, 0x08, 0x54, 0xa6, 0x40, - 0xf1, 0x66, 0xd2, 0x93, 0x6f, 0x8e, 0xf0, 0xfb, 0x07, 0x3b, 0x58, 0xb7, 0x3a, 0x15, 0x3a, 0x96, - 0xd4, 0x82, 0x9e, 0x86, 0x1a, 0x45, 0xe9, 0xfb, 0x5e, 0xa7, 0x7a, 0x49, 0xb9, 0x52, 0xd2, 0xaa, - 0xf4, 0x79, 0xd7, 0x43, 0x3b, 0xd0, 0x18, 0x1c, 0xea, 0xb6, 0x8d, 0xad, 0xfe, 0x60, 0xec, 0x75, - 0x6a, 0x97, 0x8a, 0x57, 0x1a, 0xbd, 0xde, 0xf5, 0x14, 0x56, 0xba, 0x1e, 0x21, 0xd6, 0xf5, 0x0d, - 0x86, 0xb5, 0x31, 0xf6, 0xde, 0xb6, 0x7d, 0xf7, 0x58, 0x83, 0x81, 0x68, 0xe8, 0x7e, 0x15, 0x96, - 0x63, 0xaf, 0x51, 0x1b, 0x8a, 0x47, 0xf8, 0x98, 0x12, 0xb6, 0xae, 0x91, 0x9f, 0xe8, 0x26, 0x94, - 0x1f, 0xe8, 0xd6, 0x04, 0x53, 0xba, 0x35, 0x7a, 0x17, 0xe3, 0x63, 0x12, 0xf6, 0xbb, 0xeb, 0x0d, - 0xb7, 0x1d, 0xcf, 0x24, 0x04, 0xd3, 0x18, 0xf4, 0x6b, 0x85, 0xcf, 0x28, 0xea, 0xaf, 0x2a, 0xb0, - 0x46, 0x67, 0xc3, 0x47, 0xf1, 0x16, 0xe1, 0x3d, 0x99, 0x38, 0x85, 0x28, 0x71, 0xba, 0x50, 0xe3, - 0xab, 0x62, 0x0c, 0x58, 0xd7, 0xc4, 0xb3, 0xfa, 0xed, 0x02, 0xb4, 0xc5, 0x16, 0x04, 0xe3, 0xaf, - 0x41, 0x79, 0xe0, 0x4c, 0x6c, 0x9f, 0x4e, 0x60, 0x49, 0x63, 0x0f, 0xe8, 0x59, 0x68, 0x06, 0x34, - 0xb6, 0xf5, 0x11, 0x5b, 0x70, 0x5d, 0x0b, 0xe8, 0x7e, 0x4f, 0x1f, 0xe1, 0x5c, 0xfc, 0x72, 0x09, - 0x1a, 0x63, 0xdd, 0xf5, 0xcd, 0x08, 0xbf, 0xcb, 0x4d, 0xd3, 0xd8, 0x9d, 0x8c, 0x60, 0xd2, 0x5f, - 0xbb, 0xba, 0x77, 0xb4, 0xb5, 0xc9, 0xb9, 0x24, 0xd2, 0x86, 0x3e, 0x0d, 0x65, 0x0b, 0x3f, 0xc0, - 0x16, 0x65, 0x92, 0x56, 0xef, 0xd9, 0x54, 0x36, 0xe0, 0x8b, 0xbe, 0x43, 0x00, 0x35, 0x06, 0xaf, - 0xfe, 0xa1, 0x02, 0xeb, 0x6f, 0x79, 0x9e, 0x39, 0xb4, 0x13, 0x24, 0x59, 0x87, 0x8a, 0xed, 0x18, - 0x78, 0x6b, 0x93, 0xd2, 0xa4, 0xa8, 0xf1, 0x27, 0xf4, 0x0c, 0xd4, 0xc7, 0x18, 0xbb, 0x7d, 0xd7, - 0xb1, 0x02, 0x8a, 0xd4, 0x48, 0x83, 0xe6, 0x58, 0x18, 0xed, 0xc0, 0x8a, 0x17, 0xeb, 0x88, 0xed, - 0x40, 0xa3, 0xf7, 0xfc, 0xb4, 0x49, 0x09, 0x68, 0x2d, 0x89, 0xaf, 0x7e, 0x5c, 0x80, 0x55, 0x01, - 0xc7, 0x66, 0x4b, 0x7e, 0x93, 0x4d, 0xf3, 0xf0, 0x50, 0x4c, 0x90, 0x3d, 0xe4, 0xd9, 0x34, 0xb1, - 0xdb, 0x45, 0x79, 0xb7, 0xf3, 0xe8, 0xa5, 0xd8, 0x56, 0x96, 0x93, 0x5b, 0x79, 0x11, 0x1a, 0xf8, - 0xd1, 0xd8, 0x74, 0x71, 0x9f, 0xc8, 0x31, 0xdd, 0xad, 0x92, 0x06, 0xac, 0x69, 0xd7, 0x1c, 0xc9, - 0xca, 0xaa, 0x3a, 0x87, 0xb2, 0x52, 0xbf, 0xaf, 0xc0, 0xd9, 0xc4, 0x4e, 0x71, 0xfd, 0xb7, 0x0b, - 0x6d, 0xba, 0xf6, 0x90, 0x36, 0x44, 0x13, 0x12, 0xa2, 0x5f, 0x99, 0x4e, 0xf4, 0x10, 0x41, 0x4b, - 0xf4, 0x20, 0x4d, 0xb4, 0x30, 0xcf, 0x44, 0x47, 0x70, 0xf6, 0x1d, 0xec, 0xf3, 0x21, 0xc8, 0x3b, - 0xbc, 0x90, 0x94, 0x47, 0x95, 0x6d, 0x21, 0xae, 0x6c, 0xd5, 0x3f, 0x0d, 0xc5, 0x99, 0x0e, 0xb6, - 0x65, 0x1f, 0x38, 0xe8, 0x1c, 0xd4, 0x05, 0x08, 0xe7, 0x8e, 0xb0, 0x01, 0x7d, 0x16, 0xca, 0x64, - 0xae, 0x8c, 0x35, 0x5a, 0xbd, 0xe7, 0xb2, 0xd6, 0x25, 0xf5, 0xaa, 0x31, 0x0c, 0x74, 0x1b, 0x5a, - 0x9e, 0xaf, 0xbb, 0x7e, 0x7f, 0xcc, 0xb5, 0x1b, 0x65, 0xa1, 0x1c, 0x4a, 0x70, 0x89, 0xa2, 0x05, - 0x8f, 0xe8, 0x16, 0x34, 0xb1, 0x6d, 0x84, 0xbd, 0x94, 0xf2, 0xf5, 0xd2, 0xc0, 0xb6, 0x21, 0xfa, - 0x08, 0xf7, 0xa7, 0x3c, 0xcf, 0xfe, 0xfc, 0x96, 0x02, 0x9d, 0xe4, 0x06, 0x2d, 0x66, 0x49, 0xdf, - 0x60, 0x68, 0x98, 0x6d, 0xd0, 0x0c, 0x59, 0x17, 0xdb, 0xa4, 0x71, 0x24, 0xf5, 0x7b, 0x0a, 0x3c, - 0x15, 0x4e, 0x89, 0xbe, 0x7a, 0x7c, 0x1c, 0x83, 0xae, 0x41, 0xdb, 0xb4, 0x07, 0xd6, 0xc4, 0xc0, - 0xf7, 0xed, 0x2f, 0x62, 0xdd, 0xf2, 0x0f, 0x8f, 0xe9, 0x2e, 0xd6, 0xb4, 0x44, 0xbb, 0xfa, 0x5f, - 0x05, 0x58, 0x8f, 0xcf, 0x6c, 0x31, 0x52, 0xfd, 0x0c, 0x94, 0x4d, 0xfb, 0xc0, 0x09, 0x28, 0x75, - 0x69, 0xaa, 0x80, 0x92, 0xf1, 0x18, 0x38, 0xfa, 0x10, 0x90, 0xb0, 0xf7, 0x87, 0x78, 0x70, 0x34, - 0x76, 0x4c, 0xaa, 0xc0, 0x48, 0x27, 0xb7, 0x52, 0x3b, 0x49, 0x9f, 0xb7, 0xb0, 0xff, 0xa2, 0x13, - 0xe6, 0x06, 0xac, 0x0c, 0xe2, 0xed, 0x5d, 0x0c, 0xeb, 0xe9, 0xc0, 0xa7, 0xeb, 0x14, 0x38, 0xf0, - 0xcc, 0x3b, 0xd8, 0xdf, 0xb2, 0x3d, 0xec, 0xfa, 0xb7, 0x4c, 0xdb, 0x72, 0x86, 0xdb, 0xba, 0x7f, - 0xb8, 0x90, 0xd2, 0x88, 0xc8, 0x7f, 0x21, 0x26, 0xff, 0xea, 0x0f, 0x14, 0x38, 0x97, 0x3e, 0x22, - 0xdf, 0xda, 0x2e, 0xd4, 0x0e, 0x4c, 0x6c, 0x19, 0x84, 0x7f, 0x14, 0xca, 0x3f, 0xe2, 0x99, 0x28, - 0x8f, 0x31, 0x01, 0xe6, 0xfb, 0x97, 0x50, 0x1e, 0xc2, 0x51, 0xdf, 0xf1, 0x5d, 0xd3, 0x1e, 0xde, - 0x31, 0x3d, 0x5f, 0x63, 0x18, 0x12, 0xc7, 0x14, 0xe7, 0x11, 0xd8, 0xef, 0x28, 0x70, 0xe1, 0x1d, - 0xec, 0x6f, 0x08, 0x3b, 0x44, 0xde, 0x9b, 0x9e, 0x6f, 0x0e, 0xbc, 0xd3, 0x76, 0xdd, 0x73, 0x78, - 0x33, 0xea, 0x6f, 0x2b, 0x70, 0x31, 0x73, 0x3a, 0x9c, 0x80, 0x5c, 0xc3, 0x06, 0x56, 0x28, 0x4b, - 0xc3, 0xbe, 0x87, 0x8f, 0xf7, 0x08, 0x1b, 0x6c, 0xeb, 0xa6, 0xcb, 0x34, 0xec, 0x89, 0xad, 0xce, - 0x9f, 0x29, 0x70, 0xfe, 0x1d, 0xec, 0x6f, 0x07, 0x96, 0xf8, 0x89, 0xd2, 0x88, 0xc0, 0x48, 0x3e, - 0x41, 0x10, 0x23, 0x44, 0xda, 0xd4, 0xef, 0xb2, 0x6d, 0x4d, 0x9d, 0xf1, 0x13, 0x23, 0xe3, 0x05, - 0x2a, 0x19, 0x92, 0xda, 0xe0, 0x0a, 0x80, 0x13, 0x51, 0xfd, 0x51, 0x19, 0x9a, 0x7b, 0x5c, 0x53, - 0x50, 0x4b, 0x1b, 0xa7, 0x86, 0x92, 0xee, 0x34, 0x49, 0xde, 0x57, 0x9a, 0x43, 0xb6, 0x09, 0x4b, - 0x1e, 0xc6, 0x47, 0x73, 0x5b, 0xd5, 0x26, 0xc1, 0x12, 0x06, 0xf1, 0x1e, 0xac, 0x4c, 0x6c, 0x1a, - 0x02, 0x60, 0x83, 0x2f, 0x81, 0x91, 0x3e, 0x8f, 0x9a, 0x4d, 0xa2, 0xa2, 0x77, 0x79, 0x1c, 0x27, - 0xf5, 0x56, 0xce, 0xd9, 0x5b, 0x1c, 0x11, 0xbd, 0x07, 0x6d, 0xc3, 0x75, 0xc6, 0x63, 0x6c, 0xf4, - 0xbd, 0xa0, 0xb3, 0x4a, 0xde, 0xce, 0x38, 0xa6, 0xe8, 0xec, 0x65, 0x58, 0x8d, 0xcf, 0x76, 0xcb, - 0x20, 0xfe, 0x24, 0xe1, 0xb2, 0xb4, 0x57, 0xe8, 0x45, 0x58, 0x49, 0xc2, 0xd7, 0x28, 0x7c, 0xf2, - 0x05, 0x7a, 0x09, 0x50, 0x6c, 0xb2, 0x04, 0xbc, 0xce, 0xc0, 0xa3, 0x93, 0xe1, 0xe0, 0x34, 0xcf, - 0x10, 0x05, 0x07, 0x06, 0xce, 0xdf, 0x48, 0xe0, 0xef, 0x11, 0xfb, 0x1b, 0x01, 0xf7, 0x3a, 0x8d, - 0xbc, 0xa4, 0x88, 0x76, 0xe7, 0xa1, 0x57, 0x61, 0x9d, 0x46, 0x32, 0xfd, 0x8f, 0xb0, 0xeb, 0x04, - 0xfd, 0xf5, 0x4d, 0xc3, 0xeb, 0x34, 0x19, 0x35, 0xe8, 0xdb, 0xaf, 0x60, 0xd7, 0x09, 0x67, 0xa0, - 0xfe, 0x86, 0x02, 0xeb, 0x5f, 0xd2, 0xfd, 0xc1, 0xe1, 0xe6, 0xe8, 0x34, 0x02, 0xd1, 0x37, 0xa1, - 0xfe, 0x40, 0x84, 0x9b, 0xcc, 0x2c, 0xa4, 0x47, 0x60, 0xb2, 0xe4, 0x68, 0x21, 0x8e, 0xfa, 0xf7, - 0x41, 0x58, 0x1c, 0x2c, 0xeb, 0x49, 0xe8, 0xac, 0x59, 0x59, 0x8d, 0x98, 0x14, 0x97, 0x13, 0x52, - 0xac, 0x7e, 0x0d, 0x80, 0x2f, 0xe0, 0xae, 0x37, 0x3c, 0xd1, 0xdc, 0x5f, 0x83, 0x2a, 0x1f, 0x91, - 0xab, 0xad, 0xd9, 0x1c, 0x11, 0x20, 0xa8, 0x3f, 0xa8, 0x42, 0x43, 0x7a, 0x81, 0x5a, 0x50, 0x10, - 0xfa, 0xa8, 0x90, 0x42, 0x83, 0xc2, 0xec, 0xf0, 0xae, 0x98, 0x0c, 0xef, 0x9e, 0x87, 0x96, 0x49, - 0xfd, 0x86, 0x3e, 0x5f, 0x39, 0x75, 0xdd, 0xeb, 0xda, 0x12, 0x6b, 0xe5, 0xec, 0x84, 0x2e, 0x40, - 0xc3, 0x9e, 0x8c, 0xfa, 0xce, 0x41, 0xdf, 0x75, 0x1e, 0x7a, 0x3c, 0x4e, 0xac, 0xdb, 0x93, 0xd1, - 0xfb, 0x07, 0x9a, 0xf3, 0xd0, 0x0b, 0x43, 0x90, 0xca, 0xdc, 0x21, 0xc8, 0x05, 0x68, 0x8c, 0xf4, - 0x47, 0xa4, 0xdf, 0xbe, 0x3d, 0x19, 0xd1, 0x20, 0xb2, 0xa8, 0xd5, 0x47, 0xfa, 0x23, 0xcd, 0x79, - 0x78, 0x6f, 0x32, 0x42, 0x57, 0xa0, 0x6d, 0xe9, 0x9e, 0xdf, 0x97, 0xa3, 0xd0, 0x1a, 0x8d, 0x42, - 0x5b, 0xa4, 0xfd, 0xed, 0x30, 0x12, 0x4d, 0x06, 0x33, 0xf5, 0x93, 0x06, 0x33, 0xc6, 0xc8, 0x0a, - 0x7b, 0x81, 0x9c, 0xc1, 0x8c, 0x31, 0xb2, 0x44, 0x1f, 0xaf, 0x41, 0x75, 0x9f, 0x7a, 0x62, 0xd3, - 0x75, 0xc1, 0x6d, 0xe2, 0x86, 0x31, 0x97, 0x4d, 0x0b, 0x10, 0xd0, 0xe7, 0xa1, 0x4e, 0x8d, 0x1e, - 0xc5, 0x6e, 0xe6, 0xc4, 0x0e, 0x51, 0x08, 0xbe, 0x81, 0x2d, 0x5f, 0xa7, 0xf8, 0x4b, 0x79, 0xf1, - 0x05, 0x0a, 0x51, 0xc7, 0x03, 0x17, 0xeb, 0x3e, 0x36, 0x6e, 0x1d, 0x6f, 0x38, 0xa3, 0xb1, 0x4e, - 0xd9, 0xa9, 0xd3, 0xa2, 0x31, 0x45, 0xda, 0x2b, 0x74, 0x19, 0x5a, 0x03, 0xf1, 0x74, 0xdb, 0x75, - 0x46, 0x9d, 0x65, 0x2a, 0x6f, 0xb1, 0x56, 0x74, 0x1e, 0x20, 0x50, 0xc4, 0xba, 0xdf, 0x69, 0xd3, - 0x5d, 0xac, 0xf3, 0x96, 0xb7, 0x68, 0x7e, 0xca, 0xf4, 0xfa, 0x2c, 0x13, 0x64, 0xda, 0xc3, 0xce, - 0x0a, 0x1d, 0xb1, 0x11, 0xa4, 0x8e, 0x4c, 0x7b, 0x88, 0xce, 0x42, 0xd5, 0xf4, 0xfa, 0x07, 0xfa, - 0x11, 0xee, 0x20, 0xfa, 0xb6, 0x62, 0x7a, 0xb7, 0xf5, 0x23, 0xea, 0x22, 0xf3, 0xc1, 0xb0, 0xd1, - 0x59, 0xa5, 0xaf, 0xc2, 0x86, 0x30, 0xa1, 0xb4, 0x36, 0x5f, 0x42, 0x09, 0xbd, 0x00, 0xcb, 0x9e, - 0xef, 0xb8, 0xfa, 0x10, 0xf7, 0x1f, 0x60, 0xd7, 0x23, 0x74, 0x78, 0x8a, 0x72, 0x68, 0x8b, 0x37, - 0xef, 0xb1, 0x56, 0xf5, 0x6b, 0xb0, 0x16, 0x72, 0xb7, 0xc4, 0x4c, 0x49, 0xa6, 0x54, 0x4e, 0xc4, - 0x94, 0xd3, 0x43, 0x80, 0x1f, 0x97, 0x61, 0x7d, 0x47, 0x7f, 0x80, 0x7f, 0x12, 0xf1, 0x46, 0x2e, - 0xed, 0x7b, 0x0f, 0x56, 0x68, 0x88, 0xd1, 0x93, 0x66, 0x34, 0xd5, 0x77, 0x91, 0x79, 0x31, 0x89, - 0x8a, 0xde, 0x22, 0xda, 0x1a, 0x0f, 0x8e, 0xb6, 0x49, 0xd0, 0x16, 0xf8, 0x2d, 0x17, 0x53, 0x7b, - 0xda, 0x10, 0x70, 0x9a, 0x8c, 0x83, 0x34, 0xb2, 0x95, 0xf2, 0x4e, 0x04, 0x1e, 0xcb, 0xd5, 0x19, - 0xd1, 0x7d, 0xb8, 0x0b, 0x5a, 0x2b, 0xb2, 0x29, 0x1e, 0xea, 0x40, 0x95, 0xbb, 0x1b, 0x54, 0x71, - 0xd5, 0xb4, 0xe0, 0x11, 0x69, 0xb0, 0xca, 0x56, 0xb1, 0xc3, 0xe5, 0x92, 0x91, 0xa0, 0x96, 0x93, - 0x04, 0x69, 0xc8, 0x51, 0xc1, 0xae, 0xcf, 0x2f, 0xd8, 0x1d, 0xa8, 0x72, 0x61, 0xa3, 0x3a, 0xad, - 0xa6, 0x05, 0x8f, 0x64, 0xc3, 0x43, 0xb1, 0x6b, 0x30, 0xe9, 0x11, 0x0d, 0x04, 0x2f, 0xb0, 0x0e, - 0x4d, 0x6a, 0x1d, 0x82, 0x47, 0xaa, 0xaa, 0xf0, 0xb0, 0xcf, 0x64, 0x6b, 0x29, 0xaf, 0x6c, 0xd5, - 0x3c, 0x3c, 0xa4, 0xbf, 0xe2, 0x06, 0xaa, 0x95, 0x34, 0x50, 0x97, 0x21, 0x26, 0x69, 0x9d, 0xe5, - 0x54, 0xf9, 0xfb, 0x35, 0x05, 0x20, 0xdc, 0xf9, 0x19, 0x19, 0xb3, 0xd7, 0xa1, 0x26, 0xc4, 0x31, - 0x67, 0x80, 0x2f, 0x10, 0xe2, 0xb6, 0xb0, 0x18, 0xb3, 0x85, 0xea, 0x3f, 0x29, 0xd0, 0xdc, 0x24, - 0x34, 0xbf, 0xe3, 0x0c, 0xa9, 0xe5, 0x7e, 0x1e, 0x5a, 0x2e, 0x1e, 0x38, 0xae, 0xd1, 0xc7, 0xb6, - 0xef, 0x9a, 0x98, 0x65, 0x58, 0x4a, 0xda, 0x12, 0x6b, 0x7d, 0x9b, 0x35, 0x12, 0x30, 0x62, 0xdc, - 0x3c, 0x5f, 0x1f, 0x8d, 0xfb, 0x07, 0x44, 0x89, 0xb2, 0x53, 0x80, 0x25, 0xd1, 0x4a, 0x75, 0xe8, - 0xb3, 0xd0, 0x0c, 0xc1, 0x7c, 0x87, 0x8e, 0x5f, 0xd2, 0x1a, 0xa2, 0x6d, 0xd7, 0x41, 0x9f, 0x80, - 0x16, 0xdd, 0xf4, 0xbe, 0xe5, 0x0c, 0xfb, 0x24, 0x56, 0xe7, 0x46, 0xbd, 0x69, 0xf0, 0x69, 0x11, - 0x76, 0x8a, 0x42, 0x79, 0xe6, 0x47, 0x98, 0x9b, 0x75, 0x01, 0xb5, 0x63, 0x7e, 0x84, 0xd5, 0x6f, - 0x2a, 0xb0, 0xc4, 0xbd, 0x80, 0x1d, 0x71, 0xcc, 0x44, 0x13, 0xd1, 0x2c, 0x5b, 0x42, 0x7f, 0xa3, - 0xcf, 0x45, 0x53, 0x90, 0x97, 0x33, 0x04, 0x93, 0x76, 0x43, 0x3d, 0xd5, 0x88, 0x0b, 0x90, 0x27, - 0x4c, 0xff, 0x98, 0x50, 0x55, 0xf7, 0xf5, 0x7b, 0x8e, 0xc1, 0x72, 0xa2, 0x1d, 0xa8, 0xea, 0x86, - 0xe1, 0x62, 0xcf, 0xe3, 0x33, 0x09, 0x1e, 0xc9, 0x9b, 0x40, 0x57, 0x33, 0xdd, 0x15, 0x3c, 0xa2, - 0xcf, 0xc7, 0xce, 0x51, 0x1a, 0x3d, 0x75, 0xda, 0x4c, 0x79, 0x30, 0x19, 0x9e, 0xb5, 0xfc, 0x75, - 0x01, 0x5a, 0x9c, 0x93, 0x6f, 0x71, 0x63, 0x3d, 0x9d, 0xd1, 0x36, 0xa1, 0x79, 0x10, 0xca, 0xe2, - 0xf4, 0x24, 0x99, 0x2c, 0xb4, 0x11, 0xac, 0x59, 0x1c, 0x17, 0x75, 0x18, 0x4a, 0x0b, 0x3a, 0x0c, - 0xe5, 0xf9, 0xf5, 0x4a, 0xd2, 0x89, 0xac, 0xa4, 0x38, 0x91, 0xea, 0x57, 0xa1, 0x21, 0x75, 0x40, - 0x75, 0x27, 0xcb, 0x42, 0x71, 0xba, 0x05, 0x8f, 0xe8, 0x66, 0xe8, 0x3c, 0x31, 0x82, 0x3d, 0x93, - 0x3a, 0x9b, 0x98, 0xdf, 0xa4, 0xfe, 0xa7, 0x02, 0x15, 0xde, 0xf7, 0x45, 0x68, 0x70, 0x59, 0xa3, - 0x4e, 0x25, 0xeb, 0x1f, 0x78, 0x13, 0xf1, 0x2a, 0x4f, 0x4f, 0xd8, 0x9e, 0x86, 0x5a, 0x4c, 0xcc, - 0xaa, 0x5c, 0x61, 0x07, 0xaf, 0x24, 0xd9, 0x22, 0xaf, 0x88, 0x58, 0xa1, 0x35, 0x28, 0x5b, 0xce, - 0x50, 0x1c, 0x7f, 0xb1, 0x07, 0x32, 0xed, 0x11, 0x1e, 0x39, 0xee, 0x31, 0xc3, 0x61, 0xbe, 0x30, - 0xb0, 0x26, 0x2a, 0x8d, 0xff, 0xac, 0xd0, 0xd3, 0x08, 0x0d, 0x0f, 0x9c, 0x07, 0xd8, 0x3d, 0x3e, - 0x8d, 0x04, 0xee, 0x1b, 0x92, 0x4c, 0xe4, 0x0e, 0xf6, 0x04, 0x0a, 0x7a, 0x23, 0xdc, 0xab, 0x62, - 0x7a, 0x56, 0x47, 0xd6, 0xff, 0x9c, 0xa3, 0xc3, 0x3d, 0xfb, 0xae, 0x42, 0x13, 0xd2, 0xd1, 0x05, - 0x9d, 0xdc, 0x71, 0x39, 0x95, 0xa0, 0x48, 0xfd, 0x17, 0x05, 0x9e, 0xce, 0xa0, 0xf2, 0x5e, 0xef, - 0x09, 0xd1, 0xf9, 0x73, 0x50, 0x13, 0xd9, 0x85, 0x62, 0xce, 0xec, 0x82, 0xc0, 0x50, 0x7f, 0x8f, - 0x1d, 0x92, 0xa4, 0x90, 0x79, 0xaf, 0xf7, 0xd8, 0x08, 0x1d, 0xcf, 0x1a, 0x16, 0x53, 0xb2, 0x86, - 0xff, 0xa6, 0x40, 0x37, 0xcc, 0xd0, 0x79, 0xb7, 0x8e, 0x17, 0x3f, 0x61, 0x3b, 0x9d, 0xc0, 0xf8, - 0x75, 0x71, 0x04, 0x44, 0x14, 0x6a, 0xce, 0x90, 0x36, 0x38, 0x00, 0x1a, 0xd3, 0x23, 0x80, 0xe4, - 0xa2, 0x16, 0x93, 0xd4, 0xae, 0xc4, 0x02, 0xec, 0x18, 0x28, 0xdc, 0xe0, 0xbf, 0x63, 0x2c, 0x7b, - 0x3b, 0x9a, 0xa6, 0x7b, 0xf2, 0x64, 0x94, 0x0f, 0xa7, 0x0e, 0xf9, 0xe1, 0x54, 0x29, 0x76, 0x38, - 0xc5, 0xdb, 0x55, 0x87, 0xb2, 0x42, 0x62, 0x09, 0x8f, 0x8f, 0x68, 0xdf, 0x56, 0xa0, 0xc3, 0xc7, - 0x61, 0x55, 0x1c, 0xce, 0x68, 0x6c, 0x61, 0x1f, 0x1b, 0x4f, 0x22, 0xdf, 0xf3, 0xe7, 0x05, 0x68, - 0xcb, 0x1e, 0x12, 0x75, 0x72, 0x3e, 0x0d, 0x65, 0x9a, 0x56, 0xe3, 0xb3, 0xc8, 0xa1, 0x31, 0x18, - 0x3c, 0x31, 0xae, 0x34, 0x54, 0xd9, 0xf5, 0x02, 0x1f, 0x88, 0x3f, 0x86, 0xae, 0x5a, 0xf1, 0x24, - 0xae, 0xda, 0x39, 0xa8, 0x13, 0xe3, 0xe7, 0x4c, 0x48, 0xcf, 0xac, 0xa2, 0x20, 0x6c, 0x40, 0x6f, - 0x42, 0x85, 0x95, 0x6e, 0xf1, 0x23, 0xdc, 0x17, 0xe2, 0x9d, 0xf3, 0xc2, 0x2e, 0xe9, 0xb0, 0x85, - 0x36, 0x68, 0x1c, 0x8d, 0xec, 0xd6, 0xd8, 0x75, 0x86, 0xd4, 0xab, 0x23, 0x96, 0xb1, 0xac, 0x89, - 0x67, 0xe2, 0x77, 0x3a, 0xe3, 0xad, 0x4d, 0x6e, 0x15, 0xe9, 0x6f, 0xf5, 0x0e, 0xac, 0x87, 0x69, - 0x08, 0x36, 0xd1, 0x93, 0xb3, 0xbc, 0xfa, 0xa3, 0x02, 0xac, 0xee, 0x1c, 0xdb, 0x83, 0xb8, 0xf8, - 0xac, 0x43, 0x65, 0x6c, 0xe9, 0xe1, 0x71, 0x00, 0x7f, 0xa2, 0xa5, 0x19, 0x41, 0x8a, 0x81, 0x78, - 0x07, 0x8c, 0xd2, 0x0d, 0xd1, 0xb6, 0xeb, 0xcc, 0x74, 0xdd, 0x9e, 0x17, 0x99, 0x13, 0x6c, 0x30, - 0x3f, 0x84, 0x65, 0x2a, 0x97, 0x44, 0x2b, 0xf5, 0x43, 0xde, 0x04, 0xa0, 0xee, 0x5a, 0x7f, 0x3e, - 0x17, 0x8d, 0xe2, 0xdc, 0x21, 0x2e, 0x5a, 0xbc, 0x8a, 0xa4, 0x92, 0x3c, 0xb4, 0x78, 0x56, 0x52, - 0xd7, 0x7d, 0xd3, 0xe0, 0x74, 0x96, 0xa4, 0xd9, 0x40, 0xcf, 0xc1, 0x52, 0x28, 0xff, 0x04, 0xa6, - 0x96, 0x50, 0x0a, 0x86, 0xfa, 0xc3, 0x22, 0x74, 0xa4, 0x4d, 0xf9, 0xc9, 0xbb, 0xcb, 0x19, 0xa1, - 0x77, 0xf1, 0xd4, 0x42, 0xef, 0xd2, 0x69, 0xb8, 0xc8, 0xe5, 0xb4, 0x3c, 0xab, 0xc8, 0x53, 0x55, - 0xe6, 0xcc, 0x53, 0xc5, 0xb5, 0x75, 0x75, 0xb6, 0xb6, 0xae, 0x25, 0x1d, 0x9f, 0x6f, 0x16, 0xa1, - 0x15, 0x6e, 0xdd, 0xb6, 0xa5, 0xdb, 0x99, 0xbc, 0x7f, 0x1f, 0x5a, 0x5e, 0x64, 0x6b, 0xf9, 0x66, - 0xbd, 0x94, 0xae, 0x4f, 0x32, 0xf8, 0x41, 0x8b, 0x75, 0x82, 0xce, 0x53, 0x46, 0x77, 0x7d, 0x96, - 0xe7, 0x65, 0xee, 0x76, 0x9d, 0xa9, 0x2e, 0x73, 0x84, 0xd1, 0x8b, 0x80, 0xb8, 0xb6, 0xe9, 0x9b, - 0x76, 0xdf, 0xc3, 0x03, 0xc7, 0x36, 0x98, 0x1e, 0x2a, 0x6b, 0x6d, 0xfe, 0x66, 0xcb, 0xde, 0x61, - 0xed, 0xe8, 0xd3, 0x50, 0xf2, 0x8f, 0xc7, 0xcc, 0xf7, 0x6e, 0x65, 0x38, 0xa6, 0xe1, 0xcc, 0x76, - 0x8f, 0xc7, 0x58, 0xa3, 0x08, 0x41, 0x1d, 0xa3, 0xef, 0xea, 0xc1, 0x5e, 0x94, 0x34, 0xa9, 0x45, - 0x4e, 0x88, 0x54, 0xa3, 0x09, 0x11, 0x2a, 0xcf, 0x42, 0x42, 0x7c, 0xdf, 0xe2, 0x64, 0x96, 0xe4, - 0x66, 0xd7, 0xb7, 0xc8, 0x32, 0x7d, 0xc7, 0xd7, 0x2d, 0xa6, 0x15, 0xea, 0x5c, 0x8f, 0x92, 0x16, - 0x9a, 0x42, 0xf8, 0x8f, 0x02, 0xac, 0x24, 0x48, 0x96, 0xb9, 0x15, 0xd3, 0xb3, 0x75, 0xb3, 0x34, - 0xd0, 0x5b, 0xd0, 0xe0, 0x9c, 0x39, 0x17, 0x6f, 0x03, 0x43, 0xba, 0x33, 0x45, 0xe0, 0xca, 0xa7, - 0x26, 0x70, 0x95, 0x13, 0xe5, 0xba, 0xd2, 0xb7, 0x48, 0xfd, 0x7a, 0x01, 0xd6, 0xa2, 0x4c, 0xae, - 0x61, 0x6f, 0x62, 0x65, 0xd3, 0x77, 0x56, 0x72, 0x83, 0xdb, 0x92, 0xb8, 0x21, 0xe2, 0x16, 0xf3, - 0x56, 0xc2, 0x71, 0xbf, 0x9c, 0x4f, 0x44, 0x42, 0x47, 0x45, 0x5e, 0x4c, 0x29, 0xca, 0x6f, 0x27, - 0x65, 0x71, 0xf5, 0x77, 0x15, 0x38, 0x9b, 0x30, 0x9d, 0x8b, 0xb9, 0x5a, 0x1b, 0x50, 0x75, 0x29, - 0x25, 0x03, 0x5d, 0x70, 0x75, 0xc6, 0x74, 0x42, 0xda, 0x6b, 0x01, 0xa6, 0xba, 0x03, 0xeb, 0x81, - 0x4b, 0x16, 0x6e, 0xec, 0x5d, 0xec, 0xeb, 0x53, 0xf2, 0x05, 0x17, 0xa1, 0xc1, 0xe2, 0x49, 0x16, - 0x85, 0xb3, 0x03, 0x79, 0xd8, 0x17, 0xe9, 0x63, 0xf5, 0x7b, 0x05, 0x58, 0xa3, 0xbe, 0x4c, 0xfc, - 0x78, 0x34, 0xcf, 0x71, 0xbf, 0x2a, 0x4c, 0x27, 0x31, 0x93, 0x6c, 0x6d, 0x75, 0x2d, 0xd2, 0x86, - 0xde, 0x4b, 0xe6, 0x96, 0x33, 0xf2, 0x4b, 0x61, 0x8d, 0xc3, 0xa6, 0xee, 0xeb, 0xb4, 0xc4, 0x21, - 0x9e, 0x54, 0x0e, 0xbd, 0xa8, 0xd2, 0xc9, 0xbc, 0xa8, 0xab, 0xd0, 0x66, 0xa7, 0x34, 0x7d, 0x91, - 0xa8, 0xa0, 0x0c, 0x52, 0xd2, 0x96, 0x59, 0xfb, 0x6e, 0xd0, 0xac, 0xde, 0x83, 0xa7, 0x62, 0x84, - 0x59, 0x88, 0x07, 0xd4, 0x3f, 0x51, 0xc8, 0xfe, 0x45, 0xaa, 0xf1, 0x16, 0x09, 0x42, 0xce, 0x8b, - 0x43, 0x5c, 0xe2, 0x6d, 0xc4, 0x74, 0x9b, 0x81, 0xbe, 0x00, 0x75, 0x1b, 0x3f, 0xec, 0xcb, 0xfe, - 0x6c, 0xae, 0x38, 0xad, 0x66, 0xe3, 0x87, 0xf4, 0x97, 0xba, 0x0d, 0x67, 0x13, 0xd3, 0x5d, 0x8c, - 0x02, 0x7f, 0xab, 0xc0, 0xd3, 0x9b, 0xae, 0x33, 0xde, 0x33, 0x5d, 0x7f, 0xa2, 0x5b, 0xd1, 0x82, - 0x93, 0x13, 0x11, 0x21, 0x47, 0x05, 0xf0, 0xbb, 0x09, 0x25, 0x73, 0x3d, 0x55, 0xf6, 0x92, 0x13, - 0x4b, 0x28, 0x1b, 0xf5, 0x7f, 0x8a, 0x69, 0x0b, 0x08, 0x8c, 0xd0, 0x74, 0x07, 0x2e, 0x4f, 0xd0, - 0x98, 0x7a, 0x34, 0x54, 0x3c, 0xf9, 0xd1, 0x50, 0x86, 0xf5, 0x29, 0x9d, 0x9a, 0xf5, 0x39, 0x41, - 0x46, 0xf4, 0x6d, 0x88, 0x1e, 0xdf, 0x51, 0x1f, 0x62, 0xfe, 0x43, 0xbf, 0x37, 0x01, 0xc2, 0x13, - 0x2c, 0x5e, 0x5f, 0x3d, 0xb3, 0x0f, 0x09, 0x85, 0xec, 0x96, 0xb0, 0xf4, 0xdc, 0x13, 0x91, 0x4e, - 0x2a, 0x76, 0xa0, 0x9b, 0xc6, 0xa9, 0x8b, 0xf1, 0xff, 0x6f, 0x2a, 0x70, 0xe1, 0xfe, 0xd8, 0xd0, - 0x7d, 0x2c, 0x49, 0xd5, 0xe2, 0xa5, 0x6b, 0xa2, 0x76, 0xac, 0x30, 0xb5, 0x76, 0x4c, 0x1a, 0xd3, - 0xe3, 0xb5, 0x63, 0xea, 0x8f, 0xc5, 0x8c, 0x12, 0xe5, 0x9f, 0x8b, 0xcc, 0xa8, 0x0b, 0xb5, 0x07, - 0xbc, 0xc3, 0xe0, 0xde, 0x40, 0xf0, 0x1c, 0x39, 0x60, 0x2a, 0xce, 0x7b, 0xc0, 0xb4, 0x0d, 0xab, - 0xc9, 0xd2, 0xd8, 0x80, 0xa1, 0x67, 0xf6, 0x83, 0x12, 0x85, 0xaf, 0x9e, 0xfa, 0x3e, 0x3c, 0xad, - 0x61, 0x0f, 0xdb, 0x46, 0x84, 0x3c, 0x0b, 0x44, 0xca, 0x2e, 0x74, 0xd3, 0x3a, 0x5c, 0xcc, 0x7f, - 0x60, 0xca, 0xbe, 0xef, 0x92, 0x8e, 0x7d, 0x9e, 0xac, 0x21, 0xba, 0x85, 0x8e, 0xe4, 0xab, 0x1f, - 0x42, 0xf7, 0xae, 0xee, 0x1e, 0x05, 0xc1, 0xf9, 0x26, 0x3b, 0xba, 0x5c, 0x64, 0x07, 0x2f, 0x42, - 0x43, 0xae, 0xb0, 0x8a, 0x95, 0x56, 0x1b, 0x9e, 0x7a, 0x20, 0x0e, 0xf5, 0x35, 0x7c, 0x80, 0x5d, - 0x6c, 0x0f, 0xf0, 0x1d, 0x67, 0x70, 0x44, 0x3c, 0x45, 0x9f, 0xdd, 0x5e, 0xe1, 0x9e, 0x22, 0x7b, - 0x92, 0xee, 0x98, 0x14, 0x22, 0x77, 0x4c, 0x66, 0x5c, 0x21, 0x53, 0xff, 0xbb, 0x00, 0xeb, 0x6f, - 0x59, 0x3e, 0x76, 0x43, 0x93, 0x3e, 0x8f, 0x87, 0x12, 0x3a, 0x0c, 0x85, 0x93, 0x39, 0x0c, 0x39, - 0x32, 0xb5, 0x69, 0x2e, 0x4e, 0xe9, 0xc4, 0x2e, 0xce, 0x06, 0xc0, 0xd8, 0x75, 0xc6, 0xd8, 0xf5, - 0x4d, 0x1c, 0x28, 0xd8, 0x5c, 0xe5, 0xa0, 0x12, 0x9a, 0xa8, 0x0c, 0xab, 0x48, 0x95, 0x61, 0xe7, - 0xa0, 0x1e, 0x08, 0x21, 0x2b, 0x20, 0xac, 0x6b, 0x61, 0x83, 0xfa, 0x15, 0x68, 0xbf, 0x33, 0xd8, - 0x70, 0xec, 0x03, 0xd3, 0x1d, 0x05, 0x04, 0x4e, 0xe4, 0x34, 0x92, 0x14, 0x36, 0x12, 0xb9, 0x91, - 0x42, 0x22, 0x37, 0xa2, 0x1e, 0xc1, 0x8a, 0xd4, 0xf7, 0x62, 0x92, 0x70, 0x11, 0x1a, 0xc3, 0x41, - 0xff, 0xc0, 0xb4, 0x4d, 0x5a, 0x5a, 0x50, 0xa0, 0x09, 0x53, 0x18, 0x0e, 0x6e, 0xf3, 0x16, 0xf5, - 0xd7, 0x15, 0x78, 0x46, 0xc3, 0x63, 0xc7, 0xf5, 0x83, 0x33, 0xd1, 0x5d, 0xff, 0xae, 0x37, 0x5c, - 0x48, 0xc3, 0xde, 0x84, 0xd2, 0xc8, 0x1b, 0x66, 0x1e, 0x4e, 0x10, 0x3d, 0x13, 0x19, 0x4c, 0xa3, - 0xe0, 0xea, 0x5f, 0x29, 0xb0, 0x16, 0xa4, 0x6d, 0x23, 0xfe, 0x5e, 0x94, 0xe9, 0x95, 0x44, 0x01, - 0xde, 0x94, 0xfb, 0x6e, 0x67, 0xa1, 0x6a, 0xec, 0x33, 0x67, 0xa7, 0x48, 0x35, 0x6b, 0xc5, 0xd8, - 0xa7, 0x7e, 0xce, 0x0b, 0xb0, 0x2c, 0x6d, 0x16, 0x05, 0x60, 0x01, 0x91, 0x14, 0x75, 0xa7, 0xde, - 0x63, 0x2b, 0xa7, 0x1c, 0x29, 0x7f, 0x09, 0x3a, 0x9c, 0x33, 0xde, 0x1f, 0x63, 0x57, 0xa7, 0x9c, - 0x19, 0x4c, 0xfe, 0xf5, 0xe0, 0x5a, 0x83, 0x32, 0xe5, 0x02, 0x48, 0x3c, 0x5d, 0xcb, 0xef, 0x36, - 0xa8, 0xff, 0xa0, 0xc0, 0xa5, 0x78, 0xcf, 0xdb, 0x3c, 0x8d, 0x79, 0x0a, 0x97, 0x3c, 0x69, 0x16, - 0xb4, 0x10, 0x66, 0x41, 0x17, 0x4c, 0xe9, 0xca, 0x39, 0xd7, 0x52, 0x34, 0xe7, 0xaa, 0x7e, 0xa7, - 0x08, 0xed, 0x6d, 0x17, 0xb3, 0xfa, 0xab, 0x80, 0x36, 0xe7, 0xa0, 0x3e, 0xb0, 0x26, 0x9e, 0x8f, - 0x5d, 0xae, 0x8f, 0xea, 0x5a, 0xd8, 0x80, 0xd6, 0xa0, 0xfc, 0x81, 0x13, 0x16, 0x6c, 0xb2, 0x07, - 0x49, 0x63, 0x16, 0x23, 0x1a, 0x33, 0xcf, 0x25, 0xb5, 0xb8, 0x76, 0x2a, 0xa7, 0x68, 0xa7, 0x73, - 0x72, 0xcd, 0x6a, 0x85, 0xcb, 0xbd, 0x38, 0x3c, 0x0b, 0x15, 0x64, 0xf5, 0x64, 0x0a, 0xf2, 0x76, - 0x70, 0x69, 0xb1, 0x7f, 0x60, 0x5a, 0x38, 0x28, 0xe3, 0xc9, 0xbe, 0x2c, 0xc1, 0x08, 0x76, 0xdb, - 0xb4, 0xb0, 0xd6, 0x30, 0xc5, 0x6f, 0x7a, 0x5a, 0xea, 0x8c, 0x99, 0xf2, 0xac, 0xe7, 0x57, 0x7a, - 0x01, 0x8e, 0x7a, 0x13, 0x1a, 0xfa, 0xc4, 0x77, 0xb6, 0x36, 0x35, 0xdd, 0x1e, 0xd2, 0x43, 0xe4, - 0x7d, 0x3c, 0x34, 0xed, 0xe0, 0xc2, 0x20, 0x7d, 0x40, 0x6d, 0x28, 0x62, 0x3b, 0x50, 0x51, 0xe4, - 0xa7, 0xea, 0xc2, 0x5a, 0x64, 0x07, 0xf3, 0xf9, 0xf2, 0xb1, 0x74, 0x61, 0x21, 0xf5, 0x9a, 0x67, - 0x40, 0x63, 0x2e, 0xa7, 0xe2, 0x59, 0xfd, 0xa3, 0x12, 0x2c, 0xfd, 0xd4, 0xb3, 0xcd, 0x67, 0xa1, - 0x3c, 0x37, 0xbf, 0x30, 0x8c, 0x05, 0x39, 0x05, 0xb5, 0xa0, 0xe0, 0x7b, 0xb4, 0xca, 0xab, 0xa4, - 0x15, 0x7c, 0x62, 0x70, 0x9b, 0x8c, 0x73, 0xfa, 0x2e, 0x61, 0x1d, 0x5a, 0xe3, 0x95, 0x15, 0xd3, - 0x48, 0x2c, 0xa6, 0x45, 0xf8, 0x6d, 0x17, 0xda, 0x2e, 0xdb, 0xcc, 0xb0, 0xd2, 0xbd, 0x39, 0x25, - 0xd3, 0x93, 0xc6, 0x74, 0xda, 0xb2, 0x1b, 0x79, 0xf6, 0xd4, 0x01, 0x3c, 0xf5, 0xb3, 0x13, 0xec, - 0x1e, 0x3f, 0x4e, 0x3d, 0xa3, 0xfe, 0x6f, 0x01, 0xd6, 0xc4, 0xd5, 0x14, 0x36, 0x0c, 0xf5, 0x59, - 0xd1, 0x00, 0x5a, 0xa1, 0x65, 0xa7, 0x19, 0x52, 0xa6, 0xf1, 0x3f, 0x97, 0xba, 0xa2, 0xb4, 0x2e, - 0xc2, 0x46, 0x12, 0x54, 0xb1, 0xdb, 0x67, 0x4b, 0x63, 0xb9, 0x0d, 0x8d, 0x61, 0x35, 0x1c, 0x84, - 0x7e, 0x2f, 0x81, 0xd6, 0x77, 0x30, 0x4b, 0xfb, 0x85, 0x13, 0x8c, 0x44, 0x0c, 0xf1, 0x8e, 0xf9, - 0x11, 0xe6, 0x77, 0xdd, 0xc6, 0xf1, 0xf6, 0xee, 0x17, 0x00, 0x25, 0xa7, 0x25, 0xdf, 0x73, 0x2b, - 0xb2, 0x7b, 0x6e, 0x6b, 0xf2, 0x3d, 0xb7, 0xa2, 0x74, 0x8d, 0xad, 0xbb, 0x09, 0xeb, 0xe9, 0xc3, - 0xcd, 0xd3, 0x8b, 0xfa, 0x8d, 0x22, 0x2c, 0x87, 0xcc, 0xcd, 0x48, 0xbe, 0x09, 0x0d, 0x49, 0x99, - 0x72, 0xf3, 0x97, 0x4b, 0x36, 0x20, 0xd4, 0xa5, 0xe8, 0x19, 0xa8, 0x13, 0xf4, 0x80, 0x92, 0x0a, - 0xbb, 0xd5, 0x66, 0x61, 0x5a, 0x5e, 0x13, 0xcd, 0xaf, 0x17, 0x63, 0xf9, 0x75, 0x74, 0x0d, 0x56, - 0xd8, 0x6b, 0xb9, 0xda, 0x86, 0xe9, 0x90, 0x65, 0xfa, 0xe2, 0xae, 0x28, 0xb9, 0x41, 0x5f, 0x86, - 0xe6, 0xa1, 0x4e, 0x9c, 0xae, 0x3e, 0x8b, 0x3f, 0x99, 0xb3, 0x7a, 0x73, 0x0a, 0xc3, 0x8b, 0x95, - 0x5e, 0xff, 0x22, 0x45, 0xa4, 0xbf, 0xd9, 0x4e, 0x35, 0x0e, 0xc3, 0x96, 0xae, 0x09, 0xed, 0x38, - 0x40, 0xca, 0x4d, 0xc4, 0x37, 0xa3, 0x37, 0x11, 0xaf, 0xe6, 0xe6, 0x16, 0x79, 0x1b, 0x7e, 0xbf, - 0x00, 0xeb, 0x71, 0x21, 0x5b, 0xcc, 0x0f, 0x09, 0x05, 0xad, 0x10, 0xd1, 0xcc, 0xb9, 0x7c, 0x91, - 0x2d, 0x71, 0xd9, 0x9f, 0x7a, 0x22, 0x7b, 0xbd, 0xc0, 0x17, 0x59, 0x87, 0x8a, 0x8b, 0x75, 0x8f, - 0xdf, 0x20, 0xae, 0x6b, 0xfc, 0x89, 0x5e, 0x8d, 0xb7, 0x1c, 0x3f, 0xb8, 0x79, 0xc0, 0x1e, 0x48, - 0x14, 0xc1, 0x58, 0x80, 0x6e, 0x0c, 0x3b, 0x24, 0xf8, 0x44, 0x9e, 0x8d, 0xd1, 0x28, 0xeb, 0xd0, - 0x9f, 0xea, 0x2f, 0x03, 0xa2, 0x94, 0x79, 0x7c, 0xc6, 0xea, 0x1c, 0xd4, 0x3f, 0x24, 0x23, 0xec, - 0x58, 0x8e, 0xcf, 0x8b, 0x1f, 0xc2, 0x06, 0xf5, 0x5f, 0x15, 0x58, 0xe1, 0xbb, 0x26, 0xdd, 0xf6, - 0x98, 0x6e, 0x9a, 0x9f, 0x83, 0x25, 0x26, 0x09, 0xd8, 0x60, 0x1c, 0x5e, 0x90, 0x3f, 0xa2, 0x80, - 0x0d, 0xca, 0xe4, 0xaf, 0xc5, 0x2b, 0xb3, 0x4e, 0x7a, 0x05, 0x61, 0xfe, 0x8a, 0x42, 0xf5, 0x8f, - 0x0b, 0xb0, 0x1a, 0xa1, 0xea, 0xff, 0x7f, 0x66, 0xfb, 0x32, 0xac, 0x71, 0xad, 0x15, 0xd8, 0xbe, - 0x3e, 0xf1, 0xf6, 0x39, 0xdb, 0x4d, 0x1b, 0x5a, 0x2e, 0xf7, 0x40, 0xa6, 0xdc, 0xe4, 0x91, 0x36, - 0xb5, 0x0f, 0x2b, 0x9b, 0xae, 0x33, 0x7e, 0x7c, 0xc6, 0xef, 0x5b, 0x65, 0xa8, 0xb3, 0xde, 0xdf, - 0x75, 0xf6, 0x43, 0x5c, 0x45, 0xc6, 0x3d, 0xe9, 0x35, 0xab, 0x79, 0x22, 0xb2, 0x27, 0xed, 0x8e, - 0x9d, 0x67, 0xc7, 0xba, 0xce, 0xc4, 0x27, 0x31, 0x27, 0xbb, 0x44, 0x24, 0x55, 0xaf, 0x9c, 0x07, - 0x18, 0x58, 0x58, 0xb7, 0x27, 0x63, 0xf2, 0xba, 0xce, 0x5e, 0xf3, 0x96, 0x5d, 0x7a, 0xe7, 0x90, - 0xbb, 0x2e, 0xd8, 0xd8, 0x34, 0xbd, 0x23, 0x62, 0x1d, 0xa8, 0x87, 0x55, 0xd4, 0x92, 0x2f, 0xd0, - 0x1b, 0x01, 0x6b, 0x36, 0x28, 0x6b, 0xbe, 0x30, 0xc3, 0xbc, 0xbd, 0xeb, 0xec, 0x47, 0x82, 0xb2, - 0x90, 0x37, 0x9b, 0x11, 0xde, 0xa4, 0xd9, 0x0a, 0x56, 0xa5, 0xc4, 0x8e, 0xc8, 0x97, 0x58, 0x65, - 0x77, 0xd0, 0x48, 0x4f, 0xc9, 0x85, 0xdb, 0xd9, 0x5a, 0xc4, 0xed, 0x5c, 0x3e, 0x81, 0xdb, 0x19, - 0x3d, 0xbe, 0x6f, 0x33, 0xb6, 0x15, 0xc7, 0xf7, 0xea, 0xef, 0x14, 0x60, 0x49, 0x58, 0x20, 0x22, - 0x91, 0x19, 0xcc, 0x98, 0x25, 0xef, 0x79, 0x18, 0x32, 0xcc, 0xc1, 0x55, 0x22, 0x39, 0x38, 0xa1, - 0x2b, 0xaa, 0x8b, 0xe9, 0x8a, 0x5a, 0x64, 0x3f, 0xa2, 0x26, 0x08, 0x4e, 0x66, 0x82, 0xfe, 0xbd, - 0x00, 0xcd, 0x70, 0xe4, 0xbd, 0xde, 0x63, 0xa0, 0xca, 0xac, 0xdb, 0x90, 0x21, 0xd5, 0xca, 0xe9, - 0x54, 0xab, 0x2c, 0x46, 0xb5, 0xea, 0x74, 0x2e, 0xae, 0xa5, 0x70, 0x71, 0x94, 0xb4, 0xf5, 0x93, - 0x91, 0xf6, 0x6f, 0x14, 0x9e, 0xf2, 0xf3, 0x5d, 0x67, 0xa1, 0x43, 0xb8, 0xcf, 0x40, 0x95, 0xb4, - 0xeb, 0x3c, 0xb2, 0x6e, 0x25, 0xd1, 0xd8, 0x47, 0x2a, 0x06, 0x1b, 0x0c, 0x4a, 0x0b, 0xc0, 0xd1, - 0xeb, 0x50, 0x19, 0xeb, 0xae, 0x3e, 0xca, 0x2c, 0x90, 0x4e, 0x93, 0x28, 0x8e, 0x72, 0xed, 0xf3, - 0xe2, 0x12, 0xe8, 0xee, 0xf1, 0x18, 0xa3, 0x2a, 0x14, 0xef, 0xe1, 0x87, 0xed, 0x33, 0x08, 0xa0, - 0x72, 0xcf, 0x71, 0x47, 0xba, 0xd5, 0x56, 0x50, 0x03, 0xaa, 0xbc, 0x68, 0xb2, 0x5d, 0x40, 0x4b, - 0x50, 0xdf, 0x08, 0x4a, 0xc7, 0xda, 0xc5, 0x6b, 0x3d, 0x68, 0xca, 0xe5, 0x42, 0x04, 0xef, 0x0e, - 0x1e, 0xea, 0x83, 0xe3, 0xf6, 0x19, 0x54, 0x81, 0xc2, 0x9d, 0x97, 0xdb, 0x0a, 0xfd, 0xfb, 0x4a, - 0xbb, 0x40, 0xff, 0xf6, 0xda, 0xc5, 0x6b, 0x7f, 0xa0, 0xc0, 0x4a, 0x22, 0x5b, 0x84, 0x5a, 0x00, - 0xf7, 0xed, 0x60, 0x83, 0xda, 0x67, 0x50, 0x13, 0x6a, 0x41, 0xbd, 0x24, 0x9b, 0xc3, 0xae, 0x43, - 0xa1, 0xdb, 0x05, 0xd4, 0x86, 0x26, 0x43, 0x9c, 0x0c, 0x06, 0xd8, 0xf3, 0xda, 0x45, 0xd1, 0x72, - 0x5b, 0x37, 0xad, 0x89, 0x8b, 0xdb, 0x25, 0x32, 0xcf, 0x5d, 0x47, 0xc3, 0x16, 0xd6, 0x3d, 0xdc, - 0x2e, 0x23, 0x04, 0x2d, 0xfe, 0x10, 0x20, 0x55, 0xa4, 0xb6, 0x00, 0xad, 0x7a, 0xed, 0x2f, 0x14, - 0xb9, 0x42, 0x89, 0xd2, 0xe4, 0x2c, 0xac, 0xde, 0xb7, 0x0d, 0x7c, 0x60, 0xda, 0xd8, 0x08, 0x5f, - 0xb5, 0xcf, 0xa0, 0x55, 0x58, 0xbe, 0x8b, 0xdd, 0x21, 0x96, 0x1a, 0x0b, 0x68, 0x05, 0x96, 0xee, - 0x9a, 0x8f, 0xa4, 0xa6, 0x22, 0x5a, 0x83, 0xf6, 0x8e, 0x69, 0x0f, 0x2d, 0x19, 0xb0, 0x44, 0xb1, - 0x4d, 0xdb, 0x71, 0xa5, 0xc6, 0x32, 0x6d, 0xd4, 0x3f, 0x88, 0x34, 0x56, 0x50, 0x17, 0xd6, 0x29, - 0x71, 0x5f, 0xde, 0xc4, 0x84, 0x1a, 0xd2, 0xbb, 0xaa, 0x5a, 0xaa, 0x29, 0x6d, 0xe5, 0xda, 0xfd, - 0xc0, 0xc5, 0x93, 0x64, 0x04, 0xd5, 0xa0, 0x74, 0xcf, 0xb1, 0x09, 0x29, 0x1b, 0x50, 0xdd, 0xc6, - 0xb6, 0x61, 0xda, 0xc3, 0xb6, 0x42, 0xe8, 0xbc, 0x25, 0xb2, 0x85, 0xed, 0x02, 0xd9, 0x31, 0xb2, - 0x7c, 0xb2, 0x9b, 0xc1, 0xe6, 0xd2, 0x1a, 0xd5, 0x76, 0xe9, 0xda, 0x55, 0xa8, 0x0b, 0x7e, 0x43, - 0x65, 0x50, 0xfa, 0xed, 0x33, 0xa8, 0x0e, 0xe5, 0x6d, 0x7d, 0xe2, 0x91, 0x3d, 0x01, 0xa8, 0x68, - 0xd8, 0x9b, 0x8c, 0x70, 0xbb, 0xd0, 0xfb, 0xfe, 0x55, 0xa8, 0x93, 0x28, 0x6e, 0xc3, 0x71, 0x5c, - 0x03, 0x8d, 0x01, 0xd1, 0x4f, 0x5e, 0x8c, 0xc6, 0x8e, 0x2d, 0x3e, 0x9a, 0x83, 0x5e, 0x4e, 0xa4, - 0x7c, 0xd9, 0x63, 0x12, 0x94, 0x0b, 0x52, 0xf7, 0x72, 0x06, 0x46, 0x0c, 0x5c, 0x3d, 0x83, 0x3e, - 0xa4, 0x23, 0x12, 0xb9, 0xde, 0x35, 0x07, 0x47, 0xc1, 0x31, 0x59, 0x2f, 0xd3, 0x32, 0x25, 0x81, - 0x83, 0x31, 0x9f, 0xcf, 0x18, 0x93, 0x7d, 0x9f, 0x24, 0xf0, 0x34, 0xd5, 0x33, 0x68, 0x42, 0xf3, - 0xd2, 0xe1, 0xe9, 0x63, 0x30, 0xe8, 0xa7, 0xa6, 0x0d, 0x9a, 0x00, 0x9f, 0x7b, 0xd8, 0x6d, 0x28, - 0x53, 0x69, 0x44, 0xcf, 0x4e, 0xfb, 0x78, 0x1d, 0xeb, 0x54, 0x9d, 0xfd, 0x7d, 0x3b, 0xf5, 0x0c, - 0xb2, 0x61, 0x39, 0xf6, 0xa5, 0x2c, 0xf4, 0xc9, 0x54, 0xc4, 0xf4, 0x2f, 0x9f, 0x75, 0x5f, 0xcc, - 0x07, 0x2c, 0xc6, 0x3b, 0x82, 0x56, 0xf4, 0xa3, 0x19, 0xe8, 0x5a, 0xae, 0x0f, 0xf2, 0xb0, 0xd1, - 0x3e, 0x39, 0xc7, 0xc7, 0x7b, 0x28, 0x63, 0xb4, 0xe3, 0x5f, 0x6f, 0x42, 0x2f, 0xce, 0xe8, 0x22, - 0xca, 0x84, 0x2f, 0xe5, 0x84, 0x16, 0x43, 0xfe, 0x12, 0x65, 0x8c, 0xc4, 0xe7, 0x72, 0x92, 0xfc, - 0x1f, 0x74, 0x94, 0xf5, 0x2d, 0x9f, 0xee, 0x2b, 0x73, 0x60, 0x88, 0xe1, 0xbf, 0xc5, 0xee, 0xf0, - 0xa4, 0x7d, 0x70, 0x06, 0xbd, 0x9a, 0xd5, 0xe1, 0x94, 0xaf, 0xe5, 0x74, 0x3f, 0x35, 0x1f, 0x92, - 0x98, 0xc8, 0xd7, 0xd9, 0xdd, 0x9b, 0x94, 0x2f, 0xb6, 0xa0, 0x5e, 0x56, 0x97, 0xd9, 0x1f, 0xa4, - 0xe9, 0xbe, 0x3a, 0x17, 0x8e, 0x98, 0x85, 0x17, 0xff, 0x56, 0x56, 0x20, 0xa7, 0xaf, 0xe4, 0x60, - 0xa4, 0x93, 0x0a, 0x69, 0x1f, 0x96, 0x63, 0xd7, 0xa5, 0x33, 0x44, 0x2a, 0xfd, 0x52, 0x75, 0x77, - 0x7a, 0xdc, 0xca, 0x64, 0x36, 0x76, 0xdf, 0x06, 0x65, 0x0a, 0x46, 0xca, 0xad, 0x9c, 0xee, 0x8b, - 0xf9, 0x80, 0xc5, 0x82, 0x7c, 0x58, 0x89, 0xbd, 0xdc, 0xeb, 0xa1, 0x97, 0xe6, 0x18, 0x71, 0xaf, - 0xd7, 0xbd, 0x3e, 0xcf, 0x98, 0x7b, 0x3d, 0xf5, 0x0c, 0x7a, 0x48, 0xb5, 0x7a, 0xec, 0xc6, 0x06, - 0xca, 0xec, 0x27, 0xfd, 0x76, 0x4a, 0xf7, 0x46, 0x6e, 0x78, 0xb1, 0xdc, 0x8f, 0x60, 0x35, 0xe5, - 0x82, 0x0d, 0xba, 0x31, 0x83, 0x65, 0xe2, 0xf7, 0x8b, 0xba, 0x2f, 0xe7, 0x47, 0x90, 0xec, 0x4a, - 0x3b, 0x98, 0xdb, 0x5b, 0x96, 0xc5, 0x9c, 0xa3, 0xeb, 0xd9, 0xa6, 0x33, 0x02, 0x98, 0xb9, 0xe4, - 0x4c, 0x78, 0x31, 0xec, 0xaf, 0x00, 0xda, 0x39, 0x74, 0x1e, 0xd2, 0x13, 0xe6, 0xe1, 0x84, 0x1f, - 0x57, 0x4e, 0xb1, 0xa0, 0x49, 0xe0, 0x4c, 0x41, 0x9d, 0x8a, 0x23, 0x26, 0x30, 0x00, 0x78, 0x07, - 0xfb, 0x77, 0xb1, 0xef, 0x12, 0x0d, 0x71, 0x25, 0x7b, 0x05, 0x1c, 0x24, 0x18, 0xee, 0x6a, 0x0e, - 0x48, 0x99, 0xb8, 0x77, 0x75, 0x7b, 0xa2, 0x5b, 0xd2, 0xd7, 0x25, 0xb2, 0x88, 0x1b, 0x07, 0x9c, - 0x45, 0xdc, 0x24, 0xbc, 0x18, 0xf6, 0x17, 0x85, 0x43, 0x24, 0xd5, 0xc3, 0xce, 0x72, 0x88, 0x92, - 0xb7, 0x4e, 0x92, 0x06, 0x61, 0x0a, 0x86, 0x18, 0xfc, 0x1b, 0x0a, 0xbd, 0x2e, 0x16, 0x03, 0xf8, - 0x92, 0xe9, 0x1f, 0x6e, 0x5b, 0xba, 0xed, 0xe5, 0x9b, 0x06, 0x05, 0x9d, 0x6b, 0x1a, 0x1c, 0x43, - 0x4c, 0xe3, 0x10, 0x96, 0x22, 0xa5, 0xa0, 0x28, 0x3d, 0xd5, 0x9c, 0x56, 0x47, 0xdb, 0xbd, 0x96, - 0x07, 0x54, 0x8c, 0xf4, 0x01, 0x2c, 0x45, 0x2a, 0x06, 0x32, 0x46, 0x4a, 0xab, 0x2a, 0x48, 0x2a, - 0xc6, 0x98, 0xe4, 0xc4, 0x89, 0xfb, 0x10, 0x50, 0xb2, 0xc6, 0x0d, 0xe5, 0xad, 0x8e, 0x9c, 0xae, - 0xa2, 0xb2, 0x8b, 0xe7, 0x98, 0x05, 0x88, 0x55, 0x96, 0x66, 0x99, 0x98, 0xd4, 0x72, 0xd9, 0x0c, - 0x0b, 0x90, 0x51, 0xac, 0xaa, 0x9e, 0x41, 0x0e, 0x9c, 0xcd, 0x28, 0xbb, 0xcb, 0xf0, 0x2a, 0xa6, - 0x17, 0xe9, 0xcd, 0x36, 0x71, 0x62, 0xc0, 0x44, 0x55, 0xdd, 0xd4, 0x01, 0xb3, 0x6a, 0xf0, 0x66, - 0x0f, 0x38, 0x84, 0xd5, 0x94, 0x02, 0xb0, 0x0c, 0xa5, 0x9f, 0x5d, 0x2a, 0x36, 0x7b, 0xa0, 0x0f, - 0xa0, 0x7b, 0xcb, 0x75, 0x74, 0x63, 0xa0, 0x7b, 0x3e, 0x2d, 0xcb, 0x22, 0x81, 0x65, 0xe0, 0x4a, - 0x65, 0xf9, 0xde, 0xa9, 0xe5, 0x5b, 0xb3, 0xc7, 0x3a, 0x80, 0x06, 0x25, 0x05, 0xfb, 0x42, 0x27, - 0xca, 0x52, 0x96, 0x12, 0x4c, 0xa6, 0xcc, 0xa5, 0x81, 0x0a, 0xf6, 0xf8, 0x32, 0x34, 0x36, 0x68, - 0xed, 0xf7, 0x96, 0x6d, 0xe0, 0x47, 0x49, 0xf5, 0x4d, 0x3f, 0x44, 0x76, 0x5d, 0x02, 0xc9, 0xbd, - 0x82, 0x3d, 0x00, 0xba, 0x78, 0xd6, 0xf1, 0x0b, 0xe9, 0x1d, 0x87, 0x10, 0x73, 0xec, 0xc2, 0x12, - 0xf5, 0xa4, 0x0d, 0xfc, 0x88, 0x89, 0xcf, 0xb5, 0xf4, 0xae, 0x23, 0x40, 0x99, 0x51, 0x48, 0x2a, - 0xac, 0x64, 0x5c, 0xd7, 0x64, 0xc7, 0x52, 0x0c, 0xf9, 0x4a, 0x66, 0x37, 0x09, 0xd8, 0x60, 0xe4, - 0xde, 0x3c, 0x28, 0xb2, 0xf2, 0x0d, 0xe6, 0xb6, 0x45, 0xbf, 0x8f, 0x7a, 0x75, 0xfa, 0x02, 0x64, - 0x5f, 0xf1, 0x5a, 0x1e, 0x50, 0x31, 0xd2, 0x2e, 0xd4, 0xe9, 0x69, 0x03, 0xdd, 0xad, 0xcb, 0xe9, - 0xa8, 0x02, 0x60, 0x9e, 0xcd, 0xda, 0xc4, 0xde, 0xc0, 0x35, 0xf7, 0x39, 0x83, 0x65, 0x4c, 0x2a, - 0x02, 0x34, 0x63, 0xb3, 0x62, 0xb0, 0x62, 0x05, 0xc7, 0xd4, 0x58, 0x0b, 0x32, 0x72, 0x25, 0x77, - 0x63, 0xf6, 0x8e, 0x47, 0x15, 0xdc, 0xcb, 0xf9, 0x11, 0xc4, 0xd0, 0x1f, 0xb3, 0x2f, 0xfb, 0x52, - 0x80, 0x5b, 0x13, 0xd3, 0x32, 0x82, 0x44, 0x0d, 0xea, 0x4d, 0xef, 0x2d, 0x02, 0x3c, 0xc5, 0x11, - 0x9b, 0x82, 0x23, 0x26, 0x61, 0x40, 0xe3, 0x8e, 0xe9, 0x31, 0x18, 0xec, 0x65, 0x89, 0xb2, 0x04, - 0x92, 0xe9, 0x89, 0xa5, 0x40, 0x8a, 0x51, 0x7e, 0x81, 0x25, 0x97, 0x68, 0x3d, 0x23, 0x7a, 0x3e, - 0x33, 0xd9, 0x29, 0xd7, 0x52, 0x76, 0x2f, 0xcf, 0x02, 0x13, 0xbd, 0x9b, 0xb0, 0x96, 0x56, 0xbf, - 0x98, 0x11, 0x83, 0x4f, 0x29, 0x75, 0x9c, 0xcd, 0x9a, 0x3b, 0x7c, 0x21, 0xbe, 0xeb, 0x58, 0xd3, - 0x16, 0x22, 0x65, 0x88, 0x67, 0x77, 0x8a, 0xa1, 0xc6, 0x32, 0x7a, 0x7b, 0xbd, 0xa4, 0x33, 0x11, - 0x3b, 0x5f, 0xe1, 0x9d, 0x6e, 0xf1, 0xd6, 0xee, 0x0b, 0x33, 0xe1, 0x05, 0x99, 0xbe, 0x46, 0xc3, - 0x3a, 0xd6, 0x2c, 0x58, 0xed, 0x95, 0x69, 0x09, 0xac, 0x28, 0xec, 0x14, 0xa5, 0x94, 0x8d, 0x22, - 0x46, 0x77, 0x39, 0xa3, 0xd1, 0xf7, 0x29, 0x6e, 0x84, 0xe8, 0x44, 0x82, 0x8a, 0x2f, 0xf6, 0xc5, - 0x7c, 0x48, 0xc1, 0x98, 0xbd, 0x7f, 0x6c, 0x41, 0x2d, 0xd8, 0xe8, 0x27, 0x90, 0xa7, 0x7c, 0x42, - 0x49, 0xc3, 0x3e, 0x2c, 0xc7, 0x3e, 0xe0, 0x99, 0xe1, 0x66, 0xa4, 0x7f, 0xe6, 0x73, 0x36, 0xbf, - 0xfe, 0x3c, 0xff, 0x1f, 0x23, 0x22, 0x48, 0xbf, 0x9a, 0x9d, 0x7a, 0x8c, 0xc7, 0xe7, 0x33, 0x3b, - 0xff, 0xe9, 0x08, 0x4d, 0x35, 0x00, 0x29, 0x28, 0x7d, 0x2e, 0xc7, 0xdd, 0xc6, 0xd9, 0x94, 0xfb, - 0x30, 0x35, 0xee, 0xfc, 0xe4, 0xac, 0x0b, 0xa2, 0xb3, 0xe3, 0x84, 0xec, 0x68, 0xf3, 0xe7, 0xa0, - 0x29, 0x7f, 0xe3, 0x00, 0x65, 0xfc, 0x4b, 0x85, 0xe4, 0x67, 0x10, 0x66, 0xaf, 0xe6, 0x21, 0xa0, - 0xe4, 0xad, 0x90, 0x8c, 0x58, 0x2b, 0xf3, 0x3e, 0x4a, 0x46, 0xac, 0x95, 0x7d, 0xdd, 0x44, 0xe2, - 0xee, 0x19, 0xa1, 0x6b, 0xda, 0xbf, 0x6a, 0x99, 0xbd, 0xaa, 0x43, 0x58, 0xbf, 0xe7, 0xf8, 0xe6, - 0xc1, 0x71, 0xbc, 0xa4, 0x3b, 0x23, 0xbf, 0x96, 0x55, 0x53, 0x9e, 0x47, 0x8e, 0xce, 0x53, 0xe7, - 0x3d, 0xab, 0x76, 0x1c, 0xe5, 0x2b, 0x43, 0xef, 0xde, 0xcc, 0x35, 0xaf, 0x14, 0x85, 0xbf, 0x03, - 0x75, 0x71, 0x3c, 0x9f, 0x31, 0x58, 0xbc, 0x4a, 0x73, 0xf6, 0xaa, 0xde, 0x97, 0x4c, 0xa5, 0x3a, - 0xbb, 0x4e, 0x74, 0x76, 0x87, 0x47, 0xd0, 0x8a, 0xd6, 0xb2, 0x65, 0x9c, 0x4f, 0xa4, 0x56, 0x95, - 0x66, 0x9c, 0x4f, 0xa4, 0x17, 0xc7, 0xa9, 0x67, 0xd0, 0x3e, 0x34, 0xa4, 0x42, 0xa6, 0x64, 0x78, - 0x13, 0x62, 0x47, 0x87, 0xb9, 0x32, 0x1b, 0x50, 0x8c, 0x71, 0x1f, 0x20, 0x2c, 0x00, 0x42, 0x97, - 0x33, 0x73, 0x0d, 0xf3, 0xd1, 0xe9, 0xd6, 0xab, 0x5f, 0x79, 0x65, 0x68, 0xfa, 0x87, 0x93, 0x7d, - 0xf2, 0xe6, 0x06, 0x03, 0x7e, 0xc9, 0x74, 0xf8, 0xaf, 0x1b, 0x81, 0x6a, 0xbd, 0x41, 0xf1, 0x6f, - 0x90, 0x51, 0xc6, 0xfb, 0xfb, 0x15, 0xfa, 0xf4, 0xea, 0xff, 0x05, 0x00, 0x00, 0xff, 0xff, 0x3b, - 0x40, 0xd6, 0x24, 0xd7, 0x6b, 0x00, 0x00, + // 6575 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x7d, 0xd9, 0x8f, 0x1c, 0xc7, + 0x79, 0x38, 0x7b, 0xee, 0xf9, 0xe6, 0xd8, 0xd9, 0xda, 0xd5, 0x72, 0x38, 0x3c, 0xd5, 0x92, 0xa8, + 0x25, 0x2d, 0xf1, 0x18, 0x99, 0x3e, 0x24, 0xeb, 0xe2, 0xae, 0x28, 0xaf, 0x44, 0x52, 0x74, 0xef, + 0x72, 0xed, 0x9f, 0x7f, 0x86, 0x07, 0xbd, 0xd3, 0xb5, 0xb3, 0xad, 0x9d, 0xe9, 0x1e, 0x75, 0xf7, + 0x90, 0x5c, 0xc5, 0x49, 0x10, 0xc7, 0x17, 0x1c, 0x07, 0x0e, 0x9c, 0xc3, 0xc9, 0x6b, 0x02, 0x38, + 0x40, 0x90, 0x03, 0xc8, 0x43, 0x62, 0x20, 0x48, 0x80, 0x00, 0x01, 0x12, 0x20, 0x48, 0xf2, 0x10, + 0x20, 0x08, 0xf2, 0x94, 0x3c, 0x04, 0xfe, 0x0b, 0xf2, 0xec, 0xa0, 0x8e, 0xae, 0xae, 0xbe, 0x66, + 0x7a, 0x76, 0x48, 0x13, 0x81, 0x9f, 0x76, 0xba, 0xfa, 0xfb, 0xaa, 0xaa, 0xbf, 0xfa, 0xea, 0xbb, + 0xab, 0x16, 0x5a, 0x86, 0xee, 0xe9, 0xbd, 0xbe, 0x6d, 0x3b, 0xc6, 0x95, 0xb1, 0x63, 0x7b, 0x36, + 0x5a, 0x19, 0x99, 0xc3, 0x07, 0x13, 0x97, 0x3d, 0x3d, 0xe8, 0x5e, 0x21, 0x00, 0x9d, 0x7a, 0xdf, + 0x1e, 0x8d, 0x6c, 0x8b, 0x35, 0x76, 0x9a, 0xa6, 0xe5, 0x61, 0xc7, 0xd2, 0x87, 0xfc, 0xb9, 0x2e, + 0xa3, 0x74, 0xea, 0x6e, 0xff, 0x00, 0x8f, 0x74, 0xfe, 0x54, 0x1d, 0xb9, 0x03, 0xfe, 0x73, 0xd9, + 0xb4, 0x0c, 0xfc, 0x48, 0x1e, 0x4c, 0x2d, 0x43, 0xf1, 0x9d, 0xd1, 0xd8, 0x3b, 0x52, 0xff, 0x42, + 0x81, 0xfa, 0xad, 0xe1, 0xc4, 0x3d, 0xd0, 0xf0, 0x47, 0x13, 0xec, 0x7a, 0xa8, 0x0b, 0x85, 0x3d, + 0xdd, 0xc5, 0x6d, 0xe5, 0x82, 0xb2, 0x5e, 0xeb, 0x9e, 0xbb, 0x12, 0x99, 0x15, 0x9f, 0xcf, 0x1d, + 0x77, 0x70, 0x53, 0x77, 0xb1, 0x46, 0x61, 0x11, 0x82, 0x82, 0xb1, 0xb7, 0xb5, 0xd9, 0xce, 0x5d, + 0x50, 0xd6, 0xf3, 0x1a, 0xfd, 0x8d, 0xce, 0x01, 0xb8, 0x78, 0x30, 0xc2, 0x96, 0xb7, 0xb5, 0xe9, + 0xb6, 0xf3, 0x17, 0xf2, 0xeb, 0x79, 0x4d, 0x6a, 0x41, 0x2a, 0xd4, 0xfb, 0xf6, 0x70, 0x88, 0xfb, + 0x9e, 0x69, 0x5b, 0x5b, 0x9b, 0xed, 0x02, 0xc5, 0x0d, 0xb5, 0xa1, 0x0e, 0x54, 0x4c, 0x77, 0x6b, + 0x34, 0xb6, 0x1d, 0xaf, 0x5d, 0xbc, 0xa0, 0xac, 0x57, 0x34, 0xf1, 0xac, 0xfe, 0x38, 0x0f, 0x0d, + 0x3e, 0x71, 0x77, 0x6c, 0x5b, 0x2e, 0x46, 0x37, 0xa0, 0xe4, 0x7a, 0xba, 0x37, 0x71, 0xf9, 0xdc, + 0xcf, 0xa6, 0xcc, 0x7d, 0x9b, 0x02, 0x69, 0x1c, 0x38, 0x71, 0xf2, 0xd1, 0xc9, 0xe5, 0x13, 0x26, + 0x17, 0xfe, 0xc0, 0x42, 0xec, 0x03, 0xd7, 0x61, 0x69, 0x9f, 0xcc, 0x6f, 0x3b, 0x00, 0x2a, 0x52, + 0xa0, 0x68, 0x33, 0xe9, 0xc9, 0x33, 0x47, 0xf8, 0x83, 0xfd, 0x6d, 0xac, 0x0f, 0xdb, 0x25, 0x3a, + 0x96, 0xd4, 0x82, 0x4e, 0x41, 0x85, 0xa2, 0xf4, 0x3c, 0xb7, 0x5d, 0xbe, 0xa0, 0xac, 0x17, 0xb4, + 0x32, 0x7d, 0xde, 0x71, 0xd1, 0x36, 0xd4, 0xfa, 0x07, 0xba, 0x65, 0xe1, 0x61, 0xaf, 0x3f, 0x76, + 0xdb, 0x95, 0x0b, 0xf9, 0xf5, 0x5a, 0xb7, 0x7b, 0x25, 0x81, 0x95, 0xae, 0x84, 0x88, 0x75, 0x65, + 0x83, 0x61, 0x6d, 0x8c, 0xdd, 0x77, 0x2c, 0xcf, 0x39, 0xd2, 0xa0, 0x2f, 0x1a, 0x3a, 0x5f, 0x85, + 0xa5, 0xc8, 0x6b, 0xd4, 0x82, 0xfc, 0x21, 0x3e, 0xa2, 0x84, 0xad, 0x6a, 0xe4, 0x27, 0xba, 0x01, + 0xc5, 0x07, 0xfa, 0x70, 0x82, 0x29, 0xdd, 0x6a, 0xdd, 0xf3, 0xd1, 0x31, 0x09, 0xfb, 0xdd, 0x71, + 0x07, 0xf7, 0x6c, 0xd7, 0x24, 0x04, 0xd3, 0x18, 0xf4, 0xab, 0xb9, 0xcf, 0x28, 0xea, 0xaf, 0x28, + 0xb0, 0x4a, 0x67, 0xc3, 0x47, 0x71, 0x17, 0xe1, 0x3d, 0x99, 0x38, 0xb9, 0x30, 0x71, 0x3a, 0x50, + 0xe1, 0x5f, 0xc5, 0x18, 0xb0, 0xaa, 0x89, 0x67, 0xf5, 0xbb, 0x39, 0x68, 0x89, 0x25, 0xf0, 0xc7, + 0x5f, 0x85, 0x62, 0xdf, 0x9e, 0x58, 0x1e, 0x9d, 0x40, 0x43, 0x63, 0x0f, 0xe8, 0x59, 0xa8, 0xfb, + 0x34, 0xb6, 0xf4, 0x11, 0xfb, 0xe0, 0xaa, 0xe6, 0xd3, 0xfd, 0xae, 0x3e, 0xc2, 0x99, 0xf8, 0xe5, + 0x02, 0xd4, 0xc6, 0xba, 0xe3, 0x99, 0x21, 0x7e, 0x97, 0x9b, 0xa6, 0xb1, 0x3b, 0x19, 0xc1, 0xa4, + 0xbf, 0x76, 0x74, 0xf7, 0x70, 0x6b, 0x93, 0x73, 0x49, 0xa8, 0x0d, 0x7d, 0x1a, 0x8a, 0x43, 0xfc, + 0x00, 0x0f, 0x29, 0x93, 0x34, 0xbb, 0xcf, 0x26, 0xb2, 0x01, 0xff, 0xe8, 0xdb, 0x04, 0x50, 0x63, + 0xf0, 0xea, 0xef, 0x2b, 0xb0, 0xf6, 0xb6, 0xeb, 0x9a, 0x03, 0x2b, 0x46, 0x92, 0x35, 0x28, 0x59, + 0xb6, 0x81, 0xb7, 0x36, 0x29, 0x4d, 0xf2, 0x1a, 0x7f, 0x42, 0xa7, 0xa1, 0x3a, 0xc6, 0xd8, 0xe9, + 0x39, 0xf6, 0xd0, 0xa7, 0x48, 0x85, 0x34, 0x68, 0xf6, 0x10, 0xa3, 0x6d, 0x58, 0x76, 0x23, 0x1d, + 0xb1, 0x15, 0xa8, 0x75, 0x5f, 0x98, 0x36, 0x29, 0x01, 0xad, 0xc5, 0xf1, 0xd5, 0xaf, 0xe7, 0x60, + 0x45, 0xc0, 0xb1, 0xd9, 0x92, 0xdf, 0x64, 0xd1, 0x5c, 0x3c, 0x10, 0x13, 0x64, 0x0f, 0x59, 0x16, + 0x4d, 0xac, 0x76, 0x5e, 0x5e, 0xed, 0x2c, 0x72, 0x29, 0xb2, 0x94, 0xc5, 0xf8, 0x52, 0x9e, 0x87, + 0x1a, 0x7e, 0x34, 0x36, 0x1d, 0xdc, 0x23, 0xfb, 0x98, 0xae, 0x56, 0x41, 0x03, 0xd6, 0xb4, 0x63, + 0x8e, 0x64, 0x61, 0x55, 0x9e, 0x43, 0x58, 0xa9, 0x3f, 0x52, 0xe0, 0x64, 0x6c, 0xa5, 0xb8, 0xfc, + 0xdb, 0x81, 0x16, 0xfd, 0xf6, 0x80, 0x36, 0x44, 0x12, 0x12, 0xa2, 0xaf, 0x4f, 0x27, 0x7a, 0x80, + 0xa0, 0xc5, 0x7a, 0x90, 0x26, 0x9a, 0x9b, 0x67, 0xa2, 0x23, 0x38, 0xf9, 0x2e, 0xf6, 0xf8, 0x10, + 0xe4, 0x1d, 0x5e, 0x68, 0x97, 0x87, 0x85, 0x6d, 0x2e, 0x2a, 0x6c, 0xd5, 0x3f, 0x0d, 0xb6, 0x33, + 0x1d, 0x6c, 0xcb, 0xda, 0xb7, 0xd1, 0x19, 0xa8, 0x0a, 0x10, 0xce, 0x1d, 0x41, 0x03, 0xfa, 0x2c, + 0x14, 0xc9, 0x5c, 0x19, 0x6b, 0x34, 0xbb, 0xcf, 0xa5, 0x7d, 0x97, 0xd4, 0xab, 0xc6, 0x30, 0xd0, + 0x2d, 0x68, 0xba, 0x9e, 0xee, 0x78, 0xbd, 0x31, 0x97, 0x6e, 0x94, 0x85, 0x32, 0x08, 0xc1, 0x06, + 0x45, 0xf3, 0x1f, 0xd1, 0x4d, 0xa8, 0x63, 0xcb, 0x08, 0x7a, 0x29, 0x64, 0xeb, 0xa5, 0x86, 0x2d, + 0x43, 0xf4, 0x11, 0xac, 0x4f, 0x71, 0x9e, 0xf5, 0xf9, 0x0d, 0x05, 0xda, 0xf1, 0x05, 0x5a, 0x4c, + 0x93, 0xbe, 0xce, 0xd0, 0x30, 0x5b, 0xa0, 0x19, 0x7b, 0x5d, 0x2c, 0x93, 0xc6, 0x91, 0xd4, 0x1f, + 0x2a, 0xf0, 0x4c, 0x30, 0x25, 0xfa, 0xea, 0xc9, 0x71, 0x0c, 0xba, 0x0c, 0x2d, 0xd3, 0xea, 0x0f, + 0x27, 0x06, 0xbe, 0x6f, 0x7d, 0x1e, 0xeb, 0x43, 0xef, 0xe0, 0x88, 0xae, 0x62, 0x45, 0x8b, 0xb5, + 0xab, 0xff, 0x95, 0x83, 0xb5, 0xe8, 0xcc, 0x16, 0x23, 0xd5, 0xa7, 0xa0, 0x68, 0x5a, 0xfb, 0xb6, + 0x4f, 0xa9, 0x0b, 0x53, 0x37, 0x28, 0x19, 0x8f, 0x81, 0xa3, 0x8f, 0x00, 0x09, 0x7d, 0x7f, 0x80, + 0xfb, 0x87, 0x63, 0xdb, 0xa4, 0x02, 0x8c, 0x74, 0x72, 0x33, 0xb1, 0x93, 0xe4, 0x79, 0x0b, 0xfd, + 0x2f, 0x3a, 0x61, 0x66, 0xc0, 0x72, 0x3f, 0xda, 0xde, 0xc1, 0xb0, 0x96, 0x0c, 0xfc, 0x78, 0x8d, + 0x02, 0x1b, 0x4e, 0xbf, 0x8b, 0xbd, 0x2d, 0xcb, 0xc5, 0x8e, 0x77, 0xd3, 0xb4, 0x86, 0xf6, 0xe0, + 0x9e, 0xee, 0x1d, 0x2c, 0x24, 0x34, 0x42, 0xfb, 0x3f, 0x17, 0xd9, 0xff, 0xea, 0x1f, 0x2b, 0x70, + 0x26, 0x79, 0x44, 0xbe, 0xb4, 0x1d, 0xa8, 0xec, 0x9b, 0x78, 0x68, 0x10, 0xfe, 0x51, 0x28, 0xff, + 0x88, 0x67, 0x22, 0x3c, 0xc6, 0x04, 0x98, 0xaf, 0x5f, 0x4c, 0x78, 0x08, 0x43, 0x7d, 0xdb, 0x73, + 0x4c, 0x6b, 0x70, 0xdb, 0x74, 0x3d, 0x8d, 0x61, 0x48, 0x1c, 0x93, 0x9f, 0x67, 0xc3, 0x7e, 0x4f, + 0x81, 0x73, 0xef, 0x62, 0x6f, 0x43, 0xe8, 0x21, 0xf2, 0xde, 0x74, 0x3d, 0xb3, 0xef, 0x3e, 0x6e, + 0xd3, 0x3d, 0x83, 0x35, 0xa3, 0xfe, 0xa6, 0x02, 0xe7, 0x53, 0xa7, 0xc3, 0x09, 0xc8, 0x25, 0xac, + 0xaf, 0x85, 0xd2, 0x24, 0xec, 0xfb, 0xf8, 0x68, 0x97, 0xb0, 0xc1, 0x3d, 0xdd, 0x74, 0x98, 0x84, + 0x3d, 0xb6, 0xd6, 0xf9, 0x33, 0x05, 0xce, 0xbe, 0x8b, 0xbd, 0x7b, 0xbe, 0x26, 0x7e, 0xaa, 0x34, + 0x22, 0x30, 0x92, 0x4d, 0xe0, 0xfb, 0x08, 0xa1, 0x36, 0xf5, 0x07, 0x6c, 0x59, 0x13, 0x67, 0xfc, + 0xd4, 0xc8, 0x78, 0x8e, 0xee, 0x0c, 0x49, 0x6c, 0x70, 0x01, 0xc0, 0x89, 0xa8, 0x7e, 0xbb, 0x0c, + 0xf5, 0x5d, 0x2e, 0x29, 0xa8, 0xa6, 0x8d, 0x52, 0x43, 0x49, 0x36, 0x9a, 0x24, 0xeb, 0x2b, 0xc9, + 0x20, 0xdb, 0x84, 0x86, 0x8b, 0xf1, 0xe1, 0xdc, 0x5a, 0xb5, 0x4e, 0xb0, 0x84, 0x42, 0xbc, 0x0b, + 0xcb, 0x13, 0x8b, 0xba, 0x00, 0xd8, 0xe0, 0x9f, 0xc0, 0x48, 0x9f, 0x45, 0xcc, 0xc6, 0x51, 0xd1, + 0x7b, 0xdc, 0x8f, 0x93, 0x7a, 0x2b, 0x66, 0xec, 0x2d, 0x8a, 0x88, 0xde, 0x87, 0x96, 0xe1, 0xd8, + 0xe3, 0x31, 0x36, 0x7a, 0xae, 0xdf, 0x59, 0x29, 0x6b, 0x67, 0x1c, 0x53, 0x74, 0x76, 0x0d, 0x56, + 0xa2, 0xb3, 0xdd, 0x32, 0x88, 0x3d, 0x49, 0xb8, 0x2c, 0xe9, 0x15, 0x7a, 0x09, 0x96, 0xe3, 0xf0, + 0x15, 0x0a, 0x1f, 0x7f, 0x81, 0x5e, 0x06, 0x14, 0x99, 0x2c, 0x01, 0xaf, 0x32, 0xf0, 0xf0, 0x64, + 0x38, 0x38, 0x8d, 0x33, 0x84, 0xc1, 0x81, 0x81, 0xf3, 0x37, 0x12, 0xf8, 0xfb, 0x44, 0xff, 0x86, + 0xc0, 0xdd, 0x76, 0x2d, 0x2b, 0x29, 0xc2, 0xdd, 0xb9, 0xe8, 0x15, 0x58, 0xa3, 0x9e, 0x4c, 0xef, + 0x63, 0xec, 0xd8, 0x7e, 0x7f, 0x3d, 0xd3, 0x70, 0xdb, 0x75, 0x46, 0x0d, 0xfa, 0xf6, 0xcb, 0xd8, + 0xb1, 0xa5, 0x19, 0x3c, 0x84, 0xb6, 0xd8, 0x8a, 0x3d, 0xba, 0x5f, 0x7a, 0x0f, 0xb0, 0xe3, 0x9a, + 0xb6, 0xe5, 0xb6, 0x1b, 0x74, 0x26, 0xaf, 0x27, 0xce, 0x44, 0xe6, 0xfc, 0x2b, 0xa1, 0x8d, 0xeb, + 0xee, 0x72, 0x7c, 0xa6, 0x4c, 0xd7, 0xc6, 0x89, 0x2f, 0x3b, 0x5b, 0x70, 0x7a, 0x0a, 0x9a, 0xac, + 0x56, 0xf3, 0x4c, 0xad, 0xae, 0xca, 0x6a, 0x35, 0x2f, 0x6b, 0xcd, 0x5f, 0x57, 0x60, 0xed, 0x8b, + 0xba, 0xd7, 0x3f, 0xd8, 0x1c, 0x3d, 0x0e, 0x67, 0xfa, 0x4d, 0xa8, 0x3e, 0x10, 0x2e, 0x33, 0x53, + 0x6d, 0xcf, 0xce, 0xa4, 0x81, 0x16, 0xe0, 0xa8, 0x7f, 0xe7, 0xbb, 0xf6, 0xfe, 0xd2, 0x3c, 0x0d, + 0xb9, 0x3b, 0x2b, 0x32, 0x13, 0x91, 0x44, 0xc5, 0x98, 0x24, 0x52, 0xbf, 0x06, 0xc0, 0x3f, 0xe0, + 0x8e, 0x3b, 0x38, 0xd6, 0xdc, 0x5f, 0x85, 0x32, 0x1f, 0x91, 0x8b, 0xde, 0xd9, 0x5c, 0xed, 0x23, + 0xa8, 0x3f, 0xa9, 0x40, 0x4d, 0x7a, 0x81, 0x9a, 0x90, 0x13, 0x32, 0x35, 0x97, 0x40, 0x83, 0xdc, + 0x6c, 0x17, 0x35, 0x1f, 0x77, 0x51, 0x5f, 0x80, 0xa6, 0x49, 0x6d, 0x9f, 0x1e, 0xff, 0x72, 0xea, + 0x7e, 0x54, 0xb5, 0x06, 0x6b, 0xe5, 0xec, 0x84, 0xce, 0x41, 0xcd, 0x9a, 0x8c, 0x7a, 0xf6, 0x7e, + 0xcf, 0xb1, 0x1f, 0xba, 0xdc, 0xd7, 0xad, 0x5a, 0x93, 0xd1, 0x07, 0xfb, 0x9a, 0xfd, 0xd0, 0x0d, + 0xdc, 0xa8, 0xd2, 0xdc, 0x6e, 0xd4, 0x39, 0xa8, 0x8d, 0xf4, 0x47, 0xa4, 0xdf, 0x9e, 0x35, 0x19, + 0x51, 0x47, 0x38, 0xaf, 0x55, 0x47, 0xfa, 0x23, 0xcd, 0x7e, 0x78, 0x77, 0x32, 0x42, 0xeb, 0xd0, + 0x1a, 0xea, 0xae, 0xd7, 0x93, 0x3d, 0xe9, 0x0a, 0xf5, 0xa4, 0x9b, 0xa4, 0xfd, 0x9d, 0xc0, 0x9b, + 0x8e, 0x3b, 0x64, 0xd5, 0xe3, 0x3a, 0x64, 0xc6, 0x68, 0x18, 0xf4, 0x02, 0x19, 0x1d, 0x32, 0x63, + 0x34, 0x14, 0x7d, 0xbc, 0x0a, 0xe5, 0x3d, 0x6a, 0x4d, 0x4e, 0x97, 0x67, 0xb7, 0x88, 0x29, 0xc9, + 0xcc, 0x4e, 0xcd, 0x47, 0x40, 0x6f, 0x40, 0x95, 0x0a, 0x22, 0x8a, 0x5d, 0xcf, 0x88, 0x1d, 0xa0, + 0x10, 0x7c, 0x03, 0x0f, 0x3d, 0x9d, 0xe2, 0x37, 0xb2, 0xe2, 0x0b, 0x14, 0xa2, 0x52, 0xfa, 0x0e, + 0xd6, 0x3d, 0x6c, 0xdc, 0x3c, 0xda, 0xb0, 0x47, 0x63, 0x9d, 0xb2, 0x53, 0xbb, 0x49, 0xfd, 0xa2, + 0xa4, 0x57, 0xe8, 0x22, 0x34, 0xfb, 0xe2, 0xe9, 0x96, 0x63, 0x8f, 0xda, 0x4b, 0x74, 0xbf, 0x45, + 0x5a, 0xd1, 0x59, 0x00, 0x5f, 0x99, 0xe8, 0x5e, 0xbb, 0x45, 0x57, 0xb1, 0xca, 0x5b, 0xde, 0xa6, + 0x31, 0x36, 0xd3, 0xed, 0xb1, 0x68, 0x96, 0x69, 0x0d, 0xda, 0xcb, 0x74, 0xc4, 0x9a, 0x1f, 0xfe, + 0x32, 0xad, 0x01, 0x3a, 0x09, 0x65, 0xd3, 0xed, 0xed, 0xeb, 0x87, 0xb8, 0x8d, 0xe8, 0xdb, 0x92, + 0xe9, 0xde, 0xd2, 0x0f, 0xa9, 0x99, 0xcf, 0x07, 0xc3, 0x46, 0x7b, 0x85, 0xbe, 0x0a, 0x1a, 0x82, + 0xa0, 0xd8, 0xea, 0x7c, 0x41, 0x31, 0xf4, 0x22, 0x2c, 0xb9, 0x9e, 0xed, 0xe8, 0x03, 0xec, 0xab, + 0x85, 0xf6, 0x33, 0x94, 0x43, 0x9b, 0xbc, 0x99, 0x4b, 0x6d, 0xf4, 0x29, 0x38, 0x99, 0xa2, 0x47, + 0xda, 0x6b, 0x14, 0xe1, 0x99, 0x44, 0x3d, 0x80, 0xde, 0x02, 0xa0, 0xec, 0xcd, 0xa6, 0x77, 0x32, + 0xeb, 0xf4, 0xaa, 0x04, 0x89, 0xfe, 0x44, 0x6f, 0xc2, 0x19, 0xda, 0x43, 0xda, 0xf0, 0x6d, 0x3a, + 0xfc, 0x29, 0x02, 0x93, 0xa8, 0x70, 0xd4, 0xaf, 0xc1, 0x6a, 0xb0, 0x31, 0xa5, 0x7d, 0x10, 0xdf, + 0x4f, 0xca, 0xb1, 0xf6, 0xd3, 0x74, 0x0f, 0xec, 0xa7, 0x45, 0x58, 0xdb, 0xd6, 0x1f, 0xe0, 0x9f, + 0x85, 0xbb, 0x97, 0x49, 0x71, 0xdc, 0x85, 0x65, 0xea, 0xe1, 0x75, 0xa5, 0x19, 0x4d, 0x35, 0x1d, + 0xe5, 0x6d, 0x14, 0x47, 0x45, 0x6f, 0x13, 0x45, 0x83, 0xfb, 0x87, 0xf7, 0x88, 0xcf, 0xec, 0x9b, + 0x8d, 0xe7, 0x13, 0x7b, 0xda, 0x10, 0x70, 0x9a, 0x8c, 0x83, 0x34, 0xc2, 0x85, 0xf2, 0x4a, 0xf8, + 0x06, 0xe3, 0xa5, 0x19, 0xc1, 0x95, 0x60, 0x15, 0xb4, 0x66, 0x68, 0x51, 0x5c, 0xd4, 0x86, 0x32, + 0xb7, 0xf6, 0xa8, 0xcc, 0xad, 0x68, 0xfe, 0x23, 0xd2, 0x60, 0x85, 0x7d, 0xc5, 0x36, 0x17, 0x29, + 0x8c, 0x04, 0x95, 0x8c, 0x24, 0x48, 0x42, 0x0e, 0xcb, 0xa4, 0xea, 0xfc, 0x32, 0xa9, 0x0d, 0x65, + 0x2e, 0x27, 0xa8, 0x38, 0xae, 0x68, 0xfe, 0x23, 0x59, 0xf0, 0x40, 0x62, 0xd4, 0xd8, 0xc6, 0x17, + 0x0d, 0x04, 0xcf, 0x57, 0x6c, 0x75, 0xaa, 0xd8, 0xfc, 0x47, 0x2a, 0x65, 0xf1, 0x80, 0xef, 0xbb, + 0x46, 0xd6, 0x7d, 0x57, 0x71, 0xf1, 0x80, 0x6d, 0xbb, 0x88, 0x6e, 0x6d, 0xc6, 0x75, 0xeb, 0x45, + 0x88, 0x08, 0x89, 0xf6, 0x52, 0x92, 0xe8, 0x50, 0xbf, 0xad, 0x00, 0x04, 0x2b, 0x3f, 0x23, 0x60, + 0xf9, 0x1a, 0x54, 0xc4, 0x76, 0xcc, 0x18, 0x5f, 0x11, 0x08, 0x51, 0x35, 0x9e, 0x8f, 0xa8, 0x71, + 0xf5, 0x1f, 0x15, 0xa8, 0x6f, 0x12, 0x9a, 0xdf, 0xb6, 0x07, 0xd4, 0xe8, 0x78, 0x01, 0x9a, 0x0e, + 0xee, 0xdb, 0x8e, 0xd1, 0xc3, 0x96, 0xe7, 0x98, 0x98, 0x05, 0xb8, 0x0a, 0x5a, 0x83, 0xb5, 0xbe, + 0xc3, 0x1a, 0x09, 0x18, 0xd1, 0xcb, 0xae, 0xa7, 0x8f, 0xc6, 0xbd, 0x7d, 0x22, 0xff, 0x59, 0x12, + 0xa6, 0x21, 0x5a, 0xa9, 0xf8, 0x7f, 0x16, 0xea, 0x01, 0x98, 0x67, 0xd3, 0xf1, 0x0b, 0x5a, 0x4d, + 0xb4, 0xed, 0xd8, 0xe8, 0x79, 0x68, 0xd2, 0x45, 0xef, 0x0d, 0xed, 0x41, 0x6f, 0xac, 0x7b, 0x07, + 0xdc, 0x1e, 0xa9, 0x1b, 0x7c, 0x5a, 0x84, 0x9d, 0xc2, 0x50, 0xae, 0xf9, 0x31, 0xe6, 0x16, 0x89, + 0x80, 0xda, 0x36, 0x3f, 0xc6, 0xea, 0x37, 0x15, 0x68, 0x70, 0x03, 0x66, 0x5b, 0x64, 0xf9, 0x68, + 0x1e, 0x80, 0x05, 0xab, 0xe8, 0x6f, 0xf4, 0xb9, 0x70, 0x04, 0xf8, 0x62, 0xca, 0xc6, 0xa4, 0xdd, + 0x50, 0x23, 0x3b, 0x64, 0xbd, 0x64, 0x89, 0x92, 0x7c, 0x9d, 0x50, 0x55, 0xf7, 0xf4, 0xbb, 0xb6, + 0xc1, 0x42, 0xd2, 0x6d, 0x28, 0xeb, 0x86, 0xe1, 0x60, 0xd7, 0xe5, 0x33, 0xf1, 0x1f, 0xc9, 0x1b, + 0x5f, 0x6c, 0x33, 0xd9, 0xe5, 0x3f, 0xa2, 0x37, 0x22, 0x69, 0xac, 0x5a, 0x57, 0x9d, 0x36, 0x53, + 0xee, 0xcb, 0x07, 0xa9, 0xae, 0xbf, 0xca, 0x41, 0x93, 0x73, 0xf2, 0x4d, 0x6e, 0x67, 0x4c, 0x67, + 0xb4, 0x4d, 0xa8, 0xef, 0x07, 0x7b, 0x71, 0x7a, 0x8c, 0x52, 0xde, 0xb4, 0x21, 0xac, 0x59, 0x1c, + 0x17, 0xb6, 0x75, 0x0a, 0x0b, 0xda, 0x3a, 0xc5, 0xf9, 0xe5, 0x4a, 0xdc, 0xfe, 0x2d, 0x25, 0xd8, + 0xbf, 0xea, 0x57, 0xa1, 0x26, 0x75, 0x40, 0x65, 0x27, 0x0b, 0x02, 0x72, 0xba, 0xf9, 0x8f, 0xe8, + 0x46, 0x60, 0xf7, 0x31, 0x82, 0x9d, 0x4e, 0x9c, 0x4d, 0xc4, 0xe4, 0x53, 0xff, 0x53, 0x81, 0x12, + 0xef, 0xfb, 0x3c, 0xd4, 0xf8, 0x5e, 0xa3, 0xf6, 0x30, 0xeb, 0x1f, 0x78, 0x13, 0x31, 0x88, 0x1f, + 0xdf, 0x66, 0x3b, 0x05, 0x95, 0xc8, 0x36, 0x2b, 0x73, 0x81, 0xed, 0xbf, 0x92, 0xf6, 0x16, 0x79, + 0x45, 0xb6, 0x15, 0xf1, 0x43, 0x87, 0xf6, 0x40, 0x64, 0x1f, 0xd9, 0x03, 0x99, 0xf6, 0x08, 0x8f, + 0x6c, 0xe7, 0x88, 0xe1, 0x30, 0x33, 0x1e, 0x58, 0x13, 0xdd, 0x8d, 0xff, 0xac, 0xd0, 0x64, 0x90, + 0x86, 0xfb, 0xf6, 0x03, 0xec, 0x1c, 0x3d, 0x8e, 0xf8, 0xf9, 0xeb, 0xd2, 0x9e, 0xc8, 0xec, 0xa7, + 0x0a, 0x14, 0xf4, 0x7a, 0xb0, 0x56, 0xf9, 0xe4, 0xa0, 0x9a, 0x2c, 0xff, 0x39, 0x47, 0x07, 0x6b, + 0xf6, 0x03, 0x85, 0xe6, 0x03, 0xc2, 0x1f, 0x74, 0x7c, 0xc3, 0xe5, 0xb1, 0xf8, 0x73, 0xea, 0xbf, + 0x28, 0x70, 0x2a, 0x85, 0xca, 0xbb, 0xdd, 0xa7, 0x44, 0xe7, 0xcf, 0x41, 0x45, 0x04, 0x77, 0xf2, + 0x19, 0x83, 0x3b, 0x02, 0x43, 0xfd, 0x1d, 0x96, 0xa3, 0x4a, 0x20, 0xf3, 0x6e, 0xf7, 0x89, 0x11, + 0x3a, 0x1a, 0xb4, 0xcd, 0x27, 0x04, 0x6d, 0xff, 0x55, 0x81, 0x4e, 0x10, 0x20, 0x75, 0x6f, 0x1e, + 0x2d, 0x9e, 0xe0, 0x7c, 0x3c, 0x3e, 0xfd, 0x6b, 0x22, 0x03, 0x47, 0x04, 0x6a, 0x46, 0x6f, 0xdc, + 0xcf, 0xbf, 0x8d, 0x69, 0x06, 0x26, 0xfe, 0x51, 0x8b, 0xed, 0xd4, 0x8e, 0xc4, 0x02, 0x2c, 0x0b, + 0x17, 0x2c, 0xf0, 0xdf, 0x32, 0x96, 0xbd, 0x15, 0x8e, 0x92, 0x3e, 0x7d, 0x32, 0xca, 0xb9, 0xc1, + 0x03, 0x9e, 0x1b, 0x2c, 0x44, 0x72, 0x83, 0xbc, 0x5d, 0xb5, 0x29, 0x2b, 0xc4, 0x3e, 0xe1, 0xc9, + 0x11, 0xed, 0xbb, 0x0a, 0xb4, 0xf9, 0x38, 0xac, 0x88, 0xc6, 0x1e, 0x8d, 0x87, 0xd8, 0xc3, 0xc6, + 0xd3, 0x08, 0x55, 0xfd, 0x79, 0x0e, 0x5a, 0xb2, 0x85, 0x44, 0x8d, 0x9c, 0x4f, 0x43, 0x91, 0x46, + 0x04, 0xf9, 0x2c, 0x32, 0x48, 0x0c, 0x06, 0x4f, 0x94, 0x2b, 0x75, 0x55, 0x76, 0x5c, 0xdf, 0x06, + 0xe2, 0x8f, 0x81, 0xa9, 0x96, 0x3f, 0x8e, 0xa9, 0x76, 0x06, 0xaa, 0x44, 0xf9, 0xd9, 0x13, 0xd2, + 0x33, 0x2b, 0xe8, 0x08, 0x1a, 0xd0, 0x9b, 0x50, 0x62, 0x95, 0x73, 0x3c, 0x83, 0xfe, 0x62, 0xb4, + 0x73, 0x5e, 0x57, 0x27, 0xe5, 0xba, 0x68, 0x83, 0xc6, 0xd1, 0xc8, 0x6a, 0x8d, 0x1d, 0x7b, 0x40, + 0xad, 0x3a, 0xa2, 0x19, 0x8b, 0x9a, 0x78, 0x26, 0x76, 0xa7, 0x3d, 0xde, 0xda, 0xe4, 0x5a, 0x91, + 0xfe, 0x56, 0x0d, 0x58, 0x0b, 0x22, 0x28, 0x6c, 0xa2, 0x0b, 0xb0, 0xfc, 0x1a, 0x94, 0xc6, 0x43, + 0x3d, 0x60, 0x76, 0xfe, 0xa4, 0x7e, 0x27, 0x07, 0x4b, 0xdb, 0x47, 0x56, 0x5f, 0x8e, 0x24, 0x9e, + 0x15, 0x91, 0xd1, 0x9e, 0x69, 0x44, 0x0d, 0x3f, 0x03, 0xdd, 0x84, 0xfa, 0xf8, 0x90, 0xc7, 0x10, + 0x86, 0xf6, 0x60, 0x2a, 0x3b, 0xc8, 0x56, 0x15, 0x8c, 0x0f, 0xa9, 0xcf, 0x77, 0xdb, 0x1e, 0x04, + 0xf1, 0xc0, 0xfc, 0xdc, 0xf1, 0x40, 0x11, 0xaa, 0x29, 0xcc, 0x19, 0xaa, 0x99, 0x11, 0xa3, 0x54, + 0x7f, 0xad, 0x00, 0x2b, 0x12, 0x29, 0x5c, 0xa9, 0xb8, 0x89, 0x93, 0x4e, 0x91, 0x49, 0x47, 0x8b, + 0x87, 0xfc, 0x00, 0x12, 0x31, 0xa0, 0x18, 0x61, 0x6b, 0xa2, 0x6d, 0xc7, 0x9e, 0x69, 0xdd, 0xbe, + 0x20, 0xe2, 0x62, 0xd8, 0x60, 0xa6, 0x1a, 0x8b, 0x43, 0x37, 0x44, 0x2b, 0x35, 0xd5, 0xde, 0x04, + 0x10, 0xe4, 0x9e, 0xc3, 0x8a, 0x75, 0x39, 0xb5, 0xdd, 0x58, 0x9d, 0x53, 0x29, 0x9e, 0x56, 0x7b, + 0x56, 0xd2, 0x68, 0x64, 0xd9, 0xcb, 0x51, 0x81, 0x67, 0xa0, 0xe7, 0xa0, 0x11, 0x88, 0x48, 0x02, + 0x53, 0x89, 0xc9, 0x4d, 0x03, 0xf5, 0xa0, 0x21, 0x98, 0x87, 0xd6, 0x2e, 0x30, 0x67, 0xfe, 0xd5, + 0xe4, 0x65, 0x8a, 0x93, 0x5b, 0x96, 0x20, 0x3c, 0x43, 0x52, 0x77, 0xa5, 0xa6, 0x0e, 0x86, 0xe5, + 0x18, 0x48, 0x42, 0x36, 0xe4, 0xd5, 0x70, 0x91, 0xc1, 0xf3, 0xb3, 0xc6, 0xe7, 0x12, 0x46, 0xe4, + 0x4c, 0x7e, 0x9c, 0x87, 0xb6, 0xb4, 0xff, 0x7e, 0xf6, 0x9e, 0x51, 0x4a, 0x94, 0x25, 0xff, 0xd8, + 0xa2, 0x2c, 0x85, 0xc7, 0xe1, 0x0d, 0x15, 0x93, 0xb2, 0x01, 0x62, 0x8b, 0x96, 0xe6, 0xdc, 0xa2, + 0x51, 0xc5, 0x5c, 0x9e, 0xad, 0x98, 0x2b, 0x71, 0x1b, 0xf7, 0x1f, 0x8a, 0xd0, 0x0c, 0x96, 0xee, + 0xde, 0x50, 0xb7, 0x52, 0xf7, 0xf0, 0x7d, 0x68, 0xba, 0xa1, 0xa5, 0xe5, 0x8b, 0xf5, 0x72, 0xb2, + 0xea, 0x48, 0xe1, 0x07, 0x2d, 0xd2, 0x09, 0x95, 0xa0, 0x34, 0x1e, 0x47, 0xb3, 0x11, 0x7c, 0xdb, + 0x33, 0x2d, 0x65, 0x8e, 0x30, 0x7a, 0x09, 0x10, 0x57, 0x2c, 0x3d, 0xd3, 0xea, 0xb9, 0xb8, 0x6f, + 0x5b, 0x06, 0x53, 0x39, 0x45, 0xad, 0xc5, 0xdf, 0x6c, 0x59, 0xdb, 0xac, 0x1d, 0x7d, 0x1a, 0x0a, + 0xde, 0xd1, 0x98, 0xb9, 0x59, 0xcd, 0x14, 0x1f, 0x24, 0x98, 0xd9, 0xce, 0xd1, 0x18, 0x6b, 0x14, + 0xc1, 0xaf, 0x18, 0xf6, 0x1c, 0xdd, 0x5f, 0x8b, 0x82, 0x26, 0xb5, 0xc8, 0xb1, 0xaf, 0x72, 0x38, + 0xf6, 0x45, 0xe5, 0x92, 0xd8, 0xe9, 0x9e, 0x37, 0xe4, 0x64, 0x96, 0xf6, 0xff, 0x8e, 0x37, 0x24, + 0x9f, 0xe9, 0xd9, 0x9e, 0x3e, 0x64, 0xd2, 0xad, 0xca, 0x55, 0x26, 0x69, 0xa1, 0xd2, 0x2d, 0x50, + 0x99, 0x70, 0x3c, 0x95, 0x79, 0x0d, 0x56, 0xfb, 0xc3, 0x89, 0xeb, 0x61, 0xc7, 0xb4, 0x06, 0xbd, + 0x43, 0x7c, 0xd4, 0xa3, 0x4c, 0x4d, 0xa3, 0x78, 0x79, 0x0d, 0x05, 0xef, 0xde, 0xc7, 0x47, 0x94, + 0x63, 0xd1, 0x3a, 0xb4, 0x46, 0xfa, 0x23, 0x91, 0xdb, 0xa5, 0xf3, 0xaa, 0xb3, 0xa0, 0xda, 0x48, + 0x7f, 0xc4, 0x57, 0x8d, 0x4e, 0xee, 0x0a, 0xac, 0x8c, 0x1d, 0xbc, 0x8f, 0x9d, 0x30, 0x70, 0x83, + 0x02, 0x2f, 0xb3, 0x57, 0x11, 0x78, 0xdd, 0xd2, 0x87, 0x47, 0x1f, 0xe3, 0x9e, 0x83, 0xdd, 0xc9, + 0xd0, 0x63, 0x6e, 0x71, 0x93, 0x12, 0x6e, 0x99, 0xbf, 0xd2, 0xe8, 0x1b, 0xea, 0x20, 0x4b, 0xf0, + 0x72, 0xa6, 0x99, 0xe5, 0x3d, 0x7c, 0x78, 0x29, 0xcf, 0xbc, 0xea, 0x6b, 0xc4, 0x16, 0x65, 0x03, + 0xf6, 0xa0, 0xfe, 0x47, 0x0e, 0x96, 0x63, 0x5c, 0x97, 0xca, 0xcd, 0xd3, 0x63, 0xdb, 0xb3, 0x94, + 0xd1, 0xdb, 0x50, 0xe3, 0x9b, 0x7b, 0x2e, 0xf1, 0x00, 0x0c, 0xe9, 0xf6, 0x14, 0x99, 0x55, 0x7c, + 0x6c, 0x32, 0xab, 0x74, 0xac, 0xc8, 0x70, 0x32, 0x97, 0xab, 0xdf, 0xcc, 0xc1, 0x6a, 0x58, 0x4e, + 0xb0, 0xf5, 0x4b, 0xa5, 0xef, 0x1b, 0xe1, 0x50, 0xe0, 0xfa, 0xac, 0xad, 0xa8, 0xbb, 0x87, 0x21, + 0xd3, 0xe5, 0x66, 0xcc, 0xd1, 0xbd, 0x98, 0x4d, 0xce, 0x04, 0x86, 0xbd, 0xfc, 0x39, 0x85, 0xf0, + 0xa6, 0x3d, 0xae, 0x9c, 0x50, 0x7f, 0x5b, 0x81, 0x93, 0x31, 0x53, 0x73, 0x31, 0xd7, 0x64, 0x03, + 0xca, 0x6c, 0x97, 0xf8, 0x02, 0xf5, 0xd2, 0x8c, 0xe9, 0x04, 0xd4, 0xd7, 0x7c, 0x4c, 0x75, 0x1b, + 0xd6, 0x7c, 0x17, 0x26, 0x58, 0xda, 0x3b, 0xd8, 0xd3, 0xa7, 0xc4, 0xd7, 0xce, 0x43, 0x8d, 0xc5, + 0x5f, 0xd8, 0xf6, 0x64, 0xf5, 0x43, 0xb0, 0x27, 0xd2, 0x2d, 0xea, 0x0f, 0x73, 0xb0, 0x4a, 0x6d, + 0xff, 0x68, 0x25, 0x44, 0x96, 0xea, 0x24, 0x55, 0xd8, 0x51, 0xc4, 0x66, 0x62, 0xdf, 0x56, 0xd5, + 0x42, 0x6d, 0xe8, 0xfd, 0x78, 0x2e, 0x26, 0x25, 0x1e, 0x1b, 0x94, 0x64, 0x6d, 0xea, 0x9e, 0x4e, + 0x2b, 0xb2, 0xa2, 0x49, 0x98, 0x40, 0x84, 0x16, 0x8e, 0x27, 0x42, 0x2f, 0x41, 0x8b, 0x25, 0x64, + 0x7b, 0x22, 0xb0, 0x47, 0x19, 0xa4, 0xa0, 0x2d, 0xb1, 0xf6, 0x1d, 0xbf, 0x59, 0xbd, 0x0b, 0xcf, + 0x44, 0x08, 0xb3, 0x10, 0x0f, 0xa8, 0x7f, 0xa2, 0x90, 0xf5, 0x0b, 0x15, 0x0f, 0x2f, 0xe2, 0xc1, + 0x84, 0xbd, 0x92, 0x5c, 0xd4, 0x2b, 0x79, 0x0b, 0xaa, 0x16, 0x7e, 0xd8, 0x9b, 0xdb, 0xab, 0xa8, + 0x58, 0xf8, 0x21, 0xfd, 0xa5, 0xde, 0x83, 0x93, 0xb1, 0xe9, 0x2e, 0x46, 0x81, 0xbf, 0x51, 0xe0, + 0xd4, 0xa6, 0x63, 0x8f, 0x77, 0x4d, 0xc7, 0x9b, 0xe8, 0xc3, 0x70, 0x7d, 0xdc, 0xb1, 0x88, 0x90, + 0xe1, 0xc0, 0xc2, 0x7b, 0x31, 0x21, 0x73, 0x25, 0x71, 0xef, 0xc5, 0x27, 0x16, 0x13, 0x36, 0xea, + 0x4f, 0xf2, 0x49, 0x1f, 0xe0, 0xab, 0xa1, 0xe9, 0x56, 0x70, 0x96, 0x20, 0x4b, 0x62, 0x2a, 0x35, + 0x7f, 0xfc, 0x54, 0x6a, 0x8a, 0xfe, 0x29, 0x3c, 0x36, 0xfd, 0x73, 0x8c, 0x0c, 0xc2, 0x3b, 0x10, + 0x4e, 0x77, 0x53, 0x43, 0x6c, 0xfe, 0x24, 0xf9, 0x9b, 0x00, 0x41, 0xc6, 0x97, 0x1f, 0x07, 0x99, + 0xd9, 0x87, 0x84, 0x42, 0x56, 0x4b, 0xe8, 0x7a, 0x6e, 0xce, 0x49, 0xce, 0xef, 0x36, 0x74, 0x92, + 0x38, 0x75, 0x31, 0xfe, 0xff, 0xbe, 0x02, 0xe7, 0xee, 0x8f, 0x0d, 0xdd, 0xc3, 0xd2, 0xae, 0x5a, + 0xbc, 0xd2, 0x56, 0x94, 0xba, 0xe6, 0xa6, 0x96, 0xba, 0x4a, 0x63, 0xba, 0xbc, 0xd4, 0x55, 0xfd, + 0xa9, 0x98, 0x51, 0xac, 0x5a, 0x7d, 0x91, 0x19, 0x75, 0xa0, 0xf2, 0x80, 0x77, 0xe8, 0x1f, 0x73, + 0xf2, 0x9f, 0x43, 0x09, 0xd9, 0xfc, 0xbc, 0x09, 0xd9, 0x7b, 0xb0, 0x12, 0xaf, 0xe4, 0xf7, 0x19, + 0x7a, 0x66, 0x3f, 0x28, 0x56, 0xa7, 0xef, 0xaa, 0x1f, 0xc0, 0x29, 0x0d, 0xbb, 0xd8, 0x32, 0x42, + 0xe4, 0x39, 0xfe, 0xb7, 0xab, 0x0e, 0x74, 0x92, 0x3a, 0x5c, 0xcc, 0x7e, 0x60, 0xc2, 0x9e, 0x58, + 0xda, 0x2c, 0xe0, 0x98, 0xe7, 0xb2, 0x85, 0x8e, 0xe4, 0xa9, 0x1f, 0x41, 0xe7, 0x8e, 0xee, 0x1c, + 0xfa, 0xa1, 0x83, 0x4d, 0x96, 0xea, 0x5f, 0x64, 0x05, 0xcf, 0x43, 0x4d, 0x36, 0xd3, 0x23, 0x27, + 0x41, 0x0c, 0x57, 0xdd, 0x17, 0x45, 0x30, 0x1a, 0x71, 0x0d, 0xb0, 0xd5, 0xc7, 0xb7, 0xed, 0xfe, + 0x21, 0xb1, 0x15, 0x3d, 0x76, 0xd8, 0x8e, 0xdb, 0x8a, 0xec, 0x49, 0x3a, 0x12, 0x97, 0x0b, 0x1d, + 0x89, 0x9b, 0x71, 0xe2, 0x55, 0xfd, 0xef, 0x1c, 0xac, 0xbd, 0x3d, 0xf4, 0xb0, 0x13, 0xa8, 0xf4, + 0x79, 0x2c, 0x94, 0xc0, 0x60, 0xc8, 0x1d, 0xcf, 0x60, 0xc8, 0x90, 0xd9, 0x48, 0x32, 0x71, 0x0a, + 0xc7, 0x36, 0x71, 0x36, 0x00, 0xc6, 0x8e, 0x3d, 0xc6, 0x8e, 0x67, 0x62, 0x5f, 0xc0, 0x66, 0xaa, + 0x5e, 0x97, 0xd0, 0x44, 0x11, 0x68, 0x49, 0x2a, 0x02, 0x3d, 0x03, 0x55, 0x7f, 0x13, 0xb2, 0x7a, + 0xe7, 0xaa, 0x16, 0x34, 0xa8, 0x5f, 0x86, 0xd6, 0xbb, 0xfd, 0x0d, 0xdb, 0xda, 0x37, 0x9d, 0x91, + 0x4f, 0xe0, 0x58, 0x80, 0x4b, 0x49, 0x08, 0x70, 0x45, 0x03, 0x65, 0xb9, 0x58, 0xa0, 0x4c, 0x3d, + 0x84, 0x65, 0xa9, 0xef, 0xc5, 0x76, 0xc2, 0x79, 0xa8, 0x0d, 0xfa, 0xbd, 0x7d, 0xd3, 0x32, 0x69, + 0x29, 0x4e, 0x8e, 0x26, 0x18, 0x60, 0xd0, 0xbf, 0xc5, 0x5b, 0xd4, 0xef, 0x28, 0x70, 0x5a, 0xc3, + 0x63, 0xdb, 0xf1, 0xfc, 0x1a, 0x82, 0x1d, 0xef, 0x8e, 0x3b, 0x58, 0x48, 0xc2, 0xde, 0x80, 0xc2, + 0xc8, 0x1d, 0xa4, 0x26, 0xf3, 0x88, 0x9c, 0x09, 0x0d, 0xa6, 0x51, 0x70, 0xf5, 0x2f, 0x15, 0x58, + 0xf5, 0xd3, 0x1c, 0x21, 0x7b, 0x2f, 0xcc, 0xf4, 0x4a, 0xac, 0xd6, 0x76, 0xca, 0xf1, 0xdc, 0x93, + 0x50, 0x36, 0xf6, 0x98, 0xb1, 0x93, 0xa7, 0x92, 0xb5, 0x64, 0xec, 0x51, 0x3b, 0xe7, 0x45, 0x58, + 0x92, 0x16, 0x8b, 0x02, 0x30, 0x87, 0x48, 0x0a, 0x5d, 0x24, 0x1e, 0xbb, 0x2d, 0x26, 0x94, 0x60, + 0x7c, 0x11, 0xda, 0x9c, 0x33, 0x3e, 0x18, 0x63, 0x47, 0xa7, 0x9c, 0xe9, 0x4f, 0xfe, 0x35, 0xff, + 0x14, 0x96, 0x32, 0xe5, 0xbc, 0x5a, 0x34, 0xbd, 0xc1, 0x8f, 0x62, 0xa9, 0x7f, 0xaf, 0xc0, 0x85, + 0x68, 0xcf, 0xf7, 0x78, 0xd8, 0xff, 0x31, 0x9c, 0x49, 0xa7, 0x59, 0x83, 0x5c, 0x90, 0x35, 0x58, + 0x30, 0x05, 0x22, 0xe7, 0x28, 0x0a, 0xe1, 0x1c, 0x85, 0xfa, 0xbd, 0x3c, 0xb4, 0xee, 0x39, 0x98, + 0x95, 0x5a, 0xfa, 0xb4, 0x39, 0x03, 0x55, 0x1e, 0x85, 0xe1, 0xf2, 0xa8, 0xaa, 0x05, 0x0d, 0x68, + 0x15, 0x8a, 0x1f, 0xda, 0x41, 0x6d, 0x36, 0x7b, 0x90, 0x24, 0x66, 0x3e, 0x24, 0x31, 0xb3, 0x9c, + 0xa9, 0x8d, 0x4a, 0xa7, 0x62, 0x82, 0x74, 0x3a, 0x23, 0x97, 0xa7, 0x97, 0xf8, 0xbe, 0x17, 0xc9, + 0xe6, 0x40, 0x40, 0x96, 0x8f, 0x27, 0x20, 0x6f, 0xf9, 0x67, 0xac, 0x7b, 0xfb, 0xe6, 0x10, 0xfb, + 0x65, 0x6f, 0xe9, 0x67, 0xbb, 0x18, 0xc1, 0x6e, 0x99, 0x43, 0xac, 0xd5, 0x4c, 0xf1, 0x9b, 0x56, + 0x17, 0xd8, 0x63, 0x26, 0x3c, 0xab, 0xd9, 0x85, 0x9e, 0x8f, 0xa3, 0xde, 0x80, 0x9a, 0x3e, 0xf1, + 0xec, 0xad, 0x4d, 0x4d, 0xb7, 0x06, 0xb4, 0xe8, 0x62, 0x0f, 0x0f, 0x4c, 0xcb, 0x3f, 0xdf, 0x4c, + 0x1f, 0x50, 0x0b, 0xf2, 0xd8, 0xf2, 0x45, 0x14, 0xf9, 0xa9, 0x3a, 0xb0, 0x1a, 0x5a, 0xc1, 0x6c, + 0xb6, 0x7c, 0x24, 0xe6, 0x9a, 0x4b, 0x3c, 0x95, 0xee, 0xd3, 0x98, 0xef, 0x53, 0xf1, 0xac, 0xfe, + 0x61, 0x01, 0x1a, 0x3f, 0xf7, 0x6c, 0xf3, 0x59, 0x28, 0xce, 0xcd, 0x2f, 0x0c, 0x63, 0x41, 0x4e, + 0x41, 0x4d, 0xc8, 0x79, 0x2e, 0x0d, 0xc1, 0x16, 0xb4, 0x9c, 0x47, 0x14, 0x6e, 0x9d, 0x71, 0x4e, + 0xcf, 0x21, 0xac, 0x43, 0xa3, 0xa9, 0x69, 0x3e, 0x8d, 0xc4, 0x62, 0x5a, 0x88, 0xdf, 0x76, 0xa0, + 0xe5, 0xb0, 0xc5, 0x0c, 0x0e, 0xe6, 0xd4, 0xa7, 0x44, 0x7a, 0x92, 0x98, 0x4e, 0x5b, 0x72, 0x42, + 0xcf, 0xae, 0xda, 0x87, 0x67, 0xbe, 0x30, 0xc1, 0xce, 0xd1, 0x93, 0x94, 0x33, 0xea, 0xff, 0xe4, + 0x60, 0x55, 0x14, 0x3a, 0xb3, 0x61, 0xa8, 0xcd, 0x8a, 0xfa, 0xd0, 0x0c, 0x34, 0x3b, 0x8d, 0x91, + 0x32, 0x89, 0xff, 0xb9, 0xc4, 0x2f, 0x4a, 0xea, 0x22, 0x68, 0x24, 0x4e, 0x15, 0xcb, 0x5e, 0x35, + 0xc6, 0x72, 0x1b, 0x1a, 0xc3, 0x4a, 0x30, 0x08, 0xbd, 0xde, 0x85, 0xd6, 0x43, 0x31, 0x4d, 0xfb, + 0xd6, 0x31, 0x46, 0x22, 0x8a, 0x78, 0xdb, 0xfc, 0x18, 0xf3, 0xa3, 0xb9, 0xe3, 0x68, 0x7b, 0xe7, + 0x2d, 0x40, 0xf1, 0x69, 0xcd, 0x73, 0x7e, 0xa8, 0xb3, 0x09, 0x6b, 0xc9, 0xc3, 0xcd, 0x75, 0x0a, + 0xe9, 0x1b, 0x79, 0x58, 0x0a, 0x98, 0x9b, 0x91, 0x7c, 0x13, 0x6a, 0x92, 0x30, 0xe5, 0xea, 0x2f, + 0xd3, 0xde, 0x80, 0x40, 0x96, 0xa2, 0xd3, 0x50, 0x25, 0xe8, 0x3e, 0x25, 0x15, 0x76, 0x08, 0x77, + 0x88, 0x69, 0x39, 0x5a, 0x38, 0x49, 0x91, 0x8f, 0x26, 0x29, 0x2e, 0xc3, 0x32, 0x7b, 0x2d, 0x57, + 0xa7, 0x31, 0x19, 0xb2, 0x44, 0x5f, 0xdc, 0x11, 0x25, 0x6a, 0xe8, 0x4b, 0x50, 0x3f, 0xd0, 0x89, + 0xd1, 0xc5, 0xb2, 0xdf, 0xdc, 0x58, 0xbd, 0x31, 0x85, 0xe1, 0xc5, 0x97, 0x5e, 0xf9, 0x3c, 0x45, + 0xa4, 0xbf, 0xd9, 0x4a, 0xd5, 0x0e, 0x82, 0x96, 0x8e, 0x09, 0xad, 0x28, 0x40, 0xc2, 0xc1, 0xe9, + 0x37, 0xc3, 0x39, 0xcd, 0x4b, 0x99, 0xb9, 0x45, 0x5e, 0x86, 0xdf, 0xcd, 0xc1, 0x5a, 0x74, 0x93, + 0x2d, 0x66, 0x87, 0x04, 0x1b, 0x2d, 0x17, 0x92, 0xcc, 0x99, 0x6c, 0x91, 0x2d, 0x71, 0x37, 0x09, + 0xb5, 0x44, 0x76, 0xbb, 0xbe, 0x2d, 0xb2, 0x06, 0x25, 0x07, 0xeb, 0x2e, 0xbf, 0xf0, 0xa0, 0xaa, + 0xf1, 0x27, 0x9a, 0x28, 0x19, 0xda, 0x9e, 0x9f, 0xc0, 0x67, 0x0f, 0xc4, 0x8b, 0x60, 0x2c, 0x40, + 0x17, 0x86, 0xa5, 0x09, 0x9e, 0xcf, 0xb2, 0x30, 0x1a, 0x65, 0x1d, 0xfa, 0x53, 0xfd, 0x25, 0x40, + 0x94, 0x32, 0x4f, 0x4e, 0x59, 0x9d, 0x81, 0xea, 0x47, 0x64, 0x84, 0xed, 0xa1, 0xed, 0xf1, 0x62, + 0xa1, 0xa0, 0x41, 0xfd, 0x41, 0x0e, 0x96, 0xf9, 0xaa, 0x49, 0xe5, 0x18, 0xd3, 0x55, 0xf3, 0x73, + 0xd0, 0x60, 0x3b, 0x01, 0x1b, 0x8c, 0xc3, 0x73, 0xf2, 0x9d, 0x2f, 0xd8, 0xa0, 0x4c, 0xfe, 0x6a, + 0xb4, 0x92, 0xf1, 0xb8, 0xa7, 0x8d, 0x7e, 0xf6, 0x15, 0xb8, 0xea, 0x1f, 0xe5, 0x60, 0x25, 0xb4, + 0x2a, 0xff, 0xf7, 0x99, 0xf5, 0x4b, 0xb0, 0xca, 0xa5, 0x9e, 0xaf, 0x3b, 0x69, 0xad, 0x04, 0x67, + 0xdb, 0x69, 0x43, 0xcb, 0xc5, 0x0a, 0xc8, 0x94, 0x9b, 0x5c, 0xd2, 0xa6, 0xf6, 0x60, 0x79, 0xd3, + 0xb1, 0xc7, 0x4f, 0x4e, 0x79, 0x7e, 0xab, 0x08, 0x55, 0xd6, 0xfb, 0x7b, 0xf6, 0x5e, 0x80, 0xab, + 0xc8, 0xb8, 0xc7, 0x3d, 0x91, 0x39, 0x8f, 0x47, 0xf7, 0xb4, 0xcd, 0xb9, 0xb3, 0x2c, 0xb7, 0x6e, + 0x4f, 0x3c, 0xe2, 0xb3, 0xb2, 0xf3, 0x86, 0x52, 0xb5, 0xd8, 0x59, 0x80, 0xfe, 0x10, 0xeb, 0xd6, + 0x64, 0x4c, 0x5e, 0x57, 0xd9, 0x6b, 0xde, 0xb2, 0x43, 0x8f, 0x58, 0x73, 0xd3, 0x07, 0x1b, 0x9b, + 0xa6, 0x7b, 0x48, 0xb4, 0x0b, 0xb5, 0xd0, 0xf2, 0x5a, 0xfc, 0x05, 0x7a, 0xdd, 0x67, 0xcd, 0x1a, + 0x65, 0xcd, 0x17, 0x67, 0xa8, 0xc7, 0xf7, 0xec, 0xbd, 0x90, 0x53, 0x17, 0xf0, 0x66, 0x3d, 0xc4, + 0x9b, 0x34, 0xda, 0xc1, 0xaa, 0x02, 0x59, 0x9d, 0x42, 0x83, 0x9d, 0xa4, 0xf0, 0x1b, 0x69, 0xa9, + 0x82, 0x30, 0x5b, 0x9b, 0x8b, 0x98, 0xad, 0x4b, 0xc7, 0x30, 0x5b, 0xc3, 0x35, 0x14, 0x2d, 0xc6, + 0xb6, 0xa2, 0x86, 0x42, 0xfd, 0xad, 0x1c, 0x34, 0x84, 0x06, 0x23, 0x3b, 0x32, 0x85, 0x19, 0xd3, + 0xf6, 0x7b, 0x16, 0x86, 0x0c, 0x62, 0x78, 0xa5, 0x50, 0x0c, 0x4f, 0xc8, 0x8a, 0xf2, 0x62, 0xb2, + 0xa2, 0x12, 0x5a, 0x8f, 0xb0, 0x0a, 0x83, 0xe3, 0xa9, 0xb0, 0x7f, 0xcf, 0x41, 0x3d, 0x18, 0x79, + 0xb7, 0xfb, 0x04, 0xa8, 0x32, 0xeb, 0xe0, 0x74, 0x40, 0xb5, 0x62, 0x32, 0xd5, 0x4a, 0x8b, 0x51, + 0xad, 0x3c, 0x9d, 0x8b, 0x2b, 0x09, 0x5c, 0x1c, 0x26, 0x6d, 0xf5, 0x78, 0xa4, 0xfd, 0x6b, 0x85, + 0x87, 0x0c, 0x3d, 0xc7, 0x5e, 0x28, 0x89, 0xf7, 0x19, 0x28, 0x93, 0x76, 0x9d, 0x7b, 0xe6, 0xcd, + 0x38, 0x1a, 0xbb, 0x93, 0xa7, 0xbf, 0xc1, 0xa0, 0x34, 0x1f, 0x1c, 0xbd, 0x06, 0xa5, 0xb1, 0xee, + 0xe8, 0xa3, 0xd4, 0x03, 0x09, 0x49, 0x3b, 0x8a, 0xa3, 0xa8, 0x08, 0x5a, 0x5f, 0xf0, 0x4d, 0x0d, + 0xff, 0x8e, 0x8e, 0x01, 0x2c, 0x4b, 0x6d, 0x8b, 0x69, 0xd6, 0xd3, 0x34, 0xc1, 0xd4, 0x63, 0xfa, + 0x8e, 0x5b, 0xe1, 0xd6, 0x64, 0x44, 0xba, 0x76, 0xd5, 0x9f, 0x94, 0xe5, 0x9a, 0x2c, 0xba, 0x5f, + 0xa7, 0x54, 0xb1, 0x78, 0x8e, 0x39, 0x18, 0x50, 0x75, 0xc5, 0xf3, 0xbc, 0xa2, 0xe1, 0x31, 0x5d, + 0xa2, 0x27, 0x55, 0x51, 0x14, 0x93, 0xab, 0x28, 0x4a, 0xf3, 0x56, 0x5b, 0xbd, 0x11, 0x16, 0x0a, + 0x73, 0x17, 0x87, 0x9c, 0x87, 0xda, 0xbe, 0x6e, 0x0e, 0x7b, 0x21, 0xd9, 0x00, 0xa4, 0x49, 0x63, + 0x9c, 0x1e, 0x16, 0x88, 0xd5, 0x68, 0x51, 0xd9, 0x29, 0xa8, 0x60, 0xcb, 0x60, 0x2f, 0x99, 0x2a, + 0x29, 0x63, 0xcb, 0x98, 0x52, 0x6f, 0x56, 0x4b, 0xa9, 0x37, 0x3b, 0x0f, 0x35, 0x07, 0x7b, 0xce, + 0x11, 0xab, 0x18, 0xa0, 0x4a, 0xa3, 0xa8, 0x01, 0x6d, 0xa2, 0xc5, 0x02, 0x09, 0xd5, 0x61, 0x8d, + 0xd9, 0xd5, 0x61, 0xcd, 0xa8, 0xe3, 0xf5, 0x3c, 0x34, 0x4c, 0x6b, 0x3c, 0x11, 0xf6, 0x0b, 0x2f, + 0x8d, 0x0a, 0x37, 0xa2, 0x8b, 0xd0, 0x64, 0xe5, 0x20, 0x02, 0xac, 0xc5, 0x4e, 0x8e, 0x87, 0x5b, + 0xd1, 0x75, 0xc8, 0x8f, 0x6d, 0x97, 0x9e, 0x08, 0xcf, 0x90, 0x18, 0x23, 0xb0, 0x92, 0x9c, 0x42, + 0x21, 0x39, 0x15, 0xd8, 0x06, 0x2b, 0xc7, 0xb3, 0x0d, 0x76, 0x52, 0xca, 0xd6, 0x56, 0x69, 0x77, + 0x6a, 0x4a, 0x77, 0xd4, 0xfc, 0xe5, 0x3d, 0x65, 0x2d, 0x6d, 0x7b, 0x66, 0x9e, 0xd2, 0xb6, 0xb5, + 0xb4, 0xd2, 0xb6, 0xe7, 0xa1, 0xc1, 0xeb, 0xd1, 0xf8, 0xb5, 0x91, 0x27, 0xd9, 0x72, 0x86, 0x1a, + 0xc9, 0x4a, 0xf0, 0x86, 0xdd, 0xd0, 0xc1, 0xf1, 0x48, 0xab, 0xfa, 0x6f, 0x8a, 0x14, 0x6f, 0xa0, + 0x92, 0x73, 0x9e, 0xcb, 0x7f, 0x32, 0x84, 0x19, 0x37, 0x22, 0x61, 0x46, 0x3f, 0xd1, 0x2a, 0x9d, + 0x8d, 0x2c, 0x84, 0xcf, 0x46, 0x86, 0x35, 0x56, 0x31, 0xa6, 0xb1, 0x62, 0x04, 0x28, 0x25, 0x10, + 0x40, 0x7d, 0x85, 0xd5, 0x42, 0x44, 0x6b, 0x96, 0xa6, 0x16, 0x89, 0x5f, 0x7e, 0x43, 0x5c, 0xd2, + 0x41, 0x44, 0x05, 0x2a, 0x43, 0xfe, 0x2e, 0x7e, 0xd8, 0x3a, 0x81, 0x00, 0x4a, 0x77, 0x6d, 0x67, + 0xa4, 0x0f, 0x5b, 0x0a, 0xaa, 0x41, 0x99, 0x9f, 0x0c, 0x69, 0xe5, 0x50, 0x03, 0xaa, 0x1b, 0x7e, + 0xf1, 0x77, 0x2b, 0x7f, 0xb9, 0x0b, 0x75, 0xb9, 0x50, 0x96, 0xe0, 0xdd, 0xc6, 0x03, 0xbd, 0x7f, + 0xd4, 0x3a, 0x81, 0x4a, 0x90, 0xbb, 0x7d, 0xad, 0xa5, 0xd0, 0xbf, 0xd7, 0x5b, 0x39, 0xfa, 0xb7, + 0xdb, 0xca, 0x5f, 0xfe, 0x3d, 0x05, 0x96, 0x63, 0x21, 0x7e, 0xd4, 0x04, 0xb8, 0x6f, 0xf9, 0x5a, + 0xb1, 0x75, 0x02, 0xd5, 0xa1, 0xe2, 0x1f, 0x0a, 0x61, 0x73, 0xd8, 0xb1, 0x29, 0x74, 0x2b, 0x87, + 0x5a, 0x50, 0x67, 0x88, 0x93, 0x7e, 0x1f, 0xbb, 0x6e, 0x2b, 0x2f, 0x5a, 0x6e, 0xe9, 0xe6, 0x70, + 0xe2, 0xe0, 0x56, 0x81, 0xcc, 0x73, 0xc7, 0xd6, 0xf0, 0x10, 0xeb, 0x2e, 0x6e, 0x15, 0x11, 0x82, + 0x26, 0x7f, 0xf0, 0x91, 0x4a, 0x52, 0x9b, 0x8f, 0x56, 0xbe, 0xfc, 0x4f, 0x4a, 0x48, 0x0f, 0x10, + 0x9a, 0x9c, 0x84, 0x95, 0xfb, 0x96, 0x81, 0xf7, 0x4d, 0x0b, 0x1b, 0xc1, 0xab, 0xd6, 0x09, 0xb4, + 0x02, 0x4b, 0x77, 0xb0, 0x33, 0xc0, 0x52, 0x63, 0x0e, 0x2d, 0x43, 0xe3, 0x8e, 0xf9, 0x48, 0x6a, + 0xca, 0xa3, 0x55, 0x68, 0x6d, 0x9b, 0xd6, 0x60, 0x28, 0x03, 0x16, 0x28, 0xb6, 0x69, 0xd9, 0x8e, + 0xd4, 0x58, 0xa4, 0x8d, 0xfa, 0x87, 0xa1, 0xc6, 0x12, 0xea, 0xc0, 0x1a, 0x25, 0xee, 0xb5, 0x4d, + 0x4c, 0xa8, 0x21, 0xbd, 0x2b, 0xa3, 0x36, 0xac, 0x6e, 0x88, 0xbd, 0x28, 0xbd, 0xa9, 0xa8, 0x85, + 0x8a, 0xd2, 0x52, 0x2e, 0xdf, 0xf7, 0x3d, 0x76, 0xc9, 0x64, 0x41, 0x15, 0x28, 0xdc, 0xb5, 0x2d, + 0x42, 0xe4, 0x1a, 0x94, 0xef, 0x61, 0xcb, 0x30, 0xad, 0x41, 0x4b, 0x21, 0x2b, 0xb0, 0x25, 0x92, + 0x3f, 0xad, 0x1c, 0x59, 0x4b, 0x42, 0x18, 0xb2, 0xce, 0xfe, 0xb2, 0xd3, 0x23, 0x3a, 0xad, 0xc2, + 0xe5, 0x4b, 0x50, 0x15, 0xea, 0x1f, 0x15, 0x41, 0xe9, 0xb5, 0x4e, 0xa0, 0x2a, 0x14, 0xef, 0xe9, + 0x13, 0x97, 0xac, 0x16, 0x40, 0x49, 0xc3, 0xee, 0x64, 0x84, 0x5b, 0xb9, 0xcb, 0x7f, 0xa0, 0xc0, + 0x4a, 0x82, 0x5a, 0x21, 0x43, 0x4f, 0xac, 0x43, 0xcb, 0x7e, 0x48, 0x48, 0xd9, 0x80, 0x2a, 0x7e, + 0x84, 0xfb, 0x13, 0x4f, 0xcc, 0x64, 0x6c, 0x8e, 0xf1, 0xd0, 0xb4, 0xc8, 0x33, 0x65, 0xba, 0xbe, + 0x18, 0x3d, 0x4f, 0xba, 0xdf, 0x67, 0x13, 0x2b, 0x90, 0x6e, 0xb8, 0x86, 0x68, 0x15, 0x09, 0x1c, + 0xdb, 0x13, 0x04, 0xad, 0x44, 0x58, 0x88, 0xde, 0xb1, 0x44, 0x9e, 0xca, 0x04, 0x92, 0x7a, 0x38, + 0xd8, 0x68, 0x55, 0xc8, 0x08, 0x23, 0xec, 0xe9, 0x3d, 0x57, 0x7f, 0x80, 0x8d, 0x56, 0xb5, 0xfb, + 0xa3, 0x4b, 0x50, 0xdd, 0xd4, 0x3d, 0x7d, 0xc3, 0xb6, 0x1d, 0x03, 0x8d, 0x01, 0xd1, 0x6b, 0xe1, + 0x46, 0x63, 0xdb, 0x12, 0x17, 0x4b, 0xa2, 0x6b, 0x31, 0xb1, 0xcd, 0x1e, 0xe3, 0xa0, 0x7c, 0xd7, + 0x75, 0x2e, 0xa6, 0x60, 0x44, 0xc0, 0xd5, 0x13, 0xe8, 0x23, 0x3a, 0x22, 0xd1, 0x5f, 0x3b, 0x66, + 0xff, 0xd0, 0x17, 0x19, 0xdd, 0x54, 0x77, 0x26, 0x0e, 0xec, 0x8f, 0xf9, 0x42, 0xca, 0x98, 0xec, + 0x0e, 0x3f, 0xdf, 0x88, 0x52, 0x4f, 0xa0, 0x09, 0x4d, 0x86, 0x06, 0x25, 0x2f, 0xfe, 0xa0, 0x9f, + 0x9c, 0x36, 0x68, 0x0c, 0x7c, 0xee, 0x61, 0xef, 0x41, 0x91, 0x4a, 0x13, 0xf4, 0xec, 0xb4, 0x0b, + 0x9e, 0x59, 0xa7, 0xea, 0xec, 0x3b, 0xa0, 0xd5, 0x13, 0xc8, 0x82, 0xa5, 0xc8, 0x6d, 0xb2, 0xe8, + 0x13, 0x89, 0x88, 0xc9, 0xb7, 0x03, 0x77, 0x5e, 0xca, 0x06, 0x2c, 0xc6, 0x3b, 0x84, 0x66, 0xf8, + 0x62, 0x39, 0x74, 0x39, 0xd3, 0xa5, 0x95, 0x6c, 0xb4, 0x4f, 0xcc, 0x71, 0xc1, 0x25, 0x65, 0x8c, + 0x56, 0xf4, 0x86, 0x53, 0xf4, 0xd2, 0x8c, 0x2e, 0xc2, 0x4c, 0xf8, 0x72, 0x46, 0x68, 0x31, 0xe4, + 0x2f, 0x52, 0xc6, 0x88, 0x5d, 0x29, 0x19, 0xe7, 0x7f, 0xbf, 0xa3, 0xb4, 0xfb, 0x2e, 0x3b, 0xd7, + 0xe7, 0xc0, 0x10, 0xc3, 0x7f, 0x8b, 0x1d, 0xb4, 0x4e, 0xba, 0x94, 0x11, 0xbd, 0x92, 0xd6, 0xe1, + 0x94, 0x1b, 0x25, 0x3b, 0x9f, 0x9c, 0x0f, 0x49, 0x4c, 0xe4, 0x57, 0xd9, 0x01, 0xe9, 0x84, 0x5b, + 0x0d, 0x51, 0x37, 0xad, 0xcb, 0xf4, 0x4b, 0x1b, 0x3b, 0xaf, 0xcc, 0x85, 0x23, 0x66, 0xe1, 0x46, + 0xef, 0x93, 0xf5, 0xf7, 0xe9, 0xf5, 0x0c, 0x8c, 0x74, 0xdc, 0x4d, 0xda, 0x83, 0xa5, 0xc8, 0x9d, + 0x36, 0x29, 0x5b, 0x2a, 0xf9, 0xe6, 0x9b, 0xce, 0x74, 0x97, 0x8c, 0xed, 0xd9, 0xc8, 0xa1, 0x68, + 0x94, 0xba, 0x31, 0x12, 0x8e, 0x4e, 0x77, 0x5e, 0xca, 0x06, 0x2c, 0x3e, 0xc8, 0x83, 0xe5, 0xc8, + 0xcb, 0xdd, 0x2e, 0x7a, 0x79, 0x8e, 0x11, 0x77, 0xbb, 0x9d, 0x2b, 0xf3, 0x8c, 0xb9, 0xdb, 0x55, + 0x4f, 0xa0, 0x87, 0x54, 0xaa, 0x47, 0x8e, 0xd5, 0xa2, 0xd4, 0x7e, 0x92, 0x8f, 0x10, 0x77, 0xae, + 0x66, 0x86, 0x17, 0x9f, 0xfb, 0x31, 0xac, 0x24, 0x9c, 0x82, 0x46, 0x57, 0x67, 0xb0, 0x4c, 0xf4, + 0x10, 0x78, 0xe7, 0x5a, 0x76, 0x04, 0x49, 0xaf, 0xb4, 0xfc, 0xb9, 0xbd, 0x3d, 0x1c, 0x32, 0x65, + 0x7f, 0x25, 0x5d, 0x75, 0x86, 0x00, 0x53, 0x3f, 0x39, 0x15, 0x5e, 0x0c, 0xfb, 0xcb, 0x80, 0xb6, + 0x0f, 0xec, 0x87, 0xb4, 0xac, 0x69, 0x30, 0xe1, 0x35, 0x32, 0x53, 0x34, 0x68, 0x1c, 0x38, 0x75, + 0xa3, 0x4e, 0xc5, 0x11, 0x13, 0xe8, 0x03, 0xbc, 0x8b, 0xbd, 0x3b, 0xd8, 0x73, 0x88, 0x84, 0x58, + 0x4f, 0xff, 0x02, 0x0e, 0xe2, 0x0f, 0x77, 0x29, 0x03, 0xa4, 0x4c, 0xdc, 0x3b, 0xba, 0x35, 0xd1, + 0x87, 0xd2, 0xed, 0x65, 0x69, 0xc4, 0x8d, 0x02, 0xce, 0x22, 0x6e, 0x1c, 0x5e, 0x0c, 0xfb, 0x0b, + 0xc2, 0x20, 0x92, 0x0e, 0x61, 0xcc, 0x32, 0x88, 0xe2, 0x47, 0x83, 0xe3, 0x0a, 0x61, 0x0a, 0x86, + 0x18, 0xfc, 0x1b, 0x0a, 0x3d, 0xd3, 0x1f, 0x01, 0xf8, 0xa2, 0xe9, 0x1d, 0x10, 0x0f, 0xc7, 0xcd, + 0x36, 0x0d, 0x0a, 0x3a, 0xd7, 0x34, 0x38, 0x86, 0x98, 0xc6, 0x01, 0x34, 0x42, 0xe7, 0x0f, 0x50, + 0x72, 0x7e, 0x33, 0xe9, 0xf0, 0x46, 0xe7, 0x72, 0x16, 0x50, 0x31, 0xd2, 0x87, 0xd0, 0x08, 0x95, + 0xa9, 0xa5, 0x8c, 0x94, 0x54, 0xca, 0x16, 0x17, 0x8c, 0x91, 0x9d, 0x13, 0x25, 0xee, 0x43, 0x40, + 0xf1, 0xc2, 0x6a, 0x94, 0xb5, 0x24, 0x7f, 0xba, 0x88, 0x4a, 0xaf, 0xd8, 0x66, 0x1a, 0x20, 0x72, + 0x9c, 0x21, 0x4d, 0xc5, 0x24, 0x9e, 0xd1, 0x48, 0xd1, 0x00, 0x29, 0x27, 0x24, 0xd4, 0x13, 0xc8, + 0x86, 0x93, 0x29, 0xb5, 0xde, 0x29, 0x56, 0xc5, 0xf4, 0xca, 0xf0, 0xd9, 0x2a, 0x4e, 0x0c, 0x18, + 0x2b, 0xe5, 0x9e, 0x3a, 0x60, 0x5a, 0xe1, 0xf7, 0xec, 0x01, 0x07, 0xb0, 0x92, 0x50, 0x75, 0x9c, + 0x22, 0xf4, 0xd3, 0xeb, 0x93, 0x67, 0x0f, 0xf4, 0x21, 0x74, 0x6e, 0x3a, 0xb6, 0x6e, 0xf4, 0x75, + 0xd7, 0xa3, 0xb5, 0xc0, 0xc4, 0x31, 0xf6, 0x4d, 0xa9, 0x34, 0xdb, 0x3b, 0xb1, 0x66, 0x78, 0xf6, + 0x58, 0xfb, 0x50, 0xa3, 0xa4, 0x60, 0xb7, 0xd8, 0xa3, 0x34, 0x61, 0x29, 0xc1, 0xa4, 0xee, 0xb9, + 0x24, 0x50, 0xc1, 0x1e, 0x5f, 0x82, 0xda, 0x06, 0x3d, 0x70, 0xb4, 0x45, 0x3c, 0xc6, 0xb8, 0xf8, + 0xa6, 0x8e, 0xe4, 0x15, 0x09, 0x24, 0xf3, 0x17, 0xec, 0x02, 0xd0, 0x8f, 0x67, 0x1d, 0xbf, 0x98, + 0xdc, 0x71, 0x00, 0x31, 0xc7, 0x2a, 0x34, 0xa8, 0x25, 0x6d, 0xe0, 0x47, 0x6c, 0xfb, 0x5c, 0x4e, + 0xee, 0x3a, 0x04, 0x94, 0xea, 0x85, 0x24, 0xc2, 0x4a, 0xca, 0x75, 0x55, 0x36, 0x2c, 0xc5, 0x90, + 0xd7, 0x53, 0xbb, 0x89, 0xc1, 0xfa, 0x23, 0x77, 0xe7, 0x41, 0x91, 0x85, 0xaf, 0x3f, 0x37, 0x7a, + 0xac, 0x3e, 0xce, 0x08, 0xe1, 0x0f, 0x90, 0x6d, 0xc5, 0xcb, 0x59, 0x40, 0xc5, 0x48, 0x3b, 0x50, + 0xa5, 0x29, 0x6a, 0xba, 0x5a, 0x17, 0x93, 0x51, 0x05, 0xc0, 0x3c, 0x8b, 0xb5, 0x89, 0xdd, 0xbe, + 0x63, 0xee, 0x71, 0x06, 0x4b, 0x99, 0x54, 0x08, 0x68, 0xc6, 0x62, 0x45, 0x60, 0xc5, 0x17, 0x1c, + 0x51, 0x65, 0x2d, 0xc8, 0xc8, 0x85, 0xdc, 0xd5, 0xd9, 0x2b, 0x1e, 0x16, 0x70, 0xd7, 0xb2, 0x23, + 0x88, 0xa1, 0xbf, 0xce, 0xfe, 0xfb, 0x05, 0x05, 0xb8, 0x39, 0x31, 0x87, 0x86, 0x1f, 0x4e, 0x42, + 0xdd, 0xe9, 0xbd, 0x85, 0x80, 0xa7, 0x18, 0x62, 0x53, 0x70, 0xc4, 0x24, 0x0c, 0xa8, 0xdd, 0x36, + 0x5d, 0x06, 0x83, 0xdd, 0xb4, 0xad, 0x2c, 0x81, 0xa4, 0x5a, 0x62, 0x09, 0x90, 0x62, 0x94, 0xaf, + 0xb0, 0x10, 0x18, 0x2d, 0xa2, 0x47, 0x2f, 0xa4, 0x66, 0xc8, 0xe4, 0x02, 0xfe, 0xce, 0xc5, 0x59, + 0x60, 0xa2, 0x77, 0x13, 0x56, 0x93, 0x8a, 0xe6, 0x53, 0x7c, 0xf0, 0x29, 0xf5, 0xf5, 0xb3, 0x59, + 0x73, 0x9b, 0x7f, 0x88, 0xe7, 0xd8, 0xc3, 0x69, 0x1f, 0x22, 0xa5, 0x15, 0x67, 0x77, 0x8a, 0xa1, + 0xc2, 0xe2, 0x8e, 0xbb, 0xdd, 0xb8, 0x31, 0x11, 0x49, 0xca, 0xf3, 0x4e, 0xb7, 0x78, 0x6b, 0xe7, + 0xc5, 0x99, 0xf0, 0x82, 0x4c, 0x5f, 0xa3, 0x6e, 0x1d, 0x6b, 0x16, 0xac, 0x76, 0x7d, 0x5a, 0x00, + 0x2b, 0x0c, 0x3b, 0x45, 0x28, 0xa5, 0xa3, 0x88, 0xd1, 0x1d, 0xce, 0x68, 0xf4, 0x7d, 0x82, 0x19, + 0x21, 0x3a, 0x91, 0xa0, 0xa2, 0x1f, 0xfb, 0x52, 0x36, 0x24, 0x7f, 0xcc, 0xee, 0xf7, 0x5b, 0x50, + 0xf1, 0x17, 0xfa, 0x29, 0xc4, 0x29, 0x9f, 0x52, 0xd0, 0xb0, 0x07, 0x4b, 0x91, 0x0b, 0xe2, 0x53, + 0xcc, 0x8c, 0xe4, 0x6b, 0xe4, 0x67, 0xf3, 0xeb, 0xff, 0xe7, 0xff, 0x87, 0x4f, 0x38, 0xe9, 0x97, + 0xd2, 0x43, 0x8f, 0x51, 0xff, 0x7c, 0x66, 0xe7, 0x3f, 0x1f, 0xae, 0xe9, 0x0e, 0xd4, 0x03, 0xe7, + 0x69, 0xb7, 0x8b, 0x9e, 0xcb, 0x70, 0xa4, 0x7e, 0x36, 0xed, 0x3e, 0x4a, 0xf4, 0x3c, 0x3f, 0x31, + 0xeb, 0x5e, 0x82, 0xd9, 0x9e, 0x42, 0xba, 0xbf, 0xf9, 0xff, 0xa0, 0x2e, 0x5f, 0xfc, 0x83, 0xd6, + 0xb3, 0xde, 0x0d, 0x34, 0xfb, 0x6b, 0x1e, 0x02, 0x8a, 0x1f, 0x46, 0x4c, 0xf1, 0xb6, 0x52, 0x8f, + 0x41, 0xa6, 0x78, 0x5b, 0xe9, 0xa7, 0x1c, 0x25, 0xfe, 0x9e, 0xe1, 0xbc, 0x26, 0xfd, 0x43, 0xc3, + 0xd9, 0x5f, 0x75, 0x00, 0x6b, 0x77, 0x6d, 0xcf, 0xdc, 0x3f, 0x8a, 0x9e, 0x24, 0x4a, 0x89, 0xb0, + 0xa5, 0x1d, 0x65, 0xca, 0xb2, 0x93, 0xce, 0x52, 0xf3, 0x3d, 0xed, 0xc8, 0x12, 0xca, 0x76, 0xfa, + 0xa9, 0x73, 0x23, 0xd3, 0xbc, 0x12, 0x44, 0xfe, 0x36, 0x54, 0x45, 0x55, 0x57, 0xca, 0x60, 0xd1, + 0xc3, 0x01, 0xb3, 0xbf, 0xea, 0x03, 0x49, 0x59, 0xaa, 0xb3, 0x8f, 0x27, 0xcc, 0xee, 0xf0, 0x10, + 0x9a, 0xe1, 0x12, 0xea, 0x94, 0x0c, 0x45, 0xe2, 0x61, 0x86, 0x94, 0x0c, 0x45, 0x72, 0x4d, 0xb6, + 0x7a, 0x02, 0xed, 0x41, 0x4d, 0xaa, 0x7f, 0x8d, 0x3b, 0x38, 0x01, 0x76, 0x78, 0x98, 0xf5, 0xd9, + 0x80, 0x62, 0x8c, 0xfb, 0x00, 0x41, 0xdd, 0x28, 0xba, 0x98, 0x1a, 0x6d, 0x98, 0x93, 0x4e, 0x5f, + 0x81, 0xaa, 0x28, 0x2f, 0x4a, 0x59, 0xcd, 0x68, 0x49, 0x52, 0x8a, 0x0d, 0x17, 0xab, 0x52, 0xa2, + 0x36, 0x10, 0x8a, 0x27, 0xe4, 0xa7, 0x84, 0x56, 0x12, 0x33, 0xf7, 0x33, 0x3f, 0xe2, 0xe6, 0x2b, + 0x5f, 0xbe, 0x3e, 0x30, 0xbd, 0x83, 0xc9, 0x1e, 0x79, 0x73, 0x95, 0x01, 0xbf, 0x6c, 0xda, 0xfc, + 0xd7, 0x55, 0x5f, 0x43, 0x5c, 0xa5, 0xf8, 0x57, 0xc9, 0x68, 0xe3, 0xbd, 0xbd, 0x12, 0x7d, 0x7a, + 0xe5, 0x7f, 0x03, 0x00, 0x00, 0xff, 0xff, 0x8a, 0x7c, 0x45, 0x0b, 0xc2, 0x77, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -8274,7 +8988,7 @@ type DataNodeClient interface { ShowConfigurations(ctx context.Context, in *internalpb.ShowConfigurationsRequest, opts ...grpc.CallOption) (*internalpb.ShowConfigurationsResponse, error) // https://wiki.lfaidata.foundation/display/MIL/MEP+8+--+Add+metrics+for+proxy GetMetrics(ctx context.Context, in *milvuspb.GetMetricsRequest, opts ...grpc.CallOption) (*milvuspb.GetMetricsResponse, error) - Compaction(ctx context.Context, in *CompactionPlan, opts ...grpc.CallOption) (*commonpb.Status, error) + CompactionV2(ctx context.Context, in *CompactionPlan, opts ...grpc.CallOption) (*commonpb.Status, error) GetCompactionState(ctx context.Context, in *CompactionStateRequest, opts ...grpc.CallOption) (*CompactionStateResponse, error) SyncSegments(ctx context.Context, in *SyncSegmentsRequest, opts ...grpc.CallOption) (*commonpb.Status, error) // Deprecated @@ -8288,6 +9002,8 @@ type DataNodeClient interface { QueryPreImport(ctx context.Context, in *QueryPreImportRequest, opts ...grpc.CallOption) (*QueryPreImportResponse, error) QueryImport(ctx context.Context, in *QueryImportRequest, opts ...grpc.CallOption) (*QueryImportResponse, error) DropImport(ctx context.Context, in *DropImportRequest, opts ...grpc.CallOption) (*commonpb.Status, error) + QuerySlot(ctx context.Context, in *QuerySlotRequest, opts ...grpc.CallOption) (*QuerySlotResponse, error) + DropCompactionPlan(ctx context.Context, in *DropCompactionPlanRequest, opts ...grpc.CallOption) (*commonpb.Status, error) } type dataNodeClient struct { @@ -8352,9 +9068,9 @@ func (c *dataNodeClient) GetMetrics(ctx context.Context, in *milvuspb.GetMetrics return out, nil } -func (c *dataNodeClient) Compaction(ctx context.Context, in *CompactionPlan, opts ...grpc.CallOption) (*commonpb.Status, error) { +func (c *dataNodeClient) CompactionV2(ctx context.Context, in *CompactionPlan, opts ...grpc.CallOption) (*commonpb.Status, error) { out := new(commonpb.Status) - err := c.cc.Invoke(ctx, "/milvus.proto.data.DataNode/Compaction", in, out, opts...) + err := c.cc.Invoke(ctx, "/milvus.proto.data.DataNode/CompactionV2", in, out, opts...) if err != nil { return nil, err } @@ -8460,6 +9176,24 @@ func (c *dataNodeClient) DropImport(ctx context.Context, in *DropImportRequest, return out, nil } +func (c *dataNodeClient) QuerySlot(ctx context.Context, in *QuerySlotRequest, opts ...grpc.CallOption) (*QuerySlotResponse, error) { + out := new(QuerySlotResponse) + err := c.cc.Invoke(ctx, "/milvus.proto.data.DataNode/QuerySlot", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *dataNodeClient) DropCompactionPlan(ctx context.Context, in *DropCompactionPlanRequest, opts ...grpc.CallOption) (*commonpb.Status, error) { + out := new(commonpb.Status) + err := c.cc.Invoke(ctx, "/milvus.proto.data.DataNode/DropCompactionPlan", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + // DataNodeServer is the server API for DataNode service. type DataNodeServer interface { GetComponentStates(context.Context, *milvuspb.GetComponentStatesRequest) (*milvuspb.ComponentStates, error) @@ -8469,7 +9203,7 @@ type DataNodeServer interface { ShowConfigurations(context.Context, *internalpb.ShowConfigurationsRequest) (*internalpb.ShowConfigurationsResponse, error) // https://wiki.lfaidata.foundation/display/MIL/MEP+8+--+Add+metrics+for+proxy GetMetrics(context.Context, *milvuspb.GetMetricsRequest) (*milvuspb.GetMetricsResponse, error) - Compaction(context.Context, *CompactionPlan) (*commonpb.Status, error) + CompactionV2(context.Context, *CompactionPlan) (*commonpb.Status, error) GetCompactionState(context.Context, *CompactionStateRequest) (*CompactionStateResponse, error) SyncSegments(context.Context, *SyncSegmentsRequest) (*commonpb.Status, error) // Deprecated @@ -8483,6 +9217,8 @@ type DataNodeServer interface { QueryPreImport(context.Context, *QueryPreImportRequest) (*QueryPreImportResponse, error) QueryImport(context.Context, *QueryImportRequest) (*QueryImportResponse, error) DropImport(context.Context, *DropImportRequest) (*commonpb.Status, error) + QuerySlot(context.Context, *QuerySlotRequest) (*QuerySlotResponse, error) + DropCompactionPlan(context.Context, *DropCompactionPlanRequest) (*commonpb.Status, error) } // UnimplementedDataNodeServer can be embedded to have forward compatible implementations. @@ -8507,8 +9243,8 @@ func (*UnimplementedDataNodeServer) ShowConfigurations(ctx context.Context, req func (*UnimplementedDataNodeServer) GetMetrics(ctx context.Context, req *milvuspb.GetMetricsRequest) (*milvuspb.GetMetricsResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method GetMetrics not implemented") } -func (*UnimplementedDataNodeServer) Compaction(ctx context.Context, req *CompactionPlan) (*commonpb.Status, error) { - return nil, status.Errorf(codes.Unimplemented, "method Compaction not implemented") +func (*UnimplementedDataNodeServer) CompactionV2(ctx context.Context, req *CompactionPlan) (*commonpb.Status, error) { + return nil, status.Errorf(codes.Unimplemented, "method CompactionV2 not implemented") } func (*UnimplementedDataNodeServer) GetCompactionState(ctx context.Context, req *CompactionStateRequest) (*CompactionStateResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method GetCompactionState not implemented") @@ -8543,6 +9279,12 @@ func (*UnimplementedDataNodeServer) QueryImport(ctx context.Context, req *QueryI func (*UnimplementedDataNodeServer) DropImport(ctx context.Context, req *DropImportRequest) (*commonpb.Status, error) { return nil, status.Errorf(codes.Unimplemented, "method DropImport not implemented") } +func (*UnimplementedDataNodeServer) QuerySlot(ctx context.Context, req *QuerySlotRequest) (*QuerySlotResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method QuerySlot not implemented") +} +func (*UnimplementedDataNodeServer) DropCompactionPlan(ctx context.Context, req *DropCompactionPlanRequest) (*commonpb.Status, error) { + return nil, status.Errorf(codes.Unimplemented, "method DropCompactionPlan not implemented") +} func RegisterDataNodeServer(s *grpc.Server, srv DataNodeServer) { s.RegisterService(&_DataNode_serviceDesc, srv) @@ -8656,20 +9398,20 @@ func _DataNode_GetMetrics_Handler(srv interface{}, ctx context.Context, dec func return interceptor(ctx, in, info, handler) } -func _DataNode_Compaction_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { +func _DataNode_CompactionV2_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(CompactionPlan) if err := dec(in); err != nil { return nil, err } if interceptor == nil { - return srv.(DataNodeServer).Compaction(ctx, in) + return srv.(DataNodeServer).CompactionV2(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/milvus.proto.data.DataNode/Compaction", + FullMethod: "/milvus.proto.data.DataNode/CompactionV2", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { - return srv.(DataNodeServer).Compaction(ctx, req.(*CompactionPlan)) + return srv.(DataNodeServer).CompactionV2(ctx, req.(*CompactionPlan)) } return interceptor(ctx, in, info, handler) } @@ -8872,6 +9614,42 @@ func _DataNode_DropImport_Handler(srv interface{}, ctx context.Context, dec func return interceptor(ctx, in, info, handler) } +func _DataNode_QuerySlot_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(QuerySlotRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(DataNodeServer).QuerySlot(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/milvus.proto.data.DataNode/QuerySlot", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(DataNodeServer).QuerySlot(ctx, req.(*QuerySlotRequest)) + } + return interceptor(ctx, in, info, handler) +} + +func _DataNode_DropCompactionPlan_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(DropCompactionPlanRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(DataNodeServer).DropCompactionPlan(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/milvus.proto.data.DataNode/DropCompactionPlan", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(DataNodeServer).DropCompactionPlan(ctx, req.(*DropCompactionPlanRequest)) + } + return interceptor(ctx, in, info, handler) +} + var _DataNode_serviceDesc = grpc.ServiceDesc{ ServiceName: "milvus.protov2.data.DataNode", HandlerType: (*DataNodeServer)(nil), @@ -8901,8 +9679,8 @@ var _DataNode_serviceDesc = grpc.ServiceDesc{ Handler: _DataNode_GetMetrics_Handler, }, { - MethodName: "Compaction", - Handler: _DataNode_Compaction_Handler, + MethodName: "CompactionV2", + Handler: _DataNode_CompactionV2_Handler, }, { MethodName: "GetCompactionState", @@ -8948,6 +9726,14 @@ var _DataNode_serviceDesc = grpc.ServiceDesc{ MethodName: "DropImport", Handler: _DataNode_DropImport_Handler, }, + { + MethodName: "QuerySlot", + Handler: _DataNode_QuerySlot_Handler, + }, + { + MethodName: "DropCompactionPlan", + Handler: _DataNode_DropCompactionPlan_Handler, + }, }, Streams: []grpc.StreamDesc{}, Metadata: "data_coord.proto", diff --git a/proto/v2.2/gen_proto.sh b/proto/v2.2/gen_proto.sh index 455eb0e..6d186d4 100755 --- a/proto/v2.2/gen_proto.sh +++ b/proto/v2.2/gen_proto.sh @@ -19,7 +19,6 @@ case ":$PATH:" in esac echo "using protoc-gen-go: $(which protoc-gen-go)" -protoc=/home/yangxuan/Github/milvus/cmake_build/bin/protoc mkdir -p commonpb mkdir -p milvuspb diff --git a/proto/v2.2/query_coord.proto b/proto/v2.2/query_coord.proto index ee00870..bc9d765 100644 --- a/proto/v2.2/query_coord.proto +++ b/proto/v2.2/query_coord.proto @@ -589,6 +589,7 @@ message SealedSegmentsChangeInfo { message GetDataDistributionRequest { common.MsgBase base = 1; map checkpoints = 2; + int64 lastUpdateTs = 3; } message GetDataDistributionResponse { @@ -597,6 +598,7 @@ message GetDataDistributionResponse { repeated SegmentVersionInfo segments = 3; repeated ChannelVersionInfo channels = 4; repeated LeaderView leader_views = 5; + int64 lastModifyTs = 6; } message LeaderView { @@ -607,6 +609,7 @@ message LeaderView { map growing_segments = 5; int64 TargetVersion = 6; int64 num_of_growing_rows = 7; + map partition_stats_versions = 8; } message SegmentDist { @@ -677,6 +680,7 @@ enum SyncType { Set = 1; Amend = 2; UpdateVersion = 3; + UpdatePartitionStats = 4; } message SyncAction { @@ -691,6 +695,7 @@ message SyncAction { int64 TargetVersion = 9; repeated int64 droppedInTarget = 10; msg.MsgPosition checkpoint = 11; + map partition_stats_versions = 12; } message SyncDistributionRequest { diff --git a/proto/v2.2/querypb/query_coord.pb.go b/proto/v2.2/querypb/query_coord.pb.go index 3712b76..8f7daec 100644 --- a/proto/v2.2/querypb/query_coord.pb.go +++ b/proto/v2.2/querypb/query_coord.pb.go @@ -224,10 +224,11 @@ func (LoadStatus) EnumDescriptor() ([]byte, []int) { type SyncType int32 const ( - SyncType_Remove SyncType = 0 - SyncType_Set SyncType = 1 - SyncType_Amend SyncType = 2 - SyncType_UpdateVersion SyncType = 3 + SyncType_Remove SyncType = 0 + SyncType_Set SyncType = 1 + SyncType_Amend SyncType = 2 + SyncType_UpdateVersion SyncType = 3 + SyncType_UpdatePartitionStats SyncType = 4 ) var SyncType_name = map[int32]string{ @@ -235,13 +236,15 @@ var SyncType_name = map[int32]string{ 1: "Set", 2: "Amend", 3: "UpdateVersion", + 4: "UpdatePartitionStats", } var SyncType_value = map[string]int32{ - "Remove": 0, - "Set": 1, - "Amend": 2, - "UpdateVersion": 3, + "Remove": 0, + "Set": 1, + "Amend": 2, + "UpdateVersion": 3, + "UpdatePartitionStats": 4, } func (x SyncType) String() string { @@ -3409,6 +3412,7 @@ func (m *SealedSegmentsChangeInfo) GetInfos() []*SegmentChangeInfo { type GetDataDistributionRequest struct { Base *commonpb.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"` Checkpoints map[string]*msgpb.MsgPosition `protobuf:"bytes,2,rep,name=checkpoints,proto3" json:"checkpoints,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` + LastUpdateTs int64 `protobuf:"varint,3,opt,name=lastUpdateTs,proto3" json:"lastUpdateTs,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -3453,12 +3457,20 @@ func (m *GetDataDistributionRequest) GetCheckpoints() map[string]*msgpb.MsgPosit return nil } +func (m *GetDataDistributionRequest) GetLastUpdateTs() int64 { + if m != nil { + return m.LastUpdateTs + } + return 0 +} + type GetDataDistributionResponse struct { Status *commonpb.Status `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"` NodeID int64 `protobuf:"varint,2,opt,name=nodeID,proto3" json:"nodeID,omitempty"` Segments []*SegmentVersionInfo `protobuf:"bytes,3,rep,name=segments,proto3" json:"segments,omitempty"` Channels []*ChannelVersionInfo `protobuf:"bytes,4,rep,name=channels,proto3" json:"channels,omitempty"` LeaderViews []*LeaderView `protobuf:"bytes,5,rep,name=leader_views,json=leaderViews,proto3" json:"leader_views,omitempty"` + LastModifyTs int64 `protobuf:"varint,6,opt,name=lastModifyTs,proto3" json:"lastModifyTs,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -3524,17 +3536,25 @@ func (m *GetDataDistributionResponse) GetLeaderViews() []*LeaderView { return nil } +func (m *GetDataDistributionResponse) GetLastModifyTs() int64 { + if m != nil { + return m.LastModifyTs + } + return 0 +} + type LeaderView struct { - Collection int64 `protobuf:"varint,1,opt,name=collection,proto3" json:"collection,omitempty"` - Channel string `protobuf:"bytes,2,opt,name=channel,proto3" json:"channel,omitempty"` - SegmentDist map[int64]*SegmentDist `protobuf:"bytes,3,rep,name=segment_dist,json=segmentDist,proto3" json:"segment_dist,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` - GrowingSegmentIDs []int64 `protobuf:"varint,4,rep,packed,name=growing_segmentIDs,json=growingSegmentIDs,proto3" json:"growing_segmentIDs,omitempty"` - GrowingSegments map[int64]*msgpb.MsgPosition `protobuf:"bytes,5,rep,name=growing_segments,json=growingSegments,proto3" json:"growing_segments,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` - TargetVersion int64 `protobuf:"varint,6,opt,name=TargetVersion,proto3" json:"TargetVersion,omitempty"` - NumOfGrowingRows int64 `protobuf:"varint,7,opt,name=num_of_growing_rows,json=numOfGrowingRows,proto3" json:"num_of_growing_rows,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + Collection int64 `protobuf:"varint,1,opt,name=collection,proto3" json:"collection,omitempty"` + Channel string `protobuf:"bytes,2,opt,name=channel,proto3" json:"channel,omitempty"` + SegmentDist map[int64]*SegmentDist `protobuf:"bytes,3,rep,name=segment_dist,json=segmentDist,proto3" json:"segment_dist,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` + GrowingSegmentIDs []int64 `protobuf:"varint,4,rep,packed,name=growing_segmentIDs,json=growingSegmentIDs,proto3" json:"growing_segmentIDs,omitempty"` + GrowingSegments map[int64]*msgpb.MsgPosition `protobuf:"bytes,5,rep,name=growing_segments,json=growingSegments,proto3" json:"growing_segments,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` + TargetVersion int64 `protobuf:"varint,6,opt,name=TargetVersion,proto3" json:"TargetVersion,omitempty"` + NumOfGrowingRows int64 `protobuf:"varint,7,opt,name=num_of_growing_rows,json=numOfGrowingRows,proto3" json:"num_of_growing_rows,omitempty"` + PartitionStatsVersions map[int64]int64 `protobuf:"bytes,8,rep,name=partition_stats_versions,json=partitionStatsVersions,proto3" json:"partition_stats_versions,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *LeaderView) Reset() { *m = LeaderView{} } @@ -3611,6 +3631,13 @@ func (m *LeaderView) GetNumOfGrowingRows() int64 { return 0 } +func (m *LeaderView) GetPartitionStatsVersions() map[int64]int64 { + if m != nil { + return m.PartitionStatsVersions + } + return nil +} + type SegmentDist struct { NodeID int64 `protobuf:"varint,1,opt,name=nodeID,proto3" json:"nodeID,omitempty"` Version int64 `protobuf:"varint,2,opt,name=version,proto3" json:"version,omitempty"` @@ -4086,20 +4113,21 @@ func (m *Replica) GetChannelNodeInfos() map[string]*ChannelNodeInfo { } type SyncAction struct { - Type SyncType `protobuf:"varint,1,opt,name=type,proto3,enum=milvus.protov2.query.SyncType" json:"type,omitempty"` - PartitionID int64 `protobuf:"varint,2,opt,name=partitionID,proto3" json:"partitionID,omitempty"` - SegmentID int64 `protobuf:"varint,3,opt,name=segmentID,proto3" json:"segmentID,omitempty"` - NodeID int64 `protobuf:"varint,4,opt,name=nodeID,proto3" json:"nodeID,omitempty"` - Version int64 `protobuf:"varint,5,opt,name=version,proto3" json:"version,omitempty"` - Info *SegmentLoadInfo `protobuf:"bytes,6,opt,name=info,proto3" json:"info,omitempty"` - GrowingInTarget []int64 `protobuf:"varint,7,rep,packed,name=growingInTarget,proto3" json:"growingInTarget,omitempty"` - SealedInTarget []int64 `protobuf:"varint,8,rep,packed,name=sealedInTarget,proto3" json:"sealedInTarget,omitempty"` - TargetVersion int64 `protobuf:"varint,9,opt,name=TargetVersion,proto3" json:"TargetVersion,omitempty"` - DroppedInTarget []int64 `protobuf:"varint,10,rep,packed,name=droppedInTarget,proto3" json:"droppedInTarget,omitempty"` - Checkpoint *msgpb.MsgPosition `protobuf:"bytes,11,opt,name=checkpoint,proto3" json:"checkpoint,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + Type SyncType `protobuf:"varint,1,opt,name=type,proto3,enum=milvus.protov2.query.SyncType" json:"type,omitempty"` + PartitionID int64 `protobuf:"varint,2,opt,name=partitionID,proto3" json:"partitionID,omitempty"` + SegmentID int64 `protobuf:"varint,3,opt,name=segmentID,proto3" json:"segmentID,omitempty"` + NodeID int64 `protobuf:"varint,4,opt,name=nodeID,proto3" json:"nodeID,omitempty"` + Version int64 `protobuf:"varint,5,opt,name=version,proto3" json:"version,omitempty"` + Info *SegmentLoadInfo `protobuf:"bytes,6,opt,name=info,proto3" json:"info,omitempty"` + GrowingInTarget []int64 `protobuf:"varint,7,rep,packed,name=growingInTarget,proto3" json:"growingInTarget,omitempty"` + SealedInTarget []int64 `protobuf:"varint,8,rep,packed,name=sealedInTarget,proto3" json:"sealedInTarget,omitempty"` + TargetVersion int64 `protobuf:"varint,9,opt,name=TargetVersion,proto3" json:"TargetVersion,omitempty"` + DroppedInTarget []int64 `protobuf:"varint,10,rep,packed,name=droppedInTarget,proto3" json:"droppedInTarget,omitempty"` + Checkpoint *msgpb.MsgPosition `protobuf:"bytes,11,opt,name=checkpoint,proto3" json:"checkpoint,omitempty"` + PartitionStatsVersions map[int64]int64 `protobuf:"bytes,12,rep,name=partition_stats_versions,json=partitionStatsVersions,proto3" json:"partition_stats_versions,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *SyncAction) Reset() { *m = SyncAction{} } @@ -4204,6 +4232,13 @@ func (m *SyncAction) GetCheckpoint() *msgpb.MsgPosition { return nil } +func (m *SyncAction) GetPartitionStatsVersions() map[int64]int64 { + if m != nil { + return m.PartitionStatsVersions + } + return nil +} + type SyncDistributionRequest struct { Base *commonpb.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"` CollectionID int64 `protobuf:"varint,2,opt,name=collectionID,proto3" json:"collectionID,omitempty"` @@ -5914,6 +5949,7 @@ func init() { proto.RegisterType((*GetDataDistributionResponse)(nil), "milvus.protov2.query.GetDataDistributionResponse") proto.RegisterType((*LeaderView)(nil), "milvus.protov2.query.LeaderView") proto.RegisterMapType((map[int64]*msgpb.MsgPosition)(nil), "milvus.protov2.query.LeaderView.GrowingSegmentsEntry") + proto.RegisterMapType((map[int64]int64)(nil), "milvus.protov2.query.LeaderView.PartitionStatsVersionsEntry") proto.RegisterMapType((map[int64]*SegmentDist)(nil), "milvus.protov2.query.LeaderView.SegmentDistEntry") proto.RegisterType((*SegmentDist)(nil), "milvus.protov2.query.SegmentDist") proto.RegisterType((*SegmentVersionInfo)(nil), "milvus.protov2.query.SegmentVersionInfo") @@ -5927,6 +5963,7 @@ func init() { proto.RegisterType((*Replica)(nil), "milvus.protov2.query.Replica") proto.RegisterMapType((map[string]*ChannelNodeInfo)(nil), "milvus.protov2.query.Replica.ChannelNodeInfosEntry") proto.RegisterType((*SyncAction)(nil), "milvus.protov2.query.SyncAction") + proto.RegisterMapType((map[int64]int64)(nil), "milvus.protov2.query.SyncAction.PartitionStatsVersionsEntry") proto.RegisterType((*SyncDistributionRequest)(nil), "milvus.protov2.query.SyncDistributionRequest") proto.RegisterType((*ResourceGroup)(nil), "milvus.protov2.query.ResourceGroup") proto.RegisterType((*TransferReplicaRequest)(nil), "milvus.protov2.query.TransferReplicaRequest") @@ -5963,375 +6000,381 @@ func init() { func init() { proto.RegisterFile("query_coord.proto", fileDescriptor_aab7cc9a69ed26e8) } var fileDescriptor_aab7cc9a69ed26e8 = []byte{ - // 5885 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x3d, 0x6b, 0x8f, 0x1c, 0xd9, - 0x55, 0xae, 0x7e, 0x4d, 0xf7, 0xe9, 0xc7, 0xf4, 0xdc, 0x99, 0xb1, 0x3b, 0xbd, 0x7e, 0xcc, 0x96, - 0xe3, 0xdd, 0x59, 0xef, 0x7a, 0x6c, 0xcf, 0x66, 0xb3, 0x89, 0x93, 0x5d, 0x63, 0xcf, 0xd8, 0xde, - 0xc9, 0xda, 0x8e, 0xa9, 0xf1, 0x7a, 0xa3, 0x10, 0xa5, 0x5d, 0xd3, 0x75, 0xa7, 0xa7, 0xe2, 0x7a, - 0xb4, 0xab, 0xaa, 0xc7, 0x3b, 0x0b, 0x12, 0x08, 0x21, 0x04, 0x22, 0x3c, 0x24, 0x50, 0x24, 0x88, - 0x88, 0xe0, 0x0b, 0x08, 0xc8, 0x07, 0x22, 0xf1, 0x0d, 0x45, 0x8a, 0xf8, 0x18, 0x24, 0x04, 0x42, - 0xf0, 0x0b, 0xc8, 0x17, 0x3e, 0xf1, 0x91, 0x45, 0x42, 0x42, 0xf7, 0x55, 0x55, 0xb7, 0x1e, 0xdd, - 0x3d, 0xd3, 0xe3, 0x7d, 0x00, 0xdf, 0xba, 0x4e, 0xdd, 0x7b, 0xcf, 0xb9, 0xf7, 0x3c, 0xee, 0x39, - 0xe7, 0x9e, 0xba, 0x0d, 0x0b, 0x4f, 0x47, 0xd8, 0x3b, 0xe8, 0xf5, 0x5d, 0xd7, 0x33, 0xd6, 0x86, - 0x9e, 0x1b, 0xb8, 0x68, 0xc9, 0x36, 0xad, 0xfd, 0x91, 0xcf, 0x9e, 0xf6, 0xd7, 0xd7, 0x68, 0x8b, - 0x6e, 0xa3, 0xef, 0xda, 0xb6, 0xeb, 0x30, 0x68, 0xb7, 0x11, 0x6f, 0xd3, 0xad, 0x7a, 0x03, 0xfe, - 0xab, 0x65, 0x3a, 0x01, 0xf6, 0x1c, 0xdd, 0x12, 0xed, 0xfc, 0xfe, 0x1e, 0xb6, 0x75, 0xfe, 0x54, - 0xb3, 0x7d, 0xd1, 0xb0, 0x6d, 0xe8, 0x81, 0x1e, 0x47, 0xdb, 0x5d, 0x30, 0x1d, 0x03, 0x7f, 0x10, - 0x07, 0xa9, 0xbf, 0xae, 0xc0, 0xc9, 0xed, 0x3d, 0xf7, 0xd9, 0x86, 0x6b, 0x59, 0xb8, 0x1f, 0x98, - 0xae, 0xe3, 0x6b, 0xf8, 0xe9, 0x08, 0xfb, 0x01, 0x5a, 0x87, 0xd2, 0x8e, 0xee, 0xe3, 0x8e, 0xb2, - 0xa2, 0xac, 0xd6, 0xd7, 0xcf, 0xae, 0x25, 0x68, 0xe6, 0xc4, 0xde, 0xf3, 0x07, 0x37, 0x75, 0x1f, - 0x6b, 0xb4, 0x2d, 0x42, 0x50, 0x32, 0x76, 0xb6, 0x36, 0x3b, 0x85, 0x15, 0x65, 0xb5, 0xa8, 0xd1, - 0xdf, 0xe8, 0xf3, 0xd0, 0xec, 0x87, 0xa3, 0x6f, 0x6d, 0xfa, 0x9d, 0xe2, 0x4a, 0x71, 0xb5, 0xa8, - 0xc9, 0x40, 0xf5, 0xbb, 0x05, 0x38, 0x95, 0x22, 0xc4, 0x1f, 0xba, 0x8e, 0x8f, 0xd1, 0x1b, 0x50, - 0xf1, 0x03, 0x3d, 0x18, 0xf9, 0x9c, 0x96, 0x33, 0x39, 0xb4, 0x6c, 0xd3, 0x46, 0x1a, 0x6f, 0x9c, - 0x46, 0x5c, 0xc8, 0x40, 0x8c, 0xae, 0xc2, 0x92, 0xe9, 0xdc, 0xc3, 0xb6, 0xeb, 0x1d, 0xf4, 0x86, - 0xd8, 0xeb, 0x63, 0x27, 0xd0, 0x07, 0x58, 0x50, 0xb9, 0x28, 0xde, 0x3d, 0x88, 0x5e, 0xa1, 0x2f, - 0xc2, 0x29, 0xc6, 0x53, 0x1f, 0x7b, 0xfb, 0x66, 0x1f, 0xf7, 0xf4, 0x7d, 0xdd, 0xb4, 0xf4, 0x1d, - 0x0b, 0x77, 0x4a, 0x2b, 0xc5, 0xd5, 0xaa, 0xb6, 0x4c, 0x5f, 0x6f, 0xb3, 0xb7, 0x37, 0xc4, 0x4b, - 0xf4, 0x0a, 0xb4, 0x3d, 0xbc, 0xeb, 0x61, 0x7f, 0xaf, 0x37, 0xf4, 0xdc, 0x81, 0x87, 0x7d, 0xbf, - 0x53, 0xa6, 0x68, 0xe6, 0x39, 0xfc, 0x01, 0x07, 0xab, 0x7f, 0xae, 0xc0, 0x32, 0x59, 0x8e, 0x07, - 0xba, 0x17, 0x98, 0xcf, 0x85, 0x2d, 0x2a, 0x34, 0xe2, 0x0b, 0xd1, 0x29, 0xd2, 0x77, 0x12, 0x8c, - 0xb4, 0x19, 0x0a, 0x02, 0xc8, 0x02, 0x96, 0x28, 0xb1, 0x12, 0x4c, 0xfd, 0x27, 0x2e, 0x41, 0x71, - 0x4a, 0x67, 0xe3, 0x5b, 0x12, 0x6b, 0x21, 0x8d, 0xf5, 0x28, 0x5c, 0xcb, 0x5a, 0xfd, 0x52, 0xf6, - 0xea, 0xff, 0x73, 0x11, 0x96, 0xef, 0xba, 0xba, 0x11, 0x09, 0xe3, 0x27, 0xb1, 0xfa, 0xd7, 0xa1, - 0xc2, 0x74, 0xbb, 0x53, 0xa2, 0xd8, 0x5e, 0x4e, 0x62, 0xe3, 0x9a, 0x1f, 0x51, 0xb9, 0x4d, 0x01, - 0x1a, 0xef, 0x86, 0x2e, 0x40, 0xcb, 0xc3, 0x43, 0xcb, 0xec, 0xeb, 0x3d, 0x67, 0x64, 0xef, 0x60, - 0xaf, 0x53, 0x5e, 0x51, 0x56, 0xcb, 0x5a, 0x93, 0x43, 0xef, 0x53, 0x20, 0xda, 0x81, 0xe6, 0xae, - 0x89, 0x2d, 0xa3, 0x47, 0xcd, 0xc3, 0xd6, 0x66, 0xa7, 0xb2, 0x52, 0x5c, 0xad, 0xaf, 0xbf, 0xb5, - 0x96, 0x65, 0xa5, 0xd6, 0x32, 0xd7, 0x65, 0xed, 0x36, 0x19, 0x60, 0x8b, 0xf5, 0xbf, 0xe5, 0x04, - 0xde, 0x81, 0xd6, 0xd8, 0x8d, 0x81, 0x50, 0x07, 0xe6, 0xf8, 0x22, 0x77, 0xe6, 0x56, 0x94, 0xd5, - 0xaa, 0x26, 0x1e, 0xd1, 0xcb, 0x30, 0xef, 0x61, 0xdf, 0x1d, 0x79, 0x7d, 0xdc, 0x1b, 0x78, 0xee, - 0x68, 0xe8, 0x77, 0xaa, 0x2b, 0xc5, 0xd5, 0x9a, 0xd6, 0x12, 0xe0, 0x3b, 0x14, 0xda, 0xbd, 0x0e, - 0x0b, 0x29, 0x2c, 0xa8, 0x0d, 0xc5, 0x27, 0xf8, 0x80, 0xb2, 0xa3, 0xa8, 0x91, 0x9f, 0x68, 0x09, - 0xca, 0xfb, 0xba, 0x35, 0xc2, 0x7c, 0xb9, 0xd9, 0xc3, 0xb5, 0xc2, 0x97, 0x14, 0xf5, 0x07, 0x0a, - 0x74, 0x34, 0x6c, 0x61, 0xdd, 0xc7, 0x9f, 0x2c, 0x63, 0x4f, 0x42, 0xc5, 0x71, 0x0d, 0xbc, 0xb5, - 0x49, 0x19, 0x5b, 0xd4, 0xf8, 0x93, 0xfa, 0xdf, 0x0a, 0x2c, 0xdd, 0xc1, 0x01, 0x51, 0x07, 0xd3, - 0x0f, 0xcc, 0x7e, 0xa8, 0xf3, 0xd7, 0xa1, 0xe8, 0xe1, 0xa7, 0x9c, 0xb6, 0x4b, 0x49, 0xda, 0xc2, - 0x0d, 0x21, 0xab, 0xaf, 0x46, 0x7a, 0xa2, 0x17, 0xa1, 0x61, 0xd8, 0x56, 0xaf, 0xbf, 0xa7, 0x3b, - 0x0e, 0xb6, 0x98, 0x4a, 0xd5, 0xb4, 0xba, 0x61, 0x5b, 0x1b, 0x1c, 0x84, 0xce, 0x02, 0xf8, 0x78, - 0x60, 0x63, 0x27, 0x88, 0x6c, 0x74, 0x0c, 0x82, 0x2e, 0xc2, 0xc2, 0xae, 0xe7, 0xda, 0x3d, 0x7f, - 0x4f, 0xf7, 0x8c, 0x9e, 0x85, 0x75, 0x03, 0x7b, 0x94, 0xfe, 0xaa, 0x36, 0x4f, 0x5e, 0x6c, 0x13, - 0xf8, 0x5d, 0x0a, 0x46, 0x6f, 0x40, 0xd9, 0xef, 0xbb, 0x43, 0x4c, 0xe5, 0xad, 0xb5, 0x7e, 0x2e, - 0x5b, 0x92, 0x36, 0xf5, 0x40, 0xdf, 0x26, 0xcd, 0x34, 0xd6, 0x5a, 0xfd, 0x49, 0x89, 0xa9, 0xdd, - 0xa7, 0xde, 0xe8, 0xc5, 0x54, 0xb3, 0x7c, 0x5c, 0xaa, 0x59, 0x99, 0x4a, 0x35, 0xe7, 0x26, 0xa9, - 0x66, 0x6a, 0xed, 0x0e, 0xa3, 0x9a, 0xd5, 0x89, 0xaa, 0x59, 0xcb, 0x52, 0x4d, 0x74, 0x07, 0xe6, - 0x99, 0x6b, 0x61, 0x3a, 0xbb, 0x6e, 0xcf, 0x32, 0xfd, 0xa0, 0x03, 0x94, 0xd0, 0x73, 0x69, 0x59, - 0x35, 0xf0, 0x07, 0x6b, 0x0c, 0xb5, 0xb3, 0xeb, 0x6a, 0x4d, 0x53, 0xfc, 0xbc, 0x6b, 0xfa, 0xc1, - 0xec, 0x3a, 0xfe, 0x77, 0x91, 0x8e, 0x7f, 0xfa, 0xa5, 0x28, 0xb2, 0x03, 0x65, 0xc9, 0x0e, 0xfc, - 0x95, 0x02, 0x9f, 0xbb, 0x83, 0x83, 0x70, 0x02, 0x44, 0xa9, 0xf1, 0xa7, 0xd6, 0x01, 0xf8, 0x91, - 0x02, 0xdd, 0x2c, 0x6a, 0x67, 0x73, 0x02, 0xbe, 0x05, 0x27, 0x43, 0x2c, 0x3d, 0x03, 0xfb, 0x7d, - 0xcf, 0x1c, 0x52, 0x66, 0x52, 0xdb, 0x55, 0x5f, 0xbf, 0x90, 0xad, 0x02, 0x49, 0x2a, 0x96, 0xc3, - 0x41, 0x36, 0x63, 0x63, 0xa8, 0xbf, 0xab, 0xc0, 0x32, 0xb1, 0x96, 0xdc, 0xbc, 0x11, 0x49, 0x9c, - 0x61, 0x75, 0x65, 0xd3, 0x59, 0x48, 0x99, 0xce, 0x29, 0x56, 0x5a, 0xfd, 0x0d, 0x05, 0x4e, 0x26, - 0x29, 0x9a, 0x6d, 0x05, 0xdf, 0x84, 0x32, 0x51, 0x47, 0xb1, 0x60, 0x2f, 0x66, 0x2f, 0x58, 0x1c, - 0x21, 0x6b, 0xaf, 0x0e, 0x19, 0x25, 0x91, 0x3d, 0x9f, 0x49, 0xf4, 0x92, 0x93, 0x2f, 0x64, 0x4c, - 0xfe, 0xf7, 0x14, 0x38, 0x95, 0x42, 0x39, 0xdb, 0xec, 0xdf, 0x86, 0x0a, 0xdd, 0xa9, 0xc4, 0xf4, - 0x5f, 0xca, 0x99, 0x7e, 0x0c, 0x25, 0xb1, 0x40, 0x1a, 0xef, 0xa5, 0xfe, 0xb0, 0x00, 0x2f, 0xbc, - 0x37, 0x34, 0xf4, 0x00, 0x6b, 0x92, 0xad, 0x9b, 0x65, 0x29, 0x9c, 0xb4, 0x3d, 0x65, 0xc4, 0xdd, - 0xca, 0x26, 0x6e, 0x0c, 0xfe, 0x35, 0x19, 0xca, 0xec, 0x7a, 0xd2, 0x63, 0x32, 0x61, 0x31, 0xa3, - 0x59, 0xdc, 0x9e, 0xd6, 0x98, 0x3d, 0xfd, 0x6a, 0xdc, 0x9e, 0x66, 0xac, 0x95, 0x37, 0x90, 0xf1, - 0x6d, 0xb8, 0xce, 0xae, 0x39, 0x88, 0xdb, 0x5d, 0x17, 0xda, 0xc9, 0xa5, 0x24, 0x4e, 0x07, 0x77, - 0x38, 0x7a, 0x8e, 0x6e, 0x63, 0x8e, 0xb0, 0xce, 0x61, 0xf7, 0x75, 0x1b, 0xa3, 0xcf, 0x41, 0x95, - 0xd8, 0xbc, 0x9e, 0x69, 0x08, 0xbd, 0x99, 0xa3, 0x36, 0xd0, 0xf0, 0xd1, 0x19, 0x00, 0xfa, 0x4a, - 0x37, 0x0c, 0x8f, 0xf9, 0x23, 0x35, 0xad, 0x46, 0x20, 0x37, 0x08, 0x40, 0xfd, 0x23, 0x05, 0xce, - 0x6e, 0x1f, 0x38, 0xfd, 0xfb, 0xf8, 0xd9, 0x86, 0x87, 0xf5, 0x00, 0x47, 0x3b, 0xdf, 0x73, 0x96, - 0x56, 0xb4, 0x02, 0xf5, 0x98, 0x01, 0xe4, 0xda, 0x1c, 0x07, 0xa9, 0xff, 0xa9, 0x40, 0x83, 0x6c, - 0xc6, 0xf7, 0x70, 0xa0, 0x13, 0xcd, 0x42, 0x5f, 0x81, 0x9a, 0xe5, 0xea, 0x46, 0x2f, 0x38, 0x18, - 0x32, 0x7a, 0x5a, 0x69, 0x7a, 0xa2, 0x3d, 0xfc, 0xe1, 0xc1, 0x10, 0x6b, 0x55, 0x8b, 0xff, 0x9a, - 0x8a, 0xa6, 0xa4, 0xa1, 0x2e, 0x66, 0x6c, 0x37, 0xe7, 0xa1, 0x6e, 0xe3, 0xc0, 0x33, 0xfb, 0x8c, - 0x0c, 0xe2, 0xbb, 0xd5, 0x6e, 0x16, 0x3a, 0x8a, 0x06, 0x0c, 0x4c, 0x91, 0x9d, 0x82, 0x39, 0x63, - 0x87, 0xf1, 0xab, 0x4c, 0xf9, 0x55, 0x31, 0x76, 0x28, 0xab, 0xa8, 0xc7, 0x12, 0x17, 0x5e, 0xea, - 0xb1, 0xd4, 0x88, 0xc7, 0x12, 0x93, 0x0c, 0xf5, 0x8f, 0x2b, 0x70, 0xf2, 0x7d, 0x3d, 0xe8, 0xef, - 0x6d, 0xda, 0xc2, 0xb5, 0x9c, 0x85, 0x1f, 0xd1, 0x16, 0x59, 0x88, 0x6f, 0x91, 0xc7, 0xb6, 0x05, - 0x87, 0x46, 0xb2, 0x9c, 0x6d, 0x24, 0x0d, 0x3d, 0xd0, 0xd7, 0x1e, 0x71, 0x91, 0x8d, 0x19, 0xc9, - 0x98, 0x07, 0x58, 0x39, 0x9a, 0x07, 0x78, 0x0b, 0x9a, 0xf8, 0x83, 0xbe, 0x35, 0x22, 0xd2, 0x4f, - 0x29, 0x60, 0xae, 0xdd, 0x4a, 0x26, 0x05, 0x71, 0x2b, 0xdd, 0xe0, 0xdd, 0xb6, 0x38, 0x1d, 0x4c, - 0xb2, 0x6c, 0x1c, 0xe8, 0xd4, 0x7f, 0xab, 0xaf, 0xab, 0xf9, 0x92, 0x25, 0x04, 0x92, 0x49, 0x17, - 0x79, 0x42, 0xa7, 0xa1, 0xc6, 0x7d, 0xce, 0xad, 0xcd, 0x4e, 0x8d, 0x2e, 0x63, 0x04, 0x40, 0x7d, - 0x68, 0xf2, 0x8d, 0x8c, 0x53, 0xc9, 0xfc, 0xba, 0xb7, 0xb3, 0x51, 0x64, 0x33, 0x3e, 0x4e, 0x3d, - 0xb7, 0x54, 0x0d, 0x3f, 0x06, 0x42, 0x9f, 0x87, 0xa6, 0xbb, 0xbb, 0x6b, 0x99, 0x0e, 0xbe, 0xcf, - 0x78, 0x5d, 0xa7, 0x64, 0xc8, 0x40, 0xe2, 0xa7, 0xee, 0x63, 0xcf, 0x37, 0x5d, 0xa7, 0xd3, 0xa0, - 0xef, 0xc5, 0x63, 0x96, 0xfb, 0xd9, 0x3c, 0x92, 0xfb, 0xa9, 0xc3, 0x42, 0x8a, 0xd6, 0x0c, 0xf7, - 0xf3, 0x8b, 0xb2, 0xb9, 0x9c, 0xcc, 0xb2, 0x98, 0xa1, 0xfc, 0x4b, 0x05, 0x96, 0xdf, 0x73, 0xfc, - 0xd1, 0x4e, 0xb8, 0x4c, 0x9f, 0x94, 0x7a, 0x24, 0xcd, 0x73, 0x29, 0x65, 0x9e, 0xd5, 0x9f, 0x55, - 0x60, 0x9e, 0xcf, 0x83, 0x48, 0x0f, 0x35, 0x65, 0xa7, 0xa1, 0x16, 0xba, 0x36, 0x7c, 0x51, 0x22, - 0x40, 0xd2, 0x36, 0x16, 0x52, 0xb6, 0x71, 0x2a, 0xd2, 0x84, 0xbb, 0x5a, 0x8a, 0xb9, 0xab, 0x67, - 0x00, 0x76, 0xad, 0x91, 0xbf, 0xd7, 0x0b, 0x4c, 0x6e, 0x9b, 0x8a, 0x5a, 0x8d, 0x42, 0x1e, 0x9a, - 0x36, 0x46, 0x1b, 0xd0, 0xd8, 0x31, 0x1d, 0xcb, 0x1d, 0xf4, 0x86, 0x7a, 0xb0, 0xe7, 0xf3, 0x1c, - 0x46, 0x36, 0x6b, 0x68, 0x88, 0x71, 0x93, 0xb6, 0xd6, 0xea, 0xac, 0xd7, 0x03, 0xd2, 0x09, 0x9d, - 0x85, 0xba, 0x33, 0xb2, 0x7b, 0xee, 0x6e, 0xcf, 0x73, 0x9f, 0xf9, 0x34, 0x53, 0x51, 0xd4, 0x6a, - 0xce, 0xc8, 0xfe, 0xfa, 0xae, 0xe6, 0x3e, 0x23, 0x4e, 0x45, 0x8d, 0xb8, 0x17, 0xbe, 0xe5, 0x0e, - 0x58, 0x96, 0x62, 0x1a, 0x0c, 0x51, 0x17, 0xd2, 0xdf, 0xc0, 0x56, 0xa0, 0xd3, 0xfe, 0xb5, 0x69, - 0xfb, 0x87, 0x5d, 0xd0, 0x4b, 0xd0, 0xea, 0xbb, 0xf6, 0x50, 0xa7, 0xeb, 0x74, 0xdb, 0x73, 0x6d, - 0xaa, 0x8e, 0x45, 0x2d, 0x01, 0x45, 0xb7, 0xa0, 0x1e, 0x29, 0x84, 0xdf, 0xa9, 0x53, 0x4c, 0x9f, - 0xcf, 0xd6, 0xd9, 0x58, 0xbc, 0x45, 0x44, 0x15, 0x42, 0x8d, 0xf0, 0xd1, 0x05, 0x10, 0x7a, 0xda, - 0xf3, 0xcd, 0x0f, 0x31, 0x53, 0x3b, 0xba, 0x63, 0xd4, 0x39, 0x7c, 0xdb, 0xfc, 0x90, 0xee, 0x0c, - 0xa6, 0xe3, 0x63, 0x2f, 0x10, 0xf9, 0x85, 0x4e, 0x93, 0xed, 0x0c, 0x0c, 0xca, 0xc5, 0x1c, 0xdd, - 0x86, 0x96, 0x1f, 0xe8, 0x5e, 0xd0, 0x1b, 0xba, 0x3e, 0x15, 0x86, 0x4e, 0x8b, 0x4a, 0x7a, 0x4a, - 0x49, 0x6d, 0x7f, 0x40, 0xc4, 0xfc, 0x01, 0x6f, 0xa6, 0x35, 0x69, 0x37, 0xf1, 0x48, 0xc6, 0xa1, - 0x2b, 0x12, 0x8d, 0x33, 0x3f, 0xe5, 0x38, 0xb4, 0x5b, 0x38, 0xce, 0x2a, 0xf1, 0xc6, 0x74, 0x43, - 0xdf, 0xb1, 0xf0, 0x23, 0x6e, 0x57, 0xda, 0x94, 0xe1, 0x49, 0x30, 0xd9, 0x24, 0x2c, 0xbc, 0x8f, - 0xad, 0xce, 0x02, 0xdd, 0xb9, 0x5f, 0x1c, 0xa7, 0xef, 0x77, 0x49, 0x43, 0x8d, 0xb5, 0x27, 0xfc, - 0xf2, 0x03, 0xd7, 0xd3, 0x07, 0x21, 0x06, 0x44, 0x31, 0x24, 0xa0, 0xea, 0xbf, 0x14, 0xa1, 0x25, - 0xf3, 0x81, 0x58, 0x3b, 0x16, 0xa5, 0x0b, 0x25, 0x13, 0x8f, 0x44, 0x6f, 0xb1, 0x43, 0xc8, 0x63, - 0x49, 0x01, 0xaa, 0x63, 0x55, 0xad, 0xce, 0x60, 0x74, 0x00, 0xa2, 0x2b, 0x8c, 0xff, 0x54, 0xb1, - 0x8b, 0x94, 0x1b, 0x35, 0x0a, 0xa1, 0x5b, 0x79, 0x07, 0xe6, 0x44, 0x3e, 0x81, 0x69, 0x98, 0x78, - 0x24, 0x6f, 0x76, 0x46, 0x26, 0xc5, 0xca, 0x34, 0x4c, 0x3c, 0xa2, 0xdb, 0xd0, 0x60, 0x43, 0x0e, - 0x75, 0x4f, 0xb7, 0x85, 0x7e, 0x9d, 0xcf, 0xb1, 0x52, 0xef, 0xe2, 0x83, 0x47, 0xc4, 0xe4, 0x3d, - 0xd0, 0x4d, 0x4f, 0x63, 0xb2, 0xf8, 0x80, 0xf6, 0x43, 0xab, 0xd0, 0x66, 0xe3, 0xec, 0x9a, 0x16, - 0xe6, 0xba, 0x3a, 0xc7, 0x92, 0x0a, 0x14, 0x7e, 0xdb, 0xb4, 0x30, 0x53, 0xc6, 0x70, 0x12, 0x54, - 0xf6, 0xaa, 0x4c, 0x17, 0x29, 0x84, 0x4a, 0xdd, 0x79, 0x60, 0xc6, 0xbb, 0x27, 0x36, 0x05, 0xb6, - 0x77, 0x31, 0x2a, 0x05, 0xe7, 0x88, 0x7f, 0x39, 0xb2, 0x99, 0x36, 0x03, 0x9b, 0x90, 0x33, 0xb2, - 0xa9, 0x2e, 0xaf, 0xc3, 0x72, 0x7f, 0xe4, 0x79, 0x6c, 0x67, 0x8b, 0x8f, 0x53, 0xa7, 0x89, 0x98, - 0x45, 0xfe, 0x72, 0x2b, 0x3e, 0xdc, 0x1a, 0x2c, 0x72, 0x92, 0x02, 0xd7, 0xc3, 0x3d, 0x79, 0x3b, - 0x62, 0xa7, 0x2b, 0xdb, 0xe4, 0x8d, 0xe0, 0xeb, 0x8f, 0xcb, 0xb0, 0x48, 0x0c, 0x27, 0x97, 0x8d, - 0x99, 0x3c, 0xa1, 0x33, 0x00, 0x86, 0x1f, 0xf4, 0x24, 0x73, 0x5f, 0x33, 0xfc, 0x80, 0xef, 0x8e, - 0x5f, 0x11, 0x8e, 0x4c, 0x71, 0x5c, 0x78, 0x9c, 0x30, 0xe6, 0x69, 0x67, 0xe6, 0x88, 0x99, 0xe6, - 0xf3, 0xd0, 0xe4, 0xae, 0xa1, 0x94, 0xd0, 0x68, 0x30, 0xe0, 0xfd, 0xec, 0x4d, 0xa9, 0x92, 0x99, - 0xf3, 0x8e, 0xb9, 0x33, 0x73, 0xb3, 0xba, 0x33, 0xd5, 0xa4, 0x3b, 0xf3, 0x0e, 0xcc, 0xcb, 0xb6, - 0x43, 0x98, 0xe1, 0x89, 0xc6, 0xa3, 0x25, 0x19, 0x0f, 0x3f, 0xee, 0x8d, 0x80, 0xec, 0x8d, 0x9c, - 0x87, 0xa6, 0x83, 0xb1, 0xd1, 0x0b, 0x3c, 0xdd, 0xf1, 0x77, 0xb1, 0x47, 0x05, 0xaa, 0xaa, 0x35, - 0x08, 0xf0, 0x21, 0x87, 0xa1, 0xb7, 0x01, 0xe8, 0x3c, 0x59, 0x9a, 0xb4, 0x31, 0x2e, 0x4d, 0x4a, - 0x05, 0x88, 0xa6, 0x49, 0xe9, 0xd2, 0xd0, 0x9f, 0xc7, 0xe6, 0xf2, 0xa0, 0x17, 0xa0, 0x66, 0xe9, - 0x1f, 0x1e, 0xf4, 0xc8, 0xd0, 0xd4, 0x20, 0x57, 0xb5, 0x2a, 0x01, 0x10, 0xac, 0xea, 0xef, 0x17, - 0xe1, 0x24, 0xcf, 0xa6, 0x1d, 0x87, 0x08, 0xe7, 0x79, 0x2b, 0x62, 0xbb, 0x2f, 0x8e, 0xc9, 0x4e, - 0x95, 0xa6, 0x70, 0xf0, 0xcb, 0x19, 0x0e, 0xbe, 0x9c, 0x9b, 0xa9, 0xa4, 0x72, 0x33, 0x61, 0xaa, - 0x7a, 0xee, 0x30, 0xa9, 0x6a, 0xb4, 0x04, 0x65, 0x9a, 0x28, 0xa0, 0x22, 0x56, 0xd3, 0xd8, 0xc3, - 0x74, 0xac, 0xbf, 0x0e, 0xd0, 0xdf, 0xc3, 0xfd, 0x27, 0x43, 0xd7, 0x74, 0x02, 0xca, 0xfa, 0x29, - 0xc4, 0x2f, 0xd6, 0x45, 0xfd, 0x7e, 0x01, 0x9a, 0xdb, 0x58, 0xf7, 0xfa, 0x7b, 0x82, 0x19, 0x5f, - 0x8a, 0x9f, 0x0f, 0xbc, 0x94, 0x7b, 0x3e, 0x20, 0x75, 0xfa, 0x0c, 0x1d, 0x0c, 0x10, 0x14, 0x81, - 0x1b, 0xe8, 0x21, 0x9d, 0x3d, 0x67, 0x64, 0xf3, 0x84, 0xf9, 0x3c, 0x7d, 0xc1, 0x89, 0xbd, 0x3f, - 0xb2, 0xd5, 0xff, 0x50, 0xa0, 0xf1, 0xf3, 0x64, 0x18, 0xb1, 0x38, 0xd7, 0xe2, 0x8b, 0xb3, 0x9a, - 0xbb, 0x38, 0x1a, 0x89, 0x81, 0xf1, 0x3e, 0xfe, 0x0c, 0x9e, 0x9b, 0xfc, 0xbd, 0x02, 0xdd, 0xed, - 0x03, 0xa7, 0xaf, 0x31, 0x3b, 0x77, 0x1c, 0xaa, 0x7a, 0x1e, 0x9a, 0xfb, 0x52, 0x74, 0x50, 0xa0, - 0x72, 0xde, 0xd8, 0x8f, 0x67, 0x6f, 0x1e, 0x42, 0x5b, 0x1c, 0x62, 0xf0, 0x09, 0x8b, 0xed, 0xe7, - 0x95, 0x6c, 0xca, 0x13, 0x04, 0x52, 0x7b, 0x34, 0xef, 0xc9, 0x40, 0xf5, 0x77, 0x14, 0x58, 0xcc, - 0x68, 0x88, 0x4e, 0xc1, 0x1c, 0xcf, 0x15, 0x71, 0x8f, 0x88, 0x99, 0x0f, 0x83, 0x30, 0x29, 0x4a, - 0x15, 0x9b, 0x46, 0x3a, 0xe8, 0x30, 0xd0, 0x39, 0xa8, 0x87, 0x61, 0xac, 0x91, 0xe2, 0x92, 0xe1, - 0xa3, 0x2e, 0x54, 0xb9, 0xfd, 0x16, 0x79, 0x82, 0xf0, 0x59, 0xb5, 0x01, 0xdd, 0xc1, 0xd1, 0x9e, - 0x39, 0xdb, 0xaa, 0x46, 0x06, 0x2c, 0x22, 0x35, 0x6e, 0xd5, 0x0c, 0xf5, 0xdf, 0x15, 0x58, 0x94, - 0xf0, 0xcd, 0x96, 0x08, 0x8d, 0xf6, 0xf6, 0xc2, 0xd1, 0xf6, 0x76, 0x29, 0x77, 0x55, 0x3c, 0x64, - 0xee, 0xea, 0x2c, 0x40, 0xc8, 0x07, 0xb1, 0xb2, 0x31, 0x88, 0xfa, 0x13, 0x05, 0x4e, 0xbe, 0xa3, - 0x3b, 0x86, 0xbb, 0xbb, 0x7b, 0x1c, 0x62, 0x7b, 0x0b, 0xa4, 0xcc, 0xc2, 0xf4, 0xa9, 0x6f, 0x39, - 0x21, 0xf1, 0x2a, 0x2c, 0x78, 0x6c, 0xdb, 0x33, 0x64, 0xc9, 0x2e, 0x6a, 0x6d, 0xf1, 0x22, 0x94, - 0xd7, 0xbf, 0x2e, 0x00, 0x22, 0x33, 0xbf, 0xa9, 0x5b, 0xba, 0xd3, 0xc7, 0xb3, 0x90, 0x7f, 0x01, - 0x5a, 0x92, 0x1b, 0x15, 0x96, 0xac, 0xc4, 0xfd, 0x28, 0x1f, 0xdd, 0x83, 0xd6, 0x0e, 0x43, 0xd6, - 0xf3, 0xb0, 0xee, 0xbb, 0x0e, 0x67, 0x4b, 0x4e, 0x8e, 0xfb, 0xa1, 0x67, 0x0e, 0x06, 0xd8, 0xdb, - 0x70, 0x1d, 0x83, 0x07, 0x42, 0x3b, 0x82, 0x54, 0xd2, 0x99, 0x28, 0x47, 0xe4, 0x59, 0x86, 0x4c, - 0x0a, 0x5d, 0x4b, 0xba, 0x1c, 0x3e, 0xd6, 0xad, 0x68, 0x31, 0xa2, 0xcd, 0xb6, 0xcd, 0x5e, 0x6c, - 0xe7, 0x1f, 0x76, 0x64, 0x78, 0x79, 0xea, 0xdf, 0x28, 0x80, 0xc2, 0xfc, 0x07, 0x4d, 0x1a, 0x51, - 0x0d, 0x4f, 0x76, 0x55, 0x32, 0xf6, 0xfc, 0xd3, 0x50, 0x33, 0x44, 0x4f, 0x6e, 0x94, 0x22, 0x00, - 0xdd, 0x80, 0x29, 0xd1, 0xd4, 0x9f, 0xc1, 0x86, 0xc8, 0x2e, 0x30, 0xe0, 0x5d, 0x0a, 0x93, 0x5d, - 0xc4, 0x52, 0xd2, 0x45, 0x8c, 0xa7, 0xa4, 0xcb, 0x52, 0x4a, 0x5a, 0xfd, 0x61, 0x01, 0xda, 0x74, - 0x6b, 0xd9, 0x88, 0xf2, 0x81, 0x53, 0x11, 0x7d, 0x1e, 0x9a, 0xbc, 0x08, 0x4c, 0x22, 0xbc, 0xf1, - 0x34, 0x36, 0x18, 0xba, 0x02, 0x4b, 0xac, 0x91, 0x87, 0xfd, 0x91, 0x15, 0x05, 0xd3, 0x2c, 0x7c, - 0x43, 0x4f, 0xd9, 0x9e, 0x46, 0x5e, 0x89, 0x1e, 0xef, 0xc3, 0xc9, 0x81, 0xe5, 0xee, 0xe8, 0x56, - 0x4f, 0x66, 0x0f, 0xe3, 0xe1, 0x54, 0x72, 0xbf, 0xc4, 0x06, 0xd8, 0x8e, 0x73, 0xd1, 0x47, 0x9b, - 0xd0, 0xf4, 0x31, 0x7e, 0x12, 0x45, 0xd8, 0xe5, 0xe9, 0xbc, 0x94, 0x06, 0xe9, 0x25, 0x9e, 0xd4, - 0x3f, 0x51, 0x60, 0x3e, 0x71, 0x1e, 0x97, 0xcc, 0x0f, 0x29, 0xe9, 0xfc, 0xd0, 0x35, 0x28, 0x13, - 0xcb, 0xc5, 0x76, 0x9c, 0x56, 0x5e, 0xd6, 0x42, 0x1e, 0x57, 0x63, 0x5d, 0xd0, 0x65, 0x58, 0xcc, - 0xa8, 0x0a, 0xe2, 0x42, 0x80, 0xd2, 0x45, 0x41, 0xea, 0x47, 0x25, 0xa8, 0xc7, 0x96, 0x63, 0x42, - 0x72, 0xeb, 0x58, 0x0e, 0x07, 0xf2, 0xaa, 0x3f, 0x88, 0xe0, 0xd9, 0xd8, 0x66, 0xd1, 0x2e, 0x0f, - 0xbe, 0x6d, 0x6c, 0xd3, 0x58, 0x37, 0x1e, 0xc6, 0x56, 0xe4, 0x30, 0x56, 0x0e, 0xf5, 0xe7, 0xc6, - 0x84, 0xfa, 0x55, 0x39, 0xd4, 0x97, 0x14, 0xa9, 0x96, 0x54, 0xa4, 0x69, 0x33, 0x4d, 0x57, 0x60, - 0xb1, 0xcf, 0x8e, 0x5f, 0x6e, 0x1e, 0x6c, 0x84, 0xaf, 0xb8, 0xdf, 0x9b, 0xf5, 0x0a, 0xbd, 0x13, - 0x65, 0x94, 0x19, 0x9f, 0x59, 0xf0, 0x93, 0x97, 0x49, 0xe0, 0xdc, 0x61, 0x6c, 0x16, 0x56, 0x9a, - 0x3e, 0x25, 0xb3, 0x5c, 0xcd, 0x23, 0x66, 0xb9, 0xce, 0x41, 0x5d, 0x78, 0x31, 0x44, 0xe7, 0x5b, - 0xcc, 0xfc, 0x09, 0x83, 0x60, 0xf8, 0x92, 0x45, 0x98, 0x97, 0x0f, 0xa9, 0x92, 0xb9, 0x98, 0x76, - 0x3a, 0x17, 0x73, 0x0a, 0xe6, 0x4c, 0xbf, 0xb7, 0xab, 0x3f, 0xc1, 0x34, 0x7d, 0x54, 0xd5, 0x2a, - 0xa6, 0x7f, 0x5b, 0x7f, 0x82, 0xd5, 0x7f, 0x2d, 0x42, 0x2b, 0xda, 0x74, 0xa7, 0xb6, 0x25, 0xd3, - 0x54, 0xc7, 0x3d, 0x80, 0x76, 0xe4, 0x11, 0xd1, 0x55, 0x9e, 0x90, 0x17, 0x48, 0x1e, 0x9b, 0xcf, - 0x0f, 0x13, 0x7a, 0x2b, 0x39, 0x01, 0xa5, 0x43, 0x3a, 0x01, 0x33, 0x57, 0xcb, 0xbc, 0x0e, 0xcb, - 0xe1, 0x7e, 0x2c, 0x4d, 0x9e, 0xc5, 0x73, 0x4b, 0xe2, 0xe5, 0x83, 0xf8, 0x22, 0xe4, 0x18, 0x83, - 0xb9, 0x3c, 0x63, 0x90, 0x14, 0x84, 0x6a, 0x4a, 0x10, 0xd2, 0x45, 0x3b, 0xb5, 0x8c, 0xa2, 0x1d, - 0xf5, 0x3d, 0x58, 0xa4, 0x19, 0x7e, 0xbf, 0xef, 0x99, 0x3b, 0x38, 0x0c, 0x14, 0xa6, 0x61, 0x6e, - 0x17, 0xaa, 0x89, 0x58, 0x23, 0x7c, 0x56, 0xbf, 0xab, 0xc0, 0xc9, 0xf4, 0xb8, 0x54, 0x6e, 0x22, - 0x93, 0xa2, 0x48, 0x26, 0xe5, 0x9b, 0xb0, 0x18, 0xf3, 0x37, 0xa5, 0x91, 0x73, 0x7d, 0xf4, 0x0c, - 0xd2, 0x35, 0x14, 0x8d, 0x22, 0x60, 0xea, 0x47, 0x4a, 0x78, 0x58, 0x42, 0x60, 0x03, 0x7a, 0x1e, - 0x45, 0x76, 0x3a, 0xd7, 0xb1, 0x4c, 0x27, 0x4c, 0x04, 0xf1, 0x59, 0x32, 0x20, 0x4f, 0x04, 0x7d, - 0x0d, 0xe6, 0x79, 0xa3, 0x70, 0xc3, 0x9a, 0xda, 0x51, 0x6b, 0xb1, 0x9e, 0xe1, 0x56, 0x75, 0x01, - 0x5a, 0xfc, 0x98, 0x48, 0x60, 0x2c, 0x66, 0x1d, 0x1e, 0xdd, 0x85, 0xb6, 0x68, 0x76, 0xf8, 0x4d, - 0x72, 0x9e, 0x77, 0x0d, 0x5d, 0xbe, 0xdf, 0x56, 0xa0, 0x23, 0x6f, 0x99, 0xb1, 0x25, 0x38, 0x8a, - 0xe3, 0xf7, 0x96, 0x5c, 0xab, 0xf1, 0xf2, 0x58, 0x9a, 0x22, 0x5c, 0xa2, 0x62, 0xe3, 0x7b, 0x05, - 0x5a, 0x82, 0x43, 0x02, 0xc3, 0x4d, 0xd3, 0x0f, 0x3c, 0x73, 0x67, 0x34, 0xeb, 0x41, 0x78, 0x1f, - 0xea, 0x51, 0xca, 0x41, 0xd0, 0x75, 0x23, 0x9b, 0xae, 0x7c, 0xd4, 0x6b, 0x1b, 0xd1, 0x18, 0xec, - 0xe4, 0x2f, 0x3e, 0x6a, 0xb7, 0x07, 0xed, 0x64, 0x83, 0x8c, 0xea, 0x84, 0x37, 0xe4, 0xe3, 0xb6, - 0x89, 0x5e, 0x48, 0xec, 0xb4, 0xed, 0xc7, 0x05, 0x78, 0x21, 0x93, 0xba, 0xd9, 0x62, 0xaa, 0xbc, - 0x44, 0xd6, 0x26, 0x54, 0x13, 0x81, 0xf0, 0xea, 0x58, 0x4e, 0xf2, 0x3c, 0x31, 0x4b, 0x61, 0xfa, - 0x91, 0xf7, 0x15, 0x19, 0x81, 0xd2, 0xb8, 0x51, 0xb8, 0x2e, 0x4a, 0xa3, 0x88, 0x9e, 0x68, 0x03, - 0x1a, 0x2c, 0xd9, 0xd0, 0xdb, 0x37, 0xf1, 0x33, 0x71, 0xc0, 0xbd, 0x92, 0x63, 0xb4, 0x69, 0xcb, - 0x47, 0x26, 0x7e, 0xa6, 0xd5, 0xad, 0xf0, 0xb7, 0xaf, 0xfe, 0xb4, 0x04, 0x10, 0xbd, 0x23, 0xd1, - 0x5c, 0x64, 0x09, 0xb8, 0x6a, 0xc7, 0x20, 0xc4, 0xdb, 0x90, 0x3d, 0x5c, 0xf1, 0x88, 0x1e, 0x46, - 0x47, 0x49, 0x86, 0xe9, 0x07, 0x7c, 0x75, 0xae, 0x4e, 0xa2, 0x46, 0x2c, 0x14, 0x61, 0x1e, 0x97, - 0x1f, 0x3f, 0x82, 0xa0, 0x4b, 0x80, 0x06, 0x9e, 0xfb, 0xcc, 0x74, 0x06, 0xf1, 0xc8, 0x84, 0x05, - 0x30, 0x0b, 0xfc, 0x4d, 0x2c, 0x34, 0x79, 0x0c, 0xed, 0x44, 0x73, 0xb1, 0x2c, 0x6f, 0x4c, 0x24, - 0xe4, 0x8e, 0x34, 0x1a, 0x17, 0xe6, 0x79, 0x19, 0x07, 0x3d, 0xc9, 0x7e, 0xa8, 0x7b, 0x03, 0x2c, - 0x38, 0xcb, 0xbd, 0x35, 0x19, 0x88, 0x2e, 0xc1, 0x22, 0x3f, 0x66, 0x14, 0xe4, 0xc4, 0x8e, 0x1b, - 0xdb, 0xf4, 0xb8, 0x91, 0xa3, 0x23, 0x2e, 0x5e, 0x57, 0x87, 0x76, 0x72, 0x19, 0x32, 0x0e, 0xa5, - 0xdf, 0x94, 0xb5, 0x64, 0xbc, 0x59, 0x23, 0x03, 0xc5, 0xf4, 0xa4, 0xdb, 0x87, 0xa5, 0xac, 0x09, - 0x66, 0xa0, 0x99, 0x41, 0x19, 0xaf, 0x87, 0xbe, 0x36, 0x65, 0x5e, 0xde, 0xa6, 0x15, 0xcb, 0xac, - 0x17, 0xa4, 0xcc, 0xba, 0xfa, 0x6b, 0x45, 0x40, 0x69, 0xcd, 0x41, 0x2d, 0x28, 0x84, 0x83, 0x14, - 0xb6, 0x36, 0x13, 0x52, 0x5a, 0x48, 0x49, 0xe9, 0x69, 0xa8, 0x85, 0x4e, 0x04, 0xdf, 0x2d, 0x22, - 0x40, 0x5c, 0x86, 0x4b, 0xb2, 0x0c, 0xc7, 0x08, 0x2b, 0xcb, 0x29, 0xff, 0x2b, 0xb0, 0x64, 0xe9, - 0x7e, 0xd0, 0x63, 0x67, 0x0b, 0x81, 0x69, 0x63, 0x3f, 0xd0, 0x6d, 0x56, 0x21, 0x53, 0xd2, 0x10, - 0x79, 0xb7, 0x49, 0x5e, 0x3d, 0x14, 0x6f, 0xd0, 0x23, 0xe1, 0xb6, 0x13, 0x03, 0xce, 0x4b, 0x3f, - 0xde, 0x9c, 0xd6, 0x56, 0x44, 0xd9, 0x7c, 0x26, 0x86, 0xb5, 0xd0, 0x9b, 0xed, 0xee, 0x40, 0x4b, - 0x7e, 0x99, 0xc1, 0xc2, 0x6b, 0x32, 0x0b, 0xa7, 0xf3, 0x98, 0x63, 0x7c, 0xdc, 0x03, 0x94, 0xb6, - 0x3c, 0xf1, 0x75, 0x53, 0xe4, 0x75, 0x9b, 0xc4, 0x8f, 0xd8, 0xba, 0x16, 0x65, 0x86, 0xff, 0x43, - 0x11, 0x50, 0xe4, 0x14, 0x86, 0x25, 0x08, 0xd3, 0x78, 0x52, 0x97, 0x61, 0x31, 0xed, 0x32, 0x0a, - 0x6f, 0x19, 0xa5, 0x1c, 0xc6, 0x2c, 0xe7, 0xae, 0x98, 0x55, 0x91, 0xfd, 0xa5, 0x70, 0xc7, 0x60, - 0x5e, 0xf0, 0xca, 0x98, 0x43, 0x1b, 0x79, 0xd3, 0xe8, 0x25, 0x6b, 0xb9, 0x99, 0xe9, 0xb9, 0x96, - 0x63, 0xdb, 0x53, 0xd3, 0x9e, 0x58, 0xc8, 0x2d, 0xf9, 0xe8, 0x95, 0x43, 0xfa, 0xe8, 0xe7, 0xa1, - 0xe9, 0xe1, 0xbe, 0xbb, 0x8f, 0x3d, 0x26, 0xbf, 0xd4, 0x1a, 0x95, 0xb5, 0x06, 0x07, 0x52, 0xc9, - 0x9d, 0xbd, 0x3c, 0xfb, 0x57, 0x8a, 0xb0, 0x10, 0xae, 0xf9, 0xa1, 0xf8, 0x39, 0xb9, 0xb0, 0xe4, - 0xb9, 0x33, 0xf0, 0xdb, 0xd9, 0x0c, 0xfc, 0xf2, 0x84, 0x90, 0x6a, 0x6a, 0xfe, 0x7d, 0x3c, 0x2c, - 0x78, 0x0d, 0xe6, 0xc5, 0x69, 0x89, 0xcb, 0x8a, 0xc8, 0x48, 0x80, 0xeb, 0x3d, 0xa3, 0xee, 0xb3, - 0x88, 0xa8, 0xe6, 0xbc, 0x67, 0xe4, 0xad, 0xaf, 0xfe, 0x5b, 0x01, 0xe6, 0x78, 0x32, 0x3e, 0x65, - 0x67, 0xa7, 0x49, 0x87, 0x2c, 0x41, 0x99, 0x8d, 0xcb, 0xb2, 0xa7, 0xec, 0x21, 0xa3, 0x96, 0xb0, - 0x94, 0x51, 0x4b, 0x48, 0xe9, 0x72, 0x39, 0x5d, 0x3c, 0x15, 0xe7, 0xb9, 0x94, 0x2e, 0xa4, 0x03, - 0x0a, 0x8f, 0x27, 0xdc, 0xb0, 0x84, 0x8e, 0x15, 0x25, 0xbc, 0x3e, 0xf6, 0xf0, 0x61, 0x2d, 0x31, - 0x7b, 0xbe, 0x95, 0xb7, 0xfb, 0x09, 0x70, 0xf7, 0x3b, 0xb0, 0x9c, 0xd9, 0x34, 0xc3, 0x43, 0xfd, - 0x8a, 0x6c, 0x51, 0x2f, 0x8c, 0x75, 0xd7, 0xc4, 0x68, 0x71, 0xa6, 0xfc, 0x63, 0x11, 0x60, 0xfb, - 0xc0, 0xe9, 0xdf, 0x60, 0x16, 0x71, 0x1d, 0x4a, 0x93, 0x2b, 0x45, 0x49, 0x7b, 0xaa, 0xc4, 0xb4, - 0xed, 0x14, 0x0a, 0x22, 0x25, 0xb7, 0x8a, 0xc9, 0xe4, 0x56, 0x5e, 0x5a, 0x2a, 0x7f, 0xd7, 0xfb, - 0x32, 0x94, 0xe8, 0xee, 0x55, 0x19, 0x37, 0xe9, 0x64, 0xc5, 0x01, 0xed, 0x82, 0x56, 0x41, 0xb8, - 0x4e, 0x5b, 0x0e, 0xf3, 0x8d, 0xe8, 0x1e, 0x58, 0xd4, 0x92, 0x60, 0x5a, 0x42, 0x43, 0x23, 0xad, - 0xb0, 0x21, 0x8b, 0xcb, 0x13, 0xd0, 0xb4, 0xe7, 0x55, 0xcb, 0xf2, 0xbc, 0x56, 0x61, 0xde, 0xf0, - 0xdc, 0xe1, 0x30, 0x36, 0x1c, 0xcb, 0x6b, 0x25, 0xc1, 0x89, 0x53, 0xda, 0xfa, 0xe1, 0x4f, 0x69, - 0x7f, 0x5a, 0x84, 0x53, 0x84, 0x45, 0xc7, 0x15, 0x90, 0x4d, 0xa3, 0x6d, 0xb1, 0x3d, 0xb8, 0x28, - 0xef, 0xc1, 0xd7, 0x60, 0x8e, 0xe5, 0xdf, 0x44, 0x48, 0xb1, 0x92, 0x2f, 0x54, 0x4c, 0x08, 0x35, - 0xd1, 0x61, 0xf6, 0xf4, 0x8d, 0x54, 0xd4, 0x51, 0x99, 0xb5, 0xa8, 0x63, 0x2e, 0x99, 0xb1, 0x8f, - 0x49, 0x68, 0x75, 0x62, 0x61, 0x68, 0xed, 0x28, 0x55, 0x12, 0xea, 0x1f, 0x2a, 0xd0, 0x94, 0x2a, - 0xe0, 0x11, 0x82, 0x52, 0xac, 0xa8, 0x9d, 0xfe, 0x46, 0x67, 0xa1, 0xda, 0xd7, 0x87, 0x7a, 0xdf, - 0x0c, 0x0e, 0x28, 0x7b, 0xca, 0xb4, 0x56, 0x2e, 0x84, 0xe5, 0x18, 0xc3, 0xb7, 0xa1, 0xd2, 0xa7, - 0xf5, 0xf4, 0xbc, 0xf8, 0x66, 0xda, 0xea, 0x7b, 0xde, 0x4b, 0xfd, 0x48, 0x81, 0x93, 0xa2, 0xb8, - 0x80, 0xdb, 0xb8, 0x59, 0xe4, 0x6c, 0x1d, 0x96, 0xb9, 0x65, 0x4e, 0x98, 0x68, 0x16, 0xd1, 0x2d, - 0x32, 0x98, 0xbc, 0x18, 0xeb, 0xb0, 0x1c, 0x50, 0xb5, 0x49, 0xf6, 0x61, 0x52, 0xb8, 0xc8, 0x5e, - 0xca, 0x7d, 0xa6, 0x29, 0xf0, 0x38, 0xc7, 0xea, 0x31, 0x39, 0xab, 0xb9, 0xfd, 0x01, 0x67, 0x64, - 0xf3, 0x79, 0xaa, 0x07, 0x70, 0x9a, 0x7d, 0xd7, 0xb3, 0x23, 0x53, 0x34, 0xe3, 0x21, 0x5c, 0xe6, - 0xcc, 0x13, 0x85, 0xee, 0x7f, 0xa6, 0xc0, 0x99, 0x1c, 0xdc, 0xb3, 0x25, 0x17, 0xee, 0x67, 0xe2, - 0xcf, 0x4d, 0x0a, 0x49, 0xb8, 0x99, 0xec, 0xca, 0x84, 0xfe, 0x57, 0x19, 0x16, 0x52, 0x8d, 0x8e, - 0x24, 0xbf, 0xaf, 0x01, 0x22, 0xec, 0x08, 0xbf, 0x76, 0xa7, 0x5b, 0x2f, 0xf7, 0xb2, 0x48, 0xd8, - 0x1a, 0x7e, 0xe9, 0x4e, 0xb6, 0x38, 0xf4, 0x84, 0xb5, 0x66, 0x07, 0x71, 0x21, 0x0f, 0x4b, 0xe3, - 0x3e, 0x60, 0x4c, 0x91, 0xb9, 0x76, 0x7f, 0x64, 0xb3, 0x53, 0x3b, 0xce, 0x71, 0xbe, 0x59, 0x3b, - 0x09, 0x30, 0xda, 0x83, 0x05, 0x1a, 0x52, 0x8f, 0x82, 0x81, 0x4b, 0x02, 0x6a, 0x4a, 0x19, 0xf3, - 0xcf, 0xbe, 0x7a, 0x08, 0x5c, 0x5f, 0xe7, 0xfd, 0xc9, 0x04, 0x78, 0x88, 0xef, 0xc8, 0x50, 0x81, - 0xc9, 0x74, 0xfa, 0xae, 0x1d, 0x62, 0xaa, 0x1c, 0x1a, 0xd3, 0x16, 0xef, 0x2f, 0x63, 0x8a, 0x43, - 0x63, 0x86, 0x61, 0xee, 0x28, 0x86, 0x81, 0x84, 0xea, 0xcc, 0xdc, 0x54, 0xb3, 0x6d, 0x1e, 0x17, - 0xbf, 0xc8, 0x1f, 0xa1, 0xad, 0xbb, 0x1b, 0xb0, 0x9c, 0xb9, 0xea, 0x93, 0xbc, 0xcc, 0x72, 0x3c, - 0xa1, 0x70, 0x13, 0x96, 0xb2, 0x96, 0xf3, 0x08, 0x63, 0xa4, 0x16, 0xea, 0x30, 0x63, 0xa8, 0x3f, - 0x2b, 0x40, 0x73, 0x13, 0x5b, 0x38, 0xc0, 0xcf, 0xbb, 0x6e, 0x23, 0x55, 0x86, 0x52, 0x4c, 0x97, - 0xa1, 0xa4, 0xaa, 0x6a, 0x4a, 0x19, 0x55, 0x35, 0x67, 0xc2, 0x82, 0x22, 0x32, 0x4a, 0x59, 0xf6, - 0xd3, 0x0c, 0xf4, 0x16, 0x34, 0x86, 0x9e, 0x69, 0xeb, 0xde, 0x41, 0xef, 0x09, 0x3e, 0xf0, 0xf9, - 0x7e, 0xda, 0xcd, 0xd9, 0x93, 0xb7, 0x36, 0x7d, 0xad, 0xce, 0xdb, 0xbf, 0x8b, 0x0f, 0x68, 0xb9, - 0x52, 0x98, 0x9f, 0x60, 0x95, 0xb7, 0x25, 0x2d, 0x06, 0x89, 0x4a, 0x90, 0xaa, 0x87, 0x2a, 0x41, - 0xfa, 0x0e, 0x9c, 0x24, 0x6e, 0xc3, 0xbe, 0x1e, 0x60, 0x9a, 0xd1, 0x25, 0x5b, 0xd1, 0xd1, 0xd7, - 0xfb, 0x34, 0xd4, 0xfa, 0x6c, 0x14, 0xee, 0xe8, 0x94, 0xb5, 0x08, 0xa0, 0x5a, 0xd0, 0xd9, 0xc4, - 0xfa, 0xc7, 0x85, 0xcd, 0x84, 0x45, 0xe2, 0x02, 0x70, 0x3c, 0xfe, 0x8c, 0xdf, 0x89, 0x86, 0xe3, - 0xb2, 0x54, 0x44, 0x59, 0x8b, 0x41, 0xd4, 0x3f, 0x50, 0x60, 0x49, 0xc6, 0x35, 0xdb, 0x4e, 0x72, - 0x0b, 0x1a, 0x62, 0xf4, 0xc9, 0xd5, 0x30, 0x1b, 0x51, 0x4b, 0x4d, 0xea, 0xa6, 0x62, 0xa8, 0xc7, - 0x5e, 0x92, 0x30, 0x90, 0x97, 0x60, 0x95, 0xb5, 0x82, 0x69, 0xd0, 0xea, 0x4d, 0xec, 0xf7, 0xf9, - 0x2e, 0x49, 0x7f, 0x93, 0x25, 0x15, 0x0c, 0x62, 0x8a, 0x50, 0xd5, 0x22, 0x00, 0x51, 0xd7, 0x5d, - 0x77, 0xe4, 0x18, 0xbc, 0x0c, 0x8e, 0x3d, 0xa8, 0xdf, 0x80, 0x26, 0x0f, 0x16, 0xb8, 0x0b, 0x9e, - 0x8c, 0x37, 0xc3, 0x32, 0xfc, 0xc2, 0xe1, 0xca, 0xf0, 0xd5, 0x20, 0x56, 0x87, 0xc0, 0xc7, 0x9e, - 0x5c, 0x87, 0x70, 0x3d, 0x96, 0xcb, 0x2f, 0x64, 0x17, 0xbb, 0x4b, 0x11, 0x0e, 0x1b, 0x38, 0x4a, - 0xe3, 0xab, 0x7f, 0x51, 0x80, 0x26, 0x0f, 0xf9, 0x22, 0xa4, 0x31, 0x45, 0xcf, 0xfa, 0x1e, 0xf2, - 0x12, 0x20, 0x1e, 0x88, 0xf4, 0x52, 0x5f, 0x14, 0x2f, 0xf0, 0x37, 0xb1, 0x84, 0x76, 0x76, 0xfe, - 0xbb, 0x98, 0x97, 0xff, 0xd6, 0x60, 0x21, 0xb2, 0x50, 0xcc, 0x27, 0x13, 0xe1, 0xc0, 0xa4, 0x73, - 0x61, 0x3e, 0xbb, 0xe8, 0x58, 0x99, 0x01, 0x8e, 0xab, 0x54, 0xe4, 0x07, 0x0a, 0xb4, 0xa3, 0xf0, - 0x81, 0x2f, 0xd7, 0x34, 0x69, 0xa1, 0xbb, 0x61, 0x36, 0x23, 0x9c, 0xd0, 0x58, 0x66, 0x49, 0x0c, - 0xd1, 0x5a, 0xd2, 0xa3, 0x3f, 0x26, 0x13, 0xf9, 0x35, 0xa8, 0x86, 0xe9, 0x12, 0x26, 0x97, 0x85, - 0x50, 0x2e, 0x3b, 0x30, 0xa7, 0x1b, 0x06, 0xbd, 0x4f, 0x86, 0x47, 0x5d, 0xfc, 0x91, 0x56, 0x09, - 0xd3, 0x1a, 0x87, 0x12, 0xaf, 0x12, 0x26, 0x0f, 0xea, 0xd7, 0x98, 0x96, 0xd3, 0x4a, 0x22, 0x32, - 0xe8, 0x0c, 0x26, 0x45, 0xfd, 0xae, 0x02, 0xcb, 0x89, 0xc1, 0x66, 0xb3, 0x19, 0x5f, 0x05, 0xfa, - 0x91, 0x6d, 0xdc, 0x60, 0xe4, 0xe4, 0x1f, 0x42, 0xbf, 0x21, 0xea, 0xa0, 0xda, 0x70, 0xee, 0x0e, - 0x8e, 0x88, 0x39, 0xae, 0xd8, 0x37, 0xe7, 0xbc, 0x4d, 0xfd, 0x5b, 0x05, 0x56, 0xf2, 0xf1, 0xcd, - 0xb6, 0x10, 0x49, 0x2e, 0x13, 0x1f, 0x20, 0xb6, 0x75, 0x8b, 0x4f, 0x92, 0x1b, 0x31, 0xf5, 0xcd, - 0xa9, 0x94, 0x2b, 0x65, 0x57, 0xca, 0xa9, 0xef, 0xc2, 0xf2, 0xf6, 0xc8, 0x1f, 0x62, 0xe7, 0x18, - 0x4a, 0x07, 0x89, 0x50, 0x69, 0xd8, 0x1f, 0xd9, 0xf8, 0x18, 0xc6, 0x7a, 0x0c, 0x88, 0x13, 0x36, - 0xa3, 0x78, 0xe6, 0x32, 0xae, 0x47, 0x43, 0x92, 0x91, 0x8d, 0x9f, 0x17, 0x82, 0xef, 0x15, 0xa2, - 0xa0, 0x98, 0x2f, 0xf9, 0x8c, 0x2e, 0x42, 0x94, 0x3a, 0x2b, 0x24, 0x53, 0x67, 0xa9, 0xaf, 0x5f, - 0x8a, 0x19, 0x5f, 0xbf, 0x9c, 0x87, 0x26, 0x8f, 0x91, 0xa5, 0x34, 0x5b, 0x83, 0x01, 0x79, 0xa3, - 0x17, 0xa1, 0x21, 0xbe, 0x1d, 0xe8, 0xe9, 0x96, 0x45, 0x8d, 0x69, 0x55, 0xab, 0x0b, 0xd8, 0x0d, - 0xcb, 0x42, 0x2b, 0xd0, 0x08, 0x5c, 0xf2, 0x32, 0x4c, 0xd8, 0x92, 0x26, 0x10, 0xb8, 0x37, 0x2c, - 0x8b, 0xe5, 0x46, 0x5f, 0x80, 0x5a, 0xdf, 0x1d, 0x1e, 0xf4, 0x6c, 0x12, 0x99, 0xb0, 0xdb, 0x96, - 0xaa, 0x04, 0x70, 0xcf, 0x35, 0xb0, 0xfa, 0xfd, 0xd8, 0xc2, 0x1c, 0xc3, 0x07, 0xa8, 0xc9, 0x8f, - 0x48, 0x0b, 0xe9, 0x3d, 0xed, 0xb3, 0xb4, 0x3a, 0x7f, 0xaa, 0xc0, 0x8b, 0xd4, 0xd7, 0x39, 0x76, - 0x13, 0x76, 0x6c, 0xab, 0x70, 0xf1, 0x55, 0xa8, 0x85, 0x9f, 0x04, 0xa1, 0x2a, 0x94, 0x6e, 0x8f, - 0x2c, 0xab, 0x7d, 0x02, 0xd5, 0xa0, 0x4c, 0xcf, 0x18, 0xdb, 0x0a, 0xf9, 0x49, 0x33, 0x59, 0xed, - 0xc2, 0xc5, 0x9f, 0x83, 0x5a, 0xe8, 0xab, 0xa3, 0x3a, 0xcc, 0xbd, 0xe7, 0xbc, 0xeb, 0xb8, 0xcf, - 0x9c, 0xf6, 0x09, 0x34, 0x07, 0xc5, 0x1b, 0x96, 0xd5, 0x56, 0x50, 0x13, 0x6a, 0xdb, 0x81, 0x87, - 0x75, 0x12, 0x64, 0xb5, 0x0b, 0xa8, 0x05, 0xf0, 0x8e, 0xe9, 0x07, 0xae, 0x67, 0xf6, 0x75, 0xab, - 0x5d, 0xbc, 0xf8, 0x21, 0xb4, 0xe4, 0xea, 0x30, 0xd4, 0x20, 0x7b, 0x61, 0x70, 0xeb, 0x03, 0xd3, - 0x0f, 0xda, 0x27, 0x48, 0xfb, 0xfb, 0x6e, 0xf0, 0xc0, 0xc3, 0x3e, 0x76, 0x82, 0xb6, 0x82, 0x00, - 0x2a, 0x5f, 0x77, 0x36, 0x4d, 0xff, 0x49, 0xbb, 0x80, 0x16, 0xb9, 0xe3, 0xa5, 0x5b, 0x5b, 0xbc, - 0xdc, 0xaa, 0x5d, 0x24, 0xdd, 0xc3, 0xa7, 0x12, 0x6a, 0x43, 0x23, 0x6c, 0x72, 0xe7, 0xc1, 0x7b, - 0xed, 0x32, 0xa3, 0x9e, 0xfc, 0xac, 0x5c, 0x34, 0xa0, 0x9d, 0x2c, 0x5e, 0x26, 0x63, 0xb2, 0x49, - 0x84, 0xa0, 0xf6, 0x09, 0x32, 0x33, 0x5e, 0x45, 0xde, 0x56, 0xd0, 0x3c, 0xd4, 0x63, 0xf5, 0xd8, - 0xed, 0x02, 0x01, 0xdc, 0xf1, 0x86, 0x7d, 0xce, 0x3e, 0x46, 0x02, 0xe5, 0x2d, 0x59, 0x89, 0xd2, - 0xc5, 0x9b, 0x50, 0x15, 0x07, 0x62, 0xa4, 0x29, 0x5f, 0x22, 0xf2, 0xd8, 0x3e, 0x81, 0x16, 0xa0, - 0x29, 0x5d, 0xab, 0xd4, 0x56, 0x10, 0x82, 0x96, 0x7c, 0x09, 0x5a, 0xbb, 0x70, 0x71, 0x1d, 0x20, - 0x3a, 0x31, 0x22, 0xe4, 0x6c, 0x39, 0xfb, 0xba, 0x65, 0x1a, 0x8c, 0x36, 0xf2, 0x8a, 0xac, 0x2e, - 0x5d, 0x1d, 0x16, 0x59, 0xb7, 0x0b, 0x17, 0xdf, 0x82, 0xaa, 0xc8, 0xe1, 0x13, 0xb8, 0x86, 0x6d, - 0x77, 0x1f, 0x33, 0xce, 0x6c, 0xe3, 0x80, 0xf1, 0xf1, 0x86, 0x8d, 0x1d, 0xa3, 0x5d, 0x20, 0x64, - 0xb0, 0xdb, 0x40, 0x78, 0x26, 0xbb, 0x5d, 0x5c, 0xff, 0xcd, 0x73, 0x00, 0xac, 0x1a, 0xd9, 0x75, - 0x3d, 0x03, 0x0d, 0xe9, 0x57, 0x0a, 0x1b, 0xae, 0x3d, 0x74, 0x1d, 0x51, 0x22, 0xe9, 0xa3, 0x2b, - 0x29, 0x3f, 0x8c, 0x3d, 0xa6, 0x9b, 0xf2, 0xd5, 0xe9, 0xbe, 0x94, 0xd3, 0x23, 0xd1, 0x5c, 0x3d, - 0x81, 0x9e, 0x52, 0x8c, 0x0f, 0x4d, 0x1b, 0x3f, 0x34, 0xfb, 0x4f, 0x44, 0xe5, 0xe8, 0xfa, 0xb8, - 0xeb, 0xc9, 0x12, 0x8d, 0x05, 0xce, 0x0b, 0x39, 0x38, 0xb7, 0x03, 0xcf, 0x74, 0x06, 0x62, 0x27, - 0x57, 0x4f, 0xa0, 0x51, 0xe2, 0x82, 0x34, 0x81, 0xf4, 0x0b, 0xd3, 0xdd, 0x89, 0x76, 0x54, 0xb4, - 0x43, 0x98, 0x4f, 0xdc, 0x4d, 0x89, 0x5e, 0xcb, 0xbb, 0x4f, 0x26, 0xeb, 0x2e, 0xcd, 0xee, 0xa5, - 0x29, 0x5b, 0x87, 0x18, 0x6d, 0x68, 0xc9, 0x97, 0x2a, 0xa2, 0x57, 0xf3, 0x87, 0x48, 0xdd, 0x74, - 0xd5, 0x7d, 0x6d, 0xba, 0xc6, 0x21, 0xba, 0x6f, 0x33, 0x91, 0x9e, 0x8c, 0x2e, 0xf3, 0x8a, 0xb1, - 0xee, 0x78, 0x97, 0x4a, 0x3d, 0x81, 0x0c, 0xb2, 0xdf, 0x27, 0x6e, 0xe5, 0x42, 0x6b, 0x79, 0xe9, - 0xb2, 0xec, 0xeb, 0xbb, 0x26, 0x63, 0xf9, 0x76, 0x52, 0x31, 0xc7, 0xcd, 0x22, 0x75, 0x05, 0xe0, - 0x61, 0x66, 0x11, 0x43, 0x31, 0x7e, 0x16, 0x47, 0xc0, 0x32, 0x64, 0xe7, 0x46, 0x19, 0x17, 0xdb, - 0xa4, 0xc5, 0x3c, 0x3a, 0xb4, 0xc9, 0xbf, 0x07, 0x67, 0x32, 0xc6, 0x03, 0xaa, 0xc8, 0xc9, 0x52, - 0xfd, 0xcb, 0xb9, 0xc5, 0x7e, 0xd9, 0x17, 0x93, 0x75, 0xaf, 0x4c, 0xdf, 0x21, 0x2e, 0xe7, 0xf2, - 0xad, 0x57, 0x79, 0x2c, 0xcb, 0xbc, 0xad, 0x2b, 0x4f, 0xce, 0xb3, 0x2f, 0xd2, 0x52, 0x4f, 0xa0, - 0x6f, 0x48, 0x5b, 0x03, 0x5a, 0xcd, 0x17, 0x0f, 0xd9, 0x8d, 0x9e, 0xbc, 0x86, 0xbf, 0x0c, 0x88, - 0x69, 0xb3, 0xb3, 0x6b, 0x0e, 0x46, 0x9e, 0xce, 0x44, 0x3c, 0xdf, 0x18, 0xa6, 0x1b, 0x0b, 0x54, - 0xaf, 0x1f, 0xaa, 0x4f, 0x38, 0xb5, 0x3e, 0xc0, 0x1d, 0x1c, 0xdc, 0xa3, 0x37, 0xf9, 0xf8, 0xe9, - 0x99, 0x45, 0x76, 0x9f, 0x37, 0x11, 0xe8, 0x5e, 0x99, 0xa2, 0x65, 0x88, 0x64, 0x17, 0xea, 0x77, - 0x70, 0xc0, 0xb3, 0xc2, 0x3e, 0x1a, 0xd3, 0x57, 0xb4, 0x11, 0x68, 0x2e, 0x4e, 0xd3, 0x34, 0x6e, - 0x70, 0x13, 0xf7, 0x81, 0xa1, 0x31, 0xac, 0x4e, 0xdf, 0x54, 0x96, 0x67, 0x70, 0x73, 0x2e, 0x19, - 0x63, 0x33, 0xa3, 0x8e, 0xdf, 0x3b, 0x58, 0xb7, 0x82, 0xbd, 0xdc, 0x99, 0xc5, 0xda, 0x4c, 0x9a, - 0x99, 0xd4, 0x34, 0xc4, 0x63, 0xc2, 0x22, 0xd3, 0x53, 0xf9, 0x34, 0xec, 0x6a, 0xde, 0x20, 0xe9, - 0xb6, 0x53, 0x8b, 0xe4, 0x77, 0x60, 0x29, 0xeb, 0x06, 0x31, 0x74, 0xf5, 0xd0, 0xb7, 0x8d, 0x4d, - 0xc6, 0x85, 0x61, 0x61, 0xd3, 0x73, 0x87, 0xf2, 0xa4, 0x2e, 0xe7, 0x4c, 0x2a, 0xd5, 0x72, 0x6a, - 0x34, 0xbf, 0x00, 0x0d, 0x11, 0xbc, 0xd0, 0x23, 0x92, 0xbc, 0xb5, 0x8f, 0x37, 0x9a, 0x7a, 0xf0, - 0xc7, 0x30, 0x9f, 0x38, 0x47, 0xcd, 0x13, 0xba, 0xec, 0xe3, 0xd6, 0xc9, 0x18, 0x7e, 0x11, 0x10, - 0xbd, 0x64, 0x4e, 0xe6, 0x47, 0x9e, 0x8f, 0x96, 0x6e, 0x2a, 0x10, 0x5d, 0x3d, 0x44, 0x8f, 0x50, - 0xf2, 0x7e, 0x55, 0x81, 0xe5, 0xcc, 0x03, 0xcb, 0xb4, 0x95, 0xe2, 0x49, 0xfe, 0x31, 0x27, 0xab, - 0xdd, 0xd7, 0x0f, 0xd5, 0x27, 0x24, 0x62, 0x00, 0x8d, 0x78, 0x86, 0x1b, 0xe5, 0x7c, 0x84, 0x90, - 0x91, 0x71, 0x4f, 0xeb, 0x59, 0x56, 0xd3, 0x10, 0xd1, 0x63, 0x98, 0x4f, 0x1c, 0x48, 0xe4, 0x31, - 0x33, 0xfb, 0xdc, 0x62, 0x2a, 0x6f, 0x20, 0x75, 0x0c, 0x91, 0xe7, 0x0d, 0xe4, 0x9d, 0x57, 0x4c, - 0xa3, 0xc4, 0x4d, 0x29, 0xbf, 0x87, 0xc6, 0x2c, 0x43, 0x32, 0xa3, 0xd8, 0x7d, 0x75, 0xaa, 0xb6, - 0xe1, 0x9a, 0xfd, 0x96, 0x02, 0x9d, 0xbc, 0x74, 0x1a, 0x7a, 0x23, 0xd7, 0xa2, 0x8e, 0x8b, 0x95, - 0xbb, 0x5f, 0x3c, 0x6c, 0xb7, 0xb8, 0x4f, 0x2a, 0xa7, 0xc7, 0x72, 0x5d, 0xe0, 0xac, 0x24, 0xda, - 0xe4, 0x95, 0xfd, 0x16, 0x2d, 0xe9, 0x88, 0x32, 0x66, 0x79, 0x2b, 0x9b, 0x95, 0x56, 0x9b, 0x3c, - 0xfa, 0x37, 0xa0, 0x1e, 0xcb, 0xa1, 0xe5, 0x79, 0x1a, 0xe9, 0x34, 0xdb, 0xe4, 0x91, 0x1f, 0x01, - 0x44, 0xb9, 0x33, 0xf4, 0xf2, 0x38, 0xa2, 0x8f, 0x6a, 0xfe, 0xb8, 0xf3, 0x34, 0xc9, 0xfc, 0xc9, - 0x89, 0xb5, 0x43, 0x61, 0x10, 0x81, 0xdb, 0x04, 0x0c, 0x89, 0x80, 0x6d, 0x22, 0x86, 0x7d, 0xe8, - 0xe6, 0xa7, 0x6f, 0xd0, 0x9b, 0x63, 0x4e, 0xbe, 0xc6, 0x0a, 0xf1, 0x24, 0xbc, 0xeb, 0x3f, 0x5a, - 0x84, 0x5a, 0xa4, 0xa2, 0xff, 0x1f, 0x8a, 0x3f, 0xbf, 0x50, 0xfc, 0x31, 0xcc, 0x27, 0x6e, 0x19, - 0xcc, 0x93, 0xa1, 0xec, 0xcb, 0x08, 0xa7, 0x8a, 0x22, 0xe5, 0x0b, 0xfa, 0xf2, 0xec, 0x4e, 0xe6, - 0x35, 0x7e, 0x93, 0xc7, 0xff, 0x26, 0xbb, 0x1b, 0x34, 0xfc, 0x66, 0xe4, 0x95, 0x31, 0x05, 0xc8, - 0xf2, 0x95, 0x08, 0x9f, 0x96, 0x08, 0xf5, 0x7f, 0x47, 0xb6, 0xe0, 0x31, 0xcc, 0x27, 0xee, 0x36, - 0xca, 0x93, 0xa4, 0xec, 0x2b, 0x90, 0x26, 0x63, 0xf8, 0x98, 0x83, 0xdb, 0x3d, 0x58, 0xcc, 0xb8, - 0x05, 0x06, 0x5d, 0xc9, 0x4f, 0x1a, 0x64, 0x5f, 0x18, 0x33, 0xcd, 0xc4, 0x9a, 0x92, 0x32, 0xe7, - 0x6d, 0x9d, 0x59, 0x7f, 0x48, 0xd0, 0x5d, 0x9b, 0xf6, 0xff, 0x0b, 0xc2, 0x89, 0xbd, 0x0f, 0x15, - 0x76, 0x75, 0x11, 0xca, 0x3d, 0x82, 0x8f, 0x5d, 0x6c, 0xd4, 0x9d, 0x7c, 0x01, 0x92, 0x3f, 0xb2, - 0x02, 0x32, 0x8f, 0x1e, 0xb4, 0x18, 0x28, 0x5c, 0xac, 0x63, 0x46, 0xf0, 0x3e, 0x94, 0xe9, 0xb6, - 0x80, 0x72, 0xea, 0x5d, 0xe3, 0x17, 0x15, 0x75, 0xa7, 0xb9, 0x9b, 0x28, 0xa2, 0xbc, 0x4e, 0xfb, - 0xb2, 0xcc, 0xfd, 0x71, 0x0f, 0x7f, 0x45, 0x41, 0x3d, 0x68, 0x32, 0x04, 0x62, 0x65, 0x8e, 0x7b, - 0x06, 0x03, 0x58, 0x8c, 0xcd, 0xe0, 0x79, 0xa1, 0xb9, 0xa2, 0xfc, 0x1f, 0xc9, 0xcc, 0xfc, 0x12, - 0xbd, 0x34, 0x28, 0xf9, 0xa1, 0x2b, 0xba, 0x72, 0xd8, 0x2f, 0x76, 0xbb, 0x57, 0x0f, 0xd1, 0x23, - 0xc4, 0xbe, 0x03, 0xed, 0x64, 0xad, 0x3b, 0xba, 0x94, 0x6f, 0x77, 0x8e, 0xe2, 0x63, 0xa1, 0xfb, - 0x50, 0x61, 0x95, 0x7c, 0x79, 0x4a, 0x2a, 0xd5, 0xf9, 0x4d, 0x1c, 0xef, 0xe6, 0x17, 0xbe, 0xb9, - 0x3e, 0x30, 0x83, 0xbd, 0xd1, 0x0e, 0x79, 0x73, 0x99, 0x35, 0xbe, 0x64, 0xba, 0xfc, 0xd7, 0x65, - 0xc1, 0xdb, 0xcb, 0xb4, 0xff, 0x65, 0x8a, 0x62, 0xb8, 0xb3, 0x53, 0xa1, 0x8f, 0xaf, 0xff, 0x4f, - 0x00, 0x00, 0x00, 0xff, 0xff, 0xe2, 0xc0, 0x55, 0x17, 0xd6, 0x6b, 0x00, 0x00, + // 5974 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x3d, 0x5b, 0x8c, 0x1c, 0xd9, + 0x55, 0xae, 0x7e, 0x4d, 0xf7, 0xe9, 0xc7, 0xf4, 0xdc, 0x79, 0xb8, 0xd3, 0xfb, 0xf0, 0x6c, 0x39, + 0xde, 0x9d, 0xf5, 0xae, 0xc7, 0xf6, 0x6c, 0x9c, 0x4d, 0x9c, 0x64, 0x8d, 0x3d, 0x63, 0x7b, 0x27, + 0x6b, 0x3b, 0xa6, 0x66, 0xd6, 0x1b, 0x85, 0x28, 0xed, 0x9a, 0xae, 0x3b, 0x3d, 0x15, 0xd7, 0xa3, + 0x5d, 0x55, 0x3d, 0xde, 0x59, 0x90, 0x40, 0x08, 0x21, 0x10, 0x09, 0x20, 0x05, 0x21, 0x41, 0x44, + 0x04, 0x3f, 0x20, 0x20, 0x1f, 0x44, 0xe2, 0x0b, 0x84, 0x14, 0xf1, 0x09, 0x12, 0x12, 0x42, 0xf0, + 0x8f, 0x44, 0x7e, 0xf8, 0xe2, 0x93, 0x20, 0x21, 0xa1, 0xfb, 0xaa, 0xaa, 0x5b, 0x8f, 0xee, 0x9e, + 0xe9, 0x71, 0xb2, 0x0b, 0xfc, 0x75, 0x9d, 0xba, 0xf7, 0x9e, 0x73, 0xcf, 0xb9, 0xe7, 0xdc, 0x73, + 0xce, 0x3d, 0x75, 0x1b, 0x16, 0x9e, 0x8e, 0xb0, 0x77, 0xd4, 0xeb, 0xbb, 0xae, 0x67, 0xac, 0x0f, + 0x3d, 0x37, 0x70, 0xd1, 0x92, 0x6d, 0x5a, 0x87, 0x23, 0x9f, 0x3d, 0x1d, 0x6e, 0xac, 0xd3, 0x16, + 0xdd, 0x46, 0xdf, 0xb5, 0x6d, 0xd7, 0x61, 0xd0, 0x6e, 0x23, 0xde, 0xa6, 0x5b, 0xf5, 0x06, 0xfc, + 0x57, 0xcb, 0x74, 0x02, 0xec, 0x39, 0xba, 0x25, 0xda, 0xf9, 0xfd, 0x03, 0x6c, 0xeb, 0xfc, 0xa9, + 0x66, 0xfb, 0xa2, 0x61, 0xdb, 0xd0, 0x03, 0x3d, 0x8e, 0xb6, 0xbb, 0x60, 0x3a, 0x06, 0xfe, 0x30, + 0x0e, 0x52, 0x7f, 0x55, 0x81, 0x95, 0x9d, 0x03, 0xf7, 0xd9, 0xa6, 0x6b, 0x59, 0xb8, 0x1f, 0x98, + 0xae, 0xe3, 0x6b, 0xf8, 0xe9, 0x08, 0xfb, 0x01, 0xda, 0x80, 0xd2, 0x9e, 0xee, 0xe3, 0x8e, 0xb2, + 0xaa, 0xac, 0xd5, 0x37, 0x5e, 0x5e, 0x4f, 0xd0, 0xcc, 0x89, 0xbd, 0xef, 0x0f, 0x6e, 0xe9, 0x3e, + 0xd6, 0x68, 0x5b, 0x84, 0xa0, 0x64, 0xec, 0x6d, 0x6f, 0x75, 0x0a, 0xab, 0xca, 0x5a, 0x51, 0xa3, + 0xbf, 0xd1, 0xa7, 0xa1, 0xd9, 0x0f, 0x47, 0xdf, 0xde, 0xf2, 0x3b, 0xc5, 0xd5, 0xe2, 0x5a, 0x51, + 0x93, 0x81, 0xea, 0xb7, 0x0a, 0x70, 0x36, 0x45, 0x88, 0x3f, 0x74, 0x1d, 0x1f, 0xa3, 0x6b, 0x50, + 0xf1, 0x03, 0x3d, 0x18, 0xf9, 0x9c, 0x96, 0x97, 0x72, 0x68, 0xd9, 0xa1, 0x8d, 0x34, 0xde, 0x38, + 0x8d, 0xb8, 0x90, 0x81, 0x18, 0x5d, 0x85, 0x25, 0xd3, 0xb9, 0x8f, 0x6d, 0xd7, 0x3b, 0xea, 0x0d, + 0xb1, 0xd7, 0xc7, 0x4e, 0xa0, 0x0f, 0xb0, 0xa0, 0x72, 0x51, 0xbc, 0x7b, 0x18, 0xbd, 0x42, 0x9f, + 0x85, 0xb3, 0x4c, 0xa6, 0x3e, 0xf6, 0x0e, 0xcd, 0x3e, 0xee, 0xe9, 0x87, 0xba, 0x69, 0xe9, 0x7b, + 0x16, 0xee, 0x94, 0x56, 0x8b, 0x6b, 0x55, 0x6d, 0x99, 0xbe, 0xde, 0x61, 0x6f, 0x6f, 0x8a, 0x97, + 0xe8, 0x75, 0x68, 0x7b, 0x78, 0xdf, 0xc3, 0xfe, 0x41, 0x6f, 0xe8, 0xb9, 0x03, 0x0f, 0xfb, 0x7e, + 0xa7, 0x4c, 0xd1, 0xcc, 0x73, 0xf8, 0x43, 0x0e, 0x56, 0xff, 0x44, 0x81, 0x65, 0xc2, 0x8e, 0x87, + 0xba, 0x17, 0x98, 0xcf, 0x45, 0x2c, 0x2a, 0x34, 0xe2, 0x8c, 0xe8, 0x14, 0xe9, 0x3b, 0x09, 0x46, + 0xda, 0x0c, 0x05, 0x01, 0x84, 0x81, 0x25, 0x4a, 0xac, 0x04, 0x53, 0xff, 0x91, 0xaf, 0xa0, 0x38, + 0xa5, 0xb3, 0xc9, 0x2d, 0x89, 0xb5, 0x90, 0xc6, 0x7a, 0x12, 0xa9, 0x65, 0x71, 0xbf, 0x94, 0xcd, + 0xfd, 0x7f, 0x2a, 0xc2, 0xf2, 0x3d, 0x57, 0x37, 0xa2, 0xc5, 0xf8, 0xd3, 0xe0, 0xfe, 0x0d, 0xa8, + 0x30, 0xdd, 0xee, 0x94, 0x28, 0xb6, 0xd7, 0x92, 0xd8, 0xb8, 0xe6, 0x47, 0x54, 0xee, 0x50, 0x80, + 0xc6, 0xbb, 0xa1, 0x0b, 0xd0, 0xf2, 0xf0, 0xd0, 0x32, 0xfb, 0x7a, 0xcf, 0x19, 0xd9, 0x7b, 0xd8, + 0xeb, 0x94, 0x57, 0x95, 0xb5, 0xb2, 0xd6, 0xe4, 0xd0, 0x07, 0x14, 0x88, 0xf6, 0xa0, 0xb9, 0x6f, + 0x62, 0xcb, 0xe8, 0x51, 0xf3, 0xb0, 0xbd, 0xd5, 0xa9, 0xac, 0x16, 0xd7, 0xea, 0x1b, 0x5f, 0x5a, + 0xcf, 0xb2, 0x52, 0xeb, 0x99, 0x7c, 0x59, 0xbf, 0x43, 0x06, 0xd8, 0x66, 0xfd, 0x6f, 0x3b, 0x81, + 0x77, 0xa4, 0x35, 0xf6, 0x63, 0x20, 0xd4, 0x81, 0x39, 0xce, 0xe4, 0xce, 0xdc, 0xaa, 0xb2, 0x56, + 0xd5, 0xc4, 0x23, 0x7a, 0x0d, 0xe6, 0x3d, 0xec, 0xbb, 0x23, 0xaf, 0x8f, 0x7b, 0x03, 0xcf, 0x1d, + 0x0d, 0xfd, 0x4e, 0x75, 0xb5, 0xb8, 0x56, 0xd3, 0x5a, 0x02, 0x7c, 0x97, 0x42, 0xbb, 0x37, 0x60, + 0x21, 0x85, 0x05, 0xb5, 0xa1, 0xf8, 0x04, 0x1f, 0x51, 0x71, 0x14, 0x35, 0xf2, 0x13, 0x2d, 0x41, + 0xf9, 0x50, 0xb7, 0x46, 0x98, 0xb3, 0x9b, 0x3d, 0x5c, 0x2f, 0x7c, 0x4e, 0x51, 0xbf, 0xa7, 0x40, + 0x47, 0xc3, 0x16, 0xd6, 0x7d, 0xfc, 0xd3, 0x15, 0xec, 0x0a, 0x54, 0x1c, 0xd7, 0xc0, 0xdb, 0x5b, + 0x54, 0xb0, 0x45, 0x8d, 0x3f, 0xa9, 0xff, 0xad, 0xc0, 0xd2, 0x5d, 0x1c, 0x10, 0x75, 0x30, 0xfd, + 0xc0, 0xec, 0x87, 0x3a, 0x7f, 0x03, 0x8a, 0x1e, 0x7e, 0xca, 0x69, 0xbb, 0x94, 0xa4, 0x2d, 0xdc, + 0x10, 0xb2, 0xfa, 0x6a, 0xa4, 0x27, 0x7a, 0x05, 0x1a, 0x86, 0x6d, 0xf5, 0xfa, 0x07, 0xba, 0xe3, + 0x60, 0x8b, 0xa9, 0x54, 0x4d, 0xab, 0x1b, 0xb6, 0xb5, 0xc9, 0x41, 0xe8, 0x65, 0x00, 0x1f, 0x0f, + 0x6c, 0xec, 0x04, 0x91, 0x8d, 0x8e, 0x41, 0xd0, 0x45, 0x58, 0xd8, 0xf7, 0x5c, 0xbb, 0xe7, 0x1f, + 0xe8, 0x9e, 0xd1, 0xb3, 0xb0, 0x6e, 0x60, 0x8f, 0xd2, 0x5f, 0xd5, 0xe6, 0xc9, 0x8b, 0x1d, 0x02, + 0xbf, 0x47, 0xc1, 0xe8, 0x1a, 0x94, 0xfd, 0xbe, 0x3b, 0xc4, 0x74, 0xbd, 0xb5, 0x36, 0xce, 0x65, + 0xaf, 0xa4, 0x2d, 0x3d, 0xd0, 0x77, 0x48, 0x33, 0x8d, 0xb5, 0x56, 0x7f, 0x58, 0x62, 0x6a, 0xf7, + 0xb1, 0x37, 0x7a, 0x31, 0xd5, 0x2c, 0x9f, 0x96, 0x6a, 0x56, 0xa6, 0x52, 0xcd, 0xb9, 0x49, 0xaa, + 0x99, 0xe2, 0xdd, 0x71, 0x54, 0xb3, 0x3a, 0x51, 0x35, 0x6b, 0x59, 0xaa, 0x89, 0xee, 0xc2, 0x3c, + 0x73, 0x2d, 0x4c, 0x67, 0xdf, 0xed, 0x59, 0xa6, 0x1f, 0x74, 0x80, 0x12, 0x7a, 0x2e, 0xbd, 0x56, + 0x0d, 0xfc, 0xe1, 0x3a, 0x43, 0xed, 0xec, 0xbb, 0x5a, 0xd3, 0x14, 0x3f, 0xef, 0x99, 0x7e, 0x30, + 0xbb, 0x8e, 0xff, 0x6d, 0xa4, 0xe3, 0x1f, 0xff, 0x55, 0x14, 0xd9, 0x81, 0xb2, 0x64, 0x07, 0xfe, + 0x5c, 0x81, 0x4f, 0xdd, 0xc5, 0x41, 0x38, 0x01, 0xa2, 0xd4, 0xf8, 0x63, 0xeb, 0x00, 0xfc, 0x40, + 0x81, 0x6e, 0x16, 0xb5, 0xb3, 0x39, 0x01, 0x5f, 0x87, 0x95, 0x10, 0x4b, 0xcf, 0xc0, 0x7e, 0xdf, + 0x33, 0x87, 0x54, 0x98, 0xd4, 0x76, 0xd5, 0x37, 0x2e, 0x64, 0xab, 0x40, 0x92, 0x8a, 0xe5, 0x70, + 0x90, 0xad, 0xd8, 0x18, 0xea, 0x6f, 0x29, 0xb0, 0x4c, 0xac, 0x25, 0x37, 0x6f, 0x64, 0x25, 0xce, + 0xc0, 0x5d, 0xd9, 0x74, 0x16, 0x52, 0xa6, 0x73, 0x0a, 0x4e, 0xab, 0xbf, 0xa6, 0xc0, 0x4a, 0x92, + 0xa2, 0xd9, 0x38, 0xf8, 0x36, 0x94, 0x89, 0x3a, 0x0a, 0x86, 0xbd, 0x92, 0xcd, 0xb0, 0x38, 0x42, + 0xd6, 0x5e, 0x1d, 0x32, 0x4a, 0x22, 0x7b, 0x3e, 0xd3, 0xd2, 0x4b, 0x4e, 0xbe, 0x90, 0x31, 0xf9, + 0xdf, 0x56, 0xe0, 0x6c, 0x0a, 0xe5, 0x6c, 0xb3, 0x7f, 0x07, 0x2a, 0x74, 0xa7, 0x12, 0xd3, 0x7f, + 0x35, 0x67, 0xfa, 0x31, 0x94, 0xc4, 0x02, 0x69, 0xbc, 0x97, 0xfa, 0xfd, 0x02, 0xbc, 0xf0, 0xfe, + 0xd0, 0xd0, 0x03, 0xac, 0x49, 0xb6, 0x6e, 0x16, 0x56, 0x38, 0x69, 0x7b, 0xca, 0x88, 0xbb, 0x9d, + 0x4d, 0xdc, 0x18, 0xfc, 0xeb, 0x32, 0x94, 0xd9, 0xf5, 0xa4, 0xc7, 0x64, 0xc2, 0x62, 0x46, 0xb3, + 0xb8, 0x3d, 0xad, 0x31, 0x7b, 0xfa, 0xc5, 0xb8, 0x3d, 0xcd, 0xe0, 0x95, 0x37, 0x90, 0xf1, 0x6d, + 0xba, 0xce, 0xbe, 0x39, 0x88, 0xdb, 0x5d, 0x17, 0xda, 0x49, 0x56, 0x12, 0xa7, 0x83, 0x3b, 0x1c, + 0x3d, 0x47, 0xb7, 0x31, 0x47, 0x58, 0xe7, 0xb0, 0x07, 0xba, 0x8d, 0xd1, 0xa7, 0xa0, 0x4a, 0x6c, + 0x5e, 0xcf, 0x34, 0x84, 0xde, 0xcc, 0x51, 0x1b, 0x68, 0xf8, 0xe8, 0x25, 0x00, 0xfa, 0x4a, 0x37, + 0x0c, 0x8f, 0xf9, 0x23, 0x35, 0xad, 0x46, 0x20, 0x37, 0x09, 0x40, 0xfd, 0x7d, 0x05, 0x5e, 0xde, + 0x39, 0x72, 0xfa, 0x0f, 0xf0, 0xb3, 0x4d, 0x0f, 0xeb, 0x01, 0x8e, 0x76, 0xbe, 0xe7, 0xbc, 0x5a, + 0xd1, 0x2a, 0xd4, 0x63, 0x06, 0x90, 0x6b, 0x73, 0x1c, 0xa4, 0xfe, 0xa7, 0x02, 0x0d, 0xb2, 0x19, + 0xdf, 0xc7, 0x81, 0x4e, 0x34, 0x0b, 0x7d, 0x01, 0x6a, 0x96, 0xab, 0x1b, 0xbd, 0xe0, 0x68, 0xc8, + 0xe8, 0x69, 0xa5, 0xe9, 0x89, 0xf6, 0xf0, 0xdd, 0xa3, 0x21, 0xd6, 0xaa, 0x16, 0xff, 0x35, 0x15, + 0x4d, 0x49, 0x43, 0x5d, 0xcc, 0xd8, 0x6e, 0xce, 0x43, 0xdd, 0xc6, 0x81, 0x67, 0xf6, 0x19, 0x19, + 0xc4, 0x77, 0xab, 0xdd, 0x2a, 0x74, 0x14, 0x0d, 0x18, 0x98, 0x22, 0x3b, 0x0b, 0x73, 0xc6, 0x1e, + 0x93, 0x57, 0x99, 0xca, 0xab, 0x62, 0xec, 0x51, 0x51, 0x51, 0x8f, 0x25, 0xbe, 0x78, 0xa9, 0xc7, + 0x52, 0x23, 0x1e, 0x4b, 0x6c, 0x65, 0xa8, 0x7f, 0x50, 0x81, 0x95, 0x0f, 0xf4, 0xa0, 0x7f, 0xb0, + 0x65, 0x0b, 0xd7, 0x72, 0x16, 0x79, 0x44, 0x5b, 0x64, 0x21, 0xbe, 0x45, 0x9e, 0xda, 0x16, 0x1c, + 0x1a, 0xc9, 0x72, 0xb6, 0x91, 0x34, 0xf4, 0x40, 0x5f, 0x7f, 0xc4, 0x97, 0x6c, 0xcc, 0x48, 0xc6, + 0x3c, 0xc0, 0xca, 0xc9, 0x3c, 0xc0, 0xdb, 0xd0, 0xc4, 0x1f, 0xf6, 0xad, 0x11, 0x59, 0xfd, 0x94, + 0x02, 0xe6, 0xda, 0xad, 0x66, 0x52, 0x10, 0xb7, 0xd2, 0x0d, 0xde, 0x6d, 0x9b, 0xd3, 0xc1, 0x56, + 0x96, 0x8d, 0x03, 0x9d, 0xfa, 0x6f, 0xf5, 0x0d, 0x35, 0x7f, 0x65, 0x89, 0x05, 0xc9, 0x56, 0x17, + 0x79, 0x42, 0x2f, 0x42, 0x8d, 0xfb, 0x9c, 0xdb, 0x5b, 0x9d, 0x1a, 0x65, 0x63, 0x04, 0x40, 0x7d, + 0x68, 0xf2, 0x8d, 0x8c, 0x53, 0xc9, 0xfc, 0xba, 0x77, 0xb2, 0x51, 0x64, 0x0b, 0x3e, 0x4e, 0x3d, + 0xb7, 0x54, 0x0d, 0x3f, 0x06, 0x42, 0x9f, 0x86, 0xa6, 0xbb, 0xbf, 0x6f, 0x99, 0x0e, 0x7e, 0xc0, + 0x64, 0x5d, 0xa7, 0x64, 0xc8, 0x40, 0xe2, 0xa7, 0x1e, 0x62, 0xcf, 0x37, 0x5d, 0xa7, 0xd3, 0xa0, + 0xef, 0xc5, 0x63, 0x96, 0xfb, 0xd9, 0x3c, 0x91, 0xfb, 0xa9, 0xc3, 0x42, 0x8a, 0xd6, 0x0c, 0xf7, + 0xf3, 0xb3, 0xb2, 0xb9, 0x9c, 0x2c, 0xb2, 0x98, 0xa1, 0xfc, 0x33, 0x05, 0x96, 0xdf, 0x77, 0xfc, + 0xd1, 0x5e, 0xc8, 0xa6, 0x9f, 0x96, 0x7a, 0x24, 0xcd, 0x73, 0x29, 0x65, 0x9e, 0xd5, 0x1f, 0x55, + 0x60, 0x9e, 0xcf, 0x83, 0xac, 0x1e, 0x6a, 0xca, 0x5e, 0x84, 0x5a, 0xe8, 0xda, 0x70, 0xa6, 0x44, + 0x80, 0xa4, 0x6d, 0x2c, 0xa4, 0x6c, 0xe3, 0x54, 0xa4, 0x09, 0x77, 0xb5, 0x14, 0x73, 0x57, 0x5f, + 0x02, 0xd8, 0xb7, 0x46, 0xfe, 0x41, 0x2f, 0x30, 0xb9, 0x6d, 0x2a, 0x6a, 0x35, 0x0a, 0xd9, 0x35, + 0x6d, 0x8c, 0x36, 0xa1, 0xb1, 0x67, 0x3a, 0x96, 0x3b, 0xe8, 0x0d, 0xf5, 0xe0, 0xc0, 0xe7, 0x39, + 0x8c, 0x6c, 0xd1, 0xd0, 0x10, 0xe3, 0x16, 0x6d, 0xad, 0xd5, 0x59, 0xaf, 0x87, 0xa4, 0x13, 0x7a, + 0x19, 0xea, 0xce, 0xc8, 0xee, 0xb9, 0xfb, 0x3d, 0xcf, 0x7d, 0xe6, 0xd3, 0x4c, 0x45, 0x51, 0xab, + 0x39, 0x23, 0xfb, 0x2b, 0xfb, 0x9a, 0xfb, 0x8c, 0x38, 0x15, 0x35, 0xe2, 0x5e, 0xf8, 0x96, 0x3b, + 0x60, 0x59, 0x8a, 0x69, 0x30, 0x44, 0x5d, 0x48, 0x7f, 0x03, 0x5b, 0x81, 0x4e, 0xfb, 0xd7, 0xa6, + 0xed, 0x1f, 0x76, 0x41, 0xaf, 0x42, 0xab, 0xef, 0xda, 0x43, 0x9d, 0xf2, 0xe9, 0x8e, 0xe7, 0xda, + 0x54, 0x1d, 0x8b, 0x5a, 0x02, 0x8a, 0x6e, 0x43, 0x3d, 0x52, 0x08, 0xbf, 0x53, 0xa7, 0x98, 0x3e, + 0x9d, 0xad, 0xb3, 0xb1, 0x78, 0x8b, 0x2c, 0x55, 0x08, 0x35, 0xc2, 0x47, 0x17, 0x40, 0xe8, 0x69, + 0xcf, 0x37, 0x3f, 0xc2, 0x4c, 0xed, 0xe8, 0x8e, 0x51, 0xe7, 0xf0, 0x1d, 0xf3, 0x23, 0xba, 0x33, + 0x98, 0x8e, 0x8f, 0xbd, 0x40, 0xe4, 0x17, 0x3a, 0x4d, 0xb6, 0x33, 0x30, 0x28, 0x5f, 0xe6, 0xe8, + 0x0e, 0xb4, 0xfc, 0x40, 0xf7, 0x82, 0xde, 0xd0, 0xf5, 0xe9, 0x62, 0xe8, 0xb4, 0xe8, 0x4a, 0x4f, + 0x29, 0xa9, 0xed, 0x0f, 0xc8, 0x32, 0x7f, 0xc8, 0x9b, 0x69, 0x4d, 0xda, 0x4d, 0x3c, 0x92, 0x71, + 0x28, 0x47, 0xa2, 0x71, 0xe6, 0xa7, 0x1c, 0x87, 0x76, 0x0b, 0xc7, 0x59, 0x23, 0xde, 0x98, 0x6e, + 0xe8, 0x7b, 0x16, 0x7e, 0xc4, 0xed, 0x4a, 0x9b, 0x0a, 0x3c, 0x09, 0x26, 0x9b, 0x84, 0x85, 0x0f, + 0xb1, 0xd5, 0x59, 0xa0, 0x3b, 0xf7, 0x2b, 0xe3, 0xf4, 0xfd, 0x1e, 0x69, 0xa8, 0xb1, 0xf6, 0x44, + 0x5e, 0x7e, 0xe0, 0x7a, 0xfa, 0x20, 0xc4, 0x80, 0x28, 0x86, 0x04, 0x54, 0xfd, 0xe7, 0x22, 0xb4, + 0x64, 0x39, 0x10, 0x6b, 0xc7, 0xa2, 0x74, 0xa1, 0x64, 0xe2, 0x91, 0xe8, 0x2d, 0x76, 0x08, 0x79, + 0x2c, 0x29, 0x40, 0x75, 0xac, 0xaa, 0xd5, 0x19, 0x8c, 0x0e, 0x40, 0x74, 0x85, 0xc9, 0x9f, 0x2a, + 0x76, 0x91, 0x4a, 0xa3, 0x46, 0x21, 0x74, 0x2b, 0xef, 0xc0, 0x9c, 0xc8, 0x27, 0x30, 0x0d, 0x13, + 0x8f, 0xe4, 0xcd, 0xde, 0xc8, 0xa4, 0x58, 0x99, 0x86, 0x89, 0x47, 0x74, 0x07, 0x1a, 0x6c, 0xc8, + 0xa1, 0xee, 0xe9, 0xb6, 0xd0, 0xaf, 0xf3, 0x39, 0x56, 0xea, 0x3d, 0x7c, 0xf4, 0x88, 0x98, 0xbc, + 0x87, 0xba, 0xe9, 0x69, 0x6c, 0x2d, 0x3e, 0xa4, 0xfd, 0xd0, 0x1a, 0xb4, 0xd9, 0x38, 0xfb, 0xa6, + 0x85, 0xb9, 0xae, 0xce, 0xb1, 0xa4, 0x02, 0x85, 0xdf, 0x31, 0x2d, 0xcc, 0x94, 0x31, 0x9c, 0x04, + 0x5d, 0x7b, 0x55, 0xa6, 0x8b, 0x14, 0x42, 0x57, 0xdd, 0x79, 0x60, 0xc6, 0xbb, 0x27, 0x36, 0x05, + 0xb6, 0x77, 0x31, 0x2a, 0x85, 0xe4, 0x88, 0x7f, 0x39, 0xb2, 0x99, 0x36, 0x03, 0x9b, 0x90, 0x33, + 0xb2, 0xa9, 0x2e, 0x6f, 0xc0, 0x72, 0x7f, 0xe4, 0x79, 0x6c, 0x67, 0x8b, 0x8f, 0x53, 0xa7, 0x89, + 0x98, 0x45, 0xfe, 0x72, 0x3b, 0x3e, 0xdc, 0x3a, 0x2c, 0x72, 0x92, 0x02, 0xd7, 0xc3, 0x3d, 0x79, + 0x3b, 0x62, 0xa7, 0x2b, 0x3b, 0xe4, 0x8d, 0x90, 0xeb, 0xdf, 0x94, 0x61, 0x91, 0x18, 0x4e, 0xbe, + 0x36, 0x66, 0xf2, 0x84, 0x5e, 0x02, 0x30, 0xfc, 0xa0, 0x27, 0x99, 0xfb, 0x9a, 0xe1, 0x07, 0x7c, + 0x77, 0xfc, 0x82, 0x70, 0x64, 0x8a, 0xe3, 0xc2, 0xe3, 0x84, 0x31, 0x4f, 0x3b, 0x33, 0x27, 0xcc, + 0x34, 0x9f, 0x87, 0x26, 0x77, 0x0d, 0xa5, 0x84, 0x46, 0x83, 0x01, 0x1f, 0x64, 0x6f, 0x4a, 0x95, + 0xcc, 0x9c, 0x77, 0xcc, 0x9d, 0x99, 0x9b, 0xd5, 0x9d, 0xa9, 0x26, 0xdd, 0x99, 0x77, 0x61, 0x5e, + 0xb6, 0x1d, 0xc2, 0x0c, 0x4f, 0x34, 0x1e, 0x2d, 0xc9, 0x78, 0xf8, 0x71, 0x6f, 0x04, 0x64, 0x6f, + 0xe4, 0x3c, 0x34, 0x1d, 0x8c, 0x8d, 0x5e, 0xe0, 0xe9, 0x8e, 0xbf, 0x8f, 0x3d, 0xba, 0xa0, 0xaa, + 0x5a, 0x83, 0x00, 0x77, 0x39, 0x0c, 0xbd, 0x03, 0x40, 0xe7, 0xc9, 0xd2, 0xa4, 0x8d, 0x71, 0x69, + 0x52, 0xba, 0x80, 0x68, 0x9a, 0x94, 0xb2, 0x86, 0xfe, 0x3c, 0x35, 0x97, 0x07, 0xbd, 0x00, 0x35, + 0x4b, 0xff, 0xe8, 0xa8, 0x47, 0x86, 0xa6, 0x06, 0xb9, 0xaa, 0x55, 0x09, 0x80, 0x60, 0x55, 0xbf, + 0x53, 0x84, 0x15, 0x9e, 0x4d, 0x3b, 0x8d, 0x25, 0x9c, 0xe7, 0xad, 0x88, 0xed, 0xbe, 0x38, 0x26, + 0x3b, 0x55, 0x9a, 0xc2, 0xc1, 0x2f, 0x67, 0x38, 0xf8, 0x72, 0x6e, 0xa6, 0x92, 0xca, 0xcd, 0x84, + 0xa9, 0xea, 0xb9, 0xe3, 0xa4, 0xaa, 0xd1, 0x12, 0x94, 0x69, 0xa2, 0x80, 0x2e, 0xb1, 0x9a, 0xc6, + 0x1e, 0xa6, 0x13, 0xfd, 0x0d, 0x80, 0xfe, 0x01, 0xee, 0x3f, 0x19, 0xba, 0xa6, 0x13, 0x50, 0xd1, + 0x4f, 0xb1, 0xfc, 0x62, 0x5d, 0xd4, 0xef, 0x16, 0xa0, 0xb9, 0x83, 0x75, 0xaf, 0x7f, 0x20, 0x84, + 0xf1, 0xb9, 0xf8, 0xf9, 0xc0, 0xab, 0xb9, 0xe7, 0x03, 0x52, 0xa7, 0x4f, 0xd0, 0xc1, 0x00, 0x41, + 0x11, 0xb8, 0x81, 0x1e, 0xd2, 0xd9, 0x73, 0x46, 0x36, 0x4f, 0x98, 0xcf, 0xd3, 0x17, 0x9c, 0xd8, + 0x07, 0x23, 0x5b, 0xfd, 0x0f, 0x05, 0x1a, 0x3f, 0x4b, 0x86, 0x11, 0xcc, 0xb9, 0x1e, 0x67, 0xce, + 0x5a, 0x2e, 0x73, 0x34, 0x12, 0x03, 0xe3, 0x43, 0xfc, 0x09, 0x3c, 0x37, 0xf9, 0x7b, 0x05, 0xba, + 0x3b, 0x47, 0x4e, 0x5f, 0x63, 0x76, 0xee, 0x34, 0x54, 0xf5, 0x3c, 0x34, 0x0f, 0xa5, 0xe8, 0xa0, + 0x40, 0xd7, 0x79, 0xe3, 0x30, 0x9e, 0xbd, 0xd9, 0x85, 0xb6, 0x38, 0xc4, 0xe0, 0x13, 0x16, 0xdb, + 0xcf, 0xeb, 0xd9, 0x94, 0x27, 0x08, 0xa4, 0xf6, 0x68, 0xde, 0x93, 0x81, 0xea, 0x6f, 0x2a, 0xb0, + 0x98, 0xd1, 0x10, 0x9d, 0x85, 0x39, 0x9e, 0x2b, 0xe2, 0x1e, 0x11, 0x33, 0x1f, 0x06, 0x11, 0x52, + 0x94, 0x2a, 0x36, 0x8d, 0x74, 0xd0, 0x61, 0xa0, 0x73, 0x50, 0x0f, 0xc3, 0x58, 0x23, 0x25, 0x25, + 0xc3, 0x47, 0x5d, 0xa8, 0x72, 0xfb, 0x2d, 0xf2, 0x04, 0xe1, 0xb3, 0x6a, 0x03, 0xba, 0x8b, 0xa3, + 0x3d, 0x73, 0x36, 0xae, 0x46, 0x06, 0x2c, 0x22, 0x35, 0x6e, 0xd5, 0x0c, 0xf5, 0xdf, 0x15, 0x58, + 0x94, 0xf0, 0xcd, 0x96, 0x08, 0x8d, 0xf6, 0xf6, 0xc2, 0xc9, 0xf6, 0x76, 0x29, 0x77, 0x55, 0x3c, + 0x66, 0xee, 0xea, 0x65, 0x80, 0x50, 0x0e, 0x82, 0xb3, 0x31, 0x88, 0xfa, 0x43, 0x05, 0x56, 0xde, + 0xd5, 0x1d, 0xc3, 0xdd, 0xdf, 0x3f, 0x8d, 0x65, 0x7b, 0x1b, 0xa4, 0xcc, 0xc2, 0xf4, 0xa9, 0x6f, + 0x39, 0x21, 0xf1, 0x06, 0x2c, 0x78, 0x6c, 0xdb, 0x33, 0xe4, 0x95, 0x5d, 0xd4, 0xda, 0xe2, 0x45, + 0xb8, 0x5e, 0xff, 0xa2, 0x00, 0x88, 0xcc, 0xfc, 0x96, 0x6e, 0xe9, 0x4e, 0x1f, 0xcf, 0x42, 0xfe, + 0x05, 0x68, 0x49, 0x6e, 0x54, 0x58, 0xb2, 0x12, 0xf7, 0xa3, 0x7c, 0x74, 0x1f, 0x5a, 0x7b, 0x0c, + 0x59, 0xcf, 0xc3, 0xba, 0xef, 0x3a, 0x5c, 0x2c, 0x39, 0x39, 0xee, 0x5d, 0xcf, 0x1c, 0x0c, 0xb0, + 0xb7, 0xe9, 0x3a, 0x06, 0x0f, 0x84, 0xf6, 0x04, 0xa9, 0xa4, 0x33, 0x51, 0x8e, 0xc8, 0xb3, 0x0c, + 0x85, 0x14, 0xba, 0x96, 0x94, 0x1d, 0x3e, 0xd6, 0xad, 0x88, 0x19, 0xd1, 0x66, 0xdb, 0x66, 0x2f, + 0x76, 0xf2, 0x0f, 0x3b, 0x32, 0xbc, 0x3c, 0xf5, 0x2f, 0x15, 0x40, 0x61, 0xfe, 0x83, 0x26, 0x8d, + 0xa8, 0x86, 0x27, 0xbb, 0x2a, 0x19, 0x7b, 0xfe, 0x8b, 0x50, 0x33, 0x44, 0x4f, 0x6e, 0x94, 0x22, + 0x00, 0xdd, 0x80, 0x29, 0xd1, 0xd4, 0x9f, 0xc1, 0x86, 0xc8, 0x2e, 0x30, 0xe0, 0x3d, 0x0a, 0x93, + 0x5d, 0xc4, 0x52, 0xd2, 0x45, 0x8c, 0xa7, 0xa4, 0xcb, 0x52, 0x4a, 0x5a, 0xfd, 0x7e, 0x01, 0xda, + 0x74, 0x6b, 0xd9, 0x8c, 0xf2, 0x81, 0x53, 0x11, 0x7d, 0x1e, 0x9a, 0xbc, 0x08, 0x4c, 0x22, 0xbc, + 0xf1, 0x34, 0x36, 0x18, 0xba, 0x02, 0x4b, 0xac, 0x91, 0x87, 0xfd, 0x91, 0x15, 0x05, 0xd3, 0x2c, + 0x7c, 0x43, 0x4f, 0xd9, 0x9e, 0x46, 0x5e, 0x89, 0x1e, 0x1f, 0xc0, 0xca, 0xc0, 0x72, 0xf7, 0x74, + 0xab, 0x27, 0x8b, 0x87, 0xc9, 0x70, 0xaa, 0x75, 0xbf, 0xc4, 0x06, 0xd8, 0x89, 0x4b, 0xd1, 0x47, + 0x5b, 0xd0, 0xf4, 0x31, 0x7e, 0x12, 0x45, 0xd8, 0xe5, 0xe9, 0xbc, 0x94, 0x06, 0xe9, 0x25, 0x9e, + 0xd4, 0x3f, 0x54, 0x60, 0x3e, 0x71, 0x1e, 0x97, 0xcc, 0x0f, 0x29, 0xe9, 0xfc, 0xd0, 0x75, 0x28, + 0x13, 0xcb, 0xc5, 0x76, 0x9c, 0x56, 0x5e, 0xd6, 0x42, 0x1e, 0x57, 0x63, 0x5d, 0xd0, 0x65, 0x58, + 0xcc, 0xa8, 0x0a, 0xe2, 0x8b, 0x00, 0xa5, 0x8b, 0x82, 0xd4, 0x1f, 0x97, 0xa0, 0x1e, 0x63, 0xc7, + 0x84, 0xe4, 0xd6, 0xa9, 0x1c, 0x0e, 0xe4, 0x55, 0x7f, 0x90, 0x85, 0x67, 0x63, 0x9b, 0x45, 0xbb, + 0x3c, 0xf8, 0xb6, 0xb1, 0x4d, 0x63, 0xdd, 0x78, 0x18, 0x5b, 0x91, 0xc3, 0x58, 0x39, 0xd4, 0x9f, + 0x1b, 0x13, 0xea, 0x57, 0xe5, 0x50, 0x5f, 0x52, 0xa4, 0x5a, 0x52, 0x91, 0xa6, 0xcd, 0x34, 0x5d, + 0x81, 0xc5, 0x3e, 0x3b, 0x7e, 0xb9, 0x75, 0xb4, 0x19, 0xbe, 0xe2, 0x7e, 0x6f, 0xd6, 0x2b, 0xf4, + 0x6e, 0x94, 0x51, 0x66, 0x72, 0x66, 0xc1, 0x4f, 0x5e, 0x26, 0x81, 0x4b, 0x87, 0x89, 0x59, 0x58, + 0x69, 0xfa, 0x94, 0xcc, 0x72, 0x35, 0x4f, 0x98, 0xe5, 0x3a, 0x07, 0x75, 0xe1, 0xc5, 0x10, 0x9d, + 0x6f, 0x31, 0xf3, 0x27, 0x0c, 0x82, 0xe1, 0x4b, 0x16, 0x61, 0x5e, 0x3e, 0xa4, 0x4a, 0xe6, 0x62, + 0xda, 0xe9, 0x5c, 0xcc, 0x59, 0x98, 0x33, 0xfd, 0xde, 0xbe, 0xfe, 0x04, 0xd3, 0xf4, 0x51, 0x55, + 0xab, 0x98, 0xfe, 0x1d, 0xfd, 0x09, 0x56, 0xff, 0xa5, 0x08, 0xad, 0x68, 0xd3, 0x9d, 0xda, 0x96, + 0x4c, 0x53, 0x1d, 0xf7, 0x10, 0xda, 0x91, 0x47, 0x44, 0xb9, 0x3c, 0x21, 0x2f, 0x90, 0x3c, 0x36, + 0x9f, 0x1f, 0x26, 0xf4, 0x56, 0x72, 0x02, 0x4a, 0xc7, 0x74, 0x02, 0x66, 0xae, 0x96, 0x79, 0x0b, + 0x96, 0xc3, 0xfd, 0x58, 0x9a, 0x3c, 0x8b, 0xe7, 0x96, 0xc4, 0xcb, 0x87, 0x71, 0x26, 0xe4, 0x18, + 0x83, 0xb9, 0x3c, 0x63, 0x90, 0x5c, 0x08, 0xd5, 0xd4, 0x42, 0x48, 0x17, 0xed, 0xd4, 0x32, 0x8a, + 0x76, 0xd4, 0xf7, 0x61, 0x91, 0x66, 0xf8, 0xfd, 0xbe, 0x67, 0xee, 0xe1, 0x30, 0x50, 0x98, 0x46, + 0xb8, 0x5d, 0xa8, 0x26, 0x62, 0x8d, 0xf0, 0x59, 0xfd, 0x96, 0x02, 0x2b, 0xe9, 0x71, 0xe9, 0xba, + 0x89, 0x4c, 0x8a, 0x22, 0x99, 0x94, 0xaf, 0xc1, 0x62, 0xcc, 0xdf, 0x94, 0x46, 0xce, 0xf5, 0xd1, + 0x33, 0x48, 0xd7, 0x50, 0x34, 0x8a, 0x80, 0xa9, 0x3f, 0x56, 0xc2, 0xc3, 0x12, 0x02, 0x1b, 0xd0, + 0xf3, 0x28, 0xb2, 0xd3, 0xb9, 0x8e, 0x65, 0x3a, 0x61, 0x22, 0x88, 0xcf, 0x92, 0x01, 0x79, 0x22, + 0xe8, 0xcb, 0x30, 0xcf, 0x1b, 0x85, 0x1b, 0xd6, 0xd4, 0x8e, 0x5a, 0x8b, 0xf5, 0x0c, 0xb7, 0xaa, + 0x0b, 0xd0, 0xe2, 0xc7, 0x44, 0x02, 0x63, 0x31, 0xeb, 0xf0, 0xe8, 0x1e, 0xb4, 0x45, 0xb3, 0xe3, + 0x6f, 0x92, 0xf3, 0xbc, 0x6b, 0xe8, 0xf2, 0x7d, 0x5b, 0x81, 0x8e, 0xbc, 0x65, 0xc6, 0x58, 0x70, + 0x12, 0xc7, 0xef, 0x4b, 0x72, 0xad, 0xc6, 0x6b, 0x63, 0x69, 0x8a, 0x70, 0x89, 0x8a, 0x8d, 0xbf, + 0x2a, 0xd0, 0x12, 0x1c, 0x12, 0x18, 0x6e, 0x99, 0x7e, 0xe0, 0x99, 0x7b, 0xa3, 0x59, 0x0f, 0xc2, + 0xfb, 0x50, 0x8f, 0x52, 0x0e, 0x82, 0xae, 0x9b, 0xd9, 0x74, 0xe5, 0xa3, 0x5e, 0xdf, 0x8c, 0xc6, + 0x60, 0x27, 0x7f, 0xf1, 0x51, 0x89, 0x4a, 0x58, 0xba, 0x1f, 0xb0, 0x3a, 0x87, 0x5d, 0x5f, 0x78, + 0x6b, 0x71, 0x58, 0xb7, 0x07, 0xed, 0xe4, 0x20, 0x19, 0x15, 0x0c, 0xd7, 0xe4, 0x23, 0xb9, 0x89, + 0x9e, 0x4a, 0xec, 0x44, 0xee, 0x5f, 0x0b, 0xf0, 0x42, 0xe6, 0x0c, 0x66, 0x8b, 0xbb, 0xf2, 0x92, + 0x5d, 0x5b, 0x50, 0x4d, 0x04, 0xcb, 0x6b, 0x63, 0xa5, 0xcd, 0x73, 0xc9, 0x2c, 0xcd, 0xe9, 0x47, + 0x1e, 0x5a, 0x64, 0x28, 0x4a, 0xe3, 0x46, 0xe1, 0xfa, 0x2a, 0x8d, 0x22, 0x7a, 0xa2, 0x4d, 0x68, + 0xb0, 0x84, 0x44, 0xef, 0xd0, 0xc4, 0xcf, 0xc4, 0x21, 0xf8, 0x6a, 0x8e, 0x61, 0xa7, 0x2d, 0x1f, + 0x99, 0xf8, 0x99, 0x56, 0xb7, 0xc2, 0xdf, 0xa1, 0x10, 0xef, 0xbb, 0x86, 0xb9, 0x7f, 0xb4, 0x2b, + 0x1c, 0x14, 0x09, 0xa6, 0x7e, 0xbb, 0x02, 0x10, 0xf5, 0x27, 0x51, 0x61, 0x64, 0x51, 0xb8, 0x89, + 0x88, 0x41, 0x88, 0xd7, 0x22, 0x7b, 0xca, 0xe2, 0x11, 0xed, 0x46, 0x47, 0x52, 0x86, 0xe9, 0x07, + 0x9c, 0x83, 0x57, 0x27, 0x51, 0x2c, 0x98, 0x49, 0x04, 0xcc, 0xd7, 0xa1, 0x1f, 0x41, 0xd0, 0x25, + 0x40, 0x03, 0xcf, 0x7d, 0x66, 0x3a, 0x83, 0x78, 0x84, 0xc3, 0x02, 0xa1, 0x05, 0xfe, 0x26, 0x16, + 0xe2, 0x3c, 0x86, 0x76, 0xa2, 0xb9, 0x60, 0xdd, 0xb5, 0x89, 0x84, 0xdc, 0x95, 0x46, 0xe3, 0x4a, + 0x31, 0x2f, 0xe3, 0xa0, 0x27, 0xe2, 0xbb, 0xba, 0x37, 0xc0, 0x42, 0xfa, 0x9c, 0xa9, 0x32, 0x10, + 0x5d, 0x82, 0x45, 0x7e, 0x5c, 0x29, 0xc8, 0x89, 0x1d, 0x5b, 0xb6, 0xe9, 0xb1, 0x25, 0x47, 0x47, + 0x5d, 0xc5, 0x43, 0xe8, 0xc8, 0x5e, 0x81, 0xdf, 0x0b, 0x73, 0x1e, 0xec, 0x30, 0xf3, 0x8b, 0x13, + 0xc9, 0x97, 0x1c, 0x05, 0x9f, 0x13, 0xc2, 0x67, 0xb1, 0x32, 0xcc, 0x7c, 0xd9, 0xd5, 0xa1, 0x9d, + 0x64, 0x7f, 0xc6, 0xa1, 0xfa, 0xdb, 0xb2, 0x06, 0x8f, 0x37, 0xcb, 0x64, 0xa0, 0x98, 0x0e, 0x77, + 0xfb, 0xb0, 0x94, 0xc5, 0xd8, 0x0c, 0x34, 0x27, 0x37, 0x14, 0xdd, 0x6d, 0x78, 0x61, 0xcc, 0xf4, + 0x8f, 0x55, 0xa6, 0x7a, 0x23, 0x0c, 0x3b, 0xe8, 0xfa, 0xcb, 0xdb, 0xbf, 0x63, 0x87, 0x0c, 0x05, + 0xe9, 0x90, 0x41, 0xfd, 0x95, 0x22, 0xa0, 0xb4, 0x81, 0x40, 0x2d, 0x28, 0x84, 0x83, 0x14, 0xb6, + 0xb7, 0x12, 0x8a, 0x56, 0x48, 0x29, 0xda, 0x8b, 0x50, 0x0b, 0x85, 0xc6, 0xad, 0x6f, 0x04, 0x88, + 0xab, 0x61, 0x49, 0x56, 0xc3, 0x18, 0x61, 0x65, 0xf9, 0xf4, 0xe3, 0x0a, 0x2c, 0x11, 0xcd, 0xef, + 0xb1, 0x63, 0x96, 0xc0, 0xb4, 0xb1, 0x1f, 0xe8, 0x36, 0x2b, 0x16, 0x2a, 0x69, 0x88, 0xbc, 0xdb, + 0x22, 0xaf, 0x76, 0xc5, 0x1b, 0xf4, 0x48, 0x44, 0x30, 0x64, 0x2f, 0xe3, 0x55, 0x30, 0x6f, 0x4f, + 0x6b, 0x12, 0xa3, 0x83, 0x0d, 0xb6, 0x06, 0x6b, 0xa1, 0x63, 0xdf, 0xdd, 0x83, 0x96, 0xfc, 0x32, + 0x43, 0x42, 0xd7, 0xe5, 0xd5, 0x30, 0x5d, 0xf0, 0x10, 0x93, 0xe3, 0x01, 0xa0, 0xb4, 0x81, 0x8d, + 0xf3, 0x4d, 0x91, 0xf9, 0x36, 0x49, 0x1e, 0x31, 0xbe, 0x16, 0x65, 0x81, 0xff, 0x43, 0x11, 0x50, + 0xe4, 0x1f, 0x87, 0xd5, 0x18, 0xd3, 0x38, 0x95, 0x97, 0x61, 0x31, 0xed, 0x3d, 0x8b, 0xc0, 0x01, + 0xa5, 0x7c, 0xe7, 0x2c, 0x3f, 0xb7, 0x98, 0x55, 0x9c, 0xfe, 0xb9, 0x70, 0x63, 0x64, 0x01, 0xc1, + 0xea, 0x98, 0xf3, 0x2b, 0x79, 0x6f, 0xec, 0x25, 0xcb, 0xda, 0x99, 0xf5, 0xbc, 0x9e, 0xb3, 0x85, + 0xa5, 0xa6, 0x3d, 0xb1, 0xa6, 0x5d, 0x0a, 0x57, 0x2a, 0xc7, 0x0c, 0x57, 0xce, 0x43, 0xd3, 0xc3, + 0x7d, 0xf7, 0x10, 0x7b, 0x6c, 0xfd, 0x52, 0x83, 0x5a, 0xd6, 0x1a, 0x1c, 0x48, 0x57, 0xee, 0xec, + 0x95, 0xea, 0xbf, 0x54, 0x84, 0x85, 0x90, 0xe7, 0xc7, 0x92, 0xe7, 0xe4, 0x1a, 0x9b, 0xe7, 0x2e, + 0xc0, 0x6f, 0x64, 0x0b, 0xf0, 0xf3, 0x13, 0xa2, 0xcb, 0xa9, 0xe5, 0xf7, 0x93, 0x11, 0xc1, 0x9b, + 0x30, 0x2f, 0x0e, 0x8e, 0x5c, 0x56, 0x4f, 0x47, 0x62, 0x7d, 0xef, 0x19, 0x8d, 0x24, 0x44, 0x70, + 0x39, 0xe7, 0x3d, 0x23, 0x6f, 0x7d, 0xf5, 0xdf, 0x0a, 0x30, 0xc7, 0xcf, 0x25, 0x52, 0x76, 0x76, + 0x9a, 0xcc, 0xd0, 0x12, 0x94, 0xd9, 0xb8, 0x2c, 0x91, 0xcc, 0x1e, 0x32, 0xca, 0x2a, 0x4b, 0x19, + 0x65, 0x95, 0x94, 0x2e, 0x97, 0xd3, 0xc5, 0xb3, 0x92, 0x9e, 0x4b, 0xe9, 0x42, 0x3a, 0xa0, 0xf0, + 0xa4, 0xc6, 0x0d, 0xab, 0x09, 0x59, 0x7d, 0xc6, 0x5b, 0x63, 0xcf, 0x61, 0xd6, 0x13, 0xb3, 0xe7, + 0xfb, 0x78, 0xbb, 0x9f, 0x00, 0x77, 0xbf, 0x09, 0xcb, 0x99, 0x4d, 0x33, 0x1c, 0xf1, 0x2f, 0xc8, + 0x16, 0xf5, 0xc2, 0x58, 0xaf, 0x54, 0x8c, 0x16, 0x17, 0xca, 0x77, 0xca, 0x00, 0x3b, 0x47, 0x4e, + 0xff, 0x26, 0xb3, 0x88, 0x1b, 0x50, 0x9a, 0x5c, 0x34, 0x4b, 0xda, 0x53, 0x25, 0xa6, 0x6d, 0xa7, + 0x50, 0x10, 0x29, 0xcf, 0x57, 0x4c, 0xe6, 0xf9, 0xf2, 0x32, 0x74, 0xf9, 0xbb, 0xde, 0xe7, 0xa1, + 0x44, 0x77, 0xaf, 0xca, 0xb8, 0x49, 0x27, 0x8b, 0x2f, 0x68, 0x17, 0xb4, 0x06, 0xc2, 0xfb, 0xdb, + 0x76, 0x98, 0x7b, 0x47, 0xf7, 0xc0, 0xa2, 0x96, 0x04, 0xd3, 0x6a, 0x22, 0x1a, 0x74, 0x86, 0x0d, + 0x59, 0x8a, 0x22, 0x01, 0x4d, 0x3b, 0x8f, 0xb5, 0x2c, 0xe7, 0x71, 0x0d, 0xe6, 0x0d, 0xcf, 0x1d, + 0x0e, 0x63, 0xc3, 0xb1, 0x14, 0x5f, 0x12, 0x9c, 0x38, 0xb0, 0xae, 0x1f, 0xfb, 0xc0, 0x7a, 0xac, + 0xe3, 0xd9, 0x18, 0xe7, 0x78, 0x46, 0xeb, 0xe0, 0x44, 0x8e, 0xe7, 0x29, 0x3a, 0x6c, 0x7f, 0x57, + 0x84, 0xb3, 0x84, 0x9a, 0xd3, 0x0a, 0xaf, 0xa7, 0x31, 0x18, 0x31, 0x37, 0xa2, 0x28, 0xbb, 0x11, + 0xd7, 0x61, 0x8e, 0x65, 0x53, 0x45, 0xf0, 0xb7, 0x3a, 0x89, 0x7f, 0x9a, 0xe8, 0x30, 0x7b, 0x32, + 0x4e, 0x2a, 0xd1, 0xa9, 0xcc, 0x5a, 0xa2, 0x33, 0x97, 0x3c, 0x7f, 0x89, 0x29, 0x59, 0x75, 0x62, + 0x99, 0x6f, 0xed, 0x24, 0x35, 0x2f, 0xea, 0xef, 0x29, 0xd0, 0x94, 0xbe, 0x67, 0x40, 0x08, 0x4a, + 0xb1, 0x4f, 0x14, 0xe8, 0x6f, 0xf4, 0x32, 0x54, 0xfb, 0xfa, 0x50, 0xef, 0x9b, 0xc1, 0x11, 0x15, + 0x4f, 0x99, 0x56, 0x3e, 0x86, 0xb0, 0x1c, 0x7b, 0xfe, 0x0e, 0x54, 0xfa, 0xf4, 0xeb, 0x08, 0x5e, + 0x4a, 0x35, 0xed, 0xb7, 0x14, 0xbc, 0x97, 0xfa, 0x63, 0x05, 0x56, 0x44, 0xa9, 0x08, 0x37, 0xd3, + 0xb3, 0xac, 0xb3, 0x0d, 0x58, 0xe6, 0x9b, 0x4b, 0x62, 0x97, 0x61, 0x71, 0xf5, 0x22, 0x83, 0xc9, + 0xcc, 0xd8, 0x80, 0xe5, 0x80, 0x6a, 0x7e, 0xb2, 0x0f, 0x5b, 0x85, 0x8b, 0xec, 0xa5, 0xdc, 0x67, + 0x9a, 0x72, 0x9d, 0x73, 0xac, 0xba, 0x96, 0x8b, 0x9a, 0x9b, 0x50, 0x70, 0x46, 0x36, 0x9f, 0xa7, + 0x7a, 0x04, 0x2f, 0xb2, 0xaf, 0xb4, 0xf6, 0x64, 0x8a, 0x66, 0x3c, 0x52, 0xcd, 0x9c, 0x79, 0xe2, + 0xb3, 0x85, 0x3f, 0x56, 0xe0, 0xa5, 0x1c, 0xdc, 0xb3, 0xa5, 0x81, 0x1e, 0x64, 0xe2, 0xcf, 0x4d, + 0xf1, 0x49, 0xb8, 0xd9, 0xda, 0x95, 0x09, 0xfd, 0xaf, 0x32, 0x2c, 0xa4, 0x1a, 0x9d, 0x68, 0xfd, + 0xbe, 0x09, 0x88, 0x88, 0x23, 0xbc, 0xbb, 0x80, 0x7a, 0x0f, 0xdc, 0x51, 0x6c, 0x3b, 0x23, 0x3b, + 0xbc, 0xb7, 0x80, 0xec, 0xd2, 0xe8, 0x09, 0x6b, 0xcd, 0x8e, 0x55, 0x43, 0x19, 0x96, 0xc6, 0x7d, + 0x8e, 0x9a, 0x22, 0x73, 0xfd, 0xc1, 0xc8, 0x66, 0x67, 0xb0, 0x5c, 0xe2, 0xdc, 0xdf, 0x70, 0x12, + 0x60, 0x74, 0x00, 0x0b, 0x34, 0xb1, 0x31, 0x0a, 0x06, 0xae, 0xe9, 0x0c, 0x18, 0x65, 0xe5, 0x71, + 0x3b, 0x45, 0x26, 0xae, 0xaf, 0xf0, 0xfe, 0x64, 0x02, 0x3c, 0xd1, 0xe2, 0xc8, 0x50, 0x81, 0xc9, + 0x74, 0xfa, 0xae, 0x1d, 0x62, 0xaa, 0x1c, 0x1b, 0xd3, 0x36, 0xef, 0x2f, 0x63, 0x8a, 0x43, 0x63, + 0x86, 0x61, 0xee, 0x24, 0x86, 0x01, 0x5d, 0x13, 0xe6, 0xa6, 0x9a, 0x6d, 0xf3, 0xf8, 0xf2, 0x8b, + 0x5c, 0x2a, 0xda, 0xba, 0xbb, 0x09, 0xcb, 0x99, 0x5c, 0x9f, 0xb4, 0xfb, 0x95, 0xe3, 0x99, 0x8f, + 0x5b, 0xb0, 0x94, 0xc5, 0xce, 0x13, 0x8c, 0x91, 0x62, 0xd4, 0x71, 0xc6, 0x50, 0x7f, 0x54, 0x80, + 0xe6, 0x16, 0xb6, 0x70, 0x80, 0x9f, 0x77, 0x15, 0x4e, 0xaa, 0xa8, 0xa8, 0x98, 0x2e, 0x2a, 0x4a, + 0xd5, 0x48, 0x95, 0x32, 0x6a, 0xa4, 0x5e, 0x0a, 0xcb, 0xc3, 0xc8, 0x28, 0x65, 0xd9, 0xd5, 0x34, + 0xd0, 0x97, 0xa0, 0x31, 0xf4, 0x4c, 0x5b, 0xf7, 0x8e, 0x7a, 0x4f, 0xf0, 0x91, 0xcf, 0xf7, 0xd3, + 0x6e, 0xce, 0x9e, 0xbc, 0xbd, 0xe5, 0x6b, 0x75, 0xde, 0xfe, 0x3d, 0x7c, 0x44, 0x8b, 0xcf, 0xc2, + 0x14, 0x0b, 0xab, 0xa3, 0x2e, 0x69, 0x31, 0x48, 0x54, 0x50, 0x56, 0x3d, 0x56, 0x41, 0xd9, 0x37, + 0x61, 0x85, 0xb8, 0x0d, 0x87, 0x7a, 0x80, 0x69, 0xee, 0x9d, 0x6c, 0x45, 0x27, 0xe7, 0xf7, 0x8b, + 0x50, 0xeb, 0xb3, 0x51, 0xb8, 0xa3, 0x53, 0xd6, 0x22, 0x80, 0x6a, 0x41, 0x67, 0x0b, 0xeb, 0x3f, + 0x29, 0x6c, 0x26, 0x2c, 0x12, 0x17, 0x80, 0xe3, 0xf1, 0x67, 0xfc, 0xea, 0x37, 0x1c, 0x97, 0x65, + 0x53, 0xca, 0x5a, 0x0c, 0xa2, 0xfe, 0x8e, 0x02, 0x4b, 0x32, 0xae, 0xd9, 0x76, 0x92, 0xdb, 0xd0, + 0x10, 0xa3, 0x4f, 0xae, 0x6d, 0xda, 0x8c, 0x5a, 0x6a, 0x52, 0x37, 0x15, 0x43, 0x3d, 0xf6, 0x92, + 0x44, 0xb2, 0xbc, 0xa0, 0xae, 0xac, 0x15, 0x4c, 0x83, 0xd6, 0xe2, 0x62, 0xbf, 0xcf, 0x77, 0x49, + 0xfa, 0x9b, 0xb0, 0x54, 0x08, 0x88, 0x29, 0x42, 0x55, 0x8b, 0x00, 0x44, 0x5d, 0xf7, 0xdd, 0x91, + 0x63, 0xf0, 0xa2, 0x46, 0xf6, 0xa0, 0x7e, 0x15, 0x9a, 0x3c, 0xde, 0xe1, 0x51, 0x44, 0x32, 0x64, + 0x0e, 0x3f, 0xaa, 0x28, 0x1c, 0xef, 0xa3, 0x0a, 0x35, 0x88, 0x55, 0x95, 0xf0, 0xb1, 0x27, 0x57, + 0x95, 0xdc, 0x88, 0x9d, 0xba, 0x14, 0xb2, 0x3f, 0x5d, 0x90, 0x82, 0x34, 0x36, 0x70, 0x74, 0xe0, + 0xa2, 0xfe, 0x69, 0x01, 0x9a, 0x3c, 0x6a, 0x8d, 0x90, 0xc6, 0x14, 0x3d, 0xeb, 0xeb, 0xd6, 0x4b, + 0x80, 0x78, 0x2c, 0xd5, 0x4b, 0x7d, 0x1f, 0xbe, 0xc0, 0xdf, 0xc4, 0x8e, 0x15, 0xb2, 0x4f, 0x21, + 0x8a, 0x79, 0xa7, 0x10, 0x1a, 0x2c, 0x44, 0x16, 0x8a, 0xf9, 0x64, 0x22, 0x1c, 0x98, 0x74, 0xca, + 0xcf, 0x67, 0x17, 0x15, 0x09, 0x30, 0xc0, 0x69, 0x15, 0xfe, 0x7c, 0x4f, 0x81, 0x76, 0x14, 0x3e, + 0x70, 0x76, 0x4d, 0x93, 0xd9, 0xba, 0x17, 0x26, 0x64, 0xc2, 0x09, 0x8d, 0x15, 0x96, 0x24, 0x10, + 0xad, 0x25, 0x3d, 0xfa, 0x63, 0x92, 0xa9, 0x5f, 0x86, 0x6a, 0x98, 0xf1, 0x61, 0xeb, 0xb2, 0x10, + 0xae, 0xcb, 0x0e, 0xcc, 0xe9, 0x86, 0x41, 0x6f, 0x07, 0xe2, 0x51, 0x17, 0x7f, 0xa4, 0x35, 0xdf, + 0xb4, 0x62, 0xa5, 0xc4, 0x6b, 0xbe, 0xc9, 0x83, 0xfa, 0x65, 0xa6, 0xe5, 0xb4, 0x2e, 0x8c, 0x0c, + 0x3a, 0x83, 0x49, 0x51, 0xbf, 0xa5, 0xc0, 0x72, 0x62, 0xb0, 0xd9, 0x6c, 0xc6, 0x17, 0x81, 0x7e, + 0x32, 0x1d, 0x37, 0x18, 0x39, 0x29, 0x94, 0xd0, 0x6f, 0x88, 0x3a, 0xa8, 0x36, 0x9c, 0xbb, 0x8b, + 0x23, 0x62, 0x4e, 0x2b, 0xf6, 0xcd, 0x39, 0x19, 0x55, 0xff, 0x5a, 0x81, 0xd5, 0x7c, 0x7c, 0xb3, + 0x31, 0x22, 0x29, 0x65, 0xe2, 0x03, 0xc4, 0xb6, 0x6e, 0xf1, 0x81, 0x79, 0x23, 0xa6, 0xbe, 0x39, + 0x75, 0x8f, 0xa5, 0xec, 0xba, 0x47, 0xf5, 0x3d, 0x58, 0xde, 0x19, 0xf9, 0x43, 0xec, 0x9c, 0x42, + 0x21, 0x28, 0x59, 0x54, 0x1a, 0xf6, 0x47, 0x36, 0x3e, 0x85, 0xb1, 0x1e, 0x03, 0xe2, 0x84, 0xcd, + 0xb8, 0x3c, 0x73, 0x05, 0xd7, 0xa3, 0x21, 0xc9, 0xc8, 0xc6, 0xcf, 0x0b, 0xc1, 0xef, 0x16, 0xa2, + 0xa0, 0x98, 0xb3, 0x7c, 0x46, 0x17, 0x21, 0xca, 0xfe, 0x15, 0x92, 0xd9, 0xbf, 0xd4, 0xb7, 0x4c, + 0xc5, 0x8c, 0x6f, 0x99, 0xce, 0x43, 0x93, 0xc7, 0xc8, 0x52, 0xa6, 0xb0, 0xc1, 0x80, 0xbc, 0xd1, + 0x2b, 0xd0, 0x10, 0x5f, 0x82, 0xf4, 0x74, 0xcb, 0xa2, 0xc6, 0xb4, 0xaa, 0xd5, 0x05, 0xec, 0xa6, + 0x65, 0xa1, 0x55, 0x68, 0x04, 0x2e, 0x79, 0x19, 0xe6, 0x9c, 0x49, 0x13, 0x08, 0xdc, 0x9b, 0x96, + 0xc5, 0xd2, 0xbb, 0x2f, 0x40, 0xad, 0xef, 0x0e, 0x8f, 0x7a, 0x36, 0x89, 0x4c, 0xd8, 0xdd, 0x59, + 0x55, 0x02, 0xb8, 0xef, 0x1a, 0x58, 0xfd, 0x6e, 0x8c, 0x31, 0xa7, 0xf0, 0x39, 0x71, 0xf2, 0x93, + 0xe0, 0x42, 0x7a, 0x4f, 0xfb, 0x24, 0x71, 0xe7, 0x8f, 0x14, 0x78, 0x85, 0xfa, 0x3a, 0xa7, 0x6e, + 0xc2, 0x4e, 0x8d, 0x0b, 0x17, 0xdf, 0x80, 0x5a, 0xf8, 0x81, 0x17, 0xaa, 0x42, 0xe9, 0xce, 0xc8, + 0xb2, 0xda, 0x67, 0x50, 0x0d, 0xca, 0xf4, 0x98, 0xb4, 0xad, 0x90, 0x9f, 0x34, 0x93, 0xd5, 0x2e, + 0x5c, 0xfc, 0x19, 0xa8, 0x85, 0xbe, 0x3a, 0xaa, 0xc3, 0xdc, 0xfb, 0xce, 0x7b, 0x8e, 0xfb, 0xcc, + 0x69, 0x9f, 0x41, 0x73, 0x50, 0xbc, 0x69, 0x59, 0x6d, 0x05, 0x35, 0xa1, 0xb6, 0x13, 0x78, 0x58, + 0x27, 0x41, 0x56, 0xbb, 0x80, 0x5a, 0x00, 0xef, 0x9a, 0x7e, 0xe0, 0x7a, 0x66, 0x5f, 0xb7, 0xda, + 0xc5, 0x8b, 0x1f, 0x41, 0x4b, 0xae, 0xf5, 0x43, 0x0d, 0xb2, 0x17, 0x06, 0xb7, 0x3f, 0x34, 0xfd, + 0xa0, 0x7d, 0x86, 0xb4, 0x7f, 0xe0, 0x06, 0x0f, 0x3d, 0xec, 0x63, 0x27, 0x68, 0x2b, 0x08, 0xa0, + 0xf2, 0x15, 0x67, 0xcb, 0xf4, 0x9f, 0xb4, 0x0b, 0x68, 0x91, 0x3b, 0x5e, 0xba, 0xb5, 0xcd, 0x8b, + 0xe7, 0xda, 0x45, 0xd2, 0x3d, 0x7c, 0x2a, 0xa1, 0x36, 0x34, 0xc2, 0x26, 0x77, 0x1f, 0xbe, 0xdf, + 0x2e, 0x33, 0xea, 0xc9, 0xcf, 0xca, 0x45, 0x03, 0xda, 0xc9, 0x52, 0x74, 0x32, 0x26, 0x9b, 0x44, + 0x08, 0x6a, 0x9f, 0x21, 0x33, 0xe3, 0xdf, 0x04, 0xb4, 0x15, 0x34, 0x0f, 0xf5, 0x58, 0x75, 0x7d, + 0xbb, 0x40, 0x00, 0x77, 0xbd, 0x61, 0x9f, 0x8b, 0x8f, 0x91, 0x40, 0x65, 0x4b, 0x38, 0x51, 0xba, + 0x78, 0x0b, 0xaa, 0xe2, 0x4c, 0x8f, 0x34, 0xe5, 0x2c, 0x22, 0x8f, 0xed, 0x33, 0x68, 0x01, 0x9a, + 0xd2, 0x25, 0x59, 0x6d, 0x05, 0x21, 0x68, 0xc9, 0x57, 0xda, 0xb5, 0x0b, 0x17, 0x37, 0x00, 0xa2, + 0x43, 0x2f, 0x42, 0xce, 0xb6, 0x73, 0xa8, 0x5b, 0xa6, 0xc1, 0x68, 0x23, 0xaf, 0x08, 0x77, 0x29, + 0x77, 0x58, 0x64, 0xdd, 0x2e, 0x5c, 0xfc, 0x00, 0xaa, 0xe2, 0x18, 0x82, 0xc0, 0x35, 0x6c, 0xbb, + 0x87, 0x98, 0x49, 0x66, 0x07, 0x07, 0x4c, 0x8e, 0x37, 0x6d, 0xec, 0x18, 0xed, 0x02, 0x21, 0x83, + 0xd5, 0x37, 0xf1, 0x84, 0x74, 0xbb, 0x88, 0x3a, 0xb0, 0xc4, 0x40, 0x72, 0xc6, 0xba, 0x5d, 0xda, + 0xf8, 0xf5, 0x73, 0x00, 0xac, 0xea, 0xdc, 0x75, 0x3d, 0x03, 0x0d, 0xe9, 0xd7, 0x28, 0x9b, 0xae, + 0x3d, 0x74, 0x1d, 0x51, 0x0a, 0xeb, 0xa3, 0x2b, 0x29, 0x0f, 0x8d, 0x3d, 0xa6, 0x9b, 0x72, 0xbe, + 0x75, 0x5f, 0xcd, 0xe9, 0x91, 0x68, 0xae, 0x9e, 0x41, 0x4f, 0x29, 0xc6, 0x5d, 0xd3, 0xc6, 0xbb, + 0x66, 0xff, 0x89, 0xa8, 0x10, 0xde, 0x18, 0x77, 0x0d, 0x5d, 0xa2, 0xb1, 0xc0, 0x79, 0x21, 0x07, + 0xe7, 0x4e, 0xe0, 0x99, 0xce, 0x40, 0xec, 0xf1, 0xea, 0x19, 0x34, 0x4a, 0x5c, 0x84, 0x27, 0x90, + 0x7e, 0x66, 0xba, 0xbb, 0xef, 0x4e, 0x8a, 0x76, 0x08, 0xf3, 0x89, 0x3b, 0x48, 0xd1, 0x9b, 0x79, + 0xf7, 0x06, 0x65, 0xdd, 0x99, 0xda, 0xbd, 0x34, 0x65, 0xeb, 0x10, 0xa3, 0x0d, 0x2d, 0xf9, 0xf2, + 0x4c, 0xf4, 0x46, 0xfe, 0x10, 0xa9, 0x1b, 0xcd, 0xba, 0x6f, 0x4e, 0xd7, 0x38, 0x44, 0xf7, 0x0d, + 0xb6, 0xd8, 0x27, 0xa3, 0xcb, 0xbc, 0x4a, 0xae, 0x3b, 0xde, 0xd9, 0x52, 0xcf, 0x20, 0x83, 0x78, + 0x02, 0x89, 0xdb, 0xd7, 0xd0, 0x7a, 0x5e, 0x22, 0x2d, 0xfb, 0x9a, 0xb6, 0xc9, 0x58, 0xbe, 0x91, + 0x54, 0xd9, 0x71, 0xb3, 0x48, 0x5d, 0xf5, 0x78, 0x9c, 0x59, 0xc4, 0x50, 0x8c, 0x9f, 0xc5, 0x09, + 0xb0, 0x0c, 0xd9, 0x89, 0x52, 0xc6, 0x05, 0x46, 0xe9, 0x65, 0x1e, 0x1d, 0xe7, 0xe4, 0xdf, 0x77, + 0x34, 0x19, 0xe3, 0x11, 0x55, 0xe4, 0xe4, 0x27, 0x19, 0x97, 0x73, 0x8b, 0x3a, 0xb3, 0x2f, 0xa0, + 0xeb, 0x5e, 0x99, 0xbe, 0x43, 0x7c, 0x9d, 0xcb, 0xb7, 0x9b, 0xe5, 0x89, 0x2c, 0xf3, 0x56, 0xb6, + 0xbc, 0x75, 0x9e, 0x7d, 0x61, 0x9a, 0x7a, 0x06, 0x7d, 0x55, 0xda, 0x34, 0xd0, 0x5a, 0xfe, 0xf2, + 0x90, 0x1d, 0xec, 0xc9, 0x3c, 0xfc, 0x45, 0x40, 0x4c, 0x9b, 0x9d, 0x7d, 0x73, 0x30, 0xf2, 0x74, + 0xb6, 0xc4, 0xf3, 0x8d, 0x61, 0xba, 0xb1, 0x40, 0xf5, 0xd6, 0xb1, 0xfa, 0x84, 0x53, 0xeb, 0x03, + 0xdc, 0xc5, 0xc1, 0x7d, 0x7a, 0x63, 0x93, 0x9f, 0x9e, 0x59, 0x64, 0xf7, 0x79, 0x13, 0x81, 0xee, + 0xf5, 0x29, 0x5a, 0x86, 0x48, 0xf6, 0xa1, 0x7e, 0x17, 0x07, 0x3c, 0x5f, 0xec, 0xa3, 0x31, 0x7d, + 0x45, 0x1b, 0x81, 0xe6, 0xe2, 0x34, 0x4d, 0xe3, 0x06, 0x37, 0x71, 0xef, 0x1b, 0x1a, 0x23, 0xea, + 0xf4, 0x8d, 0x74, 0x79, 0x06, 0x37, 0xe7, 0x32, 0x39, 0x36, 0x33, 0xea, 0x12, 0xbe, 0x8b, 0x75, + 0x2b, 0x38, 0xc8, 0x9d, 0x59, 0xac, 0xcd, 0xa4, 0x99, 0x49, 0x4d, 0x43, 0x3c, 0x26, 0x2c, 0x32, + 0x3d, 0x95, 0xcf, 0xc9, 0xae, 0xe6, 0x0d, 0x92, 0x6e, 0x3b, 0xf5, 0x92, 0xfc, 0xa6, 0x70, 0x1d, + 0xe4, 0xcb, 0xde, 0xd0, 0xd5, 0x63, 0xdf, 0x2a, 0x37, 0x19, 0x17, 0x86, 0x85, 0x2d, 0xcf, 0x1d, + 0xca, 0x93, 0xba, 0x9c, 0x33, 0xa9, 0x54, 0xcb, 0xa9, 0xd1, 0xfc, 0x1c, 0x34, 0x44, 0x58, 0x43, + 0x0f, 0x4f, 0xf2, 0x78, 0x1f, 0x6f, 0x34, 0xf5, 0xe0, 0x8f, 0x61, 0x3e, 0x71, 0xc2, 0x9a, 0xb7, + 0xe8, 0xb2, 0x0f, 0x62, 0x27, 0x63, 0xf8, 0x79, 0x40, 0xf4, 0x32, 0x41, 0x59, 0x1e, 0x79, 0x3e, + 0x5a, 0xba, 0xa9, 0x40, 0x74, 0xf5, 0x18, 0x3d, 0xc2, 0x95, 0xf7, 0xcb, 0x0a, 0x2c, 0x67, 0x1e, + 0x65, 0xa6, 0xad, 0x14, 0x4f, 0xff, 0x8f, 0x39, 0x73, 0xed, 0xbe, 0x75, 0xac, 0x3e, 0x21, 0x11, + 0x03, 0x68, 0xc4, 0x73, 0xdf, 0x28, 0xe7, 0x63, 0x93, 0x8c, 0x5c, 0x7c, 0x5a, 0xcf, 0xb2, 0x9a, + 0x86, 0x88, 0x1e, 0xc3, 0x7c, 0xe2, 0xa8, 0x22, 0x4f, 0x98, 0xd9, 0x27, 0x1a, 0x53, 0x79, 0x03, + 0xa9, 0x03, 0x8a, 0x3c, 0x6f, 0x20, 0xef, 0x24, 0x63, 0x1a, 0x25, 0x6e, 0x4a, 0x99, 0x3f, 0x34, + 0x86, 0x0d, 0xc9, 0x5c, 0x63, 0xf7, 0x8d, 0xa9, 0xda, 0x86, 0x3c, 0xfb, 0x0d, 0x05, 0x3a, 0x79, + 0x89, 0x36, 0x74, 0x2d, 0xd7, 0xa2, 0x8e, 0x8b, 0xa2, 0xbb, 0x9f, 0x3d, 0x6e, 0xb7, 0xb8, 0x4f, + 0x2a, 0x27, 0xce, 0x72, 0x5d, 0xe0, 0xac, 0xf4, 0xda, 0x64, 0xce, 0x7e, 0x9d, 0x16, 0x7b, 0x44, + 0xb9, 0xb4, 0x3c, 0xce, 0x66, 0x25, 0xdc, 0x26, 0x8f, 0xfe, 0x55, 0xa8, 0xc7, 0xb2, 0x6b, 0x79, + 0x9e, 0x46, 0x3a, 0x01, 0x37, 0x79, 0xe4, 0x47, 0x00, 0x51, 0x56, 0x0d, 0xbd, 0x36, 0x8e, 0xe8, + 0x93, 0x9a, 0x3f, 0xee, 0x3c, 0x4d, 0x32, 0x7f, 0x72, 0xca, 0xed, 0x58, 0x18, 0x44, 0xe0, 0x36, + 0x01, 0x43, 0x22, 0x60, 0x9b, 0x88, 0xe1, 0x10, 0xba, 0xf9, 0x89, 0x1d, 0xf4, 0xf6, 0x98, 0x33, + 0xb1, 0xb1, 0x8b, 0x78, 0x12, 0xde, 0x8d, 0x1f, 0x2c, 0x42, 0x2d, 0x52, 0xd1, 0xff, 0x0f, 0xc5, + 0x9f, 0x5f, 0x28, 0xfe, 0x18, 0xe6, 0x13, 0xb7, 0x49, 0xe6, 0xad, 0xa1, 0xec, 0x4b, 0x27, 0xa7, + 0x8a, 0x22, 0xe5, 0x8b, 0x18, 0xf3, 0xec, 0x4e, 0xe6, 0x75, 0x8d, 0x93, 0xc7, 0xff, 0x1a, 0xbb, + 0x03, 0x36, 0xfc, 0xa6, 0xe7, 0xf5, 0x31, 0xd5, 0xd5, 0xf2, 0xd5, 0x17, 0x1f, 0x97, 0x08, 0xf5, + 0x7f, 0x47, 0xb6, 0xe0, 0x31, 0xcc, 0x27, 0xee, 0xb0, 0xca, 0x5b, 0x49, 0xd9, 0x57, 0x5d, 0x4d, + 0xc6, 0xf0, 0x13, 0x0e, 0x6e, 0x0f, 0x60, 0x31, 0xe3, 0xb6, 0x1f, 0x74, 0x25, 0x3f, 0x69, 0x90, + 0x7d, 0x31, 0xd0, 0x34, 0x13, 0x6b, 0x4a, 0xca, 0x9c, 0xb7, 0x75, 0x66, 0xfd, 0xf1, 0x44, 0x77, + 0x7d, 0xda, 0xff, 0xa9, 0x08, 0x27, 0xf6, 0x01, 0x54, 0xd8, 0x15, 0x55, 0x28, 0xf7, 0x70, 0x3e, + 0x76, 0x81, 0x55, 0x77, 0xf2, 0x45, 0x57, 0xfe, 0xc8, 0x0a, 0xc8, 0x3c, 0x7a, 0xd0, 0x62, 0xa0, + 0x90, 0x59, 0xa7, 0x8c, 0xe0, 0x03, 0x28, 0xd3, 0x6d, 0x01, 0xe5, 0x54, 0xc2, 0xc6, 0x2f, 0xa4, + 0xea, 0x4e, 0x73, 0x07, 0x55, 0x44, 0x79, 0x9d, 0xf6, 0x65, 0x39, 0xfd, 0xd3, 0x1e, 0xfe, 0x8a, + 0x82, 0x7a, 0xd0, 0x64, 0x08, 0x04, 0x67, 0x4e, 0x7b, 0x06, 0x03, 0x58, 0x8c, 0xcd, 0xe0, 0x79, + 0xa1, 0xb9, 0xa2, 0xfc, 0x1f, 0xc9, 0xcc, 0xfc, 0x02, 0xbd, 0x1c, 0x2a, 0xf9, 0xb1, 0x32, 0xba, + 0x72, 0xdc, 0x2f, 0xb3, 0xbb, 0x57, 0x8f, 0xd1, 0x23, 0xc4, 0xbe, 0x07, 0xed, 0x64, 0x15, 0x3c, + 0xba, 0x94, 0x6f, 0x77, 0x4e, 0xe2, 0x63, 0xa1, 0x07, 0x50, 0x61, 0x35, 0x7e, 0x79, 0x4a, 0x2a, + 0x55, 0x00, 0x4e, 0x1c, 0xef, 0xd6, 0x67, 0xbe, 0xb6, 0x31, 0x30, 0x83, 0x83, 0xd1, 0x1e, 0x79, + 0x73, 0x99, 0x35, 0xbe, 0x64, 0xba, 0xfc, 0xd7, 0x65, 0x21, 0xdb, 0xcb, 0xb4, 0xff, 0x65, 0x8a, + 0x62, 0xb8, 0xb7, 0x57, 0xa1, 0x8f, 0x6f, 0xfd, 0x4f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x23, 0xf0, + 0x2b, 0xbb, 0xbe, 0x6d, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/states/etcd/show/segment.go b/states/etcd/show/segment.go index 58cc872..10a6478 100644 --- a/states/etcd/show/segment.go +++ b/states/etcd/show/segment.go @@ -83,7 +83,12 @@ func (c *ComponentShow) SegmentCommand(ctx context.Context, p *SegmentParam) err case "table": PrintSegmentInfo(info, p.Detail) case "line": - fmt.Printf("SegmentID: %d State: %s, Level: %s, Row Count:%d\n", info.ID, info.State.String(), info.Level.String(), info.NumOfRows) + output := fmt.Sprintf("SegmentID: %d State: %s, Level: %s, Row Count:%d, ", + info.ID, info.State.String(), info.Level.String(), info.NumOfRows) + if info.Level == models.SegmentLevelL2 { + output += fmt.Sprintf("PartitionStatsVersion:%d \n", info.PartitionStatsVersion) + } + fmt.Printf(output) case "statistics": if info.State != models.SegmentStateDropped { for _, binlog := range info.GetBinlogs() {