From b9382b301b7305312c037b7590ddeb3a94b144fe Mon Sep 17 00:00:00 2001 From: groot Date: Thu, 23 Jun 2022 15:05:48 +0800 Subject: [PATCH] Refine bulkload code Signed-off-by: groot --- internal/core/src/pb/common.pb.cc | 37 +- internal/core/src/pb/common.pb.h | 3 - internal/datanode/data_node.go | 16 +- internal/proto/common.proto | 13 +- internal/proto/commonpb/common.pb.go | 299 ++++----- internal/proto/milvus.proto | 2 + internal/proto/milvuspb/milvus.pb.go | 629 +++++++++--------- internal/rootcoord/import_manager.go | 1 - internal/rootcoord/import_manager_test.go | 28 +- internal/rootcoord/root_coord_test.go | 15 - internal/util/importutil/import_wrapper.go | 250 ++++--- .../util/importutil/import_wrapper_test.go | 1 + internal/util/importutil/json_handler.go | 2 +- 13 files changed, 622 insertions(+), 674 deletions(-) diff --git a/internal/core/src/pb/common.pb.cc b/internal/core/src/pb/common.pb.cc index e53475f54d0a..3666412f614d 100644 --- a/internal/core/src/pb/common.pb.cc +++ b/internal/core/src/pb/common.pb.cc @@ -439,23 +439,21 @@ const char descriptor_table_protodef_common_2eproto[] PROTOBUF_SECTION_VARIABLE( "\n\rUndefiedState\020\000\022\r\n\tExecuting\020\001\022\r\n\tComp" "leted\020\002*X\n\020ConsistencyLevel\022\n\n\006Strong\020\000\022" "\013\n\007Session\020\001\022\013\n\007Bounded\020\002\022\016\n\nEventually\020" - "\003\022\016\n\nCustomized\020\004*\257\001\n\013ImportState\022\021\n\rImp" - "ortPending\020\000\022\020\n\014ImportFailed\020\001\022\021\n\rImport" - "Started\020\002\022\024\n\020ImportDownloaded\020\003\022\020\n\014Impor" - "tParsed\020\004\022\023\n\017ImportPersisted\020\005\022\023\n\017Import" - "Completed\020\006\022\026\n\022ImportAllocSegment\020\n*\036\n\014R" - "esourceType\022\016\n\nCollection\020\000*\335\001\n\021Resource" - "Privilege\022\020\n\014PrivilegeAll\020\000\022\023\n\017Privilege" - "Create\020\001\022\021\n\rPrivilegeDrop\020\002\022\022\n\016Privilege" - "Alter\020\003\022\021\n\rPrivilegeRead\020\004\022\021\n\rPrivilegeL" - "oad\020\005\022\024\n\020PrivilegeRelease\020\006\022\024\n\020Privilege" - "Compact\020\007\022\023\n\017PrivilegeInsert\020\010\022\023\n\017Privil" - "egeDelete\020\t:^\n\021privilege_ext_obj\022\037.googl" - "e.protobuf.MessageOptions\030\351\007 \001(\0132!.milvu" - "s.proto.common.PrivilegeExtBW\n\016io.milvus" - ".grpcB\013CommonProtoP\001Z3github.com/milvus-" - "io/milvus/internal/proto/commonpb\240\001\001b\006pr" - "oto3" + "\003\022\016\n\nCustomized\020\004*r\n\013ImportState\022\021\n\rImpo" + "rtPending\020\000\022\020\n\014ImportFailed\020\001\022\021\n\rImportS" + "tarted\020\002\022\023\n\017ImportPersisted\020\005\022\026\n\022ImportA" + "llocSegment\020\n*\036\n\014ResourceType\022\016\n\nCollect" + "ion\020\000*\335\001\n\021ResourcePrivilege\022\020\n\014Privilege" + "All\020\000\022\023\n\017PrivilegeCreate\020\001\022\021\n\rPrivilegeD" + "rop\020\002\022\022\n\016PrivilegeAlter\020\003\022\021\n\rPrivilegeRe" + "ad\020\004\022\021\n\rPrivilegeLoad\020\005\022\024\n\020PrivilegeRele" + "ase\020\006\022\024\n\020PrivilegeCompact\020\007\022\023\n\017Privilege" + "Insert\020\010\022\023\n\017PrivilegeDelete\020\t:^\n\021privile" + "ge_ext_obj\022\037.google.protobuf.MessageOpti" + "ons\030\351\007 \001(\0132!.milvus.proto.common.Privile" + "geExtBW\n\016io.milvus.grpcB\013CommonProtoP\001Z3" + "github.com/milvus-io/milvus/internal/pro" + "to/commonpb\240\001\001b\006proto3" ; static const ::PROTOBUF_NAMESPACE_ID::internal::DescriptorTable*const descriptor_table_common_2eproto_deps[1] = { &::descriptor_table_google_2fprotobuf_2fdescriptor_2eproto, @@ -476,7 +474,7 @@ static ::PROTOBUF_NAMESPACE_ID::internal::SCCInfoBase*const descriptor_table_com static ::PROTOBUF_NAMESPACE_ID::internal::once_flag descriptor_table_common_2eproto_once; static bool descriptor_table_common_2eproto_initialized = false; const ::PROTOBUF_NAMESPACE_ID::internal::DescriptorTable descriptor_table_common_2eproto = { - &descriptor_table_common_2eproto_initialized, descriptor_table_protodef_common_2eproto, "common.proto", 4684, + &descriptor_table_common_2eproto_initialized, descriptor_table_protodef_common_2eproto, "common.proto", 4622, &descriptor_table_common_2eproto_once, descriptor_table_common_2eproto_sccs, descriptor_table_common_2eproto_deps, 11, 1, schemas, file_default_instances, TableStruct_common_2eproto::offsets, file_level_metadata_common_2eproto, 11, file_level_enum_descriptors_common_2eproto, file_level_service_descriptors_common_2eproto, @@ -742,10 +740,7 @@ bool ImportState_IsValid(int value) { case 0: case 1: case 2: - case 3: - case 4: case 5: - case 6: case 10: return true; default: diff --git a/internal/core/src/pb/common.pb.h b/internal/core/src/pb/common.pb.h index 160a703bf888..2e5d1283e176 100644 --- a/internal/core/src/pb/common.pb.h +++ b/internal/core/src/pb/common.pb.h @@ -450,10 +450,7 @@ enum ImportState : int { ImportPending = 0, ImportFailed = 1, ImportStarted = 2, - ImportDownloaded = 3, - ImportParsed = 4, ImportPersisted = 5, - ImportCompleted = 6, ImportAllocSegment = 10, ImportState_INT_MIN_SENTINEL_DO_NOT_USE_ = std::numeric_limits<::PROTOBUF_NAMESPACE_ID::int32>::min(), ImportState_INT_MAX_SENTINEL_DO_NOT_USE_ = std::numeric_limits<::PROTOBUF_NAMESPACE_ID::int32>::max() diff --git a/internal/datanode/data_node.go b/internal/datanode/data_node.go index 9d0ed50d8696..64ca449d79be 100644 --- a/internal/datanode/data_node.go +++ b/internal/datanode/data_node.go @@ -971,14 +971,14 @@ func (node *DataNode) AddSegment(ctx context.Context, req *datapb.AddSegmentRequ } func importFlushReqFunc(node *DataNode, req *datapb.ImportTaskRequest, res *rootcoordpb.ImportResult, schema *schemapb.CollectionSchema, ts Timestamp) importutil.ImportFlushFunc { - return func(fields map[storage.FieldID]storage.FieldData, shardNum int) error { - if shardNum >= len(req.GetImportTask().GetChannelNames()) { + return func(fields map[storage.FieldID]storage.FieldData, shardID int) error { + if shardID >= len(req.GetImportTask().GetChannelNames()) { log.Error("import task returns invalid shard number", - zap.Int("shard num", shardNum), + zap.Int("shard num", shardID), zap.Int("# of channels", len(req.GetImportTask().GetChannelNames())), zap.Any("channel names", req.GetImportTask().GetChannelNames()), ) - return fmt.Errorf("syncSegmentID Failed: invalid shard number %d", shardNum) + return fmt.Errorf("syncSegmentID Failed: invalid shard ID %d", shardID) } tr := timerecord.NewTimeRecorder("import callback function") @@ -993,10 +993,10 @@ func importFlushReqFunc(node *DataNode, req *datapb.ImportTaskRequest, res *root } // ask DataCoord to alloc a new segment - log.Info("import task flush segment", zap.Any("ChannelNames", req.ImportTask.ChannelNames), zap.Int("shardNum", shardNum)) + log.Info("import task flush segment", zap.Any("ChannelNames", req.ImportTask.ChannelNames), zap.Int("shardID", shardID)) segReqs := []*datapb.SegmentIDRequest{ { - ChannelName: req.ImportTask.ChannelNames[shardNum], + ChannelName: req.ImportTask.ChannelNames[shardID], Count: uint32(rowNum), CollectionID: req.GetImportTask().GetCollectionId(), PartitionID: req.GetImportTask().GetPartitionId(), @@ -1078,8 +1078,8 @@ func importFlushReqFunc(node *DataNode, req *datapb.ImportTaskRequest, res *root kvs[key] = blob.Value[:] field2Insert[fieldID] = &datapb.Binlog{ EntriesNum: data.size, - TimestampFrom: 0, //TODO - TimestampTo: 0, //TODO, + TimestampFrom: ts, + TimestampTo: ts, LogPath: key, LogSize: int64(len(blob.Value)), } diff --git a/internal/proto/common.proto b/internal/proto/common.proto index bf594f69b155..655428f00e6f 100644 --- a/internal/proto/common.proto +++ b/internal/proto/common.proto @@ -262,14 +262,11 @@ enum ConsistencyLevel { } enum ImportState { - ImportPending = 0; - ImportFailed = 1; - ImportStarted = 2; - ImportDownloaded = 3; - ImportParsed = 4; - ImportPersisted = 5; - ImportCompleted = 6; - ImportAllocSegment = 10; + ImportPending = 0; // the task in in pending list of rootCoord, waiting to be executed + ImportFailed = 1; // the task failed for some reason, get detail reason from GetImportStateResponse.infos + ImportStarted = 2; // the task has been sent to datanode to execute + ImportPersisted = 5; // all data files have been parsed and data already persisted + ImportAllocSegment = 10; // internal useage, no need to expose in sdk } enum ResourceType { diff --git a/internal/proto/commonpb/common.pb.go b/internal/proto/commonpb/common.pb.go index 6fd92d6ec52d..2e557479ee45 100644 --- a/internal/proto/commonpb/common.pb.go +++ b/internal/proto/commonpb/common.pb.go @@ -640,10 +640,7 @@ const ( ImportState_ImportPending ImportState = 0 ImportState_ImportFailed ImportState = 1 ImportState_ImportStarted ImportState = 2 - ImportState_ImportDownloaded ImportState = 3 - ImportState_ImportParsed ImportState = 4 ImportState_ImportPersisted ImportState = 5 - ImportState_ImportCompleted ImportState = 6 ImportState_ImportAllocSegment ImportState = 10 ) @@ -651,10 +648,7 @@ var ImportState_name = map[int32]string{ 0: "ImportPending", 1: "ImportFailed", 2: "ImportStarted", - 3: "ImportDownloaded", - 4: "ImportParsed", 5: "ImportPersisted", - 6: "ImportCompleted", 10: "ImportAllocSegment", } @@ -662,10 +656,7 @@ var ImportState_value = map[string]int32{ "ImportPending": 0, "ImportFailed": 1, "ImportStarted": 2, - "ImportDownloaded": 3, - "ImportParsed": 4, "ImportPersisted": 5, - "ImportCompleted": 6, "ImportAllocSegment": 10, } @@ -1314,150 +1305,148 @@ func init() { func init() { proto.RegisterFile("common.proto", fileDescriptor_555bd8c177793206) } var fileDescriptor_555bd8c177793206 = []byte{ - // 2309 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x58, 0xd9, 0x73, 0x23, 0x47, - 0x19, 0xf7, 0x58, 0x5a, 0xcb, 0x6a, 0x8d, 0xed, 0xde, 0xf6, 0x1e, 0xce, 0x66, 0x93, 0x38, 0x22, - 0x09, 0xc6, 0x10, 0x2f, 0x24, 0x55, 0x40, 0x51, 0x15, 0xaa, 0x6c, 0xc9, 0xf6, 0xaa, 0xe2, 0x43, - 0x8c, 0xec, 0x24, 0x45, 0x15, 0xb8, 0xda, 0x33, 0x9f, 0xe5, 0xc9, 0xce, 0x4c, 0x0f, 0xdd, 0x2d, - 0xaf, 0xc5, 0x53, 0x08, 0xff, 0x00, 0x84, 0x7f, 0x80, 0x3f, 0x80, 0xfb, 0x08, 0x3c, 0x51, 0xdc, - 0x24, 0x5c, 0xcf, 0x5c, 0x01, 0x1e, 0xe1, 0x9d, 0x33, 0x27, 0xf5, 0x75, 0xcf, 0x65, 0xc7, 0x81, - 0x07, 0xde, 0xd4, 0xbf, 0xef, 0xfe, 0xfa, 0x3b, 0xa6, 0x45, 0x5c, 0x5f, 0xc4, 0xb1, 0x48, 0x56, - 0x52, 0x29, 0xb4, 0x60, 0xf3, 0x71, 0x18, 0x9d, 0x8c, 0x94, 0x3d, 0xad, 0x58, 0xd2, 0x8d, 0xc5, - 0xa1, 0x10, 0xc3, 0x08, 0x6e, 0x19, 0xf0, 0x70, 0x74, 0x74, 0x2b, 0x00, 0xe5, 0xcb, 0x30, 0xd5, - 0x42, 0x5a, 0xc6, 0xf6, 0x01, 0x99, 0x1a, 0x68, 0xae, 0x47, 0x8a, 0x3d, 0x41, 0x08, 0x48, 0x29, - 0xe4, 0x81, 0x2f, 0x02, 0x58, 0x70, 0x16, 0x9d, 0xa5, 0xd9, 0xc7, 0xee, 0x5f, 0xb9, 0x40, 0xeb, - 0xca, 0x3a, 0xb2, 0x75, 0x44, 0x00, 0x5e, 0x13, 0xf2, 0x9f, 0xec, 0x1a, 0x99, 0x92, 0xc0, 0x95, - 0x48, 0x16, 0x26, 0x17, 0x9d, 0xa5, 0xa6, 0x97, 0x9d, 0xda, 0x1f, 0x24, 0xee, 0x93, 0x30, 0x7e, - 0x8a, 0x47, 0x23, 0xe8, 0xf3, 0x50, 0x32, 0x4a, 0x6a, 0x77, 0x60, 0x6c, 0xf4, 0x37, 0x3d, 0xfc, - 0xc9, 0xae, 0x90, 0x4b, 0x27, 0x48, 0xce, 0x04, 0xed, 0xa1, 0xfd, 0x38, 0x69, 0x3d, 0x09, 0xe3, - 0x2e, 0xd7, 0xfc, 0x1d, 0xc4, 0x18, 0xa9, 0x07, 0x5c, 0x73, 0x23, 0xe5, 0x7a, 0xe6, 0x77, 0xfb, - 0x26, 0xa9, 0xaf, 0x45, 0xe2, 0xb0, 0x54, 0xe9, 0x18, 0x62, 0xa6, 0xf2, 0x84, 0xd0, 0x7e, 0xc4, - 0x7d, 0x38, 0x16, 0x51, 0x00, 0xd2, 0xb8, 0x84, 0x7a, 0x35, 0x1f, 0xe6, 0x7a, 0x35, 0x1f, 0xb2, - 0x0f, 0x93, 0xba, 0x1e, 0xa7, 0xd6, 0x9b, 0xd9, 0xc7, 0x1e, 0xba, 0x30, 0x03, 0x15, 0x35, 0x7b, - 0xe3, 0x14, 0x3c, 0x23, 0x81, 0x29, 0x30, 0x86, 0xd4, 0x42, 0x6d, 0xb1, 0xb6, 0xe4, 0x7a, 0xd9, - 0xa9, 0xfd, 0x89, 0x33, 0x76, 0x37, 0xa5, 0x18, 0xa5, 0xac, 0x47, 0xdc, 0xb4, 0xc4, 0xd4, 0x82, - 0xb3, 0x58, 0x5b, 0x6a, 0x3d, 0xf6, 0xf0, 0xff, 0xb2, 0x66, 0x9c, 0xf6, 0xce, 0x88, 0xb6, 0x1f, - 0x25, 0x8d, 0xd5, 0x20, 0x90, 0xa0, 0x14, 0x9b, 0x25, 0x93, 0x61, 0x9a, 0x05, 0x33, 0x19, 0xa6, - 0x98, 0xa3, 0x54, 0x48, 0x6d, 0x62, 0xa9, 0x79, 0xe6, 0x77, 0xfb, 0x05, 0x87, 0x34, 0xb6, 0xd5, - 0x70, 0x8d, 0x2b, 0x60, 0x1f, 0x22, 0xd3, 0xb1, 0x1a, 0x1e, 0x98, 0x78, 0xed, 0x8d, 0xdf, 0xbc, - 0xd0, 0x83, 0x6d, 0x35, 0x34, 0x71, 0x36, 0x62, 0xfb, 0x03, 0x13, 0x1c, 0xab, 0x61, 0xaf, 0x9b, - 0x69, 0xb6, 0x07, 0x76, 0x93, 0x34, 0x75, 0x18, 0x83, 0xd2, 0x3c, 0x4e, 0x17, 0x6a, 0x8b, 0xce, - 0x52, 0xdd, 0x2b, 0x01, 0x76, 0x83, 0x4c, 0x2b, 0x31, 0x92, 0x3e, 0xf4, 0xba, 0x0b, 0x75, 0x23, - 0x56, 0x9c, 0xdb, 0x4f, 0x90, 0xe6, 0xb6, 0x1a, 0xde, 0x06, 0x1e, 0x80, 0x64, 0xef, 0x27, 0xf5, - 0x43, 0xae, 0xac, 0x47, 0xad, 0x77, 0xf6, 0x08, 0x23, 0xf0, 0x0c, 0x67, 0xfb, 0x93, 0xc4, 0xed, - 0x6e, 0x6f, 0xfd, 0x1f, 0x1a, 0xd0, 0x75, 0x75, 0xcc, 0x65, 0xb0, 0xc3, 0xe3, 0xbc, 0x10, 0x4b, - 0xa0, 0xfd, 0x8a, 0x43, 0xdc, 0xbe, 0x0c, 0x4f, 0xc2, 0x08, 0x86, 0xb0, 0x7e, 0xaa, 0xd9, 0x06, - 0x99, 0x91, 0x60, 0xbd, 0xaf, 0x66, 0xef, 0xc1, 0x0b, 0x2d, 0x79, 0x19, 0xa7, 0x49, 0xa1, 0x2b, - 0x2b, 0x27, 0xb6, 0x4f, 0x58, 0xa1, 0x27, 0xcd, 0x0d, 0x64, 0xa5, 0xf7, 0xc8, 0x7f, 0x55, 0x56, - 0xb8, 0xe3, 0x5d, 0x96, 0xe7, 0x21, 0xb6, 0x42, 0xe6, 0x0b, 0xb5, 0x09, 0x8f, 0xe1, 0x20, 0x4c, - 0x02, 0x38, 0x35, 0x57, 0x72, 0xa9, 0xe4, 0xc7, 0xd0, 0x7a, 0x48, 0x58, 0xfe, 0xde, 0x34, 0x69, - 0x16, 0x5d, 0xcd, 0x5a, 0xa4, 0x31, 0x18, 0xf9, 0x3e, 0x28, 0x45, 0x27, 0xd8, 0x3c, 0x99, 0xdb, - 0x4f, 0xe0, 0x34, 0x05, 0x5f, 0x43, 0x60, 0x78, 0xa8, 0xc3, 0x2e, 0x93, 0x99, 0x8e, 0x48, 0x12, - 0xf0, 0xf5, 0x06, 0x0f, 0x23, 0x08, 0xe8, 0x24, 0xbb, 0x42, 0x68, 0x1f, 0x64, 0x1c, 0x2a, 0x15, - 0x8a, 0xa4, 0x0b, 0x49, 0x08, 0x01, 0xad, 0xb1, 0xeb, 0x64, 0xbe, 0x23, 0xa2, 0x08, 0x7c, 0x1d, - 0x8a, 0x64, 0x47, 0xe8, 0xf5, 0xd3, 0x50, 0x69, 0x45, 0xeb, 0xa8, 0xb6, 0x17, 0x45, 0x30, 0xe4, - 0xd1, 0xaa, 0x1c, 0x8e, 0x62, 0x48, 0x34, 0xbd, 0x84, 0x3a, 0x32, 0xb0, 0x1b, 0xc6, 0x90, 0xa0, - 0x26, 0xda, 0xa8, 0xa0, 0xc6, 0x59, 0xcc, 0x1b, 0x9d, 0x66, 0xf7, 0x90, 0xab, 0x19, 0x5a, 0x31, - 0xc0, 0x63, 0xa0, 0x4d, 0x36, 0x47, 0x5a, 0x19, 0x69, 0x6f, 0xb7, 0xff, 0x24, 0x25, 0x15, 0x0d, - 0x9e, 0xb8, 0xeb, 0x81, 0x2f, 0x64, 0x40, 0x5b, 0x15, 0x17, 0x9e, 0x02, 0x5f, 0x0b, 0xd9, 0xeb, - 0x52, 0x17, 0x1d, 0xce, 0xc0, 0x01, 0x70, 0xe9, 0x1f, 0x7b, 0xa0, 0x46, 0x91, 0xa6, 0x33, 0x8c, - 0x12, 0x77, 0x23, 0x8c, 0x60, 0x47, 0xe8, 0x0d, 0x31, 0x4a, 0x02, 0x3a, 0xcb, 0x66, 0x09, 0xd9, - 0x06, 0xcd, 0xb3, 0x0c, 0xcc, 0xa1, 0xd9, 0x0e, 0xf7, 0x8f, 0x21, 0x03, 0x28, 0xbb, 0x46, 0x58, - 0x87, 0x27, 0x89, 0xd0, 0x1d, 0x09, 0x5c, 0xc3, 0x86, 0xe9, 0x57, 0x7a, 0x19, 0xdd, 0x39, 0x83, - 0x87, 0x11, 0x50, 0x56, 0x72, 0x77, 0x21, 0x82, 0x82, 0x7b, 0xbe, 0xe4, 0xce, 0x70, 0xe4, 0xbe, - 0x82, 0xce, 0xaf, 0x8d, 0xc2, 0x28, 0x30, 0x29, 0xb1, 0xd7, 0x72, 0x15, 0x7d, 0xcc, 0x9c, 0xdf, - 0xd9, 0xea, 0x0d, 0xf6, 0xe8, 0x35, 0x76, 0x95, 0x5c, 0xce, 0x90, 0x6d, 0xd0, 0x32, 0xf4, 0x4d, - 0xf2, 0xae, 0xa3, 0xab, 0xbb, 0x23, 0xbd, 0x7b, 0xb4, 0x0d, 0xb1, 0x90, 0x63, 0xba, 0x80, 0x17, - 0x6a, 0x34, 0xe5, 0x57, 0x44, 0xef, 0x41, 0x0b, 0xeb, 0x71, 0xaa, 0xc7, 0x65, 0x7a, 0xe9, 0x0d, - 0x76, 0x2f, 0xb9, 0xbe, 0x9f, 0x06, 0x5c, 0x43, 0x2f, 0xc6, 0x61, 0xb2, 0xc7, 0xd5, 0x1d, 0x0c, - 0x77, 0x24, 0x81, 0xde, 0xcb, 0x6e, 0x90, 0x6b, 0x67, 0xef, 0xa2, 0x48, 0xd6, 0x4d, 0x14, 0xb4, - 0xd1, 0x76, 0x24, 0x04, 0x90, 0xe8, 0x90, 0x47, 0xb9, 0xe0, 0x7d, 0xa5, 0xd6, 0xb7, 0x13, 0xef, - 0x47, 0xa2, 0x8d, 0xfc, 0xed, 0xc4, 0x07, 0xd8, 0x02, 0xb9, 0xb2, 0x09, 0xfa, 0xed, 0x94, 0x45, - 0xa4, 0x6c, 0x85, 0xca, 0x90, 0xf6, 0x15, 0x48, 0x95, 0x53, 0x1e, 0x64, 0x8c, 0xcc, 0x6e, 0x82, - 0x46, 0x30, 0xc7, 0xda, 0x98, 0x27, 0xeb, 0x9e, 0x27, 0x22, 0xc8, 0xe1, 0x77, 0x61, 0x0e, 0xba, - 0x52, 0xa4, 0x55, 0xf0, 0x21, 0x0c, 0x73, 0x37, 0x05, 0xc9, 0x35, 0xa0, 0x8e, 0x2a, 0xed, 0x61, - 0xd4, 0x33, 0x00, 0xcc, 0x40, 0x15, 0x7e, 0xa4, 0x84, 0xab, 0x56, 0xdf, 0x8d, 0x35, 0x9c, 0x71, - 0x67, 0x1d, 0x99, 0x93, 0x96, 0x30, 0xea, 0xcc, 0x48, 0xd1, 0xd5, 0x39, 0xf1, 0x3d, 0x58, 0x2a, - 0x56, 0x6e, 0x53, 0xf2, 0x44, 0xe7, 0xf8, 0x32, 0x7b, 0x90, 0xdc, 0xe7, 0xc1, 0x91, 0x04, 0x75, - 0xdc, 0x17, 0x51, 0xe8, 0x8f, 0x7b, 0xc9, 0x91, 0x28, 0x4a, 0x12, 0x59, 0xde, 0x8b, 0x9e, 0x60, - 0x5a, 0x2c, 0x3d, 0x87, 0xdf, 0x87, 0x39, 0xd9, 0x11, 0x7a, 0x80, 0x03, 0x6f, 0xcb, 0x8c, 0x50, - 0xfa, 0x28, 0x5a, 0xd9, 0x11, 0x1e, 0xa4, 0x51, 0xe8, 0xf3, 0xd5, 0x13, 0x1e, 0x46, 0xfc, 0x30, - 0x02, 0xba, 0xc2, 0x18, 0x99, 0xe9, 0x76, 0x3d, 0xf8, 0xd4, 0x08, 0x94, 0xf6, 0xb8, 0x0f, 0xf4, - 0x2f, 0x8d, 0xe5, 0x67, 0x08, 0x31, 0xf5, 0x83, 0xdf, 0x12, 0x80, 0xda, 0xca, 0xd3, 0x8e, 0x48, - 0x80, 0x4e, 0x30, 0x97, 0x4c, 0xef, 0x27, 0xa1, 0x52, 0x23, 0x08, 0xa8, 0x83, 0xbd, 0xd3, 0x4b, - 0xfa, 0x52, 0x0c, 0x71, 0x6d, 0xd1, 0x49, 0xa4, 0x6e, 0x84, 0x49, 0xa8, 0x8e, 0xcd, 0xd4, 0x20, - 0x64, 0x2a, 0x6b, 0xa2, 0xfa, 0xf2, 0xf3, 0x0e, 0x71, 0x07, 0x30, 0xc4, 0x09, 0x61, 0x95, 0x5f, - 0x21, 0xb4, 0x7a, 0x2e, 0xd5, 0x17, 0xb5, 0xeb, 0xe0, 0x04, 0xdb, 0x94, 0xe2, 0x6e, 0x98, 0x0c, - 0xe9, 0x24, 0x6a, 0x1b, 0x00, 0x8f, 0x8c, 0xe6, 0x16, 0x69, 0x6c, 0x44, 0x23, 0x63, 0xa6, 0x6e, - 0x8c, 0xe2, 0x01, 0xd9, 0x2e, 0x21, 0x09, 0xef, 0x3a, 0x85, 0x80, 0x4e, 0xb1, 0x19, 0xd2, 0xb4, - 0x15, 0x8e, 0xb4, 0xc6, 0xf2, 0x47, 0xc9, 0xdc, 0xb9, 0x95, 0xcf, 0xa6, 0x49, 0x3d, 0x33, 0x4d, - 0x89, 0xbb, 0x16, 0x26, 0x5c, 0x8e, 0xed, 0x18, 0xa1, 0x01, 0xb6, 0xd7, 0x46, 0x24, 0xb8, 0xce, - 0x00, 0x58, 0x7e, 0xd1, 0x35, 0x3b, 0xd7, 0x08, 0xce, 0x90, 0xe6, 0x7e, 0x12, 0xc0, 0x51, 0x98, - 0x40, 0x40, 0x27, 0x4c, 0x7b, 0xdb, 0xc6, 0x28, 0xfb, 0x2c, 0xc0, 0x0c, 0xa2, 0x33, 0x15, 0x0c, - 0xb0, 0x47, 0x6f, 0x73, 0x55, 0x81, 0x8e, 0xf0, 0x8a, 0xba, 0xe6, 0x8b, 0xee, 0xb0, 0x2a, 0x3e, - 0xc4, 0xba, 0x1d, 0x1c, 0x8b, 0xbb, 0x25, 0xa6, 0xe8, 0x31, 0x5a, 0xda, 0x04, 0x3d, 0x18, 0x2b, - 0x0d, 0x71, 0x47, 0x24, 0x47, 0xe1, 0x50, 0xd1, 0x10, 0x2d, 0x6d, 0x09, 0x1e, 0x54, 0xc4, 0x9f, - 0xc5, 0x22, 0xf1, 0x20, 0x02, 0xae, 0xaa, 0x5a, 0xef, 0x98, 0x01, 0x67, 0x5c, 0x5d, 0x8d, 0x42, - 0xae, 0x68, 0x84, 0xa1, 0xa0, 0x97, 0xf6, 0x18, 0xe3, 0xa5, 0xae, 0x46, 0x1a, 0xa4, 0x3d, 0x27, - 0xec, 0x0a, 0x99, 0xb3, 0xfc, 0x7d, 0x2e, 0x75, 0x68, 0x94, 0xbc, 0xe4, 0x98, 0xf2, 0x91, 0x22, - 0x2d, 0xb1, 0x97, 0x71, 0x9f, 0xb8, 0xb7, 0xb9, 0x2a, 0xa1, 0x9f, 0x3b, 0xec, 0x1a, 0xb9, 0x9c, - 0x87, 0x56, 0xe2, 0xbf, 0x70, 0xd8, 0x3c, 0x99, 0xc5, 0xd0, 0x0a, 0x4c, 0xd1, 0x5f, 0x1a, 0x10, - 0x83, 0xa8, 0x80, 0xbf, 0x32, 0x1a, 0xb2, 0x28, 0x2a, 0xf8, 0xaf, 0x8d, 0x31, 0xd4, 0x90, 0x15, - 0x91, 0xa2, 0xaf, 0x3a, 0xe8, 0x69, 0x6e, 0x2c, 0x83, 0xe9, 0x6b, 0x86, 0x11, 0xb5, 0x16, 0x8c, - 0xaf, 0x1b, 0xc6, 0x4c, 0x67, 0x81, 0xbe, 0x61, 0xd0, 0xdb, 0x3c, 0x09, 0xc4, 0xd1, 0x51, 0x81, - 0xbe, 0xe9, 0xb0, 0x05, 0x32, 0x8f, 0xe2, 0x6b, 0x3c, 0xe2, 0x89, 0x5f, 0xf2, 0xbf, 0xe5, 0xb0, - 0xab, 0x84, 0x9e, 0x33, 0xa7, 0xe8, 0x73, 0x93, 0x8c, 0xe6, 0xf9, 0x35, 0xcd, 0x43, 0xbf, 0x34, - 0x69, 0x72, 0x95, 0x31, 0x5a, 0xec, 0xcb, 0x93, 0x6c, 0xd6, 0x26, 0xdd, 0x9e, 0xbf, 0x32, 0xc9, - 0x5a, 0x64, 0xaa, 0x97, 0x28, 0x90, 0x9a, 0x7e, 0x0e, 0xeb, 0x7b, 0xca, 0x0e, 0x4b, 0xfa, 0x79, - 0x6c, 0xa3, 0x4b, 0xa6, 0xbe, 0xe9, 0x0b, 0xb8, 0x88, 0x99, 0x07, 0x0a, 0x92, 0xa0, 0xd2, 0x3b, - 0x8a, 0x7e, 0xc1, 0x48, 0xd8, 0x4d, 0x47, 0xff, 0x56, 0x33, 0xa9, 0xa9, 0xae, 0xbd, 0xbf, 0xd7, - 0xd0, 0x85, 0x4d, 0xd0, 0x65, 0x3b, 0xd3, 0x7f, 0xd4, 0xd8, 0x0d, 0x72, 0x35, 0xc7, 0xcc, 0x12, - 0x2a, 0x1a, 0xf9, 0x9f, 0x35, 0x76, 0x93, 0x5c, 0xc7, 0x89, 0x5c, 0xd4, 0x0d, 0x0a, 0x85, 0x4a, - 0x87, 0xbe, 0xa2, 0xff, 0xaa, 0xb1, 0x7b, 0xc9, 0xb5, 0x4d, 0xd0, 0xc5, 0x7d, 0x54, 0x88, 0xff, - 0xae, 0xb1, 0x19, 0x32, 0xed, 0xe1, 0x96, 0x82, 0x13, 0xa0, 0xaf, 0xd6, 0xf0, 0x52, 0xf3, 0x63, - 0xe6, 0xce, 0x6b, 0x35, 0x4c, 0xf5, 0xd3, 0x5c, 0xfb, 0xc7, 0xdd, 0xb8, 0x73, 0xcc, 0x93, 0x04, - 0x22, 0x45, 0x5f, 0xaf, 0x61, 0x42, 0x3d, 0x88, 0xc5, 0x09, 0x54, 0xe0, 0x37, 0x4c, 0xd0, 0x86, - 0xf9, 0x63, 0x23, 0x90, 0xe3, 0x82, 0xf0, 0x66, 0x0d, 0xaf, 0xc6, 0xf2, 0x9f, 0xa5, 0xbc, 0x55, - 0x63, 0xf7, 0x91, 0x05, 0x3b, 0x2c, 0xf2, 0x8b, 0x41, 0xe2, 0x10, 0x70, 0x92, 0xd2, 0xe7, 0xea, - 0x85, 0xc6, 0x2e, 0x44, 0x9a, 0x17, 0x72, 0x9f, 0xa9, 0xa3, 0x5f, 0xd8, 0x5c, 0xe5, 0x00, 0x55, - 0xf4, 0xf9, 0x3a, 0xde, 0xe8, 0x26, 0xe8, 0x6c, 0x86, 0x2a, 0xfa, 0x59, 0x83, 0x64, 0x9a, 0x8d, - 0xca, 0xdf, 0xd4, 0xd9, 0x1c, 0x21, 0xb6, 0x27, 0x0d, 0xf0, 0xdb, 0x5c, 0x15, 0x7e, 0xa6, 0x9c, - 0x80, 0x34, 0x33, 0x9c, 0xfe, 0xae, 0x30, 0x50, 0x99, 0x7c, 0xf4, 0xf7, 0x75, 0x4c, 0xd9, 0x5e, - 0x18, 0xc3, 0x5e, 0xe8, 0xdf, 0xa1, 0x5f, 0x6b, 0x62, 0xca, 0x4c, 0x44, 0x3b, 0x22, 0x00, 0x7b, - 0xc3, 0x5f, 0x6f, 0x62, 0xc1, 0x60, 0x1d, 0xda, 0x82, 0xf9, 0x86, 0x39, 0x67, 0xd3, 0xbb, 0xd7, - 0xa5, 0xdf, 0xc4, 0xcf, 0x25, 0x92, 0x9d, 0xf7, 0x06, 0xbb, 0xf4, 0x5b, 0x4d, 0x34, 0xb5, 0x1a, - 0x45, 0xc2, 0xe7, 0xba, 0xe8, 0x86, 0x6f, 0x37, 0xb1, 0x9d, 0x2a, 0xd6, 0xb3, 0x5b, 0x7b, 0xb1, - 0x89, 0xb9, 0xcf, 0x70, 0x53, 0x6c, 0x5d, 0x1c, 0x8a, 0xdf, 0x31, 0x5a, 0xf1, 0xf1, 0x86, 0x9e, - 0xec, 0x69, 0xfa, 0x5d, 0xc3, 0x77, 0xfe, 0x0b, 0x80, 0xfe, 0xa1, 0x95, 0xd5, 0x57, 0x05, 0x7b, - 0xa5, 0x65, 0xfb, 0xe3, 0xec, 0xca, 0xa7, 0x7f, 0x34, 0xf0, 0xf9, 0xcf, 0x04, 0xfa, 0xa7, 0x16, - 0x3a, 0x56, 0xdd, 0xf4, 0xf8, 0xbd, 0xab, 0xe8, 0x9f, 0x5b, 0xe8, 0x41, 0xb9, 0xd3, 0xe9, 0xf7, - 0x5d, 0x4c, 0x56, 0xbe, 0xcd, 0xe9, 0x0f, 0x5c, 0x0c, 0xf3, 0xdc, 0x1e, 0xa7, 0x3f, 0x74, 0xcd, - 0x75, 0x14, 0x1b, 0x9c, 0xfe, 0xa8, 0x02, 0x20, 0x17, 0xfd, 0xb1, 0x6b, 0x26, 0xd0, 0x99, 0xad, - 0x4d, 0x7f, 0xe2, 0xa2, 0x6f, 0xe7, 0xf7, 0x35, 0xfd, 0xa9, 0x6b, 0xaf, 0xbb, 0xd8, 0xd4, 0xf4, - 0x67, 0x2e, 0x76, 0xc0, 0xc5, 0x3b, 0x9a, 0xbe, 0x64, 0x6c, 0x95, 0xdb, 0x99, 0xbe, 0xec, 0x2e, - 0xb7, 0x49, 0xa3, 0xab, 0x22, 0xb3, 0x37, 0x1a, 0xa4, 0xd6, 0x55, 0x11, 0x9d, 0xc0, 0x31, 0xbb, - 0x26, 0x44, 0xb4, 0x7e, 0x9a, 0xca, 0xa7, 0x3e, 0x40, 0x9d, 0xe5, 0x35, 0x32, 0xd7, 0x11, 0x71, - 0xca, 0x8b, 0x76, 0x33, 0xab, 0xc2, 0xee, 0x18, 0x08, 0x6c, 0xa9, 0x4c, 0xe0, 0xac, 0x5e, 0x3f, - 0x05, 0x7f, 0x64, 0x36, 0x9a, 0x83, 0x47, 0x14, 0xc2, 0x24, 0x07, 0x74, 0x72, 0xf9, 0x19, 0x42, - 0x3b, 0x22, 0x51, 0xa1, 0xd2, 0x90, 0xf8, 0xe3, 0x2d, 0x38, 0x81, 0xc8, 0xec, 0x4d, 0x2d, 0x45, - 0x32, 0xa4, 0x13, 0xe6, 0x49, 0x00, 0xe6, 0xd3, 0xde, 0x6e, 0xd7, 0x35, 0xfc, 0xac, 0x33, 0xdf, - 0xfd, 0xb3, 0x84, 0xac, 0x9f, 0x40, 0xa2, 0x47, 0x3c, 0x8a, 0xc6, 0xb4, 0x86, 0xe7, 0xce, 0x48, - 0x69, 0x11, 0x87, 0x9f, 0x36, 0xfb, 0xfb, 0xab, 0x0e, 0x69, 0xd9, 0x55, 0x5a, 0xb8, 0x66, 0x8f, - 0x7d, 0x48, 0x82, 0xd0, 0x28, 0xc7, 0xcf, 0x56, 0x03, 0x65, 0x4b, 0xdf, 0x29, 0x99, 0x06, 0x9a, - 0x4b, 0x9d, 0xbf, 0x2f, 0x2c, 0xd4, 0x15, 0x77, 0x93, 0x48, 0xf0, 0xc0, 0xec, 0xf3, 0x42, 0xb4, - 0xcf, 0xa5, 0x32, 0x4b, 0x1d, 0xbf, 0xea, 0x33, 0xfd, 0xd2, 0xc4, 0x13, 0xd0, 0x4b, 0x25, 0x58, - 0xc6, 0x3c, 0x85, 0xcb, 0xd3, 0x82, 0xa6, 0xd8, 0xf3, 0x4a, 0x27, 0xcb, 0xf7, 0x13, 0xb7, 0xfa, - 0x62, 0x33, 0x11, 0x95, 0x6b, 0x70, 0x62, 0xf9, 0x15, 0x07, 0x17, 0xcb, 0xf9, 0x27, 0x17, 0xad, - 0xbc, 0x10, 0x57, 0xa3, 0xc8, 0xbe, 0x9c, 0x0a, 0xc4, 0x16, 0xa2, 0x8d, 0xac, 0x00, 0xb1, 0x18, - 0x29, 0x0e, 0xf9, 0xd9, 0x8a, 0xa4, 0x06, 0x49, 0x6b, 0x67, 0xd8, 0x3c, 0xe0, 0x18, 0x58, 0x15, - 0xc2, 0x7e, 0xb6, 0xef, 0xa5, 0x0a, 0x97, 0x59, 0x4b, 0x74, 0xea, 0x0c, 0x9a, 0x15, 0x06, 0x6d, - 0x9c, 0xf1, 0x26, 0xdb, 0x17, 0xd3, 0x67, 0xc0, 0x6c, 0x6f, 0x34, 0x3f, 0x22, 0xc8, 0xe5, 0xe2, - 0x29, 0x7a, 0x00, 0xa7, 0xfa, 0x40, 0x1c, 0x3e, 0xcb, 0x1e, 0x58, 0xb1, 0x7f, 0x25, 0xad, 0xe4, - 0x7f, 0x25, 0xad, 0x6c, 0x83, 0x52, 0x7c, 0x08, 0xbb, 0xa9, 0x59, 0xac, 0x0b, 0x7f, 0x6d, 0x98, - 0xb7, 0xf6, 0xc5, 0x2f, 0xe0, 0xea, 0xdb, 0xd9, 0x9b, 0x4b, 0x2b, 0xa7, 0xdd, 0xc3, 0x67, 0xd7, - 0x9e, 0x26, 0xb3, 0xa1, 0xc8, 0xe5, 0x86, 0x32, 0xf5, 0xd7, 0x5a, 0x1d, 0x23, 0xd7, 0x47, 0x1d, - 0x7d, 0xe7, 0xe3, 0x8f, 0x0f, 0x43, 0x7d, 0x3c, 0x3a, 0x44, 0x6d, 0xb7, 0x2c, 0xdb, 0xa3, 0xa1, - 0xc8, 0x7e, 0xdd, 0x0a, 0x13, 0x8d, 0x4d, 0x1f, 0xd9, 0x3f, 0xb9, 0x6e, 0x59, 0x8b, 0xe9, 0xe1, - 0x17, 0x1d, 0xe7, 0x70, 0xca, 0x40, 0x8f, 0xff, 0x27, 0x00, 0x00, 0xff, 0xff, 0xd1, 0x59, 0x97, - 0x8f, 0x2a, 0x13, 0x00, 0x00, + // 2288 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x58, 0x59, 0x73, 0x2b, 0x47, + 0xf5, 0xf7, 0x58, 0xba, 0x96, 0xd5, 0x1a, 0xdb, 0xed, 0xb6, 0xaf, 0xaf, 0x73, 0x73, 0x93, 0x38, + 0xfa, 0x27, 0xf9, 0x1b, 0x43, 0x7c, 0x21, 0xa9, 0x02, 0x8a, 0xaa, 0x50, 0x65, 0x4b, 0xb6, 0xaf, + 0x2a, 0xde, 0x18, 0xd9, 0x49, 0x8a, 0x2a, 0x70, 0xb5, 0x67, 0x8e, 0xe5, 0xc9, 0x9d, 0x99, 0x1e, + 0xba, 0x5b, 0x8e, 0xc5, 0x53, 0x08, 0x5f, 0x00, 0xc2, 0x17, 0xe0, 0x03, 0x00, 0xc5, 0x1a, 0x78, + 0xa2, 0xd8, 0x49, 0xd8, 0x9e, 0xd9, 0x02, 0x3c, 0xc2, 0x3b, 0x6b, 0x56, 0xea, 0x74, 0xcf, 0x66, + 0xc7, 0x81, 0x07, 0xde, 0x74, 0x7e, 0x67, 0xed, 0xd3, 0x67, 0xe9, 0x11, 0x71, 0x7d, 0x11, 0xc7, + 0x22, 0x59, 0x4d, 0xa5, 0xd0, 0x82, 0xcd, 0xc5, 0x61, 0x74, 0x36, 0x54, 0x96, 0x5a, 0xb5, 0xac, + 0x9b, 0x4b, 0x03, 0x21, 0x06, 0x11, 0xdc, 0x36, 0xe0, 0xf1, 0xf0, 0xe4, 0x76, 0x00, 0xca, 0x97, + 0x61, 0xaa, 0x85, 0xb4, 0x82, 0xed, 0x23, 0x32, 0xd1, 0xd7, 0x5c, 0x0f, 0x15, 0x7b, 0x82, 0x10, + 0x90, 0x52, 0xc8, 0x23, 0x5f, 0x04, 0xb0, 0xe8, 0x2c, 0x39, 0xcb, 0xd3, 0x8f, 0xdd, 0xbf, 0x7a, + 0x85, 0xd5, 0xd5, 0x0d, 0x14, 0xeb, 0x88, 0x00, 0xbc, 0x26, 0xe4, 0x3f, 0xd9, 0x02, 0x99, 0x90, + 0xc0, 0x95, 0x48, 0x16, 0xc7, 0x97, 0x9c, 0xe5, 0xa6, 0x97, 0x51, 0xed, 0x0f, 0x12, 0xf7, 0x49, + 0x18, 0x3d, 0xc5, 0xa3, 0x21, 0xec, 0xf3, 0x50, 0x32, 0x4a, 0x6a, 0x77, 0x61, 0x64, 0xec, 0x37, + 0x3d, 0xfc, 0xc9, 0xe6, 0xc9, 0xb5, 0x33, 0x64, 0x67, 0x8a, 0x96, 0x68, 0x3f, 0x4e, 0x5a, 0x4f, + 0xc2, 0xa8, 0xcb, 0x35, 0x7f, 0x17, 0x35, 0x46, 0xea, 0x01, 0xd7, 0xdc, 0x68, 0xb9, 0x9e, 0xf9, + 0xdd, 0xbe, 0x45, 0xea, 0xeb, 0x91, 0x38, 0x2e, 0x4d, 0x3a, 0x86, 0x99, 0x99, 0x3c, 0x23, 0x74, + 0x3f, 0xe2, 0x3e, 0x9c, 0x8a, 0x28, 0x00, 0x69, 0x42, 0x42, 0xbb, 0x9a, 0x0f, 0x72, 0xbb, 0x9a, + 0x0f, 0xd8, 0x87, 0x49, 0x5d, 0x8f, 0x52, 0x1b, 0xcd, 0xf4, 0x63, 0x0f, 0x5d, 0x99, 0x81, 0x8a, + 0x99, 0x83, 0x51, 0x0a, 0x9e, 0xd1, 0xc0, 0x14, 0x18, 0x47, 0x6a, 0xb1, 0xb6, 0x54, 0x5b, 0x76, + 0xbd, 0x8c, 0x6a, 0x7f, 0xe2, 0x82, 0xdf, 0x2d, 0x29, 0x86, 0x29, 0xeb, 0x11, 0x37, 0x2d, 0x31, + 0xb5, 0xe8, 0x2c, 0xd5, 0x96, 0x5b, 0x8f, 0x3d, 0xfc, 0xdf, 0xbc, 0x99, 0xa0, 0xbd, 0x0b, 0xaa, + 0xed, 0x47, 0x49, 0x63, 0x2d, 0x08, 0x24, 0x28, 0xc5, 0xa6, 0xc9, 0x78, 0x98, 0x66, 0x87, 0x19, + 0x0f, 0x53, 0xcc, 0x51, 0x2a, 0xa4, 0x36, 0x67, 0xa9, 0x79, 0xe6, 0x77, 0xfb, 0x45, 0x87, 0x34, + 0x76, 0xd4, 0x60, 0x9d, 0x2b, 0x60, 0x1f, 0x22, 0x93, 0xb1, 0x1a, 0x1c, 0x99, 0xf3, 0xda, 0x1b, + 0xbf, 0x75, 0x65, 0x04, 0x3b, 0x6a, 0x60, 0xce, 0xd9, 0x88, 0xed, 0x0f, 0x4c, 0x70, 0xac, 0x06, + 0xbd, 0x6e, 0x66, 0xd9, 0x12, 0xec, 0x16, 0x69, 0xea, 0x30, 0x06, 0xa5, 0x79, 0x9c, 0x2e, 0xd6, + 0x96, 0x9c, 0xe5, 0xba, 0x57, 0x02, 0xec, 0x26, 0x99, 0x54, 0x62, 0x28, 0x7d, 0xe8, 0x75, 0x17, + 0xeb, 0x46, 0xad, 0xa0, 0xdb, 0x4f, 0x90, 0xe6, 0x8e, 0x1a, 0xdc, 0x01, 0x1e, 0x80, 0x64, 0xef, + 0x27, 0xf5, 0x63, 0xae, 0x6c, 0x44, 0xad, 0x77, 0x8f, 0x08, 0x4f, 0xe0, 0x19, 0xc9, 0xf6, 0x27, + 0x89, 0xdb, 0xdd, 0xd9, 0xfe, 0x1f, 0x2c, 0x60, 0xe8, 0xea, 0x94, 0xcb, 0x60, 0x97, 0xc7, 0x79, + 0x21, 0x96, 0x40, 0xfb, 0x55, 0x87, 0xb8, 0xfb, 0x32, 0x3c, 0x0b, 0x23, 0x18, 0xc0, 0xc6, 0xb9, + 0x66, 0x9b, 0x64, 0x4a, 0x82, 0x8d, 0xbe, 0x9a, 0xbd, 0x07, 0xaf, 0xf4, 0xe4, 0x65, 0x92, 0x26, + 0x85, 0xae, 0xac, 0x50, 0xec, 0x90, 0xb0, 0xc2, 0x4e, 0x9a, 0x3b, 0xc8, 0x4a, 0xef, 0x91, 0xff, + 0x68, 0xac, 0x08, 0xc7, 0x9b, 0x95, 0x97, 0x21, 0xb6, 0x4a, 0xe6, 0x0a, 0xb3, 0x09, 0x8f, 0xe1, + 0x28, 0x4c, 0x02, 0x38, 0x37, 0x57, 0x72, 0xad, 0x94, 0xc7, 0xa3, 0xf5, 0x90, 0xb1, 0xf2, 0xdd, + 0x49, 0xd2, 0x2c, 0xba, 0x9a, 0xb5, 0x48, 0xa3, 0x3f, 0xf4, 0x7d, 0x50, 0x8a, 0x8e, 0xb1, 0x39, + 0x32, 0x73, 0x98, 0xc0, 0x79, 0x0a, 0xbe, 0x86, 0xc0, 0xc8, 0x50, 0x87, 0xcd, 0x92, 0xa9, 0x8e, + 0x48, 0x12, 0xf0, 0xf5, 0x26, 0x0f, 0x23, 0x08, 0xe8, 0x38, 0x9b, 0x27, 0x74, 0x1f, 0x64, 0x1c, + 0x2a, 0x15, 0x8a, 0xa4, 0x0b, 0x49, 0x08, 0x01, 0xad, 0xb1, 0x1b, 0x64, 0xae, 0x23, 0xa2, 0x08, + 0x7c, 0x1d, 0x8a, 0x64, 0x57, 0xe8, 0x8d, 0xf3, 0x50, 0x69, 0x45, 0xeb, 0x68, 0xb6, 0x17, 0x45, + 0x30, 0xe0, 0xd1, 0x9a, 0x1c, 0x0c, 0x63, 0x48, 0x34, 0xbd, 0x86, 0x36, 0x32, 0xb0, 0x1b, 0xc6, + 0x90, 0xa0, 0x25, 0xda, 0xa8, 0xa0, 0x26, 0x58, 0xcc, 0x1b, 0x9d, 0x64, 0xf7, 0x90, 0xeb, 0x19, + 0x5a, 0x71, 0xc0, 0x63, 0xa0, 0x4d, 0x36, 0x43, 0x5a, 0x19, 0xeb, 0x60, 0x6f, 0xff, 0x49, 0x4a, + 0x2a, 0x16, 0x3c, 0xf1, 0x9c, 0x07, 0xbe, 0x90, 0x01, 0x6d, 0x55, 0x42, 0x78, 0x0a, 0x7c, 0x2d, + 0x64, 0xaf, 0x4b, 0x5d, 0x0c, 0x38, 0x03, 0xfb, 0xc0, 0xa5, 0x7f, 0xea, 0x81, 0x1a, 0x46, 0x9a, + 0x4e, 0x31, 0x4a, 0xdc, 0xcd, 0x30, 0x82, 0x5d, 0xa1, 0x37, 0xc5, 0x30, 0x09, 0xe8, 0x34, 0x9b, + 0x26, 0x64, 0x07, 0x34, 0xcf, 0x32, 0x30, 0x83, 0x6e, 0x3b, 0xdc, 0x3f, 0x85, 0x0c, 0xa0, 0x6c, + 0x81, 0xb0, 0x0e, 0x4f, 0x12, 0xa1, 0x3b, 0x12, 0xb8, 0x86, 0x4d, 0xd3, 0xaf, 0x74, 0x16, 0xc3, + 0xb9, 0x80, 0x87, 0x11, 0x50, 0x56, 0x4a, 0x77, 0x21, 0x82, 0x42, 0x7a, 0xae, 0x94, 0xce, 0x70, + 0x94, 0x9e, 0xc7, 0xe0, 0xd7, 0x87, 0x61, 0x14, 0x98, 0x94, 0xd8, 0x6b, 0xb9, 0x8e, 0x31, 0x66, + 0xc1, 0xef, 0x6e, 0xf7, 0xfa, 0x07, 0x74, 0x81, 0x5d, 0x27, 0xb3, 0x19, 0xb2, 0x03, 0x5a, 0x86, + 0xbe, 0x49, 0xde, 0x0d, 0x0c, 0x75, 0x6f, 0xa8, 0xf7, 0x4e, 0x76, 0x20, 0x16, 0x72, 0x44, 0x17, + 0xf1, 0x42, 0x8d, 0xa5, 0xfc, 0x8a, 0xe8, 0x3d, 0xe8, 0x61, 0x23, 0x4e, 0xf5, 0xa8, 0x4c, 0x2f, + 0xbd, 0xc9, 0xee, 0x25, 0x37, 0x0e, 0xd3, 0x80, 0x6b, 0xe8, 0xc5, 0x38, 0x4c, 0x0e, 0xb8, 0xba, + 0x8b, 0xc7, 0x1d, 0x4a, 0xa0, 0xf7, 0xb2, 0x9b, 0x64, 0xe1, 0xe2, 0x5d, 0x14, 0xc9, 0xba, 0x85, + 0x8a, 0xf6, 0xb4, 0x1d, 0x09, 0x01, 0x24, 0x3a, 0xe4, 0x51, 0xae, 0x78, 0x5f, 0x69, 0xf5, 0x9d, + 0xcc, 0xfb, 0x91, 0x69, 0x4f, 0xfe, 0x4e, 0xe6, 0x03, 0x6c, 0x91, 0xcc, 0x6f, 0x81, 0x7e, 0x27, + 0x67, 0x09, 0x39, 0xdb, 0xa1, 0x32, 0xac, 0x43, 0x05, 0x52, 0xe5, 0x9c, 0x07, 0x19, 0x23, 0xd3, + 0x5b, 0xa0, 0x11, 0xcc, 0xb1, 0x36, 0xe6, 0xc9, 0x86, 0xe7, 0x89, 0x08, 0x72, 0xf8, 0xff, 0x30, + 0x07, 0x5d, 0x29, 0xd2, 0x2a, 0xf8, 0x10, 0x1e, 0x73, 0x2f, 0x05, 0xc9, 0x35, 0xa0, 0x8d, 0x2a, + 0xef, 0x61, 0xb4, 0xd3, 0x07, 0xcc, 0x40, 0x15, 0x7e, 0xa4, 0x84, 0xab, 0x5e, 0xff, 0x1f, 0x6b, + 0x38, 0x93, 0xce, 0x3a, 0x32, 0x67, 0x2d, 0xe3, 0xa9, 0x33, 0x27, 0x45, 0x57, 0xe7, 0xcc, 0xf7, + 0x60, 0xa9, 0x58, 0xbd, 0x2d, 0xc9, 0x13, 0x9d, 0xe3, 0x2b, 0xec, 0x41, 0x72, 0x9f, 0x07, 0x27, + 0x12, 0xd4, 0xe9, 0xbe, 0x88, 0x42, 0x7f, 0xd4, 0x4b, 0x4e, 0x44, 0x51, 0x92, 0x28, 0xf2, 0x5e, + 0x8c, 0x04, 0xd3, 0x62, 0xf9, 0x39, 0xfc, 0x3e, 0xcc, 0xc9, 0xae, 0xd0, 0x7d, 0x1c, 0x78, 0xdb, + 0x66, 0x84, 0xd2, 0x47, 0xd1, 0xcb, 0xae, 0xf0, 0x20, 0x8d, 0x42, 0x9f, 0xaf, 0x9d, 0xf1, 0x30, + 0xe2, 0xc7, 0x11, 0xd0, 0x55, 0xc6, 0xc8, 0x54, 0xb7, 0xeb, 0xc1, 0xa7, 0x86, 0xa0, 0xb4, 0xc7, + 0x7d, 0xa0, 0x7f, 0x6e, 0xac, 0x3c, 0x43, 0x88, 0xa9, 0x1f, 0x7c, 0x4b, 0x00, 0x5a, 0x2b, 0xa9, + 0x5d, 0x91, 0x00, 0x1d, 0x63, 0x2e, 0x99, 0x3c, 0x4c, 0x42, 0xa5, 0x86, 0x10, 0x50, 0x07, 0x7b, + 0xa7, 0x97, 0xec, 0x4b, 0x31, 0xc0, 0xb5, 0x45, 0xc7, 0x91, 0xbb, 0x19, 0x26, 0xa1, 0x3a, 0x35, + 0x53, 0x83, 0x90, 0x89, 0xac, 0x89, 0xea, 0x2b, 0x2f, 0x38, 0xc4, 0xed, 0xc3, 0x00, 0x27, 0x84, + 0x35, 0x3e, 0x4f, 0x68, 0x95, 0x2e, 0xcd, 0x17, 0xb5, 0xeb, 0xe0, 0x04, 0xdb, 0x92, 0xe2, 0xb9, + 0x30, 0x19, 0xd0, 0x71, 0xb4, 0xd6, 0x07, 0x1e, 0x19, 0xcb, 0x2d, 0xd2, 0xd8, 0x8c, 0x86, 0xc6, + 0x4d, 0xdd, 0x38, 0x45, 0x02, 0xc5, 0xae, 0x21, 0x0b, 0xef, 0x3a, 0x85, 0x80, 0x4e, 0xb0, 0x29, + 0xd2, 0xb4, 0x15, 0x8e, 0xbc, 0xc6, 0xca, 0x47, 0xc9, 0xcc, 0xa5, 0x95, 0xcf, 0x26, 0x49, 0x3d, + 0x73, 0x4d, 0x89, 0xbb, 0x1e, 0x26, 0x5c, 0x8e, 0xec, 0x18, 0xa1, 0x01, 0xb6, 0xd7, 0x66, 0x24, + 0xb8, 0xce, 0x00, 0x58, 0x79, 0xc9, 0x35, 0x3b, 0xd7, 0x28, 0x4e, 0x91, 0xe6, 0x61, 0x12, 0xc0, + 0x49, 0x98, 0x40, 0x40, 0xc7, 0x4c, 0x7b, 0xdb, 0xc6, 0x28, 0xfb, 0x2c, 0xc0, 0x0c, 0x62, 0x30, + 0x15, 0x0c, 0xb0, 0x47, 0xef, 0x70, 0x55, 0x81, 0x4e, 0xf0, 0x8a, 0xba, 0xe6, 0x45, 0x77, 0x5c, + 0x55, 0x1f, 0x60, 0xdd, 0xf6, 0x4f, 0xc5, 0x73, 0x25, 0xa6, 0xe8, 0x29, 0x7a, 0xda, 0x02, 0xdd, + 0x1f, 0x29, 0x0d, 0x71, 0x47, 0x24, 0x27, 0xe1, 0x40, 0xd1, 0x10, 0x3d, 0x6d, 0x0b, 0x1e, 0x54, + 0xd4, 0x9f, 0xc5, 0x22, 0xf1, 0x20, 0x02, 0xae, 0xaa, 0x56, 0xef, 0x9a, 0x01, 0x67, 0x42, 0x5d, + 0x8b, 0x42, 0xae, 0x68, 0x84, 0x47, 0xc1, 0x28, 0x2d, 0x19, 0xe3, 0xa5, 0xae, 0x45, 0x1a, 0xa4, + 0xa5, 0x13, 0x36, 0x4f, 0x66, 0xac, 0xfc, 0x3e, 0x97, 0x3a, 0x34, 0x46, 0x5e, 0x76, 0x4c, 0xf9, + 0x48, 0x91, 0x96, 0xd8, 0x2b, 0xb8, 0x4f, 0xdc, 0x3b, 0x5c, 0x95, 0xd0, 0xcf, 0x1c, 0xb6, 0x40, + 0x66, 0xf3, 0xa3, 0x95, 0xf8, 0xcf, 0x1d, 0x36, 0x47, 0xa6, 0xf1, 0x68, 0x05, 0xa6, 0xe8, 0x2f, + 0x0c, 0x88, 0x87, 0xa8, 0x80, 0xbf, 0x34, 0x16, 0xb2, 0x53, 0x54, 0xf0, 0x5f, 0x19, 0x67, 0x68, + 0x21, 0x2b, 0x22, 0x45, 0x5f, 0x73, 0x30, 0xd2, 0xdc, 0x59, 0x06, 0xd3, 0xd7, 0x8d, 0x20, 0x5a, + 0x2d, 0x04, 0xdf, 0x30, 0x82, 0x99, 0xcd, 0x02, 0x7d, 0xd3, 0xa0, 0x77, 0x78, 0x12, 0x88, 0x93, + 0x93, 0x02, 0x7d, 0xcb, 0x61, 0x8b, 0x64, 0x0e, 0xd5, 0xd7, 0x79, 0xc4, 0x13, 0xbf, 0x94, 0x7f, + 0xdb, 0x61, 0xd7, 0x09, 0xbd, 0xe4, 0x4e, 0xd1, 0xe7, 0xc7, 0x19, 0xcd, 0xf3, 0x6b, 0x9a, 0x87, + 0x7e, 0x69, 0xdc, 0xe4, 0x2a, 0x13, 0xb4, 0xd8, 0x97, 0xc7, 0xd9, 0xb4, 0x4d, 0xba, 0xa5, 0xbf, + 0x32, 0xce, 0x5a, 0x64, 0xa2, 0x97, 0x28, 0x90, 0x9a, 0x7e, 0x0e, 0xeb, 0x7b, 0xc2, 0x0e, 0x4b, + 0xfa, 0x79, 0x6c, 0xa3, 0x6b, 0xa6, 0xbe, 0xe9, 0x8b, 0xb8, 0x88, 0x99, 0x07, 0x0a, 0x92, 0xa0, + 0xd2, 0x3b, 0x8a, 0x7e, 0xc1, 0x68, 0xd8, 0x4d, 0x47, 0xff, 0x5a, 0x33, 0xa9, 0xa9, 0xae, 0xbd, + 0xbf, 0xd5, 0x30, 0x84, 0x2d, 0xd0, 0x65, 0x3b, 0xd3, 0xbf, 0xd7, 0xd8, 0x4d, 0x72, 0x3d, 0xc7, + 0xcc, 0x12, 0x2a, 0x1a, 0xf9, 0x1f, 0x35, 0x76, 0x8b, 0xdc, 0xc0, 0x89, 0x5c, 0xd4, 0x0d, 0x2a, + 0x85, 0x4a, 0x87, 0xbe, 0xa2, 0xff, 0xac, 0xb1, 0x7b, 0xc9, 0xc2, 0x16, 0xe8, 0xe2, 0x3e, 0x2a, + 0xcc, 0x7f, 0xd5, 0xd8, 0x14, 0x99, 0xf4, 0x70, 0x4b, 0xc1, 0x19, 0xd0, 0xd7, 0x6a, 0x78, 0xa9, + 0x39, 0x99, 0x85, 0xf3, 0x7a, 0x0d, 0x53, 0xfd, 0x34, 0xd7, 0xfe, 0x69, 0x37, 0xee, 0x9c, 0xf2, + 0x24, 0x81, 0x48, 0xd1, 0x37, 0x6a, 0x98, 0x50, 0x0f, 0x62, 0x71, 0x06, 0x15, 0xf8, 0x4d, 0x73, + 0x68, 0x23, 0xfc, 0xb1, 0x21, 0xc8, 0x51, 0xc1, 0x78, 0xab, 0x86, 0x57, 0x63, 0xe5, 0x2f, 0x72, + 0xde, 0xae, 0xb1, 0xfb, 0xc8, 0xa2, 0x1d, 0x16, 0xf9, 0xc5, 0x20, 0x73, 0x00, 0x38, 0x49, 0xe9, + 0xf3, 0xf5, 0xc2, 0x62, 0x17, 0x22, 0xcd, 0x0b, 0xbd, 0xcf, 0xd4, 0x31, 0x2e, 0x6c, 0xae, 0x72, + 0x80, 0x2a, 0xfa, 0x42, 0x1d, 0x6f, 0x74, 0x0b, 0x74, 0x36, 0x43, 0x15, 0xfd, 0xac, 0x41, 0x32, + 0xcb, 0xc6, 0xe4, 0xaf, 0xeb, 0x6c, 0x86, 0x10, 0xdb, 0x93, 0x06, 0xf8, 0x4d, 0x6e, 0x0a, 0x9f, + 0x29, 0x67, 0x20, 0xcd, 0x0c, 0xa7, 0xbf, 0x2d, 0x1c, 0x54, 0x26, 0x1f, 0xfd, 0x5d, 0x1d, 0x53, + 0x76, 0x10, 0xc6, 0x70, 0x10, 0xfa, 0x77, 0xe9, 0x57, 0x9b, 0x98, 0x32, 0x73, 0xa2, 0x5d, 0x11, + 0x80, 0xbd, 0xe1, 0xaf, 0x35, 0xb1, 0x60, 0xb0, 0x0e, 0x6d, 0xc1, 0x7c, 0xdd, 0xd0, 0xd9, 0xf4, + 0xee, 0x75, 0xe9, 0x37, 0xf0, 0xb9, 0x44, 0x32, 0xfa, 0xa0, 0xbf, 0x47, 0xbf, 0xd9, 0x44, 0x57, + 0x6b, 0x51, 0x24, 0x7c, 0xae, 0x8b, 0x6e, 0xf8, 0x56, 0x13, 0xdb, 0xa9, 0xe2, 0x3d, 0xbb, 0xb5, + 0x97, 0x9a, 0x98, 0xfb, 0x0c, 0x37, 0xc5, 0xd6, 0xc5, 0xa1, 0xf8, 0x6d, 0x63, 0x15, 0x3f, 0xde, + 0x30, 0x92, 0x03, 0x4d, 0xbf, 0x63, 0xe4, 0x2e, 0xbf, 0x00, 0xe8, 0xef, 0x5b, 0x59, 0x7d, 0x55, + 0xb0, 0x57, 0x5b, 0xb6, 0x3f, 0x2e, 0xae, 0x7c, 0xfa, 0x07, 0x03, 0x5f, 0x7e, 0x26, 0xd0, 0x3f, + 0xb6, 0x30, 0xb0, 0xea, 0xa6, 0xc7, 0xf7, 0xae, 0xa2, 0x7f, 0x6a, 0x61, 0x04, 0xe5, 0x4e, 0xa7, + 0xdf, 0x73, 0x31, 0x59, 0xf9, 0x36, 0xa7, 0xdf, 0x77, 0xf1, 0x98, 0x97, 0xf6, 0x38, 0xfd, 0x81, + 0x6b, 0xae, 0xa3, 0xd8, 0xe0, 0xf4, 0x87, 0x15, 0x00, 0xa5, 0xe8, 0x8f, 0x5c, 0x33, 0x81, 0x2e, + 0x6c, 0x6d, 0xfa, 0x63, 0x17, 0x63, 0xbb, 0xbc, 0xaf, 0xe9, 0x4f, 0x5c, 0x7b, 0xdd, 0xc5, 0xa6, + 0xa6, 0x3f, 0x75, 0xb1, 0x03, 0xae, 0xde, 0xd1, 0xf4, 0x65, 0xe3, 0xab, 0xdc, 0xce, 0xf4, 0x15, + 0x77, 0xa5, 0x4d, 0x1a, 0x5d, 0x15, 0x99, 0xbd, 0xd1, 0x20, 0xb5, 0xae, 0x8a, 0xe8, 0x18, 0x8e, + 0xd9, 0x75, 0x21, 0xa2, 0x8d, 0xf3, 0x54, 0x3e, 0xf5, 0x01, 0xea, 0xac, 0xac, 0x93, 0x99, 0x8e, + 0x88, 0x53, 0x5e, 0xb4, 0x9b, 0x59, 0x15, 0x76, 0xc7, 0x40, 0x60, 0x4b, 0x65, 0x0c, 0x67, 0xf5, + 0xc6, 0x39, 0xf8, 0x43, 0xb3, 0xd1, 0x1c, 0x24, 0x51, 0x09, 0x93, 0x1c, 0xd0, 0xf1, 0x95, 0x67, + 0x08, 0xed, 0x88, 0x44, 0x85, 0x4a, 0x43, 0xe2, 0x8f, 0xb6, 0xe1, 0x0c, 0x22, 0xb3, 0x37, 0xb5, + 0x14, 0xc9, 0x80, 0x8e, 0x99, 0x4f, 0x02, 0x30, 0x4f, 0x7b, 0xbb, 0x5d, 0xd7, 0xf1, 0x59, 0x67, + 0xde, 0xfd, 0xd3, 0x84, 0x6c, 0x9c, 0x41, 0xa2, 0x87, 0x3c, 0x8a, 0x46, 0xb4, 0x86, 0x74, 0x67, + 0xa8, 0xb4, 0x88, 0xc3, 0x4f, 0x9b, 0xfd, 0x2d, 0x49, 0xcb, 0x6e, 0xd2, 0x22, 0x32, 0x4b, 0xee, + 0x43, 0x12, 0x84, 0xc6, 0x36, 0xbe, 0x5a, 0x0d, 0x94, 0xed, 0x7c, 0xa7, 0x14, 0xea, 0x6b, 0x2e, + 0x4d, 0x80, 0xe6, 0xb1, 0x9e, 0xe9, 0x49, 0x13, 0x66, 0x40, 0xaf, 0xe1, 0xfa, 0xb3, 0xa0, 0x29, + 0xd7, 0xbc, 0x56, 0xc9, 0xca, 0xfd, 0xc4, 0xad, 0x7e, 0x73, 0x99, 0x98, 0xca, 0x45, 0x36, 0xb6, + 0xf2, 0xaa, 0x83, 0xab, 0xe1, 0xf2, 0x47, 0x13, 0xad, 0x7c, 0xe3, 0xad, 0x45, 0x91, 0xfd, 0xf6, + 0x29, 0x10, 0x5b, 0x4a, 0x36, 0xb8, 0x02, 0xc4, 0x72, 0xa2, 0x38, 0xa6, 0xa7, 0x2b, 0x9a, 0x1a, + 0x24, 0xad, 0x5d, 0x10, 0xf3, 0x80, 0xe3, 0x7b, 0xa3, 0x0a, 0x61, 0x47, 0xda, 0x2f, 0x9e, 0x8a, + 0x94, 0x59, 0x2c, 0x74, 0xe2, 0x02, 0x9a, 0x5d, 0x2d, 0x6d, 0x5c, 0x88, 0x26, 0x9b, 0xf8, 0x93, + 0x17, 0xc0, 0x6c, 0xf2, 0x37, 0x3f, 0x22, 0xc8, 0x6c, 0xf1, 0x31, 0x79, 0x04, 0xe7, 0xfa, 0x48, + 0x1c, 0x3f, 0xcb, 0x1e, 0x58, 0xb5, 0x7f, 0x06, 0xad, 0xe6, 0x7f, 0x06, 0xad, 0xee, 0x80, 0x52, + 0x7c, 0x00, 0x7b, 0xa9, 0x59, 0x8d, 0x8b, 0x7f, 0x69, 0x98, 0xaf, 0xe5, 0xab, 0xbf, 0x61, 0xab, + 0x5f, 0xbf, 0xde, 0x4c, 0x5a, 0xa1, 0xf6, 0x8e, 0x9f, 0x5d, 0x7f, 0x9a, 0x4c, 0x87, 0x22, 0xd7, + 0x1b, 0xc8, 0xd4, 0x5f, 0x6f, 0x75, 0x8c, 0xde, 0x3e, 0xda, 0xd8, 0x77, 0x3e, 0xfe, 0xf8, 0x20, + 0xd4, 0xa7, 0xc3, 0x63, 0xb4, 0x76, 0xdb, 0x8a, 0x3d, 0x1a, 0x8a, 0xec, 0xd7, 0xed, 0x30, 0xd1, + 0xd8, 0xb6, 0x91, 0xfd, 0x9b, 0xea, 0xb6, 0xf5, 0x98, 0x1e, 0x7f, 0xd1, 0x71, 0x8e, 0x27, 0x0c, + 0xf4, 0xf8, 0xbf, 0x03, 0x00, 0x00, 0xff, 0xff, 0x97, 0x64, 0xba, 0x1c, 0xec, 0x12, 0x00, 0x00, } diff --git a/internal/proto/milvus.proto b/internal/proto/milvus.proto index 9e2b954cb378..d1fe030cc172 100644 --- a/internal/proto/milvus.proto +++ b/internal/proto/milvus.proto @@ -876,6 +876,8 @@ message GetImportStateResponse { } message ListImportTasksRequest { + string collection_name = 1; // target collection, list all tasks if the name is empty + int64 limit = 2; // maximum number of tasks returned, list all tasks if the value is 0 } message ListImportTasksResponse { diff --git a/internal/proto/milvuspb/milvus.pb.go b/internal/proto/milvuspb/milvus.pb.go index 88473801c000..8afb4ab79c2e 100644 --- a/internal/proto/milvuspb/milvus.pb.go +++ b/internal/proto/milvuspb/milvus.pb.go @@ -5195,6 +5195,8 @@ func (m *GetImportStateResponse) GetDataIndexed() bool { } type ListImportTasksRequest struct { + CollectionName string `protobuf:"bytes,1,opt,name=collection_name,json=collectionName,proto3" json:"collection_name,omitempty"` + Limit int64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -5225,6 +5227,20 @@ func (m *ListImportTasksRequest) XXX_DiscardUnknown() { var xxx_messageInfo_ListImportTasksRequest proto.InternalMessageInfo +func (m *ListImportTasksRequest) GetCollectionName() string { + if m != nil { + return m.CollectionName + } + return "" +} + +func (m *ListImportTasksRequest) GetLimit() int64 { + if m != nil { + return m.Limit + } + return 0 +} + type ListImportTasksResponse struct { Status *commonpb.Status `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"` Tasks []*GetImportStateResponse `protobuf:"bytes,2,rep,name=tasks,proto3" json:"tasks,omitempty"` @@ -7125,332 +7141,333 @@ func init() { func init() { proto.RegisterFile("milvus.proto", fileDescriptor_02345ba45cc0e303) } var fileDescriptor_02345ba45cc0e303 = []byte{ - // 5191 bytes of a gzipped FileDescriptorProto + // 5203 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x3d, 0x5d, 0x6f, 0x1c, 0x47, 0x72, 0x9c, 0x5d, 0xee, 0x57, 0xed, 0x07, 0x97, 0xcd, 0xaf, 0xf5, 0x4a, 0xb2, 0xa8, 0xb1, 0x65, 0xd3, 0xd2, 0x99, 0xb2, 0x29, 0x4b, 0xbe, 0x93, 0x7d, 0xb6, 0x45, 0xd1, 0x92, 0x08, 0xeb, 0x83, - 0x1e, 0xca, 0x17, 0x5c, 0x0c, 0x61, 0x32, 0xdc, 0x69, 0x2e, 0xc7, 0x9a, 0x9d, 0x59, 0xcd, 0xcc, - 0x92, 0xa2, 0x1f, 0x02, 0x23, 0x77, 0xc8, 0x07, 0xe2, 0xdc, 0xe1, 0x90, 0x43, 0x8c, 0x7b, 0x48, - 0x90, 0xcb, 0xd7, 0x5b, 0x82, 0xdc, 0xdd, 0x43, 0x80, 0x24, 0x40, 0x12, 0xe0, 0x1e, 0x02, 0x23, - 0x48, 0x2e, 0x4f, 0x41, 0xe0, 0x1f, 0x10, 0xe4, 0x2d, 0x01, 0x92, 0xb7, 0x04, 0x38, 0xf4, 0xc7, + 0x1e, 0xca, 0x77, 0xb8, 0x18, 0xc2, 0x64, 0xb8, 0xd3, 0x5c, 0x8e, 0x35, 0x3b, 0xb3, 0x9a, 0x99, + 0x25, 0x45, 0x3f, 0x04, 0x46, 0xee, 0x90, 0x0f, 0xc4, 0xb9, 0xc3, 0x21, 0x87, 0x18, 0xf7, 0x90, + 0x20, 0x97, 0xaf, 0xb7, 0x04, 0xb9, 0xbb, 0x87, 0x00, 0x49, 0x80, 0x24, 0xc0, 0x3d, 0x04, 0x46, + 0x90, 0x5c, 0x9e, 0x82, 0xc0, 0x3f, 0x20, 0xc8, 0x5b, 0x02, 0x24, 0x6f, 0x09, 0x10, 0xf4, 0xc7, 0xcc, 0xf6, 0xcc, 0xf6, 0x2c, 0x97, 0xdc, 0x93, 0x45, 0xbd, 0xed, 0x54, 0x57, 0x75, 0x57, 0x57, - 0x57, 0x57, 0x57, 0x77, 0x55, 0xf7, 0x42, 0xa5, 0x63, 0xd9, 0xbb, 0x3d, 0x7f, 0xb9, 0xeb, 0xb9, + 0x57, 0x55, 0x57, 0x77, 0x57, 0xf7, 0x42, 0xa5, 0x63, 0xd9, 0xbb, 0x3d, 0x7f, 0xb9, 0xeb, 0xb9, 0x81, 0x8b, 0x66, 0xc4, 0xaf, 0x65, 0xf6, 0xd1, 0xac, 0xb4, 0xdc, 0x4e, 0xc7, 0x75, 0x18, 0xb0, 0x59, 0xf1, 0x5b, 0x3b, 0xb8, 0x63, 0xf0, 0xaf, 0xc5, 0xb6, 0xeb, 0xb6, 0x6d, 0x7c, 0x81, 0x7e, - 0x6d, 0xf5, 0xb6, 0x2f, 0x98, 0xd8, 0x6f, 0x79, 0x56, 0x37, 0x70, 0x3d, 0x86, 0xa1, 0xfe, 0x81, + 0x6d, 0xf5, 0xb6, 0x2f, 0x98, 0xd8, 0x6f, 0x79, 0x56, 0x37, 0x70, 0x3d, 0x86, 0xa1, 0xfe, 0xbe, 0x02, 0xe8, 0x9a, 0x87, 0x8d, 0x00, 0x5f, 0xb5, 0x2d, 0xc3, 0xd7, 0xf0, 0xc3, 0x1e, 0xf6, 0x03, 0xf4, 0x0a, 0x4c, 0x6e, 0x19, 0x3e, 0x6e, 0x28, 0x8b, 0xca, 0x52, 0x79, 0xe5, 0xe4, 0x72, 0xac, 0x61, 0xde, 0xe0, 0x6d, 0xbf, 0xbd, 0x6a, 0xf8, 0x58, 0xa3, 0x98, 0x68, 0x01, 0x0a, 0xe6, 0x96, 0xee, 0x18, 0x1d, 0xdc, 0xc8, 0x2c, 0x2a, 0x4b, 0x25, 0x2d, 0x6f, 0x6e, 0xdd, 0x31, 0x3a, 0x18, 0xbd, 0x08, 0x53, 0x2d, 0xd7, 0xb6, 0x71, 0x2b, 0xb0, 0x5c, 0x87, 0x21, 0x64, 0x29, 0x42, 0xad, 0x0f, 0xa6, 0x88, 0xb3, 0x90, 0x33, 0x08, 0x0f, 0x8d, 0x49, 0x5a, 0xcc, 0x3e, 0x54, 0x1f, 0xea, - 0x6b, 0x9e, 0xdb, 0x7d, 0x5c, 0xdc, 0x45, 0x8d, 0x66, 0xc5, 0x46, 0x7f, 0x5f, 0x81, 0xe9, 0xab, - 0x76, 0x80, 0xbd, 0x63, 0x2a, 0x94, 0x1f, 0x66, 0x60, 0x81, 0x8d, 0xda, 0xb5, 0x08, 0xfd, 0x49, + 0x6b, 0x9e, 0xdb, 0x7d, 0x5c, 0xdc, 0x45, 0x8d, 0x66, 0xc5, 0x46, 0x7f, 0x4f, 0x81, 0xe9, 0xab, + 0x76, 0x80, 0xbd, 0x63, 0x2a, 0x94, 0x1f, 0x65, 0x60, 0x81, 0x8d, 0xda, 0xb5, 0x08, 0xfd, 0x49, 0x72, 0x39, 0x0f, 0x79, 0xa6, 0x77, 0x94, 0xcd, 0x8a, 0xc6, 0xbf, 0xd0, 0x29, 0x00, 0x7f, 0xc7, 0xf0, 0x4c, 0x5f, 0x77, 0x7a, 0x9d, 0x46, 0x6e, 0x51, 0x59, 0xca, 0x69, 0x25, 0x06, 0xb9, 0xd3, 0xeb, 0x20, 0x0d, 0xa6, 0x5b, 0xae, 0xe3, 0x5b, 0x7e, 0x80, 0x9d, 0xd6, 0xbe, 0x6e, 0xe3, 0x5d, 0x6c, 0x37, 0xf2, 0x8b, 0xca, 0x52, 0x6d, 0xe5, 0xac, 0x94, 0xef, 0x6b, 0x7d, 0xec, 0x5b, 0x04, - 0x59, 0xab, 0xb7, 0x12, 0x90, 0x2b, 0x85, 0xcf, 0xdf, 0x9a, 0xac, 0x2b, 0x8d, 0xac, 0xfa, 0x7d, - 0x05, 0xe6, 0x88, 0xe6, 0x1c, 0x0b, 0x09, 0x31, 0xb6, 0x32, 0x8d, 0xac, 0xfa, 0x63, 0x05, 0x66, + 0x59, 0xab, 0xb7, 0x12, 0x90, 0x2b, 0x85, 0xcf, 0xdf, 0x9a, 0xac, 0x2b, 0x8d, 0xac, 0xfa, 0x03, + 0x05, 0xe6, 0x88, 0xe6, 0x1c, 0x0b, 0x09, 0x31, 0xb6, 0x32, 0x8d, 0xac, 0xfa, 0x13, 0x05, 0x66, 0x6f, 0x1a, 0xfe, 0xf1, 0x18, 0xb7, 0x53, 0x00, 0x81, 0xd5, 0xc1, 0xba, 0x1f, 0x18, 0x9d, 0x2e, - 0x1d, 0xbb, 0x49, 0xad, 0x44, 0x20, 0x9b, 0x04, 0xc0, 0x98, 0x9e, 0x6c, 0x64, 0xd5, 0x6f, 0x42, + 0x1d, 0xbb, 0x49, 0xad, 0x44, 0x20, 0x9b, 0x04, 0xc0, 0x98, 0x9e, 0x6c, 0x64, 0xd5, 0x6f, 0x41, 0x65, 0xd5, 0x75, 0x6d, 0x0d, 0xfb, 0x5d, 0xd7, 0xf1, 0x31, 0xba, 0x08, 0x79, 0x3f, 0x30, 0x82, 0x9e, 0xcf, 0xb9, 0x3d, 0x21, 0xe5, 0x76, 0x93, 0xa2, 0x68, 0x1c, 0x95, 0xa8, 0xf2, 0xae, 0x61, 0xf7, 0x18, 0xb3, 0x45, 0x8d, 0x7d, 0xa8, 0x1f, 0x42, 0x6d, 0x33, 0xf0, 0x2c, 0xa7, 0xfd, 0x0b, - 0xac, 0xbc, 0x14, 0x56, 0xfe, 0x85, 0x02, 0xcf, 0xac, 0x51, 0x93, 0xb7, 0x75, 0x4c, 0x66, 0x8a, - 0x0a, 0x95, 0x3e, 0x64, 0x7d, 0x8d, 0xca, 0x3c, 0xab, 0xc5, 0x60, 0x89, 0x51, 0xc9, 0xa5, 0x8e, - 0xca, 0x27, 0x39, 0x68, 0xca, 0x7a, 0x37, 0x8e, 0x1c, 0xbf, 0x1e, 0xcd, 0xe4, 0x0c, 0x25, 0x4a, - 0xcc, 0x43, 0xbe, 0xba, 0xf4, 0x5b, 0xdb, 0xa4, 0x80, 0x68, 0xc2, 0x27, 0xbb, 0x97, 0x95, 0x74, - 0x6f, 0x05, 0xe6, 0x76, 0x2d, 0x2f, 0xe8, 0x19, 0xb6, 0xde, 0xda, 0x31, 0x1c, 0x07, 0xdb, 0x54, - 0x60, 0xc4, 0xc4, 0x65, 0x97, 0x4a, 0xda, 0x0c, 0x2f, 0xbc, 0xc6, 0xca, 0x88, 0xd4, 0x7c, 0xf4, - 0x1a, 0xcc, 0x77, 0x77, 0xf6, 0x7d, 0xab, 0x35, 0x40, 0x94, 0xa3, 0x44, 0xb3, 0x61, 0x69, 0x8c, - 0xea, 0x3c, 0x4c, 0xb7, 0xa8, 0x95, 0x34, 0x75, 0x22, 0x3e, 0x26, 0xcf, 0x3c, 0x95, 0x67, 0x9d, - 0x17, 0xdc, 0x0b, 0xe1, 0x84, 0xad, 0x10, 0xb9, 0x17, 0xb4, 0x04, 0x82, 0x02, 0x25, 0x98, 0xe1, - 0x85, 0x1f, 0x04, 0xad, 0x3e, 0x4d, 0xdc, 0xbe, 0x15, 0x93, 0xf6, 0xad, 0x01, 0x05, 0x6a, 0xaf, - 0xb1, 0xdf, 0x28, 0x51, 0x36, 0xc3, 0x4f, 0xb4, 0x0e, 0x53, 0x7e, 0x60, 0x78, 0x81, 0xde, 0x75, - 0x7d, 0x8b, 0xc8, 0xc5, 0x6f, 0xc0, 0x62, 0x76, 0xa9, 0xbc, 0xb2, 0x28, 0x1d, 0xa4, 0xf7, 0xf0, - 0xfe, 0x9a, 0x11, 0x18, 0x1b, 0x86, 0xe5, 0x69, 0x35, 0x4a, 0xb8, 0x11, 0xd2, 0xc9, 0x8d, 0x68, - 0x79, 0x2c, 0x23, 0x2a, 0x53, 0xe7, 0x8a, 0x4c, 0x9d, 0xd5, 0xbf, 0x51, 0x60, 0xee, 0x96, 0x6b, - 0x98, 0xc7, 0x63, 0x72, 0x9d, 0x85, 0x9a, 0x87, 0xbb, 0xb6, 0xd5, 0x32, 0xc8, 0x78, 0x6c, 0x61, - 0x8f, 0x4e, 0xaf, 0x9c, 0x56, 0xe5, 0xd0, 0x3b, 0x14, 0xc8, 0x26, 0x50, 0xae, 0x91, 0x55, 0x3f, - 0x53, 0xa0, 0xa1, 0x61, 0x1b, 0x1b, 0x3e, 0x3e, 0x46, 0xab, 0x44, 0xbe, 0x91, 0x25, 0x0e, 0xc8, - 0xb3, 0x37, 0x70, 0x20, 0xcc, 0xb3, 0xc0, 0x08, 0x2c, 0x3f, 0xb0, 0x5a, 0xfe, 0x13, 0xe7, 0x8f, - 0x98, 0x9e, 0xef, 0x2a, 0x70, 0x3a, 0x95, 0xbf, 0x71, 0xec, 0xcf, 0xeb, 0x90, 0x23, 0xbf, 0xfc, - 0x46, 0x86, 0x4e, 0x87, 0x33, 0x69, 0xd3, 0xe1, 0x1b, 0xc4, 0xbe, 0xd3, 0xf9, 0xc0, 0xf0, 0xd5, - 0xff, 0x50, 0x60, 0x7e, 0x73, 0xc7, 0xdd, 0xeb, 0xb3, 0xf4, 0x38, 0x24, 0x15, 0x37, 0xcd, 0xd9, - 0x84, 0x69, 0x46, 0xaf, 0xc2, 0x64, 0xb0, 0xdf, 0xc5, 0x54, 0xed, 0x6a, 0x2b, 0xa7, 0x96, 0x25, - 0xfe, 0xfa, 0x32, 0x61, 0xf2, 0xde, 0x7e, 0x17, 0x6b, 0x14, 0x15, 0xbd, 0x04, 0xf5, 0x84, 0xec, - 0x43, 0x9b, 0x36, 0x15, 0x17, 0xbe, 0x7f, 0x25, 0xf7, 0xf9, 0x5b, 0x99, 0xfa, 0xa4, 0xfa, 0x5f, - 0x19, 0x58, 0x18, 0xe8, 0xe9, 0x38, 0x32, 0x97, 0xb1, 0x90, 0x91, 0xb2, 0x40, 0x66, 0x98, 0x80, - 0x6a, 0x99, 0xc4, 0x6f, 0xce, 0x2e, 0x65, 0xb5, 0xaa, 0x60, 0xe1, 0x4d, 0x1f, 0xbd, 0x0c, 0x68, - 0xc0, 0xf0, 0x32, 0xfb, 0x3e, 0xa9, 0x4d, 0x27, 0x2d, 0x2f, 0xb5, 0xee, 0x52, 0xd3, 0xcb, 0x24, - 0x31, 0xa9, 0xcd, 0x4a, 0x6c, 0xaf, 0x8f, 0x5e, 0x85, 0x59, 0xcb, 0xb9, 0x8d, 0x3b, 0xae, 0xb7, - 0xaf, 0x77, 0xb1, 0xd7, 0xc2, 0x4e, 0x60, 0xb4, 0xb1, 0xdf, 0xc8, 0x53, 0x8e, 0x66, 0xc2, 0xb2, - 0x8d, 0x7e, 0x11, 0xba, 0x0c, 0x0b, 0x0f, 0x7b, 0xd8, 0xdb, 0xd7, 0x7d, 0xec, 0xed, 0x5a, 0x2d, - 0xac, 0x1b, 0xbb, 0x86, 0x65, 0x1b, 0x5b, 0x36, 0x6e, 0x14, 0x16, 0xb3, 0x4b, 0x45, 0x6d, 0x8e, - 0x16, 0x6f, 0xb2, 0xd2, 0xab, 0x61, 0xa1, 0xfa, 0x13, 0x05, 0xe6, 0x99, 0xbf, 0xbd, 0x61, 0x78, - 0x81, 0x75, 0x0c, 0xec, 0x5c, 0x37, 0xe4, 0x83, 0xe1, 0xb1, 0xdd, 0x41, 0x35, 0x82, 0x52, 0xe3, - 0xfc, 0x23, 0x05, 0x66, 0x89, 0x07, 0xfc, 0x34, 0xf1, 0xfc, 0x97, 0x0a, 0xcc, 0xdc, 0x34, 0xfc, - 0xa7, 0x89, 0xe5, 0x2f, 0xf8, 0x1a, 0x18, 0xf1, 0xfc, 0x44, 0x37, 0x8c, 0x2f, 0xc2, 0x54, 0x9c, - 0xe9, 0xd0, 0xaf, 0xaa, 0xc5, 0xb8, 0xf6, 0x25, 0x8b, 0x65, 0x4e, 0xb2, 0x58, 0xaa, 0x7f, 0xd5, - 0x5f, 0x23, 0x9f, 0xae, 0x0e, 0xaa, 0x7f, 0xad, 0xc0, 0xa9, 0x1b, 0x38, 0x88, 0xb8, 0x3e, 0x16, - 0x4b, 0xe8, 0xa8, 0x4a, 0xf5, 0x1d, 0xe6, 0x00, 0x48, 0x99, 0x7f, 0x22, 0xeb, 0xeb, 0x6f, 0x67, - 0x60, 0x8e, 0xac, 0x3a, 0xc7, 0x43, 0x09, 0x46, 0xd9, 0x46, 0x49, 0x14, 0x25, 0x27, 0x9d, 0x09, - 0xe1, 0xaa, 0x9d, 0x1f, 0x79, 0xd5, 0x56, 0x7f, 0x9c, 0x61, 0xde, 0x86, 0x28, 0x8d, 0x71, 0x86, - 0x45, 0xc2, 0x6b, 0x46, 0xca, 0xab, 0x0a, 0x95, 0x08, 0xb2, 0xbe, 0x16, 0x2e, 0xbf, 0x31, 0xd8, - 0x71, 0x5d, 0x7d, 0xd5, 0x4f, 0x15, 0x98, 0x0f, 0xf7, 0xab, 0x9b, 0xb8, 0xdd, 0xc1, 0x4e, 0x70, - 0x74, 0x1d, 0x4a, 0x6a, 0x40, 0x46, 0xa2, 0x01, 0x27, 0xa1, 0xe4, 0xb3, 0x76, 0xa2, 0xad, 0x68, - 0x1f, 0xa0, 0xfe, 0x9d, 0x02, 0x0b, 0x03, 0xec, 0x8c, 0x33, 0x88, 0x0d, 0x28, 0x58, 0x8e, 0x89, - 0x1f, 0x45, 0xdc, 0x84, 0x9f, 0xa4, 0x64, 0xab, 0x67, 0xd9, 0x66, 0xc4, 0x46, 0xf8, 0x89, 0xce, - 0x40, 0x05, 0x3b, 0xc4, 0xc7, 0xd0, 0x29, 0x2e, 0x55, 0xe4, 0xa2, 0x56, 0x66, 0xb0, 0x75, 0x02, - 0x22, 0xc4, 0xdb, 0x16, 0xa6, 0xc4, 0x39, 0x46, 0xcc, 0x3f, 0xd5, 0xdf, 0x51, 0x60, 0x86, 0x68, - 0x21, 0xe7, 0xde, 0x7f, 0xbc, 0xd2, 0x5c, 0x84, 0xb2, 0xa0, 0x66, 0xbc, 0x23, 0x22, 0x48, 0x7d, - 0x00, 0xb3, 0x71, 0x76, 0xc6, 0x91, 0xe6, 0xb3, 0x00, 0xd1, 0x58, 0xb1, 0xd9, 0x90, 0xd5, 0x04, - 0x88, 0xfa, 0x69, 0x26, 0x3c, 0xb9, 0xa6, 0x62, 0x7a, 0xc2, 0xc7, 0x68, 0x74, 0x48, 0x44, 0x7b, - 0x5e, 0xa2, 0x10, 0x5a, 0xbc, 0x06, 0x15, 0xfc, 0x28, 0xf0, 0x0c, 0xbd, 0x6b, 0x78, 0x46, 0x87, - 0x4d, 0xab, 0x91, 0x4c, 0x6f, 0x99, 0x92, 0x6d, 0x50, 0x2a, 0xd2, 0x08, 0x55, 0x11, 0xd6, 0x48, - 0x9e, 0x35, 0x42, 0x21, 0x74, 0xc1, 0xf8, 0x47, 0xe2, 0xec, 0x71, 0x6d, 0x3e, 0xee, 0x02, 0x89, - 0x77, 0x25, 0x97, 0xec, 0xca, 0x9f, 0x2a, 0x50, 0xa7, 0x5d, 0x58, 0xe3, 0xd1, 0x0a, 0xcb, 0x75, - 0x12, 0x34, 0x4a, 0x82, 0x66, 0xc8, 0xdc, 0xfb, 0x1a, 0xe4, 0xb9, 0xdc, 0xb3, 0xa3, 0xca, 0x9d, - 0x13, 0x1c, 0xd0, 0x0d, 0xf5, 0x8f, 0x14, 0x98, 0x4b, 0x88, 0x7c, 0x1c, 0x85, 0xbf, 0x07, 0x88, - 0xf5, 0xd0, 0xec, 0x77, 0x3b, 0x5c, 0xa7, 0xcf, 0x4a, 0x17, 0xa5, 0xa4, 0x90, 0xb4, 0x69, 0x2b, - 0x01, 0xf1, 0xd5, 0x9f, 0x29, 0x70, 0xf2, 0x06, 0x0e, 0x28, 0xea, 0x2a, 0x31, 0x3a, 0x1b, 0x9e, - 0xdb, 0xf6, 0xb0, 0xef, 0x3f, 0xbd, 0xfa, 0xf1, 0x7b, 0xcc, 0xb1, 0x93, 0x75, 0x69, 0x1c, 0xf9, - 0x9f, 0x81, 0x0a, 0x6d, 0x03, 0x9b, 0xba, 0xe7, 0xee, 0xf9, 0x5c, 0x8f, 0xca, 0x1c, 0xa6, 0xb9, - 0x7b, 0x54, 0x21, 0x02, 0x37, 0x30, 0x6c, 0x86, 0xc0, 0x57, 0x14, 0x0a, 0x21, 0xc5, 0x74, 0x0e, - 0x86, 0x8c, 0x91, 0xca, 0xf1, 0xd3, 0x2b, 0xe3, 0x3f, 0x51, 0x60, 0x2e, 0xd1, 0x95, 0x71, 0x64, - 0x7b, 0x89, 0xb9, 0x9d, 0xac, 0x33, 0xb5, 0x95, 0xd3, 0x52, 0x1a, 0xa1, 0x31, 0x86, 0x8d, 0x4e, - 0x43, 0x79, 0xdb, 0xb0, 0x6c, 0xdd, 0xc3, 0x86, 0xef, 0x3a, 0xbc, 0xa3, 0x40, 0x40, 0x1a, 0x85, - 0xa8, 0x3f, 0x55, 0x58, 0x78, 0xf0, 0x29, 0xb7, 0x78, 0x7f, 0x9c, 0x81, 0xea, 0xba, 0xe3, 0x63, - 0x2f, 0x38, 0xfe, 0x5b, 0x13, 0xf4, 0x36, 0x94, 0x69, 0xc7, 0x7c, 0xdd, 0x34, 0x02, 0x83, 0xaf, - 0x66, 0xcf, 0x4a, 0xe3, 0x04, 0xd7, 0x09, 0xde, 0x9a, 0x11, 0x18, 0x1a, 0x93, 0x8e, 0x4f, 0x7e, - 0xa3, 0x13, 0x50, 0xda, 0x31, 0xfc, 0x1d, 0xfd, 0x01, 0xde, 0x67, 0xfe, 0x62, 0x55, 0x2b, 0x12, - 0xc0, 0x7b, 0x78, 0xdf, 0x47, 0xcf, 0x40, 0xd1, 0xe9, 0x75, 0xd8, 0x04, 0x2b, 0x2c, 0x2a, 0x4b, - 0x55, 0xad, 0xe0, 0xf4, 0x3a, 0x74, 0x7a, 0xfd, 0x53, 0x06, 0x6a, 0xb7, 0x7b, 0x64, 0x23, 0x44, - 0xa3, 0x1c, 0x3d, 0x3b, 0x38, 0x9a, 0x32, 0x9e, 0x83, 0x2c, 0x73, 0x29, 0x08, 0x45, 0x43, 0xca, - 0xf8, 0xfa, 0x9a, 0xaf, 0x11, 0x24, 0x7a, 0xc2, 0xdf, 0x6b, 0xb5, 0xb8, 0x77, 0x96, 0xa5, 0xcc, - 0x96, 0x08, 0x84, 0xf9, 0x66, 0x27, 0xa0, 0x84, 0x3d, 0x2f, 0xf2, 0xdd, 0x68, 0x57, 0xb0, 0xe7, - 0xb1, 0x42, 0x15, 0x2a, 0x46, 0xeb, 0x81, 0xe3, 0xee, 0xd9, 0xd8, 0x6c, 0x63, 0x93, 0x0e, 0x7b, - 0x51, 0x8b, 0xc1, 0x98, 0x62, 0x90, 0x81, 0xd7, 0x5b, 0x4e, 0x40, 0x57, 0xf5, 0x2c, 0x51, 0x0c, - 0x02, 0xb9, 0xe6, 0x04, 0xa4, 0xd8, 0xc4, 0x36, 0x0e, 0x30, 0x2d, 0x2e, 0xb0, 0x62, 0x06, 0xe1, - 0xc5, 0xbd, 0x6e, 0x44, 0x5d, 0x64, 0xc5, 0x0c, 0x42, 0x8a, 0x4f, 0x42, 0xa9, 0x1f, 0xc6, 0x28, - 0xf5, 0x0f, 0x2b, 0x29, 0x40, 0xfd, 0x42, 0x81, 0xea, 0x1a, 0xad, 0xea, 0x29, 0x50, 0x3a, 0x04, - 0x93, 0xf8, 0x51, 0xd7, 0xe3, 0x53, 0x87, 0xfe, 0x1e, 0xaa, 0x47, 0xea, 0xff, 0x67, 0xa1, 0xba, - 0x89, 0x0d, 0xaf, 0xb5, 0xf3, 0x54, 0x9c, 0xc6, 0xd4, 0x21, 0x6b, 0xfa, 0x36, 0xef, 0x1e, 0xf9, - 0x89, 0xce, 0xc3, 0x74, 0xd7, 0x36, 0x5a, 0x78, 0xc7, 0xb5, 0x4d, 0xec, 0xe9, 0x6d, 0xcf, 0xed, - 0xb1, 0xe0, 0x55, 0x45, 0xab, 0x0b, 0x05, 0x37, 0x08, 0x1c, 0xbd, 0x0e, 0x45, 0xd3, 0xb7, 0x75, - 0xba, 0x8d, 0x2d, 0x50, 0x13, 0x2b, 0xef, 0xdf, 0x9a, 0x6f, 0xd3, 0x5d, 0x6c, 0xc1, 0x64, 0x3f, - 0xd0, 0x73, 0x50, 0x75, 0x7b, 0x41, 0xb7, 0x17, 0xe8, 0x6c, 0x82, 0x36, 0x8a, 0x94, 0xbd, 0x0a, - 0x03, 0xd2, 0xf9, 0xeb, 0xa3, 0xeb, 0x50, 0xf5, 0xa9, 0x28, 0x43, 0x0f, 0xb6, 0x34, 0xaa, 0x27, - 0x55, 0x61, 0x74, 0xdc, 0x85, 0x7d, 0x09, 0xea, 0x81, 0x67, 0xec, 0x62, 0x5b, 0x88, 0xae, 0x01, - 0x55, 0xcb, 0x29, 0x06, 0xef, 0x47, 0xd6, 0x2e, 0xc0, 0x4c, 0xbb, 0x67, 0x78, 0x86, 0x13, 0x60, - 0x2c, 0x60, 0x97, 0x29, 0x36, 0x8a, 0x8a, 0xfa, 0x04, 0x35, 0xc8, 0x38, 0x0f, 0x69, 0x94, 0x2a, - 0xab, 0x65, 0x9c, 0x87, 0xea, 0x7b, 0x30, 0x79, 0xd3, 0x0a, 0xa8, 0x60, 0xc9, 0x64, 0x57, 0xe8, - 0xfe, 0x81, 0x4e, 0xe9, 0x67, 0xa0, 0xe8, 0xb9, 0x7b, 0xcc, 0x78, 0x11, 0xef, 0xaa, 0xa2, 0x15, - 0x3c, 0x77, 0x8f, 0x5a, 0x26, 0x9a, 0xc7, 0xe0, 0x7a, 0x98, 0xf9, 0x8a, 0x19, 0x8d, 0x7f, 0xa9, - 0x7f, 0xa1, 0xf4, 0x95, 0x89, 0xd8, 0x1d, 0xff, 0x68, 0x86, 0xe7, 0x6d, 0x28, 0x78, 0x8c, 0x7e, - 0x68, 0x74, 0x55, 0x6c, 0x89, 0x1a, 0xcf, 0x90, 0x6a, 0x64, 0xbd, 0x53, 0xbf, 0xad, 0x40, 0xe5, - 0xba, 0xdd, 0xf3, 0x1f, 0x87, 0xf2, 0xcb, 0xc2, 0x05, 0x59, 0x69, 0xb8, 0x40, 0xfd, 0x5e, 0x06, - 0xaa, 0x9c, 0x8d, 0x71, 0xbc, 0x87, 0x54, 0x56, 0x36, 0xa1, 0x4c, 0x9a, 0xd4, 0x7d, 0xdc, 0x0e, - 0x0f, 0x43, 0xca, 0x2b, 0x2b, 0x52, 0x5f, 0x39, 0xc6, 0x06, 0x0d, 0x60, 0x6f, 0x52, 0xa2, 0x77, - 0x9d, 0xc0, 0xdb, 0xd7, 0xa0, 0x15, 0x01, 0x9a, 0xf7, 0x61, 0x2a, 0x51, 0x4c, 0x94, 0xe8, 0x01, - 0xde, 0xe7, 0xbb, 0x0e, 0xf2, 0x13, 0xbd, 0x26, 0xe6, 0x1b, 0xa4, 0x2d, 0x7f, 0xb7, 0x5c, 0xa7, - 0x7d, 0xd5, 0xf3, 0x8c, 0x7d, 0x9e, 0x8f, 0x70, 0x25, 0xf3, 0x55, 0x45, 0xfd, 0xfb, 0x0c, 0x54, - 0xde, 0xef, 0x61, 0x6f, 0xff, 0x49, 0xda, 0xa5, 0xd0, 0x9c, 0x4e, 0x0a, 0xe6, 0x74, 0xc0, 0x14, - 0xe4, 0x24, 0xa6, 0x40, 0x62, 0xd0, 0xf2, 0x52, 0x83, 0x26, 0x9b, 0xeb, 0x85, 0x43, 0xcd, 0xf5, - 0x62, 0xda, 0x5c, 0x57, 0xff, 0x5c, 0x89, 0x44, 0x38, 0xd6, 0x6c, 0x8c, 0xf9, 0x31, 0x99, 0x43, - 0xfb, 0x31, 0x23, 0xcf, 0xc6, 0x1f, 0x29, 0x50, 0xfa, 0x06, 0x6e, 0x05, 0xae, 0x47, 0xec, 0x8f, - 0x84, 0x4c, 0x19, 0xc1, 0xa7, 0xcc, 0x24, 0x7d, 0xca, 0x8b, 0x50, 0xb4, 0x4c, 0xdd, 0x20, 0xfa, - 0x45, 0xdb, 0x1d, 0xe6, 0xcb, 0x14, 0x2c, 0x93, 0x2a, 0xe2, 0xe8, 0xa7, 0xe7, 0x9f, 0x29, 0x50, - 0x61, 0x3c, 0xfb, 0x8c, 0xf2, 0x0d, 0xa1, 0x39, 0x45, 0xa6, 0xf4, 0xfc, 0x23, 0xea, 0xe8, 0xcd, - 0x89, 0x7e, 0xb3, 0x57, 0x01, 0x88, 0x90, 0x39, 0x39, 0x9b, 0x33, 0x8b, 0x52, 0x6e, 0x19, 0x39, - 0x15, 0xf8, 0xcd, 0x09, 0xad, 0x44, 0xa8, 0x68, 0x15, 0xab, 0x05, 0xc8, 0x51, 0x6a, 0xf5, 0xff, - 0x14, 0x98, 0xb9, 0x66, 0xd8, 0xad, 0x35, 0xcb, 0x0f, 0x0c, 0xa7, 0x35, 0x86, 0xf7, 0x72, 0x05, - 0x0a, 0x6e, 0x57, 0xb7, 0xf1, 0x76, 0xc0, 0x59, 0x3a, 0x33, 0xa4, 0x47, 0x4c, 0x0c, 0x5a, 0xde, - 0xed, 0xde, 0xc2, 0xdb, 0x01, 0x7a, 0x13, 0x8a, 0x6e, 0x57, 0xf7, 0xac, 0xf6, 0x4e, 0xc0, 0xa5, - 0x3f, 0x02, 0x71, 0xc1, 0xed, 0x6a, 0x84, 0x42, 0x38, 0x94, 0x98, 0x3c, 0xe4, 0xa1, 0x84, 0xfa, - 0xaf, 0x03, 0xdd, 0x1f, 0x63, 0x0e, 0x5c, 0x81, 0xa2, 0xe5, 0x04, 0xba, 0x69, 0xf9, 0xa1, 0x08, - 0x4e, 0xc9, 0x75, 0xc8, 0x09, 0x68, 0x0f, 0xe8, 0x98, 0x3a, 0x01, 0x69, 0x1b, 0xbd, 0x03, 0xb0, - 0x6d, 0xbb, 0x06, 0xa7, 0x66, 0x32, 0x38, 0x2d, 0x9f, 0x3e, 0x04, 0x2d, 0xa4, 0x2f, 0x51, 0x22, - 0x52, 0x43, 0x7f, 0x48, 0xff, 0x45, 0x81, 0xb9, 0x0d, 0xec, 0xb1, 0x24, 0x94, 0x80, 0x9f, 0x1f, - 0xae, 0x3b, 0xdb, 0x6e, 0xfc, 0x08, 0x57, 0x49, 0x1c, 0xe1, 0xfe, 0x62, 0x8e, 0x2d, 0x63, 0x5b, - 0x0e, 0x16, 0x48, 0x08, 0xb7, 0x1c, 0x61, 0xb8, 0x84, 0x6d, 0xd9, 0x6a, 0x29, 0xc3, 0xc4, 0xf9, - 0x15, 0x77, 0xae, 0xea, 0xef, 0xb2, 0x04, 0x09, 0x69, 0xa7, 0x8e, 0xae, 0xb0, 0xf3, 0xc0, 0x2d, - 0x7d, 0xc2, 0xee, 0xbf, 0x00, 0x09, 0xdb, 0x91, 0x62, 0x88, 0x7e, 0xa0, 0xc0, 0x62, 0x3a, 0x57, - 0xe3, 0x2c, 0xd1, 0xef, 0x40, 0xce, 0x72, 0xb6, 0xdd, 0xf0, 0xbc, 0xea, 0x9c, 0x74, 0x2e, 0xc8, - 0xdb, 0x65, 0x84, 0xea, 0xcf, 0x32, 0x50, 0x7f, 0x9f, 0x45, 0xdf, 0xbf, 0xf4, 0xe1, 0xef, 0xe0, - 0x8e, 0xee, 0x5b, 0x1f, 0xe3, 0x70, 0xf8, 0x3b, 0xb8, 0xb3, 0x69, 0x7d, 0x8c, 0x63, 0x9a, 0x91, - 0x8b, 0x6b, 0xc6, 0xf0, 0xe3, 0x58, 0xf1, 0x3c, 0xb2, 0x10, 0x3f, 0x8f, 0x9c, 0x87, 0xbc, 0xe3, - 0x9a, 0x78, 0x7d, 0x8d, 0xef, 0xd7, 0xf8, 0x57, 0x5f, 0xd5, 0x4a, 0x87, 0x53, 0x35, 0xd2, 0x14, - 0xad, 0xc2, 0x64, 0x39, 0x64, 0x84, 0x47, 0xf6, 0xa9, 0x7e, 0x47, 0x81, 0xe6, 0x0d, 0x1c, 0x24, - 0xa5, 0xfa, 0xe4, 0xf4, 0xef, 0xbb, 0x0a, 0x9c, 0x90, 0x32, 0x34, 0x8e, 0xea, 0xbd, 0x11, 0x57, - 0x3d, 0xf9, 0x51, 0xe9, 0x40, 0x93, 0x5c, 0xeb, 0x5e, 0x85, 0xca, 0x5a, 0xaf, 0xd3, 0x89, 0x9c, - 0xb1, 0x33, 0x50, 0xf1, 0xd8, 0x4f, 0xb6, 0x99, 0x62, 0x2b, 0x73, 0x99, 0xc3, 0xc8, 0x96, 0x49, - 0x3d, 0x0f, 0x55, 0x4e, 0xc2, 0xb9, 0x6e, 0x42, 0xd1, 0xe3, 0xbf, 0x39, 0x7e, 0xf4, 0xad, 0xce, - 0xc1, 0x8c, 0x86, 0xdb, 0x44, 0xe9, 0xbd, 0x5b, 0x96, 0xf3, 0x80, 0x37, 0xa3, 0x7e, 0x4b, 0x81, - 0xd9, 0x38, 0x9c, 0xd7, 0x75, 0x19, 0x0a, 0x86, 0x69, 0x7a, 0xd8, 0xf7, 0x87, 0x0e, 0xcb, 0x55, - 0x86, 0xa3, 0x85, 0xc8, 0x82, 0xe4, 0x32, 0x23, 0x4b, 0x4e, 0xd5, 0x61, 0xfa, 0x06, 0x0e, 0x6e, - 0xe3, 0xc0, 0x1b, 0x2b, 0x28, 0xde, 0x20, 0xdb, 0x1a, 0x4a, 0xcc, 0xd5, 0x22, 0xfc, 0x54, 0x3f, - 0x55, 0x00, 0x89, 0x2d, 0x8c, 0x33, 0xcc, 0xa2, 0x94, 0x33, 0x71, 0x29, 0xb3, 0xb4, 0xa4, 0x4e, - 0xd7, 0x75, 0xb0, 0x13, 0x88, 0x8e, 0x58, 0x35, 0x82, 0x86, 0x99, 0x1a, 0xe8, 0x96, 0x6b, 0x98, - 0xab, 0x86, 0x3d, 0x9e, 0xe3, 0x70, 0x0a, 0xc0, 0xf7, 0x5a, 0x3a, 0x9f, 0xc7, 0x19, 0x6e, 0x97, - 0xbc, 0xd6, 0x1d, 0x36, 0x95, 0x4f, 0x43, 0xd9, 0xf4, 0x03, 0x5e, 0x1c, 0xc6, 0x68, 0xc1, 0xf4, - 0x03, 0x56, 0x4e, 0x13, 0x53, 0x7d, 0x6c, 0xd8, 0xd8, 0xd4, 0x85, 0x10, 0xd7, 0x24, 0x45, 0xab, - 0xb3, 0x82, 0xcd, 0x08, 0x2e, 0x99, 0x5c, 0x39, 0xe9, 0xe4, 0xba, 0x0f, 0x0b, 0xb7, 0x0d, 0xa7, - 0x67, 0xd8, 0xd7, 0xdc, 0x4e, 0xd7, 0x88, 0xe5, 0x32, 0x26, 0x0d, 0xa5, 0x22, 0x31, 0x94, 0xcf, - 0xb2, 0xd4, 0x36, 0xe6, 0x9c, 0xd3, 0x3e, 0x4d, 0x6a, 0x02, 0x44, 0xf5, 0xa1, 0x31, 0x58, 0xfd, - 0x38, 0x03, 0x4a, 0x99, 0x0a, 0xab, 0x12, 0xad, 0x77, 0x1f, 0xa6, 0xbe, 0x0d, 0xcf, 0xd0, 0x34, - 0xc3, 0x10, 0x14, 0x3b, 0x55, 0x4f, 0x56, 0xa0, 0x48, 0x2a, 0xf8, 0x8d, 0x0c, 0x35, 0x81, 0x03, - 0x35, 0x8c, 0xc3, 0xf8, 0x95, 0xf8, 0x61, 0xf6, 0xf3, 0x29, 0x59, 0xb6, 0xf1, 0x16, 0xb9, 0xb1, - 0x5e, 0x82, 0x29, 0xfc, 0x08, 0xb7, 0x7a, 0x81, 0xe5, 0xb4, 0x37, 0x6c, 0xc3, 0xb9, 0xe3, 0xf2, - 0x25, 0x29, 0x09, 0x46, 0xcf, 0x43, 0x95, 0x48, 0xdf, 0xed, 0x05, 0x1c, 0x8f, 0xad, 0x4d, 0x71, - 0x20, 0xa9, 0x8f, 0xf4, 0xd7, 0xc6, 0x01, 0x36, 0x39, 0x1e, 0x5b, 0xa8, 0x92, 0xe0, 0x01, 0x51, - 0x12, 0xb0, 0x7f, 0x18, 0x51, 0xfe, 0x9b, 0x92, 0x10, 0x25, 0xaf, 0xe1, 0x49, 0x89, 0xf2, 0x26, - 0x40, 0x07, 0x7b, 0x6d, 0xbc, 0x4e, 0x8d, 0x3f, 0xdb, 0xfb, 0x2f, 0x49, 0x8d, 0x7f, 0xbf, 0x82, - 0xdb, 0x21, 0x81, 0x26, 0xd0, 0xaa, 0x37, 0x60, 0x46, 0x82, 0x42, 0xec, 0x9a, 0xef, 0xf6, 0xbc, - 0x16, 0x0e, 0x8f, 0x8f, 0xc2, 0x4f, 0xb2, 0x0e, 0x06, 0x86, 0xd7, 0xc6, 0x01, 0x57, 0x5a, 0xfe, - 0xa5, 0x5e, 0xa6, 0xf1, 0x1f, 0x7a, 0xd4, 0x10, 0xd3, 0xd4, 0x78, 0x2c, 0x5b, 0x19, 0x88, 0x65, - 0x6f, 0xd3, 0x60, 0x8b, 0x48, 0x37, 0x66, 0x1e, 0xc2, 0x36, 0xa9, 0x0a, 0x9b, 0xfc, 0xaa, 0x45, - 0xf8, 0xa9, 0xfe, 0x8f, 0x02, 0xd5, 0xf5, 0x4e, 0xd7, 0xed, 0xc7, 0x19, 0x46, 0xde, 0x8c, 0x0e, - 0x9e, 0xd3, 0x66, 0x64, 0xe7, 0xb4, 0xcf, 0x41, 0x35, 0x9e, 0x9f, 0xcf, 0x4e, 0x86, 0x2a, 0x2d, - 0x31, 0x2f, 0xff, 0x04, 0x94, 0x3c, 0x77, 0x4f, 0x27, 0xa6, 0xd4, 0xe4, 0x19, 0x0f, 0x45, 0xcf, - 0xdd, 0x23, 0x06, 0xd6, 0x44, 0xb3, 0x90, 0xdb, 0xb6, 0xec, 0x28, 0x59, 0x87, 0x7d, 0xa0, 0x37, - 0xc8, 0x56, 0x8d, 0x45, 0x44, 0xf3, 0xa3, 0xee, 0x98, 0x42, 0x0a, 0xf5, 0x43, 0xa8, 0x85, 0xbd, - 0x1e, 0xf3, 0x8e, 0x49, 0x60, 0xf8, 0x0f, 0xc2, 0x64, 0x04, 0xf6, 0xa1, 0x9e, 0x67, 0x81, 0x32, - 0x5a, 0x7f, 0x6c, 0xd0, 0x11, 0x4c, 0x12, 0x0c, 0x3e, 0x97, 0xe8, 0x6f, 0xf5, 0x9f, 0x33, 0x30, - 0x9f, 0xc4, 0x1e, 0x87, 0xa5, 0xcb, 0xf1, 0xf9, 0x23, 0xbf, 0x3d, 0x20, 0xb6, 0xc6, 0xe7, 0x0e, - 0x1f, 0x81, 0x96, 0xdb, 0x73, 0x02, 0x6e, 0x80, 0xc8, 0x08, 0x5c, 0x23, 0xdf, 0x68, 0x01, 0x0a, - 0x96, 0xa9, 0xdb, 0x64, 0x57, 0xc7, 0xd6, 0xa4, 0xbc, 0x65, 0xde, 0x22, 0x3b, 0xbe, 0xd7, 0x43, - 0x4f, 0x6b, 0xe4, 0x0c, 0x06, 0x86, 0x8f, 0x6a, 0x90, 0xb1, 0x4c, 0x1e, 0xdd, 0xc8, 0x58, 0x26, - 0x51, 0x26, 0x7a, 0x1c, 0x40, 0xb3, 0x6d, 0x79, 0xfa, 0x2d, 0xd1, 0x82, 0x2a, 0x81, 0xbe, 0x1f, - 0x02, 0x89, 0x33, 0x46, 0xd1, 0x78, 0x08, 0x96, 0x3a, 0xcc, 0x45, 0xad, 0x4c, 0x60, 0xeb, 0x0c, - 0xa4, 0x36, 0x60, 0x9e, 0xb0, 0xc6, 0xba, 0x78, 0x8f, 0x0c, 0x48, 0xe8, 0x62, 0x7d, 0x4f, 0x81, - 0x85, 0x81, 0xa2, 0x71, 0x64, 0x7d, 0x55, 0x1c, 0xfe, 0xf2, 0xca, 0x79, 0xa9, 0xa9, 0x91, 0x0f, - 0x6e, 0xa8, 0x2b, 0xdf, 0x67, 0xfe, 0x90, 0xc6, 0x32, 0x2c, 0x1f, 0x73, 0xbe, 0xce, 0x12, 0xd4, - 0xf7, 0xac, 0x60, 0x47, 0xa7, 0xf7, 0x51, 0xa8, 0x33, 0xc2, 0x42, 0xd6, 0x45, 0xad, 0x46, 0xe0, - 0x9b, 0x04, 0x4c, 0x1c, 0x12, 0x5f, 0xfd, 0x4d, 0x05, 0x66, 0x62, 0x6c, 0x8d, 0x23, 0xa6, 0x37, - 0x89, 0x9f, 0xc6, 0x2a, 0xe2, 0x92, 0x5a, 0x94, 0x4a, 0x8a, 0xb7, 0x46, 0x8d, 0x71, 0x44, 0xa1, - 0xfe, 0xbb, 0x02, 0x65, 0xa1, 0x84, 0x6c, 0x00, 0x79, 0x59, 0x7f, 0x03, 0x18, 0x01, 0x46, 0x12, - 0xc3, 0x73, 0xd0, 0x37, 0x51, 0x42, 0xc6, 0xba, 0x90, 0x32, 0x67, 0xfa, 0xe8, 0x26, 0xd4, 0x98, - 0x98, 0x22, 0xd6, 0xa5, 0xe7, 0x32, 0x51, 0x32, 0xa0, 0xe1, 0x99, 0x9c, 0x4b, 0xad, 0xea, 0x0b, - 0x5f, 0x2c, 0x7e, 0xe9, 0x9a, 0x98, 0xb6, 0x94, 0x1b, 0xd8, 0x8e, 0x55, 0x44, 0x52, 0xe2, 0xd2, - 0xda, 0xd8, 0x30, 0xb1, 0x17, 0xf5, 0x2d, 0xfa, 0x26, 0x3e, 0x24, 0xfb, 0xad, 0x13, 0x17, 0x9f, - 0x1b, 0x5b, 0x60, 0x20, 0xe2, 0xfd, 0xa3, 0x17, 0x60, 0xca, 0xec, 0xc4, 0x2e, 0x43, 0x85, 0x4e, - 0xaf, 0xd9, 0x11, 0x6e, 0x41, 0xc5, 0x18, 0x9a, 0x8c, 0x33, 0xf4, 0xdf, 0x4a, 0x74, 0x8d, 0xd4, - 0xc3, 0x26, 0x76, 0x02, 0xcb, 0xb0, 0x8f, 0xae, 0x93, 0x4d, 0x28, 0xf6, 0x7c, 0xec, 0x09, 0x6b, - 0x43, 0xf4, 0x4d, 0xca, 0xba, 0x86, 0xef, 0xef, 0xb9, 0x9e, 0xc9, 0xb9, 0x8c, 0xbe, 0x87, 0xe4, - 0x1f, 0xb2, 0x0b, 0x89, 0xf2, 0xfc, 0xc3, 0xcb, 0xb0, 0xd0, 0x71, 0x4d, 0x6b, 0xdb, 0x92, 0xa5, - 0x2d, 0x12, 0xb2, 0xb9, 0xb0, 0x38, 0x46, 0xa7, 0xfe, 0x20, 0x03, 0x0b, 0x1f, 0x74, 0xcd, 0x2f, - 0xa1, 0xcf, 0x8b, 0x50, 0x76, 0x6d, 0x73, 0x23, 0xde, 0x6d, 0x11, 0x44, 0x30, 0x1c, 0xbc, 0x17, - 0x61, 0xb0, 0xc3, 0x78, 0x11, 0x34, 0x34, 0x37, 0xf3, 0x48, 0xb2, 0xc9, 0x0f, 0x93, 0x4d, 0x1b, - 0x16, 0x58, 0x40, 0xf8, 0x31, 0x8b, 0x46, 0xfd, 0x08, 0xe6, 0x88, 0x69, 0x26, 0xcd, 0x7c, 0xe0, - 0x63, 0x6f, 0x4c, 0x8b, 0x73, 0x12, 0x4a, 0x61, 0xcd, 0x61, 0xda, 0x6c, 0x1f, 0xa0, 0xde, 0x84, - 0xd9, 0x44, 0x5b, 0x47, 0xec, 0x91, 0xba, 0x08, 0xa0, 0xb9, 0x36, 0x7e, 0xd7, 0x09, 0xac, 0x60, - 0x9f, 0x2c, 0xef, 0x82, 0xbb, 0x44, 0x7f, 0x13, 0x0c, 0xd2, 0xc6, 0x10, 0x8c, 0x5f, 0x85, 0x69, - 0x36, 0xe3, 0x48, 0x4d, 0x47, 0x17, 0xee, 0xeb, 0x90, 0xc7, 0xb4, 0x11, 0xbe, 0xdd, 0x3f, 0x2d, - 0x37, 0xb1, 0x11, 0xb7, 0x1a, 0x47, 0x57, 0x7f, 0x05, 0xa6, 0xd6, 0x3c, 0xb7, 0x3b, 0x5e, 0xeb, - 0xd4, 0x7b, 0xb0, 0xb1, 0xe8, 0x06, 0x16, 0x09, 0x80, 0x6e, 0x43, 0xff, 0x41, 0x81, 0xf9, 0xbb, - 0x5d, 0xec, 0x19, 0x01, 0x26, 0xb2, 0x18, 0xaf, 0xa5, 0x61, 0xf3, 0x2b, 0xc6, 0x45, 0x36, 0xce, - 0x05, 0x7a, 0x33, 0x76, 0x13, 0x4b, 0xbe, 0x2d, 0x48, 0x70, 0x29, 0xa4, 0x77, 0xff, 0x99, 0x02, - 0xd3, 0x9b, 0x98, 0xac, 0x21, 0xe3, 0xb1, 0x7f, 0x11, 0x26, 0x09, 0x47, 0xa3, 0x0e, 0x12, 0x45, - 0x46, 0xe7, 0x60, 0xda, 0x72, 0x5a, 0x76, 0xcf, 0xc4, 0x3a, 0xe9, 0xab, 0x4e, 0x5c, 0x28, 0xbe, - 0x70, 0x4f, 0xf1, 0x02, 0xc2, 0x32, 0x59, 0x1e, 0xd5, 0x47, 0x4c, 0x25, 0xa3, 0x6c, 0x18, 0xd6, - 0x9c, 0x72, 0x98, 0xe6, 0x2e, 0x41, 0x8e, 0x34, 0x13, 0x2e, 0xd6, 0x72, 0xaa, 0xbe, 0x56, 0x6b, - 0x0c, 0x5b, 0xfd, 0xb6, 0x02, 0x48, 0x14, 0xd1, 0x38, 0x13, 0xf8, 0x6b, 0x62, 0x5c, 0x3c, 0x3b, - 0x94, 0x75, 0xd6, 0xd3, 0x28, 0x22, 0x2e, 0x8c, 0x14, 0x1d, 0xc6, 0x71, 0x46, 0x8a, 0xf4, 0x6b, - 0xe8, 0x48, 0x09, 0x42, 0xa0, 0xc8, 0xe2, 0x48, 0x51, 0x4d, 0x94, 0x8c, 0x14, 0xe1, 0x39, 0x1c, - 0x29, 0xc6, 0x61, 0x38, 0x52, 0xb4, 0x39, 0xe5, 0x30, 0xcd, 0x5d, 0x82, 0x1c, 0x69, 0xe6, 0x60, - 0x21, 0x85, 0x23, 0x45, 0xb1, 0xd5, 0x5f, 0x8b, 0x46, 0x8a, 0x33, 0x30, 0xd6, 0xf5, 0x91, 0x3c, - 0x93, 0xfc, 0x81, 0xda, 0xc2, 0x07, 0x8a, 0xa3, 0xab, 0xcf, 0x43, 0x4d, 0xc3, 0x6c, 0xfb, 0xdc, - 0xb7, 0x8e, 0xc2, 0x09, 0x2b, 0x9b, 0x77, 0x67, 0x61, 0x6a, 0xc3, 0xb3, 0x76, 0x2d, 0x1b, 0xb7, - 0x87, 0x99, 0xd9, 0xbf, 0x55, 0x60, 0x8e, 0xeb, 0x1e, 0xaf, 0xf3, 0xe8, 0x03, 0xff, 0x46, 0xc2, - 0x92, 0x3e, 0x97, 0xe2, 0xac, 0x8a, 0xbc, 0x87, 0xd6, 0x94, 0x2c, 0xcf, 0xa1, 0x02, 0x74, 0x43, - 0xbe, 0x45, 0x2d, 0x98, 0xe5, 0xa5, 0x51, 0xa7, 0xa8, 0x2a, 0x7c, 0xa6, 0xf4, 0x85, 0xc1, 0xf5, - 0xe1, 0x6d, 0x7a, 0xb8, 0x49, 0x21, 0x9c, 0xf7, 0x91, 0xf8, 0x88, 0x88, 0xd0, 0x1a, 0x40, 0xc4, - 0x41, 0xa8, 0x20, 0xcf, 0xcb, 0x83, 0x30, 0x71, 0x01, 0x6b, 0x02, 0x1d, 0xbd, 0xa1, 0x91, 0x14, - 0xec, 0x78, 0xaf, 0x09, 0x24, 0x26, 0xf6, 0xf0, 0x5e, 0x25, 0x27, 0xf7, 0x4f, 0x14, 0xaa, 0x0f, - 0x4e, 0xcb, 0xea, 0x1a, 0x36, 0xd7, 0x87, 0xb3, 0x50, 0xeb, 0x86, 0x20, 0xf1, 0x88, 0xbe, 0x1a, - 0x41, 0x69, 0x5e, 0xd3, 0xa5, 0x43, 0xcd, 0xe7, 0x9b, 0x13, 0xd1, 0x14, 0x63, 0x16, 0x34, 0x3b, - 0x92, 0x05, 0x25, 0x64, 0x04, 0x7d, 0xb5, 0x0c, 0xa5, 0xa8, 0x79, 0xb2, 0x9b, 0xaa, 0xde, 0xf0, - 0x0c, 0x27, 0x70, 0x43, 0x47, 0xe0, 0x48, 0xb3, 0x7d, 0x95, 0xd6, 0xc9, 0x46, 0x86, 0x77, 0x63, - 0xb4, 0x01, 0xed, 0x93, 0xa9, 0xff, 0xab, 0x40, 0x99, 0xb2, 0xc2, 0x19, 0x59, 0x15, 0xf8, 0xe4, - 0xdc, 0xa4, 0xd6, 0x29, 0x4a, 0x5d, 0xeb, 0x93, 0xc5, 0x54, 0x35, 0x73, 0x14, 0x55, 0x7d, 0x0e, - 0xaa, 0xe1, 0x6f, 0x71, 0xed, 0xae, 0x84, 0x40, 0xbe, 0x7e, 0x17, 0xda, 0x4c, 0x86, 0x74, 0x09, - 0x2f, 0xaf, 0xa8, 0xf2, 0xed, 0xb6, 0x28, 0x67, 0x2d, 0x24, 0x51, 0x3f, 0x89, 0x4c, 0x1e, 0x45, - 0x38, 0xba, 0x75, 0xf8, 0x6a, 0xc2, 0x3a, 0x2c, 0xa6, 0x73, 0x91, 0x70, 0xb4, 0xc8, 0x9e, 0x3a, - 0xc6, 0xc2, 0x98, 0x7b, 0x6a, 0x5a, 0xad, 0x85, 0x87, 0xef, 0xa9, 0x45, 0x46, 0x22, 0x0a, 0xf5, - 0xa7, 0x0a, 0x2c, 0x70, 0x5f, 0x27, 0xd2, 0x95, 0x27, 0x20, 0x12, 0xf4, 0x75, 0x6e, 0xf1, 0xb3, - 0xd4, 0x27, 0x7b, 0x69, 0x98, 0x4f, 0x16, 0xf1, 0x29, 0x38, 0x65, 0x67, 0xa1, 0x74, 0x9b, 0x22, - 0xbd, 0xfb, 0x28, 0x40, 0x0d, 0x28, 0xec, 0x62, 0xcf, 0xb7, 0x5c, 0x87, 0xcf, 0xff, 0xf0, 0xf3, - 0xdc, 0x19, 0x28, 0x86, 0x97, 0xf5, 0x50, 0x01, 0xb2, 0x57, 0x6d, 0xbb, 0x3e, 0x81, 0x2a, 0x50, - 0x5c, 0xe7, 0x37, 0xd2, 0xea, 0xca, 0xb9, 0x77, 0x60, 0x46, 0xe2, 0xfb, 0xa1, 0x69, 0xa8, 0x5e, - 0x35, 0xe9, 0x26, 0xe1, 0x9e, 0x4b, 0x80, 0xf5, 0x09, 0x34, 0x0f, 0x48, 0xc3, 0x1d, 0x77, 0x97, - 0x22, 0x5e, 0xf7, 0xdc, 0x0e, 0x85, 0x2b, 0xe7, 0x5e, 0x86, 0x59, 0x19, 0xa7, 0xa8, 0x04, 0x39, - 0xda, 0xf3, 0xfa, 0x04, 0x02, 0xc8, 0x6b, 0x78, 0xd7, 0x7d, 0x80, 0xeb, 0xca, 0xca, 0x0f, 0xcf, - 0x43, 0x95, 0xf1, 0xce, 0xaf, 0x96, 0x23, 0x1d, 0xea, 0xc9, 0x07, 0x9c, 0xd0, 0x57, 0xe4, 0x87, - 0xd7, 0xf2, 0x77, 0x9e, 0x9a, 0xc3, 0x14, 0x47, 0x9d, 0x40, 0x1f, 0x42, 0x2d, 0xfe, 0xfa, 0x11, - 0x92, 0xc7, 0xe4, 0xa5, 0x4f, 0x24, 0x1d, 0x54, 0xb9, 0x0e, 0xd5, 0xd8, 0x1b, 0x46, 0x48, 0x3e, - 0x98, 0xb2, 0x77, 0x8e, 0x9a, 0xf2, 0x23, 0x15, 0xf1, 0x79, 0x21, 0xc6, 0x7d, 0xfc, 0x59, 0x91, - 0x14, 0xee, 0xa5, 0x6f, 0x8f, 0x1c, 0xc4, 0xbd, 0x01, 0xd3, 0x03, 0xaf, 0x7e, 0xa0, 0x97, 0x53, - 0x8c, 0x98, 0xfc, 0x75, 0x90, 0x83, 0x9a, 0xd8, 0x03, 0x34, 0xf8, 0x32, 0x0f, 0x5a, 0x96, 0x8f, - 0x40, 0xda, 0x03, 0x45, 0xcd, 0x0b, 0x23, 0xe3, 0x47, 0x82, 0xfb, 0x75, 0x05, 0x16, 0x52, 0x1e, - 0xe6, 0x40, 0x17, 0xd3, 0x4e, 0x2c, 0x87, 0x3c, 0x33, 0xd2, 0x7c, 0xed, 0x70, 0x44, 0x11, 0x23, - 0x0e, 0x4c, 0x25, 0x1e, 0xa9, 0x40, 0xe7, 0x53, 0x6f, 0xd6, 0x0e, 0x3e, 0xda, 0xd1, 0xfc, 0xca, - 0x68, 0xc8, 0x51, 0x7b, 0xf7, 0x61, 0x2a, 0xf1, 0x42, 0x43, 0x4a, 0x7b, 0xf2, 0x77, 0x1c, 0x0e, - 0x1a, 0xd0, 0x6f, 0x42, 0x35, 0xf6, 0x94, 0x42, 0x8a, 0xc6, 0xcb, 0x9e, 0x5b, 0x38, 0xa8, 0xea, - 0xfb, 0x50, 0x11, 0x5f, 0x3c, 0x40, 0x4b, 0x69, 0x73, 0x69, 0xa0, 0xe2, 0xc3, 0x4c, 0xa5, 0xfe, - 0x4d, 0xe5, 0x21, 0x53, 0x69, 0xe0, 0x72, 0xf7, 0xe8, 0x53, 0x49, 0xa8, 0x7f, 0xe8, 0x54, 0x3a, - 0x74, 0x13, 0xdf, 0x52, 0x68, 0xc8, 0x44, 0x72, 0x13, 0x1e, 0xad, 0xa4, 0xe9, 0x66, 0xfa, 0x9d, - 0xff, 0xe6, 0xc5, 0x43, 0xd1, 0x44, 0x52, 0x7c, 0x00, 0xb5, 0xf8, 0x7d, 0xef, 0x14, 0x29, 0x4a, - 0xaf, 0xc8, 0x37, 0xcf, 0x8f, 0x84, 0x1b, 0x35, 0xf6, 0x01, 0x94, 0x85, 0x37, 0x19, 0xd1, 0x8b, - 0x43, 0xf4, 0x58, 0x7c, 0xa0, 0xf0, 0x20, 0x49, 0xbe, 0x0f, 0xa5, 0xe8, 0x29, 0x45, 0x74, 0x36, - 0x55, 0x7f, 0x0f, 0x53, 0xe5, 0x26, 0x40, 0xff, 0x9d, 0x44, 0xf4, 0x82, 0xb4, 0xce, 0x81, 0x87, - 0x14, 0x0f, 0xaa, 0x34, 0xea, 0x3e, 0xbb, 0x46, 0x33, 0xac, 0xfb, 0xe2, 0xbd, 0xaf, 0x83, 0xaa, - 0xdd, 0x81, 0x6a, 0xec, 0xb6, 0x66, 0xda, 0x14, 0x96, 0x5c, 0xa2, 0x6d, 0x9e, 0x1b, 0x05, 0x35, - 0x1a, 0xbf, 0x1d, 0xa8, 0xc6, 0xee, 0xce, 0xa5, 0xb4, 0x24, 0xbb, 0x2a, 0x98, 0xd2, 0x92, 0xf4, - 0x2a, 0x9e, 0x3a, 0x81, 0x3e, 0x11, 0xae, 0xe9, 0xc5, 0xae, 0x42, 0xa2, 0x57, 0x87, 0xd6, 0x23, - 0xbb, 0x09, 0xda, 0x5c, 0x39, 0x0c, 0x49, 0xc4, 0x02, 0xd7, 0x2a, 0x26, 0xd2, 0x74, 0xad, 0x3a, - 0xcc, 0x48, 0x6d, 0x42, 0x9e, 0xdd, 0x86, 0x43, 0x6a, 0xca, 0xbd, 0x57, 0xe1, 0xaa, 0x5c, 0x53, - 0xbe, 0xfd, 0x88, 0x5f, 0x14, 0x63, 0x95, 0xb2, 0xc3, 0xed, 0x94, 0x4a, 0x63, 0x57, 0xa1, 0x46, - 0xad, 0x54, 0x83, 0x3c, 0xbb, 0xad, 0x91, 0x52, 0x69, 0xec, 0x06, 0x52, 0x73, 0x38, 0x0e, 0xdb, - 0xf3, 0x4e, 0xa0, 0x0d, 0xc8, 0xd1, 0x4c, 0x00, 0x74, 0x66, 0xd8, 0x45, 0x86, 0x61, 0x35, 0xc6, - 0xee, 0x3a, 0xa8, 0x13, 0xe8, 0x2e, 0xe4, 0x68, 0x50, 0x35, 0xa5, 0x46, 0xf1, 0x36, 0x42, 0x73, - 0x28, 0x4a, 0xc8, 0xa2, 0x09, 0x15, 0x31, 0x05, 0x39, 0x65, 0xc9, 0x92, 0x24, 0x69, 0x37, 0x47, - 0xc1, 0x0c, 0x5b, 0x61, 0xd3, 0xa8, 0x9f, 0x15, 0x91, 0x3e, 0x8d, 0x06, 0x32, 0x2e, 0xd2, 0xa7, - 0xd1, 0x60, 0x92, 0x85, 0x3a, 0x81, 0x7e, 0x4b, 0x81, 0x46, 0x5a, 0x5e, 0x2c, 0x4a, 0xf5, 0x80, - 0x86, 0x25, 0xf7, 0x36, 0x2f, 0x1d, 0x92, 0x2a, 0xe2, 0xe5, 0x63, 0x1a, 0x8b, 0x1d, 0xc8, 0x84, - 0xbd, 0x90, 0x56, 0x5f, 0x4a, 0x76, 0x67, 0xf3, 0x95, 0xd1, 0x09, 0xa2, 0xb6, 0xb7, 0xa0, 0x2c, - 0xc4, 0x81, 0x53, 0x2c, 0xef, 0x60, 0x00, 0x3b, 0x65, 0x54, 0x25, 0x21, 0x65, 0xa6, 0xde, 0x34, - 0x7d, 0x32, 0x45, 0x19, 0xc5, 0x6c, 0xcc, 0x14, 0xf5, 0x8e, 0x65, 0x5f, 0xaa, 0x13, 0x08, 0x43, - 0x45, 0xcc, 0xa5, 0x4c, 0xd1, 0x46, 0x49, 0x1a, 0x66, 0xf3, 0xa5, 0x11, 0x30, 0xa3, 0x66, 0x74, - 0x80, 0x7e, 0x2e, 0x63, 0xca, 0x5a, 0x37, 0x90, 0x4e, 0xd9, 0x7c, 0xf1, 0x40, 0x3c, 0x71, 0xd9, - 0x17, 0xb2, 0x13, 0x53, 0xa4, 0x3f, 0x98, 0xbf, 0x38, 0xc2, 0x5e, 0x64, 0x30, 0x03, 0x2e, 0x65, - 0x2f, 0x92, 0x9a, 0x6c, 0xd7, 0xbc, 0x30, 0x32, 0x7e, 0xd4, 0x9f, 0x87, 0x50, 0x4f, 0x66, 0x0c, - 0xa6, 0xec, 0x71, 0x53, 0xf2, 0x16, 0x9b, 0x2f, 0x8f, 0x88, 0x2d, 0xae, 0x87, 0x27, 0x06, 0x79, - 0xfa, 0x25, 0x2b, 0xd8, 0xa1, 0xc9, 0x6a, 0xa3, 0xf4, 0x5a, 0xcc, 0x8b, 0x1b, 0xa5, 0xd7, 0xb1, - 0x2c, 0x38, 0xbe, 0x78, 0xd1, 0x0c, 0x90, 0xb4, 0xc5, 0x4b, 0xcc, 0xbf, 0x4a, 0x59, 0x67, 0xe2, - 0xd9, 0x4a, 0xcc, 0xfd, 0x8c, 0x67, 0x96, 0xa0, 0x73, 0x23, 0xa5, 0x9f, 0x0c, 0x73, 0x3f, 0xe5, - 0xa9, 0x2a, 0x6c, 0xeb, 0x96, 0x48, 0x9c, 0x49, 0xd9, 0x4a, 0xc9, 0x33, 0x6f, 0x52, 0xb6, 0x6e, - 0x29, 0xb9, 0x38, 0x74, 0x62, 0xd5, 0x93, 0x59, 0x08, 0xc3, 0xcf, 0x42, 0x92, 0xd1, 0xe9, 0x83, - 0x8f, 0x2b, 0xea, 0xc9, 0x90, 0x7f, 0x4a, 0x03, 0x29, 0x99, 0x01, 0x23, 0x34, 0x90, 0x0c, 0x9c, - 0xa7, 0x34, 0x90, 0x12, 0x5f, 0x1f, 0xc1, 0x77, 0x8d, 0x05, 0xb1, 0x53, 0x96, 0x42, 0x59, 0xa0, - 0x3b, 0x65, 0x29, 0x94, 0xc6, 0xdf, 0x99, 0x47, 0xdf, 0x0f, 0x50, 0xa7, 0x58, 0xb9, 0x81, 0x08, - 0xf6, 0x41, 0xec, 0xdf, 0x85, 0x62, 0x18, 0x75, 0x46, 0xcf, 0xa7, 0xba, 0x88, 0x87, 0xa8, 0xf0, - 0x3e, 0x4c, 0x25, 0x4e, 0xf0, 0x52, 0x54, 0x54, 0x1e, 0x89, 0x3e, 0x78, 0x3c, 0xa1, 0x1f, 0xdb, - 0x4c, 0x11, 0xc2, 0x40, 0x7c, 0x38, 0xc5, 0xd4, 0x0f, 0x06, 0x49, 0xc5, 0x06, 0x08, 0x63, 0x43, - 0x1b, 0x10, 0xc2, 0x9a, 0x43, 0x1b, 0x10, 0x63, 0x7b, 0x7c, 0xbf, 0x1a, 0x0b, 0xe4, 0xa4, 0xed, - 0x57, 0x65, 0x61, 0xb4, 0xb4, 0xfd, 0xaa, 0x34, 0x32, 0xc4, 0xd4, 0x3f, 0x79, 0x1a, 0x9a, 0xa2, - 0xfe, 0x29, 0xc7, 0xd0, 0x07, 0x8d, 0xc7, 0x16, 0x94, 0x85, 0xb3, 0x74, 0x34, 0x4c, 0x0e, 0xe2, - 0x81, 0x7f, 0x8a, 0x5f, 0x22, 0x39, 0x96, 0x57, 0x27, 0x56, 0x7a, 0x50, 0xd9, 0xf0, 0xdc, 0x47, - 0xe1, 0xe3, 0x9f, 0x5f, 0x92, 0x57, 0x71, 0xa5, 0x05, 0x35, 0x86, 0xa0, 0xe3, 0x47, 0x81, 0xee, - 0x6e, 0x7d, 0x84, 0x4e, 0x2e, 0xb3, 0x7f, 0x6d, 0x58, 0x0e, 0xff, 0xb5, 0x61, 0xf9, 0xba, 0x65, - 0xe3, 0xbb, 0x3c, 0xfb, 0xf5, 0x3f, 0x0b, 0x43, 0xee, 0x5e, 0x46, 0xe7, 0xe3, 0x1a, 0xff, 0xe3, - 0x88, 0x77, 0x1f, 0x05, 0x77, 0xb7, 0x3e, 0x5a, 0x35, 0x3e, 0x7f, 0xab, 0x00, 0xb9, 0x95, 0xe5, - 0x57, 0x97, 0x5f, 0x81, 0x9a, 0x15, 0xa1, 0xb7, 0xbd, 0x6e, 0x6b, 0xb5, 0xcc, 0x88, 0x36, 0x48, - 0x3d, 0x1b, 0xca, 0x2f, 0x5f, 0x6c, 0x5b, 0xc1, 0x4e, 0x6f, 0x8b, 0x0c, 0xc1, 0x05, 0x86, 0xf6, - 0xb2, 0xe5, 0xf2, 0x5f, 0x17, 0x2c, 0x27, 0xc0, 0x9e, 0x63, 0xd8, 0xec, 0x0f, 0x25, 0x38, 0xb4, - 0xbb, 0xf5, 0x87, 0x8a, 0xb2, 0x95, 0xa7, 0xa0, 0x8b, 0x3f, 0x0f, 0x00, 0x00, 0xff, 0xff, 0xe9, - 0xd6, 0x0b, 0x41, 0xb2, 0x62, 0x00, 0x00, + 0xac, 0xbc, 0x14, 0x56, 0xfe, 0x85, 0x02, 0xcf, 0xac, 0x51, 0x97, 0xb7, 0x75, 0x4c, 0x2c, 0x45, + 0x85, 0x4a, 0x1f, 0xb2, 0xbe, 0x46, 0x65, 0x9e, 0xd5, 0x62, 0xb0, 0xc4, 0xa8, 0xe4, 0x52, 0x47, + 0xe5, 0x93, 0x1c, 0x34, 0x65, 0xbd, 0x1b, 0x47, 0x8e, 0x5f, 0x8f, 0x2c, 0x39, 0x43, 0x89, 0x12, + 0x76, 0xc8, 0x67, 0x97, 0x7e, 0x6b, 0x9b, 0x14, 0x10, 0x19, 0x7c, 0xb2, 0x7b, 0x59, 0x49, 0xf7, + 0x56, 0x60, 0x6e, 0xd7, 0xf2, 0x82, 0x9e, 0x61, 0xeb, 0xad, 0x1d, 0xc3, 0x71, 0xb0, 0x4d, 0x05, + 0x46, 0x5c, 0x5c, 0x76, 0xa9, 0xa4, 0xcd, 0xf0, 0xc2, 0x6b, 0xac, 0x8c, 0x48, 0xcd, 0x47, 0xaf, + 0xc1, 0x7c, 0x77, 0x67, 0xdf, 0xb7, 0x5a, 0x03, 0x44, 0x39, 0x4a, 0x34, 0x1b, 0x96, 0xc6, 0xa8, + 0xce, 0xc3, 0x74, 0x8b, 0x7a, 0x49, 0x53, 0x27, 0xe2, 0x63, 0xf2, 0xcc, 0x53, 0x79, 0xd6, 0x79, + 0xc1, 0xbd, 0x10, 0x4e, 0xd8, 0x0a, 0x91, 0x7b, 0x41, 0x4b, 0x20, 0x28, 0x50, 0x82, 0x19, 0x5e, + 0xf8, 0x41, 0xd0, 0xea, 0xd3, 0xc4, 0xfd, 0x5b, 0x31, 0xe9, 0xdf, 0x1a, 0x50, 0xa0, 0xfe, 0x1a, + 0xfb, 0x8d, 0x12, 0x65, 0x33, 0xfc, 0x44, 0xeb, 0x30, 0xe5, 0x07, 0x86, 0x17, 0xe8, 0x5d, 0xd7, + 0xb7, 0x88, 0x5c, 0xfc, 0x06, 0x2c, 0x66, 0x97, 0xca, 0x2b, 0x8b, 0xd2, 0x41, 0x7a, 0x0f, 0xef, + 0xaf, 0x19, 0x81, 0xb1, 0x61, 0x58, 0x9e, 0x56, 0xa3, 0x84, 0x1b, 0x21, 0x9d, 0xdc, 0x89, 0x96, + 0xc7, 0x72, 0xa2, 0x32, 0x75, 0xae, 0xc8, 0xd4, 0x59, 0xfd, 0x6b, 0x05, 0xe6, 0x6e, 0xb9, 0x86, + 0x79, 0x3c, 0x8c, 0xeb, 0x2c, 0xd4, 0x3c, 0xdc, 0xb5, 0xad, 0x96, 0x41, 0xc6, 0x63, 0x0b, 0x7b, + 0xd4, 0xbc, 0x72, 0x5a, 0x95, 0x43, 0xef, 0x50, 0x20, 0x33, 0xa0, 0x5c, 0x23, 0xab, 0x7e, 0xa6, + 0x40, 0x43, 0xc3, 0x36, 0x36, 0x7c, 0x7c, 0x8c, 0x66, 0x89, 0x7c, 0x23, 0x4b, 0x02, 0x90, 0x67, + 0x6f, 0xe0, 0x40, 0xb0, 0xb3, 0xc0, 0x08, 0x2c, 0x3f, 0xb0, 0x5a, 0xfe, 0x13, 0xe7, 0x8f, 0xb8, + 0x9e, 0xef, 0x29, 0x70, 0x3a, 0x95, 0xbf, 0x71, 0xfc, 0xcf, 0xeb, 0x90, 0x23, 0xbf, 0xfc, 0x46, + 0x86, 0x9a, 0xc3, 0x99, 0x34, 0x73, 0xf8, 0x06, 0xf1, 0xef, 0xd4, 0x1e, 0x18, 0xbe, 0xfa, 0xef, + 0x0a, 0xcc, 0x6f, 0xee, 0xb8, 0x7b, 0x7d, 0x96, 0x1e, 0x87, 0xa4, 0xe2, 0xae, 0x39, 0x9b, 0x70, + 0xcd, 0xe8, 0x55, 0x98, 0x0c, 0xf6, 0xbb, 0x98, 0xaa, 0x5d, 0x6d, 0xe5, 0xd4, 0xb2, 0x24, 0x5e, + 0x5f, 0x26, 0x4c, 0xde, 0xdb, 0xef, 0x62, 0x8d, 0xa2, 0xa2, 0x97, 0xa0, 0x9e, 0x90, 0x7d, 0xe8, + 0xd3, 0xa6, 0xe2, 0xc2, 0xf7, 0xaf, 0xe4, 0x3e, 0x7f, 0x2b, 0x53, 0x9f, 0x54, 0xff, 0x33, 0x03, + 0x0b, 0x03, 0x3d, 0x1d, 0x47, 0xe6, 0x32, 0x16, 0x32, 0x52, 0x16, 0x88, 0x85, 0x09, 0xa8, 0x96, + 0x49, 0xe2, 0xe6, 0xec, 0x52, 0x56, 0xab, 0x0a, 0x1e, 0xde, 0xf4, 0xd1, 0xcb, 0x80, 0x06, 0x1c, + 0x2f, 0xf3, 0xef, 0x93, 0xda, 0x74, 0xd2, 0xf3, 0x52, 0xef, 0x2e, 0x75, 0xbd, 0x4c, 0x12, 0x93, + 0xda, 0xac, 0xc4, 0xf7, 0xfa, 0xe8, 0x55, 0x98, 0xb5, 0x9c, 0xdb, 0xb8, 0xe3, 0x7a, 0xfb, 0x7a, + 0x17, 0x7b, 0x2d, 0xec, 0x04, 0x46, 0x1b, 0xfb, 0x8d, 0x3c, 0xe5, 0x68, 0x26, 0x2c, 0xdb, 0xe8, + 0x17, 0xa1, 0xcb, 0xb0, 0xf0, 0xb0, 0x87, 0xbd, 0x7d, 0xdd, 0xc7, 0xde, 0xae, 0xd5, 0xc2, 0xba, + 0xb1, 0x6b, 0x58, 0xb6, 0xb1, 0x65, 0xe3, 0x46, 0x61, 0x31, 0xbb, 0x54, 0xd4, 0xe6, 0x68, 0xf1, + 0x26, 0x2b, 0xbd, 0x1a, 0x16, 0xaa, 0x3f, 0x55, 0x60, 0x9e, 0xc5, 0xdb, 0x1b, 0x86, 0x17, 0x58, + 0xc7, 0xc0, 0xcf, 0x75, 0x43, 0x3e, 0x18, 0x1e, 0x5b, 0x1d, 0x54, 0x23, 0x28, 0x75, 0xce, 0x3f, + 0x56, 0x60, 0x96, 0x44, 0xc0, 0x4f, 0x13, 0xcf, 0x7f, 0xa1, 0xc0, 0xcc, 0x4d, 0xc3, 0x7f, 0x9a, + 0x58, 0xfe, 0x82, 0xcf, 0x81, 0x11, 0xcf, 0x4f, 0x74, 0xc1, 0xf8, 0x22, 0x4c, 0xc5, 0x99, 0x0e, + 0xe3, 0xaa, 0x5a, 0x8c, 0x6b, 0x5f, 0x32, 0x59, 0xe6, 0x24, 0x93, 0xa5, 0xfa, 0x97, 0xfd, 0x39, + 0xf2, 0xe9, 0xea, 0xa0, 0xfa, 0x57, 0x0a, 0x9c, 0xba, 0x81, 0x83, 0x88, 0xeb, 0x63, 0x31, 0x85, + 0x8e, 0xaa, 0x54, 0xdf, 0x65, 0x01, 0x80, 0x94, 0xf9, 0x27, 0x32, 0xbf, 0xfe, 0x56, 0x06, 0xe6, + 0xc8, 0xac, 0x73, 0x3c, 0x94, 0x60, 0x94, 0x65, 0x94, 0x44, 0x51, 0x72, 0x52, 0x4b, 0x08, 0x67, + 0xed, 0xfc, 0xc8, 0xb3, 0xb6, 0xfa, 0x93, 0x0c, 0x8b, 0x36, 0x44, 0x69, 0x8c, 0x33, 0x2c, 0x12, + 0x5e, 0x33, 0x52, 0x5e, 0x55, 0xa8, 0x44, 0x90, 0xf5, 0xb5, 0x70, 0xfa, 0x8d, 0xc1, 0x8e, 0xeb, + 0xec, 0xab, 0x7e, 0xaa, 0xc0, 0x7c, 0xb8, 0x5e, 0xdd, 0xc4, 0xed, 0x0e, 0x76, 0x82, 0xa3, 0xeb, + 0x50, 0x52, 0x03, 0x32, 0x12, 0x0d, 0x38, 0x09, 0x25, 0x9f, 0xb5, 0x13, 0x2d, 0x45, 0xfb, 0x00, + 0xf5, 0x6f, 0x15, 0x58, 0x18, 0x60, 0x67, 0x9c, 0x41, 0x6c, 0x40, 0xc1, 0x72, 0x4c, 0xfc, 0x28, + 0xe2, 0x26, 0xfc, 0x24, 0x25, 0x5b, 0x3d, 0xcb, 0x36, 0x23, 0x36, 0xc2, 0x4f, 0x74, 0x06, 0x2a, + 0xd8, 0x21, 0x31, 0x86, 0x4e, 0x71, 0xa9, 0x22, 0x17, 0xb5, 0x32, 0x83, 0xad, 0x13, 0x10, 0x21, + 0xde, 0xb6, 0x30, 0x25, 0xce, 0x31, 0x62, 0xfe, 0xa9, 0xfe, 0xb6, 0x02, 0x33, 0x44, 0x0b, 0x39, + 0xf7, 0xfe, 0xe3, 0x95, 0xe6, 0x22, 0x94, 0x05, 0x35, 0xe3, 0x1d, 0x11, 0x41, 0xea, 0x03, 0x98, + 0x8d, 0xb3, 0x33, 0x8e, 0x34, 0x9f, 0x05, 0x88, 0xc6, 0x8a, 0x59, 0x43, 0x56, 0x13, 0x20, 0xea, + 0xa7, 0x99, 0x70, 0xe7, 0x9a, 0x8a, 0xe9, 0x09, 0x6f, 0xa3, 0xd1, 0x21, 0x11, 0xfd, 0x79, 0x89, + 0x42, 0x68, 0xf1, 0x1a, 0x54, 0xf0, 0xa3, 0xc0, 0x33, 0xf4, 0xae, 0xe1, 0x19, 0x1d, 0x66, 0x56, + 0x23, 0xb9, 0xde, 0x32, 0x25, 0xdb, 0xa0, 0x54, 0xa4, 0x11, 0xaa, 0x22, 0xac, 0x91, 0x3c, 0x6b, + 0x84, 0x42, 0xe8, 0x84, 0xf1, 0x0f, 0x24, 0xd8, 0xe3, 0xda, 0x7c, 0xdc, 0x05, 0x12, 0xef, 0x4a, + 0x2e, 0xd9, 0x95, 0x3f, 0x51, 0xa0, 0x4e, 0xbb, 0xb0, 0xc6, 0x4f, 0x2b, 0x2c, 0xd7, 0x49, 0xd0, + 0x28, 0x09, 0x9a, 0x21, 0xb6, 0xf7, 0x35, 0xc8, 0x73, 0xb9, 0x67, 0x47, 0x95, 0x3b, 0x27, 0x38, + 0xa0, 0x1b, 0xea, 0x1f, 0x2a, 0x30, 0x97, 0x10, 0xf9, 0x38, 0x0a, 0x7f, 0x0f, 0x10, 0xeb, 0xa1, + 0xd9, 0xef, 0x76, 0x38, 0x4f, 0x9f, 0x95, 0x4e, 0x4a, 0x49, 0x21, 0x69, 0xd3, 0x56, 0x02, 0xe2, + 0xab, 0x3f, 0x57, 0xe0, 0xe4, 0x0d, 0x1c, 0x50, 0xd4, 0x55, 0xe2, 0x74, 0x36, 0x3c, 0xb7, 0xed, + 0x61, 0xdf, 0x7f, 0x7a, 0xf5, 0xe3, 0x77, 0x59, 0x60, 0x27, 0xeb, 0xd2, 0x38, 0xf2, 0x3f, 0x03, + 0x15, 0xda, 0x06, 0x36, 0x75, 0xcf, 0xdd, 0xf3, 0xb9, 0x1e, 0x95, 0x39, 0x4c, 0x73, 0xf7, 0xa8, + 0x42, 0x04, 0x6e, 0x60, 0xd8, 0x0c, 0x81, 0xcf, 0x28, 0x14, 0x42, 0x8a, 0xa9, 0x0d, 0x86, 0x8c, + 0x91, 0xca, 0xf1, 0xd3, 0x2b, 0xe3, 0x3f, 0x56, 0x60, 0x2e, 0xd1, 0x95, 0x71, 0x64, 0x7b, 0x89, + 0x85, 0x9d, 0xac, 0x33, 0xb5, 0x95, 0xd3, 0x52, 0x1a, 0xa1, 0x31, 0x86, 0x8d, 0x4e, 0x43, 0x79, + 0xdb, 0xb0, 0x6c, 0xdd, 0xc3, 0x86, 0xef, 0x3a, 0xbc, 0xa3, 0x40, 0x40, 0x1a, 0x85, 0xa8, 0x3f, + 0x53, 0xd8, 0xf1, 0xe0, 0x53, 0xee, 0xf1, 0xfe, 0x28, 0x03, 0xd5, 0x75, 0xc7, 0xc7, 0x5e, 0x70, + 0xfc, 0x97, 0x26, 0xe8, 0x6d, 0x28, 0xd3, 0x8e, 0xf9, 0xba, 0x69, 0x04, 0x06, 0x9f, 0xcd, 0x9e, + 0x95, 0x9e, 0x13, 0x5c, 0x27, 0x78, 0x6b, 0x46, 0x60, 0x68, 0x4c, 0x3a, 0x3e, 0xf9, 0x8d, 0x4e, + 0x40, 0x69, 0xc7, 0xf0, 0x77, 0xf4, 0x07, 0x78, 0x9f, 0xc5, 0x8b, 0x55, 0xad, 0x48, 0x00, 0xef, + 0xe1, 0x7d, 0x1f, 0x3d, 0x03, 0x45, 0xa7, 0xd7, 0x61, 0x06, 0x56, 0x58, 0x54, 0x96, 0xaa, 0x5a, + 0xc1, 0xe9, 0x75, 0xa8, 0x79, 0xfd, 0x63, 0x06, 0x6a, 0xb7, 0x7b, 0x64, 0x21, 0x44, 0x4f, 0x39, + 0x7a, 0x76, 0x70, 0x34, 0x65, 0x3c, 0x07, 0x59, 0x16, 0x52, 0x10, 0x8a, 0x86, 0x94, 0xf1, 0xf5, + 0x35, 0x5f, 0x23, 0x48, 0x74, 0x87, 0xbf, 0xd7, 0x6a, 0xf1, 0xe8, 0x2c, 0x4b, 0x99, 0x2d, 0x11, + 0x08, 0x8b, 0xcd, 0x4e, 0x40, 0x09, 0x7b, 0x5e, 0x14, 0xbb, 0xd1, 0xae, 0x60, 0xcf, 0x63, 0x85, + 0x2a, 0x54, 0x8c, 0xd6, 0x03, 0xc7, 0xdd, 0xb3, 0xb1, 0xd9, 0xc6, 0x26, 0x1d, 0xf6, 0xa2, 0x16, + 0x83, 0x31, 0xc5, 0x20, 0x03, 0xaf, 0xb7, 0x9c, 0x80, 0xce, 0xea, 0x59, 0xa2, 0x18, 0x04, 0x72, + 0xcd, 0x09, 0x48, 0xb1, 0x89, 0x6d, 0x1c, 0x60, 0x5a, 0x5c, 0x60, 0xc5, 0x0c, 0xc2, 0x8b, 0x7b, + 0xdd, 0x88, 0xba, 0xc8, 0x8a, 0x19, 0x84, 0x14, 0x9f, 0x84, 0x52, 0xff, 0x18, 0xa3, 0xd4, 0xdf, + 0xac, 0xa4, 0x00, 0xf5, 0x0b, 0x05, 0xaa, 0x6b, 0xb4, 0xaa, 0xa7, 0x40, 0xe9, 0x10, 0x4c, 0xe2, + 0x47, 0x5d, 0x8f, 0x9b, 0x0e, 0xfd, 0x3d, 0x54, 0x8f, 0xd4, 0xff, 0xcb, 0x42, 0x75, 0x13, 0x1b, + 0x5e, 0x6b, 0xe7, 0xa9, 0xd8, 0x8d, 0xa9, 0x43, 0xd6, 0xf4, 0x6d, 0xde, 0x3d, 0xf2, 0x13, 0x9d, + 0x87, 0xe9, 0xae, 0x6d, 0xb4, 0xf0, 0x8e, 0x6b, 0x9b, 0xd8, 0xd3, 0xdb, 0x9e, 0xdb, 0x63, 0x87, + 0x57, 0x15, 0xad, 0x2e, 0x14, 0xdc, 0x20, 0x70, 0xf4, 0x3a, 0x14, 0x4d, 0xdf, 0xd6, 0xe9, 0x32, + 0xb6, 0x40, 0x5d, 0xac, 0xbc, 0x7f, 0x6b, 0xbe, 0x4d, 0x57, 0xb1, 0x05, 0x93, 0xfd, 0x40, 0xcf, + 0x41, 0xd5, 0xed, 0x05, 0xdd, 0x5e, 0xa0, 0x33, 0x03, 0x6d, 0x14, 0x29, 0x7b, 0x15, 0x06, 0xa4, + 0xf6, 0xeb, 0xa3, 0xeb, 0x50, 0xf5, 0xa9, 0x28, 0xc3, 0x08, 0xb6, 0x34, 0x6a, 0x24, 0x55, 0x61, + 0x74, 0x3c, 0x84, 0x7d, 0x09, 0xea, 0x81, 0x67, 0xec, 0x62, 0x5b, 0x38, 0x5d, 0x03, 0xaa, 0x96, + 0x53, 0x0c, 0xde, 0x3f, 0x59, 0xbb, 0x00, 0x33, 0xed, 0x9e, 0xe1, 0x19, 0x4e, 0x80, 0xb1, 0x80, + 0x5d, 0xa6, 0xd8, 0x28, 0x2a, 0xea, 0x13, 0xd4, 0x20, 0xe3, 0x3c, 0xa4, 0xa7, 0x54, 0x59, 0x2d, + 0xe3, 0x3c, 0x54, 0xdf, 0x83, 0xc9, 0x9b, 0x56, 0x40, 0x05, 0x4b, 0x8c, 0x5d, 0xa1, 0xeb, 0x07, + 0x6a, 0xd2, 0xcf, 0x40, 0xd1, 0x73, 0xf7, 0x98, 0xf3, 0x22, 0xd1, 0x55, 0x45, 0x2b, 0x78, 0xee, + 0x1e, 0xf5, 0x4c, 0x34, 0x8f, 0xc1, 0xf5, 0x30, 0x8b, 0x15, 0x33, 0x1a, 0xff, 0x52, 0xff, 0x5c, + 0xe9, 0x2b, 0x13, 0xf1, 0x3b, 0xfe, 0xd1, 0x1c, 0xcf, 0xdb, 0x50, 0xf0, 0x18, 0xfd, 0xd0, 0xd3, + 0x55, 0xb1, 0x25, 0xea, 0x3c, 0x43, 0xaa, 0x91, 0xf5, 0x4e, 0xfd, 0x8e, 0x02, 0x95, 0xeb, 0x76, + 0xcf, 0x7f, 0x1c, 0xca, 0x2f, 0x3b, 0x2e, 0xc8, 0x4a, 0x8f, 0x0b, 0xd4, 0xef, 0x67, 0xa0, 0xca, + 0xd9, 0x18, 0x27, 0x7a, 0x48, 0x65, 0x65, 0x13, 0xca, 0xa4, 0x49, 0xdd, 0xc7, 0xed, 0x70, 0x33, + 0xa4, 0xbc, 0xb2, 0x22, 0x8d, 0x95, 0x63, 0x6c, 0xd0, 0x03, 0xec, 0x4d, 0x4a, 0xf4, 0xae, 0x13, + 0x78, 0xfb, 0x1a, 0xb4, 0x22, 0x40, 0xf3, 0x3e, 0x4c, 0x25, 0x8a, 0x89, 0x12, 0x3d, 0xc0, 0xfb, + 0x7c, 0xd5, 0x41, 0x7e, 0xa2, 0xd7, 0xc4, 0x7c, 0x83, 0xb4, 0xe9, 0xef, 0x96, 0xeb, 0xb4, 0xaf, + 0x7a, 0x9e, 0xb1, 0xcf, 0xf3, 0x11, 0xae, 0x64, 0xbe, 0xaa, 0xa8, 0x7f, 0x97, 0x81, 0xca, 0xfb, + 0x3d, 0xec, 0xed, 0x3f, 0x49, 0xbf, 0x14, 0xba, 0xd3, 0x49, 0xc1, 0x9d, 0x0e, 0xb8, 0x82, 0x9c, + 0xc4, 0x15, 0x48, 0x1c, 0x5a, 0x5e, 0xea, 0xd0, 0x64, 0xb6, 0x5e, 0x38, 0x94, 0xad, 0x17, 0xd3, + 0x6c, 0x5d, 0xfd, 0x33, 0x25, 0x12, 0xe1, 0x58, 0xd6, 0x18, 0x8b, 0x63, 0x32, 0x87, 0x8e, 0x63, + 0x46, 0xb6, 0xc6, 0x1f, 0x2b, 0x50, 0xfa, 0x06, 0x6e, 0x05, 0xae, 0x47, 0xfc, 0x8f, 0x84, 0x4c, + 0x19, 0x21, 0xa6, 0xcc, 0x24, 0x63, 0xca, 0x8b, 0x50, 0xb4, 0x4c, 0xdd, 0x20, 0xfa, 0x45, 0xdb, + 0x1d, 0x16, 0xcb, 0x14, 0x2c, 0x93, 0x2a, 0xe2, 0xe8, 0xbb, 0xe7, 0x9f, 0x29, 0x50, 0x61, 0x3c, + 0xfb, 0x8c, 0xf2, 0x0d, 0xa1, 0x39, 0x45, 0xa6, 0xf4, 0xfc, 0x23, 0xea, 0xe8, 0xcd, 0x89, 0x7e, + 0xb3, 0x57, 0x01, 0x88, 0x90, 0x39, 0x39, 0xb3, 0x99, 0x45, 0x29, 0xb7, 0x8c, 0x9c, 0x0a, 0xfc, + 0xe6, 0x84, 0x56, 0x22, 0x54, 0xb4, 0x8a, 0xd5, 0x02, 0xe4, 0x28, 0xb5, 0xfa, 0xbf, 0x0a, 0xcc, + 0x5c, 0x33, 0xec, 0xd6, 0x9a, 0xe5, 0x07, 0x86, 0xd3, 0x1a, 0x23, 0x7a, 0xb9, 0x02, 0x05, 0xb7, + 0xab, 0xdb, 0x78, 0x3b, 0xe0, 0x2c, 0x9d, 0x19, 0xd2, 0x23, 0x26, 0x06, 0x2d, 0xef, 0x76, 0x6f, + 0xe1, 0xed, 0x00, 0xbd, 0x09, 0x45, 0xb7, 0xab, 0x7b, 0x56, 0x7b, 0x27, 0xe0, 0xd2, 0x1f, 0x81, + 0xb8, 0xe0, 0x76, 0x35, 0x42, 0x21, 0x6c, 0x4a, 0x4c, 0x1e, 0x72, 0x53, 0x42, 0xfd, 0x97, 0x81, + 0xee, 0x8f, 0x61, 0x03, 0x57, 0xa0, 0x68, 0x39, 0x81, 0x6e, 0x5a, 0x7e, 0x28, 0x82, 0x53, 0x72, + 0x1d, 0x72, 0x02, 0xda, 0x03, 0x3a, 0xa6, 0x4e, 0x40, 0xda, 0x46, 0xef, 0x00, 0x6c, 0xdb, 0xae, + 0xc1, 0xa9, 0x99, 0x0c, 0x4e, 0xcb, 0xcd, 0x87, 0xa0, 0x85, 0xf4, 0x25, 0x4a, 0x44, 0x6a, 0xe8, + 0x0f, 0xe9, 0x3f, 0x2b, 0x30, 0xb7, 0x81, 0x3d, 0x96, 0x84, 0x12, 0xf0, 0xfd, 0xc3, 0x75, 0x67, + 0xdb, 0x8d, 0x6f, 0xe1, 0x2a, 0x89, 0x2d, 0xdc, 0x5f, 0xcc, 0xb6, 0x65, 0x6c, 0xc9, 0xc1, 0x0e, + 0x12, 0xc2, 0x25, 0x47, 0x78, 0x5c, 0xc2, 0x96, 0x6c, 0xb5, 0x94, 0x61, 0xe2, 0xfc, 0x8a, 0x2b, + 0x57, 0xf5, 0x77, 0x58, 0x82, 0x84, 0xb4, 0x53, 0x47, 0x57, 0xd8, 0x79, 0xe0, 0x9e, 0x3e, 0xe1, + 0xf7, 0x5f, 0x80, 0x84, 0xef, 0x48, 0x71, 0x44, 0x3f, 0x54, 0x60, 0x31, 0x9d, 0xab, 0x71, 0xa6, + 0xe8, 0x77, 0x20, 0x67, 0x39, 0xdb, 0x6e, 0xb8, 0x5f, 0x75, 0x4e, 0x6a, 0x0b, 0xf2, 0x76, 0x19, + 0xa1, 0xfa, 0xf3, 0x0c, 0xd4, 0xdf, 0x67, 0xa7, 0xef, 0x5f, 0xfa, 0xf0, 0x77, 0x70, 0x47, 0xf7, + 0xad, 0x8f, 0x71, 0x38, 0xfc, 0x1d, 0xdc, 0xd9, 0xb4, 0x3e, 0xc6, 0x31, 0xcd, 0xc8, 0xc5, 0x35, + 0x63, 0xf8, 0x76, 0xac, 0xb8, 0x1f, 0x59, 0x88, 0xef, 0x47, 0xce, 0x43, 0xde, 0x71, 0x4d, 0xbc, + 0xbe, 0xc6, 0xd7, 0x6b, 0xfc, 0xab, 0xaf, 0x6a, 0xa5, 0xc3, 0xa9, 0x1a, 0x69, 0x8a, 0x56, 0x61, + 0xb2, 0x1c, 0x32, 0xc2, 0x23, 0xfb, 0x54, 0xbf, 0xab, 0x40, 0xf3, 0x06, 0x0e, 0x92, 0x52, 0x7d, + 0x72, 0xfa, 0xf7, 0x3d, 0x05, 0x4e, 0x48, 0x19, 0x1a, 0x47, 0xf5, 0xde, 0x88, 0xab, 0x9e, 0x7c, + 0xab, 0x74, 0xa0, 0x49, 0xae, 0x75, 0xaf, 0x42, 0x65, 0xad, 0xd7, 0xe9, 0x44, 0xc1, 0xd8, 0x19, + 0xa8, 0x78, 0xec, 0x27, 0x5b, 0x4c, 0xb1, 0x99, 0xb9, 0xcc, 0x61, 0x64, 0xc9, 0xa4, 0x9e, 0x87, + 0x2a, 0x27, 0xe1, 0x5c, 0x37, 0xa1, 0xe8, 0xf1, 0xdf, 0x1c, 0x3f, 0xfa, 0x56, 0xe7, 0x60, 0x46, + 0xc3, 0x6d, 0xa2, 0xf4, 0xde, 0x2d, 0xcb, 0x79, 0xc0, 0x9b, 0x51, 0xbf, 0xad, 0xc0, 0x6c, 0x1c, + 0xce, 0xeb, 0xba, 0x0c, 0x05, 0xc3, 0x34, 0x3d, 0xec, 0xfb, 0x43, 0x87, 0xe5, 0x2a, 0xc3, 0xd1, + 0x42, 0x64, 0x41, 0x72, 0x99, 0x91, 0x25, 0xa7, 0xea, 0x30, 0x7d, 0x03, 0x07, 0xb7, 0x71, 0xe0, + 0x8d, 0x75, 0x28, 0xde, 0x20, 0xcb, 0x1a, 0x4a, 0xcc, 0xd5, 0x22, 0xfc, 0x54, 0x3f, 0x55, 0x00, + 0x89, 0x2d, 0x8c, 0x33, 0xcc, 0xa2, 0x94, 0x33, 0x71, 0x29, 0xb3, 0xb4, 0xa4, 0x4e, 0xd7, 0x75, + 0xb0, 0x13, 0x88, 0x81, 0x58, 0x35, 0x82, 0x86, 0x99, 0x1a, 0xe8, 0x96, 0x6b, 0x98, 0xab, 0x86, + 0x3d, 0x5e, 0xe0, 0x70, 0x0a, 0xc0, 0xf7, 0x5a, 0x3a, 0xb7, 0xe3, 0x0c, 0xf7, 0x4b, 0x5e, 0xeb, + 0x0e, 0x33, 0xe5, 0xd3, 0x50, 0x36, 0xfd, 0x80, 0x17, 0x87, 0x67, 0xb4, 0x60, 0xfa, 0x01, 0x2b, + 0xa7, 0x89, 0xa9, 0x3e, 0x36, 0x6c, 0x6c, 0xea, 0xc2, 0x11, 0xd7, 0x24, 0x45, 0xab, 0xb3, 0x82, + 0xcd, 0x08, 0x2e, 0x31, 0xae, 0x9c, 0xd4, 0xb8, 0xee, 0xc3, 0xc2, 0x6d, 0xc3, 0xe9, 0x19, 0xf6, + 0x35, 0xb7, 0xd3, 0x35, 0x62, 0xb9, 0x8c, 0x49, 0x47, 0xa9, 0x48, 0x1c, 0xe5, 0xb3, 0x2c, 0xb5, + 0x8d, 0x05, 0xe7, 0xb4, 0x4f, 0x93, 0x9a, 0x00, 0x51, 0x7d, 0x68, 0x0c, 0x56, 0x3f, 0xce, 0x80, + 0x52, 0xa6, 0xc2, 0xaa, 0x44, 0xef, 0xdd, 0x87, 0xa9, 0x6f, 0xc3, 0x33, 0x34, 0xcd, 0x30, 0x04, + 0xc5, 0x76, 0xd5, 0x93, 0x15, 0x28, 0x92, 0x0a, 0x7e, 0x3d, 0x43, 0x5d, 0xe0, 0x40, 0x0d, 0xe3, + 0x30, 0x7e, 0x25, 0xbe, 0x99, 0xfd, 0x7c, 0x4a, 0x96, 0x6d, 0xbc, 0x45, 0xee, 0xac, 0x97, 0x60, + 0x0a, 0x3f, 0xc2, 0xad, 0x5e, 0x60, 0x39, 0xed, 0x0d, 0xdb, 0x70, 0xee, 0xb8, 0x7c, 0x4a, 0x4a, + 0x82, 0xd1, 0xf3, 0x50, 0x25, 0xd2, 0x77, 0x7b, 0x01, 0xc7, 0x63, 0x73, 0x53, 0x1c, 0x48, 0xea, + 0x23, 0xfd, 0xb5, 0x71, 0x80, 0x4d, 0x8e, 0xc7, 0x26, 0xaa, 0x24, 0x78, 0x40, 0x94, 0x04, 0xec, + 0x1f, 0x46, 0x94, 0xff, 0xaa, 0x24, 0x44, 0xc9, 0x6b, 0x78, 0x52, 0xa2, 0xbc, 0x09, 0xd0, 0xc1, + 0x5e, 0x1b, 0xaf, 0x53, 0xe7, 0xcf, 0xd6, 0xfe, 0x4b, 0x52, 0xe7, 0xdf, 0xaf, 0xe0, 0x76, 0x48, + 0xa0, 0x09, 0xb4, 0xea, 0x0d, 0x98, 0x91, 0xa0, 0x10, 0xbf, 0xe6, 0xbb, 0x3d, 0xaf, 0x85, 0xc3, + 0xed, 0xa3, 0xf0, 0x93, 0xcc, 0x83, 0x81, 0xe1, 0xb5, 0x71, 0xc0, 0x95, 0x96, 0x7f, 0xa9, 0x97, + 0xe9, 0xf9, 0x0f, 0xdd, 0x6a, 0x88, 0x69, 0x6a, 0xfc, 0x2c, 0x5b, 0x19, 0x38, 0xcb, 0xde, 0xa6, + 0x87, 0x2d, 0x22, 0xdd, 0x98, 0x79, 0x08, 0xdb, 0xa4, 0x2a, 0x6c, 0xf2, 0xab, 0x16, 0xe1, 0xa7, + 0xfa, 0xdf, 0x0a, 0x54, 0xd7, 0x3b, 0x5d, 0xb7, 0x7f, 0xce, 0x30, 0xf2, 0x62, 0x74, 0x70, 0x9f, + 0x36, 0x23, 0xdb, 0xa7, 0x7d, 0x0e, 0xaa, 0xf1, 0xfc, 0x7c, 0xb6, 0x33, 0x54, 0x69, 0x89, 0x79, + 0xf9, 0x27, 0xa0, 0xe4, 0xb9, 0x7b, 0x3a, 0x71, 0xa5, 0x26, 0xcf, 0x78, 0x28, 0x7a, 0xee, 0x1e, + 0x71, 0xb0, 0x26, 0x9a, 0x85, 0xdc, 0xb6, 0x65, 0x47, 0xc9, 0x3a, 0xec, 0x03, 0xbd, 0x41, 0x96, + 0x6a, 0xec, 0x44, 0x34, 0x3f, 0xea, 0x8a, 0x29, 0xa4, 0x50, 0x3f, 0x84, 0x5a, 0xd8, 0xeb, 0x31, + 0xef, 0x98, 0x04, 0x86, 0xff, 0x20, 0x4c, 0x46, 0x60, 0x1f, 0xea, 0x79, 0x76, 0x50, 0x46, 0xeb, + 0x8f, 0x0d, 0x3a, 0x82, 0x49, 0x82, 0xc1, 0x6d, 0x89, 0xfe, 0x56, 0xff, 0x29, 0x03, 0xf3, 0x49, + 0xec, 0x71, 0x58, 0xba, 0x1c, 0xb7, 0x1f, 0xf9, 0xed, 0x01, 0xb1, 0x35, 0x6e, 0x3b, 0x7c, 0x04, + 0x5a, 0x6e, 0xcf, 0x09, 0xb8, 0x03, 0x22, 0x23, 0x70, 0x8d, 0x7c, 0xa3, 0x05, 0x28, 0x58, 0xa6, + 0x6e, 0x93, 0x55, 0x1d, 0x9b, 0x93, 0xf2, 0x96, 0x79, 0x8b, 0xac, 0xf8, 0x5e, 0x0f, 0x23, 0xad, + 0x91, 0x33, 0x18, 0x18, 0x3e, 0xaa, 0x41, 0xc6, 0x32, 0xf9, 0xe9, 0x46, 0xc6, 0x32, 0x89, 0x32, + 0xd1, 0xed, 0x00, 0x9a, 0x6d, 0xcb, 0xd3, 0x6f, 0x89, 0x16, 0x54, 0x09, 0xf4, 0xfd, 0x10, 0x48, + 0x82, 0x31, 0x8a, 0xc6, 0x8f, 0x60, 0x69, 0xc0, 0x5c, 0xd4, 0xca, 0x04, 0xb6, 0xce, 0x40, 0xea, + 0x37, 0x61, 0x9e, 0xb0, 0xc6, 0xba, 0x78, 0x8f, 0x0c, 0xc8, 0xa1, 0x35, 0x7b, 0x16, 0x72, 0xb6, + 0xd5, 0xb1, 0x42, 0x5b, 0x66, 0x1f, 0xea, 0xf7, 0x15, 0x58, 0x18, 0xa8, 0x79, 0x9c, 0xa1, 0xba, + 0x2a, 0x6a, 0x4f, 0x79, 0xe5, 0xbc, 0xd4, 0x53, 0xc9, 0x75, 0x23, 0x54, 0xb5, 0x1f, 0xb0, 0x70, + 0x4a, 0x63, 0x09, 0x9a, 0x8f, 0x39, 0xdd, 0x67, 0x09, 0xea, 0x7b, 0x56, 0xb0, 0xa3, 0xd3, 0xeb, + 0x2c, 0x34, 0x96, 0x61, 0x27, 0xde, 0x45, 0xad, 0x46, 0xe0, 0x9b, 0x04, 0x4c, 0xe2, 0x19, 0x5f, + 0xfd, 0x0d, 0x05, 0x66, 0x62, 0x6c, 0x8d, 0x23, 0xa6, 0x37, 0x49, 0x98, 0xc7, 0x2a, 0xe2, 0x92, + 0x5a, 0x94, 0x4a, 0x8a, 0xb7, 0x46, 0x7d, 0x79, 0x44, 0xa1, 0xfe, 0x9b, 0x02, 0x65, 0xa1, 0x84, + 0xac, 0x1f, 0x79, 0x59, 0x7f, 0xfd, 0x18, 0x01, 0x46, 0x12, 0xc3, 0x73, 0xd0, 0xf7, 0x70, 0x42, + 0xc2, 0xbb, 0x90, 0x71, 0x67, 0xfa, 0xe8, 0x26, 0xd4, 0x98, 0x98, 0x22, 0xd6, 0xa5, 0xdb, 0x3a, + 0x51, 0x2e, 0xa1, 0xe1, 0x99, 0x9c, 0x4b, 0xad, 0xea, 0x0b, 0x5f, 0xec, 0xf8, 0xd3, 0x35, 0x31, + 0x6d, 0x29, 0x37, 0xb0, 0x9a, 0xab, 0x88, 0xa4, 0x24, 0x22, 0xb6, 0xb1, 0x61, 0x62, 0x2f, 0xea, + 0x5b, 0xf4, 0x4d, 0x42, 0x50, 0xf6, 0x5b, 0x27, 0x2b, 0x04, 0xee, 0xab, 0x81, 0x81, 0xc8, 0xe2, + 0x01, 0xbd, 0x00, 0x53, 0x66, 0x27, 0x76, 0x97, 0x2a, 0x8c, 0x99, 0xcd, 0x8e, 0x70, 0x89, 0x2a, + 0xc6, 0xd0, 0x64, 0x9c, 0xa1, 0xff, 0x52, 0xa2, 0x5b, 0xa8, 0x1e, 0x36, 0xb1, 0x13, 0x58, 0x86, + 0x7d, 0x74, 0x9d, 0x6c, 0x42, 0xb1, 0xe7, 0x63, 0x4f, 0x98, 0x5a, 0xa2, 0x6f, 0x52, 0xd6, 0x35, + 0x7c, 0x7f, 0xcf, 0xf5, 0x4c, 0xce, 0x65, 0xf4, 0x3d, 0x24, 0x7d, 0x91, 0xdd, 0x67, 0x94, 0xa7, + 0x2f, 0x5e, 0x86, 0x85, 0x8e, 0x6b, 0x5a, 0xdb, 0x96, 0x2c, 0xeb, 0x91, 0x90, 0xcd, 0x85, 0xc5, + 0x31, 0x3a, 0xf5, 0x87, 0x19, 0x58, 0xf8, 0xa0, 0x6b, 0x7e, 0x09, 0x7d, 0x5e, 0x84, 0xb2, 0x6b, + 0x9b, 0x1b, 0xf1, 0x6e, 0x8b, 0x20, 0x82, 0xe1, 0xe0, 0xbd, 0x08, 0x83, 0xed, 0xe5, 0x8b, 0xa0, + 0xa1, 0xa9, 0x9d, 0x47, 0x92, 0x4d, 0x7e, 0x98, 0x6c, 0xda, 0xb0, 0xc0, 0xce, 0x93, 0x1f, 0xb3, + 0x68, 0xd4, 0x8f, 0x60, 0x8e, 0xb8, 0x66, 0xd2, 0xcc, 0x07, 0x3e, 0xf6, 0xc6, 0xf4, 0x38, 0x27, + 0xa1, 0x14, 0xd6, 0x1c, 0x66, 0xdd, 0xf6, 0x01, 0xea, 0x4d, 0x98, 0x4d, 0xb4, 0x75, 0xc4, 0x1e, + 0xa9, 0x8b, 0x00, 0x9a, 0x6b, 0xe3, 0x77, 0x9d, 0xc0, 0x0a, 0xf6, 0x49, 0x74, 0x20, 0xcc, 0x49, + 0xf4, 0x37, 0xc1, 0x20, 0x6d, 0x0c, 0xc1, 0xf8, 0x15, 0x98, 0x66, 0x16, 0x47, 0x6a, 0x3a, 0xba, + 0x70, 0x5f, 0x87, 0x3c, 0xa6, 0x8d, 0xf0, 0xdd, 0x82, 0xd3, 0x72, 0x17, 0x1b, 0x71, 0xab, 0x71, + 0x74, 0xf5, 0x97, 0x61, 0x6a, 0xcd, 0x73, 0xbb, 0xe3, 0xb5, 0x4e, 0x83, 0x0f, 0x1b, 0x8b, 0x51, + 0x64, 0x91, 0x00, 0xe8, 0x2a, 0xf6, 0xef, 0x15, 0x98, 0xbf, 0xdb, 0xc5, 0x9e, 0x11, 0x60, 0x22, + 0x8b, 0xf1, 0x5a, 0x1a, 0x66, 0x5f, 0x31, 0x2e, 0xb2, 0x71, 0x2e, 0xd0, 0x9b, 0xb1, 0x8b, 0x5c, + 0xf2, 0x55, 0x45, 0x82, 0x4b, 0x21, 0x3b, 0xfc, 0x4f, 0x15, 0x98, 0xde, 0xc4, 0x64, 0x0e, 0x19, + 0x8f, 0xfd, 0x8b, 0x30, 0x49, 0x38, 0x1a, 0x75, 0x90, 0x28, 0x32, 0x3a, 0x07, 0xd3, 0x96, 0xd3, + 0xb2, 0x7b, 0x26, 0xd6, 0x49, 0x5f, 0x75, 0x12, 0x81, 0xf1, 0x89, 0x7b, 0x8a, 0x17, 0x10, 0x96, + 0xc9, 0xf4, 0xa8, 0x3e, 0x62, 0x2a, 0x19, 0x25, 0xd3, 0xb0, 0xe6, 0x94, 0xc3, 0x34, 0x77, 0x09, + 0x72, 0xa4, 0x99, 0x70, 0xb2, 0x96, 0x53, 0xf5, 0xb5, 0x5a, 0x63, 0xd8, 0xea, 0x77, 0x14, 0x40, + 0xa2, 0x88, 0xc6, 0x31, 0xe0, 0xaf, 0x89, 0xc7, 0xea, 0xd9, 0xa1, 0xac, 0xb3, 0x9e, 0x46, 0x07, + 0xea, 0xc2, 0x48, 0xd1, 0x61, 0x1c, 0x67, 0xa4, 0x48, 0xbf, 0x86, 0x8e, 0x94, 0x20, 0x04, 0x8a, + 0x2c, 0x8e, 0x14, 0xd5, 0x44, 0xc9, 0x48, 0x11, 0x9e, 0xc3, 0x91, 0x62, 0x1c, 0x86, 0x23, 0x45, + 0x9b, 0x53, 0x0e, 0xd3, 0xdc, 0x25, 0xc8, 0x91, 0x66, 0x0e, 0x16, 0x52, 0x38, 0x52, 0x14, 0x5b, + 0xfd, 0xd5, 0x68, 0xa4, 0x38, 0x03, 0x63, 0xdd, 0x3e, 0xc9, 0x33, 0xc9, 0x1f, 0xa8, 0x2d, 0x7c, + 0xa0, 0x38, 0xba, 0xfa, 0x3c, 0xd4, 0x34, 0xcc, 0x56, 0xdf, 0x7d, 0xef, 0x28, 0x6c, 0xd0, 0x32, + 0xbb, 0x3b, 0x0b, 0x53, 0x1b, 0x9e, 0xb5, 0x6b, 0xd9, 0xb8, 0x3d, 0xcc, 0xcd, 0xfe, 0x8d, 0x02, + 0x73, 0x5c, 0xf7, 0x78, 0x9d, 0x47, 0x1f, 0xf8, 0x37, 0x12, 0x9e, 0xf4, 0xb9, 0x94, 0x60, 0x55, + 0xe4, 0x3d, 0xf4, 0xa6, 0x64, 0x7a, 0x0e, 0x15, 0xa0, 0x1b, 0xf2, 0x2d, 0x6a, 0xc1, 0x2c, 0x2f, + 0x8d, 0x3a, 0x45, 0x55, 0xe1, 0x33, 0xa5, 0x2f, 0x0c, 0xae, 0x0f, 0x6f, 0xd3, 0xbd, 0x51, 0x0a, + 0xe1, 0xbc, 0x8f, 0xc4, 0x47, 0x44, 0x84, 0xd6, 0x00, 0x22, 0x0e, 0x42, 0x05, 0x79, 0x5e, 0x7e, + 0x86, 0x13, 0x17, 0xb0, 0x26, 0xd0, 0xd1, 0x0b, 0x1e, 0x49, 0xc1, 0x8e, 0xf7, 0x18, 0x41, 0xc2, + 0xb0, 0x87, 0xf7, 0x2a, 0x69, 0xdc, 0x3f, 0x55, 0xa8, 0x3e, 0x38, 0x2d, 0xab, 0x6b, 0xd8, 0x5c, + 0x1f, 0xce, 0x42, 0xad, 0x1b, 0x82, 0xc4, 0x1d, 0xfe, 0x6a, 0x04, 0xa5, 0x69, 0x51, 0x97, 0x0e, + 0x65, 0xcf, 0x37, 0x27, 0x22, 0x13, 0x63, 0x1e, 0x34, 0x3b, 0x92, 0x07, 0x25, 0x64, 0x04, 0x7d, + 0xb5, 0x0c, 0xa5, 0xa8, 0x79, 0xb2, 0x9a, 0xaa, 0xde, 0xf0, 0x0c, 0x27, 0x70, 0xc3, 0x40, 0xe0, + 0x48, 0xd6, 0xbe, 0x4a, 0xeb, 0x64, 0x23, 0xc3, 0xbb, 0x31, 0xda, 0x80, 0xf6, 0xc9, 0xd4, 0xff, + 0x51, 0xa0, 0x4c, 0x59, 0xe1, 0x8c, 0xac, 0x0a, 0x7c, 0x72, 0x6e, 0x52, 0xeb, 0x14, 0xa5, 0xae, + 0xf5, 0xc9, 0x62, 0xaa, 0x9a, 0x39, 0x8a, 0xaa, 0x3e, 0x07, 0xd5, 0xf0, 0xb7, 0x38, 0x77, 0x57, + 0x42, 0x20, 0x9f, 0xbf, 0x0b, 0x6d, 0x26, 0x43, 0x3a, 0x85, 0x97, 0x57, 0x54, 0xf9, 0x72, 0x5b, + 0x94, 0xb3, 0x16, 0x92, 0xa8, 0x9f, 0x44, 0x2e, 0x8f, 0x22, 0x1c, 0xdd, 0x3b, 0x7c, 0x35, 0xe1, + 0x1d, 0x16, 0xd3, 0xb9, 0x48, 0x04, 0x5a, 0x64, 0x4d, 0x1d, 0x63, 0x61, 0xcc, 0x35, 0x35, 0xad, + 0xd6, 0xc2, 0xc3, 0xd7, 0xd4, 0x22, 0x23, 0x11, 0x85, 0xfa, 0x33, 0x05, 0x16, 0x78, 0xac, 0x13, + 0xe9, 0xca, 0x13, 0x10, 0x09, 0xfa, 0x3a, 0xf7, 0xf8, 0x59, 0x1a, 0x93, 0xbd, 0x34, 0x2c, 0x26, + 0x8b, 0xf8, 0x14, 0x82, 0xb2, 0xb3, 0x50, 0xba, 0x4d, 0x91, 0xde, 0x7d, 0x14, 0xa0, 0x06, 0x14, + 0x76, 0xb1, 0xe7, 0x5b, 0xae, 0xc3, 0xed, 0x3f, 0xfc, 0x3c, 0x77, 0x06, 0x8a, 0xe1, 0x5d, 0x3f, + 0x54, 0x80, 0xec, 0x55, 0xdb, 0xae, 0x4f, 0xa0, 0x0a, 0x14, 0xd7, 0xf9, 0x85, 0xb6, 0xba, 0x72, + 0xee, 0x1d, 0x98, 0x91, 0xc4, 0x7e, 0x68, 0x1a, 0xaa, 0x57, 0x4d, 0xba, 0x48, 0xb8, 0xe7, 0x12, + 0x60, 0x7d, 0x02, 0xcd, 0x03, 0xd2, 0x70, 0xc7, 0xdd, 0xa5, 0x88, 0xd7, 0x3d, 0xb7, 0x43, 0xe1, + 0xca, 0xb9, 0x97, 0x61, 0x56, 0xc6, 0x29, 0x2a, 0x41, 0x8e, 0xf6, 0xbc, 0x3e, 0x81, 0x00, 0xf2, + 0x1a, 0xde, 0x75, 0x1f, 0xe0, 0xba, 0xb2, 0xf2, 0xa3, 0xf3, 0x50, 0x65, 0xbc, 0xf3, 0x9b, 0xe9, + 0x48, 0x87, 0x7a, 0xf2, 0xfd, 0x27, 0xf4, 0x15, 0xf9, 0xde, 0xb7, 0xfc, 0x99, 0xa8, 0xe6, 0x30, + 0xc5, 0x51, 0x27, 0xd0, 0x87, 0x50, 0x8b, 0x3f, 0x9e, 0x84, 0xe4, 0x47, 0xfa, 0xd2, 0x17, 0x96, + 0x0e, 0xaa, 0x5c, 0x87, 0x6a, 0xec, 0x09, 0x24, 0x24, 0x1f, 0x4c, 0xd9, 0x33, 0x49, 0x4d, 0xf9, + 0x96, 0x8a, 0xf8, 0x3a, 0x11, 0xe3, 0x3e, 0xfe, 0x2a, 0x49, 0x0a, 0xf7, 0xd2, 0xa7, 0x4b, 0x0e, + 0xe2, 0xde, 0x80, 0xe9, 0x81, 0x47, 0x43, 0xd0, 0xcb, 0x29, 0x4e, 0x4c, 0xfe, 0xb8, 0xc8, 0x41, + 0x4d, 0xec, 0x01, 0x1a, 0x7c, 0xd8, 0x07, 0x2d, 0xcb, 0x47, 0x20, 0xed, 0x7d, 0xa3, 0xe6, 0x85, + 0x91, 0xf1, 0x23, 0xc1, 0xfd, 0x9a, 0x02, 0x0b, 0x29, 0xef, 0x7a, 0xa0, 0x8b, 0x69, 0x3b, 0x96, + 0x43, 0x5e, 0x29, 0x69, 0xbe, 0x76, 0x38, 0xa2, 0x88, 0x11, 0x07, 0xa6, 0x12, 0x6f, 0x5c, 0xa0, + 0xf3, 0xa9, 0x17, 0x73, 0x07, 0xdf, 0xfc, 0x68, 0x7e, 0x65, 0x34, 0xe4, 0xa8, 0xbd, 0xfb, 0x30, + 0x95, 0x78, 0xe0, 0x21, 0xa5, 0x3d, 0xf9, 0x33, 0x10, 0x07, 0x0d, 0xe8, 0xb7, 0xa0, 0x1a, 0x7b, + 0x89, 0x21, 0x45, 0xe3, 0x65, 0xaf, 0x35, 0x1c, 0x54, 0xf5, 0x7d, 0xa8, 0x88, 0x0f, 0x26, 0xa0, + 0xa5, 0x34, 0x5b, 0x1a, 0xa8, 0xf8, 0x30, 0xa6, 0xd4, 0xbf, 0xe8, 0x3c, 0xc4, 0x94, 0x06, 0xee, + 0x86, 0x8f, 0x6e, 0x4a, 0x42, 0xfd, 0x43, 0x4d, 0xe9, 0xd0, 0x4d, 0x7c, 0x5b, 0xa1, 0x27, 0x2e, + 0x92, 0x8b, 0xf4, 0x68, 0x25, 0x4d, 0x37, 0xd3, 0x9f, 0x0c, 0x68, 0x5e, 0x3c, 0x14, 0x4d, 0x24, + 0xc5, 0x07, 0x50, 0x8b, 0x5f, 0x17, 0x4f, 0x91, 0xa2, 0xf4, 0x86, 0x7d, 0xf3, 0xfc, 0x48, 0xb8, + 0x51, 0x63, 0x1f, 0x40, 0x59, 0x78, 0xd2, 0x11, 0xbd, 0x38, 0x44, 0x8f, 0xc5, 0xf7, 0x0d, 0x0f, + 0x92, 0xe4, 0xfb, 0x50, 0x8a, 0x5e, 0x62, 0x44, 0x67, 0x53, 0xf5, 0xf7, 0x30, 0x55, 0x6e, 0x02, + 0xf4, 0x9f, 0x59, 0x44, 0x2f, 0x48, 0xeb, 0x1c, 0x78, 0x87, 0xf1, 0xa0, 0x4a, 0xa3, 0xee, 0xb3, + 0x5b, 0x38, 0xc3, 0xba, 0x2f, 0x5e, 0x1b, 0x3b, 0xa8, 0xda, 0x1d, 0xa8, 0xc6, 0x2e, 0x7b, 0xa6, + 0x99, 0xb0, 0xe4, 0x0e, 0x6e, 0xf3, 0xdc, 0x28, 0xa8, 0xd1, 0xf8, 0xed, 0x40, 0x35, 0x76, 0xf5, + 0x2e, 0xa5, 0x25, 0xd9, 0x4d, 0xc3, 0x94, 0x96, 0xa4, 0x37, 0xf9, 0xd4, 0x09, 0xf4, 0x89, 0x70, + 0xcb, 0x2f, 0x76, 0x93, 0x12, 0xbd, 0x3a, 0xb4, 0x1e, 0xd9, 0x45, 0xd2, 0xe6, 0xca, 0x61, 0x48, + 0x22, 0x16, 0xb8, 0x56, 0x31, 0x91, 0xa6, 0x6b, 0xd5, 0x61, 0x46, 0x6a, 0x13, 0xf2, 0xec, 0x32, + 0x1d, 0x52, 0x53, 0xae, 0xcd, 0x0a, 0x37, 0xed, 0x9a, 0xf2, 0xe5, 0x47, 0xfc, 0x9e, 0x19, 0xab, + 0x94, 0x6d, 0x6e, 0xa7, 0x54, 0x1a, 0xbb, 0x49, 0x35, 0x6a, 0xa5, 0x1a, 0xe4, 0xd9, 0x65, 0x8f, + 0x94, 0x4a, 0x63, 0x17, 0x98, 0x9a, 0xc3, 0x71, 0xd8, 0x9a, 0x77, 0x02, 0x6d, 0x40, 0x8e, 0x26, + 0x12, 0xa0, 0x33, 0xc3, 0xee, 0x41, 0x0c, 0xab, 0x31, 0x76, 0x55, 0x42, 0x9d, 0x40, 0x77, 0x21, + 0x47, 0xcf, 0x64, 0x53, 0x6a, 0x14, 0x2f, 0x33, 0x34, 0x87, 0xa2, 0x84, 0x2c, 0x9a, 0x50, 0x11, + 0x33, 0x98, 0x53, 0xa6, 0x2c, 0x49, 0x8e, 0x77, 0x73, 0x14, 0xcc, 0xb0, 0x15, 0x66, 0x46, 0xfd, + 0xa4, 0x8a, 0x74, 0x33, 0x1a, 0x48, 0xd8, 0x48, 0x37, 0xa3, 0xc1, 0x1c, 0x0d, 0x75, 0x02, 0xfd, + 0xa6, 0x02, 0x8d, 0xb4, 0xb4, 0x5a, 0x94, 0x1a, 0x01, 0x0d, 0xcb, 0x0d, 0x6e, 0x5e, 0x3a, 0x24, + 0x55, 0xc4, 0xcb, 0xc7, 0xf4, 0x2c, 0x76, 0x20, 0x91, 0xf6, 0x42, 0x5a, 0x7d, 0x29, 0xc9, 0xa1, + 0xcd, 0x57, 0x46, 0x27, 0x88, 0xda, 0xde, 0x82, 0xb2, 0x70, 0x0e, 0x9c, 0xe2, 0x79, 0x07, 0x0f, + 0xb0, 0x53, 0x46, 0x55, 0x72, 0xa4, 0xcc, 0xd4, 0x9b, 0x66, 0x5f, 0xa6, 0x28, 0xa3, 0x98, 0xcc, + 0x99, 0xa2, 0xde, 0xb1, 0xe4, 0x4d, 0x75, 0x02, 0x61, 0xa8, 0x88, 0xa9, 0x98, 0x29, 0xda, 0x28, + 0xc9, 0xe2, 0x6c, 0xbe, 0x34, 0x02, 0x66, 0xd4, 0x8c, 0x0e, 0xd0, 0x4f, 0x85, 0x4c, 0x99, 0xeb, + 0x06, 0xb2, 0x31, 0x9b, 0x2f, 0x1e, 0x88, 0x27, 0x4e, 0xfb, 0x42, 0x72, 0x63, 0x8a, 0xf4, 0x07, + 0xd3, 0x1f, 0x47, 0x58, 0x8b, 0x0c, 0x26, 0xd0, 0xa5, 0xac, 0x45, 0x52, 0x73, 0xf5, 0x9a, 0x17, + 0x46, 0xc6, 0x8f, 0xfa, 0xf3, 0x10, 0xea, 0xc9, 0x84, 0xc3, 0x94, 0x35, 0x6e, 0x4a, 0xda, 0x63, + 0xf3, 0xe5, 0x11, 0xb1, 0xc5, 0xf9, 0xf0, 0xc4, 0x20, 0x4f, 0xdf, 0xb4, 0x82, 0x1d, 0x9a, 0xeb, + 0x36, 0x4a, 0xaf, 0xc5, 0xb4, 0xba, 0x51, 0x7a, 0x1d, 0x4b, 0xa2, 0xe3, 0x93, 0x17, 0xcd, 0x00, + 0x49, 0x9b, 0xbc, 0xc4, 0xf4, 0xad, 0x94, 0x79, 0x26, 0x9e, 0xec, 0xc4, 0xc2, 0xcf, 0x78, 0x66, + 0x09, 0x3a, 0x37, 0x52, 0xfa, 0xc9, 0xb0, 0xf0, 0x53, 0x9e, 0xaa, 0xc2, 0x96, 0x6e, 0x89, 0xc4, + 0x99, 0x94, 0xa5, 0x94, 0x3c, 0x71, 0x27, 0x65, 0xe9, 0x96, 0x92, 0x8b, 0x43, 0x0d, 0xab, 0x9e, + 0xcc, 0x42, 0x18, 0xbe, 0x17, 0x92, 0x3c, 0x9d, 0x3e, 0x78, 0xbb, 0xa2, 0x9e, 0x3c, 0xf2, 0x4f, + 0x69, 0x20, 0x25, 0x33, 0x60, 0x84, 0x06, 0x92, 0x07, 0xe7, 0x29, 0x0d, 0xa4, 0x9c, 0xaf, 0x8f, + 0x10, 0xbb, 0xc6, 0x0e, 0xb1, 0x53, 0xa6, 0x42, 0xd9, 0x41, 0x77, 0xca, 0x54, 0x28, 0x3d, 0x7f, + 0x67, 0x11, 0x7d, 0xff, 0x80, 0x3a, 0xc5, 0xcb, 0x0d, 0x9c, 0x60, 0x1f, 0xc4, 0xfe, 0x5d, 0x28, + 0x86, 0xa7, 0xce, 0xe8, 0xf9, 0xd4, 0x10, 0xf1, 0x10, 0x15, 0xde, 0x87, 0xa9, 0xc4, 0x0e, 0x5e, + 0x8a, 0x8a, 0xca, 0x4f, 0xa2, 0x0f, 0x1e, 0x4f, 0xe8, 0x9f, 0x6d, 0xa6, 0x08, 0x61, 0xe0, 0x7c, + 0x38, 0xc5, 0xd5, 0x0f, 0x1e, 0x92, 0x8a, 0x0d, 0x10, 0xc6, 0x86, 0x36, 0x20, 0x1c, 0x6b, 0x0e, + 0x6d, 0x40, 0x3c, 0xdb, 0xe3, 0xeb, 0xd5, 0xd8, 0x41, 0x4e, 0xda, 0x7a, 0x55, 0x76, 0x8c, 0x96, + 0xb6, 0x5e, 0x95, 0x9e, 0x0c, 0x31, 0xf5, 0x4f, 0xee, 0x86, 0xa6, 0xa8, 0x7f, 0xca, 0x36, 0xf4, + 0x41, 0xe3, 0xb1, 0x05, 0x65, 0x61, 0x2f, 0x1d, 0x0d, 0x93, 0x83, 0xb8, 0xe1, 0x9f, 0x12, 0x97, + 0x48, 0xb6, 0xe5, 0xd5, 0x89, 0x95, 0x1e, 0x54, 0x36, 0x3c, 0xf7, 0x51, 0xf8, 0x76, 0xe8, 0x97, + 0x14, 0x55, 0x5c, 0x69, 0x41, 0x8d, 0x21, 0xe8, 0xf8, 0x51, 0xa0, 0xbb, 0x5b, 0x1f, 0xa1, 0x93, + 0xcb, 0xec, 0x4f, 0x1f, 0x96, 0xc3, 0x3f, 0x7d, 0x58, 0xbe, 0x6e, 0xd9, 0xf8, 0x2e, 0x4f, 0x9e, + 0xfd, 0x8f, 0xc2, 0x90, 0xab, 0x9b, 0xd1, 0xfe, 0xb8, 0xc6, 0xff, 0x77, 0xe2, 0xdd, 0x47, 0xc1, + 0xdd, 0xad, 0x8f, 0x56, 0x8d, 0xcf, 0xdf, 0x2a, 0x40, 0x6e, 0x65, 0xf9, 0xd5, 0xe5, 0x57, 0xa0, + 0x66, 0x45, 0xe8, 0x6d, 0xaf, 0xdb, 0x5a, 0x2d, 0x33, 0xa2, 0x0d, 0x52, 0xcf, 0x86, 0xf2, 0x4b, + 0x17, 0xdb, 0x56, 0xb0, 0xd3, 0xdb, 0x22, 0x43, 0x70, 0x81, 0xa1, 0xbd, 0x6c, 0xb9, 0xfc, 0xd7, + 0x05, 0xcb, 0x09, 0xb0, 0xe7, 0x18, 0x36, 0xfb, 0x3f, 0x0a, 0x0e, 0xed, 0x6e, 0xfd, 0x81, 0xa2, + 0x6c, 0xe5, 0x29, 0xe8, 0xe2, 0xff, 0x07, 0x00, 0x00, 0xff, 0xff, 0xff, 0xb6, 0x3d, 0x83, 0xf1, + 0x62, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/internal/rootcoord/import_manager.go b/internal/rootcoord/import_manager.go index 2d70bccc92b4..9f998cc1d41b 100644 --- a/internal/rootcoord/import_manager.go +++ b/internal/rootcoord/import_manager.go @@ -726,6 +726,5 @@ func BuildImportTaskKey(taskID int64) string { func taskExpired(ti *datapb.ImportTaskInfo) bool { return ti.GetState().GetStateCode() != commonpb.ImportState_ImportFailed && ti.GetState().GetStateCode() != commonpb.ImportState_ImportPersisted && - ti.GetState().GetStateCode() != commonpb.ImportState_ImportCompleted && Params.RootCoordCfg.ImportTaskExpiration <= float64(time.Now().Unix()-ti.GetCreateTs()) } diff --git a/internal/rootcoord/import_manager_test.go b/internal/rootcoord/import_manager_test.go index e5246d7ba444..ee31a978c233 100644 --- a/internal/rootcoord/import_manager_test.go +++ b/internal/rootcoord/import_manager_test.go @@ -389,38 +389,12 @@ func TestImportManager_TaskState(t *testing.T) { _, err := mgr.updateTaskState(state) assert.NotNil(t, err) - state = &rootcoordpb.ImportResult{ - TaskId: 2, - RowCount: 1000, - State: commonpb.ImportState_ImportCompleted, - Infos: []*commonpb.KeyValuePair{ - { - Key: "key1", - Value: "value1", - }, - { - Key: "failed_reason", - Value: "some_reason", - }, - }, - } - ti, err := mgr.updateTaskState(state) - assert.NoError(t, err) - assert.Equal(t, int64(2), ti.GetId()) - assert.Equal(t, int64(100), ti.GetCollectionId()) - assert.Equal(t, int64(100), ti.GetCollectionId()) - assert.Equal(t, int64(0), ti.GetPartitionId()) - assert.Equal(t, true, ti.GetRowBased()) - assert.Equal(t, []string{"f2"}, ti.GetFiles()) - assert.Equal(t, commonpb.ImportState_ImportCompleted, ti.GetState().GetStateCode()) - assert.Equal(t, int64(1000), ti.GetState().GetRowCount()) - resp := mgr.getTaskState(10000) assert.Equal(t, commonpb.ErrorCode_UnexpectedError, resp.Status.ErrorCode) resp = mgr.getTaskState(2) assert.Equal(t, commonpb.ErrorCode_Success, resp.Status.ErrorCode) - assert.Equal(t, commonpb.ImportState_ImportCompleted, resp.State) + assert.Equal(t, commonpb.ImportState_ImportPersisted, resp.State) resp = mgr.getTaskState(1) assert.Equal(t, commonpb.ErrorCode_Success, resp.Status.ErrorCode) diff --git a/internal/rootcoord/root_coord_test.go b/internal/rootcoord/root_coord_test.go index 5dec5b02f05d..b0e7672b59da 100644 --- a/internal/rootcoord/root_coord_test.go +++ b/internal/rootcoord/root_coord_test.go @@ -1623,21 +1623,6 @@ func TestRootCoord_Base(t *testing.T) { assert.Equal(t, commonpb.ErrorCode_CollectionNameNotFound, resp.ErrorCode) }) - wg.Add(1) - t.Run("report import with transitional state", func(t *testing.T) { - defer wg.Done() - req := &rootcoordpb.ImportResult{ - TaskId: 1, - RowCount: 100, - Segments: []int64{1000, 1001, 1002}, - State: commonpb.ImportState_ImportDownloaded, - } - resp, err := core.ReportImport(context.WithValue(ctx, ctxKey{}, ""), req) - assert.NoError(t, err) - assert.Equal(t, commonpb.ErrorCode_Success, resp.ErrorCode) - time.Sleep(500 * time.Millisecond) - }) - wg.Add(1) t.Run("report import with alloc seg state", func(t *testing.T) { defer wg.Done() diff --git a/internal/util/importutil/import_wrapper.go b/internal/util/importutil/import_wrapper.go index 3d19250c21ff..52f1253cc642 100644 --- a/internal/util/importutil/import_wrapper.go +++ b/internal/util/importutil/import_wrapper.go @@ -171,57 +171,13 @@ func (p *ImportWrapper) Import(filePaths []string, rowBased bool, onlyValidate b log.Info("import wrapper: row-based file ", zap.Any("filePath", filePath), zap.Any("fileType", fileType)) if fileType == JSONFileExt { - err := func() error { - tr := timerecord.NewTimeRecorder("json row-based parser: " + filePath) - - // for minio storage, chunkManager will download file into local memory - // for local storage, chunkManager open the file directly - file, err := p.chunkManager.Reader(filePath) - if err != nil { - return err - } - defer file.Close() - tr.Record("open reader") - - // report file process state - p.importResult.State = commonpb.ImportState_ImportDownloaded - p.reportFunc(p.importResult) - - // parse file - reader := bufio.NewReader(file) - parser := NewJSONParser(p.ctx, p.collectionSchema) - var consumer *JSONRowConsumer - if !onlyValidate { - flushFunc := func(fields map[storage.FieldID]storage.FieldData, shardNum int) error { - p.printFieldsDataInfo(fields, "import wrapper: prepare to flush segment", filePaths) - return p.callFlushFunc(fields, shardNum) - } - consumer = NewJSONRowConsumer(p.collectionSchema, p.rowIDAllocator, p.shardNum, p.segmentSize, flushFunc) - } - validator := NewJSONRowValidator(p.collectionSchema, consumer) - err = parser.ParseRows(reader, validator) - if err != nil { - return err - } - - // for row-based files, auto-id is generated within JSONRowConsumer - if consumer != nil { - p.importResult.AutoIds = append(p.importResult.AutoIds, consumer.IDRange()...) - } - - // report file process state - p.importResult.State = commonpb.ImportState_ImportParsed - p.reportFunc(p.importResult) - - tr.Record("parsed") - return nil - }() - + err = p.parseRowBasedJSON(filePath, onlyValidate) if err != nil { log.Error("import error: "+err.Error(), zap.String("filePath", filePath)) return err } } + // no need to check else, since the fileValidation() already do this } } else { // parse and consume column-based files @@ -269,103 +225,24 @@ func (p *ImportWrapper) Import(filePaths []string, rowBased bool, onlyValidate b // parse/validate/consume data for i := 0; i < len(filePaths); i++ { filePath := filePaths[i] - fileName, fileType := getFileNameAndExt(filePath) + _, fileType := getFileNameAndExt(filePath) log.Info("import wrapper: column-based file ", zap.Any("filePath", filePath), zap.Any("fileType", fileType)) if fileType == JSONFileExt { - err := func() error { - tr := timerecord.NewTimeRecorder("json column-based parser: " + filePath) - - // for minio storage, chunkManager will download file into local memory - // for local storage, chunkManager open the file directly - file, err := p.chunkManager.Reader(filePath) - if err != nil { - return err - } - defer file.Close() - tr.Record("open reader") - - // report file process state - p.importResult.State = commonpb.ImportState_ImportDownloaded - p.reportFunc(p.importResult) - - // parse file - reader := bufio.NewReader(file) - parser := NewJSONParser(p.ctx, p.collectionSchema) - var consumer *JSONColumnConsumer - if !onlyValidate { - consumer = NewJSONColumnConsumer(p.collectionSchema, combineFunc) - } - validator := NewJSONColumnValidator(p.collectionSchema, consumer) - - err = parser.ParseColumns(reader, validator) - if err != nil { - return err - } - - // report file process state - p.importResult.State = commonpb.ImportState_ImportParsed - p.reportFunc(p.importResult) - - tr.Record("parsed") - return nil - }() - + err = p.parseColumnBasedJSON(filePath, onlyValidate, combineFunc) if err != nil { log.Error("import error: "+err.Error(), zap.String("filePath", filePath)) return err } } else if fileType == NumpyFileExt { - err := func() error { - tr := timerecord.NewTimeRecorder("numpy parser: " + filePath) - - // for minio storage, chunkManager will download file into local memory - // for local storage, chunkManager open the file directly - file, err := p.chunkManager.Reader(filePath) - if err != nil { - return err - } - defer file.Close() - tr.Record("open reader") - - // report file process state - p.importResult.State = commonpb.ImportState_ImportDownloaded - p.reportFunc(p.importResult) - - var id storage.FieldID - for _, field := range p.collectionSchema.Fields { - if field.GetName() == fileName { - id = field.GetFieldID() - } - } - - // the numpy parser return a storage.FieldData, here construct a map[string]storage.FieldData to combine - flushFunc := func(field storage.FieldData) error { - fields := make(map[storage.FieldID]storage.FieldData) - fields[id] = field - return combineFunc(fields) - } - - // for numpy file, we say the file name(without extension) is the filed name - parser := NewNumpyParser(p.ctx, p.collectionSchema, flushFunc) - err = parser.Parse(file, fileName, onlyValidate) - if err != nil { - return err - } - - // report file process state - p.importResult.State = commonpb.ImportState_ImportParsed - p.reportFunc(p.importResult) - - tr.Record("parsed") - return nil - }() + err = p.parseColumnBasedNumpy(filePath, onlyValidate, combineFunc) if err != nil { log.Error("import error: "+err.Error(), zap.String("filePath", filePath)) return err } } + // no need to check else, since the fileValidation() already do this } // split fields data into segments @@ -382,6 +259,121 @@ func (p *ImportWrapper) Import(filePaths []string, rowBased bool, onlyValidate b return p.reportFunc(p.importResult) } +func (p *ImportWrapper) parseRowBasedJSON(filePath string, onlyValidate bool) error { + tr := timerecord.NewTimeRecorder("json row-based parser: " + filePath) + + // for minio storage, chunkManager will download file into local memory + // for local storage, chunkManager open the file directly + file, err := p.chunkManager.Reader(filePath) + if err != nil { + return err + } + defer file.Close() + + // parse file + reader := bufio.NewReader(file) + parser := NewJSONParser(p.ctx, p.collectionSchema) + var consumer *JSONRowConsumer + if !onlyValidate { + flushFunc := func(fields map[storage.FieldID]storage.FieldData, shardID int) error { + var filePaths = []string{filePath} + p.printFieldsDataInfo(fields, "import wrapper: prepare to flush segment", filePaths) + return p.callFlushFunc(fields, shardID) + } + consumer = NewJSONRowConsumer(p.collectionSchema, p.rowIDAllocator, p.shardNum, p.segmentSize, flushFunc) + } + validator := NewJSONRowValidator(p.collectionSchema, consumer) + err = parser.ParseRows(reader, validator) + if err != nil { + return err + } + + // for row-based files, auto-id is generated within JSONRowConsumer + if consumer != nil { + p.importResult.AutoIds = append(p.importResult.AutoIds, consumer.IDRange()...) + } + + tr.Elapse("parsed") + return nil +} + +func (p *ImportWrapper) parseColumnBasedJSON(filePath string, onlyValidate bool, + combineFunc func(fields map[storage.FieldID]storage.FieldData) error) error { + tr := timerecord.NewTimeRecorder("json column-based parser: " + filePath) + + // for minio storage, chunkManager will download file into local memory + // for local storage, chunkManager open the file directly + file, err := p.chunkManager.Reader(filePath) + if err != nil { + return err + } + defer file.Close() + + // parse file + reader := bufio.NewReader(file) + parser := NewJSONParser(p.ctx, p.collectionSchema) + var consumer *JSONColumnConsumer + if !onlyValidate { + consumer = NewJSONColumnConsumer(p.collectionSchema, combineFunc) + } + validator := NewJSONColumnValidator(p.collectionSchema, consumer) + + err = parser.ParseColumns(reader, validator) + if err != nil { + return err + } + + tr.Elapse("parsed") + return nil +} + +func (p *ImportWrapper) parseColumnBasedNumpy(filePath string, onlyValidate bool, + combineFunc func(fields map[storage.FieldID]storage.FieldData) error) error { + tr := timerecord.NewTimeRecorder("numpy parser: " + filePath) + + fileName, _ := getFileNameAndExt(filePath) + + // for minio storage, chunkManager will download file into local memory + // for local storage, chunkManager open the file directly + file, err := p.chunkManager.Reader(filePath) + if err != nil { + return err + } + defer file.Close() + + var id storage.FieldID + var found = false + for _, field := range p.collectionSchema.Fields { + if field.GetName() == fileName { + id = field.GetFieldID() + found = true + break + } + } + + // if the numpy file name is not mapping to a field name, ignore it + if !found { + return nil + } + + // the numpy parser return a storage.FieldData, here construct a map[string]storage.FieldData to combine + flushFunc := func(field storage.FieldData) error { + fields := make(map[storage.FieldID]storage.FieldData) + fields[id] = field + return combineFunc(fields) + } + + // for numpy file, we say the file name(without extension) is the filed name + parser := NewNumpyParser(p.ctx, p.collectionSchema, flushFunc) + err = parser.Parse(file, fileName, onlyValidate) + if err != nil { + return err + } + + tr.Elapse("parsed") + return nil +} + func (p *ImportWrapper) appendFunc(schema *schemapb.FieldSchema) func(src storage.FieldData, n int, target storage.FieldData) error { switch schema.DataType { case schemapb.DataType_Bool: diff --git a/internal/util/importutil/import_wrapper_test.go b/internal/util/importutil/import_wrapper_test.go index 00acee60c255..ac6e9c026f46 100644 --- a/internal/util/importutil/import_wrapper_test.go +++ b/internal/util/importutil/import_wrapper_test.go @@ -468,6 +468,7 @@ func Test_ImportColumnBased_numpy(t *testing.T) { err = cm.Write(filePath, content) assert.NoError(t, err) + importResult.State = commonpb.ImportState_ImportStarted wrapper = NewImportWrapper(ctx, sampleSchema(), 2, 1, idAllocator, cm, flushFunc, importResult, reportFunc) files = make([]string, 0) files = append(files, filePath) diff --git a/internal/util/importutil/json_handler.go b/internal/util/importutil/json_handler.go index a1bd45b7801c..983f0153f0df 100644 --- a/internal/util/importutil/json_handler.go +++ b/internal/util/importutil/json_handler.go @@ -390,7 +390,7 @@ func (v *JSONColumnValidator) Handle(columns map[storage.FieldID][]interface{}) return nil } -type ImportFlushFunc func(fields map[storage.FieldID]storage.FieldData, shardNum int) error +type ImportFlushFunc func(fields map[storage.FieldID]storage.FieldData, shardID int) error // row-based json format consumer class type JSONRowConsumer struct {