Store index ID to filter out invalid handoff event (#19703)

Signed-off-by: yah01 <yang.cen@zilliz.com>

Signed-off-by: yah01 <yang.cen@zilliz.com>
pull/19917/head
yah01 2022-10-20 11:29:27 +08:00 committed by GitHub
parent 02a8a07322
commit 470e8ef419
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
11 changed files with 591 additions and 278 deletions

View File

@ -868,6 +868,7 @@ func (i *IndexCoord) DescribeIndex(ctx context.Context, req *indexpb.DescribeInd
IndexParams: index.IndexParams,
IsAutoIndex: index.IsAutoIndex,
UserIndexParams: index.UserIndexParams,
IndexID: index.IndexID,
}
if err := i.completeIndexInfo(ctx, indexInfo); err != nil {
log.Error("IndexCoord describe index fail", zap.Int64("collectionID", req.CollectionID),

View File

@ -466,6 +466,7 @@ message CollectionLoadInfo {
repeated int64 released_partitions = 2;
int32 replica_number = 3;
LoadStatus status = 4;
map<int64, int64> field_indexID = 5;
}
message PartitionLoadInfo {
@ -473,6 +474,7 @@ message PartitionLoadInfo {
int64 partitionID = 2;
int32 replica_number = 3;
LoadStatus status = 4;
map<int64, int64> field_indexID = 5;
}
message Replica {

View File

@ -3303,13 +3303,14 @@ func (m *ChannelVersionInfo) GetVersion() int64 {
}
type CollectionLoadInfo struct {
CollectionID int64 `protobuf:"varint,1,opt,name=collectionID,proto3" json:"collectionID,omitempty"`
ReleasedPartitions []int64 `protobuf:"varint,2,rep,packed,name=released_partitions,json=releasedPartitions,proto3" json:"released_partitions,omitempty"`
ReplicaNumber int32 `protobuf:"varint,3,opt,name=replica_number,json=replicaNumber,proto3" json:"replica_number,omitempty"`
Status LoadStatus `protobuf:"varint,4,opt,name=status,proto3,enum=milvus.proto.query.LoadStatus" json:"status,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
CollectionID int64 `protobuf:"varint,1,opt,name=collectionID,proto3" json:"collectionID,omitempty"`
ReleasedPartitions []int64 `protobuf:"varint,2,rep,packed,name=released_partitions,json=releasedPartitions,proto3" json:"released_partitions,omitempty"`
ReplicaNumber int32 `protobuf:"varint,3,opt,name=replica_number,json=replicaNumber,proto3" json:"replica_number,omitempty"`
Status LoadStatus `protobuf:"varint,4,opt,name=status,proto3,enum=milvus.proto.query.LoadStatus" json:"status,omitempty"`
FieldIndexID map[int64]int64 `protobuf:"bytes,5,rep,name=field_indexID,json=fieldIndexID,proto3" json:"field_indexID,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *CollectionLoadInfo) Reset() { *m = CollectionLoadInfo{} }
@ -3365,14 +3366,22 @@ func (m *CollectionLoadInfo) GetStatus() LoadStatus {
return LoadStatus_Invalid
}
func (m *CollectionLoadInfo) GetFieldIndexID() map[int64]int64 {
if m != nil {
return m.FieldIndexID
}
return nil
}
type PartitionLoadInfo struct {
CollectionID int64 `protobuf:"varint,1,opt,name=collectionID,proto3" json:"collectionID,omitempty"`
PartitionID int64 `protobuf:"varint,2,opt,name=partitionID,proto3" json:"partitionID,omitempty"`
ReplicaNumber int32 `protobuf:"varint,3,opt,name=replica_number,json=replicaNumber,proto3" json:"replica_number,omitempty"`
Status LoadStatus `protobuf:"varint,4,opt,name=status,proto3,enum=milvus.proto.query.LoadStatus" json:"status,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
CollectionID int64 `protobuf:"varint,1,opt,name=collectionID,proto3" json:"collectionID,omitempty"`
PartitionID int64 `protobuf:"varint,2,opt,name=partitionID,proto3" json:"partitionID,omitempty"`
ReplicaNumber int32 `protobuf:"varint,3,opt,name=replica_number,json=replicaNumber,proto3" json:"replica_number,omitempty"`
Status LoadStatus `protobuf:"varint,4,opt,name=status,proto3,enum=milvus.proto.query.LoadStatus" json:"status,omitempty"`
FieldIndexID map[int64]int64 `protobuf:"bytes,5,rep,name=field_indexID,json=fieldIndexID,proto3" json:"field_indexID,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *PartitionLoadInfo) Reset() { *m = PartitionLoadInfo{} }
@ -3428,6 +3437,13 @@ func (m *PartitionLoadInfo) GetStatus() LoadStatus {
return LoadStatus_Invalid
}
func (m *PartitionLoadInfo) GetFieldIndexID() map[int64]int64 {
if m != nil {
return m.FieldIndexID
}
return nil
}
type Replica struct {
ID int64 `protobuf:"varint,1,opt,name=ID,proto3" json:"ID,omitempty"`
CollectionID int64 `protobuf:"varint,2,opt,name=collectionID,proto3" json:"collectionID,omitempty"`
@ -3673,7 +3689,9 @@ func init() {
proto.RegisterType((*SegmentVersionInfo)(nil), "milvus.proto.query.SegmentVersionInfo")
proto.RegisterType((*ChannelVersionInfo)(nil), "milvus.proto.query.ChannelVersionInfo")
proto.RegisterType((*CollectionLoadInfo)(nil), "milvus.proto.query.CollectionLoadInfo")
proto.RegisterMapType((map[int64]int64)(nil), "milvus.proto.query.CollectionLoadInfo.FieldIndexIDEntry")
proto.RegisterType((*PartitionLoadInfo)(nil), "milvus.proto.query.PartitionLoadInfo")
proto.RegisterMapType((map[int64]int64)(nil), "milvus.proto.query.PartitionLoadInfo.FieldIndexIDEntry")
proto.RegisterType((*Replica)(nil), "milvus.proto.query.Replica")
proto.RegisterType((*SyncAction)(nil), "milvus.proto.query.SyncAction")
proto.RegisterType((*SyncDistributionRequest)(nil), "milvus.proto.query.SyncDistributionRequest")
@ -3682,234 +3700,236 @@ func init() {
func init() { proto.RegisterFile("query_coord.proto", fileDescriptor_aab7cc9a69ed26e8) }
var fileDescriptor_aab7cc9a69ed26e8 = []byte{
// 3627 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x3b, 0x49, 0x6f, 0x1c, 0x57,
0x7a, 0xac, 0x5e, 0xc8, 0xee, 0xaf, 0x17, 0x16, 0x1f, 0x25, 0xaa, 0xdd, 0xd6, 0x42, 0x97, 0x16,
0x33, 0x94, 0x4d, 0xca, 0x94, 0x6d, 0xc8, 0xb1, 0x0d, 0x47, 0x22, 0x2d, 0x8a, 0x91, 0x44, 0x33,
0xd5, 0x92, 0x12, 0x08, 0x46, 0xda, 0xd5, 0x5d, 0x8f, 0xcd, 0x82, 0xaa, 0xab, 0x5a, 0x55, 0xd5,
0x94, 0xe8, 0x5c, 0x73, 0x89, 0x91, 0x04, 0x48, 0x0e, 0x39, 0x05, 0x39, 0x25, 0x40, 0x12, 0xd8,
0x41, 0x0e, 0x09, 0x90, 0x43, 0x10, 0x04, 0xc8, 0x21, 0x39, 0x05, 0xf3, 0x03, 0x06, 0x98, 0x1f,
0x30, 0x03, 0xcc, 0x69, 0x0e, 0x73, 0x18, 0x60, 0xf0, 0xb6, 0x5a, 0x5f, 0x91, 0x2d, 0x52, 0xf2,
0x32, 0x98, 0x5b, 0xd7, 0xf7, 0x96, 0xef, 0x7b, 0xdf, 0xfe, 0x7d, 0xef, 0x35, 0xcc, 0x3d, 0x1d,
0x63, 0xef, 0xa0, 0xdb, 0x77, 0x5d, 0xcf, 0x5c, 0x19, 0x79, 0x6e, 0xe0, 0x22, 0x34, 0xb4, 0xec,
0xfd, 0xb1, 0xcf, 0xbe, 0x56, 0xe8, 0x78, 0xbb, 0xde, 0x77, 0x87, 0x43, 0xd7, 0x61, 0xb0, 0x76,
0x3d, 0x3e, 0xa3, 0xdd, 0xb4, 0x9c, 0x00, 0x7b, 0x8e, 0x61, 0x8b, 0x51, 0xbf, 0xbf, 0x87, 0x87,
0x06, 0xff, 0x52, 0x4d, 0x23, 0x30, 0xe2, 0xfb, 0x6b, 0x7f, 0xaa, 0xc0, 0x42, 0x67, 0xcf, 0x7d,
0xb6, 0xee, 0xda, 0x36, 0xee, 0x07, 0x96, 0xeb, 0xf8, 0x3a, 0x7e, 0x3a, 0xc6, 0x7e, 0x80, 0xae,
0x41, 0xa9, 0x67, 0xf8, 0xb8, 0xa5, 0x2c, 0x2a, 0x4b, 0xb5, 0xb5, 0xb3, 0x2b, 0x09, 0x4a, 0x38,
0x09, 0xf7, 0xfd, 0xc1, 0x2d, 0xc3, 0xc7, 0x3a, 0x9d, 0x89, 0x10, 0x94, 0xcc, 0xde, 0xd6, 0x46,
0xab, 0xb0, 0xa8, 0x2c, 0x15, 0x75, 0xfa, 0x1b, 0x5d, 0x82, 0x46, 0x3f, 0xdc, 0x7b, 0x6b, 0xc3,
0x6f, 0x15, 0x17, 0x8b, 0x4b, 0x45, 0x3d, 0x09, 0xd4, 0x7e, 0xa2, 0xc0, 0x99, 0x0c, 0x19, 0xfe,
0xc8, 0x75, 0x7c, 0x8c, 0xae, 0xc3, 0xb4, 0x1f, 0x18, 0xc1, 0xd8, 0xe7, 0x94, 0xbc, 0x2e, 0xa5,
0xa4, 0x43, 0xa7, 0xe8, 0x7c, 0x6a, 0x16, 0x6d, 0x41, 0x82, 0x16, 0xbd, 0x03, 0xa7, 0x2c, 0xe7,
0x3e, 0x1e, 0xba, 0xde, 0x41, 0x77, 0x84, 0xbd, 0x3e, 0x76, 0x02, 0x63, 0x80, 0x05, 0x8d, 0xf3,
0x62, 0x6c, 0x27, 0x1a, 0x42, 0xef, 0xc3, 0x19, 0x26, 0x25, 0x1f, 0x7b, 0xfb, 0x56, 0x1f, 0x77,
0x8d, 0x7d, 0xc3, 0xb2, 0x8d, 0x9e, 0x8d, 0x5b, 0xa5, 0xc5, 0xe2, 0x52, 0x45, 0x3f, 0x4d, 0x87,
0x3b, 0x6c, 0xf4, 0xa6, 0x18, 0xd4, 0xfe, 0x41, 0x81, 0xd3, 0xe4, 0x84, 0x3b, 0x86, 0x17, 0x58,
0xaf, 0x80, 0xcf, 0x1a, 0xd4, 0xe3, 0x67, 0x6b, 0x15, 0xe9, 0x58, 0x02, 0x46, 0xe6, 0x8c, 0x04,
0x7a, 0xc2, 0x93, 0x12, 0x3d, 0x66, 0x02, 0xa6, 0xfd, 0x3d, 0x57, 0x88, 0x38, 0x9d, 0x27, 0x11,
0x44, 0x1a, 0x67, 0x21, 0x8b, 0xf3, 0x18, 0x62, 0xd0, 0xbe, 0x2a, 0xc2, 0xe9, 0x7b, 0xae, 0x61,
0x46, 0x0a, 0xf3, 0xed, 0xb3, 0xf3, 0x63, 0x98, 0x66, 0xd6, 0xd5, 0x2a, 0x51, 0x5c, 0x97, 0x93,
0xb8, 0xb8, 0xe5, 0x45, 0x14, 0x76, 0x28, 0x40, 0xe7, 0x8b, 0xd0, 0x65, 0x68, 0x7a, 0x78, 0x64,
0x5b, 0x7d, 0xa3, 0xeb, 0x8c, 0x87, 0x3d, 0xec, 0xb5, 0xca, 0x8b, 0xca, 0x52, 0x59, 0x6f, 0x70,
0xe8, 0x36, 0x05, 0xa2, 0x2f, 0xa0, 0xb1, 0x6b, 0x61, 0xdb, 0xec, 0x5a, 0x8e, 0x89, 0x9f, 0x6f,
0x6d, 0xb4, 0xa6, 0x17, 0x8b, 0x4b, 0xb5, 0xb5, 0x0f, 0x57, 0xb2, 0x9e, 0x61, 0x45, 0xca, 0x91,
0x95, 0xdb, 0x64, 0xf9, 0x16, 0x5b, 0xfd, 0xa9, 0x13, 0x78, 0x07, 0x7a, 0x7d, 0x37, 0x06, 0x6a,
0x7f, 0x02, 0x73, 0x99, 0x29, 0x48, 0x85, 0xe2, 0x13, 0x7c, 0x40, 0xb9, 0x58, 0xd4, 0xc9, 0x4f,
0x74, 0x0a, 0xca, 0xfb, 0x86, 0x3d, 0xc6, 0x9c, 0x4f, 0xec, 0xe3, 0x77, 0x0b, 0x37, 0x14, 0xed,
0x6f, 0x15, 0x68, 0xe9, 0xd8, 0xc6, 0x86, 0x8f, 0xbf, 0x4b, 0x79, 0x2c, 0xc0, 0xb4, 0xe3, 0x9a,
0x78, 0x6b, 0x83, 0xca, 0xa3, 0xa8, 0xf3, 0x2f, 0xed, 0x97, 0x0a, 0x9c, 0xda, 0xc4, 0x01, 0x51,
0x4c, 0xcb, 0x0f, 0xac, 0x7e, 0x68, 0x79, 0x1f, 0x43, 0xd1, 0xc3, 0x4f, 0x39, 0x65, 0x57, 0x93,
0x94, 0x85, 0x7e, 0x54, 0xb6, 0x52, 0x27, 0xeb, 0xd0, 0x1b, 0x50, 0x37, 0x87, 0x76, 0xb7, 0xbf,
0x67, 0x38, 0x0e, 0xb6, 0x99, 0x6a, 0x57, 0xf5, 0x9a, 0x39, 0xb4, 0xd7, 0x39, 0x08, 0x9d, 0x07,
0xf0, 0xf1, 0x60, 0x88, 0x9d, 0x20, 0x72, 0x7d, 0x31, 0x08, 0x5a, 0x86, 0xb9, 0x5d, 0xcf, 0x1d,
0x76, 0xfd, 0x3d, 0xc3, 0x33, 0xbb, 0x36, 0x36, 0x4c, 0xec, 0x51, 0xea, 0x2b, 0xfa, 0x2c, 0x19,
0xe8, 0x10, 0xf8, 0x3d, 0x0a, 0x46, 0xd7, 0xa1, 0xec, 0xf7, 0xdd, 0x11, 0xa6, 0x6a, 0xd2, 0x5c,
0x3b, 0x27, 0x53, 0x80, 0x0d, 0x23, 0x30, 0x3a, 0x64, 0x92, 0xce, 0xe6, 0x6a, 0xff, 0xc2, 0xed,
0xe4, 0x7b, 0xee, 0x76, 0x62, 0xb6, 0x54, 0x7e, 0x39, 0xb6, 0x34, 0x3d, 0x91, 0x2d, 0xcd, 0x1c,
0x6e, 0x4b, 0x19, 0xae, 0xbd, 0x7a, 0x5b, 0xfa, 0xef, 0xc8, 0x96, 0xbe, 0xef, 0x32, 0x8b, 0xec,
0xad, 0x9c, 0xb0, 0xb7, 0x7f, 0x52, 0xe0, 0xb5, 0x4d, 0x1c, 0x84, 0xe4, 0x13, 0xf3, 0xc1, 0xdf,
0xd3, 0x70, 0xf7, 0x8d, 0x02, 0x6d, 0x19, 0xad, 0x27, 0x09, 0x79, 0x8f, 0x61, 0x21, 0xc4, 0xd1,
0x35, 0xb1, 0xdf, 0xf7, 0xac, 0x11, 0x15, 0x23, 0xf5, 0x10, 0xb5, 0xb5, 0x8b, 0x32, 0x75, 0x4b,
0x53, 0x70, 0x3a, 0xdc, 0x62, 0x23, 0xb6, 0x83, 0xf6, 0x17, 0x0a, 0x9c, 0x26, 0x1e, 0x89, 0xbb,
0x10, 0x67, 0xd7, 0x3d, 0x3e, 0x5f, 0x93, 0xce, 0xa9, 0x90, 0x71, 0x4e, 0x13, 0xf0, 0x98, 0xe6,
0x8f, 0x69, 0x7a, 0x4e, 0xc2, 0xbb, 0xf7, 0xa0, 0x6c, 0x39, 0xbb, 0xae, 0x60, 0xd5, 0x05, 0x19,
0xab, 0xe2, 0xc8, 0xd8, 0x6c, 0xcd, 0x61, 0x54, 0x44, 0xde, 0xf2, 0x04, 0xea, 0x96, 0x3e, 0x76,
0x41, 0x72, 0xec, 0x3f, 0x57, 0xe0, 0x4c, 0x06, 0xe1, 0x49, 0xce, 0xfd, 0x11, 0x4c, 0xd3, 0x18,
0x20, 0x0e, 0x7e, 0x49, 0x7a, 0xf0, 0x18, 0xba, 0x7b, 0x96, 0x1f, 0xe8, 0x7c, 0x8d, 0xe6, 0x82,
0x9a, 0x1e, 0x23, 0xd1, 0x89, 0x47, 0xa6, 0xae, 0x63, 0x0c, 0x19, 0x03, 0xaa, 0x7a, 0x8d, 0xc3,
0xb6, 0x8d, 0x21, 0x46, 0xaf, 0x41, 0x85, 0x98, 0x6c, 0xd7, 0x32, 0x85, 0xf8, 0x67, 0xa8, 0x09,
0x9b, 0x3e, 0x3a, 0x07, 0x40, 0x87, 0x0c, 0xd3, 0xf4, 0x58, 0xe0, 0xaa, 0xea, 0x55, 0x02, 0xb9,
0x49, 0x00, 0xda, 0x5f, 0x29, 0x50, 0x27, 0x0e, 0xf2, 0x3e, 0x0e, 0x0c, 0x22, 0x07, 0xf4, 0x01,
0x54, 0x6d, 0xd7, 0x30, 0xbb, 0xc1, 0xc1, 0x88, 0xa1, 0x6a, 0xa6, 0x79, 0x1d, 0x79, 0xd5, 0x07,
0x07, 0x23, 0xac, 0x57, 0x6c, 0xfe, 0x6b, 0x12, 0x7e, 0x67, 0x4c, 0xb9, 0x28, 0x31, 0xe5, 0xaf,
0xcb, 0xb0, 0xf0, 0x87, 0x46, 0xd0, 0xdf, 0xdb, 0x18, 0x8a, 0xf8, 0x7b, 0x7c, 0x25, 0x88, 0x7c,
0x5b, 0x21, 0xee, 0xdb, 0x5e, 0x9a, 0xef, 0x0c, 0xf5, 0xbc, 0x2c, 0xd3, 0x73, 0x52, 0xa6, 0xad,
0x3c, 0xe2, 0xa2, 0x8a, 0xe9, 0x79, 0x2c, 0x4c, 0x4e, 0x1f, 0x27, 0x4c, 0xae, 0x43, 0x03, 0x3f,
0xef, 0xdb, 0x63, 0x22, 0x73, 0x8a, 0x9d, 0xc5, 0xbf, 0xf3, 0x12, 0xec, 0x71, 0x23, 0xab, 0xf3,
0x45, 0x5b, 0x9c, 0x06, 0x26, 0xea, 0x21, 0x0e, 0x8c, 0x56, 0x85, 0x92, 0xb1, 0x98, 0x27, 0x6a,
0xa1, 0x1f, 0x4c, 0xdc, 0xe4, 0x0b, 0x9d, 0x85, 0x2a, 0x0f, 0xca, 0x5b, 0x1b, 0xad, 0x2a, 0x65,
0x5f, 0x04, 0x40, 0x06, 0x34, 0xb8, 0x07, 0xe2, 0x14, 0x02, 0xa5, 0xf0, 0x23, 0x19, 0x02, 0xb9,
0xb0, 0xe3, 0x94, 0xfb, 0x3c, 0x44, 0xfb, 0x31, 0x10, 0x29, 0x0d, 0xdd, 0xdd, 0x5d, 0xdb, 0x72,
0xf0, 0x36, 0x93, 0x70, 0x8d, 0x12, 0x91, 0x04, 0xb6, 0xbb, 0x30, 0x97, 0xd9, 0x48, 0x12, 0xc8,
0xdf, 0x8d, 0x07, 0xf2, 0xa3, 0x39, 0x19, 0x0b, 0xf4, 0xff, 0xa8, 0xc0, 0xe9, 0x87, 0x8e, 0x3f,
0xee, 0x85, 0x27, 0xf8, 0x6e, 0xb4, 0x35, 0xed, 0x27, 0x4a, 0x19, 0x3f, 0xa1, 0xfd, 0x57, 0x09,
0x66, 0xf9, 0x29, 0x88, 0x50, 0xa9, 0xc1, 0x9f, 0x85, 0x6a, 0x18, 0x2a, 0x38, 0x43, 0x22, 0x00,
0x5a, 0x84, 0x5a, 0x4c, 0xdd, 0x39, 0x55, 0x71, 0xd0, 0x44, 0xa4, 0x89, 0xc0, 0x5f, 0x8a, 0x05,
0xfe, 0x73, 0x00, 0xbb, 0xf6, 0xd8, 0xdf, 0xeb, 0x06, 0xd6, 0x10, 0xf3, 0xc4, 0xa3, 0x4a, 0x21,
0x0f, 0xac, 0x21, 0x46, 0x37, 0xa1, 0xde, 0xb3, 0x1c, 0xdb, 0x1d, 0x74, 0x47, 0x46, 0xb0, 0xe7,
0xf3, 0x62, 0x49, 0x26, 0x16, 0x9a, 0xa6, 0xdd, 0xa2, 0x73, 0xf5, 0x1a, 0x5b, 0xb3, 0x43, 0x96,
0xa0, 0xf3, 0x50, 0x73, 0xc6, 0xc3, 0xae, 0xbb, 0xdb, 0xf5, 0xdc, 0x67, 0xc4, 0x44, 0x28, 0x0a,
0x67, 0x3c, 0xfc, 0x6c, 0x57, 0x77, 0x9f, 0x11, 0x57, 0x5d, 0x25, 0x4e, 0xdb, 0xb7, 0xdd, 0x81,
0xdf, 0xaa, 0x4c, 0xb4, 0x7f, 0xb4, 0x80, 0xac, 0x36, 0xb1, 0x1d, 0x18, 0x74, 0x75, 0x75, 0xb2,
0xd5, 0xe1, 0x02, 0x74, 0x05, 0x9a, 0x7d, 0x77, 0x38, 0x32, 0x28, 0x87, 0x6e, 0x7b, 0xee, 0x90,
0xda, 0x47, 0x51, 0x4f, 0x41, 0xd1, 0x3a, 0xd4, 0x68, 0x8a, 0xcb, 0x8d, 0xa8, 0x46, 0xf1, 0x68,
0x32, 0x23, 0x8a, 0x65, 0xab, 0x44, 0x41, 0xc1, 0x12, 0x3f, 0x7d, 0xa2, 0x19, 0xc2, 0x16, 0x7d,
0xeb, 0x4b, 0xdc, 0xaa, 0x33, 0x29, 0x72, 0x58, 0xc7, 0xfa, 0x12, 0x93, 0xbc, 0xdb, 0x72, 0x7c,
0xec, 0x05, 0xa2, 0x0a, 0x6a, 0x35, 0xa8, 0xfa, 0x34, 0x18, 0x94, 0x2b, 0xb6, 0xf6, 0xf3, 0x02,
0x34, 0x93, 0x88, 0x50, 0x0b, 0x66, 0x58, 0xe2, 0x2c, 0xb4, 0x47, 0x7c, 0x12, 0xb4, 0xd8, 0x31,
0x7a, 0x36, 0x66, 0x59, 0x3a, 0x55, 0x9e, 0x8a, 0x5e, 0x63, 0x30, 0xba, 0x01, 0x51, 0x02, 0x76,
0x3c, 0xaa, 0xb1, 0x45, 0x8a, 0xb2, 0x4a, 0x21, 0x34, 0xae, 0xb5, 0x60, 0x46, 0x24, 0xf8, 0x4c,
0x75, 0xc4, 0x27, 0x19, 0xe9, 0x8d, 0x2d, 0x8a, 0x95, 0xa9, 0x8e, 0xf8, 0x44, 0x1b, 0x50, 0x67,
0x5b, 0x8e, 0x0c, 0xcf, 0x18, 0x0a, 0xc5, 0x79, 0x43, 0x6a, 0x7c, 0x77, 0xf1, 0xc1, 0x23, 0x62,
0xc7, 0x3b, 0x86, 0xe5, 0xe9, 0x8c, 0xd1, 0x3b, 0x74, 0x15, 0x5a, 0x02, 0x95, 0xed, 0xb2, 0x6b,
0xd9, 0x98, 0xab, 0xe0, 0x0c, 0x0d, 0x9e, 0x4d, 0x0a, 0xbf, 0x6d, 0xd9, 0x98, 0x69, 0x59, 0x78,
0x04, 0xca, 0xda, 0x0a, 0x53, 0x32, 0x0a, 0xa1, 0x8c, 0xbd, 0x08, 0x0d, 0x36, 0xbc, 0x8f, 0x3d,
0xdf, 0x72, 0x1d, 0xee, 0x29, 0x19, 0x8d, 0x8f, 0x18, 0x8c, 0xc6, 0xef, 0xf1, 0x90, 0xa9, 0x29,
0xb0, 0xe3, 0x38, 0xe3, 0x21, 0x51, 0x52, 0xed, 0xaf, 0x4b, 0x30, 0x4f, 0x6c, 0x95, 0x9b, 0xed,
0x09, 0x22, 0xe1, 0x39, 0x00, 0xd3, 0x0f, 0xba, 0x09, 0xff, 0x52, 0x35, 0xfd, 0x80, 0xf9, 0x49,
0xf4, 0x81, 0x08, 0x64, 0xc5, 0xfc, 0xdc, 0x36, 0xe5, 0x3b, 0xb2, 0xc1, 0xec, 0x58, 0xfd, 0x93,
0x8b, 0xd0, 0xf0, 0xdd, 0xb1, 0xd7, 0xc7, 0xdd, 0x44, 0x15, 0x52, 0x67, 0xc0, 0x6d, 0xb9, 0x07,
0x9c, 0x96, 0xf6, 0x71, 0x62, 0x01, 0x6d, 0xe6, 0x64, 0x01, 0xad, 0x92, 0x0e, 0x68, 0x77, 0x61,
0x96, 0x9a, 0x6f, 0x77, 0xe4, 0xfa, 0xac, 0x98, 0xe3, 0x56, 0xaf, 0xe5, 0xf4, 0x1b, 0xee, 0xfb,
0x83, 0x1d, 0x3e, 0x55, 0x6f, 0xd2, 0xa5, 0xe2, 0xd3, 0x27, 0xea, 0x2b, 0xf4, 0x81, 0xcb, 0x9b,
0x7f, 0x12, 0x66, 0x38, 0x18, 0x9b, 0xdd, 0xc0, 0x33, 0x1c, 0x7f, 0x17, 0x7b, 0x34, 0xa8, 0x55,
0xf4, 0x3a, 0x01, 0x3e, 0xe0, 0x30, 0xed, 0xff, 0x0b, 0xb0, 0xc0, 0x6b, 0xcb, 0x93, 0xeb, 0x45,
0x5e, 0xcc, 0x11, 0x4e, 0xbb, 0x78, 0x48, 0xb5, 0x56, 0x9a, 0x20, 0x6b, 0x2a, 0x4b, 0xb2, 0xa6,
0x64, 0xc5, 0x32, 0x9d, 0xa9, 0x58, 0xc2, 0x16, 0xc9, 0xcc, 0xe4, 0x2d, 0x12, 0x52, 0x8b, 0xd3,
0x34, 0x9a, 0xca, 0xae, 0xaa, 0xb3, 0x8f, 0xc9, 0x18, 0xfa, 0x53, 0x05, 0x1a, 0x1d, 0x6c, 0x78,
0xfd, 0x3d, 0xc1, 0xc7, 0xf7, 0xe3, 0x2d, 0xa5, 0x4b, 0x39, 0x22, 0x4e, 0x2c, 0xf9, 0xe1, 0xf4,
0x92, 0x7e, 0xa6, 0x40, 0xfd, 0x0f, 0xc8, 0x90, 0x38, 0xec, 0x8d, 0xf8, 0x61, 0xaf, 0xe4, 0x1c,
0x56, 0xc7, 0x81, 0x67, 0xe1, 0x7d, 0xfc, 0x83, 0x3b, 0xee, 0xff, 0x2a, 0xd0, 0xee, 0x1c, 0x38,
0x7d, 0x9d, 0xd9, 0xf2, 0xc9, 0x2d, 0xe6, 0x22, 0x34, 0xf6, 0x13, 0xa9, 0x56, 0x81, 0x2a, 0x5c,
0x7d, 0x3f, 0x5e, 0x93, 0xe9, 0xa0, 0x8a, 0x4e, 0x16, 0x3f, 0xac, 0x70, 0xad, 0x6f, 0xca, 0xa8,
0x4e, 0x11, 0x47, 0x5d, 0xd3, 0xac, 0x97, 0x04, 0x6a, 0x7f, 0xa9, 0xc0, 0xbc, 0x64, 0x22, 0x3a,
0x03, 0x33, 0xbc, 0xfe, 0xe3, 0x31, 0x98, 0xd9, 0xb0, 0x49, 0xc4, 0x13, 0x75, 0x30, 0x2c, 0x33,
0x9b, 0xbf, 0x99, 0xe8, 0x02, 0xd4, 0xc2, 0x44, 0xdd, 0xcc, 0xc8, 0xc7, 0xf4, 0x51, 0x1b, 0x2a,
0xdc, 0x39, 0x89, 0x0a, 0x28, 0xfc, 0xd6, 0xfe, 0x53, 0x81, 0x85, 0x3b, 0x86, 0x63, 0xba, 0xbb,
0xbb, 0x27, 0x67, 0xeb, 0x3a, 0x24, 0xf2, 0xfb, 0x49, 0x3b, 0x07, 0xc9, 0xa2, 0xe0, 0x2a, 0xcc,
0x79, 0xcc, 0x33, 0x9a, 0x49, 0xbe, 0x17, 0x75, 0x55, 0x0c, 0x84, 0xfc, 0xfc, 0xba, 0x00, 0x88,
0x04, 0x83, 0x5b, 0x86, 0x6d, 0x38, 0x7d, 0x7c, 0x7c, 0xd2, 0x2f, 0x43, 0x33, 0x11, 0xc2, 0xc2,
0x6b, 0xaa, 0x78, 0x0c, 0xf3, 0xd1, 0x5d, 0x68, 0xf6, 0x18, 0xaa, 0xae, 0x87, 0x0d, 0xdf, 0x75,
0xa8, 0x73, 0x6d, 0xca, 0x9b, 0x04, 0x0f, 0x3c, 0x6b, 0x30, 0xc0, 0xde, 0xba, 0xeb, 0x98, 0x2c,
0x88, 0x34, 0x7a, 0x82, 0x4c, 0xb2, 0x94, 0x08, 0x2e, 0x8a, 0xe7, 0x42, 0x34, 0x10, 0x06, 0x74,
0xca, 0x0a, 0x1f, 0x1b, 0x76, 0xc4, 0x88, 0xc8, 0x1b, 0xab, 0x6c, 0xa0, 0x93, 0xdf, 0x23, 0x92,
0xc4, 0x57, 0xed, 0xdf, 0x14, 0x40, 0x61, 0x91, 0x43, 0x8b, 0x36, 0xaa, 0x7d, 0xe9, 0xa5, 0x8a,
0x24, 0x28, 0x9c, 0x85, 0xaa, 0x29, 0x56, 0x72, 0x73, 0x89, 0x00, 0xd4, 0x47, 0x53, 0xa2, 0xbb,
0x24, 0x18, 0x63, 0x53, 0x14, 0x11, 0x0c, 0x78, 0x8f, 0xc2, 0x92, 0xe1, 0xb9, 0x94, 0x0e, 0xcf,
0xf1, 0x16, 0x48, 0x39, 0xd1, 0x02, 0xd1, 0xbe, 0x29, 0x80, 0x4a, 0xdd, 0xdd, 0x7a, 0x54, 0x87,
0x4f, 0x44, 0xf4, 0x45, 0x68, 0xf0, 0x8b, 0xdc, 0x04, 0xe1, 0xf5, 0xa7, 0xb1, 0xcd, 0xd0, 0x35,
0x38, 0xc5, 0x26, 0x79, 0xd8, 0x1f, 0xdb, 0x51, 0xfe, 0xcc, 0x92, 0x59, 0xf4, 0x94, 0xf9, 0x59,
0x32, 0x24, 0x56, 0x3c, 0x84, 0x85, 0x81, 0xed, 0xf6, 0x0c, 0xbb, 0x9b, 0x14, 0x0f, 0x93, 0xe1,
0x04, 0x1a, 0x7f, 0x8a, 0x2d, 0xef, 0xc4, 0x65, 0xe8, 0xa3, 0x4d, 0x52, 0x71, 0xe3, 0x27, 0x61,
0x7e, 0xc2, 0x1b, 0xf0, 0x93, 0xa4, 0x27, 0x75, 0xb2, 0x50, 0x7c, 0x69, 0x7f, 0xa7, 0xc0, 0x6c,
0xaa, 0x8b, 0x99, 0xae, 0x03, 0x95, 0x6c, 0x1d, 0x78, 0x03, 0xca, 0xa4, 0x38, 0x62, 0xce, 0xb0,
0x29, 0xaf, 0x51, 0x92, 0xbb, 0xea, 0x6c, 0x01, 0x5a, 0x85, 0x79, 0xc9, 0xad, 0x21, 0xd7, 0x01,
0x94, 0xbd, 0x34, 0xd4, 0x7e, 0x5c, 0x82, 0x5a, 0x8c, 0x1f, 0x47, 0x94, 0xb0, 0x93, 0xb4, 0xa5,
0x52, 0xc7, 0x2b, 0x66, 0x8f, 0x97, 0x73, 0x27, 0x45, 0xf4, 0x6e, 0x88, 0x87, 0x2c, 0xf9, 0xe7,
0x95, 0xc8, 0x10, 0x0f, 0x69, 0xea, 0x1f, 0xcf, 0xea, 0xa7, 0x13, 0x59, 0x7d, 0xaa, 0xee, 0x99,
0x39, 0xa4, 0xee, 0xa9, 0x24, 0xeb, 0x9e, 0x84, 0x1d, 0x55, 0xd3, 0x76, 0x34, 0x69, 0x55, 0x79,
0x0d, 0xe6, 0xfb, 0x1e, 0x36, 0x02, 0x6c, 0xde, 0x3a, 0x58, 0x0f, 0x87, 0x78, 0x66, 0x24, 0x1b,
0x42, 0xb7, 0xa3, 0x76, 0x0e, 0x93, 0x72, 0x9d, 0x4a, 0x59, 0x5e, 0x56, 0x71, 0xd9, 0x30, 0x21,
0x0b, 0xf7, 0x4c, 0xbf, 0xd2, 0xf5, 0x6c, 0xe3, 0x58, 0xf5, 0xec, 0x05, 0xa8, 0x89, 0xd0, 0x4a,
0xcc, 0xbd, 0xc9, 0x3c, 0x9f, 0xf0, 0x05, 0xa6, 0x9f, 0x70, 0x06, 0xb3, 0xc9, 0x7e, 0x68, 0xba,
0x28, 0x55, 0x33, 0x45, 0xa9, 0xf6, 0xa3, 0x22, 0x34, 0xa3, 0x62, 0x65, 0x62, 0x6f, 0x31, 0xc9,
0x05, 0xf9, 0x36, 0xa8, 0x51, 0x3c, 0xa6, 0x8c, 0x3c, 0xb4, 0xde, 0x4a, 0xdf, 0x25, 0xcc, 0x8e,
0x52, 0x66, 0x99, 0xe8, 0xd6, 0x96, 0x5e, 0xa8, 0x5b, 0x7b, 0xc2, 0x8b, 0xba, 0xeb, 0x70, 0x3a,
0x8c, 0xb3, 0x89, 0x63, 0xb3, 0x64, 0xfe, 0x94, 0x18, 0xdc, 0x89, 0x1f, 0x3f, 0xc7, 0xd2, 0x67,
0xf2, 0x2c, 0x3d, 0x2d, 0xe9, 0x4a, 0x46, 0xd2, 0xd9, 0xfb, 0xc2, 0xaa, 0xe4, 0xbe, 0x50, 0x7b,
0x08, 0xf3, 0xb4, 0x45, 0xe7, 0xf7, 0x3d, 0xab, 0x87, 0xc3, 0xd4, 0x74, 0x12, 0xb1, 0xb6, 0xa1,
0x92, 0xca, 0x6e, 0xc3, 0x6f, 0xed, 0x2b, 0x05, 0x16, 0xb2, 0xfb, 0x52, 0x8d, 0x89, 0xfc, 0x85,
0x92, 0xf0, 0x17, 0x7f, 0x04, 0xf3, 0xd1, 0xf6, 0xc9, 0xbc, 0x39, 0x27, 0x33, 0x94, 0x10, 0xae,
0xa3, 0x68, 0x0f, 0x01, 0xd3, 0x7e, 0xa1, 0x84, 0x9d, 0x4e, 0x02, 0x1b, 0xd0, 0x2e, 0x2f, 0x89,
0x61, 0xae, 0x63, 0x5b, 0x4e, 0x58, 0x5c, 0xf3, 0x33, 0x32, 0x20, 0x2f, 0xae, 0xef, 0xc0, 0x2c,
0x9f, 0x14, 0x86, 0xa2, 0x09, 0x93, 0xaf, 0x26, 0x5b, 0x17, 0x06, 0xa1, 0xcb, 0xd0, 0xe4, 0xed,
0x57, 0x81, 0xaf, 0x28, 0x69, 0xca, 0xa2, 0xdf, 0x07, 0x55, 0x4c, 0x7b, 0xd1, 0xe0, 0x37, 0xcb,
0x17, 0x86, 0x49, 0xdc, 0x9f, 0x29, 0xd0, 0x4a, 0x86, 0xc2, 0xd8, 0xf1, 0x5f, 0x3c, 0x95, 0xfb,
0x30, 0x79, 0x71, 0x75, 0xf9, 0x10, 0x7a, 0x22, 0x3c, 0xe2, 0xfa, 0x6a, 0x9b, 0x5e, 0x42, 0x92,
0x0a, 0x64, 0xc3, 0xf2, 0x03, 0xcf, 0xea, 0x8d, 0x4f, 0xf4, 0x82, 0x42, 0xfb, 0xf7, 0x02, 0xbc,
0x2e, 0xdd, 0xf0, 0x24, 0x57, 0x54, 0x79, 0x05, 0xff, 0x2d, 0xa8, 0xa4, 0x2a, 0x95, 0x2b, 0x87,
0x1c, 0x9e, 0xf7, 0xae, 0x58, 0x0f, 0x45, 0xac, 0x23, 0x7b, 0x84, 0x3a, 0x5d, 0xca, 0xdf, 0x83,
0x2b, 0x6d, 0x62, 0x0f, 0xb1, 0x0e, 0xdd, 0x84, 0x3a, 0xab, 0x02, 0xbb, 0xfb, 0x16, 0x7e, 0x26,
0x6e, 0x56, 0xce, 0x4b, 0xfd, 0x1a, 0x9d, 0xf7, 0xc8, 0xc2, 0xcf, 0xf4, 0x9a, 0x1d, 0xfe, 0xf6,
0xb5, 0x7f, 0x2e, 0x00, 0x44, 0x63, 0xa4, 0x04, 0x8d, 0x0c, 0x86, 0x5b, 0x40, 0x0c, 0x42, 0xe2,
0x6d, 0x32, 0xc5, 0x13, 0x9f, 0x48, 0x8f, 0x5a, 0xa7, 0xa6, 0xe5, 0x07, 0x9c, 0x2f, 0xab, 0x87,
0xd3, 0x22, 0x58, 0x44, 0x44, 0xc6, 0x2e, 0x2e, 0x44, 0x89, 0x45, 0x20, 0xe8, 0x6d, 0x40, 0x03,
0xcf, 0x7d, 0x66, 0x39, 0x83, 0x78, 0x62, 0xce, 0xf2, 0xf7, 0x39, 0x3e, 0x12, 0x65, 0xe6, 0xed,
0x2e, 0xa8, 0xe9, 0xfd, 0x24, 0xf7, 0x17, 0xef, 0x25, 0xef, 0x2f, 0x0e, 0x33, 0x23, 0xb2, 0x4d,
0xfc, 0x02, 0xe3, 0x93, 0x30, 0x9b, 0xa2, 0xe4, 0xe5, 0x79, 0xae, 0x58, 0xcf, 0xaa, 0x90, 0xe8,
0x59, 0x69, 0x7f, 0xa3, 0x00, 0xca, 0x6a, 0x05, 0x6a, 0x42, 0x21, 0xdc, 0xa4, 0xb0, 0xb5, 0x91,
0x92, 0x42, 0x21, 0x23, 0x85, 0xb3, 0x50, 0x0d, 0x23, 0x09, 0x77, 0x1b, 0x11, 0x20, 0x2e, 0xa3,
0x52, 0x52, 0x46, 0x31, 0xc2, 0xca, 0x49, 0xc2, 0xf6, 0x00, 0x65, 0x35, 0x2d, 0xbe, 0x93, 0x92,
0xdc, 0xe9, 0x28, 0x0a, 0x63, 0x98, 0x8a, 0x49, 0x4c, 0xff, 0xa7, 0x00, 0x8a, 0x62, 0x65, 0x78,
0xb9, 0x32, 0x49, 0x80, 0x59, 0x85, 0xf9, 0x6c, 0x24, 0x15, 0xe9, 0x03, 0xca, 0xc4, 0x51, 0x59,
0xcc, 0x2b, 0xca, 0xde, 0xc8, 0xbc, 0x1f, 0xfa, 0x06, 0x96, 0x18, 0x9c, 0xcf, 0x4b, 0x0c, 0x92,
0xee, 0x41, 0xfb, 0x0f, 0x05, 0xe6, 0x42, 0x6c, 0x2f, 0x74, 0x92, 0xa3, 0x2f, 0x8b, 0x5e, 0x31,
0xe9, 0x1d, 0x98, 0xe1, 0xed, 0x91, 0x8c, 0xf2, 0x4d, 0x52, 0x05, 0x9c, 0x82, 0x32, 0xd1, 0x75,
0xd1, 0x2f, 0x60, 0x1f, 0xda, 0xbf, 0x2a, 0x00, 0x9d, 0x03, 0xa7, 0x7f, 0x93, 0xe9, 0xc0, 0x35,
0x28, 0x1d, 0x75, 0x37, 0x4e, 0x66, 0xd3, 0x6c, 0x8b, 0xce, 0x9c, 0x80, 0x2d, 0x89, 0x02, 0xa6,
0x98, 0x2e, 0x60, 0xf2, 0x4a, 0x8f, 0x7c, 0xbd, 0xff, 0x1f, 0x05, 0xce, 0x10, 0x22, 0x5e, 0x4a,
0x10, 0x9a, 0x88, 0x75, 0x31, 0x9b, 0x2a, 0x26, 0x6d, 0xea, 0x06, 0xcc, 0xb0, 0x1a, 0x42, 0x04,
0x84, 0xf3, 0x79, 0x2c, 0x63, 0x0c, 0xd6, 0xc5, 0xf4, 0xe5, 0xdf, 0x83, 0x6a, 0xd8, 0xcb, 0x43,
0x35, 0x98, 0x79, 0xe8, 0xdc, 0x75, 0xdc, 0x67, 0x8e, 0x3a, 0x85, 0x66, 0xa0, 0x78, 0xd3, 0xb6,
0x55, 0x05, 0x35, 0xa0, 0xda, 0x09, 0x3c, 0x6c, 0x0c, 0x2d, 0x67, 0xa0, 0x16, 0x50, 0x13, 0xe0,
0x8e, 0xe5, 0x07, 0xae, 0x67, 0xf5, 0x0d, 0x5b, 0x2d, 0x2e, 0x7f, 0x09, 0xcd, 0x64, 0x0a, 0x8d,
0xea, 0x50, 0xd9, 0x76, 0x83, 0x4f, 0x9f, 0x5b, 0x7e, 0xa0, 0x4e, 0x91, 0xf9, 0xdb, 0x6e, 0xb0,
0xe3, 0x61, 0x1f, 0x3b, 0x81, 0xaa, 0x20, 0x80, 0xe9, 0xcf, 0x9c, 0x0d, 0xcb, 0x7f, 0xa2, 0x16,
0xd0, 0x3c, 0x2f, 0x82, 0x0d, 0x7b, 0x8b, 0xe7, 0xa5, 0x6a, 0x91, 0x2c, 0x0f, 0xbf, 0x4a, 0x48,
0x85, 0x7a, 0x38, 0x65, 0x73, 0xe7, 0xa1, 0x5a, 0x46, 0x55, 0x28, 0xb3, 0x9f, 0xd3, 0xcb, 0x26,
0xa8, 0xe9, 0x0e, 0x0e, 0xd9, 0x93, 0x1d, 0x22, 0x04, 0xa9, 0x53, 0xe4, 0x64, 0xbc, 0x85, 0xa6,
0x2a, 0x68, 0x16, 0x6a, 0xb1, 0x86, 0x94, 0x5a, 0x20, 0x80, 0x4d, 0x6f, 0xd4, 0xe7, 0xd2, 0x63,
0x24, 0x90, 0x24, 0x6a, 0x83, 0x70, 0xa2, 0xb4, 0x7c, 0x0b, 0x2a, 0x22, 0xb7, 0x27, 0x53, 0x39,
0x8b, 0xc8, 0xa7, 0x3a, 0x85, 0xe6, 0xa0, 0x91, 0x78, 0xfc, 0xa6, 0x2a, 0x08, 0x41, 0x33, 0xf9,
0xb6, 0x54, 0x2d, 0x2c, 0xaf, 0x01, 0x44, 0xb6, 0x44, 0xc8, 0xd9, 0x72, 0xf6, 0x0d, 0xdb, 0x32,
0x19, 0x6d, 0x64, 0x88, 0x70, 0x97, 0x72, 0x87, 0xb5, 0x62, 0xd4, 0xc2, 0xf2, 0x05, 0xa8, 0x08,
0x2d, 0x27, 0x70, 0x1d, 0x0f, 0xdd, 0x7d, 0xcc, 0x24, 0xd3, 0xc1, 0x81, 0xaa, 0xac, 0xfd, 0xaa,
0x01, 0xc0, 0x9a, 0x2e, 0xae, 0xeb, 0x99, 0xc8, 0x06, 0xb4, 0x89, 0x03, 0x52, 0x50, 0xba, 0x8e,
0x28, 0x06, 0x7d, 0xb4, 0x92, 0x54, 0x05, 0xfe, 0x91, 0x9d, 0xc8, 0x4f, 0xdf, 0xbe, 0x24, 0x9d,
0x9f, 0x9a, 0xac, 0x4d, 0xa1, 0x21, 0xc5, 0xf6, 0xc0, 0x1a, 0xe2, 0x07, 0x56, 0xff, 0x49, 0xd8,
0xa9, 0xc9, 0x7f, 0x18, 0x9a, 0x9a, 0x2a, 0xf0, 0x5d, 0x94, 0xe2, 0xeb, 0x04, 0x9e, 0xe5, 0x0c,
0x44, 0x0e, 0xa6, 0x4d, 0xa1, 0xa7, 0xa9, 0x67, 0xa9, 0x02, 0xe1, 0xda, 0x24, 0x2f, 0x51, 0x8f,
0x87, 0xd2, 0x86, 0xd9, 0xd4, 0x33, 0x7b, 0xb4, 0x2c, 0x7f, 0x69, 0x24, 0xfb, 0x4b, 0x40, 0xfb,
0xea, 0x44, 0x73, 0x43, 0x6c, 0x16, 0x34, 0x93, 0x4f, 0xc9, 0xd1, 0xef, 0xe4, 0x6d, 0x90, 0x79,
0xeb, 0xd8, 0x5e, 0x9e, 0x64, 0x6a, 0x88, 0xea, 0x31, 0x53, 0xd0, 0xa3, 0x50, 0x49, 0x1f, 0x75,
0xb6, 0x0f, 0x4b, 0x7f, 0xb5, 0x29, 0xf4, 0x05, 0xcc, 0x65, 0x5e, 0x64, 0xa2, 0xb7, 0xe4, 0xdd,
0x78, 0xf9, 0xc3, 0xcd, 0xa3, 0x30, 0x3c, 0x4e, 0x9b, 0x57, 0x3e, 0xf5, 0x99, 0x07, 0xd6, 0x93,
0x53, 0x1f, 0xdb, 0xfe, 0x30, 0xea, 0x5f, 0x18, 0xc3, 0x98, 0x9a, 0x4d, 0xba, 0xf5, 0xf7, 0xb6,
0x0c, 0x45, 0xee, 0xb3, 0xd0, 0xf6, 0xca, 0xa4, 0xd3, 0xe3, 0xda, 0x95, 0x7c, 0x79, 0x28, 0x67,
0x9a, 0xf4, 0xb5, 0xa4, 0x5c, 0xbb, 0xe4, 0x0f, 0x19, 0xb5, 0x29, 0xf4, 0x20, 0xe1, 0x5e, 0xd1,
0x95, 0x3c, 0xe1, 0x24, 0x2f, 0x04, 0x8e, 0xe2, 0xdb, 0x9f, 0x00, 0x62, 0xb6, 0xe3, 0xec, 0x5a,
0x83, 0xb1, 0x67, 0x30, 0xc5, 0xca, 0x73, 0x37, 0xd9, 0xa9, 0x02, 0xcd, 0x3b, 0x2f, 0xb0, 0x22,
0x3c, 0x52, 0x17, 0x60, 0x13, 0x07, 0xf7, 0x71, 0xe0, 0x59, 0x7d, 0x3f, 0x7d, 0xa2, 0xc8, 0xa3,
0xf2, 0x09, 0x02, 0xd5, 0x9b, 0x47, 0xce, 0x0b, 0x11, 0xf4, 0xa0, 0xb6, 0x89, 0x03, 0x9e, 0x57,
0xf9, 0x28, 0x77, 0xa5, 0x98, 0x21, 0x50, 0x2c, 0x1d, 0x3d, 0x31, 0xee, 0xce, 0x52, 0xaf, 0x30,
0x51, 0xae, 0x60, 0xb3, 0x6f, 0x43, 0xe5, 0xee, 0x2c, 0xe7, 0x59, 0x27, 0x3b, 0xd1, 0xfa, 0x1e,
0xee, 0x3f, 0xb9, 0x83, 0x0d, 0x3b, 0xd8, 0xcb, 0x39, 0x51, 0x6c, 0xc6, 0xe1, 0x27, 0x4a, 0x4c,
0x14, 0x38, 0xd6, 0xbe, 0x69, 0x42, 0x95, 0xc6, 0x3f, 0x12, 0xac, 0x7f, 0x1b, 0xfe, 0x5e, 0x72,
0xf8, 0xfb, 0x1c, 0x66, 0x53, 0x8f, 0x06, 0xe5, 0xfa, 0x22, 0x7f, 0x59, 0x38, 0x81, 0x17, 0x4f,
0x3e, 0xe8, 0x93, 0x3b, 0x24, 0xe9, 0xa3, 0xbf, 0xa3, 0xf6, 0x7e, 0xc4, 0xde, 0xdb, 0x86, 0x0d,
0xb3, 0x37, 0x73, 0x4b, 0x9b, 0xe4, 0x7d, 0xea, 0x77, 0x1f, 0x1d, 0x5e, 0x7d, 0xf4, 0xfc, 0x1c,
0x66, 0x53, 0xaf, 0x5a, 0xe4, 0x52, 0x95, 0x3f, 0x7d, 0x39, 0x6a, 0xf7, 0x6f, 0x31, 0xcc, 0x98,
0x30, 0x2f, 0x79, 0x70, 0x80, 0x56, 0xf2, 0x2a, 0x1f, 0xf9, 0xcb, 0x84, 0xa3, 0x0f, 0xd4, 0x48,
0x98, 0x12, 0x5a, 0xca, 0x23, 0x32, 0xfd, 0xb7, 0xa7, 0xf6, 0x5b, 0x93, 0xfd, 0x47, 0x2a, 0x3c,
0x50, 0x07, 0xa6, 0xd9, 0x5b, 0x17, 0xf4, 0x86, 0xbc, 0xb1, 0x14, 0x7b, 0x07, 0xd3, 0x3e, 0xea,
0xb5, 0x8c, 0x3f, 0xb6, 0x03, 0x9f, 0x6e, 0x5a, 0xa6, 0x1e, 0x12, 0x49, 0x1f, 0x69, 0xc5, 0x1f,
0xa8, 0xb4, 0x8f, 0x7e, 0x93, 0x22, 0x36, 0xfd, 0xcd, 0x8e, 0xc5, 0xcf, 0x61, 0x5e, 0xd2, 0x0e,
0x46, 0x79, 0x39, 0x57, 0x4e, 0x23, 0xba, 0xbd, 0x3a, 0xf1, 0xfc, 0x10, 0xf3, 0x1f, 0x83, 0x9a,
0xee, 0x28, 0xa0, 0xab, 0x79, 0xfa, 0x2c, 0xc3, 0x79, 0xb8, 0x32, 0xdf, 0x7a, 0xf7, 0xf1, 0xda,
0xc0, 0x0a, 0xf6, 0xc6, 0x3d, 0x32, 0xb2, 0xca, 0xa6, 0xbe, 0x6d, 0xb9, 0xfc, 0xd7, 0xaa, 0xe0,
0xff, 0x2a, 0x5d, 0xbd, 0x4a, 0x51, 0x8d, 0x7a, 0xbd, 0x69, 0xfa, 0x79, 0xfd, 0xd7, 0x01, 0x00,
0x00, 0xff, 0xff, 0xd8, 0xdb, 0x6b, 0x58, 0x71, 0x3d, 0x00, 0x00,
// 3654 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x3b, 0x49, 0x6c, 0x1c, 0x57,
0x76, 0xac, 0x5e, 0xc8, 0xee, 0xd7, 0x0b, 0x8b, 0x9f, 0x12, 0xd5, 0x6e, 0x6b, 0xa1, 0x4b, 0x8b,
0x19, 0xca, 0x26, 0x65, 0xca, 0x76, 0xe4, 0xd8, 0x86, 0x23, 0x91, 0x16, 0xc5, 0x48, 0xa2, 0x99,
0x6a, 0x49, 0x09, 0x04, 0x27, 0xed, 0xea, 0xae, 0xcf, 0x66, 0x41, 0xd5, 0x55, 0xad, 0xaa, 0x6a,
0x4a, 0x74, 0xae, 0xb9, 0xc4, 0x48, 0x02, 0x24, 0x87, 0x9c, 0x82, 0x9c, 0x12, 0x20, 0x09, 0xec,
0x20, 0x87, 0xe4, 0x16, 0x04, 0x01, 0x72, 0xc8, 0x2d, 0xc8, 0x2d, 0x97, 0x00, 0xb9, 0x0e, 0x30,
0x03, 0xcc, 0x69, 0x0e, 0x73, 0x18, 0x60, 0xf0, 0xb7, 0x5a, 0x7f, 0x91, 0x2d, 0x52, 0xf2, 0x32,
0x98, 0x5b, 0xd7, 0xfb, 0xcb, 0x7b, 0xff, 0xed, 0xef, 0xfd, 0xdf, 0x30, 0xf7, 0x74, 0x8c, 0xbd,
0x83, 0x6e, 0xdf, 0x75, 0x3d, 0x73, 0x65, 0xe4, 0xb9, 0x81, 0x8b, 0xd0, 0xd0, 0xb2, 0xf7, 0xc7,
0x3e, 0xfb, 0x5a, 0xa1, 0xe3, 0xed, 0x7a, 0xdf, 0x1d, 0x0e, 0x5d, 0x87, 0xc1, 0xda, 0xf5, 0xf8,
0x8c, 0x76, 0xd3, 0x72, 0x02, 0xec, 0x39, 0x86, 0x2d, 0x46, 0xfd, 0xfe, 0x1e, 0x1e, 0x1a, 0xfc,
0x4b, 0x35, 0x8d, 0xc0, 0x88, 0xef, 0xaf, 0xfd, 0xb1, 0x02, 0x0b, 0x9d, 0x3d, 0xf7, 0xd9, 0xba,
0x6b, 0xdb, 0xb8, 0x1f, 0x58, 0xae, 0xe3, 0xeb, 0xf8, 0xe9, 0x18, 0xfb, 0x01, 0xba, 0x06, 0xa5,
0x9e, 0xe1, 0xe3, 0x96, 0xb2, 0xa8, 0x2c, 0xd5, 0xd6, 0xce, 0xae, 0x24, 0x28, 0xe1, 0x24, 0xdc,
0xf7, 0x07, 0xb7, 0x0c, 0x1f, 0xeb, 0x74, 0x26, 0x42, 0x50, 0x32, 0x7b, 0x5b, 0x1b, 0xad, 0xc2,
0xa2, 0xb2, 0x54, 0xd4, 0xe9, 0x6f, 0x74, 0x09, 0x1a, 0xfd, 0x70, 0xef, 0xad, 0x0d, 0xbf, 0x55,
0x5c, 0x2c, 0x2e, 0x15, 0xf5, 0x24, 0x50, 0xfb, 0x7f, 0x05, 0xce, 0x64, 0xc8, 0xf0, 0x47, 0xae,
0xe3, 0x63, 0x74, 0x1d, 0xa6, 0xfd, 0xc0, 0x08, 0xc6, 0x3e, 0xa7, 0xe4, 0x75, 0x29, 0x25, 0x1d,
0x3a, 0x45, 0xe7, 0x53, 0xb3, 0x68, 0x0b, 0x12, 0xb4, 0xe8, 0x1d, 0x38, 0x65, 0x39, 0xf7, 0xf1,
0xd0, 0xf5, 0x0e, 0xba, 0x23, 0xec, 0xf5, 0xb1, 0x13, 0x18, 0x03, 0x2c, 0x68, 0x9c, 0x17, 0x63,
0x3b, 0xd1, 0x10, 0x7a, 0x1f, 0xce, 0x30, 0x29, 0xf9, 0xd8, 0xdb, 0xb7, 0xfa, 0xb8, 0x6b, 0xec,
0x1b, 0x96, 0x6d, 0xf4, 0x6c, 0xdc, 0x2a, 0x2d, 0x16, 0x97, 0x2a, 0xfa, 0x69, 0x3a, 0xdc, 0x61,
0xa3, 0x37, 0xc5, 0xa0, 0xf6, 0x77, 0x0a, 0x9c, 0x26, 0x27, 0xdc, 0x31, 0xbc, 0xc0, 0x7a, 0x05,
0x7c, 0xd6, 0xa0, 0x1e, 0x3f, 0x5b, 0xab, 0x48, 0xc7, 0x12, 0x30, 0x32, 0x67, 0x24, 0xd0, 0x13,
0x9e, 0x94, 0xe8, 0x31, 0x13, 0x30, 0xed, 0x6f, 0xb9, 0x42, 0xc4, 0xe9, 0x3c, 0x89, 0x20, 0xd2,
0x38, 0x0b, 0x59, 0x9c, 0xc7, 0x10, 0x83, 0xf6, 0x55, 0x11, 0x4e, 0xdf, 0x73, 0x0d, 0x33, 0x52,
0x98, 0x6f, 0x9f, 0x9d, 0x1f, 0xc3, 0x34, 0xb3, 0xae, 0x56, 0x89, 0xe2, 0xba, 0x9c, 0xc4, 0xc5,
0x2d, 0x2f, 0xa2, 0xb0, 0x43, 0x01, 0x3a, 0x5f, 0x84, 0x2e, 0x43, 0xd3, 0xc3, 0x23, 0xdb, 0xea,
0x1b, 0x5d, 0x67, 0x3c, 0xec, 0x61, 0xaf, 0x55, 0x5e, 0x54, 0x96, 0xca, 0x7a, 0x83, 0x43, 0xb7,
0x29, 0x10, 0x7d, 0x01, 0x8d, 0x5d, 0x0b, 0xdb, 0x66, 0xd7, 0x72, 0x4c, 0xfc, 0x7c, 0x6b, 0xa3,
0x35, 0xbd, 0x58, 0x5c, 0xaa, 0xad, 0x7d, 0xb8, 0x92, 0xf5, 0x0c, 0x2b, 0x52, 0x8e, 0xac, 0xdc,
0x26, 0xcb, 0xb7, 0xd8, 0xea, 0x4f, 0x9d, 0xc0, 0x3b, 0xd0, 0xeb, 0xbb, 0x31, 0x50, 0xfb, 0x13,
0x98, 0xcb, 0x4c, 0x41, 0x2a, 0x14, 0x9f, 0xe0, 0x03, 0xca, 0xc5, 0xa2, 0x4e, 0x7e, 0xa2, 0x53,
0x50, 0xde, 0x37, 0xec, 0x31, 0xe6, 0x7c, 0x62, 0x1f, 0xbf, 0x55, 0xb8, 0xa1, 0x68, 0x7f, 0xad,
0x40, 0x4b, 0xc7, 0x36, 0x36, 0x7c, 0xfc, 0x5d, 0xca, 0x63, 0x01, 0xa6, 0x1d, 0xd7, 0xc4, 0x5b,
0x1b, 0x54, 0x1e, 0x45, 0x9d, 0x7f, 0x69, 0x3f, 0x57, 0xe0, 0xd4, 0x26, 0x0e, 0x88, 0x62, 0x5a,
0x7e, 0x60, 0xf5, 0x43, 0xcb, 0xfb, 0x18, 0x8a, 0x1e, 0x7e, 0xca, 0x29, 0xbb, 0x9a, 0xa4, 0x2c,
0xf4, 0xa3, 0xb2, 0x95, 0x3a, 0x59, 0x87, 0xde, 0x80, 0xba, 0x39, 0xb4, 0xbb, 0xfd, 0x3d, 0xc3,
0x71, 0xb0, 0xcd, 0x54, 0xbb, 0xaa, 0xd7, 0xcc, 0xa1, 0xbd, 0xce, 0x41, 0xe8, 0x3c, 0x80, 0x8f,
0x07, 0x43, 0xec, 0x04, 0x91, 0xeb, 0x8b, 0x41, 0xd0, 0x32, 0xcc, 0xed, 0x7a, 0xee, 0xb0, 0xeb,
0xef, 0x19, 0x9e, 0xd9, 0xb5, 0xb1, 0x61, 0x62, 0x8f, 0x52, 0x5f, 0xd1, 0x67, 0xc9, 0x40, 0x87,
0xc0, 0xef, 0x51, 0x30, 0xba, 0x0e, 0x65, 0xbf, 0xef, 0x8e, 0x30, 0x55, 0x93, 0xe6, 0xda, 0x39,
0x99, 0x02, 0x6c, 0x18, 0x81, 0xd1, 0x21, 0x93, 0x74, 0x36, 0x57, 0xfb, 0x27, 0x6e, 0x27, 0xdf,
0x73, 0xb7, 0x13, 0xb3, 0xa5, 0xf2, 0xcb, 0xb1, 0xa5, 0xe9, 0x89, 0x6c, 0x69, 0xe6, 0x70, 0x5b,
0xca, 0x70, 0xed, 0xd5, 0xdb, 0xd2, 0x7f, 0x44, 0xb6, 0xf4, 0x7d, 0x97, 0x59, 0x64, 0x6f, 0xe5,
0x84, 0xbd, 0xfd, 0x83, 0x02, 0xaf, 0x6d, 0xe2, 0x20, 0x24, 0x9f, 0x98, 0x0f, 0xfe, 0x9e, 0x86,
0xbb, 0x6f, 0x14, 0x68, 0xcb, 0x68, 0x3d, 0x49, 0xc8, 0x7b, 0x0c, 0x0b, 0x21, 0x8e, 0xae, 0x89,
0xfd, 0xbe, 0x67, 0x8d, 0xa8, 0x18, 0xa9, 0x87, 0xa8, 0xad, 0x5d, 0x94, 0xa9, 0x5b, 0x9a, 0x82,
0xd3, 0xe1, 0x16, 0x1b, 0xb1, 0x1d, 0xb4, 0x3f, 0x53, 0xe0, 0x34, 0xf1, 0x48, 0xdc, 0x85, 0x38,
0xbb, 0xee, 0xf1, 0xf9, 0x9a, 0x74, 0x4e, 0x85, 0x8c, 0x73, 0x9a, 0x80, 0xc7, 0x34, 0x7f, 0x4c,
0xd3, 0x73, 0x12, 0xde, 0xbd, 0x07, 0x65, 0xcb, 0xd9, 0x75, 0x05, 0xab, 0x2e, 0xc8, 0x58, 0x15,
0x47, 0xc6, 0x66, 0x6b, 0x0e, 0xa3, 0x22, 0xf2, 0x96, 0x27, 0x50, 0xb7, 0xf4, 0xb1, 0x0b, 0x92,
0x63, 0xff, 0xa9, 0x02, 0x67, 0x32, 0x08, 0x4f, 0x72, 0xee, 0x8f, 0x60, 0x9a, 0xc6, 0x00, 0x71,
0xf0, 0x4b, 0xd2, 0x83, 0xc7, 0xd0, 0xdd, 0xb3, 0xfc, 0x40, 0xe7, 0x6b, 0x34, 0x17, 0xd4, 0xf4,
0x18, 0x89, 0x4e, 0x3c, 0x32, 0x75, 0x1d, 0x63, 0xc8, 0x18, 0x50, 0xd5, 0x6b, 0x1c, 0xb6, 0x6d,
0x0c, 0x31, 0x7a, 0x0d, 0x2a, 0xc4, 0x64, 0xbb, 0x96, 0x29, 0xc4, 0x3f, 0x43, 0x4d, 0xd8, 0xf4,
0xd1, 0x39, 0x00, 0x3a, 0x64, 0x98, 0xa6, 0xc7, 0x02, 0x57, 0x55, 0xaf, 0x12, 0xc8, 0x4d, 0x02,
0xd0, 0xfe, 0x42, 0x81, 0x3a, 0x71, 0x90, 0xf7, 0x71, 0x60, 0x10, 0x39, 0xa0, 0x0f, 0xa0, 0x6a,
0xbb, 0x86, 0xd9, 0x0d, 0x0e, 0x46, 0x0c, 0x55, 0x33, 0xcd, 0xeb, 0xc8, 0xab, 0x3e, 0x38, 0x18,
0x61, 0xbd, 0x62, 0xf3, 0x5f, 0x93, 0xf0, 0x3b, 0x63, 0xca, 0x45, 0x89, 0x29, 0x7f, 0x5d, 0x86,
0x85, 0xdf, 0x33, 0x82, 0xfe, 0xde, 0xc6, 0x50, 0xc4, 0xdf, 0xe3, 0x2b, 0x41, 0xe4, 0xdb, 0x0a,
0x71, 0xdf, 0xf6, 0xd2, 0x7c, 0x67, 0xa8, 0xe7, 0x65, 0x99, 0x9e, 0x93, 0x32, 0x6d, 0xe5, 0x11,
0x17, 0x55, 0x4c, 0xcf, 0x63, 0x61, 0x72, 0xfa, 0x38, 0x61, 0x72, 0x1d, 0x1a, 0xf8, 0x79, 0xdf,
0x1e, 0x13, 0x99, 0x53, 0xec, 0x2c, 0xfe, 0x9d, 0x97, 0x60, 0x8f, 0x1b, 0x59, 0x9d, 0x2f, 0xda,
0xe2, 0x34, 0x30, 0x51, 0x0f, 0x71, 0x60, 0xb4, 0x2a, 0x94, 0x8c, 0xc5, 0x3c, 0x51, 0x0b, 0xfd,
0x60, 0xe2, 0x26, 0x5f, 0xe8, 0x2c, 0x54, 0x79, 0x50, 0xde, 0xda, 0x68, 0x55, 0x29, 0xfb, 0x22,
0x00, 0x32, 0xa0, 0xc1, 0x3d, 0x10, 0xa7, 0x10, 0x28, 0x85, 0x1f, 0xc9, 0x10, 0xc8, 0x85, 0x1d,
0xa7, 0xdc, 0xe7, 0x21, 0xda, 0x8f, 0x81, 0x48, 0x69, 0xe8, 0xee, 0xee, 0xda, 0x96, 0x83, 0xb7,
0x99, 0x84, 0x6b, 0x94, 0x88, 0x24, 0xb0, 0xdd, 0x85, 0xb9, 0xcc, 0x46, 0x92, 0x40, 0xfe, 0x6e,
0x3c, 0x90, 0x1f, 0xcd, 0xc9, 0x58, 0xa0, 0xff, 0x7b, 0x05, 0x4e, 0x3f, 0x74, 0xfc, 0x71, 0x2f,
0x3c, 0xc1, 0x77, 0xa3, 0xad, 0x69, 0x3f, 0x51, 0xca, 0xf8, 0x09, 0xed, 0xdf, 0x4b, 0x30, 0xcb,
0x4f, 0x41, 0x84, 0x4a, 0x0d, 0xfe, 0x2c, 0x54, 0xc3, 0x50, 0xc1, 0x19, 0x12, 0x01, 0xd0, 0x22,
0xd4, 0x62, 0xea, 0xce, 0xa9, 0x8a, 0x83, 0x26, 0x22, 0x4d, 0x04, 0xfe, 0x52, 0x2c, 0xf0, 0x9f,
0x03, 0xd8, 0xb5, 0xc7, 0xfe, 0x5e, 0x37, 0xb0, 0x86, 0x98, 0x27, 0x1e, 0x55, 0x0a, 0x79, 0x60,
0x0d, 0x31, 0xba, 0x09, 0xf5, 0x9e, 0xe5, 0xd8, 0xee, 0xa0, 0x3b, 0x32, 0x82, 0x3d, 0x9f, 0x17,
0x4b, 0x32, 0xb1, 0xd0, 0x34, 0xed, 0x16, 0x9d, 0xab, 0xd7, 0xd8, 0x9a, 0x1d, 0xb2, 0x04, 0x9d,
0x87, 0x9a, 0x33, 0x1e, 0x76, 0xdd, 0xdd, 0xae, 0xe7, 0x3e, 0x23, 0x26, 0x42, 0x51, 0x38, 0xe3,
0xe1, 0x67, 0xbb, 0xba, 0xfb, 0x8c, 0xb8, 0xea, 0x2a, 0x71, 0xda, 0xbe, 0xed, 0x0e, 0xfc, 0x56,
0x65, 0xa2, 0xfd, 0xa3, 0x05, 0x64, 0xb5, 0x89, 0xed, 0xc0, 0xa0, 0xab, 0xab, 0x93, 0xad, 0x0e,
0x17, 0xa0, 0x2b, 0xd0, 0xec, 0xbb, 0xc3, 0x91, 0x41, 0x39, 0x74, 0xdb, 0x73, 0x87, 0xd4, 0x3e,
0x8a, 0x7a, 0x0a, 0x8a, 0xd6, 0xa1, 0x46, 0x53, 0x5c, 0x6e, 0x44, 0x35, 0x8a, 0x47, 0x93, 0x19,
0x51, 0x2c, 0x5b, 0x25, 0x0a, 0x0a, 0x96, 0xf8, 0xe9, 0x13, 0xcd, 0x10, 0xb6, 0xe8, 0x5b, 0x5f,
0xe2, 0x56, 0x9d, 0x49, 0x91, 0xc3, 0x3a, 0xd6, 0x97, 0x98, 0xe4, 0xdd, 0x96, 0xe3, 0x63, 0x2f,
0x10, 0x55, 0x50, 0xab, 0x41, 0xd5, 0xa7, 0xc1, 0xa0, 0x5c, 0xb1, 0xb5, 0x9f, 0x16, 0xa0, 0x99,
0x44, 0x84, 0x5a, 0x30, 0xc3, 0x12, 0x67, 0xa1, 0x3d, 0xe2, 0x93, 0xa0, 0xc5, 0x8e, 0xd1, 0xb3,
0x31, 0xcb, 0xd2, 0xa9, 0xf2, 0x54, 0xf4, 0x1a, 0x83, 0xd1, 0x0d, 0x88, 0x12, 0xb0, 0xe3, 0x51,
0x8d, 0x2d, 0x52, 0x94, 0x55, 0x0a, 0xa1, 0x71, 0xad, 0x05, 0x33, 0x22, 0xc1, 0x67, 0xaa, 0x23,
0x3e, 0xc9, 0x48, 0x6f, 0x6c, 0x51, 0xac, 0x4c, 0x75, 0xc4, 0x27, 0xda, 0x80, 0x3a, 0xdb, 0x72,
0x64, 0x78, 0xc6, 0x50, 0x28, 0xce, 0x1b, 0x52, 0xe3, 0xbb, 0x8b, 0x0f, 0x1e, 0x11, 0x3b, 0xde,
0x31, 0x2c, 0x4f, 0x67, 0x8c, 0xde, 0xa1, 0xab, 0xd0, 0x12, 0xa8, 0x6c, 0x97, 0x5d, 0xcb, 0xc6,
0x5c, 0x05, 0x67, 0x68, 0xf0, 0x6c, 0x52, 0xf8, 0x6d, 0xcb, 0xc6, 0x4c, 0xcb, 0xc2, 0x23, 0x50,
0xd6, 0x56, 0x98, 0x92, 0x51, 0x08, 0x65, 0xec, 0x45, 0x68, 0xb0, 0xe1, 0x7d, 0xec, 0xf9, 0x96,
0xeb, 0x70, 0x4f, 0xc9, 0x68, 0x7c, 0xc4, 0x60, 0x34, 0x7e, 0x8f, 0x87, 0x4c, 0x4d, 0x81, 0x1d,
0xc7, 0x19, 0x0f, 0x89, 0x92, 0x6a, 0x7f, 0x59, 0x82, 0x79, 0x62, 0xab, 0xdc, 0x6c, 0x4f, 0x10,
0x09, 0xcf, 0x01, 0x98, 0x7e, 0xd0, 0x4d, 0xf8, 0x97, 0xaa, 0xe9, 0x07, 0xcc, 0x4f, 0xa2, 0x0f,
0x44, 0x20, 0x2b, 0xe6, 0xe7, 0xb6, 0x29, 0xdf, 0x91, 0x0d, 0x66, 0xc7, 0xea, 0x9f, 0x5c, 0x84,
0x86, 0xef, 0x8e, 0xbd, 0x3e, 0xee, 0x26, 0xaa, 0x90, 0x3a, 0x03, 0x6e, 0xcb, 0x3d, 0xe0, 0xb4,
0xb4, 0x8f, 0x13, 0x0b, 0x68, 0x33, 0x27, 0x0b, 0x68, 0x95, 0x74, 0x40, 0xbb, 0x0b, 0xb3, 0xd4,
0x7c, 0xbb, 0x23, 0xd7, 0x67, 0xc5, 0x1c, 0xb7, 0x7a, 0x2d, 0xa7, 0xdf, 0x70, 0xdf, 0x1f, 0xec,
0xf0, 0xa9, 0x7a, 0x93, 0x2e, 0x15, 0x9f, 0x3e, 0x51, 0x5f, 0xa1, 0x0f, 0x5c, 0xde, 0xfc, 0x93,
0x30, 0xc3, 0xc1, 0xd8, 0xec, 0x06, 0x9e, 0xe1, 0xf8, 0xbb, 0xd8, 0xa3, 0x41, 0xad, 0xa2, 0xd7,
0x09, 0xf0, 0x01, 0x87, 0x69, 0xff, 0x5d, 0x80, 0x05, 0x5e, 0x5b, 0x9e, 0x5c, 0x2f, 0xf2, 0x62,
0x8e, 0x70, 0xda, 0xc5, 0x43, 0xaa, 0xb5, 0xd2, 0x04, 0x59, 0x53, 0x59, 0x92, 0x35, 0x25, 0x2b,
0x96, 0xe9, 0x4c, 0xc5, 0x12, 0xb6, 0x48, 0x66, 0x26, 0x6f, 0x91, 0x90, 0x5a, 0x9c, 0xa6, 0xd1,
0x54, 0x76, 0x55, 0x9d, 0x7d, 0x4c, 0xc6, 0xd0, 0x1f, 0x2b, 0xd0, 0xe8, 0x60, 0xc3, 0xeb, 0xef,
0x09, 0x3e, 0xbe, 0x1f, 0x6f, 0x29, 0x5d, 0xca, 0x11, 0x71, 0x62, 0xc9, 0x0f, 0xa7, 0x97, 0xf4,
0x13, 0x05, 0xea, 0xbf, 0x4b, 0x86, 0xc4, 0x61, 0x6f, 0xc4, 0x0f, 0x7b, 0x25, 0xe7, 0xb0, 0x3a,
0x0e, 0x3c, 0x0b, 0xef, 0xe3, 0x1f, 0xdc, 0x71, 0xff, 0x4b, 0x81, 0x76, 0xe7, 0xc0, 0xe9, 0xeb,
0xcc, 0x96, 0x4f, 0x6e, 0x31, 0x17, 0xa1, 0xb1, 0x9f, 0x48, 0xb5, 0x0a, 0x54, 0xe1, 0xea, 0xfb,
0xf1, 0x9a, 0x4c, 0x07, 0x55, 0x74, 0xb2, 0xf8, 0x61, 0x85, 0x6b, 0x7d, 0x53, 0x46, 0x75, 0x8a,
0x38, 0xea, 0x9a, 0x66, 0xbd, 0x24, 0x50, 0xfb, 0x73, 0x05, 0xe6, 0x25, 0x13, 0xd1, 0x19, 0x98,
0xe1, 0xf5, 0x1f, 0x8f, 0xc1, 0xcc, 0x86, 0x4d, 0x22, 0x9e, 0xa8, 0x83, 0x61, 0x99, 0xd9, 0xfc,
0xcd, 0x44, 0x17, 0xa0, 0x16, 0x26, 0xea, 0x66, 0x46, 0x3e, 0xa6, 0x8f, 0xda, 0x50, 0xe1, 0xce,
0x49, 0x54, 0x40, 0xe1, 0xb7, 0xf6, 0x6f, 0x0a, 0x2c, 0xdc, 0x31, 0x1c, 0xd3, 0xdd, 0xdd, 0x3d,
0x39, 0x5b, 0xd7, 0x21, 0x91, 0xdf, 0x4f, 0xda, 0x39, 0x48, 0x16, 0x05, 0x57, 0x61, 0xce, 0x63,
0x9e, 0xd1, 0x4c, 0xf2, 0xbd, 0xa8, 0xab, 0x62, 0x20, 0xe4, 0xe7, 0xd7, 0x05, 0x40, 0x24, 0x18,
0xdc, 0x32, 0x6c, 0xc3, 0xe9, 0xe3, 0xe3, 0x93, 0x7e, 0x19, 0x9a, 0x89, 0x10, 0x16, 0x5e, 0x53,
0xc5, 0x63, 0x98, 0x8f, 0xee, 0x42, 0xb3, 0xc7, 0x50, 0x75, 0x3d, 0x6c, 0xf8, 0xae, 0x43, 0x9d,
0x6b, 0x53, 0xde, 0x24, 0x78, 0xe0, 0x59, 0x83, 0x01, 0xf6, 0xd6, 0x5d, 0xc7, 0x64, 0x41, 0xa4,
0xd1, 0x13, 0x64, 0x92, 0xa5, 0x44, 0x70, 0x51, 0x3c, 0x17, 0xa2, 0x81, 0x30, 0xa0, 0x53, 0x56,
0xf8, 0xd8, 0xb0, 0x23, 0x46, 0x44, 0xde, 0x58, 0x65, 0x03, 0x9d, 0xfc, 0x1e, 0x91, 0x24, 0xbe,
0x6a, 0xff, 0xa2, 0x00, 0x0a, 0x8b, 0x1c, 0x5a, 0xb4, 0x51, 0xed, 0x4b, 0x2f, 0x55, 0x24, 0x41,
0xe1, 0x2c, 0x54, 0x4d, 0xb1, 0x92, 0x9b, 0x4b, 0x04, 0xa0, 0x3e, 0x9a, 0x12, 0xdd, 0x25, 0xc1,
0x18, 0x9b, 0xa2, 0x88, 0x60, 0xc0, 0x7b, 0x14, 0x96, 0x0c, 0xcf, 0xa5, 0x74, 0x78, 0x8e, 0xb7,
0x40, 0xca, 0x89, 0x16, 0x88, 0xf6, 0x4d, 0x01, 0x54, 0xea, 0xee, 0xd6, 0xa3, 0x3a, 0x7c, 0x22,
0xa2, 0x2f, 0x42, 0x83, 0x5f, 0xe4, 0x26, 0x08, 0xaf, 0x3f, 0x8d, 0x6d, 0x86, 0xae, 0xc1, 0x29,
0x36, 0xc9, 0xc3, 0xfe, 0xd8, 0x8e, 0xf2, 0x67, 0x96, 0xcc, 0xa2, 0xa7, 0xcc, 0xcf, 0x92, 0x21,
0xb1, 0xe2, 0x21, 0x2c, 0x0c, 0x6c, 0xb7, 0x67, 0xd8, 0xdd, 0xa4, 0x78, 0x98, 0x0c, 0x27, 0xd0,
0xf8, 0x53, 0x6c, 0x79, 0x27, 0x2e, 0x43, 0x1f, 0x6d, 0x92, 0x8a, 0x1b, 0x3f, 0x09, 0xf3, 0x13,
0xde, 0x80, 0x9f, 0x24, 0x3d, 0xa9, 0x93, 0x85, 0xe2, 0x4b, 0xfb, 0x1b, 0x05, 0x66, 0x53, 0x5d,
0xcc, 0x74, 0x1d, 0xa8, 0x64, 0xeb, 0xc0, 0x1b, 0x50, 0x26, 0xc5, 0x11, 0x73, 0x86, 0x4d, 0x79,
0x8d, 0x92, 0xdc, 0x55, 0x67, 0x0b, 0xd0, 0x2a, 0xcc, 0x4b, 0x6e, 0x0d, 0xb9, 0x0e, 0xa0, 0xec,
0xa5, 0xa1, 0xf6, 0x7f, 0x25, 0xa8, 0xc5, 0xf8, 0x71, 0x44, 0x09, 0x3b, 0x49, 0x5b, 0x2a, 0x75,
0xbc, 0x62, 0xf6, 0x78, 0x39, 0x77, 0x52, 0x44, 0xef, 0x86, 0x78, 0xc8, 0x92, 0x7f, 0x5e, 0x89,
0x0c, 0xf1, 0x90, 0xa6, 0xfe, 0xf1, 0xac, 0x7e, 0x3a, 0x91, 0xd5, 0xa7, 0xea, 0x9e, 0x99, 0x43,
0xea, 0x9e, 0x4a, 0xb2, 0xee, 0x49, 0xd8, 0x51, 0x35, 0x6d, 0x47, 0x93, 0x56, 0x95, 0xd7, 0x60,
0xbe, 0xef, 0x61, 0x23, 0xc0, 0xe6, 0xad, 0x83, 0xf5, 0x70, 0x88, 0x67, 0x46, 0xb2, 0x21, 0x74,
0x3b, 0x6a, 0xe7, 0x30, 0x29, 0xd7, 0xa9, 0x94, 0xe5, 0x65, 0x15, 0x97, 0x0d, 0x13, 0xb2, 0x70,
0xcf, 0xf4, 0x2b, 0x5d, 0xcf, 0x36, 0x8e, 0x55, 0xcf, 0x5e, 0x80, 0x9a, 0x08, 0xad, 0xc4, 0xdc,
0x9b, 0xcc, 0xf3, 0x09, 0x5f, 0x60, 0xfa, 0x09, 0x67, 0x30, 0x9b, 0xec, 0x87, 0xa6, 0x8b, 0x52,
0x35, 0x53, 0x94, 0x6a, 0xff, 0x53, 0x84, 0x66, 0x54, 0xac, 0x4c, 0xec, 0x2d, 0x26, 0xb9, 0x20,
0xdf, 0x06, 0x35, 0x8a, 0xc7, 0x94, 0x91, 0x87, 0xd6, 0x5b, 0xe9, 0xbb, 0x84, 0xd9, 0x51, 0xca,
0x2c, 0x13, 0xdd, 0xda, 0xd2, 0x0b, 0x75, 0x6b, 0x4f, 0x78, 0x51, 0x77, 0x1d, 0x4e, 0x87, 0x71,
0x36, 0x71, 0x6c, 0x96, 0xcc, 0x9f, 0x12, 0x83, 0x3b, 0xf1, 0xe3, 0xe7, 0x58, 0xfa, 0x4c, 0x9e,
0xa5, 0xa7, 0x25, 0x5d, 0xc9, 0x48, 0x3a, 0x7b, 0x5f, 0x58, 0x95, 0xdc, 0x17, 0x6a, 0x0f, 0x61,
0x9e, 0xb6, 0xe8, 0xfc, 0xbe, 0x67, 0xf5, 0x70, 0x98, 0x9a, 0x4e, 0x22, 0xd6, 0x36, 0x54, 0x52,
0xd9, 0x6d, 0xf8, 0xad, 0x7d, 0xa5, 0xc0, 0x42, 0x76, 0x5f, 0xaa, 0x31, 0x91, 0xbf, 0x50, 0x12,
0xfe, 0xe2, 0xf7, 0x61, 0x3e, 0xda, 0x3e, 0x99, 0x37, 0xe7, 0x64, 0x86, 0x12, 0xc2, 0x75, 0x14,
0xed, 0x21, 0x60, 0xda, 0xcf, 0x94, 0xb0, 0xd3, 0x49, 0x60, 0x03, 0xda, 0xe5, 0x25, 0x31, 0xcc,
0x75, 0x6c, 0xcb, 0x09, 0x8b, 0x6b, 0x7e, 0x46, 0x06, 0xe4, 0xc5, 0xf5, 0x1d, 0x98, 0xe5, 0x93,
0xc2, 0x50, 0x34, 0x61, 0xf2, 0xd5, 0x64, 0xeb, 0xc2, 0x20, 0x74, 0x19, 0x9a, 0xbc, 0xfd, 0x2a,
0xf0, 0x15, 0x25, 0x4d, 0x59, 0xf4, 0x3b, 0xa0, 0x8a, 0x69, 0x2f, 0x1a, 0xfc, 0x66, 0xf9, 0xc2,
0x30, 0x89, 0xfb, 0x13, 0x05, 0x5a, 0xc9, 0x50, 0x18, 0x3b, 0xfe, 0x8b, 0xa7, 0x72, 0x1f, 0x26,
0x2f, 0xae, 0x2e, 0x1f, 0x42, 0x4f, 0x84, 0x47, 0x5c, 0x5f, 0x6d, 0xd3, 0x4b, 0x48, 0x52, 0x81,
0x6c, 0x58, 0x7e, 0xe0, 0x59, 0xbd, 0xf1, 0x89, 0x5e, 0x50, 0x68, 0xff, 0x5a, 0x80, 0xd7, 0xa5,
0x1b, 0x9e, 0xe4, 0x8a, 0x2a, 0xaf, 0xe0, 0xbf, 0x05, 0x95, 0x54, 0xa5, 0x72, 0xe5, 0x90, 0xc3,
0xf3, 0xde, 0x15, 0xeb, 0xa1, 0x88, 0x75, 0x64, 0x8f, 0x50, 0xa7, 0x4b, 0xf9, 0x7b, 0x70, 0xa5,
0x4d, 0xec, 0x21, 0xd6, 0xa1, 0x9b, 0x50, 0x67, 0x55, 0x60, 0x77, 0xdf, 0xc2, 0xcf, 0xc4, 0xcd,
0xca, 0x79, 0xa9, 0x5f, 0xa3, 0xf3, 0x1e, 0x59, 0xf8, 0x99, 0x5e, 0xb3, 0xc3, 0xdf, 0xbe, 0xf6,
0x8f, 0x05, 0x80, 0x68, 0x8c, 0x94, 0xa0, 0x91, 0xc1, 0x70, 0x0b, 0x88, 0x41, 0x48, 0xbc, 0x4d,
0xa6, 0x78, 0xe2, 0x13, 0xe9, 0x51, 0xeb, 0xd4, 0xb4, 0xfc, 0x80, 0xf3, 0x65, 0xf5, 0x70, 0x5a,
0x04, 0x8b, 0x88, 0xc8, 0xd8, 0xc5, 0x85, 0x28, 0xb1, 0x08, 0x04, 0xbd, 0x0d, 0x68, 0xe0, 0xb9,
0xcf, 0x2c, 0x67, 0x10, 0x4f, 0xcc, 0x59, 0xfe, 0x3e, 0xc7, 0x47, 0xa2, 0xcc, 0xbc, 0xdd, 0x05,
0x35, 0xbd, 0x9f, 0xe4, 0xfe, 0xe2, 0xbd, 0xe4, 0xfd, 0xc5, 0x61, 0x66, 0x44, 0xb6, 0x89, 0x5f,
0x60, 0x7c, 0x12, 0x66, 0x53, 0x94, 0xbc, 0x3c, 0xcf, 0x15, 0xeb, 0x59, 0x15, 0x12, 0x3d, 0x2b,
0xed, 0xaf, 0x14, 0x40, 0x59, 0xad, 0x40, 0x4d, 0x28, 0x84, 0x9b, 0x14, 0xb6, 0x36, 0x52, 0x52,
0x28, 0x64, 0xa4, 0x70, 0x16, 0xaa, 0x61, 0x24, 0xe1, 0x6e, 0x23, 0x02, 0xc4, 0x65, 0x54, 0x4a,
0xca, 0x28, 0x46, 0x58, 0x39, 0x49, 0xd8, 0x1e, 0xa0, 0xac, 0xa6, 0xc5, 0x77, 0x52, 0x92, 0x3b,
0x1d, 0x45, 0x61, 0x0c, 0x53, 0x31, 0x89, 0xe9, 0x47, 0x05, 0x40, 0x51, 0xac, 0x0c, 0x2f, 0x57,
0x26, 0x09, 0x30, 0xab, 0x30, 0x9f, 0x8d, 0xa4, 0x22, 0x7d, 0x40, 0x99, 0x38, 0x2a, 0x8b, 0x79,
0x45, 0xd9, 0x1b, 0x99, 0xf7, 0x43, 0xdf, 0xc0, 0x12, 0x83, 0xf3, 0x79, 0x89, 0x41, 0xca, 0x3d,
0xfc, 0x41, 0xfa, 0x6d, 0x0d, 0xb3, 0xbf, 0x1b, 0x52, 0x3b, 0xce, 0x1c, 0xf9, 0xd5, 0x3f, 0xac,
0xf9, 0xdf, 0x02, 0xcc, 0x85, 0xdc, 0x78, 0x21, 0x4e, 0x1f, 0x7d, 0x99, 0xf5, 0x8a, 0x59, 0xfb,
0xb9, 0x9c, 0xb5, 0xbf, 0x79, 0x68, 0xee, 0xf7, 0xed, 0x71, 0xb6, 0x03, 0x33, 0xbc, 0xbb, 0x94,
0xb1, 0xdd, 0x49, 0x8a, 0xa8, 0x53, 0x50, 0x26, 0xae, 0x42, 0xb4, 0x5b, 0xd8, 0x87, 0xf6, 0xcf,
0x0a, 0x40, 0xe7, 0xc0, 0xe9, 0xdf, 0x64, 0x26, 0x74, 0x0d, 0x4a, 0x47, 0x3d, 0x2d, 0x20, 0xb3,
0x69, 0xb2, 0x4a, 0x67, 0x4e, 0x20, 0xb5, 0x44, 0xfd, 0x57, 0x4c, 0xd7, 0x7f, 0x79, 0x95, 0x5b,
0xbe, 0xdb, 0xf8, 0x4f, 0x05, 0xce, 0x10, 0x22, 0x5e, 0x4a, 0x0c, 0x9f, 0x88, 0x75, 0x31, 0x97,
0x54, 0x4c, 0xba, 0xa4, 0x1b, 0x30, 0xc3, 0x4a, 0x30, 0x11, 0x4f, 0xcf, 0xe7, 0xb1, 0x8c, 0x31,
0x58, 0x17, 0xd3, 0x97, 0x7f, 0x1b, 0xaa, 0x61, 0x2b, 0x14, 0xd5, 0x60, 0xe6, 0xa1, 0x73, 0xd7,
0x71, 0x9f, 0x39, 0xea, 0x14, 0x9a, 0x81, 0xe2, 0x4d, 0xdb, 0x56, 0x15, 0xd4, 0x80, 0x6a, 0x27,
0xf0, 0xb0, 0x31, 0xb4, 0x9c, 0x81, 0x5a, 0x40, 0x4d, 0x80, 0x3b, 0x96, 0x1f, 0xb8, 0x9e, 0xd5,
0x37, 0x6c, 0xb5, 0xb8, 0xfc, 0x25, 0x34, 0x93, 0x15, 0x08, 0xaa, 0x43, 0x65, 0xdb, 0x0d, 0x3e,
0x7d, 0x6e, 0xf9, 0x81, 0x3a, 0x45, 0xe6, 0x6f, 0xbb, 0xc1, 0x8e, 0x87, 0x7d, 0xec, 0x04, 0xaa,
0x82, 0x00, 0xa6, 0x3f, 0x73, 0x36, 0x2c, 0xff, 0x89, 0x5a, 0x40, 0xf3, 0xbc, 0x87, 0x60, 0xd8,
0x5b, 0x3c, 0xad, 0x57, 0x8b, 0x64, 0x79, 0xf8, 0x55, 0x42, 0x2a, 0xd4, 0xc3, 0x29, 0x9b, 0x3b,
0x0f, 0xd5, 0x32, 0xaa, 0x42, 0x99, 0xfd, 0x9c, 0x5e, 0x36, 0x41, 0x4d, 0x37, 0xc0, 0xc8, 0x9e,
0xec, 0x10, 0x21, 0x48, 0x9d, 0x22, 0x27, 0xe3, 0x1d, 0x48, 0x55, 0x41, 0xb3, 0x50, 0x8b, 0xf5,
0xf3, 0xd4, 0x02, 0x01, 0x6c, 0x7a, 0xa3, 0x3e, 0x97, 0x1e, 0x23, 0x81, 0xe4, 0xa0, 0x1b, 0x84,
0x13, 0xa5, 0xe5, 0x5b, 0x50, 0x11, 0xa5, 0x11, 0x99, 0xca, 0x59, 0x44, 0x3e, 0xd5, 0x29, 0x34,
0x07, 0x8d, 0xc4, 0xdb, 0x41, 0x55, 0x41, 0x08, 0x9a, 0xc9, 0xa7, 0xb9, 0x6a, 0x61, 0x79, 0x0d,
0x20, 0x32, 0x75, 0x42, 0xce, 0x96, 0xb3, 0x6f, 0xd8, 0x96, 0xc9, 0x68, 0x23, 0x43, 0x84, 0xbb,
0x94, 0x3b, 0xac, 0x93, 0xa5, 0x16, 0x96, 0x2f, 0x40, 0x45, 0x68, 0x39, 0x81, 0xeb, 0x78, 0xe8,
0xee, 0x63, 0x26, 0x99, 0x0e, 0x0e, 0x54, 0x65, 0xed, 0x17, 0x0d, 0x00, 0xd6, 0xb3, 0x72, 0x5d,
0xcf, 0x44, 0x36, 0xa0, 0x4d, 0x1c, 0x90, 0x7a, 0xdc, 0x75, 0x44, 0x2d, 0xed, 0xa3, 0x95, 0xa4,
0x2a, 0xf0, 0x8f, 0xec, 0x44, 0x7e, 0xfa, 0xf6, 0x25, 0xe9, 0xfc, 0xd4, 0x64, 0x6d, 0x0a, 0x0d,
0x29, 0xb6, 0x07, 0xd6, 0x10, 0x3f, 0xb0, 0xfa, 0x4f, 0xc2, 0x46, 0x57, 0xfe, 0xbb, 0xda, 0xd4,
0x54, 0x81, 0xef, 0xa2, 0x14, 0x5f, 0x27, 0xf0, 0x2c, 0x67, 0x20, 0x52, 0x58, 0x6d, 0x0a, 0x3d,
0x4d, 0xbd, 0xea, 0x15, 0x08, 0xd7, 0x26, 0x79, 0xc8, 0x7b, 0x3c, 0x94, 0x36, 0xcc, 0xa6, 0xfe,
0xa5, 0x80, 0x96, 0xe5, 0x0f, 0xb5, 0x64, 0xff, 0xa8, 0x68, 0x5f, 0x9d, 0x68, 0x6e, 0x88, 0xcd,
0x82, 0x66, 0xf2, 0x25, 0x3e, 0xfa, 0x8d, 0xbc, 0x0d, 0x32, 0x4f, 0x45, 0xdb, 0xcb, 0x93, 0x4c,
0x0d, 0x51, 0x3d, 0x66, 0x0a, 0x7a, 0x14, 0x2a, 0xe9, 0x9b, 0xd8, 0xf6, 0x61, 0xd5, 0x83, 0x36,
0x85, 0xbe, 0x80, 0xb9, 0xcc, 0x83, 0x56, 0xf4, 0x96, 0xfc, 0x32, 0x43, 0xfe, 0xee, 0xf5, 0x28,
0x0c, 0x8f, 0xd3, 0xe6, 0x95, 0x4f, 0x7d, 0xe6, 0x7d, 0xfa, 0xe4, 0xd4, 0xc7, 0xb6, 0x3f, 0x8c,
0xfa, 0x17, 0xc6, 0x30, 0xa6, 0x66, 0x93, 0xee, 0x9c, 0xbe, 0x2d, 0x43, 0x91, 0xfb, 0xaa, 0xb6,
0xbd, 0x32, 0xe9, 0xf4, 0xb8, 0x76, 0x25, 0x1f, 0x6e, 0xca, 0x99, 0x26, 0x7d, 0x6c, 0x2a, 0xd7,
0x2e, 0xf9, 0x3b, 0x50, 0x6d, 0x0a, 0x3d, 0x48, 0xb8, 0x57, 0x74, 0x25, 0x4f, 0x38, 0xc9, 0xfb,
0x94, 0xa3, 0xf8, 0xf6, 0x47, 0x80, 0x98, 0xed, 0x38, 0xbb, 0xd6, 0x60, 0xec, 0x19, 0x4c, 0xb1,
0xf2, 0xdc, 0x4d, 0x76, 0xaa, 0x40, 0xf3, 0xce, 0x0b, 0xac, 0x08, 0x8f, 0xd4, 0x05, 0xd8, 0xc4,
0xc1, 0x7d, 0x1c, 0x78, 0x56, 0xdf, 0x4f, 0x9f, 0x28, 0xf2, 0xa8, 0x7c, 0x82, 0x40, 0xf5, 0xe6,
0x91, 0xf3, 0x42, 0x04, 0x3d, 0xa8, 0x6d, 0xe2, 0x80, 0xe7, 0x55, 0x3e, 0xca, 0x5d, 0x29, 0x66,
0x08, 0x14, 0x4b, 0x47, 0x4f, 0x8c, 0xbb, 0xb3, 0xd4, 0x23, 0x56, 0x94, 0x2b, 0xd8, 0xec, 0xd3,
0x5a, 0xb9, 0x3b, 0xcb, 0x79, 0x15, 0xcb, 0x4e, 0xb4, 0xbe, 0x87, 0xfb, 0x4f, 0xee, 0x60, 0xc3,
0x0e, 0xf6, 0x72, 0x4e, 0x14, 0x9b, 0x71, 0xf8, 0x89, 0x12, 0x13, 0x05, 0x8e, 0xb5, 0x6f, 0x9a,
0x50, 0xa5, 0xf1, 0x8f, 0x04, 0xeb, 0x5f, 0x87, 0xbf, 0x97, 0x1c, 0xfe, 0x3e, 0x87, 0xd9, 0xd4,
0x9b, 0x4b, 0xb9, 0xbe, 0xc8, 0x1f, 0x66, 0x4e, 0xe0, 0xc5, 0x93, 0xef, 0x21, 0xe5, 0x0e, 0x49,
0xfa, 0x66, 0xf2, 0xa8, 0xbd, 0x1f, 0xb1, 0xe7, 0xca, 0x61, 0xbf, 0xf1, 0xcd, 0xdc, 0xca, 0x2b,
0x79, 0x1d, 0xfd, 0xdd, 0x47, 0x87, 0x57, 0x1f, 0x3d, 0x3f, 0x87, 0xd9, 0xd4, 0xa3, 0x20, 0xb9,
0x54, 0xe5, 0x2f, 0x87, 0x8e, 0xda, 0xfd, 0x5b, 0x0c, 0x33, 0x26, 0xcc, 0x4b, 0xde, 0x6b, 0xa0,
0x95, 0xbc, 0xca, 0x47, 0xfe, 0xb0, 0xe3, 0xe8, 0x03, 0x35, 0x12, 0xa6, 0x84, 0x96, 0xf2, 0x88,
0x4c, 0xff, 0x6b, 0xac, 0xfd, 0xd6, 0x64, 0x7f, 0x31, 0x0b, 0x0f, 0xd4, 0x81, 0x69, 0xf6, 0x54,
0x08, 0xbd, 0x21, 0xef, 0xcb, 0xc5, 0x9e, 0x11, 0xb5, 0x8f, 0x7a, 0x6c, 0xe4, 0x8f, 0xed, 0xc0,
0xa7, 0x9b, 0x96, 0xa9, 0x87, 0x44, 0xd2, 0x37, 0x6e, 0xf1, 0xf7, 0x3d, 0xed, 0xa3, 0x9f, 0xf4,
0x88, 0x4d, 0x7f, 0xb5, 0x63, 0xf1, 0x73, 0x98, 0x97, 0x74, 0xd3, 0x51, 0x5e, 0xce, 0x95, 0xd3,
0xc7, 0x6f, 0xaf, 0x4e, 0x3c, 0x3f, 0xc4, 0xfc, 0x87, 0xa0, 0xa6, 0x3b, 0x0a, 0xe8, 0x6a, 0x9e,
0x3e, 0xcb, 0x70, 0x1e, 0xae, 0xcc, 0xb7, 0xde, 0x7d, 0xbc, 0x36, 0xb0, 0x82, 0xbd, 0x71, 0x8f,
0x8c, 0xac, 0xb2, 0xa9, 0x6f, 0x5b, 0x2e, 0xff, 0xb5, 0x2a, 0xf8, 0xbf, 0x4a, 0x57, 0xaf, 0x52,
0x54, 0xa3, 0x5e, 0x6f, 0x9a, 0x7e, 0x5e, 0xff, 0x65, 0x00, 0x00, 0x00, 0xff, 0xff, 0xdd, 0x75,
0x30, 0x3e, 0xb0, 0x3e, 0x00, 0x00,
}
// Reference imports to suppress errors if they are not otherwise used.

View File

@ -152,13 +152,17 @@ func (job *LoadCollectionJob) PreExecute() error {
msg := "load the partition after load collection is not supported"
log.Warn(msg)
return utils.WrapError(msg, ErrLoadParameterMismatched)
}
if old.GetReplicaNumber() != req.GetReplicaNumber() {
} else if old.GetReplicaNumber() != req.GetReplicaNumber() {
msg := fmt.Sprintf("collection with different replica number %d existed, release this collection first before changing its replica number",
job.meta.GetReplicaNumber(req.GetCollectionID()),
)
log.Warn(msg)
return utils.WrapError(msg, ErrLoadParameterMismatched)
} else if !typeutil.MapEqual(old.GetFieldIndexID(), req.GetFieldIndexID()) {
msg := fmt.Sprintf("collection with different index %v existed, release this collection first before changing its index",
old.GetFieldIndexID())
log.Warn(msg)
return utils.WrapError(msg, ErrLoadParameterMismatched)
}
return ErrCollectionLoaded
}
@ -221,6 +225,7 @@ func (job *LoadCollectionJob) Execute() error {
CollectionID: req.GetCollectionID(),
ReplicaNumber: req.GetReplicaNumber(),
Status: querypb.LoadStatus_Loading,
FieldIndexID: req.GetFieldIndexID(),
},
CreatedAt: time.Now(),
UpdatedAt: time.Now(),
@ -350,11 +355,15 @@ func (job *LoadPartitionJob) PreExecute() error {
msg := "load the partition after load collection is not supported"
log.Warn(msg)
return utils.WrapError(msg, ErrLoadParameterMismatched)
}
if job.meta.GetReplicaNumber(req.GetCollectionID()) != req.GetReplicaNumber() {
} else if job.meta.GetReplicaNumber(req.GetCollectionID()) != req.GetReplicaNumber() {
msg := "collection with different replica number existed, release this collection first before changing its replica number"
log.Warn(msg)
return utils.WrapError(msg, ErrLoadParameterMismatched)
} else if !typeutil.MapEqual(job.meta.GetFieldIndex(req.GetCollectionID()), req.GetFieldIndexID()) {
msg := fmt.Sprintf("collection with different index %v existed, release this collection first before changing its index",
job.meta.GetFieldIndex(req.GetCollectionID()))
log.Warn(msg)
return utils.WrapError(msg, ErrLoadParameterMismatched)
}
// Check whether one of the given partitions not loaded
@ -423,6 +432,7 @@ func (job *LoadPartitionJob) Execute() error {
PartitionID: partition,
ReplicaNumber: req.GetReplicaNumber(),
Status: querypb.LoadStatus_Loading,
FieldIndexID: req.GetFieldIndexID(),
},
CreatedAt: time.Now(),
}

View File

@ -34,6 +34,11 @@ import (
"github.com/stretchr/testify/suite"
)
const (
defaultVecFieldID = 1
defaultIndexID = 1
)
type JobSuite struct {
suite.Suite
@ -286,6 +291,65 @@ func (suite *JobSuite) TestLoadCollectionWithReplicas() {
}
}
func (suite *JobSuite) TestLoadCollectionWithDiffIndex() {
ctx := context.Background()
// Test load collection
for _, collection := range suite.collections {
if suite.loadTypes[collection] != querypb.LoadType_LoadCollection {
continue
}
// Load with 1 replica
req := &querypb.LoadCollectionRequest{
CollectionID: collection,
FieldIndexID: map[int64]int64{
defaultVecFieldID: defaultIndexID,
},
}
job := NewLoadCollectionJob(
ctx,
req,
suite.dist,
suite.meta,
suite.targetMgr,
suite.broker,
suite.nodeMgr,
suite.handoffObserver,
)
suite.scheduler.Add(job)
err := job.Wait()
suite.NoError(err)
suite.EqualValues(1, suite.meta.GetReplicaNumber(collection))
suite.assertLoaded(collection)
}
// Test load with different index
for _, collection := range suite.collections {
if suite.loadTypes[collection] != querypb.LoadType_LoadCollection {
continue
}
req := &querypb.LoadCollectionRequest{
CollectionID: collection,
FieldIndexID: map[int64]int64{
defaultVecFieldID: -defaultIndexID,
},
}
job := NewLoadCollectionJob(
ctx,
req,
suite.dist,
suite.meta,
suite.targetMgr,
suite.broker,
suite.nodeMgr,
suite.handoffObserver,
)
suite.scheduler.Add(job)
err := job.Wait()
suite.ErrorIs(err, ErrLoadParameterMismatched)
}
}
func (suite *JobSuite) TestLoadPartition() {
ctx := context.Background()
@ -451,6 +515,68 @@ func (suite *JobSuite) TestLoadPartitionWithReplicas() {
}
}
func (suite *JobSuite) TestLoadPartitionWithDiffIndex() {
ctx := context.Background()
// Test load partition
for _, collection := range suite.collections {
if suite.loadTypes[collection] != querypb.LoadType_LoadPartition {
continue
}
// Load with 1 replica
req := &querypb.LoadPartitionsRequest{
CollectionID: collection,
PartitionIDs: suite.partitions[collection],
FieldIndexID: map[int64]int64{
defaultVecFieldID: defaultIndexID,
},
}
job := NewLoadPartitionJob(
ctx,
req,
suite.dist,
suite.meta,
suite.targetMgr,
suite.broker,
suite.nodeMgr,
suite.handoffObserver,
)
suite.scheduler.Add(job)
err := job.Wait()
suite.NoError(err)
suite.EqualValues(1, suite.meta.GetReplicaNumber(collection))
suite.assertLoaded(collection)
}
// Test load partition with different index
for _, collection := range suite.collections {
if suite.loadTypes[collection] != querypb.LoadType_LoadPartition {
continue
}
// Load with 1 replica
req := &querypb.LoadPartitionsRequest{
CollectionID: collection,
PartitionIDs: suite.partitions[collection],
FieldIndexID: map[int64]int64{
defaultVecFieldID: -defaultIndexID,
},
}
job := NewLoadPartitionJob(
ctx,
req,
suite.dist,
suite.meta,
suite.targetMgr,
suite.broker,
suite.nodeMgr,
suite.handoffObserver,
)
suite.scheduler.Add(job)
err := job.Wait()
suite.ErrorIs(err, ErrLoadParameterMismatched)
}
}
func (suite *JobSuite) TestReleaseCollection() {
ctx := context.Background()

View File

@ -193,6 +193,52 @@ func (m *CollectionManager) GetStatus(id UniqueID) querypb.LoadStatus {
return querypb.LoadStatus_Loaded
}
func (m *CollectionManager) GetFieldIndex(collectionID UniqueID) map[int64]int64 {
m.rwmutex.RLock()
defer m.rwmutex.RUnlock()
collection, ok := m.collections[collectionID]
if ok {
return collection.GetFieldIndexID()
}
partitions := m.getPartitionsByCollection(collectionID)
if len(partitions) == 0 {
return nil
}
return partitions[0].GetFieldIndexID()
}
// ContainAnyIndex returns true if the loaded collection contains one of the given indexes,
// returns false otherwise.
func (m *CollectionManager) ContainAnyIndex(collectionID int64, indexIDs ...int64) bool {
m.rwmutex.RLock()
defer m.rwmutex.RUnlock()
for _, indexID := range indexIDs {
if m.containIndex(collectionID, indexID) {
return true
}
}
return false
}
func (m *CollectionManager) containIndex(collectionID, indexID int64) bool {
collection, ok := m.collections[collectionID]
if ok {
return lo.Contains(lo.Values(collection.GetFieldIndexID()), indexID)
}
partitions := m.getPartitionsByCollection(collectionID)
if len(partitions) == 0 {
return false
}
for _, partition := range partitions {
if lo.Contains(lo.Values(partition.GetFieldIndexID()), indexID) {
return true
}
}
return false
}
func (m *CollectionManager) Exist(id UniqueID) bool {
m.rwmutex.RLock()
defer m.rwmutex.RUnlock()

View File

@ -22,6 +22,7 @@ import (
"time"
"github.com/golang/protobuf/proto"
"github.com/samber/lo"
"go.etcd.io/etcd/api/v3/mvccpb"
"go.uber.org/zap"
@ -219,29 +220,36 @@ func (ob *HandoffObserver) schedule(ctx context.Context) {
func (ob *HandoffObserver) tryHandoff(ctx context.Context, segment *querypb.SegmentInfo) {
ob.handoffEventLock.Lock()
defer ob.handoffEventLock.Unlock()
log := log.With(zap.Int64("collectionID", segment.CollectionID),
zap.Int64("partitionID", segment.PartitionID),
zap.Int64("segmentID", segment.SegmentID))
partitionStatus, collectionRegistered := ob.collectionStatus[segment.CollectionID]
if Params.QueryCoordCfg.AutoHandoff && collectionRegistered {
if partitionStatus == CollectionHandoffStatusRegistered {
ob.handoffEvents[segment.SegmentID] = &HandoffEvent{
indexIDs := lo.Map(segment.GetIndexInfos(), func(indexInfo *querypb.FieldIndexInfo, _ int) int64 { return indexInfo.GetIndexID() })
log := log.With(zap.Int64("collectionID", segment.GetCollectionID()),
zap.Int64("partitionID", segment.GetPartitionID()),
zap.Int64("segmentID", segment.GetSegmentID()),
zap.Int64s("indexIDs", indexIDs),
)
log.Info("try handoff segment...")
status, ok := ob.collectionStatus[segment.GetCollectionID()]
if Params.QueryCoordCfg.AutoHandoff &&
ok &&
ob.meta.CollectionManager.ContainAnyIndex(segment.GetCollectionID(), indexIDs...) {
if status == CollectionHandoffStatusRegistered {
ob.handoffEvents[segment.GetSegmentID()] = &HandoffEvent{
Segment: segment,
Status: HandoffEventStatusReceived,
}
} else {
ob.handoffEvents[segment.SegmentID] = &HandoffEvent{
ob.handoffEvents[segment.GetSegmentID()] = &HandoffEvent{
Segment: segment,
Status: HandoffEventStatusTriggered,
}
ob.handoff(segment)
}
_, ok := ob.handoffSubmitOrders[segment.PartitionID]
_, ok := ob.handoffSubmitOrders[segment.GetPartitionID()]
if !ok {
ob.handoffSubmitOrders[segment.PartitionID] = make([]int64, 0)
ob.handoffSubmitOrders[segment.GetPartitionID()] = make([]int64, 0)
}
ob.handoffSubmitOrders[segment.PartitionID] = append(ob.handoffSubmitOrders[segment.PartitionID], segment.SegmentID)
ob.handoffSubmitOrders[segment.GetPartitionID()] = append(ob.handoffSubmitOrders[segment.GetPartitionID()], segment.GetSegmentID())
} else {
// ignore handoff task
log.Debug("handoff event trigger failed due to collection/partition is not loaded!")
@ -258,9 +266,9 @@ func (ob *HandoffObserver) handoff(segment *querypb.SegmentInfo) {
uniqueSet.Insert(segment.GetCompactionFrom()...)
segmentInfo := &datapb.SegmentInfo{
ID: segment.SegmentID,
CollectionID: segment.CollectionID,
PartitionID: segment.PartitionID,
ID: segment.GetSegmentID(),
CollectionID: segment.GetCollectionID(),
PartitionID: segment.GetPartitionID(),
NumOfRows: segment.NumRows,
InsertChannel: segment.GetDmChannel(),
State: segment.GetSegmentState(),
@ -282,9 +290,9 @@ func (ob *HandoffObserver) isGrowingSegmentReleased(id int64) bool {
func (ob *HandoffObserver) isSealedSegmentLoaded(segment *querypb.SegmentInfo) bool {
// must be sealed Segment loaded in all replica, in case of handoff between growing and sealed
nodes := ob.dist.LeaderViewManager.GetSealedSegmentDist(segment.SegmentID)
replicas := utils.GroupNodesByReplica(ob.meta.ReplicaManager, segment.CollectionID, nodes)
return len(replicas) == len(ob.meta.ReplicaManager.GetByCollection(segment.CollectionID))
nodes := ob.dist.LeaderViewManager.GetSealedSegmentDist(segment.GetSegmentID())
replicas := utils.GroupNodesByReplica(ob.meta.ReplicaManager, segment.GetCollectionID(), nodes)
return len(replicas) == len(ob.meta.ReplicaManager.GetByCollection(segment.GetCollectionID()))
}
func (ob *HandoffObserver) getOverrideSegmentInfo(handOffSegments []*datapb.SegmentInfo, segmentIDs ...int64) []int64 {
@ -313,9 +321,9 @@ func (ob *HandoffObserver) tryRelease(ctx context.Context, event *HandoffEvent)
return
}
log.Info("remove compactFrom segments",
zap.Int64("collectionID", segment.CollectionID),
zap.Int64("partitionID", segment.PartitionID),
zap.Int64("segmentID", segment.SegmentID),
zap.Int64("collectionID", segment.GetCollectionID()),
zap.Int64("partitionID", segment.GetPartitionID()),
zap.Int64("segmentID", segment.GetSegmentID()),
zap.Int64s("sourceSegments", compactSource),
)
for _, toRelease := range compactSource {
@ -342,13 +350,13 @@ func (ob *HandoffObserver) tryClean(ctx context.Context) {
segment := event.Segment
if ob.isAllCompactFromReleased(segment) {
log.Info("HandoffObserver: clean handoff event after handoff finished!",
zap.Int64("collectionID", segment.CollectionID),
zap.Int64("partitionID", segment.PartitionID),
zap.Int64("segmentID", segment.SegmentID),
zap.Int64("collectionID", segment.GetCollectionID()),
zap.Int64("partitionID", segment.GetPartitionID()),
zap.Int64("segmentID", segment.GetSegmentID()),
)
err := ob.cleanEvent(ctx, segment)
if err == nil {
delete(ob.handoffEvents, segment.SegmentID)
delete(ob.handoffEvents, segment.GetSegmentID())
}
pos++
} else {

View File

@ -39,6 +39,11 @@ import (
"github.com/milvus-io/milvus/internal/util/typeutil"
)
const (
defaultVecFieldID = 1
defaultIndexID = 1
)
type HandoffObserverTestSuit struct {
suite.Suite
// Data
@ -144,6 +149,7 @@ func (suite *HandoffObserverTestSuit) TestFlushingHandoff() {
CollectionID: suite.collection,
PartitionID: suite.partition,
SegmentState: commonpb.SegmentState_Sealed,
IndexInfos: []*querypb.FieldIndexInfo{{IndexID: defaultIndexID}},
}
suite.produceHandOffEvent(flushingSegment)
@ -199,6 +205,7 @@ func (suite *HandoffObserverTestSuit) TestCompactHandoff() {
SegmentState: commonpb.SegmentState_Sealed,
CompactionFrom: []int64{1},
CreatedByCompaction: true,
IndexInfos: []*querypb.FieldIndexInfo{{IndexID: defaultIndexID}},
}
suite.produceHandOffEvent(compactSegment)
@ -252,6 +259,7 @@ func (suite *HandoffObserverTestSuit) TestRecursiveHandoff() {
CollectionID: suite.collection,
PartitionID: suite.partition,
SegmentState: commonpb.SegmentState_Sealed,
IndexInfos: []*querypb.FieldIndexInfo{{IndexID: defaultIndexID}},
}
compactSegment1 := &querypb.SegmentInfo{
@ -261,6 +269,7 @@ func (suite *HandoffObserverTestSuit) TestRecursiveHandoff() {
SegmentState: commonpb.SegmentState_Sealed,
CompactionFrom: []int64{3},
CreatedByCompaction: true,
IndexInfos: []*querypb.FieldIndexInfo{{IndexID: defaultIndexID}},
}
compactSegment2 := &querypb.SegmentInfo{
@ -270,6 +279,7 @@ func (suite *HandoffObserverTestSuit) TestRecursiveHandoff() {
SegmentState: commonpb.SegmentState_Sealed,
CompactionFrom: []int64{4},
CreatedByCompaction: true,
IndexInfos: []*querypb.FieldIndexInfo{{IndexID: defaultIndexID}},
}
suite.produceHandOffEvent(flushingSegment)
@ -336,6 +346,7 @@ func (suite *HandoffObserverTestSuit) TestReloadHandoffEventOrder() {
CollectionID: suite.collection,
PartitionID: suite.partition,
SegmentState: commonpb.SegmentState_Sealed,
IndexInfos: []*querypb.FieldIndexInfo{{IndexID: defaultIndexID}},
}
compactSegment1 := &querypb.SegmentInfo{
SegmentID: 9,
@ -344,6 +355,7 @@ func (suite *HandoffObserverTestSuit) TestReloadHandoffEventOrder() {
SegmentState: commonpb.SegmentState_Sealed,
CompactionFrom: []int64{3},
CreatedByCompaction: true,
IndexInfos: []*querypb.FieldIndexInfo{{IndexID: defaultIndexID}},
}
compactSegment2 := &querypb.SegmentInfo{
SegmentID: 10,
@ -352,6 +364,7 @@ func (suite *HandoffObserverTestSuit) TestReloadHandoffEventOrder() {
SegmentState: commonpb.SegmentState_Sealed,
CompactionFrom: []int64{4},
CreatedByCompaction: true,
IndexInfos: []*querypb.FieldIndexInfo{{IndexID: defaultIndexID}},
}
suite.produceHandOffEvent(flushingSegment)
@ -381,6 +394,7 @@ func (suite *HandoffObserverTestSuit) TestLoadHandoffEventFromStore() {
CollectionID: suite.collection,
PartitionID: suite.partition,
SegmentState: commonpb.SegmentState_Sealed,
IndexInfos: []*querypb.FieldIndexInfo{{IndexID: defaultIndexID}},
}
compactSegment1 := &querypb.SegmentInfo{
SegmentID: 4,
@ -389,6 +403,7 @@ func (suite *HandoffObserverTestSuit) TestLoadHandoffEventFromStore() {
SegmentState: commonpb.SegmentState_Sealed,
CompactionFrom: []int64{3},
CreatedByCompaction: true,
IndexInfos: []*querypb.FieldIndexInfo{{IndexID: defaultIndexID}},
}
compactSegment2 := &querypb.SegmentInfo{
SegmentID: 5,
@ -397,6 +412,7 @@ func (suite *HandoffObserverTestSuit) TestLoadHandoffEventFromStore() {
SegmentState: commonpb.SegmentState_Sealed,
CompactionFrom: []int64{4},
CreatedByCompaction: true,
IndexInfos: []*querypb.FieldIndexInfo{{IndexID: defaultIndexID}},
}
suite.produceHandOffEvent(flushingSegment)
@ -459,6 +475,12 @@ func (suite *HandoffObserverTestSuit) produceHandOffEvent(segmentInfo *querypb.S
suite.NoError(err)
}
func (suite *HandoffObserverTestSuit) existHandOffEvent(segmentInfo *querypb.SegmentInfo) bool {
key := fmt.Sprintf("%s/%d/%d/%d", util.HandoffSegmentPrefix, segmentInfo.CollectionID, segmentInfo.PartitionID, segmentInfo.SegmentID)
_, err := suite.kv.Load(key)
return err == nil
}
func (suite *HandoffObserverTestSuit) load() {
// Mock meta data
replicas, err := suite.meta.ReplicaManager.Spawn(suite.collection, suite.replicaNumber)
@ -474,6 +496,7 @@ func (suite *HandoffObserverTestSuit) load() {
CollectionID: suite.collection,
ReplicaNumber: suite.replicaNumber,
Status: querypb.LoadStatus_Loaded,
FieldIndexID: map[int64]int64{defaultVecFieldID: defaultIndexID},
},
LoadPercentage: 0,
CreatedAt: time.Now(),
@ -519,6 +542,7 @@ func (suite *HandoffObserverTestSuit) TestHandoffOnUnLoadedPartition() {
SegmentState: commonpb.SegmentState_Sealed,
CompactionFrom: []int64{2},
CreatedByCompaction: true,
IndexInfos: []*querypb.FieldIndexInfo{{IndexID: defaultIndexID}},
}
suite.produceHandOffEvent(compactSegment)
@ -537,6 +561,37 @@ func (suite *HandoffObserverTestSuit) TestHandoffOnUnLoadedPartition() {
}, 3*time.Second, 1*time.Second)
}
func (suite *HandoffObserverTestSuit) TestFilterOutEventByIndexID() {
// init leader view
suite.dist.LeaderViewManager.Update(2, &meta.LeaderView{
ID: 1,
CollectionID: suite.collection,
Channel: suite.channel.ChannelName,
Segments: map[int64]*querypb.SegmentDist{1: {NodeID: 1, Version: 0}, 2: {NodeID: 2, Version: 0}},
})
Params.QueryCoordCfg.CheckHandoffInterval = 1 * time.Second
err := suite.observer.Start(context.Background())
suite.NoError(err)
compactSegment := &querypb.SegmentInfo{
SegmentID: 3,
CollectionID: suite.collection,
PartitionID: suite.partition,
SegmentState: commonpb.SegmentState_Sealed,
CompactionFrom: []int64{1},
CreatedByCompaction: true,
}
suite.produceHandOffEvent(compactSegment)
suite.Eventually(func() bool {
suite.observer.handoffEventLock.RLock()
defer suite.observer.handoffEventLock.RUnlock()
_, ok := suite.observer.handoffEvents[compactSegment.GetSegmentID()]
return !ok && !suite.target.ContainSegment(3) && !suite.existHandOffEvent(compactSegment)
}, 3*time.Second, 1*time.Second)
}
func TestHandoffObserverSuit(t *testing.T) {
suite.Run(t, new(HandoffObserverTestSuit))
}

View File

@ -188,7 +188,9 @@ func (s *Server) LoadCollection(ctx context.Context, req *querypb.LoadCollection
log.Info("load collection request received",
zap.Any("schema", req.Schema),
zap.Int32("replicaNumber", req.ReplicaNumber))
zap.Int32("replicaNumber", req.ReplicaNumber),
zap.Int64s("fieldIndexes", lo.Values(req.GetFieldIndexID())),
)
metrics.QueryCoordLoadCount.WithLabelValues(metrics.TotalLabel).Inc()
if s.status.Load() != commonpb.StateCode_Healthy {

View File

@ -2,6 +2,20 @@ package typeutil
import "sync"
// MapEqual returns true if the two map contain the same keys and values
func MapEqual(left, right map[int64]int64) bool {
if len(left) != len(right) {
return false
}
for k, v := range left {
if v2, ok := right[k]; !ok || v != v2 {
return false
}
}
return true
}
// MergeMap merge one map to another
func MergeMap(src map[string]string, dst map[string]string) map[string]string {
for k, v := range src {

View File

@ -3,28 +3,57 @@ package typeutil
import (
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/suite"
)
func TestMergeMap(t *testing.T) {
type MapUtilSuite struct {
suite.Suite
}
func (suite *MapUtilSuite) TestMapEqual() {
left := map[int64]int64{
1: 10,
2: 20,
}
right := map[int64]int64{
1: 10,
2: 200,
}
suite.False(MapEqual(left, right))
suite.False(MapEqual(right, left))
right[2] = 20
suite.True(MapEqual(left, right))
suite.True(MapEqual(right, left))
left[3] = 30
suite.False(MapEqual(left, right))
suite.False(MapEqual(right, left))
}
func (suite *MapUtilSuite) TestMergeMap() {
src := make(map[string]string)
src["Alice"] = "female"
src["Bob"] = "male"
dst := make(map[string]string)
dst = MergeMap(src, dst)
assert.EqualValues(t, dst, src)
suite.EqualValues(dst, src)
src = nil
dst = nil
dst = MergeMap(src, dst)
assert.Nil(t, dst)
suite.Nil(dst)
}
func TestGetMapKeys(t *testing.T) {
func (suite *MapUtilSuite) TestGetMapKeys() {
src := make(map[string]string)
src["Alice"] = "female"
src["Bob"] = "male"
keys := GetMapKeys(src)
assert.Equal(t, 2, len(keys))
assert.Contains(t, keys, "Alice", "Bob")
suite.Equal(2, len(keys))
suite.Contains(keys, "Alice", "Bob")
}
func TestMapUtil(t *testing.T) {
suite.Run(t, new(MapUtilSuite))
}