From aa8a661302177b80869d7c84b9d3a3679b452043 Mon Sep 17 00:00:00 2001 From: "yihao.dai" Date: Wed, 22 Mar 2023 14:57:53 +0800 Subject: [PATCH] Add FlushAll (#122) Signed-off-by: bigsheeper --- go-api/milvuspb/milvus.pb.go | 1283 ++++++++++++++++++++-------------- go-api/schemapb/schema.pb.go | 10 +- proto/milvus.proto | 20 + 3 files changed, 799 insertions(+), 514 deletions(-) diff --git a/go-api/milvuspb/milvus.pb.go b/go-api/milvuspb/milvus.pb.go index 67c19e7..65a9eea 100644 --- a/go-api/milvuspb/milvus.pb.go +++ b/go-api/milvuspb/milvus.pb.go @@ -376,6 +376,7 @@ func (m *DescribeAliasRequest) GetAlias() string { return "" } +// // Describe alias response type DescribeAliasResponse struct { // Response status @@ -496,6 +497,7 @@ func (m *ListAliasesRequest) GetCollectionName() string { return "" } +// // List aliases response type ListAliasesResponse struct { // Response status @@ -561,7 +563,7 @@ func (m *ListAliasesResponse) GetAliases() []string { return nil } -// * +//* // Create collection in milvus type CreateCollectionRequest struct { // Not useful for now @@ -657,7 +659,7 @@ func (m *CreateCollectionRequest) GetProperties() []*commonpb.KeyValuePair { return nil } -// * +//* // Drop collection in milvus, also will drop data in collection. type DropCollectionRequest struct { // Not useful for now @@ -717,7 +719,7 @@ func (m *DropCollectionRequest) GetCollectionName() string { return "" } -// * +//* // Alter collection in milvus type AlterCollectionRequest struct { // Not useful for now @@ -793,7 +795,7 @@ func (m *AlterCollectionRequest) GetProperties() []*commonpb.KeyValuePair { return nil } -// * +//* // Check collection exist in milvus or not. type HasCollectionRequest struct { // Not useful for now @@ -956,7 +958,7 @@ func (m *StringResponse) GetValue() string { return "" } -// * +//* // Get collection meta datas like: schema, collectionID, shards number ... type DescribeCollectionRequest struct { // Not useful for now @@ -1034,7 +1036,7 @@ func (m *DescribeCollectionRequest) GetTimeStamp() uint64 { return 0 } -// * +//* // DescribeCollection Response type DescribeCollectionResponse struct { // Contain error_code and reason @@ -1183,7 +1185,7 @@ func (m *DescribeCollectionResponse) GetProperties() []*commonpb.KeyValuePair { return nil } -// * +//* // Load collection data into query nodes, then you can do vector search on this collection. type LoadCollectionRequest struct { // Not useful for now @@ -1270,7 +1272,7 @@ func (m *LoadCollectionRequest) GetRefresh() bool { return false } -// * +//* // Release collection data from query nodes, then you can't do vector search on this collection. type ReleaseCollectionRequest struct { // Not useful for now @@ -1330,7 +1332,7 @@ func (m *ReleaseCollectionRequest) GetCollectionName() string { return "" } -// * +//* // Get statistics like row_count. // WARNING: This API is experimental and not useful for now. type GetStatisticsRequest struct { @@ -1409,7 +1411,7 @@ func (m *GetStatisticsRequest) GetGuaranteeTimestamp() uint64 { return 0 } -// * +//* // Will return statistics in stats field like [{key:"row_count",value:"1"}] // WARNING: This API is experimental and not useful for now. type GetStatisticsResponse struct { @@ -1461,7 +1463,7 @@ func (m *GetStatisticsResponse) GetStats() []*commonpb.KeyValuePair { return nil } -// * +//* // Get collection statistics like row_count. type GetCollectionStatisticsRequest struct { // Not useful for now @@ -1521,7 +1523,7 @@ func (m *GetCollectionStatisticsRequest) GetCollectionName() string { return "" } -// * +//* // Will return collection statistics in stats field like [{key:"row_count",value:"1"}] type GetCollectionStatisticsResponse struct { // Contain error_code and reason @@ -1572,6 +1574,7 @@ func (m *GetCollectionStatisticsResponse) GetStats() []*commonpb.KeyValuePair { return nil } +// // List collections type ShowCollectionsRequest struct { // Not useful for now @@ -1650,6 +1653,7 @@ func (m *ShowCollectionsRequest) GetCollectionNames() []string { return nil } +// // Return basic collection infos. type ShowCollectionsResponse struct { // Contain error_code and reason @@ -1746,6 +1750,7 @@ func (m *ShowCollectionsResponse) GetQueryServiceAvailable() []bool { return nil } +// // Create partition in created collection. type CreatePartitionRequest struct { // Not useful for now @@ -1814,6 +1819,7 @@ func (m *CreatePartitionRequest) GetPartitionName() string { return "" } +// // Drop partition in created collection. type DropPartitionRequest struct { // Not useful for now @@ -1882,6 +1888,7 @@ func (m *DropPartitionRequest) GetPartitionName() string { return "" } +// // Check if partition exist in collection or not. type HasPartitionRequest struct { // Not useful for now @@ -1950,6 +1957,7 @@ func (m *HasPartitionRequest) GetPartitionName() string { return "" } +// // Load specific partitions data of one collection into query nodes // Then you can get these data as result when you do vector search on this collection. type LoadPartitionsRequest struct { @@ -2046,6 +2054,7 @@ func (m *LoadPartitionsRequest) GetRefresh() bool { return false } +// // Release specific partitions data of one collection from query nodes. // Then you can not get these data as result when you do vector search on this collection. type ReleasePartitionsRequest struct { @@ -2115,6 +2124,7 @@ func (m *ReleasePartitionsRequest) GetPartitionNames() []string { return nil } +// // Get partition statistics like row_count. type GetPartitionStatisticsRequest struct { // Not useful for now @@ -2230,6 +2240,7 @@ func (m *GetPartitionStatisticsResponse) GetStats() []*commonpb.KeyValuePair { return nil } +// // List all partitions for particular collection type ShowPartitionsRequest struct { // Not useful for now @@ -2317,6 +2328,7 @@ func (m *ShowPartitionsRequest) GetType() ShowType { return ShowType_All } +// // List all partitions for particular collection response. // The returned datas are all rows, we can format to columns by therir index. type ShowPartitionsResponse struct { @@ -2633,6 +2645,7 @@ func (m *ShowSegmentsResponse) GetSegmentIDs() []int64 { return nil } +// // Create index for vector datas type CreateIndexRequest struct { // Not useful for now @@ -2719,6 +2732,7 @@ func (m *CreateIndexRequest) GetIndexName() string { return "" } +// // Get created index information. // Current release of Milvus only supports showing latest built index. type DescribeIndexRequest struct { @@ -2797,6 +2811,7 @@ func (m *DescribeIndexRequest) GetIndexName() string { return "" } +// // Index informations type IndexDescription struct { // Index name @@ -2899,6 +2914,7 @@ func (m *IndexDescription) GetIndexStateFailReason() string { return "" } +// // Describe index response type DescribeIndexResponse struct { // Response status @@ -2949,7 +2965,8 @@ func (m *DescribeIndexResponse) GetIndexDescriptions() []*IndexDescription { return nil } -// Get index building progress +// +// Get index building progress type GetIndexBuildProgressRequest struct { // Not useful for now Base *commonpb.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"` @@ -4221,7 +4238,6 @@ func (m *VectorIDs) GetPartitionNames() []string { type VectorsArray struct { // Types that are valid to be assigned to Array: - // // *VectorsArray_IdArray // *VectorsArray_DataArray Array isVectorsArray_Array `protobuf_oneof:"array"` @@ -4368,7 +4384,6 @@ type CalcDistanceResults struct { // num(op_left)*num(op_right) distance values, "HAMMIN" return integer distance // // Types that are valid to be assigned to Array: - // // *CalcDistanceResults_IntDist // *CalcDistanceResults_FloatDist Array isCalcDistanceResults_Array `protobuf_oneof:"array"` @@ -4454,6 +4469,84 @@ func (*CalcDistanceResults) XXX_OneofWrappers() []interface{} { } } +type FlushAllRequest struct { + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *FlushAllRequest) Reset() { *m = FlushAllRequest{} } +func (m *FlushAllRequest) String() string { return proto.CompactTextString(m) } +func (*FlushAllRequest) ProtoMessage() {} +func (*FlushAllRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_02345ba45cc0e303, []int{60} +} + +func (m *FlushAllRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_FlushAllRequest.Unmarshal(m, b) +} +func (m *FlushAllRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_FlushAllRequest.Marshal(b, m, deterministic) +} +func (m *FlushAllRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_FlushAllRequest.Merge(m, src) +} +func (m *FlushAllRequest) XXX_Size() int { + return xxx_messageInfo_FlushAllRequest.Size(m) +} +func (m *FlushAllRequest) XXX_DiscardUnknown() { + xxx_messageInfo_FlushAllRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_FlushAllRequest proto.InternalMessageInfo + +type FlushAllResponse struct { + Status *commonpb.Status `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"` + FlushAllTs uint64 `protobuf:"varint,2,opt,name=flush_all_ts,json=flushAllTs,proto3" json:"flush_all_ts,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *FlushAllResponse) Reset() { *m = FlushAllResponse{} } +func (m *FlushAllResponse) String() string { return proto.CompactTextString(m) } +func (*FlushAllResponse) ProtoMessage() {} +func (*FlushAllResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_02345ba45cc0e303, []int{61} +} + +func (m *FlushAllResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_FlushAllResponse.Unmarshal(m, b) +} +func (m *FlushAllResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_FlushAllResponse.Marshal(b, m, deterministic) +} +func (m *FlushAllResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_FlushAllResponse.Merge(m, src) +} +func (m *FlushAllResponse) XXX_Size() int { + return xxx_messageInfo_FlushAllResponse.Size(m) +} +func (m *FlushAllResponse) XXX_DiscardUnknown() { + xxx_messageInfo_FlushAllResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_FlushAllResponse proto.InternalMessageInfo + +func (m *FlushAllResponse) GetStatus() *commonpb.Status { + if m != nil { + return m.Status + } + return nil +} + +func (m *FlushAllResponse) GetFlushAllTs() uint64 { + if m != nil { + return m.FlushAllTs + } + return 0 +} + type PersistentSegmentInfo struct { SegmentID int64 `protobuf:"varint,1,opt,name=segmentID,proto3" json:"segmentID,omitempty"` CollectionID int64 `protobuf:"varint,2,opt,name=collectionID,proto3" json:"collectionID,omitempty"` @@ -4469,7 +4562,7 @@ func (m *PersistentSegmentInfo) Reset() { *m = PersistentSegmentInfo{} } func (m *PersistentSegmentInfo) String() string { return proto.CompactTextString(m) } func (*PersistentSegmentInfo) ProtoMessage() {} func (*PersistentSegmentInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_02345ba45cc0e303, []int{60} + return fileDescriptor_02345ba45cc0e303, []int{62} } func (m *PersistentSegmentInfo) XXX_Unmarshal(b []byte) error { @@ -4538,7 +4631,7 @@ func (m *GetPersistentSegmentInfoRequest) Reset() { *m = GetPersistentSe func (m *GetPersistentSegmentInfoRequest) String() string { return proto.CompactTextString(m) } func (*GetPersistentSegmentInfoRequest) ProtoMessage() {} func (*GetPersistentSegmentInfoRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_02345ba45cc0e303, []int{61} + return fileDescriptor_02345ba45cc0e303, []int{63} } func (m *GetPersistentSegmentInfoRequest) XXX_Unmarshal(b []byte) error { @@ -4592,7 +4685,7 @@ func (m *GetPersistentSegmentInfoResponse) Reset() { *m = GetPersistentS func (m *GetPersistentSegmentInfoResponse) String() string { return proto.CompactTextString(m) } func (*GetPersistentSegmentInfoResponse) ProtoMessage() {} func (*GetPersistentSegmentInfoResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_02345ba45cc0e303, []int{62} + return fileDescriptor_02345ba45cc0e303, []int{64} } func (m *GetPersistentSegmentInfoResponse) XXX_Unmarshal(b []byte) error { @@ -4648,7 +4741,7 @@ func (m *QuerySegmentInfo) Reset() { *m = QuerySegmentInfo{} } func (m *QuerySegmentInfo) String() string { return proto.CompactTextString(m) } func (*QuerySegmentInfo) ProtoMessage() {} func (*QuerySegmentInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_02345ba45cc0e303, []int{63} + return fileDescriptor_02345ba45cc0e303, []int{65} } func (m *QuerySegmentInfo) XXX_Unmarshal(b []byte) error { @@ -4752,7 +4845,7 @@ func (m *GetQuerySegmentInfoRequest) Reset() { *m = GetQuerySegmentInfoR func (m *GetQuerySegmentInfoRequest) String() string { return proto.CompactTextString(m) } func (*GetQuerySegmentInfoRequest) ProtoMessage() {} func (*GetQuerySegmentInfoRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_02345ba45cc0e303, []int{64} + return fileDescriptor_02345ba45cc0e303, []int{66} } func (m *GetQuerySegmentInfoRequest) XXX_Unmarshal(b []byte) error { @@ -4806,7 +4899,7 @@ func (m *GetQuerySegmentInfoResponse) Reset() { *m = GetQuerySegmentInfo func (m *GetQuerySegmentInfoResponse) String() string { return proto.CompactTextString(m) } func (*GetQuerySegmentInfoResponse) ProtoMessage() {} func (*GetQuerySegmentInfoResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_02345ba45cc0e303, []int{65} + return fileDescriptor_02345ba45cc0e303, []int{67} } func (m *GetQuerySegmentInfoResponse) XXX_Unmarshal(b []byte) error { @@ -4852,7 +4945,7 @@ func (m *DummyRequest) Reset() { *m = DummyRequest{} } func (m *DummyRequest) String() string { return proto.CompactTextString(m) } func (*DummyRequest) ProtoMessage() {} func (*DummyRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_02345ba45cc0e303, []int{66} + return fileDescriptor_02345ba45cc0e303, []int{68} } func (m *DummyRequest) XXX_Unmarshal(b []byte) error { @@ -4891,7 +4984,7 @@ func (m *DummyResponse) Reset() { *m = DummyResponse{} } func (m *DummyResponse) String() string { return proto.CompactTextString(m) } func (*DummyResponse) ProtoMessage() {} func (*DummyResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_02345ba45cc0e303, []int{67} + return fileDescriptor_02345ba45cc0e303, []int{69} } func (m *DummyResponse) XXX_Unmarshal(b []byte) error { @@ -4929,7 +5022,7 @@ func (m *RegisterLinkRequest) Reset() { *m = RegisterLinkRequest{} } func (m *RegisterLinkRequest) String() string { return proto.CompactTextString(m) } func (*RegisterLinkRequest) ProtoMessage() {} func (*RegisterLinkRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_02345ba45cc0e303, []int{68} + return fileDescriptor_02345ba45cc0e303, []int{70} } func (m *RegisterLinkRequest) XXX_Unmarshal(b []byte) error { @@ -4962,7 +5055,7 @@ func (m *RegisterLinkResponse) Reset() { *m = RegisterLinkResponse{} } func (m *RegisterLinkResponse) String() string { return proto.CompactTextString(m) } func (*RegisterLinkResponse) ProtoMessage() {} func (*RegisterLinkResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_02345ba45cc0e303, []int{69} + return fileDescriptor_02345ba45cc0e303, []int{71} } func (m *RegisterLinkResponse) XXX_Unmarshal(b []byte) error { @@ -5009,7 +5102,7 @@ func (m *GetMetricsRequest) Reset() { *m = GetMetricsRequest{} } func (m *GetMetricsRequest) String() string { return proto.CompactTextString(m) } func (*GetMetricsRequest) ProtoMessage() {} func (*GetMetricsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_02345ba45cc0e303, []int{70} + return fileDescriptor_02345ba45cc0e303, []int{72} } func (m *GetMetricsRequest) XXX_Unmarshal(b []byte) error { @@ -5057,7 +5150,7 @@ func (m *GetMetricsResponse) Reset() { *m = GetMetricsResponse{} } func (m *GetMetricsResponse) String() string { return proto.CompactTextString(m) } func (*GetMetricsResponse) ProtoMessage() {} func (*GetMetricsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_02345ba45cc0e303, []int{71} + return fileDescriptor_02345ba45cc0e303, []int{73} } func (m *GetMetricsResponse) XXX_Unmarshal(b []byte) error { @@ -5113,7 +5206,7 @@ func (m *ComponentInfo) Reset() { *m = ComponentInfo{} } func (m *ComponentInfo) String() string { return proto.CompactTextString(m) } func (*ComponentInfo) ProtoMessage() {} func (*ComponentInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_02345ba45cc0e303, []int{72} + return fileDescriptor_02345ba45cc0e303, []int{74} } func (m *ComponentInfo) XXX_Unmarshal(b []byte) error { @@ -5175,7 +5268,7 @@ func (m *ComponentStates) Reset() { *m = ComponentStates{} } func (m *ComponentStates) String() string { return proto.CompactTextString(m) } func (*ComponentStates) ProtoMessage() {} func (*ComponentStates) Descriptor() ([]byte, []int) { - return fileDescriptor_02345ba45cc0e303, []int{73} + return fileDescriptor_02345ba45cc0e303, []int{75} } func (m *ComponentStates) XXX_Unmarshal(b []byte) error { @@ -5227,7 +5320,7 @@ func (m *GetComponentStatesRequest) Reset() { *m = GetComponentStatesReq func (m *GetComponentStatesRequest) String() string { return proto.CompactTextString(m) } func (*GetComponentStatesRequest) ProtoMessage() {} func (*GetComponentStatesRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_02345ba45cc0e303, []int{74} + return fileDescriptor_02345ba45cc0e303, []int{76} } func (m *GetComponentStatesRequest) XXX_Unmarshal(b []byte) error { @@ -5248,6 +5341,7 @@ func (m *GetComponentStatesRequest) XXX_DiscardUnknown() { var xxx_messageInfo_GetComponentStatesRequest proto.InternalMessageInfo +// // Do load balancing operation from src_nodeID to dst_nodeID. type LoadBalanceRequest struct { Base *commonpb.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"` @@ -5264,7 +5358,7 @@ func (m *LoadBalanceRequest) Reset() { *m = LoadBalanceRequest{} } func (m *LoadBalanceRequest) String() string { return proto.CompactTextString(m) } func (*LoadBalanceRequest) ProtoMessage() {} func (*LoadBalanceRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_02345ba45cc0e303, []int{75} + return fileDescriptor_02345ba45cc0e303, []int{77} } func (m *LoadBalanceRequest) XXX_Unmarshal(b []byte) error { @@ -5332,7 +5426,7 @@ func (m *ManualCompactionRequest) Reset() { *m = ManualCompactionRequest func (m *ManualCompactionRequest) String() string { return proto.CompactTextString(m) } func (*ManualCompactionRequest) ProtoMessage() {} func (*ManualCompactionRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_02345ba45cc0e303, []int{76} + return fileDescriptor_02345ba45cc0e303, []int{78} } func (m *ManualCompactionRequest) XXX_Unmarshal(b []byte) error { @@ -5380,7 +5474,7 @@ func (m *ManualCompactionResponse) Reset() { *m = ManualCompactionRespon func (m *ManualCompactionResponse) String() string { return proto.CompactTextString(m) } func (*ManualCompactionResponse) ProtoMessage() {} func (*ManualCompactionResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_02345ba45cc0e303, []int{77} + return fileDescriptor_02345ba45cc0e303, []int{79} } func (m *ManualCompactionResponse) XXX_Unmarshal(b []byte) error { @@ -5433,7 +5527,7 @@ func (m *GetCompactionStateRequest) Reset() { *m = GetCompactionStateReq func (m *GetCompactionStateRequest) String() string { return proto.CompactTextString(m) } func (*GetCompactionStateRequest) ProtoMessage() {} func (*GetCompactionStateRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_02345ba45cc0e303, []int{78} + return fileDescriptor_02345ba45cc0e303, []int{80} } func (m *GetCompactionStateRequest) XXX_Unmarshal(b []byte) error { @@ -5477,7 +5571,7 @@ func (m *GetCompactionStateResponse) Reset() { *m = GetCompactionStateRe func (m *GetCompactionStateResponse) String() string { return proto.CompactTextString(m) } func (*GetCompactionStateResponse) ProtoMessage() {} func (*GetCompactionStateResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_02345ba45cc0e303, []int{79} + return fileDescriptor_02345ba45cc0e303, []int{81} } func (m *GetCompactionStateResponse) XXX_Unmarshal(b []byte) error { @@ -5551,7 +5645,7 @@ func (m *GetCompactionPlansRequest) Reset() { *m = GetCompactionPlansReq func (m *GetCompactionPlansRequest) String() string { return proto.CompactTextString(m) } func (*GetCompactionPlansRequest) ProtoMessage() {} func (*GetCompactionPlansRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_02345ba45cc0e303, []int{80} + return fileDescriptor_02345ba45cc0e303, []int{82} } func (m *GetCompactionPlansRequest) XXX_Unmarshal(b []byte) error { @@ -5592,7 +5686,7 @@ func (m *GetCompactionPlansResponse) Reset() { *m = GetCompactionPlansRe func (m *GetCompactionPlansResponse) String() string { return proto.CompactTextString(m) } func (*GetCompactionPlansResponse) ProtoMessage() {} func (*GetCompactionPlansResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_02345ba45cc0e303, []int{81} + return fileDescriptor_02345ba45cc0e303, []int{83} } func (m *GetCompactionPlansResponse) XXX_Unmarshal(b []byte) error { @@ -5646,7 +5740,7 @@ func (m *CompactionMergeInfo) Reset() { *m = CompactionMergeInfo{} } func (m *CompactionMergeInfo) String() string { return proto.CompactTextString(m) } func (*CompactionMergeInfo) ProtoMessage() {} func (*CompactionMergeInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_02345ba45cc0e303, []int{82} + return fileDescriptor_02345ba45cc0e303, []int{84} } func (m *CompactionMergeInfo) XXX_Unmarshal(b []byte) error { @@ -5692,7 +5786,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_02345ba45cc0e303, []int{83} + return fileDescriptor_02345ba45cc0e303, []int{85} } func (m *GetFlushStateRequest) XXX_Unmarshal(b []byte) error { @@ -5732,7 +5826,7 @@ func (m *GetFlushStateResponse) Reset() { *m = GetFlushStateResponse{} } func (m *GetFlushStateResponse) String() string { return proto.CompactTextString(m) } func (*GetFlushStateResponse) ProtoMessage() {} func (*GetFlushStateResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_02345ba45cc0e303, []int{84} + return fileDescriptor_02345ba45cc0e303, []int{86} } func (m *GetFlushStateResponse) XXX_Unmarshal(b []byte) error { @@ -5767,6 +5861,100 @@ func (m *GetFlushStateResponse) GetFlushed() bool { return false } +type GetFlushAllStateRequest struct { + Base *commonpb.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"` + FlushAllTs uint64 `protobuf:"varint,2,opt,name=flush_all_ts,json=flushAllTs,proto3" json:"flush_all_ts,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *GetFlushAllStateRequest) Reset() { *m = GetFlushAllStateRequest{} } +func (m *GetFlushAllStateRequest) String() string { return proto.CompactTextString(m) } +func (*GetFlushAllStateRequest) ProtoMessage() {} +func (*GetFlushAllStateRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_02345ba45cc0e303, []int{87} +} + +func (m *GetFlushAllStateRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_GetFlushAllStateRequest.Unmarshal(m, b) +} +func (m *GetFlushAllStateRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_GetFlushAllStateRequest.Marshal(b, m, deterministic) +} +func (m *GetFlushAllStateRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_GetFlushAllStateRequest.Merge(m, src) +} +func (m *GetFlushAllStateRequest) XXX_Size() int { + return xxx_messageInfo_GetFlushAllStateRequest.Size(m) +} +func (m *GetFlushAllStateRequest) XXX_DiscardUnknown() { + xxx_messageInfo_GetFlushAllStateRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_GetFlushAllStateRequest proto.InternalMessageInfo + +func (m *GetFlushAllStateRequest) GetBase() *commonpb.MsgBase { + if m != nil { + return m.Base + } + return nil +} + +func (m *GetFlushAllStateRequest) GetFlushAllTs() uint64 { + if m != nil { + return m.FlushAllTs + } + return 0 +} + +type GetFlushAllStateResponse struct { + Status *commonpb.Status `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"` + Flushed bool `protobuf:"varint,2,opt,name=flushed,proto3" json:"flushed,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *GetFlushAllStateResponse) Reset() { *m = GetFlushAllStateResponse{} } +func (m *GetFlushAllStateResponse) String() string { return proto.CompactTextString(m) } +func (*GetFlushAllStateResponse) ProtoMessage() {} +func (*GetFlushAllStateResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_02345ba45cc0e303, []int{88} +} + +func (m *GetFlushAllStateResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_GetFlushAllStateResponse.Unmarshal(m, b) +} +func (m *GetFlushAllStateResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_GetFlushAllStateResponse.Marshal(b, m, deterministic) +} +func (m *GetFlushAllStateResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_GetFlushAllStateResponse.Merge(m, src) +} +func (m *GetFlushAllStateResponse) XXX_Size() int { + return xxx_messageInfo_GetFlushAllStateResponse.Size(m) +} +func (m *GetFlushAllStateResponse) XXX_DiscardUnknown() { + xxx_messageInfo_GetFlushAllStateResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_GetFlushAllStateResponse proto.InternalMessageInfo + +func (m *GetFlushAllStateResponse) GetStatus() *commonpb.Status { + if m != nil { + return m.Status + } + return nil +} + +func (m *GetFlushAllStateResponse) GetFlushed() bool { + if m != nil { + return m.Flushed + } + return false +} + type ImportRequest struct { CollectionName string `protobuf:"bytes,1,opt,name=collection_name,json=collectionName,proto3" json:"collection_name,omitempty"` PartitionName string `protobuf:"bytes,2,opt,name=partition_name,json=partitionName,proto3" json:"partition_name,omitempty"` @@ -5783,7 +5971,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_02345ba45cc0e303, []int{85} + return fileDescriptor_02345ba45cc0e303, []int{89} } func (m *ImportRequest) XXX_Unmarshal(b []byte) error { @@ -5858,7 +6046,7 @@ func (m *ImportResponse) Reset() { *m = ImportResponse{} } func (m *ImportResponse) String() string { return proto.CompactTextString(m) } func (*ImportResponse) ProtoMessage() {} func (*ImportResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_02345ba45cc0e303, []int{86} + return fileDescriptor_02345ba45cc0e303, []int{90} } func (m *ImportResponse) XXX_Unmarshal(b []byte) error { @@ -5904,7 +6092,7 @@ func (m *GetImportStateRequest) Reset() { *m = GetImportStateRequest{} } func (m *GetImportStateRequest) String() string { return proto.CompactTextString(m) } func (*GetImportStateRequest) ProtoMessage() {} func (*GetImportStateRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_02345ba45cc0e303, []int{87} + return fileDescriptor_02345ba45cc0e303, []int{91} } func (m *GetImportStateRequest) XXX_Unmarshal(b []byte) error { @@ -5951,7 +6139,7 @@ func (m *GetImportStateResponse) Reset() { *m = GetImportStateResponse{} func (m *GetImportStateResponse) String() string { return proto.CompactTextString(m) } func (*GetImportStateResponse) ProtoMessage() {} func (*GetImportStateResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_02345ba45cc0e303, []int{88} + return fileDescriptor_02345ba45cc0e303, []int{92} } func (m *GetImportStateResponse) XXX_Unmarshal(b []byte) error { @@ -6047,7 +6235,7 @@ func (m *ListImportTasksRequest) Reset() { *m = ListImportTasksRequest{} func (m *ListImportTasksRequest) String() string { return proto.CompactTextString(m) } func (*ListImportTasksRequest) ProtoMessage() {} func (*ListImportTasksRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_02345ba45cc0e303, []int{89} + return fileDescriptor_02345ba45cc0e303, []int{93} } func (m *ListImportTasksRequest) XXX_Unmarshal(b []byte) error { @@ -6094,7 +6282,7 @@ func (m *ListImportTasksResponse) Reset() { *m = ListImportTasksResponse func (m *ListImportTasksResponse) String() string { return proto.CompactTextString(m) } func (*ListImportTasksResponse) ProtoMessage() {} func (*ListImportTasksResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_02345ba45cc0e303, []int{90} + return fileDescriptor_02345ba45cc0e303, []int{94} } func (m *ListImportTasksResponse) XXX_Unmarshal(b []byte) error { @@ -6143,7 +6331,7 @@ func (m *GetReplicasRequest) Reset() { *m = GetReplicasRequest{} } func (m *GetReplicasRequest) String() string { return proto.CompactTextString(m) } func (*GetReplicasRequest) ProtoMessage() {} func (*GetReplicasRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_02345ba45cc0e303, []int{91} + return fileDescriptor_02345ba45cc0e303, []int{95} } func (m *GetReplicasRequest) XXX_Unmarshal(b []byte) error { @@ -6204,7 +6392,7 @@ func (m *GetReplicasResponse) Reset() { *m = GetReplicasResponse{} } func (m *GetReplicasResponse) String() string { return proto.CompactTextString(m) } func (*GetReplicasResponse) ProtoMessage() {} func (*GetReplicasResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_02345ba45cc0e303, []int{92} + return fileDescriptor_02345ba45cc0e303, []int{96} } func (m *GetReplicasResponse) XXX_Unmarshal(b []byte) error { @@ -6257,7 +6445,7 @@ func (m *ReplicaInfo) Reset() { *m = ReplicaInfo{} } func (m *ReplicaInfo) String() string { return proto.CompactTextString(m) } func (*ReplicaInfo) ProtoMessage() {} func (*ReplicaInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_02345ba45cc0e303, []int{93} + return fileDescriptor_02345ba45cc0e303, []int{97} } func (m *ReplicaInfo) XXX_Unmarshal(b []byte) error { @@ -6343,7 +6531,7 @@ func (m *ShardReplica) Reset() { *m = ShardReplica{} } func (m *ShardReplica) String() string { return proto.CompactTextString(m) } func (*ShardReplica) ProtoMessage() {} func (*ShardReplica) Descriptor() ([]byte, []int) { - return fileDescriptor_02345ba45cc0e303, []int{94} + return fileDescriptor_02345ba45cc0e303, []int{98} } func (m *ShardReplica) XXX_Unmarshal(b []byte) error { @@ -6412,7 +6600,7 @@ func (m *CreateCredentialRequest) Reset() { *m = CreateCredentialRequest func (m *CreateCredentialRequest) String() string { return proto.CompactTextString(m) } func (*CreateCredentialRequest) ProtoMessage() {} func (*CreateCredentialRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_02345ba45cc0e303, []int{95} + return fileDescriptor_02345ba45cc0e303, []int{99} } func (m *CreateCredentialRequest) XXX_Unmarshal(b []byte) error { @@ -6490,7 +6678,7 @@ func (m *UpdateCredentialRequest) Reset() { *m = UpdateCredentialRequest func (m *UpdateCredentialRequest) String() string { return proto.CompactTextString(m) } func (*UpdateCredentialRequest) ProtoMessage() {} func (*UpdateCredentialRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_02345ba45cc0e303, []int{96} + return fileDescriptor_02345ba45cc0e303, []int{100} } func (m *UpdateCredentialRequest) XXX_Unmarshal(b []byte) error { @@ -6567,7 +6755,7 @@ func (m *DeleteCredentialRequest) Reset() { *m = DeleteCredentialRequest func (m *DeleteCredentialRequest) String() string { return proto.CompactTextString(m) } func (*DeleteCredentialRequest) ProtoMessage() {} func (*DeleteCredentialRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_02345ba45cc0e303, []int{97} + return fileDescriptor_02345ba45cc0e303, []int{101} } func (m *DeleteCredentialRequest) XXX_Unmarshal(b []byte) error { @@ -6616,7 +6804,7 @@ func (m *ListCredUsersResponse) Reset() { *m = ListCredUsersResponse{} } func (m *ListCredUsersResponse) String() string { return proto.CompactTextString(m) } func (*ListCredUsersResponse) ProtoMessage() {} func (*ListCredUsersResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_02345ba45cc0e303, []int{98} + return fileDescriptor_02345ba45cc0e303, []int{102} } func (m *ListCredUsersResponse) XXX_Unmarshal(b []byte) error { @@ -6663,7 +6851,7 @@ func (m *ListCredUsersRequest) Reset() { *m = ListCredUsersRequest{} } func (m *ListCredUsersRequest) String() string { return proto.CompactTextString(m) } func (*ListCredUsersRequest) ProtoMessage() {} func (*ListCredUsersRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_02345ba45cc0e303, []int{99} + return fileDescriptor_02345ba45cc0e303, []int{103} } func (m *ListCredUsersRequest) XXX_Unmarshal(b []byte) error { @@ -6703,7 +6891,7 @@ func (m *RoleEntity) Reset() { *m = RoleEntity{} } func (m *RoleEntity) String() string { return proto.CompactTextString(m) } func (*RoleEntity) ProtoMessage() {} func (*RoleEntity) Descriptor() ([]byte, []int) { - return fileDescriptor_02345ba45cc0e303, []int{100} + return fileDescriptor_02345ba45cc0e303, []int{104} } func (m *RoleEntity) XXX_Unmarshal(b []byte) error { @@ -6742,7 +6930,7 @@ func (m *UserEntity) Reset() { *m = UserEntity{} } func (m *UserEntity) String() string { return proto.CompactTextString(m) } func (*UserEntity) ProtoMessage() {} func (*UserEntity) Descriptor() ([]byte, []int) { - return fileDescriptor_02345ba45cc0e303, []int{101} + return fileDescriptor_02345ba45cc0e303, []int{105} } func (m *UserEntity) XXX_Unmarshal(b []byte) error { @@ -6784,7 +6972,7 @@ func (m *CreateRoleRequest) Reset() { *m = CreateRoleRequest{} } func (m *CreateRoleRequest) String() string { return proto.CompactTextString(m) } func (*CreateRoleRequest) ProtoMessage() {} func (*CreateRoleRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_02345ba45cc0e303, []int{102} + return fileDescriptor_02345ba45cc0e303, []int{106} } func (m *CreateRoleRequest) XXX_Unmarshal(b []byte) error { @@ -6833,7 +7021,7 @@ func (m *DropRoleRequest) Reset() { *m = DropRoleRequest{} } func (m *DropRoleRequest) String() string { return proto.CompactTextString(m) } func (*DropRoleRequest) ProtoMessage() {} func (*DropRoleRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_02345ba45cc0e303, []int{103} + return fileDescriptor_02345ba45cc0e303, []int{107} } func (m *DropRoleRequest) XXX_Unmarshal(b []byte) error { @@ -6886,7 +7074,7 @@ func (m *OperateUserRoleRequest) Reset() { *m = OperateUserRoleRequest{} func (m *OperateUserRoleRequest) String() string { return proto.CompactTextString(m) } func (*OperateUserRoleRequest) ProtoMessage() {} func (*OperateUserRoleRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_02345ba45cc0e303, []int{104} + return fileDescriptor_02345ba45cc0e303, []int{108} } func (m *OperateUserRoleRequest) XXX_Unmarshal(b []byte) error { @@ -6951,7 +7139,7 @@ func (m *SelectRoleRequest) Reset() { *m = SelectRoleRequest{} } func (m *SelectRoleRequest) String() string { return proto.CompactTextString(m) } func (*SelectRoleRequest) ProtoMessage() {} func (*SelectRoleRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_02345ba45cc0e303, []int{105} + return fileDescriptor_02345ba45cc0e303, []int{109} } func (m *SelectRoleRequest) XXX_Unmarshal(b []byte) error { @@ -7005,7 +7193,7 @@ func (m *RoleResult) Reset() { *m = RoleResult{} } func (m *RoleResult) String() string { return proto.CompactTextString(m) } func (*RoleResult) ProtoMessage() {} func (*RoleResult) Descriptor() ([]byte, []int) { - return fileDescriptor_02345ba45cc0e303, []int{106} + return fileDescriptor_02345ba45cc0e303, []int{110} } func (m *RoleResult) XXX_Unmarshal(b []byte) error { @@ -7054,7 +7242,7 @@ func (m *SelectRoleResponse) Reset() { *m = SelectRoleResponse{} } func (m *SelectRoleResponse) String() string { return proto.CompactTextString(m) } func (*SelectRoleResponse) ProtoMessage() {} func (*SelectRoleResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_02345ba45cc0e303, []int{107} + return fileDescriptor_02345ba45cc0e303, []int{111} } func (m *SelectRoleResponse) XXX_Unmarshal(b []byte) error { @@ -7105,7 +7293,7 @@ func (m *SelectUserRequest) Reset() { *m = SelectUserRequest{} } func (m *SelectUserRequest) String() string { return proto.CompactTextString(m) } func (*SelectUserRequest) ProtoMessage() {} func (*SelectUserRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_02345ba45cc0e303, []int{108} + return fileDescriptor_02345ba45cc0e303, []int{112} } func (m *SelectUserRequest) XXX_Unmarshal(b []byte) error { @@ -7159,7 +7347,7 @@ func (m *UserResult) Reset() { *m = UserResult{} } func (m *UserResult) String() string { return proto.CompactTextString(m) } func (*UserResult) ProtoMessage() {} func (*UserResult) Descriptor() ([]byte, []int) { - return fileDescriptor_02345ba45cc0e303, []int{109} + return fileDescriptor_02345ba45cc0e303, []int{113} } func (m *UserResult) XXX_Unmarshal(b []byte) error { @@ -7208,7 +7396,7 @@ func (m *SelectUserResponse) Reset() { *m = SelectUserResponse{} } func (m *SelectUserResponse) String() string { return proto.CompactTextString(m) } func (*SelectUserResponse) ProtoMessage() {} func (*SelectUserResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_02345ba45cc0e303, []int{110} + return fileDescriptor_02345ba45cc0e303, []int{114} } func (m *SelectUserResponse) XXX_Unmarshal(b []byte) error { @@ -7254,7 +7442,7 @@ func (m *ObjectEntity) Reset() { *m = ObjectEntity{} } func (m *ObjectEntity) String() string { return proto.CompactTextString(m) } func (*ObjectEntity) ProtoMessage() {} func (*ObjectEntity) Descriptor() ([]byte, []int) { - return fileDescriptor_02345ba45cc0e303, []int{111} + return fileDescriptor_02345ba45cc0e303, []int{115} } func (m *ObjectEntity) XXX_Unmarshal(b []byte) error { @@ -7293,7 +7481,7 @@ func (m *PrivilegeEntity) Reset() { *m = PrivilegeEntity{} } func (m *PrivilegeEntity) String() string { return proto.CompactTextString(m) } func (*PrivilegeEntity) ProtoMessage() {} func (*PrivilegeEntity) Descriptor() ([]byte, []int) { - return fileDescriptor_02345ba45cc0e303, []int{112} + return fileDescriptor_02345ba45cc0e303, []int{116} } func (m *PrivilegeEntity) XXX_Unmarshal(b []byte) error { @@ -7333,7 +7521,7 @@ func (m *GrantorEntity) Reset() { *m = GrantorEntity{} } func (m *GrantorEntity) String() string { return proto.CompactTextString(m) } func (*GrantorEntity) ProtoMessage() {} func (*GrantorEntity) Descriptor() ([]byte, []int) { - return fileDescriptor_02345ba45cc0e303, []int{113} + return fileDescriptor_02345ba45cc0e303, []int{117} } func (m *GrantorEntity) XXX_Unmarshal(b []byte) error { @@ -7379,7 +7567,7 @@ func (m *GrantPrivilegeEntity) Reset() { *m = GrantPrivilegeEntity{} } func (m *GrantPrivilegeEntity) String() string { return proto.CompactTextString(m) } func (*GrantPrivilegeEntity) ProtoMessage() {} func (*GrantPrivilegeEntity) Descriptor() ([]byte, []int) { - return fileDescriptor_02345ba45cc0e303, []int{114} + return fileDescriptor_02345ba45cc0e303, []int{118} } func (m *GrantPrivilegeEntity) XXX_Unmarshal(b []byte) error { @@ -7425,7 +7613,7 @@ func (m *GrantEntity) Reset() { *m = GrantEntity{} } func (m *GrantEntity) String() string { return proto.CompactTextString(m) } func (*GrantEntity) ProtoMessage() {} func (*GrantEntity) Descriptor() ([]byte, []int) { - return fileDescriptor_02345ba45cc0e303, []int{115} + return fileDescriptor_02345ba45cc0e303, []int{119} } func (m *GrantEntity) XXX_Unmarshal(b []byte) error { @@ -7488,7 +7676,7 @@ func (m *SelectGrantRequest) Reset() { *m = SelectGrantRequest{} } func (m *SelectGrantRequest) String() string { return proto.CompactTextString(m) } func (*SelectGrantRequest) ProtoMessage() {} func (*SelectGrantRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_02345ba45cc0e303, []int{116} + return fileDescriptor_02345ba45cc0e303, []int{120} } func (m *SelectGrantRequest) XXX_Unmarshal(b []byte) error { @@ -7537,7 +7725,7 @@ func (m *SelectGrantResponse) Reset() { *m = SelectGrantResponse{} } func (m *SelectGrantResponse) String() string { return proto.CompactTextString(m) } func (*SelectGrantResponse) ProtoMessage() {} func (*SelectGrantResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_02345ba45cc0e303, []int{117} + return fileDescriptor_02345ba45cc0e303, []int{121} } func (m *SelectGrantResponse) XXX_Unmarshal(b []byte) error { @@ -7588,7 +7776,7 @@ func (m *OperatePrivilegeRequest) Reset() { *m = OperatePrivilegeRequest func (m *OperatePrivilegeRequest) String() string { return proto.CompactTextString(m) } func (*OperatePrivilegeRequest) ProtoMessage() {} func (*OperatePrivilegeRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_02345ba45cc0e303, []int{118} + return fileDescriptor_02345ba45cc0e303, []int{122} } func (m *OperatePrivilegeRequest) XXX_Unmarshal(b []byte) error { @@ -7644,7 +7832,7 @@ func (m *GetLoadingProgressRequest) Reset() { *m = GetLoadingProgressReq func (m *GetLoadingProgressRequest) String() string { return proto.CompactTextString(m) } func (*GetLoadingProgressRequest) ProtoMessage() {} func (*GetLoadingProgressRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_02345ba45cc0e303, []int{119} + return fileDescriptor_02345ba45cc0e303, []int{123} } func (m *GetLoadingProgressRequest) XXX_Unmarshal(b []byte) error { @@ -7698,7 +7886,7 @@ func (m *GetLoadingProgressResponse) Reset() { *m = GetLoadingProgressRe func (m *GetLoadingProgressResponse) String() string { return proto.CompactTextString(m) } func (*GetLoadingProgressResponse) ProtoMessage() {} func (*GetLoadingProgressResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_02345ba45cc0e303, []int{120} + return fileDescriptor_02345ba45cc0e303, []int{124} } func (m *GetLoadingProgressResponse) XXX_Unmarshal(b []byte) error { @@ -7747,7 +7935,7 @@ func (m *GetLoadStateRequest) Reset() { *m = GetLoadStateRequest{} } func (m *GetLoadStateRequest) String() string { return proto.CompactTextString(m) } func (*GetLoadStateRequest) ProtoMessage() {} func (*GetLoadStateRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_02345ba45cc0e303, []int{121} + return fileDescriptor_02345ba45cc0e303, []int{125} } func (m *GetLoadStateRequest) XXX_Unmarshal(b []byte) error { @@ -7801,7 +7989,7 @@ func (m *GetLoadStateResponse) Reset() { *m = GetLoadStateResponse{} } func (m *GetLoadStateResponse) String() string { return proto.CompactTextString(m) } func (*GetLoadStateResponse) ProtoMessage() {} func (*GetLoadStateResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_02345ba45cc0e303, []int{122} + return fileDescriptor_02345ba45cc0e303, []int{126} } func (m *GetLoadStateResponse) XXX_Unmarshal(b []byte) error { @@ -7847,7 +8035,7 @@ func (m *MilvusExt) Reset() { *m = MilvusExt{} } func (m *MilvusExt) String() string { return proto.CompactTextString(m) } func (*MilvusExt) ProtoMessage() {} func (*MilvusExt) Descriptor() ([]byte, []int) { - return fileDescriptor_02345ba45cc0e303, []int{123} + return fileDescriptor_02345ba45cc0e303, []int{127} } func (m *MilvusExt) XXX_Unmarshal(b []byte) error { @@ -7885,7 +8073,7 @@ func (m *GetVersionRequest) Reset() { *m = GetVersionRequest{} } func (m *GetVersionRequest) String() string { return proto.CompactTextString(m) } func (*GetVersionRequest) ProtoMessage() {} func (*GetVersionRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_02345ba45cc0e303, []int{124} + return fileDescriptor_02345ba45cc0e303, []int{128} } func (m *GetVersionRequest) XXX_Unmarshal(b []byte) error { @@ -7918,7 +8106,7 @@ func (m *GetVersionResponse) Reset() { *m = GetVersionResponse{} } func (m *GetVersionResponse) String() string { return proto.CompactTextString(m) } func (*GetVersionResponse) ProtoMessage() {} func (*GetVersionResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_02345ba45cc0e303, []int{125} + return fileDescriptor_02345ba45cc0e303, []int{129} } func (m *GetVersionResponse) XXX_Unmarshal(b []byte) error { @@ -7963,7 +8151,7 @@ func (m *CheckHealthRequest) Reset() { *m = CheckHealthRequest{} } func (m *CheckHealthRequest) String() string { return proto.CompactTextString(m) } func (*CheckHealthRequest) ProtoMessage() {} func (*CheckHealthRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_02345ba45cc0e303, []int{126} + return fileDescriptor_02345ba45cc0e303, []int{130} } func (m *CheckHealthRequest) XXX_Unmarshal(b []byte) error { @@ -7998,7 +8186,7 @@ func (m *CheckHealthResponse) Reset() { *m = CheckHealthResponse{} } func (m *CheckHealthResponse) String() string { return proto.CompactTextString(m) } func (*CheckHealthResponse) ProtoMessage() {} func (*CheckHealthResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_02345ba45cc0e303, []int{127} + return fileDescriptor_02345ba45cc0e303, []int{131} } func (m *CheckHealthResponse) XXX_Unmarshal(b []byte) error { @@ -8059,7 +8247,7 @@ func (m *CreateResourceGroupRequest) Reset() { *m = CreateResourceGroupR func (m *CreateResourceGroupRequest) String() string { return proto.CompactTextString(m) } func (*CreateResourceGroupRequest) ProtoMessage() {} func (*CreateResourceGroupRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_02345ba45cc0e303, []int{128} + return fileDescriptor_02345ba45cc0e303, []int{132} } func (m *CreateResourceGroupRequest) XXX_Unmarshal(b []byte) error { @@ -8106,7 +8294,7 @@ func (m *DropResourceGroupRequest) Reset() { *m = DropResourceGroupReque func (m *DropResourceGroupRequest) String() string { return proto.CompactTextString(m) } func (*DropResourceGroupRequest) ProtoMessage() {} func (*DropResourceGroupRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_02345ba45cc0e303, []int{129} + return fileDescriptor_02345ba45cc0e303, []int{133} } func (m *DropResourceGroupRequest) XXX_Unmarshal(b []byte) error { @@ -8156,7 +8344,7 @@ func (m *TransferNodeRequest) Reset() { *m = TransferNodeRequest{} } func (m *TransferNodeRequest) String() string { return proto.CompactTextString(m) } func (*TransferNodeRequest) ProtoMessage() {} func (*TransferNodeRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_02345ba45cc0e303, []int{130} + return fileDescriptor_02345ba45cc0e303, []int{134} } func (m *TransferNodeRequest) XXX_Unmarshal(b []byte) error { @@ -8221,7 +8409,7 @@ func (m *TransferReplicaRequest) Reset() { *m = TransferReplicaRequest{} func (m *TransferReplicaRequest) String() string { return proto.CompactTextString(m) } func (*TransferReplicaRequest) ProtoMessage() {} func (*TransferReplicaRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_02345ba45cc0e303, []int{131} + return fileDescriptor_02345ba45cc0e303, []int{135} } func (m *TransferReplicaRequest) XXX_Unmarshal(b []byte) error { @@ -8288,7 +8476,7 @@ func (m *ListResourceGroupsRequest) Reset() { *m = ListResourceGroupsReq func (m *ListResourceGroupsRequest) String() string { return proto.CompactTextString(m) } func (*ListResourceGroupsRequest) ProtoMessage() {} func (*ListResourceGroupsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_02345ba45cc0e303, []int{132} + return fileDescriptor_02345ba45cc0e303, []int{136} } func (m *ListResourceGroupsRequest) XXX_Unmarshal(b []byte) error { @@ -8328,7 +8516,7 @@ func (m *ListResourceGroupsResponse) Reset() { *m = ListResourceGroupsRe func (m *ListResourceGroupsResponse) String() string { return proto.CompactTextString(m) } func (*ListResourceGroupsResponse) ProtoMessage() {} func (*ListResourceGroupsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_02345ba45cc0e303, []int{133} + return fileDescriptor_02345ba45cc0e303, []int{137} } func (m *ListResourceGroupsResponse) XXX_Unmarshal(b []byte) error { @@ -8375,7 +8563,7 @@ func (m *DescribeResourceGroupRequest) Reset() { *m = DescribeResourceGr func (m *DescribeResourceGroupRequest) String() string { return proto.CompactTextString(m) } func (*DescribeResourceGroupRequest) ProtoMessage() {} func (*DescribeResourceGroupRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_02345ba45cc0e303, []int{134} + return fileDescriptor_02345ba45cc0e303, []int{138} } func (m *DescribeResourceGroupRequest) XXX_Unmarshal(b []byte) error { @@ -8422,7 +8610,7 @@ func (m *DescribeResourceGroupResponse) Reset() { *m = DescribeResourceG func (m *DescribeResourceGroupResponse) String() string { return proto.CompactTextString(m) } func (*DescribeResourceGroupResponse) ProtoMessage() {} func (*DescribeResourceGroupResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_02345ba45cc0e303, []int{135} + return fileDescriptor_02345ba45cc0e303, []int{139} } func (m *DescribeResourceGroupResponse) XXX_Unmarshal(b []byte) error { @@ -8476,7 +8664,7 @@ func (m *ResourceGroup) Reset() { *m = ResourceGroup{} } func (m *ResourceGroup) String() string { return proto.CompactTextString(m) } func (*ResourceGroup) ProtoMessage() {} func (*ResourceGroup) Descriptor() ([]byte, []int) { - return fileDescriptor_02345ba45cc0e303, []int{136} + return fileDescriptor_02345ba45cc0e303, []int{140} } func (m *ResourceGroup) XXX_Unmarshal(b []byte) error { @@ -8553,7 +8741,7 @@ func (m *RenameCollectionRequest) Reset() { *m = RenameCollectionRequest func (m *RenameCollectionRequest) String() string { return proto.CompactTextString(m) } func (*RenameCollectionRequest) ProtoMessage() {} func (*RenameCollectionRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_02345ba45cc0e303, []int{137} + return fileDescriptor_02345ba45cc0e303, []int{141} } func (m *RenameCollectionRequest) XXX_Unmarshal(b []byte) error { @@ -8679,6 +8867,8 @@ func init() { proto.RegisterType((*VectorsArray)(nil), "milvus.proto.milvus.VectorsArray") proto.RegisterType((*CalcDistanceRequest)(nil), "milvus.proto.milvus.CalcDistanceRequest") proto.RegisterType((*CalcDistanceResults)(nil), "milvus.proto.milvus.CalcDistanceResults") + proto.RegisterType((*FlushAllRequest)(nil), "milvus.proto.milvus.FlushAllRequest") + proto.RegisterType((*FlushAllResponse)(nil), "milvus.proto.milvus.FlushAllResponse") proto.RegisterType((*PersistentSegmentInfo)(nil), "milvus.proto.milvus.PersistentSegmentInfo") proto.RegisterType((*GetPersistentSegmentInfoRequest)(nil), "milvus.proto.milvus.GetPersistentSegmentInfoRequest") proto.RegisterType((*GetPersistentSegmentInfoResponse)(nil), "milvus.proto.milvus.GetPersistentSegmentInfoResponse") @@ -8704,6 +8894,8 @@ func init() { proto.RegisterType((*CompactionMergeInfo)(nil), "milvus.proto.milvus.CompactionMergeInfo") proto.RegisterType((*GetFlushStateRequest)(nil), "milvus.proto.milvus.GetFlushStateRequest") proto.RegisterType((*GetFlushStateResponse)(nil), "milvus.proto.milvus.GetFlushStateResponse") + proto.RegisterType((*GetFlushAllStateRequest)(nil), "milvus.proto.milvus.GetFlushAllStateRequest") + proto.RegisterType((*GetFlushAllStateResponse)(nil), "milvus.proto.milvus.GetFlushAllStateResponse") proto.RegisterType((*ImportRequest)(nil), "milvus.proto.milvus.ImportRequest") proto.RegisterType((*ImportResponse)(nil), "milvus.proto.milvus.ImportResponse") proto.RegisterType((*GetImportStateRequest)(nil), "milvus.proto.milvus.GetImportStateRequest") @@ -8767,420 +8959,425 @@ func init() { func init() { proto.RegisterFile("milvus.proto", fileDescriptor_02345ba45cc0e303) } var fileDescriptor_02345ba45cc0e303 = []byte{ - // 6595 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x7d, 0x59, 0x6c, 0x24, 0xc7, - 0x79, 0xf0, 0xf6, 0x0c, 0xe7, 0xfa, 0x66, 0x86, 0x1c, 0x16, 0xaf, 0xd1, 0xec, 0xae, 0x96, 0xdb, - 0x92, 0x2c, 0x6a, 0xd7, 0xa2, 0x2c, 0x4a, 0xab, 0x63, 0x6d, 0xcb, 0xda, 0x5d, 0x5a, 0xbb, 0x84, - 0xf7, 0xa0, 0x9b, 0x2b, 0x09, 0xfe, 0xfd, 0x0b, 0x83, 0xe6, 0x74, 0x71, 0xd8, 0xda, 0x9e, 0xee, - 0xd9, 0xee, 0x9e, 0xe5, 0x52, 0x79, 0x49, 0xe0, 0xd8, 0xb1, 0xe1, 0x43, 0xb9, 0x8d, 0x20, 0x88, - 0x13, 0x18, 0x4e, 0x10, 0xe7, 0x82, 0x9d, 0x3c, 0x04, 0x30, 0x12, 0xe4, 0x21, 0x40, 0x1e, 0x8c, - 0x04, 0x89, 0x1f, 0x84, 0x24, 0x40, 0x90, 0x27, 0x23, 0x41, 0x80, 0x04, 0xc9, 0x43, 0xde, 0x72, - 0xa2, 0x8e, 0xee, 0xa9, 0xee, 0xa9, 0x1a, 0xce, 0x70, 0xb4, 0x22, 0xd7, 0x08, 0x9f, 0xa6, 0xaa, - 0xab, 0xea, 0xfb, 0xea, 0xab, 0xef, 0xaa, 0xaf, 0xbe, 0x2a, 0x42, 0xa5, 0x63, 0x3b, 0xf7, 0x7a, - 0xc1, 0x6a, 0xd7, 0xf7, 0x42, 0x0f, 0xcd, 0x89, 0xa5, 0x55, 0x56, 0x68, 0x54, 0x5a, 0x5e, 0xa7, - 0xe3, 0xb9, 0xac, 0xb2, 0x51, 0x09, 0x5a, 0xbb, 0xb8, 0x63, 0xf2, 0x52, 0x79, 0x07, 0x5b, 0xd8, - 0xe7, 0x85, 0xe5, 0xb6, 0xe7, 0xb5, 0x1d, 0xfc, 0x0c, 0x2d, 0x6d, 0xf7, 0x76, 0x9e, 0xb1, 0x70, - 0xd0, 0xf2, 0xed, 0x6e, 0xe8, 0xf1, 0x16, 0xfa, 0x37, 0x34, 0x40, 0x57, 0x7c, 0x6c, 0x86, 0xf8, - 0x92, 0x63, 0x9b, 0x81, 0x81, 0xef, 0xf6, 0x70, 0x10, 0xa2, 0x8f, 0xc0, 0xd4, 0xb6, 0x19, 0xe0, - 0xba, 0xb6, 0xac, 0xad, 0x94, 0xd7, 0x4e, 0xad, 0x26, 0xb0, 0xe0, 0xd0, 0x6f, 0x04, 0xed, 0xcb, - 0x66, 0x80, 0x0d, 0xda, 0x12, 0x2d, 0x41, 0xc1, 0xda, 0x6e, 0xba, 0x66, 0x07, 0xd7, 0x33, 0xcb, - 0xda, 0x4a, 0xc9, 0xc8, 0x5b, 0xdb, 0x37, 0xcd, 0x0e, 0x46, 0x4f, 0xc2, 0x4c, 0xcb, 0x73, 0x1c, - 0xdc, 0x0a, 0x6d, 0xcf, 0x65, 0x0d, 0xb2, 0xb4, 0xc1, 0x74, 0xbf, 0x9a, 0x36, 0x9c, 0x87, 0x9c, - 0x49, 0x70, 0xa8, 0x4f, 0xd1, 0xcf, 0xac, 0xa0, 0x07, 0x50, 0x5b, 0xf7, 0xbd, 0xee, 0x83, 0xc2, - 0x2e, 0x06, 0x9a, 0x15, 0x81, 0xfe, 0x8a, 0x06, 0xb3, 0x97, 0x9c, 0x10, 0xfb, 0xc7, 0x94, 0x28, - 0x7b, 0x30, 0xbf, 0x4e, 0x57, 0x72, 0x1b, 0x7f, 0xb0, 0x84, 0xf9, 0x65, 0x0d, 0x16, 0x52, 0x90, - 0x83, 0xae, 0xe7, 0x06, 0x18, 0x3d, 0x07, 0xf9, 0x20, 0x34, 0xc3, 0x5e, 0xc0, 0x81, 0x9f, 0x94, - 0x02, 0xdf, 0xa2, 0x4d, 0x0c, 0xde, 0x74, 0x4c, 0xe8, 0xe8, 0x51, 0x80, 0x3e, 0x79, 0x38, 0x45, - 0x84, 0x1a, 0xfd, 0x8b, 0x1a, 0xa0, 0xeb, 0x76, 0x10, 0x52, 0xcc, 0xf0, 0x51, 0xae, 0x9b, 0xfe, - 0x1b, 0x1a, 0xcc, 0x25, 0x50, 0x79, 0x20, 0x64, 0x1a, 0x99, 0x8d, 0xea, 0x50, 0x30, 0x19, 0x26, - 0xf5, 0xa9, 0xe5, 0xec, 0x4a, 0xc9, 0x88, 0x8a, 0xfa, 0xbf, 0x66, 0x60, 0x89, 0x29, 0x80, 0x2b, - 0x71, 0x97, 0xa3, 0x64, 0xf8, 0x45, 0xc8, 0x33, 0x7d, 0x46, 0xd7, 0xb7, 0x62, 0xf0, 0x12, 0x3a, - 0x0d, 0x10, 0xec, 0x9a, 0xbe, 0x15, 0x34, 0xdd, 0x5e, 0xa7, 0x9e, 0x5b, 0xd6, 0x56, 0x72, 0x46, - 0x89, 0xd5, 0xdc, 0xec, 0x75, 0x90, 0x01, 0xb3, 0x2d, 0xcf, 0x0d, 0xec, 0x20, 0xc4, 0x6e, 0x6b, - 0xbf, 0xe9, 0xe0, 0x7b, 0xd8, 0xa9, 0xe7, 0x97, 0xb5, 0x95, 0xe9, 0xb5, 0x27, 0xa4, 0x78, 0x5f, - 0xe9, 0xb7, 0xbe, 0x4e, 0x1a, 0x1b, 0xb5, 0x56, 0xaa, 0x06, 0x5d, 0x02, 0xe8, 0xfa, 0x5e, 0x17, - 0xfb, 0xa1, 0x8d, 0x83, 0x7a, 0x61, 0x39, 0xbb, 0x52, 0x5e, 0x3b, 0x2b, 0x1d, 0xec, 0x53, 0x78, - 0xff, 0x0d, 0xd3, 0xe9, 0xe1, 0x4d, 0xd3, 0xf6, 0x0d, 0xa1, 0xd3, 0x45, 0xf4, 0xfd, 0x57, 0x66, - 0x8a, 0x5a, 0x4d, 0xab, 0xff, 0x4f, 0xf4, 0xa7, 0xe9, 0xbf, 0x4a, 0x64, 0xc8, 0xf7, 0xba, 0xc7, - 0x82, 0xde, 0x11, 0x86, 0x19, 0x11, 0xc3, 0x9f, 0xca, 0xc0, 0x22, 0x55, 0x7f, 0xc7, 0x83, 0x25, - 0x74, 0xa8, 0xf4, 0x6b, 0x36, 0xd6, 0x29, 0x63, 0x64, 0x8d, 0x44, 0x5d, 0x6a, 0xad, 0x72, 0xef, - 0xd7, 0x5a, 0x7d, 0x5b, 0x83, 0xf9, 0x6b, 0x66, 0x70, 0x3c, 0xe8, 0x70, 0x1a, 0x20, 0xb4, 0x3b, - 0xb8, 0x19, 0x84, 0x66, 0xa7, 0x4b, 0xa9, 0x30, 0x65, 0x94, 0x48, 0xcd, 0x16, 0xa9, 0xd0, 0x3f, - 0x03, 0x95, 0xcb, 0x9e, 0xe7, 0x4c, 0xa6, 0x6a, 0xe6, 0x21, 0x77, 0x8f, 0x50, 0x87, 0xe2, 0x58, - 0x34, 0x58, 0x41, 0xff, 0x2c, 0x4c, 0x6f, 0x85, 0xbe, 0xed, 0xb6, 0xdf, 0xc7, 0xc1, 0x4b, 0xd1, - 0xe0, 0xff, 0xa0, 0xc1, 0x23, 0x91, 0x4d, 0x79, 0x78, 0x18, 0x2e, 0xb9, 0x18, 0xb9, 0xd4, 0x62, - 0x44, 0xcc, 0x94, 0x15, 0x99, 0xe9, 0x4f, 0x73, 0xd0, 0x90, 0x4d, 0x74, 0x12, 0x92, 0x7e, 0x3c, - 0x56, 0x97, 0x19, 0xda, 0x29, 0xa5, 0xec, 0xb8, 0x6b, 0xd8, 0x87, 0xb6, 0x45, 0x2b, 0x62, 0xad, - 0x9a, 0x9e, 0x69, 0x56, 0x32, 0xd3, 0x35, 0x58, 0xb8, 0x67, 0xfb, 0x61, 0xcf, 0x74, 0x9a, 0xad, - 0x5d, 0xd3, 0x75, 0xb1, 0x43, 0x69, 0x17, 0x59, 0x92, 0x39, 0xfe, 0xf1, 0x0a, 0xfb, 0x46, 0x08, - 0x18, 0xa0, 0xe7, 0x61, 0xb1, 0xbb, 0xbb, 0x1f, 0xd8, 0xad, 0x81, 0x4e, 0x39, 0xda, 0x69, 0x3e, - 0xfa, 0x9a, 0xe8, 0x75, 0x1e, 0x66, 0x5b, 0xd4, 0x14, 0x59, 0x4d, 0x42, 0x49, 0x46, 0xda, 0x3c, - 0x25, 0x6d, 0x8d, 0x7f, 0xb8, 0x1d, 0xd5, 0x13, 0xb4, 0xa2, 0xc6, 0xbd, 0xb0, 0x25, 0x74, 0x28, - 0xd0, 0x0e, 0x73, 0xfc, 0xe3, 0xeb, 0x61, 0xab, 0xdf, 0x27, 0x69, 0x44, 0x8a, 0x69, 0x23, 0x22, - 0x58, 0xc9, 0x52, 0xc2, 0x4a, 0xa2, 0x0d, 0x98, 0x09, 0x42, 0xd3, 0x0f, 0x9b, 0x5d, 0x2f, 0xb0, - 0x09, 0x5d, 0x82, 0x3a, 0x50, 0x1d, 0xb3, 0xac, 0xd2, 0x31, 0xeb, 0x66, 0x68, 0x52, 0x15, 0x33, - 0x4d, 0x3b, 0x6e, 0x46, 0xfd, 0xe4, 0x96, 0xaa, 0x3c, 0x99, 0xa5, 0x92, 0x70, 0x76, 0x45, 0xca, - 0xd9, 0x49, 0x35, 0x59, 0x3d, 0x84, 0x9a, 0xd4, 0xff, 0x5b, 0x83, 0x85, 0xeb, 0x9e, 0x69, 0x1d, - 0x0f, 0x51, 0x7d, 0x02, 0xa6, 0x7d, 0xdc, 0x75, 0xec, 0x96, 0x49, 0x96, 0x74, 0x1b, 0xfb, 0x54, - 0x58, 0x73, 0x46, 0x95, 0xd7, 0xde, 0xa4, 0x95, 0x64, 0x3c, 0x1f, 0x07, 0x5e, 0xcf, 0x6f, 0xe1, - 0x66, 0xdb, 0xf7, 0x7a, 0xdd, 0x88, 0x11, 0xa7, 0xa3, 0xea, 0xab, 0xb4, 0x96, 0xb0, 0x80, 0x8f, - 0x77, 0x7c, 0x1c, 0xec, 0x52, 0xc6, 0x2b, 0x1a, 0x51, 0xf1, 0x62, 0xe1, 0xfb, 0xaf, 0x4c, 0xd5, - 0x72, 0xf5, 0xac, 0xfe, 0x75, 0x0d, 0xea, 0x06, 0x76, 0xb0, 0x19, 0x1c, 0x0f, 0x75, 0xc5, 0x30, - 0xcb, 0xd7, 0xb3, 0xfa, 0xbf, 0x68, 0x30, 0x7f, 0x15, 0x87, 0x44, 0x45, 0xd8, 0x41, 0x68, 0xb7, - 0x8e, 0x74, 0xe7, 0xf2, 0x24, 0xcc, 0x74, 0x4d, 0x3f, 0xb4, 0xe3, 0x76, 0x91, 0xc2, 0x98, 0x8e, - 0xab, 0x99, 0xd4, 0x3f, 0x03, 0x73, 0xed, 0x9e, 0xe9, 0x9b, 0x6e, 0x88, 0xb1, 0x20, 0xc6, 0x4c, - 0xa5, 0xa2, 0xf8, 0x53, 0x2c, 0xc5, 0x6c, 0xbe, 0x50, 0xcf, 0xea, 0x9f, 0xd7, 0x60, 0x21, 0x35, - 0xdf, 0x49, 0x74, 0xe9, 0x8b, 0x90, 0x23, 0xbf, 0x82, 0x7a, 0x66, 0x54, 0xb9, 0x60, 0xed, 0xc9, - 0x76, 0xf1, 0xd1, 0xab, 0x38, 0x14, 0xb4, 0xec, 0x71, 0x58, 0x81, 0x3e, 0x9d, 0xde, 0xd5, 0xe0, - 0x8c, 0x12, 0xbf, 0x23, 0xa1, 0xd8, 0xbf, 0x6b, 0xb0, 0xb8, 0xb5, 0xeb, 0xed, 0xf5, 0x51, 0x7a, - 0x10, 0x94, 0x4a, 0xda, 0xe8, 0x6c, 0xca, 0x46, 0xa3, 0x67, 0x61, 0x2a, 0xdc, 0xef, 0x62, 0xaa, - 0x31, 0xa6, 0xd7, 0x4e, 0xaf, 0x4a, 0x42, 0x2d, 0xab, 0x04, 0xc9, 0xdb, 0xfb, 0x5d, 0x6c, 0xd0, - 0xa6, 0xe8, 0x29, 0xa8, 0xa5, 0x68, 0x1f, 0x29, 0x92, 0x99, 0x24, 0xf1, 0x63, 0x77, 0x72, 0x4a, - 0xf4, 0x00, 0xfe, 0x2d, 0x03, 0x4b, 0x03, 0xd3, 0x9e, 0x64, 0x01, 0x64, 0xf8, 0x64, 0xa4, 0xf8, - 0x10, 0x4d, 0x29, 0x34, 0xb5, 0x2d, 0xb2, 0xb7, 0xce, 0xae, 0x64, 0x8d, 0xaa, 0x60, 0xec, 0xad, - 0x00, 0x3d, 0x0d, 0x68, 0xc0, 0x06, 0x33, 0xc9, 0x9d, 0x32, 0x66, 0xd3, 0x46, 0x98, 0x1a, 0x7a, - 0xa9, 0x15, 0x66, 0x64, 0x99, 0x32, 0xe6, 0x25, 0x66, 0x38, 0x40, 0xcf, 0xc2, 0xbc, 0xed, 0xde, - 0xc0, 0x1d, 0xcf, 0xdf, 0x6f, 0x76, 0xb1, 0xdf, 0xc2, 0x6e, 0x68, 0xb6, 0x71, 0x50, 0xcf, 0x53, - 0x8c, 0xe6, 0xa2, 0x6f, 0x9b, 0xfd, 0x4f, 0xe8, 0x05, 0x58, 0xba, 0xdb, 0xc3, 0xfe, 0x7e, 0x33, - 0xc0, 0xfe, 0x3d, 0xbb, 0x85, 0x9b, 0xe6, 0x3d, 0xd3, 0x76, 0xcc, 0x6d, 0x07, 0xd3, 0x9d, 0x59, - 0xd1, 0x58, 0xa0, 0x9f, 0xb7, 0xd8, 0xd7, 0x4b, 0xd1, 0x47, 0xfd, 0x0f, 0x34, 0x58, 0x64, 0xfb, - 0xdb, 0xcd, 0x48, 0xed, 0x1c, 0xb1, 0xbd, 0x4a, 0x6a, 0x45, 0x1e, 0xc6, 0xa8, 0x26, 0x94, 0xa2, - 0xfe, 0x5d, 0x0d, 0xe6, 0xc9, 0x1e, 0xf1, 0x61, 0xc2, 0xf9, 0x3b, 0x1a, 0xcc, 0x5d, 0x33, 0x83, - 0x87, 0x09, 0xe5, 0x6f, 0x64, 0x98, 0x2f, 0x13, 0xe3, 0xfc, 0x70, 0x58, 0xcc, 0x41, 0xa7, 0x27, - 0x37, 0xa2, 0xd3, 0x93, 0x3f, 0xc8, 0xe9, 0x29, 0x24, 0x9c, 0x1e, 0xfd, 0x0f, 0xfb, 0xbe, 0xce, - 0xc3, 0x45, 0x23, 0xfd, 0x7b, 0x1a, 0x9c, 0xbe, 0x8a, 0xc3, 0x18, 0xeb, 0xe3, 0xe1, 0x14, 0x8d, - 0xc8, 0x97, 0x5f, 0x63, 0x0e, 0x85, 0x14, 0xf9, 0x23, 0xb1, 0xd7, 0x5f, 0xce, 0xc0, 0x02, 0x31, - 0x5c, 0xc7, 0x83, 0x09, 0x46, 0xd9, 0x9f, 0x4b, 0x18, 0x25, 0x27, 0x15, 0xa6, 0xc8, 0x0b, 0xc8, - 0x8f, 0xec, 0x05, 0xe8, 0xbf, 0x9f, 0x61, 0xde, 0x8b, 0x48, 0x8d, 0x49, 0x96, 0x45, 0x82, 0x6b, - 0x46, 0x8a, 0xab, 0x0e, 0x95, 0xb8, 0x66, 0x63, 0x3d, 0xb2, 0xe0, 0x89, 0xba, 0xe3, 0x6a, 0xc0, - 0xf5, 0xaf, 0x68, 0xb0, 0x18, 0x45, 0x3f, 0xb6, 0x70, 0xbb, 0x83, 0xdd, 0xf0, 0xf0, 0x3c, 0x94, - 0xe6, 0x80, 0x8c, 0x84, 0x03, 0x4e, 0x41, 0x29, 0x60, 0x70, 0xe2, 0xc0, 0x46, 0xbf, 0x42, 0xff, - 0x13, 0x0d, 0x96, 0x06, 0xd0, 0x99, 0x64, 0x11, 0xeb, 0x50, 0xb0, 0x5d, 0x0b, 0xdf, 0x8f, 0xb1, - 0x89, 0x8a, 0xe4, 0xcb, 0x76, 0xcf, 0x76, 0xac, 0x18, 0x8d, 0xa8, 0x88, 0xce, 0x42, 0x05, 0xbb, - 0xc4, 0x4d, 0x69, 0xd2, 0xb6, 0x94, 0x91, 0x8b, 0x46, 0x99, 0xd5, 0x6d, 0x90, 0x2a, 0xd2, 0x79, - 0xc7, 0xc6, 0xb4, 0x73, 0x8e, 0x75, 0xe6, 0x45, 0xfd, 0xab, 0x1a, 0xcc, 0x11, 0x2e, 0xe4, 0xd8, - 0x07, 0x0f, 0x96, 0x9a, 0xcb, 0x50, 0x16, 0xd8, 0x8c, 0x4f, 0x44, 0xac, 0xd2, 0xef, 0xc0, 0x7c, - 0x12, 0x9d, 0x49, 0xa8, 0xf9, 0x28, 0x40, 0xbc, 0x56, 0x4c, 0x1a, 0xb2, 0x86, 0x50, 0xa3, 0xff, - 0x42, 0x26, 0x3a, 0xb7, 0xa4, 0x64, 0x3a, 0xe2, 0xb0, 0x2c, 0x5d, 0x12, 0x51, 0x9f, 0x97, 0x68, - 0x0d, 0xfd, 0xbc, 0x0e, 0x15, 0x7c, 0x3f, 0xf4, 0xcd, 0x66, 0xd7, 0xf4, 0xcd, 0xce, 0x18, 0xb1, - 0xe9, 0x32, 0xed, 0xb6, 0x49, 0x7b, 0x11, 0x20, 0x94, 0x45, 0x18, 0x90, 0x3c, 0x03, 0x42, 0x6b, - 0xfa, 0x5b, 0xbd, 0x72, 0x3d, 0xab, 0xff, 0x40, 0xeb, 0x1f, 0x0d, 0x1e, 0x77, 0xca, 0x24, 0xe7, - 0x94, 0x93, 0xce, 0xa9, 0x52, 0xcf, 0xea, 0xef, 0x65, 0xa0, 0x46, 0xe7, 0xb2, 0xce, 0x4f, 0xaf, - 0x6d, 0xcf, 0x4d, 0x75, 0xd6, 0x52, 0x9d, 0x87, 0x48, 0xe3, 0xcb, 0x90, 0xe7, 0x2b, 0x91, 0x1d, - 0x75, 0x25, 0x78, 0x87, 0x83, 0xe6, 0x73, 0x16, 0x2a, 0x14, 0x08, 0xb6, 0x9a, 0xbe, 0xb7, 0x17, - 0x70, 0x79, 0x2d, 0xf3, 0x3a, 0xc3, 0xdb, 0xa3, 0x23, 0x84, 0x5e, 0x68, 0x3a, 0xac, 0x41, 0x9e, - 0x29, 0x25, 0x5a, 0x43, 0x3f, 0x5f, 0x60, 0xf6, 0x19, 0x53, 0x37, 0x6c, 0x7a, 0xed, 0x8c, 0x14, - 0x35, 0x4a, 0x0a, 0x22, 0x2e, 0x98, 0x59, 0x67, 0x8c, 0x2e, 0xc0, 0x12, 0xa3, 0x05, 0x2d, 0x36, - 0x77, 0x4c, 0xdb, 0x69, 0xfa, 0xd8, 0x0c, 0x3c, 0x97, 0xc6, 0x38, 0x4b, 0xc6, 0xbc, 0x1d, 0xf7, - 0x79, 0xcd, 0xb4, 0x1d, 0x83, 0x7e, 0xd3, 0xbf, 0x29, 0x1c, 0xe6, 0x72, 0x5e, 0x99, 0x44, 0x64, - 0x6f, 0x03, 0x62, 0x58, 0x58, 0xfd, 0x65, 0x8a, 0x3c, 0x8d, 0x27, 0xa4, 0x66, 0x35, 0xbd, 0xa8, - 0xc6, 0xac, 0x9d, 0xaa, 0x09, 0xf4, 0xbf, 0xd5, 0xe0, 0xd4, 0x55, 0x1c, 0xd2, 0xa6, 0x97, 0x89, - 0xda, 0xdc, 0xf4, 0xbd, 0xb6, 0x8f, 0x83, 0xe0, 0x47, 0x80, 0xb1, 0x7f, 0x91, 0xf9, 0xa8, 0xb2, - 0xb9, 0x4d, 0xb2, 0x10, 0x69, 0x3e, 0xcc, 0x1c, 0xc4, 0x87, 0xd9, 0x14, 0x1f, 0x52, 0x2d, 0x12, - 0x21, 0xc6, 0x38, 0xed, 0xe1, 0x27, 0xf6, 0xb7, 0x58, 0xb0, 0x50, 0x9c, 0xd3, 0x24, 0x44, 0x8e, - 0x45, 0x35, 0x33, 0x96, 0xa8, 0x9e, 0x81, 0xb2, 0x28, 0x9e, 0x6c, 0xc6, 0xb0, 0xd3, 0x17, 0xca, - 0xbf, 0xd0, 0x58, 0xc2, 0xcb, 0x8f, 0x82, 0xf2, 0xae, 0xd6, 0xb3, 0xfa, 0xef, 0x64, 0xa0, 0xba, - 0xe1, 0x06, 0xd8, 0x0f, 0x8f, 0xff, 0xbe, 0x0b, 0x7d, 0x02, 0xca, 0x74, 0x86, 0x41, 0xd3, 0x32, - 0x43, 0x93, 0x9b, 0xea, 0x47, 0xa5, 0x47, 0x6a, 0xaf, 0x91, 0x76, 0xeb, 0x66, 0x68, 0x1a, 0x8c, - 0x4c, 0x01, 0xf9, 0x8d, 0x4e, 0x42, 0x69, 0xd7, 0x0c, 0x76, 0x9b, 0x77, 0xf0, 0x3e, 0x73, 0x86, - 0xab, 0x46, 0x91, 0x54, 0x7c, 0x0a, 0xef, 0x07, 0xe8, 0x11, 0x28, 0xba, 0xbd, 0x0e, 0x13, 0x39, - 0xa2, 0xe0, 0xab, 0x46, 0xc1, 0xed, 0x75, 0x88, 0xc0, 0x31, 0x72, 0x15, 0x39, 0xb9, 0x5e, 0xef, - 0xfe, 0x1f, 0xb9, 0x46, 0x20, 0xd7, 0x23, 0xf5, 0xac, 0xfe, 0xe7, 0x19, 0x98, 0xbe, 0xd1, 0x23, - 0xbb, 0x63, 0x7a, 0x90, 0xda, 0x73, 0xc2, 0xc3, 0x49, 0xf3, 0x39, 0xc8, 0x32, 0x3f, 0x93, 0xf4, - 0xa8, 0x4b, 0x67, 0xb0, 0xb1, 0x1e, 0x18, 0xa4, 0x11, 0x3d, 0x44, 0xec, 0xb5, 0x5a, 0xdc, 0x65, - 0xcf, 0x52, 0xac, 0x4b, 0xa4, 0x86, 0x39, 0xec, 0x27, 0xa1, 0x84, 0x7d, 0x3f, 0x76, 0xe8, 0xe9, - 0x9c, 0xb0, 0xef, 0xb3, 0x8f, 0x3a, 0x54, 0xcc, 0xd6, 0x1d, 0xd7, 0xdb, 0x73, 0xb0, 0xd5, 0xc6, - 0x16, 0x95, 0x9b, 0xa2, 0x91, 0xa8, 0x63, 0x92, 0x45, 0x38, 0xa0, 0xd9, 0x72, 0xc3, 0xc8, 0x47, - 0x60, 0x35, 0x57, 0xdc, 0x90, 0x7c, 0xb6, 0xb0, 0x83, 0x43, 0x4c, 0x3f, 0x17, 0xd8, 0x67, 0x56, - 0xc3, 0x3f, 0xf7, 0xba, 0x71, 0xef, 0x22, 0xfb, 0xcc, 0x6a, 0xc8, 0xe7, 0x53, 0x50, 0xea, 0x1f, - 0xb1, 0x94, 0xfa, 0x11, 0x71, 0x5a, 0xa1, 0xff, 0x50, 0x83, 0xea, 0x3a, 0x1d, 0xea, 0x21, 0xe0, - 0x3e, 0x04, 0x53, 0xf8, 0x7e, 0xd7, 0xe7, 0xba, 0x87, 0xfe, 0x1e, 0xca, 0x50, 0x8c, 0x6b, 0x4a, - 0xf5, 0xac, 0xfe, 0x85, 0x29, 0xa8, 0x6e, 0x61, 0xd3, 0x6f, 0xed, 0x3e, 0x14, 0xe1, 0xbe, 0x1a, - 0x64, 0xad, 0xc0, 0xe1, 0xf3, 0x24, 0x3f, 0xd1, 0x79, 0x98, 0xed, 0x3a, 0x66, 0x0b, 0xef, 0x7a, - 0x8e, 0x85, 0x7d, 0x16, 0xdc, 0xa3, 0x9c, 0x52, 0x31, 0x6a, 0xc2, 0x07, 0x1a, 0xde, 0x43, 0x2f, - 0x42, 0xd1, 0x0a, 0x9c, 0x26, 0x0d, 0x72, 0x30, 0xbf, 0x52, 0x3e, 0xbf, 0xf5, 0xc0, 0xa1, 0x31, - 0x8e, 0x82, 0xc5, 0x7e, 0xa0, 0xc7, 0xa0, 0xea, 0xf5, 0xc2, 0x6e, 0x2f, 0x6c, 0x32, 0x91, 0xad, - 0x17, 0x29, 0x7a, 0x15, 0x56, 0x49, 0x25, 0x3a, 0x40, 0xaf, 0x41, 0x35, 0xa0, 0xa4, 0x8c, 0xf6, - 0x37, 0xa5, 0x51, 0xbd, 0xea, 0x0a, 0xeb, 0xc7, 0x37, 0x38, 0x4f, 0x41, 0x2d, 0xf4, 0xcd, 0x7b, - 0xd8, 0x11, 0x8e, 0x00, 0x81, 0xf2, 0xe7, 0x0c, 0xab, 0xef, 0x9f, 0xe2, 0x2b, 0x0e, 0x0c, 0xcb, - 0xaa, 0x03, 0x43, 0x34, 0x0d, 0x19, 0xf7, 0x2e, 0x3d, 0x11, 0xcf, 0x1a, 0x19, 0xf7, 0x2e, 0x63, - 0x84, 0xe9, 0x7a, 0x56, 0xff, 0x14, 0x4c, 0x5d, 0xb3, 0x43, 0x4a, 0x61, 0x22, 0xfe, 0x1a, 0xdd, - 0x66, 0x52, 0x21, 0x7f, 0x04, 0x8a, 0xbe, 0xb7, 0xc7, 0xf4, 0x1a, 0x71, 0x61, 0x2b, 0x46, 0xc1, - 0xf7, 0xf6, 0xa8, 0xd2, 0xa2, 0x19, 0x6a, 0x9e, 0x8f, 0xd9, 0x06, 0x22, 0x63, 0xf0, 0x92, 0xfe, - 0x7b, 0x5a, 0x9f, 0xab, 0x88, 0x26, 0x0a, 0x0e, 0xa7, 0x8a, 0x3e, 0x01, 0x05, 0x9f, 0xf5, 0x1f, - 0x9a, 0xd2, 0x21, 0x42, 0xa2, 0x7a, 0x35, 0xea, 0x35, 0x7a, 0x8e, 0xe2, 0x57, 0x35, 0xa8, 0xbc, - 0xe6, 0xf4, 0x82, 0x07, 0x21, 0x05, 0xb2, 0x83, 0xa9, 0xac, 0xfc, 0xa0, 0x8c, 0xae, 0xc6, 0xcc, - 0x72, 0x56, 0xff, 0x8f, 0x29, 0xa8, 0x72, 0x7c, 0x1e, 0x48, 0xb6, 0xe4, 0x16, 0x94, 0x09, 0xec, - 0x66, 0x80, 0xdb, 0x51, 0xf0, 0xac, 0xbc, 0xb6, 0x26, 0xdd, 0x99, 0x24, 0xd0, 0xa0, 0xe9, 0x33, - 0x5b, 0xb4, 0xd3, 0x27, 0xdd, 0xd0, 0xdf, 0x67, 0x39, 0xa7, 0xac, 0x02, 0xb5, 0x60, 0x76, 0x87, - 0x34, 0x6e, 0x8a, 0x43, 0x4f, 0xd1, 0xa1, 0x5f, 0x1c, 0x61, 0x68, 0x5a, 0x4a, 0x8f, 0x3f, 0xb3, - 0x93, 0xac, 0x45, 0x6f, 0xb1, 0x25, 0x6d, 0x06, 0xd8, 0xe4, 0xf2, 0xc1, 0x8d, 0xed, 0x85, 0x91, - 0xb1, 0x37, 0x99, 0x00, 0x31, 0x00, 0xd5, 0x96, 0x58, 0xd7, 0x78, 0x0b, 0x66, 0x52, 0x28, 0x10, - 0x89, 0xb8, 0x83, 0xf7, 0xf9, 0xbe, 0x9a, 0xfc, 0x44, 0xcf, 0x8b, 0xc9, 0x5b, 0x2a, 0x33, 0x7f, - 0xdd, 0x73, 0xdb, 0x97, 0x7c, 0xdf, 0xdc, 0xe7, 0xc9, 0x5d, 0x17, 0x33, 0x2f, 0x69, 0x8d, 0x6d, - 0x98, 0x97, 0x4d, 0xf3, 0x7d, 0x85, 0xf1, 0x2a, 0xa0, 0xc1, 0x79, 0x4a, 0x20, 0x24, 0x52, 0xd0, - 0xb2, 0xc2, 0x08, 0xfa, 0xbb, 0x59, 0xa8, 0x7c, 0xba, 0x87, 0xfd, 0xfd, 0xa3, 0xb4, 0x09, 0x91, - 0x4d, 0x9b, 0x12, 0x6c, 0xda, 0x80, 0x1a, 0xce, 0x49, 0xd4, 0xb0, 0xc4, 0x98, 0xe4, 0xa5, 0xc6, - 0x44, 0xa6, 0x67, 0x0b, 0x63, 0xe9, 0xd9, 0xa2, 0x52, 0xcf, 0xae, 0x43, 0x85, 0x9d, 0xd1, 0x8e, - 0x6b, 0x0a, 0xca, 0xb4, 0x1b, 0xb3, 0x04, 0x4c, 0x1f, 0xd4, 0xea, 0x59, 0xfd, 0x77, 0xb5, 0x78, - 0x45, 0x26, 0xd2, 0xa7, 0x09, 0x27, 0x35, 0x33, 0xb6, 0x93, 0x3a, 0xb2, 0x3e, 0xfd, 0xae, 0x06, - 0xa5, 0x37, 0x70, 0x2b, 0xf4, 0x7c, 0x22, 0xb3, 0x92, 0x6e, 0xda, 0x08, 0x1b, 0xad, 0x4c, 0x7a, - 0xa3, 0xf5, 0x1c, 0x14, 0x6d, 0xab, 0x69, 0x12, 0x86, 0xa7, 0x70, 0x87, 0xf9, 0xa7, 0x05, 0xdb, - 0xa2, 0x92, 0x31, 0xfa, 0x31, 0xd9, 0xd7, 0x35, 0xa8, 0x30, 0x9c, 0x03, 0xd6, 0xf3, 0xa3, 0x02, - 0x38, 0x4d, 0x26, 0x85, 0xbc, 0x10, 0x4f, 0xf4, 0xda, 0x89, 0x3e, 0xd8, 0x4b, 0x00, 0x84, 0xc8, - 0xbc, 0x3b, 0x13, 0xe2, 0x65, 0x29, 0xb6, 0xac, 0x3b, 0x25, 0xf8, 0xb5, 0x13, 0x46, 0x89, 0xf4, - 0xa2, 0x43, 0x5c, 0x2e, 0x40, 0x8e, 0xf6, 0xd6, 0xff, 0x53, 0x83, 0xb9, 0x2b, 0xa6, 0xd3, 0x5a, - 0xb7, 0x83, 0xd0, 0x74, 0x5b, 0x13, 0x78, 0xa4, 0x17, 0xa1, 0xe0, 0x75, 0x9b, 0x0e, 0xde, 0x09, - 0x39, 0x4a, 0x67, 0x87, 0xcc, 0x88, 0x91, 0xc1, 0xc8, 0x7b, 0xdd, 0xeb, 0x78, 0x27, 0x44, 0x1f, - 0x83, 0xa2, 0xd7, 0x6d, 0xfa, 0x76, 0x7b, 0x37, 0xe4, 0xd4, 0x1f, 0xa1, 0x73, 0xc1, 0xeb, 0x1a, - 0xa4, 0x87, 0x10, 0x6b, 0x9c, 0x1a, 0x33, 0xd6, 0xa8, 0xff, 0x60, 0x60, 0xfa, 0x13, 0xc8, 0xc0, - 0x45, 0x28, 0xda, 0x6e, 0xd8, 0xb4, 0xec, 0x20, 0x22, 0xc1, 0x69, 0x39, 0x0f, 0xb9, 0x21, 0x9d, - 0x01, 0x5d, 0x53, 0x37, 0x24, 0xb0, 0xd1, 0xab, 0x00, 0x3b, 0x8e, 0x67, 0xf2, 0xde, 0x8c, 0x06, - 0x67, 0xe4, 0xe2, 0x43, 0x9a, 0x45, 0xfd, 0x4b, 0xb4, 0x13, 0x19, 0xa1, 0xbf, 0xa4, 0x7f, 0xa9, - 0xc1, 0xc2, 0x26, 0xf6, 0x59, 0xee, 0x62, 0xc8, 0x0f, 0x0a, 0x36, 0xdc, 0x1d, 0x2f, 0x79, 0x56, - 0xa3, 0xa5, 0xce, 0x6a, 0xde, 0x9f, 0xf3, 0x89, 0xc4, 0x7e, 0x92, 0x9d, 0x18, 0x46, 0xfb, 0xc9, - 0xe8, 0x5c, 0x94, 0xc5, 0x31, 0xa6, 0x15, 0xcb, 0xc4, 0xf1, 0x15, 0xc3, 0x39, 0xfa, 0xcf, 0xb1, - 0xcc, 0x2a, 0xe9, 0xa4, 0x0e, 0xcf, 0xb0, 0x8b, 0xc0, 0x0d, 0x47, 0xca, 0x8c, 0x7c, 0x08, 0x52, - 0xba, 0x43, 0xa1, 0x88, 0x7e, 0x49, 0x83, 0x65, 0x35, 0x56, 0x93, 0xf8, 0x56, 0xaf, 0x42, 0xce, - 0x76, 0x77, 0xbc, 0x28, 0xac, 0x7b, 0x4e, 0x2a, 0x0b, 0x72, 0xb8, 0xac, 0xa3, 0xfe, 0x57, 0x19, - 0xa8, 0x7d, 0x9a, 0x65, 0xea, 0x7c, 0xe0, 0xcb, 0xdf, 0xc1, 0x9d, 0x66, 0x60, 0xbf, 0x83, 0xa3, - 0xe5, 0xef, 0xe0, 0xce, 0x96, 0xfd, 0x0e, 0x4e, 0x70, 0x46, 0x2e, 0xc9, 0x19, 0xc3, 0xcf, 0x5d, - 0xc4, 0x63, 0x86, 0x42, 0xf2, 0x98, 0x61, 0x11, 0xf2, 0xae, 0x67, 0xe1, 0x8d, 0x75, 0xbe, 0x07, - 0xe7, 0xa5, 0x3e, 0xab, 0x95, 0xc6, 0x63, 0x35, 0x02, 0x8a, 0x0e, 0x61, 0xb1, 0xd4, 0x63, 0x82, - 0x23, 0x2b, 0xea, 0x5f, 0xd3, 0xa0, 0x71, 0x15, 0x87, 0x69, 0xaa, 0x1e, 0x1d, 0xff, 0xbd, 0xab, - 0xc1, 0x49, 0x29, 0x42, 0x93, 0xb0, 0xde, 0x47, 0x93, 0xac, 0x27, 0x3f, 0x51, 0x18, 0x00, 0xc9, - 0xb9, 0xee, 0x59, 0xa8, 0xac, 0xf7, 0x3a, 0x9d, 0xd8, 0xb7, 0x3b, 0x0b, 0x15, 0x9f, 0xfd, 0x64, - 0xfb, 0x62, 0x66, 0x99, 0xcb, 0xbc, 0x8e, 0xec, 0x7e, 0xf5, 0xf3, 0x50, 0xe5, 0x5d, 0x38, 0xd6, - 0x0d, 0x28, 0xfa, 0xfc, 0x37, 0x6f, 0x1f, 0x97, 0xf5, 0x05, 0x98, 0x33, 0x70, 0x9b, 0x30, 0xbd, - 0x7f, 0xdd, 0x76, 0xef, 0x70, 0x30, 0xfa, 0xe7, 0x34, 0x98, 0x4f, 0xd6, 0xf3, 0xb1, 0x5e, 0x80, - 0x82, 0x69, 0x59, 0x3e, 0x0e, 0x82, 0xa1, 0xcb, 0x72, 0x89, 0xb5, 0x31, 0xa2, 0xc6, 0x02, 0xe5, - 0x32, 0x23, 0x53, 0x4e, 0x6f, 0xc2, 0xec, 0x55, 0x1c, 0xde, 0xc0, 0xa1, 0x3f, 0x51, 0xf6, 0x0b, - 0xcd, 0x12, 0xa2, 0x9d, 0x39, 0x5b, 0x44, 0x45, 0xfd, 0x2b, 0x1a, 0x20, 0x11, 0xc2, 0x24, 0xcb, - 0x2c, 0x52, 0x39, 0x93, 0xa4, 0x32, 0x4b, 0x61, 0xec, 0x74, 0x3d, 0x17, 0xbb, 0xa1, 0xe8, 0x88, - 0x55, 0xe3, 0x5a, 0xca, 0x7e, 0x7f, 0xa4, 0x41, 0xf5, 0x4a, 0x54, 0x43, 0xf5, 0x4b, 0x5f, 0x18, - 0xb5, 0x84, 0x30, 0x22, 0x98, 0xf2, 0x3d, 0x27, 0x02, 0x44, 0x7f, 0xa3, 0x8f, 0x03, 0xb0, 0x63, - 0xb4, 0x96, 0x67, 0x31, 0x00, 0xd3, 0x69, 0x17, 0x48, 0xc0, 0x1c, 0x5f, 0xf1, 0x2c, 0x6c, 0x94, - 0x82, 0xe8, 0x27, 0x31, 0x97, 0xec, 0xb8, 0x97, 0x30, 0xde, 0xe8, 0x66, 0xbf, 0x44, 0x3b, 0x11, - 0x64, 0xf5, 0xf7, 0x34, 0xb2, 0x1d, 0xe3, 0xe8, 0x53, 0x18, 0x01, 0x7a, 0x29, 0xd2, 0x1a, 0x8c, - 0x92, 0xba, 0x94, 0xf9, 0x13, 0x73, 0x8e, 0xd4, 0xc6, 0x16, 0xcc, 0x05, 0xbd, 0xed, 0x3e, 0xd9, - 0x68, 0x6d, 0x24, 0x44, 0xa3, 0x8c, 0x83, 0xc4, 0xee, 0x1c, 0x9d, 0xfe, 0xca, 0x66, 0x47, 0x67, - 0xc3, 0x93, 0xf0, 0x08, 0x4d, 0x42, 0x4e, 0x0c, 0x15, 0x49, 0xca, 0x0f, 0x35, 0x40, 0xd7, 0x3d, - 0xd3, 0xba, 0x6c, 0x3a, 0x93, 0x39, 0x7b, 0xa7, 0x01, 0x02, 0xbf, 0xd5, 0xe4, 0xcb, 0x9d, 0xe1, - 0xb6, 0xc4, 0x6f, 0xdd, 0x64, 0x2b, 0x7e, 0x06, 0xca, 0x56, 0x10, 0xf2, 0xcf, 0x51, 0x02, 0x0d, - 0x58, 0x41, 0xc8, 0xbe, 0xd3, 0x3b, 0x28, 0x64, 0x97, 0x8d, 0xad, 0xa6, 0x90, 0x7f, 0x30, 0x45, - 0x9b, 0xd5, 0xd8, 0x87, 0xad, 0xb8, 0x5e, 0xa2, 0x10, 0x73, 0xea, 0x4c, 0xec, 0xd9, 0x7a, 0x4e, - 0xdf, 0x81, 0xa5, 0x1b, 0xa6, 0xdb, 0x33, 0x1d, 0x42, 0x06, 0x33, 0x71, 0x73, 0x20, 0x6d, 0xe5, - 0x34, 0x89, 0x95, 0x7b, 0x94, 0x25, 0x34, 0xb3, 0x8d, 0x1a, 0x9d, 0xdc, 0x94, 0x21, 0xd4, 0x30, - 0x38, 0x85, 0xba, 0xa6, 0xff, 0xba, 0x06, 0xf5, 0x41, 0x40, 0x93, 0xc8, 0x25, 0x45, 0x2f, 0x1a, - 0x4a, 0x34, 0xc2, 0xfd, 0x3a, 0xf4, 0x11, 0x98, 0xeb, 0x97, 0x37, 0x1d, 0xd3, 0xbd, 0xe2, 0xf5, - 0x5c, 0xe6, 0x33, 0xe6, 0x0c, 0xd9, 0x27, 0xfd, 0x13, 0x31, 0x4f, 0x98, 0x71, 0x62, 0x3a, 0x4e, - 0x50, 0x44, 0x00, 0xa9, 0x0d, 0x82, 0xd4, 0x7f, 0x3b, 0x43, 0x6d, 0xdf, 0xc0, 0x08, 0x93, 0x4c, - 0xf5, 0x62, 0xf2, 0x68, 0xef, 0x71, 0xc5, 0xad, 0x9c, 0x24, 0x44, 0x2e, 0x6e, 0x2b, 0x30, 0x83, - 0xef, 0xe3, 0x56, 0x2f, 0xb4, 0xdd, 0x36, 0x99, 0xe6, 0x4d, 0x8f, 0xfb, 0x22, 0xe9, 0x6a, 0xf4, - 0x38, 0x54, 0xc9, 0xca, 0x79, 0xbd, 0x90, 0xb7, 0x63, 0x4e, 0x49, 0xb2, 0x92, 0x8c, 0x47, 0xe6, - 0xeb, 0xe0, 0x10, 0x5b, 0xbc, 0x1d, 0xf3, 0x50, 0xd2, 0xd5, 0x84, 0x5a, 0x3b, 0xa6, 0xed, 0xc4, - 0xcd, 0xd8, 0xc1, 0x41, 0xa2, 0x6e, 0x80, 0xdc, 0xa4, 0x3a, 0x18, 0x87, 0xdc, 0x7f, 0xad, 0xa5, - 0xc8, 0xcd, 0x47, 0x38, 0x2a, 0x72, 0x5f, 0x03, 0xe8, 0x60, 0xbf, 0x8d, 0x37, 0xa8, 0x67, 0xc0, - 0x22, 0x7a, 0x2b, 0x4a, 0xa5, 0xc6, 0x06, 0xb8, 0x11, 0x75, 0x30, 0x84, 0xbe, 0xfa, 0x55, 0x98, - 0x93, 0x34, 0x21, 0x46, 0x8f, 0xa5, 0xca, 0x46, 0xd1, 0xe1, 0xa8, 0x48, 0x6c, 0x4a, 0x68, 0xfa, - 0x6d, 0x1c, 0x72, 0x51, 0xe0, 0x25, 0xfd, 0x05, 0x7a, 0x74, 0x4e, 0x03, 0x5e, 0x09, 0x6e, 0x4e, - 0x66, 0x34, 0x69, 0x03, 0x19, 0x4d, 0x3b, 0xf4, 0x78, 0x5a, 0xec, 0x37, 0x61, 0x36, 0x1a, 0x0d, - 0x22, 0x62, 0x8b, 0xdf, 0xe4, 0x8c, 0x8a, 0xfa, 0x7f, 0x69, 0x50, 0xdd, 0xe8, 0x74, 0xbd, 0xfe, - 0x09, 0xe3, 0xc8, 0x91, 0x8a, 0xc1, 0x83, 0x99, 0x8c, 0xec, 0x60, 0xe6, 0x31, 0xa8, 0x26, 0xef, - 0xfc, 0xb1, 0xc0, 0x6f, 0xa5, 0x25, 0xde, 0xf5, 0x3b, 0x09, 0x25, 0xdf, 0xdb, 0x6b, 0x12, 0x9d, - 0x6d, 0xf1, 0xbc, 0xb7, 0xa2, 0xef, 0xed, 0x11, 0x4d, 0x6e, 0xa1, 0x79, 0xc8, 0xed, 0xd8, 0x4e, - 0x9c, 0xb2, 0xc9, 0x0a, 0xe8, 0xa3, 0x64, 0x1f, 0xcf, 0xb2, 0x4a, 0xf2, 0xa3, 0xda, 0xd5, 0xa8, - 0x07, 0x53, 0x8d, 0xa8, 0xae, 0xe9, 0x9f, 0x85, 0xe9, 0x68, 0xfa, 0x13, 0xde, 0x65, 0x0d, 0xcd, - 0xe0, 0x4e, 0x94, 0x9b, 0xc6, 0x0a, 0xfa, 0x79, 0x96, 0x63, 0x40, 0xc7, 0x4f, 0xac, 0x3e, 0x82, - 0x29, 0xd2, 0x82, 0x0b, 0x15, 0xfd, 0xad, 0xff, 0x63, 0x06, 0x16, 0xd3, 0xad, 0x27, 0x41, 0xe9, - 0x85, 0xa4, 0x20, 0xc9, 0xaf, 0x26, 0x8a, 0xd0, 0xb8, 0x10, 0xf1, 0xa5, 0x68, 0xc5, 0xca, 0x3a, - 0x4b, 0x97, 0x82, 0x6a, 0x68, 0xb4, 0x04, 0x05, 0xdb, 0x6a, 0x3a, 0x64, 0xef, 0xcf, 0xac, 0x60, - 0xde, 0xb6, 0xae, 0xdb, 0x41, 0x48, 0x36, 0x32, 0xcc, 0x1f, 0x1f, 0x39, 0xa1, 0x8d, 0xb5, 0x47, - 0xd3, 0x90, 0xb1, 0x2d, 0xae, 0x9e, 0x32, 0xb6, 0x45, 0xd9, 0x45, 0xbc, 0x98, 0xc2, 0x77, 0x52, - 0xa2, 0xe5, 0xb3, 0x88, 0xdd, 0xe6, 0xb2, 0x42, 0xaf, 0xae, 0x14, 0x93, 0xe2, 0x63, 0x51, 0x7e, - 0x62, 0x99, 0xaa, 0xcd, 0x30, 0xa0, 0x7b, 0xab, 0xac, 0x51, 0x64, 0x15, 0xb7, 0x03, 0xfd, 0x4d, - 0x58, 0x24, 0x38, 0xb3, 0xb9, 0xdf, 0x26, 0x2b, 0x35, 0x36, 0xef, 0xcf, 0x43, 0xce, 0xb1, 0x3b, - 0x76, 0x24, 0xed, 0xac, 0xa0, 0xff, 0x8c, 0x06, 0x4b, 0x03, 0x23, 0x4f, 0xb2, 0x86, 0x97, 0x44, - 0xb6, 0x2a, 0xaf, 0x9d, 0x97, 0xea, 0x32, 0x39, 0xd3, 0x44, 0x3c, 0xf8, 0xc7, 0xcc, 0x1b, 0x37, - 0xd8, 0x5d, 0x80, 0x07, 0x9c, 0x16, 0xba, 0x02, 0xb5, 0x3d, 0x3b, 0xdc, 0x6d, 0xd2, 0x4b, 0xb4, - 0xd4, 0xad, 0x62, 0x3e, 0x61, 0xd1, 0x98, 0x26, 0xf5, 0x5b, 0xa4, 0x9a, 0xb8, 0x56, 0xd2, 0x78, - 0xe8, 0x94, 0x74, 0xf7, 0xf8, 0x45, 0x0d, 0xe6, 0x12, 0xf8, 0x4f, 0x42, 0xcf, 0x8f, 0x91, 0xed, - 0x04, 0x1b, 0x88, 0x93, 0x74, 0x59, 0x4a, 0x52, 0x0e, 0x8d, 0x9a, 0x85, 0xb8, 0x87, 0xfe, 0x9d, - 0x2c, 0x94, 0x85, 0x2f, 0xe8, 0x14, 0x94, 0xf8, 0xb7, 0x7e, 0x9c, 0x22, 0xae, 0x18, 0x89, 0x5e, - 0x8f, 0x41, 0x5f, 0x59, 0x0a, 0x97, 0xb0, 0x84, 0x14, 0x6e, 0x2b, 0x40, 0xd7, 0x60, 0x9a, 0xd1, - 0x33, 0x46, 0x5d, 0xba, 0x8f, 0x88, 0x93, 0xd3, 0x4d, 0xdf, 0xe2, 0x58, 0x1a, 0xd5, 0x40, 0x28, - 0xb1, 0x1c, 0x0a, 0xcf, 0xc2, 0x14, 0x52, 0x2e, 0x11, 0x35, 0x40, 0xab, 0x30, 0x97, 0xbc, 0x1d, - 0x22, 0x86, 0x38, 0x66, 0x13, 0x37, 0x44, 0xa8, 0x00, 0x98, 0x30, 0xeb, 0xf6, 0x3a, 0x4d, 0xaf, - 0x17, 0x6e, 0x7b, 0x3d, 0x97, 0xad, 0x35, 0x7f, 0x14, 0xe3, 0xc2, 0x41, 0x24, 0x5d, 0xbd, 0xd9, - 0xeb, 0xdc, 0xe2, 0x1d, 0x09, 0x37, 0xf0, 0x63, 0x2e, 0x37, 0x59, 0xdb, 0xb8, 0x0c, 0xf3, 0xb2, - 0x86, 0x07, 0x1d, 0xe3, 0xe4, 0xc4, 0x63, 0x9c, 0xaf, 0x69, 0x50, 0x11, 0x29, 0x42, 0x36, 0x94, - 0x0e, 0x36, 0x2d, 0xec, 0xc7, 0x4b, 0x16, 0x97, 0x89, 0x56, 0x61, 0xbf, 0x9b, 0x64, 0x83, 0xcd, - 0xad, 0x19, 0xb0, 0x2a, 0xb2, 0xf7, 0x46, 0x1f, 0x82, 0x19, 0xab, 0x93, 0xb8, 0xc1, 0x1e, 0x6d, - 0x39, 0xad, 0x8e, 0x70, 0x75, 0x3d, 0x41, 0xe7, 0xa9, 0x64, 0x74, 0xe6, 0xf3, 0xfd, 0x07, 0x56, - 0x7c, 0x6c, 0x61, 0x37, 0xb4, 0x4d, 0xe7, 0xf0, 0x32, 0xd9, 0x80, 0x62, 0x2f, 0xc0, 0xbe, 0x60, - 0x7c, 0xe3, 0x32, 0xf9, 0xd6, 0x35, 0x83, 0x60, 0xcf, 0xf3, 0x2d, 0x8e, 0x65, 0x5c, 0x1e, 0x92, - 0xe6, 0xcf, 0xde, 0x91, 0x90, 0xa7, 0xf9, 0xbf, 0x00, 0x4b, 0x1d, 0xcf, 0xb2, 0x77, 0x6c, 0xd9, - 0xed, 0x00, 0xd2, 0x6d, 0x21, 0xfa, 0x9c, 0xe8, 0x17, 0xdd, 0x7d, 0x9c, 0x13, 0xef, 0x3e, 0x7e, - 0x2b, 0x03, 0x4b, 0xaf, 0x77, 0xad, 0x0f, 0x80, 0x0e, 0xcb, 0x50, 0xf6, 0x1c, 0x6b, 0x33, 0x49, - 0x0a, 0xb1, 0x8a, 0xb4, 0x70, 0xf1, 0x5e, 0xdc, 0x82, 0xe9, 0x21, 0xb1, 0x6a, 0xe8, 0xb5, 0x88, - 0x43, 0xd1, 0x2b, 0x3f, 0x8c, 0x5e, 0xa5, 0xef, 0xbf, 0x92, 0x2f, 0x66, 0x6a, 0xf3, 0xf5, 0x8c, - 0xfe, 0x63, 0xb0, 0xc4, 0x32, 0x70, 0x1e, 0x30, 0x95, 0xa2, 0x35, 0x5a, 0x10, 0xd7, 0xe8, 0x6d, - 0x58, 0x20, 0xd6, 0x8c, 0x80, 0x7e, 0x3d, 0xc0, 0xfe, 0x84, 0xba, 0xf7, 0x14, 0x94, 0x22, 0x68, - 0xd1, 0x85, 0x96, 0x7e, 0x85, 0xfe, 0xff, 0x61, 0x3e, 0x05, 0xeb, 0x90, 0xb3, 0x8c, 0x66, 0xb2, - 0x28, 0xce, 0x64, 0x19, 0xc0, 0xf0, 0x1c, 0xa2, 0x3f, 0xec, 0x70, 0x9f, 0x78, 0x5f, 0x82, 0x69, - 0xa7, 0xbf, 0x49, 0x0b, 0x02, 0x77, 0x48, 0x8b, 0x9f, 0xd5, 0x60, 0x96, 0x49, 0x2e, 0x19, 0xea, - 0xf0, 0xab, 0xf0, 0x22, 0xe4, 0x31, 0x85, 0xc2, 0x83, 0x76, 0x67, 0xe4, 0xea, 0x32, 0x46, 0xd7, - 0xe0, 0xcd, 0xa5, 0x62, 0x14, 0xc2, 0xcc, 0xba, 0xef, 0x75, 0x27, 0xc3, 0x88, 0x7a, 0x7c, 0x0e, - 0x16, 0x7d, 0xf8, 0x22, 0xa9, 0xb8, 0xa9, 0x62, 0x8c, 0xf7, 0x34, 0x58, 0xbc, 0xd5, 0xc5, 0xbe, - 0x19, 0x62, 0x42, 0xb4, 0xc9, 0xa0, 0x0f, 0x93, 0xdd, 0x04, 0x66, 0xd9, 0x24, 0x66, 0xe8, 0x63, - 0x89, 0x0b, 0xdb, 0xf2, 0x7d, 0x5e, 0x0a, 0xcb, 0xfe, 0xad, 0xad, 0x68, 0x5e, 0x4b, 0xe2, 0xbc, - 0xbe, 0xa7, 0xc1, 0xec, 0x16, 0x26, 0xe6, 0x79, 0xb2, 0x29, 0x3d, 0x27, 0x04, 0x12, 0x47, 0x58, - 0x60, 0x16, 0x69, 0x3c, 0x07, 0xb3, 0xb6, 0xdb, 0x72, 0x7a, 0x16, 0x6e, 0x92, 0xf9, 0xb3, 0x88, - 0x21, 0x73, 0x9e, 0x66, 0xf8, 0x07, 0x32, 0x0d, 0x62, 0x40, 0xa5, 0x3c, 0x7e, 0x9f, 0xf1, 0x78, - 0x9c, 0xf7, 0xc8, 0x50, 0xd0, 0xc6, 0x41, 0xe1, 0x02, 0xe4, 0x08, 0xe8, 0xc8, 0x37, 0x92, 0xf7, - 0xea, 0x8b, 0x89, 0xc1, 0x5a, 0xeb, 0x3f, 0xa9, 0x01, 0x12, 0xc9, 0x36, 0x89, 0x96, 0x78, 0x59, - 0xcc, 0x77, 0xca, 0x0e, 0x45, 0x9d, 0xcd, 0x34, 0xce, 0x74, 0xd2, 0xbf, 0x1b, 0xaf, 0x1e, 0x5d, - 0xee, 0x49, 0x56, 0x8f, 0xcc, 0x6b, 0xe8, 0xea, 0x09, 0x44, 0xa0, 0x8d, 0xc5, 0xd5, 0xa3, 0x1c, - 0x2b, 0x59, 0x3d, 0x82, 0x33, 0x5d, 0x3d, 0xae, 0xdf, 0xeb, 0xf5, 0x0c, 0x59, 0x34, 0x86, 0x6c, - 0xb4, 0x68, 0x14, 0xb2, 0x36, 0x0e, 0xe4, 0x0b, 0x90, 0x23, 0x10, 0x0f, 0xa6, 0x57, 0xb4, 0x68, - 0xb4, 0xb5, 0xb0, 0x68, 0x1c, 0x81, 0x07, 0xbf, 0x68, 0xfd, 0x99, 0xf6, 0x17, 0x4d, 0x87, 0xca, - 0xad, 0xed, 0xb7, 0x71, 0x2b, 0x1c, 0xa2, 0x79, 0x9f, 0x80, 0x99, 0x4d, 0xdf, 0xbe, 0x67, 0x3b, - 0xb8, 0x3d, 0x4c, 0x85, 0x7f, 0x51, 0x83, 0xea, 0x55, 0xdf, 0x74, 0x43, 0x2f, 0x52, 0xe3, 0x87, - 0xa2, 0xe7, 0x65, 0x28, 0x75, 0x23, 0x68, 0x9c, 0x07, 0x1e, 0x97, 0x1f, 0x6c, 0x26, 0x71, 0x32, - 0xfa, 0xdd, 0xf4, 0x37, 0x60, 0x9e, 0x62, 0x92, 0x46, 0xfb, 0x15, 0x28, 0x52, 0x65, 0x6e, 0xf3, - 0x00, 0x92, 0x2a, 0xe6, 0x9e, 0x98, 0x86, 0x11, 0xf7, 0xd1, 0xff, 0x4e, 0x83, 0x32, 0xfd, 0xd6, - 0x9f, 0xe0, 0xf8, 0x52, 0xfe, 0x32, 0xe4, 0x3d, 0x4a, 0xf2, 0xa1, 0xf9, 0x0f, 0xe2, 0xaa, 0x18, - 0xbc, 0x03, 0xf1, 0x90, 0xd9, 0x2f, 0x51, 0x23, 0x03, 0xab, 0xe2, 0x3a, 0xb9, 0xd0, 0x66, 0xb8, - 0x53, 0xb5, 0x3c, 0xda, 0xfc, 0xa2, 0x2e, 0xfa, 0xcf, 0xc7, 0x3c, 0x49, 0x1b, 0x1c, 0x5e, 0x84, - 0x5f, 0x4a, 0xd9, 0xd8, 0x65, 0x35, 0x16, 0x72, 0x23, 0x9b, 0xd0, 0xac, 0x64, 0x0b, 0x9a, 0x40, - 0x6b, 0xc2, 0x2d, 0x68, 0xcc, 0x02, 0xc3, 0xb6, 0xa0, 0x22, 0x72, 0x7d, 0x06, 0xf8, 0x1b, 0x0d, - 0x96, 0xb8, 0x4d, 0x8b, 0x79, 0xeb, 0x08, 0xc8, 0x84, 0x3e, 0xce, 0x6d, 0x2f, 0x3b, 0x10, 0x7b, - 0x6a, 0x98, 0xed, 0x8d, 0xf1, 0x3c, 0xc0, 0xf8, 0xfe, 0xa6, 0x46, 0xc3, 0xd1, 0xd7, 0x3d, 0xd3, - 0xb2, 0xdd, 0xf6, 0xe4, 0xf7, 0xba, 0x24, 0x11, 0x86, 0xcc, 0xa8, 0x99, 0xd7, 0x59, 0x59, 0x76, - 0x14, 0x0b, 0x1a, 0x2e, 0xd7, 0x33, 0x7a, 0x87, 0x86, 0xbd, 0x07, 0x30, 0x9d, 0xf0, 0xa0, 0xb3, - 0xcb, 0x07, 0xe2, 0x91, 0x82, 0xb8, 0xac, 0x7f, 0x93, 0x85, 0x40, 0x08, 0xbc, 0x09, 0xaf, 0x5f, - 0x3d, 0x20, 0x9a, 0x9c, 0xad, 0x67, 0xf4, 0x9f, 0x60, 0x97, 0xc4, 0x04, 0x24, 0x27, 0x21, 0xc7, - 0xf3, 0xc9, 0xe0, 0xa5, 0xfc, 0xc4, 0xb5, 0x0f, 0x8b, 0xe7, 0xdf, 0x3c, 0x01, 0xa5, 0x1b, 0xb4, - 0xdd, 0x27, 0xef, 0x87, 0xa8, 0x0e, 0x85, 0x7b, 0xd8, 0x0f, 0x6c, 0xcf, 0xe5, 0x56, 0x22, 0x2a, - 0xea, 0x73, 0xf4, 0x04, 0xfc, 0x0d, 0x56, 0x8a, 0x8e, 0x1c, 0x5b, 0x34, 0x4c, 0x16, 0x57, 0x4e, - 0x18, 0x6d, 0x8f, 0x20, 0x67, 0x92, 0x90, 0xe7, 0x01, 0x5d, 0xd9, 0xc5, 0xad, 0x3b, 0xd7, 0xb0, - 0xe9, 0x84, 0x51, 0xa2, 0xb5, 0xfe, 0x67, 0x1a, 0xcc, 0x25, 0xaa, 0x27, 0xdc, 0x66, 0xd9, 0x01, - 0x1b, 0x68, 0x9f, 0x07, 0xfb, 0xfb, 0x15, 0xec, 0xd4, 0xde, 0x0c, 0x3c, 0x37, 0x5a, 0xcf, 0xa8, - 0x88, 0x2e, 0x43, 0xe5, 0x6e, 0xcf, 0x0b, 0xcd, 0xe8, 0x48, 0x78, 0x6a, 0x39, 0x3b, 0x78, 0x91, - 0x2d, 0xce, 0xab, 0xf0, 0x42, 0x93, 0x51, 0xbe, 0x7c, 0x37, 0xfe, 0x1d, 0xe8, 0x5f, 0xd2, 0xa0, - 0xc1, 0xb7, 0x48, 0x62, 0xc0, 0xe8, 0xf0, 0xfc, 0x4a, 0x9f, 0x36, 0x11, 0xa3, 0x52, 0xd1, 0x11, - 0x43, 0x22, 0x20, 0x15, 0xa9, 0x93, 0x46, 0xe2, 0xd5, 0x52, 0x0d, 0xea, 0x74, 0x6b, 0x74, 0x14, - 0x98, 0x9c, 0x14, 0x31, 0xf9, 0x7b, 0x0d, 0xe6, 0x6e, 0xfb, 0xa6, 0x1b, 0xec, 0x60, 0xff, 0xa6, - 0x67, 0x4d, 0x20, 0xbe, 0x6b, 0xb0, 0xc0, 0x51, 0x90, 0xe2, 0x32, 0xc7, 0xea, 0x12, 0x33, 0x26, - 0x7d, 0xd8, 0x51, 0x54, 0xba, 0x0f, 0x33, 0xde, 0x73, 0xec, 0x63, 0xb2, 0x0f, 0xcf, 0x80, 0xa2, - 0x31, 0x3d, 0xf6, 0x80, 0x5e, 0xc1, 0xed, 0x75, 0x08, 0xee, 0xd1, 0x04, 0x1f, 0x15, 0x27, 0xf8, - 0xd3, 0x19, 0x58, 0x8c, 0x26, 0x18, 0x45, 0x1e, 0x8f, 0xfd, 0x1c, 0x47, 0x0d, 0x40, 0x13, 0x9f, - 0x87, 0xa6, 0x83, 0xb1, 0x89, 0xf1, 0xf3, 0x56, 0x70, 0x7b, 0x1d, 0x3e, 0xd5, 0x88, 0x24, 0x67, - 0x44, 0x92, 0x98, 0xf0, 0xc8, 0x75, 0x3b, 0x48, 0x82, 0x9c, 0x3c, 0xa6, 0x71, 0x5a, 0x04, 0xf1, - 0x0e, 0x34, 0x64, 0x20, 0x26, 0x7c, 0x79, 0x24, 0xfd, 0x44, 0x50, 0x46, 0xf6, 0x44, 0x90, 0xfe, - 0x65, 0x0d, 0x4e, 0x45, 0x77, 0xc5, 0x8f, 0x44, 0xc0, 0x4e, 0xa5, 0x9e, 0x50, 0x3e, 0xad, 0xc0, - 0x66, 0x12, 0x6a, 0x6c, 0x48, 0x31, 0x52, 0xb9, 0xb4, 0x49, 0xc0, 0x49, 0xac, 0xf5, 0x7f, 0x9e, - 0x82, 0x6a, 0x92, 0xfd, 0x24, 0x1b, 0x18, 0xe2, 0x03, 0xb4, 0xcc, 0xae, 0xd9, 0x8a, 0x1c, 0xb2, - 0x9c, 0x11, 0x97, 0xd1, 0x87, 0x01, 0x11, 0x2e, 0x8c, 0x9f, 0x39, 0x63, 0xc2, 0xc9, 0x72, 0x29, - 0x6a, 0x6e, 0xaf, 0x13, 0x3f, 0x71, 0x46, 0xa4, 0x14, 0xed, 0xb0, 0xd6, 0x8e, 0x67, 0x5a, 0x38, - 0x3e, 0x37, 0xe0, 0xc7, 0x06, 0x2f, 0x1d, 0x8c, 0xfe, 0xea, 0xcd, 0x5e, 0xe7, 0x3a, 0xed, 0xcb, - 0x79, 0x9c, 0x45, 0xe8, 0x09, 0x9c, 0x44, 0x35, 0x6a, 0xc5, 0xa7, 0x00, 0x6d, 0xcf, 0x76, 0xdb, - 0x0c, 0xa9, 0xdc, 0x90, 0xeb, 0x2e, 0x03, 0x60, 0x6e, 0xf1, 0xae, 0x03, 0xe7, 0x00, 0x71, 0x6d, - 0x04, 0xc4, 0x76, 0x5b, 0x5e, 0x27, 0x06, 0x92, 0x1f, 0x07, 0xc8, 0x06, 0xef, 0x9a, 0x04, 0x22, - 0xd6, 0x36, 0xae, 0xc0, 0x82, 0x74, 0xd2, 0xe3, 0x9c, 0x36, 0xf4, 0x4f, 0x2c, 0x92, 0x53, 0x3a, - 0xc4, 0x18, 0x03, 0x18, 0x8f, 0x75, 0xea, 0xf1, 0xae, 0x06, 0x4b, 0x06, 0x26, 0x3c, 0xf5, 0x7e, - 0x3c, 0x49, 0x3a, 0x0d, 0x19, 0x6b, 0x9b, 0x4b, 0x63, 0xc6, 0xda, 0x26, 0x3e, 0x84, 0xc7, 0x6e, - 0x23, 0x70, 0xfd, 0x1a, 0x15, 0x69, 0x52, 0x2a, 0xde, 0xbb, 0xd9, 0xd7, 0xa5, 0x51, 0xf1, 0xdc, - 0x59, 0x28, 0x46, 0xaf, 0x26, 0xa1, 0x02, 0x64, 0x2f, 0x39, 0x4e, 0xed, 0x04, 0xaa, 0x40, 0x71, - 0x83, 0x3f, 0x0d, 0x54, 0xd3, 0xce, 0xbd, 0x0a, 0x73, 0x92, 0x68, 0x1d, 0x9a, 0x85, 0xea, 0x25, - 0x8b, 0xc6, 0x84, 0x6f, 0x7b, 0xa4, 0xb2, 0x76, 0x02, 0x2d, 0x02, 0x32, 0x70, 0xc7, 0xbb, 0x47, - 0x1b, 0xbe, 0xe6, 0x7b, 0x1d, 0x5a, 0xaf, 0x9d, 0x7b, 0x1a, 0xe6, 0x65, 0x7b, 0x0e, 0x54, 0x82, - 0x1c, 0xdd, 0xc3, 0xd4, 0x4e, 0x20, 0x80, 0xbc, 0x81, 0xef, 0x79, 0x77, 0x48, 0xf3, 0xb7, 0x00, - 0xfa, 0x8e, 0x0c, 0x2a, 0x43, 0xe1, 0x75, 0xf7, 0x8e, 0xeb, 0xed, 0xb9, 0xb5, 0x13, 0x68, 0x06, - 0xca, 0x06, 0x36, 0xad, 0xeb, 0x76, 0xc7, 0x0e, 0xb1, 0x55, 0xcb, 0xa0, 0x1a, 0x54, 0xde, 0xf4, - 0xed, 0x10, 0x47, 0x35, 0x59, 0x34, 0x0d, 0xb0, 0x8e, 0xdd, 0xfd, 0xdb, 0x1e, 0x69, 0x58, 0x9b, - 0x22, 0x5d, 0x58, 0x99, 0xb6, 0xab, 0xe5, 0xd6, 0xbe, 0xfd, 0x32, 0x54, 0x99, 0x37, 0xca, 0x5f, - 0x21, 0x44, 0x4d, 0xa8, 0xa5, 0xdf, 0xd6, 0x47, 0x1f, 0x96, 0xa7, 0xa7, 0xc8, 0x9f, 0xe0, 0x6f, - 0x0c, 0xd3, 0x5b, 0xfa, 0x09, 0xf4, 0x59, 0x98, 0x4e, 0x3e, 0x25, 0x8f, 0xe4, 0x29, 0xd9, 0xd2, - 0xf7, 0xe6, 0x0f, 0x1a, 0xbc, 0x09, 0xd5, 0xc4, 0xdb, 0xe7, 0x48, 0xbe, 0xeb, 0x93, 0xbd, 0x8f, - 0xde, 0x90, 0x87, 0x18, 0xc4, 0xf7, 0xc9, 0x19, 0xf6, 0xc9, 0x97, 0x84, 0x15, 0xd8, 0x4b, 0x9f, - 0x1b, 0x3e, 0x08, 0x7b, 0x13, 0x66, 0x07, 0x5e, 0xe9, 0x45, 0x4f, 0x2b, 0xd4, 0x87, 0xfc, 0x35, - 0xdf, 0x83, 0x40, 0xec, 0x01, 0x1a, 0x7c, 0xcf, 0x1b, 0xad, 0xca, 0x57, 0x40, 0xf5, 0xc2, 0x79, - 0xe3, 0x99, 0x91, 0xdb, 0xc7, 0x84, 0xfb, 0x82, 0x06, 0x4b, 0x8a, 0x07, 0x5d, 0xd1, 0x73, 0xaa, - 0x94, 0x81, 0x21, 0xcf, 0xd3, 0x36, 0x9e, 0x1f, 0xaf, 0x53, 0x8c, 0x88, 0x0b, 0x33, 0xa9, 0xf7, - 0x4c, 0xd1, 0x79, 0xe5, 0x0b, 0x6a, 0x83, 0x8f, 0xbd, 0x36, 0x3e, 0x3c, 0x5a, 0xe3, 0x18, 0xde, - 0x5b, 0x30, 0x93, 0xfa, 0xc7, 0x04, 0x0a, 0x78, 0xf2, 0x7f, 0x5f, 0x70, 0xd0, 0x82, 0xbe, 0x05, - 0x33, 0xa9, 0xb7, 0x42, 0x15, 0xc3, 0xcb, 0x5f, 0x14, 0x3d, 0x68, 0xf8, 0xcf, 0x40, 0x35, 0xf1, - 0xa8, 0xa7, 0x42, 0xa0, 0x64, 0x0f, 0x7f, 0x1e, 0x8c, 0x79, 0x45, 0x7c, 0x7b, 0x13, 0xad, 0xa8, - 0x44, 0x75, 0x60, 0xe0, 0x71, 0x24, 0xb5, 0xff, 0xe0, 0xdd, 0x10, 0x49, 0x1d, 0x78, 0x23, 0x70, - 0x74, 0x49, 0x15, 0xc6, 0x1f, 0x2a, 0xa9, 0x63, 0x83, 0xf8, 0x9c, 0x46, 0x53, 0xad, 0x24, 0x0f, - 0x2a, 0xa2, 0x35, 0x15, 0xeb, 0xab, 0x9f, 0x8e, 0x6c, 0x3c, 0x37, 0x56, 0x9f, 0x98, 0x8a, 0x77, - 0x60, 0x3a, 0xf9, 0x6c, 0xa0, 0x82, 0x8a, 0xd2, 0x97, 0x16, 0x1b, 0xe7, 0x47, 0x6a, 0x1b, 0x03, - 0xdb, 0xa3, 0xe1, 0x8d, 0x54, 0xc8, 0x4a, 0xa1, 0x9c, 0x94, 0x51, 0x38, 0x85, 0x72, 0x52, 0xc7, - 0xc2, 0xf4, 0x13, 0x08, 0x43, 0x45, 0x0c, 0x0b, 0x29, 0x58, 0x51, 0x12, 0xde, 0x6a, 0x3c, 0x35, - 0x42, 0xcb, 0x18, 0xcc, 0xeb, 0x50, 0x16, 0xfe, 0x71, 0x15, 0x7a, 0x72, 0x88, 0x9c, 0x8a, 0xff, - 0x23, 0xe9, 0x20, 0x4e, 0xf9, 0x34, 0x94, 0xe2, 0xff, 0x37, 0x85, 0x9e, 0x50, 0xca, 0xe7, 0x38, - 0x43, 0x6e, 0x01, 0xf4, 0xff, 0x99, 0x14, 0xfa, 0x90, 0x5a, 0x5f, 0x8d, 0x33, 0xe8, 0x2e, 0x54, - 0x13, 0xff, 0x88, 0x49, 0xa5, 0x4b, 0x24, 0xff, 0x26, 0xaa, 0x71, 0x6e, 0x94, 0xa6, 0x31, 0xa1, - 0xb7, 0xa1, 0x2c, 0xfc, 0x27, 0x23, 0x05, 0xa1, 0x07, 0xff, 0xed, 0x52, 0x63, 0xe5, 0xe0, 0x86, - 0x83, 0x8b, 0xc9, 0x9e, 0x49, 0x19, 0xb6, 0x98, 0xe2, 0xc3, 0x48, 0x63, 0x10, 0x89, 0x0d, 0x3c, - 0x9c, 0x48, 0x89, 0xa1, 0xcf, 0x8d, 0xd2, 0x34, 0x9e, 0xc0, 0x2e, 0x54, 0x13, 0x8f, 0x4b, 0x21, - 0x25, 0x2f, 0x0f, 0x3c, 0xaa, 0xa5, 0x80, 0x24, 0x7d, 0xab, 0x4a, 0x3f, 0x81, 0x7e, 0x5c, 0x78, - 0xc7, 0x2a, 0xf1, 0x68, 0x18, 0x7a, 0x76, 0xe8, 0x38, 0xb2, 0xc7, 0xd3, 0x1a, 0x6b, 0xe3, 0x74, - 0x89, 0x51, 0xe0, 0x32, 0xc2, 0x48, 0xaa, 0x96, 0x91, 0x71, 0x56, 0x6a, 0x0b, 0xf2, 0xec, 0x95, - 0x28, 0xa4, 0x2b, 0x9e, 0x8a, 0x13, 0xde, 0x44, 0x6a, 0x3c, 0x26, 0x6d, 0x93, 0x7c, 0x08, 0x88, - 0x0d, 0xca, 0x72, 0x69, 0x14, 0x83, 0x26, 0x9e, 0xba, 0x19, 0x63, 0x50, 0xf6, 0x40, 0x93, 0x62, - 0xd0, 0xc4, 0xeb, 0x4d, 0xa3, 0x0e, 0x6a, 0x40, 0x9e, 0x3d, 0xe8, 0xa1, 0x18, 0x34, 0xf1, 0x5a, - 0x4d, 0x63, 0x78, 0x1b, 0x76, 0xcc, 0x7a, 0x02, 0x6d, 0x42, 0x8e, 0x66, 0x93, 0xa3, 0xb3, 0xc3, - 0x1e, 0x89, 0x18, 0x36, 0x62, 0xe2, 0x1d, 0x09, 0xfd, 0x04, 0xba, 0x05, 0x39, 0x7a, 0xc1, 0x4e, - 0x31, 0xa2, 0xf8, 0x7a, 0x42, 0x63, 0x68, 0x93, 0x08, 0x45, 0x0b, 0x2a, 0xe2, 0x1d, 0x67, 0x85, - 0xa9, 0x90, 0xdc, 0x02, 0x6f, 0x8c, 0xd2, 0x32, 0x82, 0xc2, 0x64, 0xb3, 0x9f, 0x59, 0xaf, 0x96, - 0xcd, 0x81, 0xac, 0x7d, 0xb5, 0x6c, 0x0e, 0x26, 0xea, 0xeb, 0x27, 0xd0, 0x97, 0x34, 0xa8, 0xab, - 0x2e, 0xde, 0x22, 0xa5, 0x8f, 0x3d, 0xec, 0xf6, 0x70, 0xe3, 0xc2, 0x98, 0xbd, 0x62, 0x5c, 0xde, - 0xa1, 0x47, 0x48, 0x03, 0x57, 0x6d, 0x95, 0x06, 0x5d, 0x71, 0x7d, 0xb4, 0xf1, 0x91, 0xd1, 0x3b, - 0x88, 0x26, 0x43, 0xc8, 0xe0, 0x55, 0xa8, 0xf3, 0xc1, 0x1c, 0xe5, 0xc6, 0xca, 0xc1, 0x0d, 0x63, - 0x18, 0x9b, 0x90, 0xa3, 0xf7, 0x33, 0x15, 0xcc, 0x28, 0x5e, 0xf7, 0x54, 0xb0, 0x77, 0xe2, 0x7a, - 0x27, 0x73, 0x5c, 0xc4, 0xcb, 0x9a, 0x0a, 0x6e, 0x94, 0xdc, 0xf3, 0x54, 0x38, 0x2e, 0xb2, 0x9b, - 0x9f, 0x74, 0x5b, 0x0d, 0xfd, 0xcb, 0x92, 0x0a, 0x77, 0x60, 0xe0, 0xbe, 0x66, 0xe3, 0xc9, 0x03, - 0xdb, 0xc5, 0x00, 0x1c, 0xea, 0xf9, 0xa5, 0xaf, 0x10, 0xae, 0xaa, 0xb7, 0x78, 0xb2, 0x1b, 0x79, - 0x8d, 0xc7, 0x87, 0xdf, 0x0d, 0xe4, 0x07, 0x40, 0xd4, 0x74, 0x0b, 0x17, 0xf7, 0x54, 0xee, 0xc1, - 0xc0, 0xd5, 0xbe, 0x11, 0xf6, 0xd6, 0x83, 0xf7, 0xba, 0x86, 0x4f, 0x62, 0xf0, 0x0a, 0x99, 0xda, - 0x7d, 0x55, 0x5c, 0x18, 0xd3, 0x4f, 0xa0, 0xbb, 0x50, 0x4b, 0xdf, 0x9c, 0x53, 0xc4, 0x6c, 0x14, - 0x37, 0xf9, 0x1a, 0x4f, 0x8f, 0xd8, 0x5a, 0x34, 0xe9, 0x27, 0x07, 0x71, 0x7a, 0xd3, 0x0e, 0x77, - 0xe9, 0xf5, 0xaa, 0x51, 0x66, 0x2d, 0xde, 0xe4, 0x1a, 0x65, 0xd6, 0x89, 0x7b, 0x5b, 0xdc, 0xfe, - 0xd2, 0x2b, 0x05, 0x2a, 0xfb, 0x2b, 0xde, 0x18, 0x52, 0x58, 0xb5, 0xe4, 0xb5, 0x1a, 0xb6, 0xdf, - 0x49, 0x5e, 0x55, 0x40, 0xe7, 0x46, 0xba, 0xcf, 0x30, 0x6c, 0xbf, 0x23, 0xbf, 0xfb, 0xc0, 0x42, - 0x11, 0xa9, 0x9b, 0x18, 0x8a, 0xbd, 0xbb, 0xfc, 0x26, 0x88, 0x22, 0x14, 0xa1, 0xb8, 0xdc, 0x41, - 0xc5, 0xb8, 0x96, 0x4e, 0xeb, 0x1e, 0x1e, 0xdb, 0x4b, 0xe7, 0xf3, 0x1e, 0x1c, 0x7e, 0xab, 0xa5, - 0xf3, 0xa5, 0x15, 0x00, 0x14, 0x69, 0xd5, 0x23, 0x00, 0x48, 0xa7, 0x1a, 0x2b, 0x00, 0x28, 0x32, - 0x92, 0x47, 0x70, 0xbf, 0x13, 0x29, 0xbe, 0x0a, 0xc3, 0x2b, 0x4b, 0x03, 0x56, 0x18, 0x5e, 0x69, - 0x76, 0x32, 0xdb, 0x62, 0xf5, 0x33, 0x75, 0x15, 0x3a, 0x75, 0x20, 0x95, 0xf7, 0x20, 0xf4, 0x6f, - 0x41, 0x31, 0x4a, 0xb5, 0x45, 0x8f, 0x2b, 0xbd, 0xdc, 0x31, 0x06, 0x7c, 0x0b, 0x66, 0x52, 0x01, - 0x6f, 0x05, 0x8b, 0xca, 0x53, 0x6d, 0x0f, 0x5e, 0x4f, 0xe8, 0x27, 0x65, 0x2a, 0x88, 0x30, 0x90, - 0xec, 0xaa, 0x30, 0x2c, 0x83, 0xd9, 0x9d, 0x22, 0x00, 0x82, 0xd8, 0x50, 0x00, 0x42, 0x3e, 0xe6, - 0x50, 0x00, 0x62, 0x26, 0x22, 0xe3, 0xc8, 0x74, 0x3c, 0x5f, 0xc1, 0x91, 0x8a, 0x94, 0xa8, 0x83, - 0x48, 0xb4, 0x0d, 0x65, 0x21, 0xaf, 0x0b, 0x0d, 0x43, 0x4d, 0x4c, 0x48, 0x53, 0x38, 0x26, 0x92, - 0x14, 0xb1, 0xd8, 0xbe, 0xf3, 0xbc, 0x12, 0xb5, 0x7d, 0x4f, 0x66, 0xa3, 0xa8, 0xed, 0x7b, 0x2a, - 0x41, 0x85, 0x4d, 0x42, 0x48, 0x1e, 0x51, 0x6d, 0x96, 0x07, 0xb2, 0x4e, 0x54, 0x3e, 0xf3, 0x60, - 0x1e, 0x0a, 0xf5, 0x85, 0xe6, 0x24, 0x79, 0x1d, 0x0a, 0xef, 0x51, 0x9d, 0x01, 0x32, 0x42, 0xe8, - 0x6f, 0x20, 0x65, 0x43, 0x11, 0xfa, 0x53, 0xa5, 0x76, 0x1c, 0x04, 0xe2, 0x4d, 0xa8, 0x88, 0xb9, - 0x18, 0x0a, 0xaf, 0x4e, 0x92, 0xae, 0x31, 0x82, 0x34, 0xa7, 0x72, 0x20, 0x14, 0xd2, 0x2c, 0xcf, - 0x94, 0x18, 0xc1, 0x01, 0x1a, 0x3c, 0xed, 0x57, 0xb8, 0x02, 0xca, 0xcc, 0x03, 0x85, 0x2b, 0xa0, - 0x4e, 0x23, 0xe0, 0x01, 0x06, 0xe9, 0xe1, 0xba, 0x22, 0xc0, 0x30, 0x2c, 0x2d, 0x40, 0x11, 0x60, - 0x18, 0x7a, 0x76, 0xcf, 0xf4, 0x40, 0xfa, 0x34, 0x53, 0xa1, 0x07, 0x14, 0x87, 0x9e, 0x07, 0x11, - 0xb7, 0xc7, 0x88, 0xbb, 0xc1, 0x9e, 0x44, 0xe7, 0x9b, 0x98, 0x34, 0xe3, 0xb1, 0xff, 0xa4, 0x3f, - 0xd8, 0x2e, 0x82, 0xb1, 0x3a, 0x6a, 0xf3, 0x78, 0x5e, 0x34, 0x45, 0x29, 0xf9, 0x4f, 0x47, 0xd8, - 0x1b, 0xf8, 0x66, 0x68, 0xa6, 0x0f, 0x6e, 0xd8, 0x70, 0xaa, 0xd6, 0x8a, 0x83, 0x9b, 0x83, 0x3a, - 0x45, 0x98, 0xac, 0xf5, 0xa0, 0xb2, 0xe9, 0x7b, 0xf7, 0xa3, 0xff, 0x97, 0xf6, 0x01, 0xed, 0x7d, - 0x2e, 0xb6, 0x60, 0x9a, 0x35, 0x68, 0xe2, 0xfb, 0x61, 0xd3, 0xdb, 0x7e, 0x1b, 0x9d, 0x5a, 0x6d, - 0x7b, 0x5e, 0xdb, 0xc1, 0xac, 0xfb, 0x76, 0x6f, 0x67, 0xf5, 0x35, 0xdb, 0xc1, 0xb7, 0xf8, 0x3d, - 0xef, 0x7f, 0x2a, 0x0c, 0x79, 0x82, 0x2e, 0xce, 0xfc, 0x33, 0x2a, 0x9d, 0xe8, 0xe7, 0xad, 0xed, - 0xb7, 0x2f, 0xef, 0xc0, 0xb4, 0x1d, 0x37, 0x6a, 0xfb, 0xdd, 0xd6, 0xe5, 0x32, 0x6b, 0xba, 0x49, - 0x7a, 0x6f, 0x6a, 0xff, 0xef, 0xd9, 0xb6, 0x1d, 0xee, 0xf6, 0xb6, 0x09, 0x57, 0x3c, 0xc3, 0x9a, - 0x3d, 0x6d, 0x7b, 0xd1, 0x2f, 0x0a, 0xe2, 0x99, 0xb6, 0xf7, 0xb4, 0xd9, 0xb5, 0x79, 0x5d, 0x77, - 0xfb, 0xd7, 0x34, 0xed, 0xb7, 0x32, 0xd3, 0x1b, 0xb7, 0x38, 0xcc, 0xd5, 0xab, 0x7e, 0xb7, 0xb5, - 0x9d, 0xa7, 0x4d, 0x9f, 0xfb, 0xdf, 0x00, 0x00, 0x00, 0xff, 0xff, 0x7f, 0xdc, 0xc1, 0xee, 0xb2, - 0x81, 0x00, 0x00, + // 6688 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x7d, 0x4b, 0x8c, 0x1c, 0xc7, + 0x79, 0x30, 0x7b, 0x66, 0x67, 0x67, 0xe6, 0x9b, 0x99, 0xdd, 0xd9, 0xda, 0xe5, 0xee, 0x68, 0x48, + 0x8a, 0xcb, 0x96, 0x68, 0x51, 0xa4, 0xb5, 0xb2, 0x56, 0xa2, 0x24, 0xd3, 0xb6, 0x2c, 0x92, 0x6b, + 0x91, 0x0b, 0xf3, 0xb1, 0xee, 0xa5, 0x24, 0xf8, 0xf7, 0x2f, 0x0c, 0x7a, 0xa7, 0x6b, 0x67, 0x5b, + 0xec, 0xe9, 0x1e, 0x76, 0xf7, 0x70, 0xb9, 0xca, 0x25, 0x81, 0x63, 0xc7, 0x86, 0x1f, 0xca, 0xdb, + 0x08, 0x82, 0x38, 0x81, 0xe1, 0x04, 0x79, 0xc3, 0x4e, 0x0e, 0x01, 0x8c, 0x04, 0x39, 0x04, 0xc8, + 0xc1, 0x48, 0x90, 0xf8, 0x60, 0x24, 0x01, 0x82, 0x9c, 0x8c, 0x04, 0x01, 0x12, 0x24, 0x87, 0x00, + 0x39, 0xe4, 0x89, 0x7a, 0x74, 0x77, 0x75, 0x4f, 0xd5, 0x3c, 0x38, 0xa2, 0xb8, 0x34, 0xb2, 0xa7, + 0xa9, 0xea, 0xaa, 0xfa, 0xbe, 0xfa, 0xea, 0x7b, 0xd5, 0x57, 0x5f, 0xd5, 0x42, 0xb5, 0x6b, 0x3b, + 0x77, 0xfb, 0xc1, 0x5a, 0xcf, 0xf7, 0x42, 0x0f, 0x2d, 0x8a, 0xa5, 0x35, 0x56, 0x68, 0x56, 0xdb, + 0x5e, 0xb7, 0xeb, 0xb9, 0xac, 0xb2, 0x59, 0x0d, 0xda, 0x7b, 0xb8, 0x6b, 0xf2, 0x52, 0x65, 0x17, + 0x5b, 0xd8, 0xe7, 0x85, 0xd5, 0x8e, 0xe7, 0x75, 0x1c, 0xfc, 0x2c, 0x2d, 0xed, 0xf4, 0x77, 0x9f, + 0xb5, 0x70, 0xd0, 0xf6, 0xed, 0x5e, 0xe8, 0xf1, 0x16, 0xfa, 0xd7, 0x35, 0x40, 0x97, 0x7d, 0x6c, + 0x86, 0xf8, 0xa2, 0x63, 0x9b, 0x81, 0x81, 0xef, 0xf4, 0x71, 0x10, 0xa2, 0x0f, 0xc1, 0xcc, 0x8e, + 0x19, 0xe0, 0x86, 0xb6, 0xaa, 0x9d, 0xa9, 0xac, 0x1f, 0x5f, 0x4b, 0x61, 0xc1, 0xa1, 0x5f, 0x0f, + 0x3a, 0x97, 0xcc, 0x00, 0x1b, 0xb4, 0x25, 0x5a, 0x81, 0xa2, 0xb5, 0xd3, 0x72, 0xcd, 0x2e, 0x6e, + 0xe4, 0x56, 0xb5, 0x33, 0x65, 0x63, 0xd6, 0xda, 0xb9, 0x61, 0x76, 0x31, 0x7a, 0x0a, 0xe6, 0xdb, + 0x9e, 0xe3, 0xe0, 0x76, 0x68, 0x7b, 0x2e, 0x6b, 0x90, 0xa7, 0x0d, 0xe6, 0x92, 0x6a, 0xda, 0x70, + 0x09, 0x0a, 0x26, 0xc1, 0xa1, 0x31, 0x43, 0x3f, 0xb3, 0x82, 0x1e, 0x40, 0x7d, 0xc3, 0xf7, 0x7a, + 0x0f, 0x0a, 0xbb, 0x18, 0x68, 0x5e, 0x04, 0xfa, 0x4b, 0x1a, 0x2c, 0x5c, 0x74, 0x42, 0xec, 0x1f, + 0x52, 0xa2, 0xec, 0xc3, 0xd2, 0x06, 0x5d, 0xc9, 0x1d, 0xfc, 0xfe, 0x12, 0xe6, 0x17, 0x35, 0x38, + 0x9a, 0x81, 0x1c, 0xf4, 0x3c, 0x37, 0xc0, 0xe8, 0x79, 0x98, 0x0d, 0x42, 0x33, 0xec, 0x07, 0x1c, + 0xf8, 0x31, 0x29, 0xf0, 0x6d, 0xda, 0xc4, 0xe0, 0x4d, 0x27, 0x84, 0x8e, 0x1e, 0x07, 0x48, 0xc8, + 0xc3, 0x29, 0x22, 0xd4, 0xe8, 0x5f, 0xd0, 0x00, 0x5d, 0xb3, 0x83, 0x90, 0x62, 0x86, 0x1f, 0xe6, + 0xba, 0xe9, 0xbf, 0xa6, 0xc1, 0x62, 0x0a, 0x95, 0x07, 0x42, 0xa6, 0xb1, 0xd9, 0xa8, 0x01, 0x45, + 0x93, 0x61, 0xd2, 0x98, 0x59, 0xcd, 0x9f, 0x29, 0x1b, 0x51, 0x51, 0xff, 0x97, 0x1c, 0xac, 0x30, + 0x05, 0x70, 0x39, 0xee, 0xf2, 0x30, 0x19, 0x7e, 0x19, 0x66, 0x99, 0x3e, 0xa3, 0xeb, 0x5b, 0x35, + 0x78, 0x09, 0x9d, 0x00, 0x08, 0xf6, 0x4c, 0xdf, 0x0a, 0x5a, 0x6e, 0xbf, 0xdb, 0x28, 0xac, 0x6a, + 0x67, 0x0a, 0x46, 0x99, 0xd5, 0xdc, 0xe8, 0x77, 0x91, 0x01, 0x0b, 0x6d, 0xcf, 0x0d, 0xec, 0x20, + 0xc4, 0x6e, 0xfb, 0xa0, 0xe5, 0xe0, 0xbb, 0xd8, 0x69, 0xcc, 0xae, 0x6a, 0x67, 0xe6, 0xd6, 0x4f, + 0x4b, 0xf1, 0xbe, 0x9c, 0xb4, 0xbe, 0x46, 0x1a, 0x1b, 0xf5, 0x76, 0xa6, 0x06, 0x5d, 0x04, 0xe8, + 0xf9, 0x5e, 0x0f, 0xfb, 0xa1, 0x8d, 0x83, 0x46, 0x71, 0x35, 0x7f, 0xa6, 0xb2, 0x7e, 0x4a, 0x3a, + 0xd8, 0x27, 0xf1, 0xc1, 0x1b, 0xa6, 0xd3, 0xc7, 0x5b, 0xa6, 0xed, 0x1b, 0x42, 0xa7, 0x0b, 0xe8, + 0xbb, 0xaf, 0xcc, 0x97, 0xb4, 0xba, 0xd6, 0xf8, 0x9f, 0xe8, 0x4f, 0xd3, 0x7f, 0x99, 0xc8, 0x90, + 0xef, 0xf5, 0x0e, 0x05, 0xbd, 0x23, 0x0c, 0x73, 0x22, 0x86, 0x3f, 0x91, 0x83, 0x65, 0xaa, 0xfe, + 0x0e, 0x07, 0x4b, 0xe8, 0x50, 0x4d, 0x6a, 0x36, 0x37, 0x28, 0x63, 0xe4, 0x8d, 0x54, 0x5d, 0x66, + 0xad, 0x0a, 0xef, 0xd5, 0x5a, 0xfd, 0x86, 0x06, 0x4b, 0x57, 0xcd, 0xe0, 0x70, 0xd0, 0xe1, 0x04, + 0x40, 0x68, 0x77, 0x71, 0x2b, 0x08, 0xcd, 0x6e, 0x8f, 0x52, 0x61, 0xc6, 0x28, 0x93, 0x9a, 0x6d, + 0x52, 0xa1, 0x7f, 0x1a, 0xaa, 0x97, 0x3c, 0xcf, 0x99, 0x4e, 0xd5, 0x2c, 0x41, 0xe1, 0x2e, 0xa1, + 0x0e, 0xc5, 0xb1, 0x64, 0xb0, 0x82, 0xfe, 0x19, 0x98, 0xdb, 0x0e, 0x7d, 0xdb, 0xed, 0xbc, 0x87, + 0x83, 0x97, 0xa3, 0xc1, 0xff, 0x5e, 0x83, 0xc7, 0x22, 0x9b, 0xf2, 0xe8, 0x30, 0x5c, 0x7a, 0x31, + 0x0a, 0x99, 0xc5, 0x88, 0x98, 0x29, 0x2f, 0x32, 0xd3, 0x9f, 0x14, 0xa0, 0x29, 0x9b, 0xe8, 0x34, + 0x24, 0xfd, 0x58, 0xac, 0x2e, 0x73, 0xb4, 0x53, 0x46, 0xd9, 0x71, 0xd7, 0x30, 0x81, 0xb6, 0x4d, + 0x2b, 0x62, 0xad, 0x9a, 0x9d, 0x69, 0x5e, 0x32, 0xd3, 0x75, 0x38, 0x7a, 0xd7, 0xf6, 0xc3, 0xbe, + 0xe9, 0xb4, 0xda, 0x7b, 0xa6, 0xeb, 0x62, 0x87, 0xd2, 0x2e, 0xb2, 0x24, 0x8b, 0xfc, 0xe3, 0x65, + 0xf6, 0x8d, 0x10, 0x30, 0x40, 0x2f, 0xc0, 0x72, 0x6f, 0xef, 0x20, 0xb0, 0xdb, 0x03, 0x9d, 0x0a, + 0xb4, 0xd3, 0x52, 0xf4, 0x35, 0xd5, 0xeb, 0x1c, 0x2c, 0xb4, 0xa9, 0x29, 0xb2, 0x5a, 0x84, 0x92, + 0x8c, 0xb4, 0xb3, 0x94, 0xb4, 0x75, 0xfe, 0xe1, 0x56, 0x54, 0x4f, 0xd0, 0x8a, 0x1a, 0xf7, 0xc3, + 0xb6, 0xd0, 0xa1, 0x48, 0x3b, 0x2c, 0xf2, 0x8f, 0xaf, 0x87, 0xed, 0xa4, 0x4f, 0xda, 0x88, 0x94, + 0xb2, 0x46, 0x44, 0xb0, 0x92, 0xe5, 0x94, 0x95, 0x44, 0x9b, 0x30, 0x1f, 0x84, 0xa6, 0x1f, 0xb6, + 0x7a, 0x5e, 0x60, 0x13, 0xba, 0x04, 0x0d, 0xa0, 0x3a, 0x66, 0x55, 0xa5, 0x63, 0x36, 0xcc, 0xd0, + 0xa4, 0x2a, 0x66, 0x8e, 0x76, 0xdc, 0x8a, 0xfa, 0xc9, 0x2d, 0x55, 0x65, 0x3a, 0x4b, 0x25, 0xe1, + 0xec, 0xaa, 0x94, 0xb3, 0xd3, 0x6a, 0xb2, 0x76, 0x1f, 0x6a, 0x52, 0xff, 0x6f, 0x0d, 0x8e, 0x5e, + 0xf3, 0x4c, 0xeb, 0x70, 0x88, 0xea, 0x69, 0x98, 0xf3, 0x71, 0xcf, 0xb1, 0xdb, 0x26, 0x59, 0xd2, + 0x1d, 0xec, 0x53, 0x61, 0x2d, 0x18, 0x35, 0x5e, 0x7b, 0x83, 0x56, 0x92, 0xf1, 0x7c, 0x1c, 0x78, + 0x7d, 0xbf, 0x8d, 0x5b, 0x1d, 0xdf, 0xeb, 0xf7, 0x22, 0x46, 0x9c, 0x8b, 0xaa, 0xaf, 0xd0, 0x5a, + 0xc2, 0x02, 0x3e, 0xde, 0xf5, 0x71, 0xb0, 0x47, 0x19, 0xaf, 0x64, 0x44, 0xc5, 0x0b, 0xc5, 0xef, + 0xbe, 0x32, 0x53, 0x2f, 0x34, 0xf2, 0xfa, 0xd7, 0x34, 0x68, 0x18, 0xd8, 0xc1, 0x66, 0x70, 0x38, + 0xd4, 0x15, 0xc3, 0x6c, 0xb6, 0x91, 0xd7, 0xff, 0x59, 0x83, 0xa5, 0x2b, 0x38, 0x24, 0x2a, 0xc2, + 0x0e, 0x42, 0xbb, 0xfd, 0x50, 0x77, 0x2e, 0x4f, 0xc1, 0x7c, 0xcf, 0xf4, 0x43, 0x3b, 0x6e, 0x17, + 0x29, 0x8c, 0xb9, 0xb8, 0x9a, 0x49, 0xfd, 0xb3, 0xb0, 0xd8, 0xe9, 0x9b, 0xbe, 0xe9, 0x86, 0x18, + 0x0b, 0x62, 0xcc, 0x54, 0x2a, 0x8a, 0x3f, 0xc5, 0x52, 0xcc, 0xe6, 0x0b, 0x8d, 0xbc, 0xfe, 0x39, + 0x0d, 0x8e, 0x66, 0xe6, 0x3b, 0x8d, 0x2e, 0x7d, 0x09, 0x0a, 0xe4, 0x57, 0xd0, 0xc8, 0x8d, 0x2b, + 0x17, 0xac, 0x3d, 0xd9, 0x2e, 0x3e, 0x7e, 0x05, 0x87, 0x82, 0x96, 0x3d, 0x0c, 0x2b, 0x90, 0xd0, + 0xe9, 0x5d, 0x0d, 0x4e, 0x2a, 0xf1, 0x7b, 0x28, 0x14, 0xfb, 0x37, 0x0d, 0x96, 0xb7, 0xf7, 0xbc, + 0xfd, 0x04, 0xa5, 0x07, 0x41, 0xa9, 0xb4, 0x8d, 0xce, 0x67, 0x6c, 0x34, 0x7a, 0x0e, 0x66, 0xc2, + 0x83, 0x1e, 0xa6, 0x1a, 0x63, 0x6e, 0xfd, 0xc4, 0x9a, 0x24, 0xd4, 0xb2, 0x46, 0x90, 0xbc, 0x75, + 0xd0, 0xc3, 0x06, 0x6d, 0x8a, 0x9e, 0x86, 0x7a, 0x86, 0xf6, 0x91, 0x22, 0x99, 0x4f, 0x13, 0x3f, + 0x76, 0x27, 0x67, 0x44, 0x0f, 0xe0, 0x5f, 0x73, 0xb0, 0x32, 0x30, 0xed, 0x69, 0x16, 0x40, 0x86, + 0x4f, 0x4e, 0x8a, 0x0f, 0xd1, 0x94, 0x42, 0x53, 0xdb, 0x22, 0x7b, 0xeb, 0xfc, 0x99, 0xbc, 0x51, + 0x13, 0x8c, 0xbd, 0x15, 0xa0, 0x67, 0x00, 0x0d, 0xd8, 0x60, 0x26, 0xb9, 0x33, 0xc6, 0x42, 0xd6, + 0x08, 0x53, 0x43, 0x2f, 0xb5, 0xc2, 0x8c, 0x2c, 0x33, 0xc6, 0x92, 0xc4, 0x0c, 0x07, 0xe8, 0x39, + 0x58, 0xb2, 0xdd, 0xeb, 0xb8, 0xeb, 0xf9, 0x07, 0xad, 0x1e, 0xf6, 0xdb, 0xd8, 0x0d, 0xcd, 0x0e, + 0x0e, 0x1a, 0xb3, 0x14, 0xa3, 0xc5, 0xe8, 0xdb, 0x56, 0xf2, 0x09, 0xbd, 0x08, 0x2b, 0x77, 0xfa, + 0xd8, 0x3f, 0x68, 0x05, 0xd8, 0xbf, 0x6b, 0xb7, 0x71, 0xcb, 0xbc, 0x6b, 0xda, 0x8e, 0xb9, 0xe3, + 0x60, 0xba, 0x33, 0x2b, 0x19, 0x47, 0xe9, 0xe7, 0x6d, 0xf6, 0xf5, 0x62, 0xf4, 0x51, 0xff, 0x7d, + 0x0d, 0x96, 0xd9, 0xfe, 0x76, 0x2b, 0x52, 0x3b, 0x0f, 0xd9, 0x5e, 0xa5, 0xb5, 0x22, 0x0f, 0x63, + 0xd4, 0x52, 0x4a, 0x51, 0xff, 0xb6, 0x06, 0x4b, 0x64, 0x8f, 0xf8, 0x28, 0xe1, 0xfc, 0x2d, 0x0d, + 0x16, 0xaf, 0x9a, 0xc1, 0xa3, 0x84, 0xf2, 0xd7, 0x73, 0xcc, 0x97, 0x89, 0x71, 0x7e, 0x34, 0x2c, + 0xe6, 0xa0, 0xd3, 0x53, 0x18, 0xd3, 0xe9, 0x99, 0x1d, 0xe5, 0xf4, 0x14, 0x53, 0x4e, 0x8f, 0xfe, + 0x07, 0x89, 0xaf, 0xf3, 0x68, 0xd1, 0x48, 0xff, 0x8e, 0x06, 0x27, 0xae, 0xe0, 0x30, 0xc6, 0xfa, + 0x70, 0x38, 0x45, 0x63, 0xf2, 0xe5, 0x57, 0x99, 0x43, 0x21, 0x45, 0xfe, 0xa1, 0xd8, 0xeb, 0x2f, + 0xe5, 0xe0, 0x28, 0x31, 0x5c, 0x87, 0x83, 0x09, 0xc6, 0xd9, 0x9f, 0x4b, 0x18, 0xa5, 0x20, 0x15, + 0xa6, 0xc8, 0x0b, 0x98, 0x1d, 0xdb, 0x0b, 0xd0, 0x7f, 0x2f, 0xc7, 0xbc, 0x17, 0x91, 0x1a, 0xd3, + 0x2c, 0x8b, 0x04, 0xd7, 0x9c, 0x14, 0x57, 0x1d, 0xaa, 0x71, 0xcd, 0xe6, 0x46, 0x64, 0xc1, 0x53, + 0x75, 0x87, 0xd5, 0x80, 0xeb, 0x5f, 0xd6, 0x60, 0x39, 0x8a, 0x7e, 0x6c, 0xe3, 0x4e, 0x17, 0xbb, + 0xe1, 0xfd, 0xf3, 0x50, 0x96, 0x03, 0x72, 0x12, 0x0e, 0x38, 0x0e, 0xe5, 0x80, 0xc1, 0x89, 0x03, + 0x1b, 0x49, 0x85, 0xfe, 0xc7, 0x1a, 0xac, 0x0c, 0xa0, 0x33, 0xcd, 0x22, 0x36, 0xa0, 0x68, 0xbb, + 0x16, 0xbe, 0x17, 0x63, 0x13, 0x15, 0xc9, 0x97, 0x9d, 0xbe, 0xed, 0x58, 0x31, 0x1a, 0x51, 0x11, + 0x9d, 0x82, 0x2a, 0x76, 0x89, 0x9b, 0xd2, 0xa2, 0x6d, 0x29, 0x23, 0x97, 0x8c, 0x0a, 0xab, 0xdb, + 0x24, 0x55, 0xa4, 0xf3, 0xae, 0x8d, 0x69, 0xe7, 0x02, 0xeb, 0xcc, 0x8b, 0xfa, 0x57, 0x34, 0x58, + 0x24, 0x5c, 0xc8, 0xb1, 0x0f, 0x1e, 0x2c, 0x35, 0x57, 0xa1, 0x22, 0xb0, 0x19, 0x9f, 0x88, 0x58, + 0xa5, 0xdf, 0x86, 0xa5, 0x34, 0x3a, 0xd3, 0x50, 0xf3, 0x71, 0x80, 0x78, 0xad, 0x98, 0x34, 0xe4, + 0x0d, 0xa1, 0x46, 0xff, 0xb9, 0x5c, 0x74, 0x6e, 0x49, 0xc9, 0xf4, 0x90, 0xc3, 0xb2, 0x74, 0x49, + 0x44, 0x7d, 0x5e, 0xa6, 0x35, 0xf4, 0xf3, 0x06, 0x54, 0xf1, 0xbd, 0xd0, 0x37, 0x5b, 0x3d, 0xd3, + 0x37, 0xbb, 0x13, 0xc4, 0xa6, 0x2b, 0xb4, 0xdb, 0x16, 0xed, 0x45, 0x80, 0x50, 0x16, 0x61, 0x40, + 0x66, 0x19, 0x10, 0x5a, 0x93, 0x6c, 0xf5, 0x2a, 0x8d, 0xbc, 0xfe, 0x3d, 0x2d, 0x39, 0x1a, 0x3c, + 0xec, 0x94, 0x49, 0xcf, 0xa9, 0x20, 0x9d, 0x53, 0xb5, 0x91, 0xd7, 0xbf, 0x9f, 0x83, 0x3a, 0x9d, + 0xcb, 0x06, 0x3f, 0xbd, 0xb6, 0x3d, 0x37, 0xd3, 0x59, 0xcb, 0x74, 0x1e, 0x22, 0x8d, 0x1f, 0x86, + 0x59, 0xbe, 0x12, 0xf9, 0x71, 0x57, 0x82, 0x77, 0x18, 0x35, 0x9f, 0x53, 0x50, 0xa5, 0x40, 0xb0, + 0xd5, 0xf2, 0xbd, 0xfd, 0x80, 0xcb, 0x6b, 0x85, 0xd7, 0x19, 0xde, 0x3e, 0x1d, 0x21, 0xf4, 0x42, + 0xd3, 0x61, 0x0d, 0x66, 0x99, 0x52, 0xa2, 0x35, 0xf4, 0xf3, 0x79, 0x66, 0x9f, 0x31, 0x75, 0xc3, + 0xe6, 0xd6, 0x4f, 0x4a, 0x51, 0xa3, 0xa4, 0x20, 0xe2, 0x82, 0x99, 0x75, 0xc6, 0xe8, 0x3c, 0xac, + 0x30, 0x5a, 0xd0, 0x62, 0x6b, 0xd7, 0xb4, 0x9d, 0x96, 0x8f, 0xcd, 0xc0, 0x73, 0x69, 0x8c, 0xb3, + 0x6c, 0x2c, 0xd9, 0x71, 0x9f, 0xd7, 0x4c, 0xdb, 0x31, 0xe8, 0x37, 0xfd, 0x1b, 0xc2, 0x61, 0x2e, + 0xe7, 0x95, 0x69, 0x44, 0xf6, 0x16, 0x20, 0x86, 0x85, 0x95, 0x2c, 0x53, 0xe4, 0x69, 0x9c, 0x96, + 0x9a, 0xd5, 0xec, 0xa2, 0x1a, 0x0b, 0x76, 0xa6, 0x26, 0xd0, 0xff, 0x46, 0x83, 0xe3, 0x57, 0x70, + 0x48, 0x9b, 0x5e, 0x22, 0x6a, 0x73, 0xcb, 0xf7, 0x3a, 0x3e, 0x0e, 0x82, 0x1f, 0x02, 0xc6, 0xfe, + 0x79, 0xe6, 0xa3, 0xca, 0xe6, 0x36, 0xcd, 0x42, 0x64, 0xf9, 0x30, 0x37, 0x8a, 0x0f, 0xf3, 0x19, + 0x3e, 0xa4, 0x5a, 0x24, 0x42, 0x8c, 0x71, 0xda, 0xa3, 0x4f, 0xec, 0x6f, 0xb2, 0x60, 0xa1, 0x38, + 0xa7, 0x69, 0x88, 0x1c, 0x8b, 0x6a, 0x6e, 0x22, 0x51, 0x3d, 0x09, 0x15, 0x51, 0x3c, 0xd9, 0x8c, + 0x61, 0x37, 0x11, 0xca, 0x3f, 0xd7, 0x58, 0xc2, 0xcb, 0x0f, 0x83, 0xf2, 0xae, 0x35, 0xf2, 0xfa, + 0x6f, 0xe7, 0xa0, 0xb6, 0xe9, 0x06, 0xd8, 0x0f, 0x0f, 0xff, 0xbe, 0x0b, 0x7d, 0x1c, 0x2a, 0x74, + 0x86, 0x41, 0xcb, 0x32, 0x43, 0x93, 0x9b, 0xea, 0xc7, 0xa5, 0x47, 0x6a, 0xaf, 0x91, 0x76, 0x1b, + 0x66, 0x68, 0x1a, 0x8c, 0x4c, 0x01, 0xf9, 0x8d, 0x8e, 0x41, 0x79, 0xcf, 0x0c, 0xf6, 0x5a, 0xb7, + 0xf1, 0x01, 0x73, 0x86, 0x6b, 0x46, 0x89, 0x54, 0x7c, 0x12, 0x1f, 0x04, 0xe8, 0x31, 0x28, 0xb9, + 0xfd, 0x2e, 0x13, 0x39, 0xa2, 0xe0, 0x6b, 0x46, 0xd1, 0xed, 0x77, 0x89, 0xc0, 0x31, 0x72, 0x95, + 0x38, 0xb9, 0x5e, 0xef, 0xfd, 0x1f, 0xb9, 0xc6, 0x20, 0xd7, 0x63, 0x8d, 0xbc, 0xfe, 0x67, 0x39, + 0x98, 0xbb, 0xde, 0x27, 0xbb, 0x63, 0x7a, 0x90, 0xda, 0x77, 0xc2, 0xfb, 0x93, 0xe6, 0xb3, 0x90, + 0x67, 0x7e, 0x26, 0xe9, 0xd1, 0x90, 0xce, 0x60, 0x73, 0x23, 0x30, 0x48, 0x23, 0x7a, 0x88, 0xd8, + 0x6f, 0xb7, 0xb9, 0xcb, 0x9e, 0xa7, 0x58, 0x97, 0x49, 0x0d, 0x73, 0xd8, 0x8f, 0x41, 0x19, 0xfb, + 0x7e, 0xec, 0xd0, 0xd3, 0x39, 0x61, 0xdf, 0x67, 0x1f, 0x75, 0xa8, 0x9a, 0xed, 0xdb, 0xae, 0xb7, + 0xef, 0x60, 0xab, 0x83, 0x2d, 0x2a, 0x37, 0x25, 0x23, 0x55, 0xc7, 0x24, 0x8b, 0x70, 0x40, 0xab, + 0xed, 0x86, 0x91, 0x8f, 0xc0, 0x6a, 0x2e, 0xbb, 0x21, 0xf9, 0x6c, 0x61, 0x07, 0x87, 0x98, 0x7e, + 0x2e, 0xb2, 0xcf, 0xac, 0x86, 0x7f, 0xee, 0xf7, 0xe2, 0xde, 0x25, 0xf6, 0x99, 0xd5, 0x90, 0xcf, + 0xc7, 0xa1, 0x9c, 0x1c, 0xb1, 0x94, 0x93, 0x88, 0x38, 0xad, 0xd0, 0x7f, 0xa0, 0x41, 0x6d, 0x83, + 0x0e, 0xf5, 0x08, 0x70, 0x1f, 0x82, 0x19, 0x7c, 0xaf, 0xe7, 0x73, 0xdd, 0x43, 0x7f, 0x0f, 0x65, + 0x28, 0xc6, 0x35, 0xe5, 0x46, 0x5e, 0xff, 0xfc, 0x0c, 0xd4, 0xb6, 0xb1, 0xe9, 0xb7, 0xf7, 0x1e, + 0x89, 0x70, 0x5f, 0x1d, 0xf2, 0x56, 0xe0, 0xf0, 0x79, 0x92, 0x9f, 0xe8, 0x1c, 0x2c, 0xf4, 0x1c, + 0xb3, 0x8d, 0xf7, 0x3c, 0xc7, 0xc2, 0x3e, 0x0b, 0xee, 0x51, 0x4e, 0xa9, 0x1a, 0x75, 0xe1, 0x03, + 0x0d, 0xef, 0xa1, 0x97, 0xa0, 0x64, 0x05, 0x4e, 0x8b, 0x06, 0x39, 0x98, 0x5f, 0x29, 0x9f, 0xdf, + 0x46, 0xe0, 0xd0, 0x18, 0x47, 0xd1, 0x62, 0x3f, 0xd0, 0x13, 0x50, 0xf3, 0xfa, 0x61, 0xaf, 0x1f, + 0xb6, 0x98, 0xc8, 0x36, 0x4a, 0x14, 0xbd, 0x2a, 0xab, 0xa4, 0x12, 0x1d, 0xa0, 0xd7, 0xa0, 0x16, + 0x50, 0x52, 0x46, 0xfb, 0x9b, 0xf2, 0xb8, 0x5e, 0x75, 0x95, 0xf5, 0xe3, 0x1b, 0x9c, 0xa7, 0xa1, + 0x1e, 0xfa, 0xe6, 0x5d, 0xec, 0x08, 0x47, 0x80, 0x40, 0xf9, 0x73, 0x9e, 0xd5, 0x27, 0xa7, 0xf8, + 0x8a, 0x03, 0xc3, 0x8a, 0xea, 0xc0, 0x10, 0xcd, 0x41, 0xce, 0xbd, 0x43, 0x4f, 0xc4, 0xf3, 0x46, + 0xce, 0xbd, 0xc3, 0x18, 0x61, 0xae, 0x91, 0xd7, 0x3f, 0x09, 0x33, 0x57, 0xed, 0x90, 0x52, 0x98, + 0x88, 0xbf, 0x46, 0xb7, 0x99, 0x54, 0xc8, 0x1f, 0x83, 0x92, 0xef, 0xed, 0x33, 0xbd, 0x46, 0x5c, + 0xd8, 0xaa, 0x51, 0xf4, 0xbd, 0x7d, 0xaa, 0xb4, 0x68, 0x86, 0x9a, 0xe7, 0x63, 0xb6, 0x81, 0xc8, + 0x19, 0xbc, 0xa4, 0xff, 0xae, 0x96, 0x70, 0x15, 0xd1, 0x44, 0xc1, 0xfd, 0xa9, 0xa2, 0x8f, 0x43, + 0xd1, 0x67, 0xfd, 0x87, 0xa6, 0x74, 0x88, 0x90, 0xa8, 0x5e, 0x8d, 0x7a, 0x8d, 0x9f, 0xa3, 0xf8, + 0x15, 0x0d, 0xaa, 0xaf, 0x39, 0xfd, 0xe0, 0x41, 0x48, 0x81, 0xec, 0x60, 0x2a, 0x2f, 0x3f, 0x28, + 0xa3, 0xab, 0x31, 0xbf, 0x9a, 0xd7, 0xff, 0x63, 0x06, 0x6a, 0x1c, 0x9f, 0x07, 0x92, 0x2d, 0xb9, + 0x0d, 0x15, 0x02, 0xbb, 0x15, 0xe0, 0x4e, 0x14, 0x3c, 0xab, 0xac, 0xaf, 0x4b, 0x77, 0x26, 0x29, + 0x34, 0x68, 0xfa, 0xcc, 0x36, 0xed, 0xf4, 0x09, 0x37, 0xf4, 0x0f, 0x58, 0xce, 0x29, 0xab, 0x40, + 0x6d, 0x58, 0xd8, 0x25, 0x8d, 0x5b, 0xe2, 0xd0, 0x33, 0x74, 0xe8, 0x97, 0xc6, 0x18, 0x9a, 0x96, + 0xb2, 0xe3, 0xcf, 0xef, 0xa6, 0x6b, 0xd1, 0x5b, 0x6c, 0x49, 0x5b, 0x01, 0x36, 0xb9, 0x7c, 0x70, + 0x63, 0x7b, 0x7e, 0x6c, 0xec, 0x4d, 0x26, 0x40, 0x0c, 0x40, 0xad, 0x2d, 0xd6, 0x35, 0xdf, 0x82, + 0xf9, 0x0c, 0x0a, 0x44, 0x22, 0x6e, 0xe3, 0x03, 0xbe, 0xaf, 0x26, 0x3f, 0xd1, 0x0b, 0x62, 0xf2, + 0x96, 0xca, 0xcc, 0x5f, 0xf3, 0xdc, 0xce, 0x45, 0xdf, 0x37, 0x0f, 0x78, 0x72, 0xd7, 0x85, 0xdc, + 0xcb, 0x5a, 0x73, 0x07, 0x96, 0x64, 0xd3, 0x7c, 0x4f, 0x61, 0xbc, 0x0a, 0x68, 0x70, 0x9e, 0x12, + 0x08, 0xa9, 0x14, 0xb4, 0xbc, 0x30, 0x82, 0xfe, 0x6e, 0x1e, 0xaa, 0x9f, 0xea, 0x63, 0xff, 0xe0, + 0x61, 0xda, 0x84, 0xc8, 0xa6, 0xcd, 0x08, 0x36, 0x6d, 0x40, 0x0d, 0x17, 0x24, 0x6a, 0x58, 0x62, + 0x4c, 0x66, 0xa5, 0xc6, 0x44, 0xa6, 0x67, 0x8b, 0x13, 0xe9, 0xd9, 0x92, 0x52, 0xcf, 0x6e, 0x40, + 0x95, 0x9d, 0xd1, 0x4e, 0x6a, 0x0a, 0x2a, 0xb4, 0x1b, 0xb3, 0x04, 0x4c, 0x1f, 0xd4, 0x1b, 0x79, + 0xfd, 0x77, 0xb4, 0x78, 0x45, 0xa6, 0xd2, 0xa7, 0x29, 0x27, 0x35, 0x37, 0xb1, 0x93, 0x3a, 0xb6, + 0x3e, 0xfd, 0xb6, 0x06, 0xe5, 0x37, 0x70, 0x3b, 0xf4, 0x7c, 0x22, 0xb3, 0x92, 0x6e, 0xda, 0x18, + 0x1b, 0xad, 0x5c, 0x76, 0xa3, 0xf5, 0x3c, 0x94, 0x6c, 0xab, 0x65, 0x12, 0x86, 0xa7, 0x70, 0x87, + 0xf9, 0xa7, 0x45, 0xdb, 0xa2, 0x92, 0x31, 0xfe, 0x31, 0xd9, 0xd7, 0x34, 0xa8, 0x32, 0x9c, 0x03, + 0xd6, 0xf3, 0x23, 0x02, 0x38, 0x4d, 0x26, 0x85, 0xbc, 0x10, 0x4f, 0xf4, 0xea, 0x91, 0x04, 0xec, + 0x45, 0x00, 0x42, 0x64, 0xde, 0x9d, 0x09, 0xf1, 0xaa, 0x14, 0x5b, 0xd6, 0x9d, 0x12, 0xfc, 0xea, + 0x11, 0xa3, 0x4c, 0x7a, 0xd1, 0x21, 0x2e, 0x15, 0xa1, 0x40, 0x7b, 0xeb, 0xff, 0xa9, 0xc1, 0xe2, + 0x65, 0xd3, 0x69, 0x6f, 0xd8, 0x41, 0x68, 0xba, 0xed, 0x29, 0x3c, 0xd2, 0x0b, 0x50, 0xf4, 0x7a, + 0x2d, 0x07, 0xef, 0x86, 0x1c, 0xa5, 0x53, 0x43, 0x66, 0xc4, 0xc8, 0x60, 0xcc, 0x7a, 0xbd, 0x6b, + 0x78, 0x37, 0x44, 0x1f, 0x85, 0x92, 0xd7, 0x6b, 0xf9, 0x76, 0x67, 0x2f, 0xe4, 0xd4, 0x1f, 0xa3, + 0x73, 0xd1, 0xeb, 0x19, 0xa4, 0x87, 0x10, 0x6b, 0x9c, 0x99, 0x30, 0xd6, 0xa8, 0x7f, 0x6f, 0x60, + 0xfa, 0x53, 0xc8, 0xc0, 0x05, 0x28, 0xd9, 0x6e, 0xd8, 0xb2, 0xec, 0x20, 0x22, 0xc1, 0x09, 0x39, + 0x0f, 0xb9, 0x21, 0x9d, 0x01, 0x5d, 0x53, 0x37, 0x24, 0xb0, 0xd1, 0xab, 0x00, 0xbb, 0x8e, 0x67, + 0xf2, 0xde, 0x8c, 0x06, 0x27, 0xe5, 0xe2, 0x43, 0x9a, 0x45, 0xfd, 0xcb, 0xb4, 0x13, 0x19, 0x21, + 0x59, 0xd2, 0x05, 0x98, 0xa7, 0x86, 0xe0, 0xa2, 0xe3, 0xf0, 0xd5, 0xd4, 0x6d, 0xa8, 0x27, 0x55, + 0xd3, 0x58, 0xfd, 0x55, 0xa8, 0x32, 0x3b, 0x6c, 0x3a, 0x4e, 0x8b, 0xfb, 0x4e, 0x33, 0x06, 0xec, + 0xf2, 0xc1, 0x6f, 0x05, 0xfa, 0x5f, 0x68, 0x70, 0x74, 0x0b, 0xfb, 0x2c, 0x73, 0x32, 0xe4, 0xc7, + 0x14, 0x9b, 0xee, 0xae, 0x97, 0x3e, 0x29, 0xd2, 0x32, 0x27, 0x45, 0xef, 0xcd, 0xe9, 0x48, 0x6a, + 0x37, 0xcb, 0xce, 0x2b, 0xa3, 0xdd, 0x6c, 0x74, 0x2a, 0xcb, 0xa2, 0x28, 0x73, 0x0a, 0x26, 0xe1, + 0xf8, 0x8a, 0xc1, 0x24, 0xfd, 0x67, 0x58, 0x5e, 0x97, 0x74, 0x52, 0xf7, 0x2f, 0x2e, 0xcb, 0xc0, + 0xcd, 0x56, 0xc6, 0x88, 0x7d, 0x00, 0x32, 0x9a, 0x4b, 0xa1, 0x06, 0x7f, 0x41, 0x83, 0x55, 0x35, + 0x56, 0xd3, 0xac, 0xf1, 0xab, 0x50, 0xb0, 0xdd, 0x5d, 0x2f, 0x0a, 0x2a, 0x9f, 0x95, 0x4a, 0xa2, + 0x1c, 0x2e, 0xeb, 0xa8, 0xff, 0x65, 0x0e, 0xea, 0x9f, 0x62, 0x79, 0x42, 0xef, 0xfb, 0xf2, 0x77, + 0x71, 0xb7, 0x15, 0xd8, 0xef, 0xe0, 0x68, 0xf9, 0xbb, 0xb8, 0xbb, 0x6d, 0xbf, 0x83, 0x53, 0x9c, + 0x51, 0x48, 0x73, 0xc6, 0xf0, 0x53, 0x1f, 0xf1, 0x90, 0xa3, 0x98, 0x3e, 0xe4, 0x58, 0x86, 0x59, + 0xd7, 0xb3, 0xf0, 0xe6, 0x06, 0x8f, 0x00, 0xf0, 0x52, 0xc2, 0x6a, 0xe5, 0xc9, 0x58, 0x8d, 0x80, + 0xa2, 0x43, 0x58, 0x2c, 0xf1, 0x99, 0xe0, 0xc8, 0x8a, 0xfa, 0x57, 0x35, 0x68, 0x5e, 0xc1, 0x61, + 0x96, 0xaa, 0x0f, 0x8f, 0xff, 0xde, 0xd5, 0xe0, 0x98, 0x14, 0xa1, 0x69, 0x58, 0xef, 0x23, 0x69, + 0xd6, 0x93, 0x9f, 0x67, 0x0c, 0x80, 0xe4, 0x5c, 0xf7, 0x1c, 0x54, 0x37, 0xfa, 0xdd, 0x6e, 0xec, + 0x59, 0x9e, 0x82, 0xaa, 0xcf, 0x7e, 0xb2, 0x5d, 0x39, 0xf3, 0x0b, 0x2a, 0xbc, 0x8e, 0xec, 0xbd, + 0xf5, 0x73, 0x50, 0xe3, 0x5d, 0x38, 0xd6, 0x4d, 0x28, 0xf9, 0xfc, 0x37, 0x6f, 0x1f, 0x97, 0xf5, + 0xa3, 0xb0, 0x68, 0xe0, 0x0e, 0x61, 0x7a, 0xff, 0x9a, 0xed, 0xde, 0x8e, 0x74, 0xeb, 0x67, 0x35, + 0x58, 0x4a, 0xd7, 0xf3, 0xb1, 0x5e, 0x84, 0xa2, 0x69, 0x59, 0x3e, 0x0e, 0x82, 0xa1, 0xcb, 0x72, + 0x91, 0xb5, 0x31, 0xa2, 0xc6, 0x02, 0xe5, 0x72, 0x63, 0x53, 0x4e, 0x6f, 0xc1, 0xc2, 0x15, 0x1c, + 0x5e, 0xc7, 0xa1, 0x3f, 0x55, 0xee, 0x0d, 0xcd, 0x51, 0xa2, 0x9d, 0x39, 0x5b, 0x44, 0x45, 0xfd, + 0xcb, 0x1a, 0x20, 0x11, 0xc2, 0x34, 0xcb, 0x2c, 0x52, 0x39, 0x97, 0xa6, 0x32, 0x4b, 0xa0, 0xec, + 0xf6, 0x3c, 0x17, 0xbb, 0xa1, 0xe8, 0x06, 0xd6, 0xe2, 0x5a, 0xca, 0x7e, 0x7f, 0xa8, 0x41, 0xed, + 0x72, 0x54, 0x43, 0xf5, 0x4b, 0x22, 0x8c, 0x5a, 0x4a, 0x18, 0x11, 0xcc, 0xf8, 0x9e, 0x13, 0x01, + 0xa2, 0xbf, 0xd1, 0xc7, 0x00, 0xd8, 0x21, 0x5e, 0xdb, 0xb3, 0x18, 0x80, 0xb9, 0xac, 0x03, 0x26, + 0x60, 0x8e, 0x2f, 0x7b, 0x16, 0x36, 0xca, 0x41, 0xf4, 0x93, 0x18, 0x6b, 0x76, 0xd8, 0x4c, 0x18, + 0x6f, 0x7c, 0xa7, 0xa3, 0x4c, 0x3b, 0x11, 0x64, 0xf5, 0xef, 0x6b, 0x64, 0x33, 0xc8, 0xd1, 0xa7, + 0x30, 0x02, 0xf4, 0x72, 0xa4, 0x35, 0x18, 0x25, 0x75, 0x29, 0xf3, 0xa7, 0xe6, 0x1c, 0xa9, 0x8d, + 0x6d, 0x58, 0x0c, 0xfa, 0x3b, 0x09, 0xd9, 0x68, 0x6d, 0x24, 0x44, 0xe3, 0x8c, 0x83, 0xc4, 0xee, + 0x1c, 0x9d, 0x64, 0x65, 0xf3, 0xe3, 0xb3, 0xe1, 0x31, 0x78, 0x8c, 0xa6, 0x40, 0xa7, 0x86, 0x8a, + 0x24, 0xe5, 0x07, 0x1a, 0xa0, 0x6b, 0x9e, 0x69, 0x5d, 0x32, 0x9d, 0xe9, 0x5c, 0xcd, 0x13, 0x00, + 0x81, 0xdf, 0x6e, 0xf1, 0xe5, 0xce, 0x71, 0x5b, 0xe2, 0xb7, 0x6f, 0xb0, 0x15, 0x3f, 0x09, 0x15, + 0x2b, 0x08, 0xf9, 0xe7, 0x28, 0x7d, 0x07, 0xac, 0x20, 0x64, 0xdf, 0xe9, 0x0d, 0x18, 0xb2, 0xc7, + 0xc7, 0x56, 0x4b, 0xc8, 0x7e, 0x98, 0xa1, 0xcd, 0xea, 0xec, 0xc3, 0x76, 0x5c, 0x2f, 0x51, 0x88, + 0x05, 0x75, 0x1e, 0xf8, 0x42, 0xa3, 0xa0, 0xef, 0xc2, 0xca, 0x75, 0xd3, 0xed, 0x9b, 0x0e, 0x21, + 0x83, 0x99, 0xba, 0xb7, 0x90, 0xb5, 0x72, 0x9a, 0xc4, 0xca, 0x3d, 0xce, 0xd2, 0xa9, 0xd9, 0x36, + 0x31, 0x72, 0xb0, 0x92, 0x1a, 0x06, 0xa7, 0xd8, 0xd0, 0xf4, 0x5f, 0xd5, 0xa0, 0x31, 0x08, 0x68, + 0x1a, 0xb9, 0xa4, 0xe8, 0x45, 0x43, 0x89, 0x46, 0x38, 0xa9, 0x43, 0x1f, 0x82, 0xc5, 0xa4, 0xbc, + 0xe5, 0x98, 0xee, 0x65, 0xaf, 0xef, 0x32, 0x8f, 0xb5, 0x60, 0xc8, 0x3e, 0xe9, 0x1f, 0x8f, 0x79, + 0xc2, 0x8c, 0xd3, 0xe2, 0x71, 0x8a, 0x22, 0x02, 0x48, 0x6d, 0x10, 0xa4, 0xfe, 0x5b, 0x39, 0x6a, + 0xfb, 0x06, 0x46, 0x98, 0x66, 0xaa, 0x17, 0xd2, 0x07, 0x8b, 0x4f, 0x2a, 0xee, 0x04, 0xa5, 0x21, + 0x72, 0x71, 0x3b, 0x03, 0xf3, 0xf8, 0x1e, 0x6e, 0xf7, 0x43, 0xdb, 0xed, 0x90, 0x69, 0xde, 0xf0, + 0xb8, 0x2f, 0x92, 0xad, 0x46, 0x4f, 0x42, 0x8d, 0xac, 0x9c, 0xd7, 0x0f, 0x79, 0x3b, 0xe6, 0x94, + 0xa4, 0x2b, 0xc9, 0x78, 0x64, 0xbe, 0x0e, 0x0e, 0xb1, 0xc5, 0xdb, 0x31, 0x0f, 0x25, 0x5b, 0x4d, + 0xa8, 0xb5, 0x6b, 0xda, 0x4e, 0xdc, 0x8c, 0x1d, 0x5b, 0xa4, 0xea, 0x06, 0xc8, 0x4d, 0xaa, 0x83, + 0x49, 0xc8, 0xfd, 0x57, 0x5a, 0x86, 0xdc, 0x7c, 0x84, 0x87, 0x45, 0xee, 0xab, 0x00, 0x5d, 0xec, + 0x77, 0xf0, 0x26, 0xf5, 0x0c, 0x58, 0x3c, 0xf1, 0x8c, 0x52, 0xa9, 0xb1, 0x01, 0xae, 0x47, 0x1d, + 0x0c, 0xa1, 0xaf, 0x7e, 0x05, 0x16, 0x25, 0x4d, 0x88, 0xd1, 0x63, 0x89, 0xba, 0x51, 0x6c, 0x3a, + 0x2a, 0x12, 0x9b, 0x12, 0x9a, 0x7e, 0x07, 0x87, 0x5c, 0x14, 0x78, 0x49, 0x7f, 0x91, 0x1e, 0xdc, + 0xd3, 0x2d, 0x55, 0x8a, 0x9b, 0xd3, 0xf9, 0x54, 0xda, 0x40, 0x3e, 0xd5, 0x2e, 0x3d, 0x1c, 0x17, + 0xfb, 0x4d, 0x99, 0x0b, 0x47, 0x37, 0x5e, 0xd8, 0xe2, 0xf7, 0x48, 0xa3, 0xa2, 0xde, 0x85, 0x95, + 0x08, 0xce, 0x45, 0xc7, 0x99, 0x32, 0xb7, 0x60, 0xf4, 0x9e, 0xcf, 0x86, 0xc6, 0x20, 0xb8, 0x07, + 0x33, 0xb3, 0xff, 0xd2, 0xa0, 0xb6, 0xd9, 0xed, 0x79, 0xc9, 0xc9, 0xed, 0xd8, 0x11, 0xa0, 0xc1, + 0x03, 0xaf, 0x9c, 0xec, 0xc0, 0xeb, 0x09, 0xa8, 0xa5, 0xef, 0x52, 0xb2, 0x80, 0x7a, 0xb5, 0x2d, + 0xde, 0xa1, 0x3c, 0x06, 0x65, 0xdf, 0xdb, 0x6f, 0x11, 0xfa, 0x58, 0x3c, 0x9f, 0xb0, 0xe4, 0x7b, + 0xfb, 0x84, 0x6a, 0x16, 0x5a, 0x82, 0xc2, 0xae, 0xed, 0xc4, 0xa9, 0xb0, 0xac, 0x80, 0x3e, 0x02, + 0x45, 0x8f, 0x67, 0xeb, 0xcc, 0x8e, 0xeb, 0x31, 0x44, 0x3d, 0x98, 0xd2, 0x47, 0x0d, 0x4d, 0xff, + 0x0c, 0xcc, 0x45, 0xd3, 0x9f, 0xf2, 0x8e, 0x70, 0x68, 0x06, 0xb7, 0xa3, 0x9c, 0x3f, 0x56, 0xd0, + 0xcf, 0xb1, 0xdc, 0x0d, 0x3a, 0x7e, 0x8a, 0x69, 0x10, 0xcc, 0x90, 0x16, 0x5c, 0x5d, 0xd0, 0xdf, + 0xfa, 0x3f, 0xe4, 0x60, 0x39, 0xdb, 0x7a, 0x1a, 0x94, 0x5e, 0x4c, 0xab, 0x08, 0xf9, 0x95, 0x4f, + 0x11, 0x1a, 0x57, 0x0f, 0x7c, 0x29, 0xda, 0xb1, 0x19, 0xca, 0xd3, 0xa5, 0xa0, 0xb6, 0x07, 0xad, + 0x40, 0xd1, 0xb6, 0x5a, 0x8e, 0x1d, 0x84, 0xdc, 0xbe, 0xcf, 0xda, 0xd6, 0x35, 0x3b, 0x08, 0xc9, + 0x16, 0x8d, 0xed, 0x34, 0xc6, 0x4e, 0x14, 0x64, 0xed, 0xd1, 0x1c, 0xe4, 0x6c, 0x8b, 0x2b, 0xde, + 0x9c, 0x6d, 0x51, 0x76, 0x11, 0x2f, 0xfc, 0xf0, 0x3d, 0xa2, 0x68, 0xd3, 0x2d, 0xe2, 0x91, 0x70, + 0x2d, 0x40, 0xaf, 0x04, 0x95, 0xd2, 0x8a, 0xc1, 0xa2, 0xfc, 0xc4, 0x32, 0x80, 0x89, 0x80, 0x95, + 0xd9, 0x24, 0x58, 0xc5, 0xad, 0x40, 0x7f, 0x13, 0x96, 0x09, 0xce, 0x6c, 0xee, 0xb7, 0xc8, 0x4a, + 0x4d, 0xcc, 0xfb, 0x4b, 0x50, 0x70, 0xec, 0xae, 0x1d, 0xe9, 0x31, 0x56, 0xd0, 0x7f, 0x4a, 0x83, + 0x95, 0x81, 0x91, 0xa7, 0x59, 0xc3, 0x8b, 0x22, 0x5b, 0x55, 0xd6, 0xcf, 0x49, 0xb5, 0xb4, 0x9c, + 0x69, 0x22, 0x1e, 0xfc, 0x23, 0xb6, 0xcf, 0x30, 0xd8, 0x1d, 0x8b, 0x07, 0x9c, 0x6e, 0x7b, 0x06, + 0xea, 0xfb, 0x76, 0xb8, 0xd7, 0xa2, 0x97, 0x93, 0xa9, 0xc3, 0xc8, 0xbc, 0xdd, 0x92, 0x31, 0x47, + 0xea, 0xb7, 0x49, 0x35, 0x71, 0x1a, 0xa5, 0x71, 0xe6, 0x19, 0xe9, 0xbe, 0xf8, 0x0b, 0x1a, 0x2c, + 0xa6, 0xf0, 0x9f, 0x86, 0x9e, 0x1f, 0x25, 0x1b, 0x25, 0x36, 0x10, 0x27, 0xe9, 0xaa, 0x94, 0xa4, + 0x1c, 0x1a, 0x35, 0x78, 0x71, 0x0f, 0xfd, 0x5b, 0x79, 0xa8, 0x08, 0x5f, 0xd0, 0x71, 0x28, 0xf3, + 0x6f, 0x49, 0x04, 0x26, 0xae, 0x18, 0x8b, 0x5e, 0x4f, 0x40, 0xa2, 0x2c, 0x85, 0xcb, 0x6d, 0x42, + 0x6a, 0xbc, 0x15, 0xa0, 0xab, 0x30, 0xc7, 0xe8, 0x19, 0xa3, 0x2e, 0xdd, 0x21, 0xc5, 0x49, 0xff, + 0xa6, 0x6f, 0x71, 0x2c, 0x8d, 0x5a, 0x20, 0x94, 0x58, 0x6e, 0x8a, 0x67, 0x61, 0x0a, 0xa9, 0x90, + 0x8a, 0x87, 0xa0, 0x35, 0x58, 0x4c, 0xdf, 0xba, 0x11, 0x83, 0x37, 0x0b, 0xa9, 0x9b, 0x37, 0x54, + 0x00, 0x4c, 0x58, 0x70, 0xfb, 0xdd, 0x96, 0xd7, 0x0f, 0x77, 0xbc, 0xbe, 0xcb, 0xd6, 0x9a, 0x3f, + 0x36, 0x72, 0x7e, 0x14, 0x49, 0xd7, 0x6e, 0xf4, 0xbb, 0x37, 0x79, 0x47, 0xc2, 0x0d, 0xfc, 0xf8, + 0xd0, 0x4d, 0xd7, 0x36, 0x2f, 0xc1, 0x92, 0xac, 0xe1, 0xa8, 0xe3, 0xb1, 0x82, 0x78, 0x3c, 0xf6, + 0x55, 0x0d, 0xaa, 0x22, 0x45, 0xc8, 0x56, 0xd9, 0xc1, 0xa6, 0x85, 0xfd, 0x78, 0xc9, 0xe2, 0x32, + 0xd1, 0x2a, 0xec, 0x77, 0xcb, 0xb4, 0x2c, 0x9f, 0x5b, 0x33, 0x60, 0x55, 0x17, 0x2d, 0xcb, 0x47, + 0x1f, 0x80, 0x79, 0xab, 0x9b, 0x7a, 0x19, 0x20, 0xda, 0x4c, 0x5b, 0x5d, 0xe1, 0x49, 0x80, 0x14, + 0x9d, 0x67, 0xd2, 0x71, 0xa7, 0xcf, 0x25, 0x0f, 0xd7, 0xf8, 0xd8, 0xc2, 0x6e, 0x68, 0x9b, 0xce, + 0xfd, 0xcb, 0x64, 0x13, 0x4a, 0xfd, 0x00, 0xfb, 0x82, 0xf1, 0x8d, 0xcb, 0xe4, 0x5b, 0xcf, 0x0c, + 0x82, 0x7d, 0xcf, 0xb7, 0x38, 0x96, 0x71, 0x79, 0xc8, 0xf5, 0x09, 0xf6, 0x3e, 0x87, 0xfc, 0xfa, + 0xc4, 0x8b, 0xb0, 0xd2, 0xf5, 0x2c, 0x7b, 0xd7, 0x96, 0xdd, 0xba, 0x20, 0xdd, 0x8e, 0x46, 0x9f, + 0x53, 0xfd, 0xa2, 0x3b, 0xa5, 0x8b, 0xe2, 0x9d, 0xd2, 0x6f, 0xe6, 0x60, 0xe5, 0xf5, 0x9e, 0xf5, + 0x3e, 0xd0, 0x61, 0x15, 0x2a, 0x9e, 0x63, 0x6d, 0xa5, 0x49, 0x21, 0x56, 0x91, 0x16, 0x2e, 0xde, + 0x8f, 0x5b, 0x30, 0x3d, 0x24, 0x56, 0x0d, 0xbd, 0x6e, 0x72, 0x5f, 0xf4, 0x9a, 0x1d, 0x46, 0xaf, + 0xf2, 0x77, 0x5f, 0x99, 0x2d, 0xe5, 0xea, 0x4b, 0x8d, 0x9c, 0xfe, 0x23, 0xb0, 0xc2, 0x32, 0x9b, + 0x1e, 0x30, 0x95, 0xa2, 0x35, 0x3a, 0x2a, 0xae, 0xd1, 0xdb, 0x70, 0x94, 0x58, 0x33, 0x02, 0xfa, + 0xf5, 0x00, 0xfb, 0x53, 0xea, 0xde, 0xe3, 0x50, 0x8e, 0xa0, 0x45, 0x17, 0x85, 0x92, 0x0a, 0xfd, + 0xff, 0xc3, 0x52, 0x06, 0xd6, 0x7d, 0xce, 0x32, 0x9a, 0xc9, 0xb2, 0x38, 0x93, 0x55, 0x00, 0xc3, + 0x73, 0x88, 0xfe, 0xb0, 0xc3, 0x03, 0xe2, 0x7d, 0x09, 0xa6, 0x9d, 0xfe, 0x26, 0x2d, 0x08, 0xdc, + 0x21, 0x2d, 0x7e, 0x5a, 0x83, 0x05, 0x26, 0xb9, 0x64, 0xa8, 0xfb, 0x5f, 0x85, 0x97, 0x60, 0x16, + 0x53, 0x28, 0x3c, 0x1c, 0x79, 0x52, 0xae, 0x2e, 0x63, 0x74, 0x0d, 0xde, 0x5c, 0x2a, 0x46, 0x21, + 0xcc, 0x6f, 0xf8, 0x5e, 0x6f, 0x3a, 0x8c, 0xa8, 0xc7, 0xe7, 0x60, 0xd1, 0x87, 0x2f, 0x91, 0x8a, + 0x1b, 0x2a, 0xc6, 0xf8, 0xbe, 0x06, 0xcb, 0x37, 0x7b, 0xd8, 0x37, 0x43, 0x4c, 0x88, 0x36, 0x1d, + 0xf4, 0x61, 0xb2, 0x9b, 0xc2, 0x2c, 0x9f, 0xc6, 0x0c, 0x7d, 0x34, 0x75, 0x11, 0x5e, 0xbe, 0x83, + 0xcd, 0x60, 0x99, 0xdc, 0x86, 0x8b, 0xe6, 0xb5, 0x22, 0xce, 0xeb, 0x3b, 0x1a, 0x2c, 0x6c, 0x63, + 0x62, 0x9e, 0xa7, 0x9b, 0xd2, 0xf3, 0x42, 0x88, 0x74, 0x8c, 0x05, 0x66, 0x31, 0xd4, 0xb3, 0xb0, + 0x60, 0xbb, 0x6d, 0xa7, 0x6f, 0xe1, 0x16, 0x99, 0x3f, 0x8b, 0x85, 0x32, 0xe7, 0x69, 0x9e, 0x7f, + 0x20, 0xd3, 0x20, 0x06, 0x54, 0xca, 0xe3, 0xf7, 0x18, 0x8f, 0xc7, 0xf9, 0xa4, 0x0c, 0x05, 0x6d, + 0x12, 0x14, 0xce, 0x43, 0x81, 0x80, 0x8e, 0x7c, 0x23, 0x79, 0xaf, 0x44, 0x4c, 0x0c, 0xd6, 0x5a, + 0xff, 0x71, 0x0d, 0x90, 0x48, 0xb6, 0x69, 0xb4, 0xc4, 0x87, 0xc5, 0x3c, 0xb2, 0xfc, 0x50, 0xd4, + 0xd9, 0x4c, 0xe3, 0x0c, 0x32, 0xfd, 0xdb, 0xf1, 0xea, 0xd1, 0xe5, 0x9e, 0x66, 0xf5, 0xc8, 0xbc, + 0x86, 0xae, 0x9e, 0x40, 0x04, 0xda, 0x58, 0x5c, 0x3d, 0xca, 0xb1, 0x92, 0xd5, 0x23, 0x38, 0xd3, + 0xd5, 0xe3, 0xfa, 0xbd, 0xd1, 0xc8, 0x91, 0x45, 0x63, 0xc8, 0x46, 0x8b, 0x46, 0x21, 0x6b, 0x93, + 0x40, 0x3e, 0x0f, 0x05, 0x02, 0x71, 0x34, 0xbd, 0xa2, 0x45, 0xa3, 0xad, 0x85, 0x45, 0xe3, 0x08, + 0x3c, 0xf8, 0x45, 0x4b, 0x66, 0x9a, 0x2c, 0x9a, 0x0e, 0xd5, 0x9b, 0x3b, 0x6f, 0xe3, 0x76, 0x38, + 0x44, 0xf3, 0x9e, 0x86, 0xf9, 0x2d, 0xdf, 0xbe, 0x6b, 0x3b, 0xb8, 0x33, 0x4c, 0x85, 0x7f, 0x41, + 0x83, 0xda, 0x15, 0xdf, 0x74, 0x43, 0x2f, 0x52, 0xe3, 0xf7, 0x45, 0xcf, 0x4b, 0x50, 0xee, 0x45, + 0xd0, 0x38, 0x0f, 0x3c, 0x29, 0x3f, 0xb2, 0x4d, 0xe3, 0x64, 0x24, 0xdd, 0xf4, 0x37, 0x60, 0x89, + 0x62, 0x92, 0x45, 0xfb, 0x15, 0x28, 0x51, 0x65, 0x6e, 0xf3, 0xd0, 0x98, 0xea, 0x34, 0x21, 0x35, + 0x0d, 0x23, 0xee, 0xa3, 0xff, 0xad, 0x06, 0x15, 0xfa, 0x2d, 0x99, 0xe0, 0xe4, 0x52, 0xfe, 0x61, + 0x98, 0xf5, 0x28, 0xc9, 0x87, 0xe6, 0x95, 0x88, 0xab, 0x62, 0xf0, 0x0e, 0xc4, 0x43, 0x66, 0xbf, + 0x44, 0x8d, 0x0c, 0xac, 0x8a, 0xeb, 0xe4, 0x62, 0x87, 0xe1, 0x4e, 0xd5, 0xf2, 0x78, 0xf3, 0x8b, + 0xba, 0xe8, 0x3f, 0x1b, 0xf3, 0x24, 0x6d, 0x70, 0xff, 0x22, 0xfc, 0x72, 0xc6, 0xc6, 0xae, 0xaa, + 0xb1, 0x90, 0x1b, 0xd9, 0x94, 0x66, 0x25, 0x5b, 0xd0, 0x14, 0x5a, 0x53, 0x6e, 0x41, 0x63, 0x16, + 0x18, 0xb6, 0x05, 0x15, 0x91, 0x4b, 0x18, 0xe0, 0xaf, 0x35, 0x58, 0xe1, 0x36, 0x2d, 0xe6, 0xad, + 0x87, 0x40, 0x26, 0xf4, 0x31, 0x6e, 0x7b, 0xd9, 0x51, 0xdf, 0xd3, 0xc3, 0x6c, 0x6f, 0x8c, 0xe7, + 0x08, 0xe3, 0xfb, 0xeb, 0x1a, 0x0d, 0xb4, 0x5f, 0xf3, 0x4c, 0xcb, 0x76, 0x3b, 0xd3, 0xdf, 0x97, + 0x93, 0x44, 0x18, 0x72, 0xe3, 0x66, 0xb4, 0xe7, 0x65, 0x59, 0x67, 0x2c, 0x68, 0xb8, 0xda, 0xc8, + 0xe9, 0x5d, 0x1a, 0xd0, 0x1f, 0xc0, 0x74, 0xca, 0x23, 0xdc, 0x1e, 0x1f, 0x88, 0x47, 0x0a, 0xe2, + 0xb2, 0xfe, 0x0d, 0x16, 0x02, 0x21, 0xf0, 0xa6, 0x0c, 0x3d, 0x3f, 0x20, 0x9a, 0x9c, 0x6a, 0xe4, + 0xf4, 0x1f, 0x63, 0x97, 0xef, 0x04, 0x24, 0xa7, 0x21, 0xc7, 0x0b, 0xe9, 0xe0, 0xa5, 0xfc, 0x2c, + 0x39, 0x81, 0xc5, 0x33, 0x8b, 0x4e, 0x43, 0xf9, 0x3a, 0x6d, 0xf7, 0x89, 0x7b, 0x21, 0x6a, 0x40, + 0xf1, 0x2e, 0xf6, 0x03, 0xdb, 0x73, 0xb9, 0x95, 0x88, 0x8a, 0xfa, 0x22, 0x3d, 0xdb, 0x7f, 0x83, + 0x95, 0xa2, 0xc3, 0xd4, 0x36, 0x0d, 0x93, 0xc5, 0x95, 0x53, 0x46, 0xdb, 0x23, 0xc8, 0xb9, 0x34, + 0xe4, 0x25, 0x40, 0x97, 0xf7, 0x70, 0xfb, 0xf6, 0x55, 0x6c, 0x3a, 0x61, 0x94, 0xc0, 0xae, 0xff, + 0xa9, 0x06, 0x8b, 0xa9, 0xea, 0x29, 0xb7, 0x59, 0x76, 0xc0, 0x06, 0x3a, 0xe0, 0xc1, 0xfe, 0xa4, + 0x82, 0xe5, 0x23, 0x98, 0x81, 0xe7, 0x46, 0xeb, 0x19, 0x15, 0xd1, 0x25, 0xa8, 0xde, 0xe9, 0x7b, + 0xa1, 0x19, 0x1d, 0x76, 0xcf, 0xac, 0xe6, 0x07, 0x2f, 0x08, 0xc6, 0x19, 0x23, 0x5e, 0x68, 0x32, + 0xca, 0x57, 0xee, 0xc4, 0xbf, 0x03, 0xfd, 0x8b, 0x1a, 0x34, 0xf9, 0x16, 0x49, 0x0c, 0x18, 0xdd, + 0x3f, 0xbf, 0xd2, 0x27, 0x63, 0xc4, 0xa8, 0x54, 0x74, 0xc4, 0x90, 0x0a, 0x48, 0x45, 0xea, 0xa4, + 0x99, 0x7a, 0x0d, 0x56, 0x83, 0x06, 0xdd, 0x1a, 0x3d, 0x0c, 0x4c, 0x8e, 0x89, 0x98, 0xfc, 0x9d, + 0x06, 0x8b, 0xb7, 0x7c, 0xd3, 0x0d, 0x76, 0xb1, 0x7f, 0xc3, 0xb3, 0xa6, 0x10, 0xdf, 0x75, 0x38, + 0xca, 0x51, 0x90, 0xe2, 0xb2, 0xc8, 0xea, 0x52, 0x33, 0x26, 0x7d, 0xd8, 0x21, 0x5b, 0xb6, 0x0f, + 0x33, 0xde, 0x8b, 0xec, 0x63, 0xba, 0x0f, 0xcf, 0xed, 0xa2, 0x31, 0x3d, 0xf6, 0x30, 0x61, 0xd1, + 0xed, 0x77, 0x09, 0xee, 0xd1, 0x04, 0x1f, 0x17, 0x27, 0xf8, 0x93, 0x39, 0x58, 0x8e, 0x26, 0x18, + 0x45, 0x1e, 0x0f, 0xfd, 0x1c, 0xc7, 0x0d, 0x40, 0x13, 0x9f, 0x87, 0x26, 0xba, 0xb1, 0x89, 0xf1, + 0x93, 0x64, 0x70, 0xfb, 0x5d, 0x3e, 0xd5, 0x88, 0x24, 0x27, 0x45, 0x92, 0x98, 0xf0, 0xd8, 0x35, + 0x3b, 0x48, 0x83, 0x9c, 0x3e, 0xa6, 0x71, 0x42, 0x04, 0xf1, 0x0e, 0x34, 0x65, 0x20, 0xa6, 0x7c, + 0xd1, 0x25, 0xfb, 0xf4, 0x52, 0x4e, 0xf6, 0xf4, 0x92, 0xfe, 0x25, 0x0d, 0x8e, 0x47, 0x77, 0xf0, + 0x1f, 0x8a, 0x80, 0x1d, 0xcf, 0x3c, 0x4d, 0x7d, 0x42, 0x81, 0xcd, 0x34, 0xd4, 0xd8, 0x94, 0x62, + 0xa4, 0x72, 0x69, 0xd3, 0x80, 0xd3, 0x58, 0xeb, 0xff, 0x34, 0x03, 0xb5, 0x34, 0xfb, 0x49, 0x36, + 0x30, 0xc4, 0x07, 0x68, 0x9b, 0x3d, 0xb3, 0x1d, 0x39, 0x64, 0x05, 0x23, 0x2e, 0xa3, 0x0f, 0x02, + 0x22, 0x5c, 0x18, 0x3f, 0x1f, 0xc7, 0x84, 0x93, 0x65, 0x89, 0xd4, 0xdd, 0x7e, 0x37, 0x7e, 0x3a, + 0x8e, 0x48, 0x29, 0xda, 0x65, 0xad, 0x1d, 0xcf, 0xb4, 0x70, 0x7c, 0x6e, 0xc0, 0x8f, 0x0d, 0x5e, + 0x1e, 0x8d, 0xfe, 0xda, 0x8d, 0x7e, 0xf7, 0x1a, 0xed, 0xcb, 0x79, 0x9c, 0x45, 0xe8, 0x09, 0x9c, + 0x54, 0x35, 0x6a, 0xc7, 0xa7, 0x00, 0x1d, 0xcf, 0x76, 0x3b, 0x0c, 0xa9, 0xc2, 0x90, 0x6b, 0x44, + 0x03, 0x60, 0x6e, 0xf2, 0xae, 0x03, 0xe7, 0x00, 0x71, 0x6d, 0x04, 0xc4, 0x76, 0xdb, 0x5e, 0x37, + 0x06, 0x32, 0x3b, 0x09, 0x90, 0x4d, 0xde, 0x35, 0x0d, 0x44, 0xac, 0x6d, 0x5e, 0x86, 0xa3, 0xd2, + 0x49, 0x4f, 0x72, 0xda, 0x90, 0x9c, 0x58, 0xa4, 0xa7, 0x74, 0x1f, 0x63, 0x0c, 0x60, 0x3c, 0xd1, + 0xa9, 0xc7, 0xbb, 0x1a, 0xac, 0x18, 0x98, 0xf0, 0xd4, 0x7b, 0xf1, 0xd4, 0xeb, 0x1c, 0xe4, 0xac, + 0x1d, 0x2e, 0x8d, 0x39, 0x6b, 0x87, 0xf8, 0x10, 0x1e, 0xbb, 0xe5, 0xc1, 0xf5, 0x6b, 0x54, 0xa4, + 0xe9, 0xb6, 0x78, 0xff, 0x46, 0xa2, 0x4b, 0xa3, 0xe2, 0xd9, 0x53, 0x50, 0x8a, 0x5e, 0xa3, 0x42, + 0x45, 0xc8, 0x5f, 0x74, 0x9c, 0xfa, 0x11, 0x54, 0x85, 0xd2, 0x26, 0x7f, 0x72, 0xa9, 0xae, 0x9d, + 0x7d, 0x15, 0x16, 0x25, 0xd1, 0x3a, 0xb4, 0x00, 0xb5, 0x8b, 0x16, 0x8d, 0x09, 0xdf, 0xf2, 0x48, + 0x65, 0xfd, 0x08, 0x5a, 0x06, 0x64, 0xe0, 0xae, 0x77, 0x97, 0x36, 0x7c, 0xcd, 0xf7, 0xba, 0xb4, + 0x5e, 0x3b, 0xfb, 0x0c, 0x2c, 0xc9, 0xf6, 0x1c, 0xa8, 0x0c, 0x05, 0xba, 0x87, 0xa9, 0x1f, 0x41, + 0x00, 0xb3, 0x06, 0xbe, 0xeb, 0xdd, 0x26, 0xcd, 0xdf, 0x02, 0x48, 0x1c, 0x19, 0x54, 0x81, 0xe2, + 0xeb, 0xee, 0x6d, 0xd7, 0xdb, 0x77, 0xeb, 0x47, 0xd0, 0x3c, 0x54, 0x0c, 0x6c, 0x5a, 0xd7, 0xec, + 0xae, 0x1d, 0x62, 0xab, 0x9e, 0x43, 0x75, 0xa8, 0xbe, 0xe9, 0xdb, 0x21, 0x8e, 0x6a, 0xf2, 0x68, + 0x0e, 0x60, 0x03, 0xbb, 0x07, 0xb7, 0x3c, 0xd2, 0xb0, 0x3e, 0x43, 0xba, 0xb0, 0x32, 0x6d, 0x57, + 0x2f, 0xac, 0xff, 0xfb, 0x05, 0xa8, 0x31, 0x6f, 0x94, 0xbf, 0xee, 0x88, 0x5a, 0x50, 0xcf, 0xfe, + 0xcf, 0x02, 0xf4, 0x41, 0x79, 0xe2, 0x8d, 0xfc, 0x5f, 0x1b, 0x34, 0x87, 0xe9, 0x2d, 0xfd, 0x08, + 0xfa, 0x0c, 0xcc, 0xa5, 0x9f, 0xe8, 0x47, 0xf2, 0x64, 0x73, 0xe9, 0x3b, 0xfe, 0xa3, 0x06, 0x6f, + 0x41, 0x2d, 0xf5, 0xa6, 0x3c, 0x92, 0xef, 0xfa, 0x64, 0xef, 0xce, 0x37, 0xe5, 0x21, 0x06, 0xf1, + 0xdd, 0x77, 0x86, 0x7d, 0xfa, 0x85, 0x66, 0x05, 0xf6, 0xd2, 0x67, 0x9c, 0x47, 0x61, 0x6f, 0xc2, + 0xc2, 0xc0, 0xeb, 0xc7, 0xe8, 0x19, 0x85, 0xfa, 0x90, 0xbf, 0x92, 0x3c, 0x0a, 0xc4, 0x3e, 0xa0, + 0xc1, 0x77, 0xd2, 0xd1, 0x9a, 0x7c, 0x05, 0x54, 0x2f, 0xc7, 0x37, 0x9f, 0x1d, 0xbb, 0x7d, 0x4c, + 0xb8, 0xcf, 0x6b, 0x34, 0x3d, 0x49, 0xf6, 0x50, 0x2e, 0x7a, 0x5e, 0x95, 0x32, 0x30, 0xe4, 0xd9, + 0xdf, 0xe6, 0x0b, 0x93, 0x75, 0x8a, 0x11, 0x71, 0x61, 0x3e, 0xf3, 0x4e, 0x2c, 0x3a, 0xa7, 0x7c, + 0x99, 0x6e, 0xf0, 0x11, 0xdd, 0xe6, 0x07, 0xc7, 0x6b, 0x1c, 0xc3, 0x7b, 0x0b, 0xe6, 0x33, 0xff, + 0xf0, 0x41, 0x01, 0x4f, 0xfe, 0x6f, 0x21, 0x46, 0x2d, 0xe8, 0x5b, 0x30, 0x9f, 0x79, 0x83, 0x55, + 0x31, 0xbc, 0xfc, 0xa5, 0xd6, 0x51, 0xc3, 0x7f, 0x1a, 0x6a, 0xa9, 0xc7, 0x52, 0x15, 0x02, 0x25, + 0x7b, 0x50, 0x75, 0x34, 0xe6, 0x55, 0xf1, 0x4d, 0x53, 0x74, 0x46, 0x25, 0xaa, 0x03, 0x03, 0x4f, + 0x22, 0xa9, 0xc9, 0x43, 0x82, 0x43, 0x24, 0x75, 0xe0, 0xed, 0xc5, 0xf1, 0x25, 0x55, 0x18, 0x7f, + 0xa8, 0xa4, 0x4e, 0x0c, 0xe2, 0xb3, 0x1a, 0x4d, 0xb5, 0x92, 0x3c, 0x54, 0x89, 0xd6, 0x55, 0xac, + 0xaf, 0x7e, 0x92, 0xb3, 0xf9, 0xfc, 0x44, 0x7d, 0x62, 0x2a, 0xde, 0x86, 0xb9, 0xf4, 0x73, 0x8c, + 0x0a, 0x2a, 0x4a, 0x5f, 0xb0, 0x6c, 0x9e, 0x1b, 0xab, 0x6d, 0x0c, 0x6c, 0x9f, 0x86, 0x37, 0x32, + 0x21, 0x2b, 0x85, 0x72, 0x52, 0x46, 0xe1, 0x14, 0xca, 0x49, 0x1d, 0x0b, 0xd3, 0x8f, 0x20, 0x0c, + 0x55, 0x31, 0x2c, 0xa4, 0x60, 0x45, 0x49, 0x78, 0xab, 0xf9, 0xf4, 0x18, 0x2d, 0x63, 0x30, 0xaf, + 0x43, 0x45, 0xf8, 0x87, 0x60, 0xe8, 0xa9, 0x21, 0x72, 0x2a, 0xfe, 0xef, 0xa9, 0x51, 0x9c, 0xf2, + 0x29, 0x28, 0xc7, 0xff, 0xc7, 0x0b, 0x9d, 0x56, 0xca, 0xe7, 0x24, 0x43, 0x6e, 0x03, 0x24, 0xff, + 0xa4, 0x0b, 0x7d, 0x40, 0xad, 0xaf, 0x26, 0x19, 0x74, 0x0f, 0x6a, 0xa9, 0x7f, 0x70, 0xa5, 0xd2, + 0x25, 0x92, 0x7f, 0xbf, 0xd5, 0x3c, 0x3b, 0x4e, 0xd3, 0x98, 0xd0, 0x3b, 0x50, 0x11, 0xfe, 0x43, + 0x94, 0x82, 0xd0, 0x83, 0xff, 0xce, 0xaa, 0x79, 0x66, 0x74, 0xc3, 0xc1, 0xc5, 0x64, 0xcf, 0xcf, + 0x0c, 0x5b, 0x4c, 0xf1, 0xc1, 0xa9, 0x09, 0x88, 0xc4, 0x06, 0x1e, 0x4e, 0xa4, 0xd4, 0xd0, 0x67, + 0xc7, 0x69, 0x1a, 0x4f, 0x60, 0x0f, 0x6a, 0xa9, 0x47, 0xbb, 0x90, 0x92, 0x97, 0x07, 0x1e, 0x2b, + 0x53, 0x40, 0x92, 0xbe, 0x01, 0xa6, 0x1f, 0x41, 0x3f, 0x2a, 0xbc, 0x0f, 0x96, 0x7a, 0x8c, 0x0d, + 0x3d, 0x37, 0x74, 0x1c, 0xd9, 0xa3, 0x74, 0xcd, 0xf5, 0x49, 0xba, 0xc4, 0x28, 0x70, 0x19, 0x61, + 0x24, 0x55, 0xcb, 0xc8, 0x24, 0x2b, 0xb5, 0x0d, 0xb3, 0xec, 0xf5, 0x2d, 0xa4, 0x2b, 0x9e, 0xe0, + 0x13, 0xde, 0x9a, 0x6a, 0x3e, 0x21, 0x6d, 0x93, 0x7e, 0x60, 0x89, 0x0d, 0xca, 0x72, 0x69, 0x14, + 0x83, 0xa6, 0x9e, 0x10, 0x9a, 0x60, 0x50, 0xf6, 0xf0, 0x95, 0x62, 0xd0, 0xd4, 0xab, 0x58, 0xe3, + 0x0e, 0x6a, 0xc0, 0x2c, 0x7b, 0x28, 0x45, 0x31, 0x68, 0xea, 0x15, 0xa0, 0xe6, 0xf0, 0x36, 0xec, + 0x98, 0xf5, 0x08, 0xda, 0x82, 0x02, 0x4d, 0x28, 0x47, 0xa7, 0x86, 0x3d, 0xbe, 0x31, 0x6c, 0xc4, + 0xd4, 0xfb, 0x1c, 0xfa, 0x11, 0x74, 0x13, 0x0a, 0xf4, 0xea, 0xa0, 0x62, 0x44, 0xf1, 0x55, 0x8a, + 0xe6, 0xd0, 0x26, 0x11, 0x8a, 0x16, 0x54, 0xc5, 0xbb, 0xe3, 0x0a, 0x53, 0x21, 0xb9, 0x5d, 0xdf, + 0x1c, 0xa7, 0x65, 0x04, 0xe5, 0xd3, 0x50, 0x8a, 0x32, 0xeb, 0xd1, 0x93, 0xea, 0x89, 0x26, 0xb7, + 0xbd, 0x9b, 0xa7, 0x47, 0xb4, 0xca, 0x88, 0x7d, 0x72, 0x1d, 0x41, 0x2d, 0xf6, 0x03, 0x57, 0x1d, + 0xd4, 0x62, 0x3f, 0x78, 0xbb, 0x41, 0x3f, 0x82, 0xee, 0x40, 0x3d, 0x7b, 0x43, 0x40, 0xb1, 0x95, + 0x54, 0xdc, 0x5b, 0x68, 0x3e, 0x33, 0x66, 0xeb, 0x18, 0xe4, 0x17, 0x35, 0x7a, 0x2b, 0x41, 0x7e, + 0x17, 0x5d, 0xb9, 0x63, 0x18, 0x76, 0xcb, 0xbb, 0x79, 0x7e, 0xc2, 0x5e, 0x31, 0x2e, 0xef, 0xd0, + 0x03, 0xb1, 0x81, 0x2b, 0xd1, 0x4a, 0xf7, 0x44, 0x71, 0xcd, 0xb7, 0xf9, 0xa1, 0xf1, 0x3b, 0x88, + 0x06, 0x50, 0xc8, 0x47, 0x56, 0x18, 0xa7, 0xc1, 0x8c, 0xeb, 0xe6, 0x99, 0xd1, 0x0d, 0x63, 0x18, + 0x5b, 0x50, 0xa0, 0xf7, 0x68, 0x15, 0xa2, 0x25, 0x5e, 0xcb, 0x55, 0x08, 0x6b, 0xea, 0x1a, 0x2e, + 0x73, 0xc3, 0xc4, 0x4b, 0xb5, 0x0a, 0xd9, 0x92, 0xdc, 0xc7, 0x55, 0xb8, 0x61, 0xb2, 0x1b, 0xba, + 0x34, 0x48, 0x00, 0xc9, 0xa5, 0x56, 0x85, 0x73, 0x33, 0x70, 0xaf, 0xb6, 0xf9, 0xd4, 0xc8, 0x76, + 0x31, 0x00, 0x87, 0xfa, 0xb1, 0xd9, 0xab, 0x9e, 0x6b, 0xea, 0x0d, 0xab, 0xec, 0xe6, 0x64, 0xf3, + 0xc9, 0xe1, 0x77, 0x38, 0xf9, 0x71, 0x16, 0x75, 0x44, 0x84, 0x0b, 0x96, 0x2a, 0x67, 0x67, 0xe0, + 0x0a, 0xe6, 0x18, 0x91, 0x82, 0xc1, 0xfb, 0x77, 0xc3, 0x27, 0x31, 0x78, 0xd5, 0x4f, 0xed, 0x8c, + 0x2b, 0x2e, 0xf6, 0x31, 0xb5, 0x91, 0xbd, 0xe1, 0xa8, 0x50, 0x1b, 0x8a, 0x1b, 0x97, 0x0a, 0xb5, + 0xa1, 0xba, 0x36, 0xc9, 0x1c, 0x94, 0x63, 0x83, 0x38, 0xbd, 0x69, 0x87, 0x7b, 0xf4, 0x1a, 0xdc, + 0x38, 0xb3, 0x16, 0x6f, 0xdc, 0x8d, 0x33, 0xeb, 0xd4, 0xfd, 0x3a, 0xee, 0x4d, 0xd0, 0x0b, 0x12, + 0x2a, 0x6f, 0x42, 0xbc, 0xff, 0xa4, 0xb0, 0xd1, 0xe9, 0x4b, 0x42, 0x6c, 0xf7, 0x96, 0xbe, 0x78, + 0x81, 0xce, 0x8e, 0x75, 0x3b, 0x63, 0xd8, 0xee, 0x4d, 0x7e, 0x93, 0x83, 0x05, 0x56, 0x32, 0xf7, + 0x4a, 0x14, 0x91, 0x08, 0xf9, 0xbd, 0x16, 0x45, 0x60, 0x45, 0x71, 0x55, 0x85, 0x8a, 0x71, 0x3d, + 0x9b, 0xa4, 0x3e, 0x3c, 0x52, 0x99, 0xcd, 0x4e, 0x1e, 0x1d, 0x4c, 0xac, 0x67, 0xb3, 0xbf, 0x15, + 0x00, 0x14, 0x49, 0xe2, 0x63, 0x00, 0xc8, 0x26, 0x4e, 0x2b, 0x00, 0x28, 0xf2, 0xab, 0xc7, 0xd8, + 0x4c, 0xa4, 0x12, 0x96, 0x15, 0xb6, 0x5e, 0x96, 0xd4, 0xac, 0xb0, 0xf5, 0xd2, 0x5c, 0x6b, 0xb6, + 0x61, 0x4c, 0xf2, 0x8e, 0x15, 0x3a, 0x75, 0x20, 0x31, 0x79, 0x14, 0xfa, 0x37, 0xa1, 0x14, 0x25, + 0x0e, 0x2b, 0xbc, 0xa0, 0x4c, 0x5e, 0xf1, 0x18, 0xc1, 0xb2, 0x4c, 0xf8, 0x5e, 0xc1, 0xa2, 0xf2, + 0xc4, 0xe1, 0xd1, 0xeb, 0x09, 0x49, 0x8a, 0xa9, 0x82, 0x08, 0x03, 0xa9, 0xbb, 0x0a, 0xc3, 0x32, + 0x98, 0xab, 0x2a, 0x02, 0x20, 0x88, 0x0d, 0x05, 0x20, 0x64, 0x97, 0x0e, 0x05, 0x20, 0xe6, 0x55, + 0x32, 0x8e, 0xcc, 0x9e, 0x4e, 0x28, 0x38, 0x52, 0x91, 0xe0, 0x35, 0x8a, 0x44, 0x3b, 0x50, 0x11, + 0xb2, 0xd4, 0xd0, 0x30, 0xd4, 0xc4, 0xf4, 0x3a, 0x85, 0x63, 0x22, 0x49, 0x78, 0x8b, 0xed, 0x3b, + 0xcf, 0x92, 0x51, 0xdb, 0xf7, 0x74, 0x6e, 0x8d, 0xda, 0xbe, 0x67, 0xd2, 0x6d, 0xd8, 0x24, 0x84, + 0x54, 0x18, 0xd5, 0xd6, 0x7f, 0x20, 0x87, 0x46, 0xb5, 0x03, 0x18, 0xcc, 0xaa, 0xa1, 0xbe, 0xd0, + 0xa2, 0x24, 0x4b, 0x45, 0xe1, 0x3d, 0xaa, 0xf3, 0x59, 0xc6, 0x08, 0x64, 0x0e, 0x24, 0xa0, 0x28, + 0x02, 0x99, 0xaa, 0x44, 0x95, 0x51, 0x20, 0xde, 0x84, 0xaa, 0x98, 0x59, 0xa2, 0xf0, 0xea, 0x24, + 0xc9, 0x27, 0x63, 0x48, 0x73, 0x26, 0xa3, 0x43, 0x21, 0xcd, 0xf2, 0xbc, 0x8f, 0x31, 0x1c, 0xa0, + 0xc1, 0xdc, 0x05, 0x85, 0x2b, 0xa0, 0xcc, 0xa3, 0x50, 0xb8, 0x02, 0xea, 0xa4, 0x08, 0x1e, 0x2e, + 0x91, 0xa6, 0x0a, 0x28, 0xc2, 0x25, 0xc3, 0x92, 0x1c, 0x14, 0xe1, 0x92, 0xa1, 0x99, 0x08, 0x4c, + 0x0f, 0x64, 0xcf, 0x66, 0x15, 0x7a, 0x40, 0x71, 0x84, 0x3b, 0x8a, 0xb8, 0x7d, 0x46, 0xdc, 0x4d, + 0xf6, 0x70, 0x3e, 0xdf, 0xc4, 0x64, 0x19, 0x6f, 0x17, 0x5b, 0xd8, 0x5f, 0x1b, 0x6c, 0x17, 0xc1, + 0x58, 0x1b, 0xb7, 0x79, 0x3c, 0x2f, 0x9a, 0x70, 0x95, 0xfe, 0xd7, 0x34, 0xec, 0x3f, 0x25, 0x98, + 0xa1, 0x99, 0x3d, 0x86, 0x62, 0xc3, 0xa9, 0x5a, 0x2b, 0x8e, 0xa1, 0x46, 0x75, 0x8a, 0x30, 0x59, + 0xef, 0x43, 0x75, 0xcb, 0xf7, 0xee, 0x45, 0xff, 0x55, 0xef, 0x7d, 0xda, 0xfb, 0x5c, 0x68, 0xc3, + 0x1c, 0x6b, 0xd0, 0xc2, 0xf7, 0xc2, 0x96, 0xb7, 0xf3, 0x36, 0x3a, 0xbe, 0xd6, 0xf1, 0xbc, 0x8e, + 0x83, 0x59, 0xf7, 0x9d, 0xfe, 0xee, 0xda, 0x6b, 0xb6, 0x83, 0x6f, 0xf2, 0x5b, 0xeb, 0xff, 0x58, + 0x1c, 0xf2, 0x50, 0x61, 0x9c, 0xc7, 0x68, 0x54, 0xbb, 0xd1, 0xcf, 0x9b, 0x3b, 0x6f, 0x5f, 0xda, + 0x85, 0x39, 0x3b, 0x6e, 0xd4, 0xf1, 0x7b, 0xed, 0x4b, 0x15, 0xd6, 0x74, 0x8b, 0xf4, 0xde, 0xd2, + 0xfe, 0xdf, 0x73, 0x1d, 0x3b, 0xdc, 0xeb, 0xef, 0x10, 0xae, 0x78, 0x96, 0x35, 0x7b, 0xc6, 0xf6, + 0xa2, 0x5f, 0x14, 0xc4, 0xb3, 0x1d, 0xef, 0x19, 0xb3, 0x67, 0xf3, 0xba, 0xde, 0xce, 0xaf, 0x68, + 0xda, 0x6f, 0xe6, 0xe6, 0x36, 0x6f, 0x72, 0x98, 0x6b, 0x57, 0xfc, 0x5e, 0x7b, 0x67, 0x96, 0x36, + 0x7d, 0xfe, 0x7f, 0x03, 0x00, 0x00, 0xff, 0xff, 0x7d, 0x7e, 0x4f, 0x33, 0xd8, 0x83, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -9232,7 +9429,9 @@ type MilvusServiceClient interface { Flush(ctx context.Context, in *FlushRequest, opts ...grpc.CallOption) (*FlushResponse, error) Query(ctx context.Context, in *QueryRequest, opts ...grpc.CallOption) (*QueryResults, error) CalcDistance(ctx context.Context, in *CalcDistanceRequest, opts ...grpc.CallOption) (*CalcDistanceResults, error) + FlushAll(ctx context.Context, in *FlushAllRequest, opts ...grpc.CallOption) (*FlushAllResponse, error) GetFlushState(ctx context.Context, in *GetFlushStateRequest, opts ...grpc.CallOption) (*GetFlushStateResponse, error) + GetFlushAllState(ctx context.Context, in *GetFlushAllStateRequest, opts ...grpc.CallOption) (*GetFlushAllStateResponse, error) GetPersistentSegmentInfo(ctx context.Context, in *GetPersistentSegmentInfoRequest, opts ...grpc.CallOption) (*GetPersistentSegmentInfoResponse, error) GetQuerySegmentInfo(ctx context.Context, in *GetQuerySegmentInfoRequest, opts ...grpc.CallOption) (*GetQuerySegmentInfoResponse, error) GetReplicas(ctx context.Context, in *GetReplicasRequest, opts ...grpc.CallOption) (*GetReplicasResponse, error) @@ -9599,6 +9798,15 @@ func (c *milvusServiceClient) CalcDistance(ctx context.Context, in *CalcDistance return out, nil } +func (c *milvusServiceClient) FlushAll(ctx context.Context, in *FlushAllRequest, opts ...grpc.CallOption) (*FlushAllResponse, error) { + out := new(FlushAllResponse) + err := c.cc.Invoke(ctx, "/milvus.proto.milvus.MilvusService/FlushAll", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + func (c *milvusServiceClient) GetFlushState(ctx context.Context, in *GetFlushStateRequest, opts ...grpc.CallOption) (*GetFlushStateResponse, error) { out := new(GetFlushStateResponse) err := c.cc.Invoke(ctx, "/milvus.proto.milvus.MilvusService/GetFlushState", in, out, opts...) @@ -9608,6 +9816,15 @@ func (c *milvusServiceClient) GetFlushState(ctx context.Context, in *GetFlushSta return out, nil } +func (c *milvusServiceClient) GetFlushAllState(ctx context.Context, in *GetFlushAllStateRequest, opts ...grpc.CallOption) (*GetFlushAllStateResponse, error) { + out := new(GetFlushAllStateResponse) + err := c.cc.Invoke(ctx, "/milvus.proto.milvus.MilvusService/GetFlushAllState", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + func (c *milvusServiceClient) GetPersistentSegmentInfo(ctx context.Context, in *GetPersistentSegmentInfoRequest, opts ...grpc.CallOption) (*GetPersistentSegmentInfoResponse, error) { out := new(GetPersistentSegmentInfoResponse) err := c.cc.Invoke(ctx, "/milvus.proto.milvus.MilvusService/GetPersistentSegmentInfo", in, out, opts...) @@ -9971,7 +10188,9 @@ type MilvusServiceServer interface { Flush(context.Context, *FlushRequest) (*FlushResponse, error) Query(context.Context, *QueryRequest) (*QueryResults, error) CalcDistance(context.Context, *CalcDistanceRequest) (*CalcDistanceResults, error) + FlushAll(context.Context, *FlushAllRequest) (*FlushAllResponse, error) GetFlushState(context.Context, *GetFlushStateRequest) (*GetFlushStateResponse, error) + GetFlushAllState(context.Context, *GetFlushAllStateRequest) (*GetFlushAllStateResponse, error) GetPersistentSegmentInfo(context.Context, *GetPersistentSegmentInfoRequest) (*GetPersistentSegmentInfoResponse, error) GetQuerySegmentInfo(context.Context, *GetQuerySegmentInfoRequest) (*GetQuerySegmentInfoResponse, error) GetReplicas(context.Context, *GetReplicasRequest) (*GetReplicasResponse, error) @@ -10124,9 +10343,15 @@ func (*UnimplementedMilvusServiceServer) Query(ctx context.Context, req *QueryRe func (*UnimplementedMilvusServiceServer) CalcDistance(ctx context.Context, req *CalcDistanceRequest) (*CalcDistanceResults, error) { return nil, status.Errorf(codes.Unimplemented, "method CalcDistance not implemented") } +func (*UnimplementedMilvusServiceServer) FlushAll(ctx context.Context, req *FlushAllRequest) (*FlushAllResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method FlushAll not implemented") +} func (*UnimplementedMilvusServiceServer) GetFlushState(ctx context.Context, req *GetFlushStateRequest) (*GetFlushStateResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method GetFlushState not implemented") } +func (*UnimplementedMilvusServiceServer) GetFlushAllState(ctx context.Context, req *GetFlushAllStateRequest) (*GetFlushAllStateResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method GetFlushAllState not implemented") +} func (*UnimplementedMilvusServiceServer) GetPersistentSegmentInfo(ctx context.Context, req *GetPersistentSegmentInfoRequest) (*GetPersistentSegmentInfoResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method GetPersistentSegmentInfo not implemented") } @@ -10870,6 +11095,24 @@ func _MilvusService_CalcDistance_Handler(srv interface{}, ctx context.Context, d return interceptor(ctx, in, info, handler) } +func _MilvusService_FlushAll_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(FlushAllRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(MilvusServiceServer).FlushAll(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/milvus.proto.milvus.MilvusService/FlushAll", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(MilvusServiceServer).FlushAll(ctx, req.(*FlushAllRequest)) + } + return interceptor(ctx, in, info, handler) +} + func _MilvusService_GetFlushState_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(GetFlushStateRequest) if err := dec(in); err != nil { @@ -10888,6 +11131,24 @@ func _MilvusService_GetFlushState_Handler(srv interface{}, ctx context.Context, return interceptor(ctx, in, info, handler) } +func _MilvusService_GetFlushAllState_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(GetFlushAllStateRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(MilvusServiceServer).GetFlushAllState(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/milvus.proto.milvus.MilvusService/GetFlushAllState", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(MilvusServiceServer).GetFlushAllState(ctx, req.(*GetFlushAllStateRequest)) + } + return interceptor(ctx, in, info, handler) +} + func _MilvusService_GetPersistentSegmentInfo_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(GetPersistentSegmentInfoRequest) if err := dec(in); err != nil { @@ -11680,10 +11941,18 @@ var _MilvusService_serviceDesc = grpc.ServiceDesc{ MethodName: "CalcDistance", Handler: _MilvusService_CalcDistance_Handler, }, + { + MethodName: "FlushAll", + Handler: _MilvusService_FlushAll_Handler, + }, { MethodName: "GetFlushState", Handler: _MilvusService_GetFlushState_Handler, }, + { + MethodName: "GetFlushAllState", + Handler: _MilvusService_GetFlushAllState_Handler, + }, { MethodName: "GetPersistentSegmentInfo", Handler: _MilvusService_GetPersistentSegmentInfo_Handler, diff --git a/go-api/schemapb/schema.pb.go b/go-api/schemapb/schema.pb.go index 7554f09..c77c5f9 100644 --- a/go-api/schemapb/schema.pb.go +++ b/go-api/schemapb/schema.pb.go @@ -21,7 +21,7 @@ var _ = math.Inf // proto package needs to be updated. const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package -// * +//* // @brief Field data type type DataType int32 @@ -109,7 +109,7 @@ func (FieldState) EnumDescriptor() ([]byte, []int) { return fileDescriptor_1c5fb4d8cc22d66a, []int{1} } -// * +//* // @brief Field schema type FieldSchema struct { FieldID int64 `protobuf:"varint,1,opt,name=fieldID,proto3" json:"fieldID,omitempty"` @@ -214,7 +214,7 @@ func (m *FieldSchema) GetState() FieldState { return FieldState_FieldCreated } -// * +//* // @brief Collection schema type CollectionSchema struct { Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` @@ -555,7 +555,6 @@ func (m *StringArray) GetData() []string { type ScalarField struct { // Types that are valid to be assigned to Data: - // // *ScalarField_BoolData // *ScalarField_IntData // *ScalarField_LongData @@ -712,7 +711,6 @@ func (*ScalarField) XXX_OneofWrappers() []interface{} { type VectorField struct { Dim int64 `protobuf:"varint,1,opt,name=dim,proto3" json:"dim,omitempty"` // Types that are valid to be assigned to Data: - // // *VectorField_FloatVector // *VectorField_BinaryVector Data isVectorField_Data `protobuf_oneof:"data"` @@ -802,7 +800,6 @@ type FieldData struct { Type DataType `protobuf:"varint,1,opt,name=type,proto3,enum=milvus.proto.schema.DataType" json:"type,omitempty"` FieldName string `protobuf:"bytes,2,opt,name=field_name,json=fieldName,proto3" json:"field_name,omitempty"` // Types that are valid to be assigned to Field: - // // *FieldData_Scalars // *FieldData_Vectors Field isFieldData_Field `protobuf_oneof:"field"` @@ -905,7 +902,6 @@ func (*FieldData) XXX_OneofWrappers() []interface{} { type IDs struct { // Types that are valid to be assigned to IdField: - // // *IDs_IntId // *IDs_StrId IdField isIDs_IdField `protobuf_oneof:"id_field"` diff --git a/proto/milvus.proto b/proto/milvus.proto index f569bba..40bde75 100644 --- a/proto/milvus.proto +++ b/proto/milvus.proto @@ -58,8 +58,10 @@ service MilvusService { rpc Flush(FlushRequest) returns (FlushResponse) {} rpc Query(QueryRequest) returns (QueryResults) {} rpc CalcDistance(CalcDistanceRequest) returns (CalcDistanceResults) {} + rpc FlushAll(FlushAllRequest) returns (FlushAllResponse) {} rpc GetFlushState(GetFlushStateRequest) returns (GetFlushStateResponse) {} + rpc GetFlushAllState(GetFlushAllStateRequest) returns (GetFlushAllStateResponse) {} rpc GetPersistentSegmentInfo(GetPersistentSegmentInfoRequest) returns (GetPersistentSegmentInfoResponse) {} rpc GetQuerySegmentInfo(GetQuerySegmentInfoRequest) returns (GetQuerySegmentInfoResponse) {} rpc GetReplicas(GetReplicasRequest) returns (GetReplicasResponse) {} @@ -917,6 +919,14 @@ message CalcDistanceResults { } } +message FlushAllRequest { +} + +message FlushAllResponse { + common.Status status = 1; + uint64 flush_all_ts = 2; +} + message PersistentSegmentInfo { int64 segmentID = 1; int64 collectionID = 2; @@ -1073,6 +1083,16 @@ message GetFlushStateResponse { bool flushed = 2; } +message GetFlushAllStateRequest { + common.MsgBase base = 1; + uint64 flush_all_ts = 2; +} + +message GetFlushAllStateResponse { + common.Status status = 1; + bool flushed = 2; +} + message ImportRequest { option (common.privilege_ext_obj) = { object_type: Collection