Add the `GetLoadingProgress` RPC (#19491)

Signed-off-by: SimFG <bang.fu@zilliz.com>

Signed-off-by: SimFG <bang.fu@zilliz.com>
pull/19609/head
SimFG 2022-10-01 09:02:55 +08:00 committed by GitHub
parent e6c7286bee
commit 7d54e35fa5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 717 additions and 337 deletions

View File

@ -27,8 +27,7 @@ var _ = math.Inf
// proto package needs to be updated.
const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
//
// This is for ShowCollectionsRequest type field.
// Deprecated: use GetLoadingProgress rpc instead
type ShowType int32
const (
@ -1200,6 +1199,7 @@ type ShowCollectionsRequest struct {
// Decide return Loaded collections or All collections(Optional)
Type ShowType `protobuf:"varint,4,opt,name=type,proto3,enum=milvus.proto.milvus.ShowType" json:"type,omitempty"`
// When type is InMemory, will return these collection's inMemory_percentages.(Optional)
// Deprecated: use GetLoadingProgress rpc instead
CollectionNames []string `protobuf:"bytes,5,rep,name=collection_names,json=collectionNames,proto3" json:"collection_names,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
@ -1280,6 +1280,7 @@ type ShowCollectionsResponse struct {
// The utc timestamp calculated by created_timestamp
CreatedUtcTimestamps []uint64 `protobuf:"varint,5,rep,packed,name=created_utc_timestamps,json=createdUtcTimestamps,proto3" json:"created_utc_timestamps,omitempty"`
// Load percentage on querynode when type is InMemory
// Deprecated: use GetLoadingProgress rpc instead
InMemoryPercentages []int64 `protobuf:"varint,6,rep,packed,name=inMemory_percentages,json=inMemoryPercentages,proto3" json:"inMemory_percentages,omitempty"`
// Indicate whether query service is available
QueryServiceAvailable []bool `protobuf:"varint,7,rep,packed,name=query_service_available,json=queryServiceAvailable,proto3" json:"query_service_available,omitempty"`
@ -1848,6 +1849,7 @@ type ShowPartitionsRequest struct {
// When type is InMemory, will return these patitions's inMemory_percentages.(Optional)
PartitionNames []string `protobuf:"bytes,5,rep,name=partition_names,json=partitionNames,proto3" json:"partition_names,omitempty"`
// Decide return Loaded partitions or All partitions(Optional)
// Deprecated: use GetLoadingProgress rpc instead
Type ShowType `protobuf:"varint,6,opt,name=type,proto3,enum=milvus.proto.milvus.ShowType" json:"type,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
@ -1936,6 +1938,7 @@ type ShowPartitionsResponse struct {
// All utc timestamps calculated by created_timestamps
CreatedUtcTimestamps []uint64 `protobuf:"varint,5,rep,packed,name=created_utc_timestamps,json=createdUtcTimestamps,proto3" json:"created_utc_timestamps,omitempty"`
// Load percentage on querynode
// Deprecated: use GetLoadingProgress rpc instead
InMemoryPercentages []int64 `protobuf:"varint,6,rep,packed,name=inMemory_percentages,json=inMemoryPercentages,proto3" json:"inMemory_percentages,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
@ -6969,6 +6972,110 @@ func (m *OperatePrivilegeRequest) GetType() OperatePrivilegeType {
return OperatePrivilegeType_Grant
}
type GetLoadingProgressRequest struct {
// Not useful for now
Base *commonpb.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"`
CollectionName string `protobuf:"bytes,2,opt,name=collectionName,proto3" json:"collectionName,omitempty"`
PartitionNames []string `protobuf:"bytes,3,rep,name=partitionNames,proto3" json:"partitionNames,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GetLoadingProgressRequest) Reset() { *m = GetLoadingProgressRequest{} }
func (m *GetLoadingProgressRequest) String() string { return proto.CompactTextString(m) }
func (*GetLoadingProgressRequest) ProtoMessage() {}
func (*GetLoadingProgressRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_02345ba45cc0e303, []int{110}
}
func (m *GetLoadingProgressRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetLoadingProgressRequest.Unmarshal(m, b)
}
func (m *GetLoadingProgressRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetLoadingProgressRequest.Marshal(b, m, deterministic)
}
func (m *GetLoadingProgressRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetLoadingProgressRequest.Merge(m, src)
}
func (m *GetLoadingProgressRequest) XXX_Size() int {
return xxx_messageInfo_GetLoadingProgressRequest.Size(m)
}
func (m *GetLoadingProgressRequest) XXX_DiscardUnknown() {
xxx_messageInfo_GetLoadingProgressRequest.DiscardUnknown(m)
}
var xxx_messageInfo_GetLoadingProgressRequest proto.InternalMessageInfo
func (m *GetLoadingProgressRequest) GetBase() *commonpb.MsgBase {
if m != nil {
return m.Base
}
return nil
}
func (m *GetLoadingProgressRequest) GetCollectionName() string {
if m != nil {
return m.CollectionName
}
return ""
}
func (m *GetLoadingProgressRequest) GetPartitionNames() []string {
if m != nil {
return m.PartitionNames
}
return nil
}
type GetLoadingProgressResponse struct {
// Not useful for now
Status *commonpb.Status `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
Progress int64 `protobuf:"varint,2,opt,name=progress,proto3" json:"progress,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GetLoadingProgressResponse) Reset() { *m = GetLoadingProgressResponse{} }
func (m *GetLoadingProgressResponse) String() string { return proto.CompactTextString(m) }
func (*GetLoadingProgressResponse) ProtoMessage() {}
func (*GetLoadingProgressResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_02345ba45cc0e303, []int{111}
}
func (m *GetLoadingProgressResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetLoadingProgressResponse.Unmarshal(m, b)
}
func (m *GetLoadingProgressResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetLoadingProgressResponse.Marshal(b, m, deterministic)
}
func (m *GetLoadingProgressResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetLoadingProgressResponse.Merge(m, src)
}
func (m *GetLoadingProgressResponse) XXX_Size() int {
return xxx_messageInfo_GetLoadingProgressResponse.Size(m)
}
func (m *GetLoadingProgressResponse) XXX_DiscardUnknown() {
xxx_messageInfo_GetLoadingProgressResponse.DiscardUnknown(m)
}
var xxx_messageInfo_GetLoadingProgressResponse proto.InternalMessageInfo
func (m *GetLoadingProgressResponse) GetStatus() *commonpb.Status {
if m != nil {
return m.Status
}
return nil
}
func (m *GetLoadingProgressResponse) GetProgress() int64 {
if m != nil {
return m.Progress
}
return 0
}
type MilvusExt struct {
Version string `protobuf:"bytes,1,opt,name=version,proto3" json:"version,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
@ -6980,7 +7087,7 @@ func (m *MilvusExt) Reset() { *m = MilvusExt{} }
func (m *MilvusExt) String() string { return proto.CompactTextString(m) }
func (*MilvusExt) ProtoMessage() {}
func (*MilvusExt) Descriptor() ([]byte, []int) {
return fileDescriptor_02345ba45cc0e303, []int{110}
return fileDescriptor_02345ba45cc0e303, []int{112}
}
func (m *MilvusExt) XXX_Unmarshal(b []byte) error {
@ -7134,6 +7241,8 @@ func init() {
proto.RegisterType((*SelectGrantRequest)(nil), "milvus.proto.milvus.SelectGrantRequest")
proto.RegisterType((*SelectGrantResponse)(nil), "milvus.proto.milvus.SelectGrantResponse")
proto.RegisterType((*OperatePrivilegeRequest)(nil), "milvus.proto.milvus.OperatePrivilegeRequest")
proto.RegisterType((*GetLoadingProgressRequest)(nil), "milvus.proto.milvus.GetLoadingProgressRequest")
proto.RegisterType((*GetLoadingProgressResponse)(nil), "milvus.proto.milvus.GetLoadingProgressResponse")
proto.RegisterType((*MilvusExt)(nil), "milvus.proto.milvus.MilvusExt")
proto.RegisterExtension(E_MilvusExtObj)
}
@ -7141,340 +7250,345 @@ func init() {
func init() { proto.RegisterFile("milvus.proto", fileDescriptor_02345ba45cc0e303) }
var fileDescriptor_02345ba45cc0e303 = []byte{
// 5328 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xdc, 0x3d, 0x4b, 0x6c, 0x1c, 0x47,
0x76, 0xec, 0x19, 0xce, 0xef, 0xcd, 0x0c, 0x39, 0x2c, 0xfe, 0xc6, 0x23, 0xc9, 0xa2, 0xda, 0x96,
0x4d, 0x4b, 0x6b, 0xca, 0xa6, 0x2c, 0x7b, 0x2d, 0x7b, 0x6d, 0x4b, 0xa2, 0x25, 0x11, 0xd6, 0x87,
0x6e, 0xca, 0x5e, 0x6c, 0x1c, 0xa3, 0xd1, 0x9c, 0x2e, 0x0e, 0xdb, 0xea, 0xe9, 0x1e, 0x75, 0xf7,
0x90, 0xa2, 0x73, 0x59, 0x60, 0xb3, 0x8b, 0x0d, 0xb2, 0x59, 0x23, 0xdf, 0x45, 0x0e, 0xf9, 0x20,
0xd8, 0x4b, 0x90, 0x4d, 0x10, 0x27, 0x01, 0x02, 0x6c, 0x0e, 0xb9, 0x1b, 0x09, 0x92, 0x3d, 0x2c,
0x92, 0x45, 0x72, 0x5c, 0x24, 0xc8, 0x21, 0x40, 0x0e, 0xb9, 0x25, 0x41, 0x16, 0xf5, 0xe9, 0xee,
0xea, 0x9e, 0xea, 0xe1, 0x50, 0x63, 0x59, 0xd4, 0xf2, 0x34, 0xfd, 0xea, 0xf7, 0xea, 0x7d, 0xab,
0xea, 0xbd, 0x2a, 0x42, 0xad, 0x6b, 0xd9, 0xbb, 0x7d, 0x7f, 0xa5, 0xe7, 0xb9, 0x81, 0x8b, 0x66,
0xc5, 0xaf, 0x15, 0xf6, 0xd1, 0xaa, 0xb5, 0xdd, 0x6e, 0xd7, 0x75, 0x18, 0xb0, 0x55, 0xf3, 0xdb,
0x3b, 0xb8, 0x6b, 0xf0, 0xaf, 0xa5, 0x8e, 0xeb, 0x76, 0x6c, 0x7c, 0x8e, 0x7e, 0x6d, 0xf5, 0xb7,
0xcf, 0x99, 0xd8, 0x6f, 0x7b, 0x56, 0x2f, 0x70, 0x3d, 0x56, 0x43, 0xfd, 0x7d, 0x05, 0xd0, 0x15,
0x0f, 0x1b, 0x01, 0xbe, 0x64, 0x5b, 0x86, 0xaf, 0xe1, 0x7b, 0x7d, 0xec, 0x07, 0xe8, 0x05, 0x98,
0xdc, 0x32, 0x7c, 0xdc, 0x54, 0x96, 0x94, 0xe5, 0xea, 0xea, 0xf1, 0x95, 0xc4, 0xc0, 0x7c, 0xc0,
0x9b, 0x7e, 0xe7, 0xb2, 0xe1, 0x63, 0x8d, 0xd6, 0x44, 0x8b, 0x50, 0x32, 0xb7, 0x74, 0xc7, 0xe8,
0xe2, 0x66, 0x6e, 0x49, 0x59, 0xae, 0x68, 0x45, 0x73, 0xeb, 0x96, 0xd1, 0xc5, 0xe8, 0x59, 0x98,
0x6e, 0xbb, 0xb6, 0x8d, 0xdb, 0x81, 0xe5, 0x3a, 0xac, 0x42, 0x9e, 0x56, 0x98, 0x8a, 0xc1, 0xb4,
0xe2, 0x1c, 0x14, 0x0c, 0x82, 0x43, 0x73, 0x92, 0x16, 0xb3, 0x0f, 0xd5, 0x87, 0xc6, 0x9a, 0xe7,
0xf6, 0x1e, 0x16, 0x76, 0xd1, 0xa0, 0x79, 0x71, 0xd0, 0xdf, 0x53, 0x60, 0xe6, 0x92, 0x1d, 0x60,
0xef, 0x88, 0x12, 0xe5, 0x07, 0x39, 0x58, 0x64, 0x5c, 0xbb, 0x12, 0x55, 0x7f, 0x94, 0x58, 0x2e,
0x40, 0x91, 0xc9, 0x1d, 0x45, 0xb3, 0xa6, 0xf1, 0x2f, 0x74, 0x02, 0xc0, 0xdf, 0x31, 0x3c, 0xd3,
0xd7, 0x9d, 0x7e, 0xb7, 0x59, 0x58, 0x52, 0x96, 0x0b, 0x5a, 0x85, 0x41, 0x6e, 0xf5, 0xbb, 0x48,
0x83, 0x99, 0xb6, 0xeb, 0xf8, 0x96, 0x1f, 0x60, 0xa7, 0xbd, 0xaf, 0xdb, 0x78, 0x17, 0xdb, 0xcd,
0xe2, 0x92, 0xb2, 0x3c, 0xb5, 0x7a, 0x5a, 0x8a, 0xf7, 0x95, 0xb8, 0xf6, 0x0d, 0x52, 0x59, 0x6b,
0xb4, 0x53, 0x90, 0x8b, 0xe8, 0xb3, 0x37, 0xa6, 0xcb, 0x4a, 0x43, 0x69, 0xfe, 0x7f, 0xf8, 0xa7,
0xa8, 0x7f, 0xa0, 0xc0, 0x3c, 0x11, 0xa2, 0x23, 0x41, 0xac, 0x10, 0xc3, 0x9c, 0x88, 0xe1, 0x1f,
0x2b, 0x30, 0x77, 0xdd, 0xf0, 0x8f, 0x06, 0x37, 0x4f, 0x00, 0x04, 0x56, 0x17, 0xeb, 0x7e, 0x60,
0x74, 0x7b, 0x94, 0xa3, 0x93, 0x5a, 0x85, 0x40, 0x36, 0x09, 0x40, 0xfd, 0x1a, 0xd4, 0x2e, 0xbb,
0xae, 0xad, 0x61, 0xbf, 0xe7, 0x3a, 0x3e, 0x46, 0xe7, 0xa1, 0xe8, 0x07, 0x46, 0xd0, 0xf7, 0x39,
0x92, 0xc7, 0xa4, 0x48, 0x6e, 0xd2, 0x2a, 0x1a, 0xaf, 0x4a, 0xe4, 0x7a, 0xd7, 0xb0, 0xfb, 0x0c,
0xc7, 0xb2, 0xc6, 0x3e, 0xd4, 0x0f, 0x60, 0x6a, 0x33, 0xf0, 0x2c, 0xa7, 0xf3, 0x39, 0x76, 0x5e,
0x09, 0x3b, 0xff, 0x37, 0x05, 0x9e, 0x58, 0xa3, 0xf6, 0x6f, 0xeb, 0x88, 0xa8, 0x8d, 0x0a, 0xb5,
0x18, 0xb2, 0xbe, 0x46, 0x49, 0x9d, 0xd7, 0x12, 0xb0, 0x14, 0x33, 0x0a, 0x29, 0x66, 0x84, 0xc2,
0x94, 0x17, 0x85, 0xe9, 0xeb, 0x05, 0x68, 0xc9, 0x26, 0x3a, 0x0e, 0x49, 0xbf, 0x12, 0x69, 0x78,
0x8e, 0x36, 0x4a, 0xe9, 0x27, 0xf7, 0x3a, 0xf1, 0x68, 0x9b, 0x14, 0x10, 0x19, 0x82, 0xf4, 0x4c,
0xf3, 0x92, 0x99, 0xae, 0xc2, 0xfc, 0xae, 0xe5, 0x05, 0x7d, 0xc3, 0xd6, 0xdb, 0x3b, 0x86, 0xe3,
0x60, 0x9b, 0xd2, 0x8e, 0x98, 0xbe, 0xfc, 0x72, 0x45, 0x9b, 0xe5, 0x85, 0x57, 0x58, 0x19, 0x21,
0xa0, 0x8f, 0x5e, 0x82, 0x85, 0xde, 0xce, 0xbe, 0x6f, 0xb5, 0x07, 0x1a, 0x15, 0x68, 0xa3, 0xb9,
0xb0, 0x34, 0xd1, 0xea, 0x2c, 0xcc, 0xb4, 0xa9, 0xf5, 0x34, 0x75, 0x42, 0x49, 0x46, 0xda, 0x22,
0x25, 0x6d, 0x83, 0x17, 0xdc, 0x09, 0xe1, 0x04, 0xad, 0xb0, 0x72, 0x3f, 0x68, 0x0b, 0x0d, 0x4a,
0xb4, 0xc1, 0x2c, 0x2f, 0x7c, 0x2f, 0x68, 0xc7, 0x6d, 0x92, 0x76, 0xaf, 0x9c, 0xb6, 0x7b, 0x4d,
0x28, 0x51, 0x3b, 0x8e, 0xfd, 0x66, 0x85, 0xa2, 0x19, 0x7e, 0xa2, 0x75, 0x98, 0xf6, 0x03, 0xc3,
0x0b, 0xf4, 0x9e, 0xeb, 0x5b, 0x84, 0x2e, 0x7e, 0x13, 0x96, 0xf2, 0xcb, 0xd5, 0xd5, 0x25, 0x29,
0x93, 0xde, 0xc1, 0xfb, 0x6b, 0x46, 0x60, 0x6c, 0x18, 0x96, 0xa7, 0x4d, 0xd1, 0x86, 0x1b, 0x61,
0x3b, 0xb9, 0x71, 0xad, 0x8e, 0x65, 0x5c, 0x65, 0x92, 0x5d, 0x93, 0x49, 0xb6, 0xfa, 0x37, 0x0a,
0xcc, 0xdf, 0x70, 0x0d, 0xf3, 0x68, 0xe8, 0xd9, 0x69, 0x98, 0xf2, 0x70, 0xcf, 0xb6, 0xda, 0x06,
0xe1, 0xc7, 0x16, 0xf6, 0xa8, 0xa6, 0x15, 0xb4, 0x3a, 0x87, 0xde, 0xa2, 0xc0, 0x8b, 0xa5, 0xcf,
0xde, 0x98, 0x6c, 0x14, 0x9a, 0x79, 0xf5, 0x7b, 0x0a, 0x34, 0x35, 0x6c, 0x63, 0xc3, 0x3f, 0x1a,
0x86, 0x82, 0x61, 0x56, 0x6c, 0xe6, 0xd5, 0xff, 0x54, 0x60, 0xee, 0x1a, 0x0e, 0x88, 0x72, 0x5a,
0x7e, 0x60, 0xb5, 0x1f, 0xe9, 0xda, 0xe4, 0x59, 0x98, 0xee, 0x19, 0x5e, 0x60, 0x45, 0xf5, 0x42,
0x55, 0x9d, 0x8a, 0xc0, 0x4c, 0xdf, 0xce, 0xc1, 0x6c, 0xa7, 0x6f, 0x78, 0x86, 0x13, 0x60, 0x2c,
0x28, 0x10, 0x33, 0x66, 0x28, 0x2a, 0x8a, 0xf4, 0x87, 0xcd, 0x17, 0x9a, 0x79, 0xf5, 0x9b, 0x0a,
0xcc, 0xa7, 0xe6, 0x3b, 0x8e, 0x15, 0x7b, 0x05, 0x0a, 0xe4, 0x97, 0xdf, 0xcc, 0x51, 0xa5, 0x3a,
0x95, 0xa5, 0x54, 0xef, 0x13, 0x87, 0x41, 0xb5, 0x8a, 0xd5, 0x27, 0x0b, 0xc2, 0x27, 0xaf, 0xe1,
0x40, 0xb0, 0x6f, 0x47, 0x81, 0x03, 0x31, 0x9d, 0x3e, 0x51, 0xe0, 0x64, 0x26, 0x7e, 0x8f, 0x84,
0x62, 0xff, 0xad, 0xc0, 0xc2, 0xe6, 0x8e, 0xbb, 0x17, 0xa3, 0xf4, 0x30, 0x28, 0x95, 0xf4, 0x8e,
0xf9, 0x94, 0x77, 0x44, 0x2f, 0xc2, 0x64, 0xb0, 0xdf, 0xc3, 0x54, 0xdd, 0xa7, 0x56, 0x4f, 0xac,
0x48, 0xf6, 0x4f, 0x2b, 0x04, 0xc9, 0x3b, 0xfb, 0x3d, 0xac, 0xd1, 0xaa, 0xe8, 0x39, 0x68, 0xa4,
0x68, 0x1f, 0xfa, 0x92, 0xe9, 0x24, 0xf1, 0xfd, 0xd0, 0xf7, 0x4e, 0x8a, 0xbe, 0xf7, 0xbf, 0x72,
0xb0, 0x38, 0x30, 0xed, 0x71, 0x18, 0x20, 0xc3, 0x27, 0x27, 0xc5, 0x87, 0x98, 0x39, 0xa1, 0xaa,
0x65, 0x92, 0x4d, 0x4d, 0x7e, 0x39, 0xaf, 0xd5, 0x05, 0x37, 0x6b, 0xfa, 0xe8, 0x79, 0x40, 0x03,
0xde, 0x8f, 0x69, 0xee, 0xa4, 0x36, 0x93, 0x76, 0x7f, 0xd4, 0xc5, 0x4a, 0xfd, 0x1f, 0x23, 0xcb,
0xa4, 0x36, 0x27, 0x71, 0x80, 0x3e, 0x7a, 0x11, 0xe6, 0x2c, 0xe7, 0x26, 0xee, 0xba, 0xde, 0xbe,
0xde, 0xc3, 0x5e, 0x1b, 0x3b, 0x81, 0xd1, 0xc1, 0x7e, 0xb3, 0x48, 0x31, 0x9a, 0x0d, 0xcb, 0x36,
0xe2, 0x22, 0xf4, 0x32, 0x2c, 0xde, 0xeb, 0x63, 0x6f, 0x5f, 0xf7, 0xb1, 0xb7, 0x6b, 0xb5, 0xb1,
0x6e, 0xec, 0x1a, 0x96, 0x6d, 0x6c, 0xd9, 0xb8, 0x59, 0x5a, 0xca, 0x2f, 0x97, 0xb5, 0x79, 0x5a,
0xbc, 0xc9, 0x4a, 0x2f, 0x85, 0x85, 0xea, 0x5f, 0x2a, 0xb0, 0xc0, 0x36, 0x43, 0x1b, 0xa1, 0xd9,
0x79, 0xc4, 0xce, 0x26, 0x69, 0x15, 0xf9, 0xd6, 0xad, 0x9e, 0x30, 0x8a, 0xea, 0xa7, 0x0a, 0xcc,
0x91, 0x3d, 0xc9, 0xe3, 0x84, 0xf3, 0x9f, 0x2b, 0x30, 0x7b, 0xdd, 0xf0, 0x1f, 0x27, 0x94, 0xff,
0x85, 0x2f, 0x44, 0x22, 0x9c, 0x1f, 0x0f, 0x8f, 0x39, 0xb8, 0x62, 0x29, 0x48, 0x56, 0x2c, 0xea,
0x5f, 0xc7, 0x0b, 0x95, 0xc7, 0x6b, 0x82, 0xea, 0x0f, 0x15, 0x38, 0x71, 0x0d, 0x07, 0x11, 0xd6,
0x47, 0x63, 0x45, 0x33, 0xa2, 0x50, 0x7d, 0x97, 0xad, 0x06, 0xa4, 0xc8, 0x3f, 0x12, 0x67, 0xfb,
0xab, 0x39, 0x98, 0x27, 0x5e, 0xe7, 0x68, 0x08, 0xc1, 0x28, 0xdb, 0x5a, 0x89, 0xa0, 0x14, 0xa4,
0x9a, 0x10, 0xba, 0xf0, 0xe2, 0xc8, 0x2e, 0x5c, 0xfd, 0x8b, 0x1c, 0x5b, 0x7a, 0x88, 0xd4, 0x18,
0x87, 0x2d, 0x12, 0x5c, 0x73, 0x52, 0x5c, 0x55, 0xa8, 0x45, 0x90, 0xf5, 0xb5, 0xd0, 0xfd, 0x26,
0x60, 0x47, 0xd5, 0xfb, 0xaa, 0xdf, 0x51, 0x60, 0x21, 0x3c, 0x34, 0xd8, 0xc4, 0x9d, 0x2e, 0x76,
0x82, 0x07, 0x97, 0xa1, 0xb4, 0x04, 0xe4, 0x24, 0x12, 0x70, 0x1c, 0x2a, 0x3e, 0x1b, 0x27, 0x3a,
0x0f, 0x88, 0x01, 0xea, 0xdf, 0x2a, 0xb0, 0x38, 0x80, 0xce, 0x38, 0x4c, 0x6c, 0x42, 0xc9, 0x72,
0x4c, 0x7c, 0x3f, 0xc2, 0x26, 0xfc, 0x24, 0x25, 0x5b, 0x7d, 0xcb, 0x36, 0x23, 0x34, 0xc2, 0x4f,
0x74, 0x0a, 0x6a, 0xd8, 0x21, 0x6b, 0x0c, 0x9d, 0xd6, 0xa5, 0x82, 0x5c, 0xd6, 0xaa, 0x0c, 0xb6,
0x4e, 0x40, 0xa4, 0xf1, 0xb6, 0x85, 0x69, 0xe3, 0x02, 0x6b, 0xcc, 0x3f, 0xd5, 0x5f, 0x53, 0x60,
0x96, 0x48, 0x21, 0xc7, 0xde, 0x7f, 0xb8, 0xd4, 0x5c, 0x82, 0xaa, 0x20, 0x66, 0x7c, 0x22, 0x22,
0x48, 0xbd, 0x0b, 0x73, 0x49, 0x74, 0xc6, 0xa1, 0xe6, 0x93, 0x00, 0x11, 0xaf, 0x98, 0x36, 0xe4,
0x35, 0x01, 0xa2, 0xfe, 0x76, 0x2e, 0x0c, 0x2b, 0x50, 0x32, 0x3d, 0xe2, 0xd3, 0x4c, 0xca, 0x12,
0xd1, 0x9e, 0x57, 0x28, 0x84, 0x16, 0xaf, 0x41, 0x0d, 0xdf, 0x0f, 0x3c, 0x43, 0xef, 0x19, 0x9e,
0xd1, 0x65, 0x6a, 0x35, 0x92, 0xe9, 0xad, 0xd2, 0x66, 0x1b, 0xb4, 0x15, 0x19, 0x84, 0x8a, 0x08,
0x1b, 0xa4, 0xc8, 0x06, 0xa1, 0x90, 0x78, 0x9f, 0x56, 0x6d, 0xe6, 0xd5, 0x1f, 0x91, 0x55, 0x1f,
0x17, 0xeb, 0xa3, 0x4e, 0x99, 0xe4, 0x9c, 0x0a, 0xd2, 0x39, 0xd5, 0x9a, 0x79, 0xf5, 0xc7, 0x39,
0x68, 0xd0, 0xb9, 0xac, 0xf1, 0xe0, 0x92, 0xe5, 0x3a, 0xa9, 0xc6, 0x4a, 0xaa, 0xf1, 0x10, 0x6d,
0x7c, 0x15, 0x8a, 0x9c, 0x13, 0xf9, 0x51, 0x39, 0xc1, 0x1b, 0x1c, 0x34, 0x9f, 0x53, 0x50, 0xa3,
0x83, 0x60, 0x53, 0xf7, 0xdc, 0x3d, 0x9f, 0xeb, 0x6b, 0x95, 0xc3, 0x34, 0x77, 0x8f, 0xf6, 0x10,
0xb8, 0x81, 0x61, 0xb3, 0x0a, 0x45, 0x66, 0x94, 0x28, 0x84, 0x16, 0x5f, 0x60, 0xfe, 0x19, 0xd3,
0xa3, 0xbf, 0xa9, 0xd5, 0x93, 0x52, 0xd4, 0x28, 0x29, 0x88, 0xba, 0x60, 0xe6, 0x9d, 0x31, 0xba,
0x00, 0x8b, 0x8c, 0x16, 0xf4, 0x53, 0xdf, 0x36, 0x2c, 0x5b, 0xf7, 0xb0, 0xe1, 0xbb, 0x0e, 0x3d,
0x1a, 0xac, 0x68, 0x73, 0x56, 0xd4, 0xe6, 0xaa, 0x61, 0xd9, 0x1a, 0x2d, 0x53, 0xff, 0x48, 0x81,
0xf9, 0x94, 0xac, 0x8c, 0xa3, 0xb2, 0x77, 0x00, 0x31, 0x2c, 0xcc, 0x98, 0x4d, 0xe1, 0x4a, 0xe3,
0xb4, 0xd4, 0xad, 0xa6, 0x99, 0xaa, 0xcd, 0x58, 0x29, 0x88, 0xaf, 0xfe, 0x44, 0x81, 0xe3, 0xd7,
0x70, 0x40, 0xab, 0x5e, 0x26, 0x66, 0x73, 0xc3, 0x73, 0x3b, 0x1e, 0xf6, 0xfd, 0x9f, 0x03, 0xc1,
0xfe, 0x1d, 0xb6, 0x46, 0x95, 0xcd, 0x6d, 0x1c, 0x46, 0xa4, 0xe5, 0x30, 0x77, 0x90, 0x1c, 0xe6,
0x53, 0x72, 0x48, 0xad, 0x48, 0x88, 0x18, 0x93, 0xb4, 0xc7, 0x9f, 0xd8, 0xdf, 0x67, 0x27, 0x7d,
0xe2, 0x9c, 0xc6, 0x21, 0x72, 0xa4, 0xaa, 0xb9, 0x43, 0xa9, 0xea, 0x49, 0xa8, 0x8a, 0xea, 0xc9,
0x66, 0x0c, 0xdb, 0xb1, 0x52, 0xfe, 0xbd, 0xc2, 0xe2, 0xd1, 0x3f, 0x0f, 0xc6, 0xbb, 0xde, 0xcc,
0xab, 0x3f, 0xc8, 0x41, 0x7d, 0xdd, 0xf1, 0xb1, 0x17, 0x1c, 0xfd, 0x7d, 0x17, 0x7a, 0x13, 0xaa,
0x74, 0x86, 0xbe, 0x6e, 0x1a, 0x81, 0xc1, 0x5d, 0xf5, 0x93, 0xd2, 0x48, 0xd4, 0x55, 0x52, 0x6f,
0xcd, 0x08, 0x0c, 0x8d, 0x91, 0xc9, 0x27, 0xbf, 0xd1, 0x31, 0xa8, 0xec, 0x18, 0xfe, 0x8e, 0x7e,
0x17, 0xef, 0xb3, 0xc5, 0x70, 0x5d, 0x2b, 0x13, 0xc0, 0x3b, 0x78, 0xdf, 0x47, 0x4f, 0x40, 0xd9,
0xe9, 0x77, 0x99, 0xca, 0x11, 0x03, 0x5f, 0xd7, 0x4a, 0x4e, 0xbf, 0x4b, 0x14, 0x8e, 0x91, 0xab,
0xdc, 0xcc, 0xab, 0x7f, 0x97, 0x83, 0xa9, 0x9b, 0x7d, 0xb2, 0xdd, 0xa3, 0x01, 0xb5, 0xbe, 0x1d,
0x3c, 0x98, 0x78, 0x9e, 0x81, 0x3c, 0x5b, 0x38, 0x91, 0x16, 0x4d, 0xe9, 0x0c, 0xd6, 0xd7, 0x7c,
0x8d, 0x54, 0xa2, 0xc1, 0xa4, 0x7e, 0xbb, 0xcd, 0xd7, 0xa0, 0x79, 0x8a, 0x75, 0x85, 0x40, 0xd8,
0x0a, 0xf4, 0x18, 0x54, 0xb0, 0xe7, 0x45, 0x2b, 0x54, 0x3a, 0x27, 0xec, 0x79, 0xac, 0x50, 0x85,
0x9a, 0xd1, 0xbe, 0xeb, 0xb8, 0x7b, 0x36, 0x36, 0x3b, 0xd8, 0xa4, 0x82, 0x50, 0xd6, 0x12, 0x30,
0x26, 0x2a, 0x44, 0x02, 0xf4, 0xb6, 0x13, 0x84, 0x4e, 0x8f, 0x41, 0xae, 0x38, 0x01, 0x29, 0x36,
0xb1, 0x8d, 0x03, 0x4c, 0x8b, 0x4b, 0xac, 0x98, 0x41, 0x78, 0x71, 0xbf, 0x17, 0xb5, 0x2e, 0xb3,
0x62, 0x06, 0x21, 0xc5, 0xc7, 0xa1, 0x12, 0x1f, 0xf8, 0x57, 0xe2, 0xf3, 0x59, 0x0a, 0x50, 0x7f,
0xaa, 0x40, 0x7d, 0x8d, 0x76, 0xf5, 0x18, 0x48, 0x1f, 0x82, 0x49, 0x7c, 0xbf, 0xe7, 0x71, 0x65,
0xa2, 0xbf, 0x87, 0x0a, 0x14, 0x93, 0x9a, 0x4a, 0x33, 0xaf, 0x7e, 0x6b, 0x12, 0xea, 0x9b, 0xd8,
0xf0, 0xda, 0x3b, 0x8f, 0xc5, 0xe1, 0x53, 0x03, 0xf2, 0xa6, 0x6f, 0xf3, 0x79, 0x92, 0x9f, 0xe8,
0x2c, 0xcc, 0xf4, 0x6c, 0xa3, 0x8d, 0x77, 0x5c, 0xdb, 0xc4, 0x9e, 0xde, 0xf1, 0xdc, 0x3e, 0x0b,
0x98, 0xd6, 0xb4, 0x86, 0x50, 0x70, 0x8d, 0xc0, 0xd1, 0x2b, 0x50, 0x36, 0x7d, 0x5b, 0xa7, 0xbb,
0x76, 0xb6, 0x50, 0x92, 0xcf, 0x6f, 0xcd, 0xb7, 0xe9, 0xa6, 0xbd, 0x64, 0xb2, 0x1f, 0xe8, 0x29,
0xa8, 0xbb, 0xfd, 0xa0, 0xd7, 0x0f, 0x74, 0xa6, 0xb2, 0xcd, 0x32, 0x45, 0xaf, 0xc6, 0x80, 0x54,
0xa3, 0x7d, 0x74, 0x15, 0xea, 0x3e, 0x25, 0x65, 0xb8, 0x60, 0xaf, 0x8c, 0xba, 0x4c, 0xac, 0xb1,
0x76, 0x7c, 0xc5, 0xfe, 0x1c, 0x34, 0x02, 0xcf, 0xd8, 0xc5, 0xb6, 0x10, 0x90, 0x02, 0x2a, 0x9f,
0xd3, 0x0c, 0x1e, 0x47, 0x73, 0x33, 0xc2, 0x57, 0xd5, 0xac, 0xf0, 0x15, 0x9a, 0x82, 0x9c, 0x73,
0x8f, 0x46, 0x46, 0xf3, 0x5a, 0xce, 0xb9, 0xc7, 0x04, 0x61, 0xaa, 0x99, 0x57, 0xdf, 0x81, 0xc9,
0xeb, 0x56, 0x40, 0x29, 0x4c, 0xd4, 0x5f, 0xa1, 0xfb, 0x26, 0xaa, 0xe4, 0x4f, 0x40, 0xd9, 0x73,
0xf7, 0x98, 0x5d, 0x23, 0x6b, 0xb2, 0x9a, 0x56, 0xf2, 0xdc, 0x3d, 0x6a, 0xb4, 0x68, 0x72, 0x8d,
0xeb, 0x61, 0xb6, 0x22, 0xce, 0x69, 0xfc, 0x4b, 0xfd, 0x33, 0x25, 0x96, 0x2a, 0x62, 0x89, 0xfc,
0x07, 0x33, 0x45, 0x6f, 0x42, 0xc9, 0x63, 0xed, 0x87, 0x86, 0xf6, 0xc5, 0x91, 0xa8, 0x5d, 0x0d,
0x5b, 0x8d, 0x2c, 0x80, 0x64, 0x47, 0x5c, 0xbb, 0x6a, 0xf7, 0xfd, 0x87, 0xa1, 0x05, 0xb2, 0x30,
0x49, 0x5e, 0x1e, 0xb6, 0xa1, 0xdc, 0x98, 0x5e, 0xca, 0xab, 0xff, 0x33, 0x09, 0x75, 0x8e, 0xcf,
0x38, 0x4b, 0x8d, 0x4c, 0x9c, 0x36, 0xa1, 0x4a, 0xc6, 0xd6, 0x7d, 0xdc, 0x09, 0x4f, 0x83, 0xaa,
0xab, 0xab, 0xd2, 0xa5, 0x76, 0x02, 0x0d, 0x9a, 0x46, 0xb1, 0x49, 0x1b, 0xbd, 0xed, 0x04, 0xde,
0xbe, 0x06, 0xed, 0x08, 0x80, 0xda, 0x30, 0xb3, 0x4d, 0x2a, 0xeb, 0x62, 0xd7, 0x93, 0xb4, 0xeb,
0x57, 0x46, 0xe8, 0x9a, 0x7e, 0xa5, 0xfb, 0x9f, 0xde, 0x4e, 0x42, 0xd1, 0x87, 0x8c, 0xa5, 0xba,
0x8f, 0x0d, 0xae, 0x1f, 0xdc, 0xd9, 0x5e, 0x18, 0x19, 0x7b, 0x83, 0x29, 0x10, 0x1b, 0xa0, 0xde,
0x16, 0x61, 0xad, 0x0f, 0x61, 0x3a, 0x85, 0x02, 0xd1, 0x88, 0xbb, 0x78, 0x9f, 0x6f, 0x14, 0xc9,
0x4f, 0xf4, 0x92, 0x98, 0xc4, 0x93, 0xe5, 0xe6, 0x6f, 0xb8, 0x4e, 0xe7, 0x92, 0xe7, 0x19, 0xfb,
0x3c, 0xc9, 0xe7, 0x62, 0xee, 0xcb, 0x4a, 0x6b, 0x0b, 0xe6, 0x64, 0xd3, 0xfc, 0x5c, 0xc7, 0x78,
0x0b, 0xd0, 0xe0, 0x3c, 0x25, 0x23, 0x24, 0x52, 0x91, 0xf2, 0x42, 0x0f, 0xea, 0x27, 0x79, 0xa8,
0xbd, 0xdb, 0xc7, 0xde, 0xfe, 0xa3, 0xf4, 0x09, 0xa1, 0x4f, 0x9b, 0x14, 0x7c, 0xda, 0x80, 0x19,
0x2e, 0x48, 0xcc, 0xb0, 0xc4, 0x99, 0x14, 0xa5, 0xce, 0x44, 0x66, 0x67, 0x4b, 0x87, 0xb2, 0xb3,
0xe5, 0x4c, 0x3b, 0xbb, 0x06, 0x35, 0x16, 0x31, 0x3c, 0xac, 0x2b, 0xa8, 0xd2, 0x66, 0xcc, 0x13,
0x30, 0x7b, 0xd0, 0x68, 0xe6, 0xd5, 0x3f, 0x55, 0x22, 0x8e, 0x8c, 0x65, 0x4f, 0x13, 0x8b, 0xd4,
0xdc, 0xa1, 0x17, 0xa9, 0x23, 0xdb, 0xd3, 0x4f, 0x15, 0xa8, 0xbc, 0x8f, 0xdb, 0x81, 0xeb, 0x11,
0x9d, 0x95, 0x34, 0x53, 0x46, 0xd8, 0x39, 0xe4, 0xd2, 0x3b, 0x87, 0xf3, 0x50, 0xb6, 0x4c, 0xdd,
0x20, 0x02, 0x4f, 0xc7, 0x1d, 0xb6, 0x3e, 0x2d, 0x59, 0x26, 0xd5, 0x8c, 0xd1, 0xe3, 0x3e, 0xdf,
0x53, 0xa0, 0xc6, 0x70, 0xf6, 0x59, 0xcb, 0xd7, 0x84, 0xe1, 0x14, 0x99, 0x16, 0xf2, 0x8f, 0x68,
0xa2, 0xd7, 0x27, 0xe2, 0x61, 0x2f, 0x01, 0x10, 0x22, 0xf3, 0xe6, 0x4c, 0x89, 0x97, 0xa4, 0xd8,
0xb2, 0xe6, 0x94, 0xe0, 0xd7, 0x27, 0xb4, 0x0a, 0x69, 0x45, 0xbb, 0xb8, 0x5c, 0x82, 0x02, 0x6d,
0xad, 0xfe, 0xaf, 0x02, 0xb3, 0x57, 0x0c, 0xbb, 0xbd, 0x66, 0xf9, 0x81, 0xe1, 0xb4, 0xc7, 0x58,
0x91, 0x5e, 0x84, 0x92, 0xdb, 0xd3, 0x6d, 0xbc, 0x1d, 0x70, 0x94, 0x4e, 0x0d, 0x99, 0x11, 0x23,
0x83, 0x56, 0x74, 0x7b, 0x37, 0xf0, 0x76, 0x80, 0x5e, 0x87, 0xb2, 0xdb, 0xd3, 0x3d, 0xab, 0xb3,
0x13, 0x70, 0xea, 0x8f, 0xd0, 0xb8, 0xe4, 0xf6, 0x34, 0xd2, 0x42, 0x38, 0x3c, 0x9b, 0x3c, 0xe4,
0xe1, 0x99, 0xfa, 0xa3, 0x81, 0xe9, 0x8f, 0xa1, 0x03, 0x17, 0xa1, 0x6c, 0x39, 0x81, 0x6e, 0x5a,
0x7e, 0x48, 0x82, 0x13, 0x72, 0x19, 0x72, 0x02, 0x3a, 0x03, 0xca, 0x53, 0x27, 0x20, 0x63, 0xa3,
0xb7, 0x00, 0xb6, 0x6d, 0xd7, 0xe0, 0xad, 0x19, 0x0d, 0x4e, 0xca, 0xd5, 0x87, 0x54, 0x0b, 0xdb,
0x57, 0x68, 0x23, 0xd2, 0x43, 0xcc, 0xd2, 0x7f, 0x50, 0x60, 0x7e, 0x03, 0x7b, 0x2c, 0x87, 0x2d,
0xe0, 0x27, 0xdf, 0xeb, 0xce, 0xb6, 0x9b, 0x0c, 0x3e, 0x28, 0xa9, 0xe0, 0xc3, 0xe7, 0x73, 0xe0,
0x9e, 0xd8, 0x4f, 0xb2, 0x10, 0x58, 0xb8, 0x9f, 0x0c, 0x03, 0x7d, 0x6c, 0x63, 0x3e, 0x95, 0xc1,
0x26, 0x8e, 0xaf, 0x78, 0x3e, 0xa1, 0xfe, 0x26, 0xcb, 0xf3, 0x91, 0x4e, 0xea, 0xc1, 0x05, 0x76,
0x01, 0xb8, 0xe3, 0x48, 0xb9, 0x91, 0x67, 0x20, 0x65, 0x3b, 0x32, 0x0c, 0xd1, 0xef, 0x2a, 0xb0,
0x94, 0x8d, 0xd5, 0x38, 0x6b, 0xab, 0xb7, 0xa0, 0x60, 0x39, 0xdb, 0x6e, 0x78, 0x4e, 0x79, 0x46,
0xaa, 0x0b, 0xf2, 0x71, 0x59, 0x43, 0xf5, 0x1f, 0x73, 0xd0, 0x78, 0x97, 0xe5, 0x8d, 0x7c, 0xe1,
0xec, 0xef, 0xe2, 0xae, 0xee, 0x5b, 0x1f, 0xe3, 0x90, 0xfd, 0x5d, 0xdc, 0xdd, 0xb4, 0x3e, 0xc6,
0x09, 0xc9, 0x28, 0x24, 0x25, 0x63, 0x78, 0x20, 0x41, 0x3c, 0x37, 0x2f, 0x25, 0xcf, 0xcd, 0x17,
0xa0, 0xe8, 0xb8, 0x26, 0x5e, 0x5f, 0xe3, 0x7b, 0x70, 0xfe, 0x15, 0x8b, 0x5a, 0xe5, 0x70, 0xa2,
0x46, 0x86, 0xa2, 0x5d, 0x98, 0x2c, 0x05, 0x95, 0xe0, 0xc8, 0x3e, 0xd5, 0xef, 0x2a, 0xd0, 0xba,
0x86, 0x83, 0x34, 0x55, 0x1f, 0x9d, 0xfc, 0x7d, 0xa2, 0xc0, 0x31, 0x29, 0x42, 0xe3, 0x88, 0xde,
0x6b, 0x49, 0xd1, 0x93, 0x1f, 0x91, 0x0f, 0x0c, 0xc9, 0xa5, 0xee, 0x45, 0xa8, 0xad, 0xf5, 0xbb,
0xdd, 0x68, 0x6d, 0x77, 0x0a, 0x6a, 0x1e, 0xfb, 0xc9, 0xf6, 0xc5, 0xcc, 0x33, 0x57, 0x39, 0x8c,
0xec, 0x7e, 0xd5, 0xb3, 0x50, 0xe7, 0x4d, 0x38, 0xd6, 0x2d, 0x28, 0x7b, 0xfc, 0x37, 0xaf, 0x1f,
0x7d, 0xab, 0xf3, 0x30, 0xab, 0xe1, 0x0e, 0x11, 0x7a, 0xef, 0x86, 0xe5, 0xdc, 0xe5, 0xc3, 0xa8,
0xdf, 0x50, 0x60, 0x2e, 0x09, 0xe7, 0x7d, 0xbd, 0x0c, 0x25, 0xc3, 0x34, 0x3d, 0xec, 0xfb, 0x43,
0xd9, 0x72, 0x89, 0xd5, 0xd1, 0xc2, 0xca, 0x02, 0xe5, 0x72, 0x23, 0x53, 0x4e, 0xd5, 0x61, 0xe6,
0x1a, 0x0e, 0x6e, 0xe2, 0xc0, 0x1b, 0x2b, 0x9d, 0xa3, 0x49, 0x36, 0xa6, 0xb4, 0x31, 0x17, 0x8b,
0xf0, 0x53, 0xfd, 0x8e, 0x02, 0x48, 0x1c, 0x61, 0x1c, 0x36, 0x8b, 0x54, 0xce, 0x25, 0xa9, 0xcc,
0x12, 0xea, 0xba, 0x3d, 0xd7, 0xc1, 0x4e, 0x20, 0x2e, 0xc4, 0xea, 0x11, 0x94, 0x8a, 0xdf, 0x4f,
0x15, 0x40, 0x37, 0x5c, 0xc3, 0xbc, 0x6c, 0xd8, 0xe3, 0x2d, 0x1c, 0x4e, 0x00, 0xf8, 0x5e, 0x5b,
0xe7, 0x7a, 0x9c, 0xe3, 0x76, 0xc9, 0x6b, 0xdf, 0x62, 0xaa, 0x7c, 0x12, 0xaa, 0xa6, 0x1f, 0xf0,
0xe2, 0x30, 0xbb, 0x00, 0x4c, 0x3f, 0x60, 0xe5, 0x34, 0xaf, 0x9d, 0xec, 0xd8, 0xb0, 0xa9, 0x0b,
0xc1, 0xd9, 0x49, 0x5a, 0xad, 0xc1, 0x0a, 0x36, 0x23, 0xb8, 0x44, 0xb9, 0x0a, 0xd9, 0x39, 0xa6,
0x33, 0xcd, 0x82, 0xba, 0x0d, 0x8b, 0x37, 0x0d, 0xa7, 0x6f, 0xd8, 0x57, 0xdc, 0x6e, 0xcf, 0x48,
0xe4, 0x44, 0xa7, 0x2d, 0xa6, 0x22, 0xb1, 0x98, 0x4f, 0xb2, 0x54, 0x4d, 0xb6, 0xe8, 0xa7, 0x93,
0x9b, 0xd4, 0x04, 0x08, 0x1b, 0xa7, 0xd4, 0x54, 0x54, 0x1f, 0x9a, 0x83, 0xe3, 0x8c, 0xc3, 0x62,
0x8a, 0x5d, 0xd8, 0x95, 0x68, 0xcf, 0x63, 0x98, 0xfa, 0x26, 0x3c, 0x41, 0xf3, 0x67, 0x43, 0x50,
0x22, 0xac, 0x92, 0xee, 0x40, 0x91, 0x74, 0xf0, 0x27, 0x39, 0x6a, 0x14, 0x07, 0x7a, 0x18, 0x07,
0xf1, 0x8b, 0xc9, 0x20, 0xc6, 0xd3, 0x19, 0x69, 0xfb, 0xc9, 0x11, 0xb9, 0xf9, 0x5e, 0x86, 0x69,
0x7c, 0x1f, 0xb7, 0xfb, 0x81, 0xe5, 0x74, 0x36, 0x6c, 0xc3, 0xb9, 0xe5, 0x72, 0x27, 0x95, 0x06,
0xa3, 0xa7, 0xa1, 0x4e, 0xd8, 0xe0, 0xf6, 0x03, 0x5e, 0x8f, 0x79, 0xab, 0x24, 0x90, 0xf4, 0x47,
0xe6, 0x6b, 0xe3, 0x00, 0x9b, 0xbc, 0x1e, 0x73, 0x5d, 0x69, 0x30, 0xa1, 0xd6, 0xb6, 0x61, 0xd9,
0x51, 0x35, 0x76, 0xa2, 0x9c, 0x80, 0x0d, 0x90, 0x9b, 0x80, 0xfd, 0xc3, 0x90, 0xfb, 0x9f, 0x94,
0x14, 0xb9, 0x79, 0x0f, 0x8f, 0x8a, 0xdc, 0xd7, 0x01, 0xba, 0xd8, 0xeb, 0xe0, 0x75, 0xea, 0x32,
0xd8, 0x51, 0xcf, 0xb2, 0xd4, 0x65, 0xc4, 0x1d, 0xdc, 0x0c, 0x1b, 0x68, 0x42, 0x5b, 0xf5, 0x1a,
0xcc, 0x4a, 0xaa, 0x10, 0x6b, 0xe8, 0xbb, 0x7d, 0xaf, 0x8d, 0xc3, 0x63, 0xc3, 0xf0, 0x93, 0x78,
0xcf, 0xc0, 0xf0, 0x3a, 0x38, 0xe0, 0x82, 0xcd, 0xbf, 0xd4, 0x97, 0x69, 0x90, 0x90, 0x9e, 0x84,
0x24, 0xa4, 0x39, 0x99, 0xbb, 0xa1, 0x0c, 0xe4, 0x6e, 0x6c, 0xd3, 0x40, 0x9c, 0xd8, 0x6e, 0xcc,
0xbc, 0x1b, 0x7a, 0xba, 0x84, 0x4d, 0x7e, 0xd5, 0x2b, 0xfc, 0x54, 0xff, 0x4f, 0x81, 0xfa, 0x7a,
0xb7, 0xe7, 0xc6, 0xa1, 0xa7, 0x91, 0xb7, 0xb0, 0x83, 0x27, 0xf6, 0x39, 0xd9, 0x89, 0xfd, 0x53,
0x50, 0x4f, 0x5e, 0x0a, 0x62, 0x27, 0x82, 0xb5, 0xb6, 0x78, 0x19, 0xe8, 0x18, 0x54, 0x3c, 0x77,
0x4f, 0x27, 0x06, 0xd8, 0xe4, 0x19, 0x3e, 0x65, 0xcf, 0xdd, 0x23, 0x66, 0xd9, 0x44, 0x73, 0x50,
0xd8, 0xb6, 0xec, 0x28, 0x39, 0x8d, 0x7d, 0xa0, 0xd7, 0xc8, 0x06, 0x8f, 0xc5, 0xcf, 0x8b, 0xa3,
0xee, 0xb3, 0xc2, 0x16, 0xcc, 0xce, 0xa1, 0xa6, 0xa2, 0x7e, 0x00, 0x53, 0xe1, 0xf4, 0xc7, 0xbc,
0xec, 0x16, 0x18, 0xfe, 0xdd, 0x30, 0x0b, 0x87, 0x7d, 0xa8, 0x67, 0x59, 0x34, 0x95, 0xf6, 0x9f,
0xe0, 0x3e, 0x82, 0x49, 0x52, 0x83, 0x2b, 0x15, 0xfd, 0xad, 0xfe, 0x7b, 0x0e, 0x16, 0xd2, 0xb5,
0xc7, 0x41, 0xe9, 0xe5, 0xa4, 0x22, 0xc9, 0xef, 0x2e, 0x89, 0xa3, 0x71, 0x25, 0xe2, 0xac, 0x68,
0xbb, 0x7d, 0x27, 0xe0, 0xd6, 0x8a, 0xb0, 0xe2, 0x0a, 0xf9, 0x46, 0x8b, 0x50, 0xb2, 0x4c, 0xdd,
0x26, 0x9b, 0x42, 0xe6, 0xd2, 0x8a, 0x96, 0x79, 0x83, 0x6c, 0x18, 0x5f, 0x09, 0x17, 0x6a, 0x23,
0xa7, 0xee, 0xb0, 0xfa, 0x68, 0x0a, 0x72, 0x96, 0xc9, 0xcd, 0x53, 0xce, 0x32, 0xa9, 0xb8, 0x88,
0xf9, 0xf3, 0x7c, 0x89, 0x2d, 0xba, 0x31, 0x93, 0x38, 0x61, 0xae, 0x2b, 0x34, 0xc3, 0xbe, 0x9c,
0x54, 0x1f, 0x93, 0xca, 0x13, 0xcb, 0xc9, 0xd3, 0x03, 0x9f, 0x2e, 0xba, 0xf3, 0x5a, 0x99, 0x01,
0xee, 0xf8, 0xea, 0x57, 0x61, 0x81, 0xe0, 0xcc, 0xe6, 0x7e, 0x87, 0x70, 0xea, 0xd0, 0xb2, 0x3f,
0x07, 0x05, 0xdb, 0xea, 0x5a, 0xa1, 0xb6, 0xb3, 0x0f, 0xf5, 0xd7, 0x15, 0x58, 0x1c, 0xe8, 0x79,
0x1c, 0x1e, 0x5e, 0x12, 0xc5, 0xaa, 0xba, 0x7a, 0x56, 0x6a, 0xcb, 0xe4, 0x42, 0x13, 0xca, 0xe0,
0x6f, 0xb1, 0x65, 0x9a, 0xc6, 0x52, 0x96, 0x1f, 0x72, 0x02, 0xdc, 0x32, 0x34, 0xf6, 0xac, 0x60,
0x47, 0xa7, 0xb7, 0xec, 0xe8, 0x1a, 0x89, 0x25, 0x4e, 0x94, 0xb5, 0x29, 0x02, 0xdf, 0x24, 0x60,
0xb2, 0x4e, 0xf2, 0xd5, 0x6f, 0x2b, 0x30, 0x9b, 0x40, 0x6b, 0x1c, 0x32, 0xbd, 0x4e, 0x96, 0x8f,
0xac, 0x23, 0x4e, 0xa9, 0x25, 0x29, 0xa5, 0xf8, 0x68, 0xd4, 0xda, 0x47, 0x2d, 0xd4, 0x9f, 0x28,
0x50, 0x15, 0x4a, 0xc8, 0xbe, 0x94, 0x97, 0xc5, 0xfb, 0xd2, 0x08, 0x30, 0x12, 0x19, 0x9e, 0x82,
0xd8, 0x06, 0x0a, 0x57, 0x40, 0x84, 0x1c, 0x54, 0xd3, 0x47, 0xd7, 0x61, 0x8a, 0x91, 0x29, 0x42,
0x5d, 0x7a, 0x5c, 0x14, 0x65, 0xd7, 0x1a, 0x9e, 0xc9, 0xb1, 0xd4, 0xea, 0xbe, 0xf0, 0xc5, 0x62,
0xe6, 0xae, 0x89, 0xe9, 0x48, 0x85, 0x81, 0x5d, 0x62, 0x4d, 0x6c, 0x4a, 0x56, 0xda, 0x36, 0x36,
0x4c, 0xec, 0x45, 0x73, 0x8b, 0xbe, 0x89, 0x56, 0xb1, 0xdf, 0x3a, 0xd9, 0x79, 0x70, 0x6b, 0x0e,
0x0c, 0x44, 0x36, 0x25, 0xe8, 0x19, 0x98, 0x36, 0xbb, 0x89, 0x2b, 0x9e, 0xe1, 0x5a, 0xdc, 0xec,
0x0a, 0x77, 0x3b, 0x13, 0x08, 0x4d, 0x26, 0x11, 0xfa, 0x66, 0x7c, 0x69, 0xde, 0xc3, 0x26, 0x76,
0x02, 0xcb, 0xb0, 0x1f, 0x5c, 0x26, 0x5b, 0x50, 0xee, 0xfb, 0xd8, 0x13, 0x9c, 0x4f, 0xf4, 0x4d,
0xca, 0x7a, 0x86, 0xef, 0xef, 0xb9, 0x9e, 0xc9, 0xb1, 0x8c, 0xbe, 0x87, 0x24, 0xf4, 0xb2, 0x8b,
0xd6, 0xf2, 0x84, 0xde, 0x97, 0x61, 0xb1, 0xeb, 0x9a, 0xd6, 0xb6, 0x25, 0xcb, 0x03, 0x26, 0xcd,
0xe6, 0xc3, 0xe2, 0x44, 0xbb, 0xf0, 0x8a, 0xd2, 0xac, 0x78, 0x45, 0xe9, 0xfb, 0x39, 0x58, 0x7c,
0xaf, 0x67, 0x7e, 0x01, 0x74, 0x58, 0x82, 0xaa, 0x6b, 0x9b, 0x1b, 0x49, 0x52, 0x88, 0x20, 0x52,
0xc3, 0xc1, 0x7b, 0x51, 0x0d, 0x16, 0x86, 0x10, 0x41, 0x43, 0x13, 0xa0, 0x1f, 0x88, 0x5e, 0xc5,
0x61, 0xf4, 0xaa, 0x7c, 0xf6, 0x46, 0xb1, 0x9c, 0x6b, 0xcc, 0x35, 0x73, 0xea, 0x2f, 0xc1, 0x22,
0x4b, 0x4d, 0x78, 0xc8, 0x54, 0x0a, 0x79, 0x34, 0x2f, 0xf2, 0xe8, 0x23, 0x98, 0x27, 0xd6, 0x9c,
0x0c, 0xfd, 0x9e, 0x8f, 0xbd, 0x31, 0x8d, 0xd4, 0x71, 0xa8, 0x84, 0xa3, 0x85, 0xa9, 0xeb, 0x31,
0x40, 0xfd, 0x45, 0x98, 0x4b, 0x8d, 0xf5, 0x80, 0xb3, 0x0c, 0x67, 0xb2, 0x20, 0xce, 0x64, 0x09,
0x40, 0x73, 0x6d, 0xfc, 0xb6, 0x13, 0x58, 0xc1, 0x3e, 0x59, 0x7d, 0x08, 0xae, 0x8d, 0xfe, 0x26,
0x35, 0xc8, 0xb8, 0x43, 0x6a, 0xfc, 0x86, 0x02, 0x33, 0x4c, 0x73, 0x49, 0x57, 0x0f, 0xce, 0x85,
0x57, 0xa0, 0x88, 0xe9, 0x28, 0xfc, 0x34, 0xe3, 0xa4, 0xdc, 0x54, 0x47, 0xe8, 0x6a, 0xbc, 0xba,
0x54, 0x8d, 0x02, 0x98, 0x5e, 0xf3, 0xdc, 0xde, 0x78, 0x18, 0xd1, 0x15, 0x8f, 0x8d, 0xc5, 0x35,
0x6c, 0x99, 0x00, 0x6e, 0x65, 0x09, 0xc6, 0x8f, 0x15, 0x58, 0xb8, 0xdd, 0xc3, 0x9e, 0x11, 0x60,
0x42, 0xb4, 0xf1, 0x46, 0x1f, 0xa6, 0xbb, 0x09, 0xcc, 0xf2, 0x49, 0xcc, 0xd0, 0xeb, 0x89, 0x7b,
0x95, 0xf2, 0x7d, 0x4e, 0x0a, 0xcb, 0xf8, 0x7e, 0x46, 0x38, 0xaf, 0x45, 0x71, 0x5e, 0x3f, 0x54,
0x60, 0x66, 0x13, 0x13, 0x3f, 0x36, 0xde, 0x94, 0xce, 0xc3, 0x24, 0xc1, 0x72, 0x54, 0x06, 0xd3,
0xca, 0xe8, 0x0c, 0xcc, 0x58, 0x4e, 0xdb, 0xee, 0x9b, 0x58, 0x27, 0xf3, 0xd7, 0xc9, 0xf2, 0x90,
0x2f, 0x1e, 0xa6, 0x79, 0x01, 0x99, 0x06, 0x71, 0xd1, 0x52, 0x19, 0xbf, 0xcf, 0x64, 0x3c, 0x4a,
0x08, 0x63, 0x28, 0x28, 0x87, 0x41, 0xe1, 0x02, 0x14, 0xc8, 0xd0, 0xe1, 0x22, 0x42, 0xde, 0x2a,
0x56, 0x13, 0x8d, 0xd5, 0x56, 0x7f, 0x59, 0x01, 0x24, 0x92, 0x6d, 0x1c, 0x2b, 0xf1, 0xaa, 0x98,
0x08, 0x92, 0x1f, 0x8a, 0x3a, 0x9b, 0x69, 0x94, 0x02, 0xa2, 0x7e, 0x1a, 0x71, 0x8f, 0xb2, 0x7b,
0x1c, 0xee, 0x91, 0x79, 0x0d, 0xe5, 0x9e, 0x40, 0x04, 0x5a, 0x59, 0xe4, 0x1e, 0x95, 0x58, 0x09,
0xf7, 0x08, 0xce, 0x94, 0x7b, 0xdc, 0xbe, 0x37, 0x9b, 0x39, 0xc2, 0x34, 0x86, 0x6c, 0xc8, 0x34,
0x3a, 0xb2, 0x72, 0x98, 0x91, 0x2f, 0x40, 0x81, 0x8c, 0x78, 0x30, 0xbd, 0x42, 0xa6, 0xd1, 0xda,
0x02, 0xd3, 0x38, 0x02, 0x0f, 0x9f, 0x69, 0xf1, 0x4c, 0x63, 0xa6, 0xa9, 0x50, 0xbb, 0xbd, 0xf5,
0x11, 0x6e, 0x07, 0x43, 0x2c, 0xef, 0x69, 0x98, 0xde, 0xf0, 0xac, 0x5d, 0xcb, 0xc6, 0x9d, 0x61,
0x26, 0xfc, 0xdb, 0x0a, 0xd4, 0xaf, 0x79, 0x86, 0x13, 0xb8, 0xa1, 0x19, 0x7f, 0x20, 0x7a, 0x5e,
0x86, 0x4a, 0x2f, 0x1c, 0x8d, 0xcb, 0xc0, 0xd3, 0xf2, 0x88, 0x4f, 0x12, 0x27, 0x2d, 0x6e, 0xa6,
0xbe, 0x0f, 0x73, 0x14, 0x93, 0x34, 0xda, 0x6f, 0x40, 0x99, 0x1a, 0x73, 0x8b, 0x1f, 0xa0, 0x54,
0x57, 0x55, 0xf9, 0x96, 0x46, 0x9c, 0x86, 0x16, 0xb5, 0x51, 0xff, 0x55, 0x81, 0x2a, 0x2d, 0x8b,
0x27, 0x78, 0x78, 0x2d, 0x7f, 0x15, 0x8a, 0x2e, 0x25, 0xf9, 0xd0, 0xc0, 0xb0, 0xc8, 0x15, 0x8d,
0x37, 0x20, 0x2b, 0x64, 0xf6, 0x4b, 0xb4, 0xc8, 0xc0, 0x40, 0xdc, 0x26, 0x97, 0x3a, 0x0c, 0x77,
0x6a, 0x96, 0x47, 0x9b, 0x5f, 0xd8, 0x84, 0xee, 0xd5, 0x98, 0x4c, 0xd2, 0x0a, 0x0f, 0xae, 0xc2,
0x5f, 0x4e, 0xf9, 0xd8, 0xa5, 0x6c, 0x2c, 0xe4, 0x4e, 0x36, 0x61, 0x59, 0xc9, 0x5e, 0x2d, 0x81,
0xd6, 0x98, 0x7b, 0xb5, 0x48, 0x04, 0x86, 0xed, 0xd5, 0x44, 0xe4, 0x62, 0x01, 0xf8, 0x67, 0x05,
0x16, 0xb9, 0x4f, 0x8b, 0x64, 0xeb, 0x11, 0x90, 0x09, 0x7d, 0x85, 0xfb, 0xde, 0x3c, 0xf5, 0xbd,
0xcf, 0x0d, 0xf3, 0xbd, 0x11, 0x9e, 0x07, 0x38, 0xdf, 0xd3, 0x50, 0xb9, 0x49, 0x1b, 0xbe, 0x7d,
0x3f, 0x40, 0x4d, 0x28, 0xed, 0x62, 0xcf, 0xb7, 0x5c, 0x87, 0xab, 0x78, 0xf8, 0x79, 0xe6, 0x14,
0x94, 0xc3, 0x9b, 0x96, 0xa8, 0x04, 0xf9, 0x4b, 0xb6, 0xdd, 0x98, 0x40, 0x35, 0x28, 0xaf, 0xf3,
0xeb, 0x84, 0x0d, 0xe5, 0xcc, 0x5b, 0x30, 0x2b, 0xf1, 0xfb, 0x68, 0x06, 0xea, 0x97, 0x4c, 0xba,
0xba, 0xbc, 0xe3, 0x12, 0x60, 0x63, 0x02, 0x2d, 0x00, 0xd2, 0x70, 0xd7, 0xdd, 0xa5, 0x15, 0xaf,
0x7a, 0x6e, 0x97, 0xc2, 0x95, 0x33, 0xcf, 0xc3, 0x9c, 0x0c, 0x7b, 0x54, 0x81, 0x02, 0xa5, 0x46,
0x63, 0x02, 0x01, 0x14, 0x35, 0xbc, 0xeb, 0xde, 0xc5, 0x0d, 0x65, 0xf5, 0xaf, 0xce, 0x40, 0x9d,
0xe1, 0xce, 0xdf, 0x05, 0x40, 0x3a, 0x34, 0xd2, 0x4f, 0xa3, 0xa1, 0x2f, 0xc9, 0x4f, 0x62, 0xe5,
0x2f, 0xa8, 0xb5, 0x86, 0x09, 0x93, 0x3a, 0x81, 0x3e, 0x80, 0xa9, 0xe4, 0x63, 0x62, 0x48, 0x1e,
0x96, 0x96, 0xbe, 0x38, 0x76, 0x50, 0xe7, 0x3a, 0xd4, 0x13, 0xef, 0x80, 0x21, 0x39, 0x83, 0x65,
0x6f, 0x85, 0xb5, 0xe4, 0xd6, 0x44, 0x7c, 0xab, 0x8b, 0x61, 0x9f, 0x7c, 0x98, 0x27, 0x03, 0x7b,
0xe9, 0xeb, 0x3d, 0x07, 0x61, 0x6f, 0xc0, 0xcc, 0xc0, 0xbb, 0x39, 0xe8, 0xf9, 0x8c, 0x03, 0x11,
0xf9, 0xfb, 0x3a, 0x07, 0x0d, 0xb1, 0x07, 0x68, 0xf0, 0x6d, 0x2b, 0xb4, 0x22, 0xe7, 0x40, 0xd6,
0x6b, 0x5f, 0xad, 0x73, 0x23, 0xd7, 0x8f, 0x08, 0xf7, 0x2d, 0x05, 0x16, 0x33, 0x9e, 0x58, 0x41,
0xe7, 0xb3, 0x4e, 0xc7, 0x86, 0x3c, 0x18, 0xd3, 0x7a, 0xe9, 0x70, 0x8d, 0x22, 0x44, 0x1c, 0x98,
0x4e, 0xbd, 0x30, 0x82, 0xce, 0x66, 0x5e, 0x8b, 0x1e, 0x7c, 0x7e, 0xa5, 0xf5, 0xa5, 0xd1, 0x2a,
0x47, 0xe3, 0x7d, 0x08, 0xd3, 0xa9, 0xe7, 0x35, 0x32, 0xc6, 0x93, 0x3f, 0xc2, 0x71, 0x10, 0x43,
0xbf, 0x06, 0xf5, 0xc4, 0x3b, 0x18, 0x19, 0x12, 0x2f, 0x7b, 0x2b, 0xe3, 0xa0, 0xae, 0x3f, 0x84,
0x9a, 0xf8, 0x5c, 0x05, 0x5a, 0xce, 0xd2, 0xa5, 0x81, 0x8e, 0x0f, 0xa3, 0x4a, 0xf1, 0x35, 0xf3,
0x21, 0xaa, 0x34, 0x70, 0x33, 0x7f, 0x74, 0x55, 0x12, 0xfa, 0x1f, 0xaa, 0x4a, 0x87, 0x1e, 0xe2,
0x1b, 0x0a, 0x3d, 0xf6, 0x97, 0x3c, 0x63, 0x80, 0x56, 0xb3, 0x64, 0x33, 0xfb, 0xc1, 0x86, 0xd6,
0xf9, 0x43, 0xb5, 0x89, 0xa8, 0x78, 0x17, 0xa6, 0x92, 0x97, 0xf5, 0x33, 0xa8, 0x28, 0x7d, 0xdf,
0xa0, 0x75, 0x76, 0xa4, 0xba, 0xd1, 0x60, 0xef, 0x41, 0x55, 0x78, 0xed, 0x14, 0x3d, 0x3b, 0x44,
0x8e, 0xc5, 0xa7, 0x3f, 0x0f, 0xa2, 0xe4, 0xbb, 0x50, 0x89, 0x1e, 0x29, 0x45, 0xa7, 0x33, 0xe5,
0xf7, 0x30, 0x5d, 0x6e, 0x02, 0xc4, 0x2f, 0x90, 0xa2, 0x67, 0xa4, 0x7d, 0x0e, 0x3c, 0x51, 0x7a,
0x50, 0xa7, 0xd1, 0xf4, 0xd9, 0xed, 0xa0, 0x61, 0xd3, 0x17, 0x2f, 0xb8, 0x1d, 0xd4, 0xed, 0x0e,
0xd4, 0x13, 0x17, 0x55, 0xb3, 0x54, 0x58, 0x72, 0xf1, 0xb9, 0x75, 0x66, 0x94, 0xaa, 0x11, 0xff,
0x76, 0xa0, 0x9e, 0xb8, 0x24, 0x98, 0x31, 0x92, 0xec, 0x72, 0x64, 0xc6, 0x48, 0xd2, 0x3b, 0x87,
0xea, 0x04, 0xfa, 0xba, 0x70, 0x1f, 0x31, 0x71, 0xf9, 0x13, 0xbd, 0x38, 0xb4, 0x1f, 0xd9, 0x25,
0xd8, 0xd6, 0xea, 0x61, 0x9a, 0x44, 0x28, 0x70, 0xa9, 0x62, 0x24, 0xcd, 0x96, 0xaa, 0xc3, 0x70,
0x6a, 0x13, 0x8a, 0xec, 0xb6, 0x1f, 0x52, 0x33, 0xae, 0xfc, 0x0a, 0x57, 0x01, 0x5b, 0x4f, 0x49,
0xeb, 0x24, 0xef, 0xbf, 0xb1, 0x4e, 0xd9, 0x49, 0x69, 0x46, 0xa7, 0x89, 0x1b, 0x5e, 0xa3, 0x76,
0xaa, 0x41, 0x91, 0x5d, 0x39, 0xc9, 0xe8, 0x34, 0x71, 0x9f, 0xaa, 0x35, 0xbc, 0x0e, 0xdb, 0xef,
0x4e, 0xa0, 0x0d, 0x28, 0xd0, 0xb0, 0x36, 0x3a, 0x35, 0xec, 0x1a, 0xc3, 0xb0, 0x1e, 0x13, 0x37,
0x1d, 0xd4, 0x09, 0x74, 0x1b, 0x0a, 0x34, 0x05, 0x2c, 0xa3, 0x47, 0x31, 0xbf, 0xbf, 0x35, 0xb4,
0x4a, 0x88, 0xa2, 0x09, 0x35, 0x31, 0x0b, 0x37, 0xc3, 0x65, 0x49, 0xf2, 0x94, 0x5b, 0xa3, 0xd4,
0x0c, 0x47, 0x61, 0x6a, 0x14, 0x87, 0xf8, 0xb3, 0xd5, 0x68, 0x20, 0x7d, 0x20, 0x5b, 0x8d, 0x06,
0x33, 0x06, 0xd4, 0x09, 0xf4, 0x2b, 0x0a, 0x34, 0xb3, 0x52, 0x43, 0x51, 0xe6, 0x0a, 0x68, 0x58,
0x7e, 0x6b, 0xeb, 0xc2, 0x21, 0x5b, 0x45, 0xb8, 0x7c, 0x4c, 0xe3, 0x7e, 0x03, 0xc9, 0xa0, 0xe7,
0xb2, 0xfa, 0xcb, 0x48, 0x70, 0x6c, 0xbd, 0x30, 0x7a, 0x83, 0x68, 0xec, 0x2d, 0xa8, 0x0a, 0x31,
0xc7, 0x0c, 0xcb, 0x3b, 0x18, 0x2c, 0xcd, 0xe0, 0xaa, 0x24, 0x7c, 0xc9, 0xc4, 0x9b, 0x66, 0x10,
0x66, 0x08, 0xa3, 0x98, 0x90, 0x98, 0x21, 0xde, 0x89, 0x04, 0x44, 0x75, 0x02, 0x61, 0xa8, 0x89,
0xe9, 0x84, 0x19, 0xd2, 0x28, 0xc9, 0x44, 0x6c, 0x3d, 0x37, 0x42, 0xcd, 0x68, 0x18, 0x1d, 0x20,
0x4e, 0xe7, 0xcb, 0xf0, 0x75, 0x03, 0x19, 0x85, 0xad, 0x67, 0x0f, 0xac, 0x27, 0xba, 0x7d, 0x21,
0x41, 0x2f, 0x83, 0xfa, 0x83, 0x29, 0x7c, 0x23, 0xec, 0x45, 0x06, 0x53, 0xbe, 0x32, 0xf6, 0x22,
0x99, 0xd9, 0x65, 0xad, 0x73, 0x23, 0xd7, 0x8f, 0xe6, 0x73, 0x0f, 0x1a, 0xe9, 0x14, 0xb9, 0x8c,
0x3d, 0x6e, 0x46, 0xc6, 0x5e, 0xeb, 0xf9, 0x11, 0x6b, 0x8b, 0xfe, 0xf0, 0xd8, 0x20, 0x4e, 0x5f,
0xb5, 0x82, 0x1d, 0x9a, 0x79, 0x35, 0xca, 0xac, 0xc5, 0x24, 0xaf, 0x51, 0x66, 0x9d, 0x48, 0xe9,
0xe2, 0xce, 0x8b, 0x66, 0x1b, 0x64, 0x39, 0x2f, 0x31, 0x99, 0x28, 0xc3, 0xcf, 0x24, 0x33, 0x6e,
0xd8, 0xf2, 0x33, 0x99, 0xc5, 0x80, 0xce, 0x8c, 0x94, 0xea, 0x30, 0x6c, 0xf9, 0x29, 0x4f, 0x8b,
0x60, 0x5b, 0xb7, 0x54, 0x92, 0x46, 0xc6, 0x56, 0x4a, 0x9e, 0x24, 0x92, 0xb1, 0x75, 0xcb, 0xc8,
0xfb, 0xa0, 0x8a, 0xd5, 0x48, 0x47, 0xbc, 0x87, 0x9f, 0x85, 0xa4, 0x43, 0x9d, 0x07, 0x1f, 0x57,
0x34, 0xd2, 0xa1, 0xe4, 0x8c, 0x01, 0x32, 0x22, 0xce, 0x23, 0x0c, 0x90, 0x8e, 0xc2, 0x66, 0x0c,
0x90, 0x11, 0xac, 0x1d, 0x61, 0xed, 0x9a, 0x88, 0x7e, 0x66, 0xb8, 0x42, 0x59, 0x84, 0x34, 0xc3,
0x15, 0x4a, 0x03, 0xb7, 0x6c, 0x45, 0x1f, 0x07, 0x31, 0x33, 0xac, 0xdc, 0x40, 0x94, 0xf3, 0x20,
0xf4, 0x6f, 0x43, 0x39, 0x8c, 0x42, 0xa2, 0xa7, 0x33, 0x97, 0x88, 0x87, 0xe8, 0xf0, 0x43, 0x98,
0x4e, 0x9d, 0xe0, 0x65, 0x88, 0xa8, 0x3c, 0x0a, 0x79, 0x30, 0x3f, 0x21, 0x8e, 0x57, 0x65, 0x10,
0x61, 0x20, 0x0e, 0x98, 0x61, 0xea, 0x07, 0x03, 0x5f, 0xe2, 0x00, 0x04, 0xb1, 0xa1, 0x03, 0x08,
0xa1, 0xaa, 0xa1, 0x03, 0x88, 0x41, 0x1a, 0x26, 0x91, 0xe9, 0x03, 0xca, 0x0c, 0x89, 0xcc, 0x38,
0x2d, 0x3e, 0x88, 0x44, 0x5b, 0x50, 0x15, 0x8e, 0xbc, 0xd1, 0x30, 0xd4, 0xc4, 0xb3, 0xfa, 0x8c,
0xa5, 0x82, 0xe4, 0xf4, 0x5c, 0x9d, 0x58, 0xed, 0x43, 0x6d, 0xc3, 0x73, 0xef, 0x87, 0x8f, 0xa9,
0x7e, 0x41, 0x8e, 0xfe, 0x62, 0x1b, 0xa6, 0x58, 0x05, 0x1d, 0xdf, 0x0f, 0x74, 0x77, 0xeb, 0x23,
0x74, 0x7c, 0x85, 0xfd, 0x8b, 0x92, 0x95, 0xf0, 0x5f, 0x94, 0xac, 0x5c, 0xb5, 0x6c, 0x7c, 0x9b,
0x67, 0x57, 0xfe, 0x47, 0x69, 0xc8, 0x8d, 0xc0, 0xe8, 0xc8, 0x5a, 0xe3, 0xff, 0x25, 0xe5, 0xed,
0xfb, 0xc1, 0xed, 0xad, 0x8f, 0x2e, 0xbf, 0xff, 0xd9, 0x1b, 0x25, 0x28, 0xac, 0xae, 0xbc, 0xb8,
0xf2, 0x02, 0x4c, 0x59, 0x51, 0xf5, 0x8e, 0xd7, 0x6b, 0x5f, 0xae, 0xb2, 0x46, 0x1b, 0xa4, 0x9f,
0x0d, 0xe5, 0x17, 0x96, 0x3b, 0x56, 0xb0, 0xd3, 0xdf, 0x22, 0x2c, 0x38, 0xc7, 0xaa, 0x3d, 0x6f,
0xb9, 0xfc, 0xd7, 0x39, 0xa3, 0x67, 0xf1, 0x9f, 0xbd, 0xad, 0x3f, 0x54, 0x94, 0xad, 0x22, 0x1d,
0xfd, 0xfc, 0xcf, 0x02, 0x00, 0x00, 0xff, 0xff, 0xb0, 0xb1, 0xa4, 0x67, 0x94, 0x65, 0x00, 0x00,
// 5395 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xdc, 0x3d, 0x4d, 0x6c, 0x1c, 0xd7,
0x79, 0x9c, 0x5d, 0xee, 0xdf, 0xb7, 0xbb, 0xe4, 0xf2, 0xf1, 0x6f, 0xbd, 0x92, 0x2c, 0x6a, 0x6c,
0xd9, 0xb4, 0x14, 0x53, 0x36, 0x65, 0xd9, 0xb1, 0xec, 0xd8, 0x96, 0x44, 0x4b, 0x22, 0xac, 0x1f,
0x7a, 0x28, 0x3b, 0x48, 0x5d, 0x63, 0x30, 0xdc, 0x79, 0x5c, 0x8e, 0x35, 0x3b, 0xb3, 0x9a, 0x99,
0x25, 0x45, 0xf7, 0x12, 0x20, 0x4d, 0x90, 0xa2, 0x69, 0x8c, 0xfe, 0x06, 0x3d, 0xa4, 0x2d, 0x8a,
0x5c, 0x8a, 0x26, 0x45, 0xdd, 0x1e, 0x0a, 0xa4, 0x87, 0xde, 0x8d, 0x16, 0x6d, 0x0e, 0x41, 0x1b,
0xb4, 0xc7, 0xa0, 0x45, 0x0f, 0x05, 0x7a, 0xe8, 0xad, 0x2d, 0x5a, 0xbc, 0x9f, 0x99, 0x79, 0x33,
0xfb, 0x66, 0xb9, 0xd4, 0x5a, 0x16, 0x15, 0x9e, 0x76, 0xde, 0xef, 0xf7, 0xbe, 0xff, 0xf7, 0xbe,
0xef, 0x3d, 0x42, 0xad, 0x6b, 0xd9, 0xbb, 0x7d, 0x7f, 0xa5, 0xe7, 0xb9, 0x81, 0x8b, 0x66, 0xc5,
0xaf, 0x15, 0xf6, 0xd1, 0xaa, 0xb5, 0xdd, 0x6e, 0xd7, 0x75, 0x58, 0x61, 0xab, 0xe6, 0xb7, 0x77,
0x70, 0xd7, 0xe0, 0x5f, 0x4b, 0x1d, 0xd7, 0xed, 0xd8, 0xf8, 0x1c, 0xfd, 0xda, 0xea, 0x6f, 0x9f,
0x33, 0xb1, 0xdf, 0xf6, 0xac, 0x5e, 0xe0, 0x7a, 0xac, 0x85, 0xfa, 0x07, 0x0a, 0xa0, 0x2b, 0x1e,
0x36, 0x02, 0x7c, 0xc9, 0xb6, 0x0c, 0x5f, 0xc3, 0xf7, 0xfa, 0xd8, 0x0f, 0xd0, 0x0b, 0x30, 0xb9,
0x65, 0xf8, 0xb8, 0xa9, 0x2c, 0x29, 0xcb, 0xd5, 0xd5, 0xe3, 0x2b, 0x89, 0x89, 0xf9, 0x84, 0x37,
0xfd, 0xce, 0x65, 0xc3, 0xc7, 0x1a, 0x6d, 0x89, 0x16, 0xa1, 0x64, 0x6e, 0xe9, 0x8e, 0xd1, 0xc5,
0xcd, 0xdc, 0x92, 0xb2, 0x5c, 0xd1, 0x8a, 0xe6, 0xd6, 0x2d, 0xa3, 0x8b, 0xd1, 0xb3, 0x30, 0xdd,
0x76, 0x6d, 0x1b, 0xb7, 0x03, 0xcb, 0x75, 0x58, 0x83, 0x3c, 0x6d, 0x30, 0x15, 0x17, 0xd3, 0x86,
0x73, 0x50, 0x30, 0x08, 0x0c, 0xcd, 0x49, 0x5a, 0xcd, 0x3e, 0x54, 0x1f, 0x1a, 0x6b, 0x9e, 0xdb,
0x7b, 0x58, 0xd0, 0x45, 0x93, 0xe6, 0xc5, 0x49, 0xbf, 0xaf, 0xc0, 0xcc, 0x25, 0x3b, 0xc0, 0xde,
0x11, 0x45, 0xca, 0x0f, 0x73, 0xb0, 0xc8, 0xa8, 0x76, 0x25, 0x6a, 0xfe, 0x28, 0xa1, 0x5c, 0x80,
0x22, 0xe3, 0x3b, 0x0a, 0x66, 0x4d, 0xe3, 0x5f, 0xe8, 0x04, 0x80, 0xbf, 0x63, 0x78, 0xa6, 0xaf,
0x3b, 0xfd, 0x6e, 0xb3, 0xb0, 0xa4, 0x2c, 0x17, 0xb4, 0x0a, 0x2b, 0xb9, 0xd5, 0xef, 0x22, 0x0d,
0x66, 0xda, 0xae, 0xe3, 0x5b, 0x7e, 0x80, 0x9d, 0xf6, 0xbe, 0x6e, 0xe3, 0x5d, 0x6c, 0x37, 0x8b,
0x4b, 0xca, 0xf2, 0xd4, 0xea, 0x69, 0x29, 0xdc, 0x57, 0xe2, 0xd6, 0x37, 0x48, 0x63, 0xad, 0xd1,
0x4e, 0x95, 0x5c, 0x44, 0x9f, 0xbd, 0x31, 0x5d, 0x56, 0x1a, 0x4a, 0xf3, 0xff, 0xc2, 0x3f, 0x45,
0xfd, 0x43, 0x05, 0xe6, 0x09, 0x13, 0x1d, 0x09, 0x64, 0x85, 0x10, 0xe6, 0x44, 0x08, 0xff, 0x44,
0x81, 0xb9, 0xeb, 0x86, 0x7f, 0x34, 0xa8, 0x79, 0x02, 0x20, 0xb0, 0xba, 0x58, 0xf7, 0x03, 0xa3,
0xdb, 0xa3, 0x14, 0x9d, 0xd4, 0x2a, 0xa4, 0x64, 0x93, 0x14, 0xa8, 0x5f, 0x83, 0xda, 0x65, 0xd7,
0xb5, 0x35, 0xec, 0xf7, 0x5c, 0xc7, 0xc7, 0xe8, 0x3c, 0x14, 0xfd, 0xc0, 0x08, 0xfa, 0x3e, 0x07,
0xf2, 0x98, 0x14, 0xc8, 0x4d, 0xda, 0x44, 0xe3, 0x4d, 0x09, 0x5f, 0xef, 0x1a, 0x76, 0x9f, 0xc1,
0x58, 0xd6, 0xd8, 0x87, 0xfa, 0x01, 0x4c, 0x6d, 0x06, 0x9e, 0xe5, 0x74, 0x3e, 0xc7, 0xc1, 0x2b,
0xe1, 0xe0, 0xff, 0xaa, 0xc0, 0x13, 0x6b, 0x54, 0xff, 0x6d, 0x1d, 0x11, 0xb1, 0x51, 0xa1, 0x16,
0x97, 0xac, 0xaf, 0x51, 0x54, 0xe7, 0xb5, 0x44, 0x59, 0x8a, 0x18, 0x85, 0x14, 0x31, 0x42, 0x66,
0xca, 0x8b, 0xcc, 0xf4, 0xf5, 0x02, 0xb4, 0x64, 0x0b, 0x1d, 0x07, 0xa5, 0x5f, 0x89, 0x24, 0x3c,
0x47, 0x3b, 0xa5, 0xe4, 0x93, 0x5b, 0x9d, 0x78, 0xb6, 0x4d, 0x5a, 0x10, 0x29, 0x82, 0xf4, 0x4a,
0xf3, 0x92, 0x95, 0xae, 0xc2, 0xfc, 0xae, 0xe5, 0x05, 0x7d, 0xc3, 0xd6, 0xdb, 0x3b, 0x86, 0xe3,
0x60, 0x9b, 0xe2, 0x8e, 0xa8, 0xbe, 0xfc, 0x72, 0x45, 0x9b, 0xe5, 0x95, 0x57, 0x58, 0x1d, 0x41,
0xa0, 0x8f, 0x5e, 0x82, 0x85, 0xde, 0xce, 0xbe, 0x6f, 0xb5, 0x07, 0x3a, 0x15, 0x68, 0xa7, 0xb9,
0xb0, 0x36, 0xd1, 0xeb, 0x2c, 0xcc, 0xb4, 0xa9, 0xf6, 0x34, 0x75, 0x82, 0x49, 0x86, 0xda, 0x22,
0x45, 0x6d, 0x83, 0x57, 0xdc, 0x09, 0xcb, 0x09, 0x58, 0x61, 0xe3, 0x7e, 0xd0, 0x16, 0x3a, 0x94,
0x68, 0x87, 0x59, 0x5e, 0xf9, 0x5e, 0xd0, 0x8e, 0xfb, 0x24, 0xf5, 0x5e, 0x39, 0xad, 0xf7, 0x9a,
0x50, 0xa2, 0x7a, 0x1c, 0xfb, 0xcd, 0x0a, 0x05, 0x33, 0xfc, 0x44, 0xeb, 0x30, 0xed, 0x07, 0x86,
0x17, 0xe8, 0x3d, 0xd7, 0xb7, 0x08, 0x5e, 0xfc, 0x26, 0x2c, 0xe5, 0x97, 0xab, 0xab, 0x4b, 0x52,
0x22, 0xbd, 0x83, 0xf7, 0xd7, 0x8c, 0xc0, 0xd8, 0x30, 0x2c, 0x4f, 0x9b, 0xa2, 0x1d, 0x37, 0xc2,
0x7e, 0x72, 0xe5, 0x5a, 0x1d, 0x4b, 0xb9, 0xca, 0x38, 0xbb, 0x26, 0xe3, 0x6c, 0xf5, 0xaf, 0x15,
0x98, 0xbf, 0xe1, 0x1a, 0xe6, 0xd1, 0x90, 0xb3, 0xd3, 0x30, 0xe5, 0xe1, 0x9e, 0x6d, 0xb5, 0x0d,
0x42, 0x8f, 0x2d, 0xec, 0x51, 0x49, 0x2b, 0x68, 0x75, 0x5e, 0x7a, 0x8b, 0x16, 0x5e, 0x2c, 0x7d,
0xf6, 0xc6, 0x64, 0xa3, 0xd0, 0xcc, 0xab, 0xdf, 0x53, 0xa0, 0xa9, 0x61, 0x1b, 0x1b, 0xfe, 0xd1,
0x50, 0x14, 0x0c, 0xb2, 0x62, 0x33, 0xaf, 0xfe, 0x87, 0x02, 0x73, 0xd7, 0x70, 0x40, 0x84, 0xd3,
0xf2, 0x03, 0xab, 0xfd, 0x48, 0x7d, 0x93, 0x67, 0x61, 0xba, 0x67, 0x78, 0x81, 0x15, 0xb5, 0x0b,
0x45, 0x75, 0x2a, 0x2a, 0x66, 0xf2, 0x76, 0x0e, 0x66, 0x3b, 0x7d, 0xc3, 0x33, 0x9c, 0x00, 0x63,
0x41, 0x80, 0x98, 0x32, 0x43, 0x51, 0x55, 0x24, 0x3f, 0x6c, 0xbd, 0xd0, 0xcc, 0xab, 0xdf, 0x54,
0x60, 0x3e, 0xb5, 0xde, 0x71, 0xb4, 0xd8, 0x2b, 0x50, 0x20, 0xbf, 0xfc, 0x66, 0x8e, 0x0a, 0xd5,
0xa9, 0x2c, 0xa1, 0x7a, 0x9f, 0x18, 0x0c, 0x2a, 0x55, 0xac, 0x3d, 0x71, 0x08, 0x9f, 0xbc, 0x86,
0x03, 0x41, 0xbf, 0x1d, 0x05, 0x0a, 0xc4, 0x78, 0xfa, 0x44, 0x81, 0x93, 0x99, 0xf0, 0x3d, 0x12,
0x8c, 0xfd, 0x97, 0x02, 0x0b, 0x9b, 0x3b, 0xee, 0x5e, 0x0c, 0xd2, 0xc3, 0xc0, 0x54, 0xd2, 0x3a,
0xe6, 0x53, 0xd6, 0x11, 0xbd, 0x08, 0x93, 0xc1, 0x7e, 0x0f, 0x53, 0x71, 0x9f, 0x5a, 0x3d, 0xb1,
0x22, 0xd9, 0x3f, 0xad, 0x10, 0x20, 0xef, 0xec, 0xf7, 0xb0, 0x46, 0x9b, 0xa2, 0xe7, 0xa0, 0x91,
0xc2, 0x7d, 0x68, 0x4b, 0xa6, 0x93, 0xc8, 0xf7, 0x43, 0xdb, 0x3b, 0x29, 0xda, 0xde, 0xff, 0xcc,
0xc1, 0xe2, 0xc0, 0xb2, 0xc7, 0x21, 0x80, 0x0c, 0x9e, 0x9c, 0x14, 0x1e, 0xa2, 0xe6, 0x84, 0xa6,
0x96, 0x49, 0x36, 0x35, 0xf9, 0xe5, 0xbc, 0x56, 0x17, 0xcc, 0xac, 0xe9, 0xa3, 0xe7, 0x01, 0x0d,
0x58, 0x3f, 0x26, 0xb9, 0x93, 0xda, 0x4c, 0xda, 0xfc, 0x51, 0x13, 0x2b, 0xb5, 0x7f, 0x0c, 0x2d,
0x93, 0xda, 0x9c, 0xc4, 0x00, 0xfa, 0xe8, 0x45, 0x98, 0xb3, 0x9c, 0x9b, 0xb8, 0xeb, 0x7a, 0xfb,
0x7a, 0x0f, 0x7b, 0x6d, 0xec, 0x04, 0x46, 0x07, 0xfb, 0xcd, 0x22, 0x85, 0x68, 0x36, 0xac, 0xdb,
0x88, 0xab, 0xd0, 0xcb, 0xb0, 0x78, 0xaf, 0x8f, 0xbd, 0x7d, 0xdd, 0xc7, 0xde, 0xae, 0xd5, 0xc6,
0xba, 0xb1, 0x6b, 0x58, 0xb6, 0xb1, 0x65, 0xe3, 0x66, 0x69, 0x29, 0xbf, 0x5c, 0xd6, 0xe6, 0x69,
0xf5, 0x26, 0xab, 0xbd, 0x14, 0x56, 0xaa, 0x7f, 0xa9, 0xc0, 0x02, 0xdb, 0x0c, 0x6d, 0x84, 0x6a,
0xe7, 0x11, 0x1b, 0x9b, 0xa4, 0x56, 0xe4, 0x5b, 0xb7, 0x7a, 0x42, 0x29, 0xaa, 0x9f, 0x2a, 0x30,
0x47, 0xf6, 0x24, 0x8f, 0x13, 0xcc, 0x7f, 0xae, 0xc0, 0xec, 0x75, 0xc3, 0x7f, 0x9c, 0x40, 0xfe,
0x67, 0xee, 0x88, 0x44, 0x30, 0x3f, 0x1e, 0x16, 0x73, 0xd0, 0x63, 0x29, 0x48, 0x3c, 0x16, 0xf5,
0xaf, 0x62, 0x47, 0xe5, 0xf1, 0x5a, 0xa0, 0xfa, 0x63, 0x05, 0x4e, 0x5c, 0xc3, 0x41, 0x04, 0xf5,
0xd1, 0xf0, 0x68, 0x46, 0x64, 0xaa, 0xef, 0x32, 0x6f, 0x40, 0x0a, 0xfc, 0x23, 0x31, 0xb6, 0xbf,
0x9e, 0x83, 0x79, 0x62, 0x75, 0x8e, 0x06, 0x13, 0x8c, 0xb2, 0xad, 0x95, 0x30, 0x4a, 0x41, 0x2a,
0x09, 0xa1, 0x09, 0x2f, 0x8e, 0x6c, 0xc2, 0xd5, 0xbf, 0xc8, 0x31, 0xd7, 0x43, 0xc4, 0xc6, 0x38,
0x64, 0x91, 0xc0, 0x9a, 0x93, 0xc2, 0xaa, 0x42, 0x2d, 0x2a, 0x59, 0x5f, 0x0b, 0xcd, 0x6f, 0xa2,
0xec, 0xa8, 0x5a, 0x5f, 0xf5, 0x3b, 0x0a, 0x2c, 0x84, 0x87, 0x06, 0x9b, 0xb8, 0xd3, 0xc5, 0x4e,
0xf0, 0xe0, 0x3c, 0x94, 0xe6, 0x80, 0x9c, 0x84, 0x03, 0x8e, 0x43, 0xc5, 0x67, 0xf3, 0x44, 0xe7,
0x01, 0x71, 0x81, 0xfa, 0x37, 0x0a, 0x2c, 0x0e, 0x80, 0x33, 0x0e, 0x11, 0x9b, 0x50, 0xb2, 0x1c,
0x13, 0xdf, 0x8f, 0xa0, 0x09, 0x3f, 0x49, 0xcd, 0x56, 0xdf, 0xb2, 0xcd, 0x08, 0x8c, 0xf0, 0x13,
0x9d, 0x82, 0x1a, 0x76, 0x88, 0x8f, 0xa1, 0xd3, 0xb6, 0x94, 0x91, 0xcb, 0x5a, 0x95, 0x95, 0xad,
0x93, 0x22, 0xd2, 0x79, 0xdb, 0xc2, 0xb4, 0x73, 0x81, 0x75, 0xe6, 0x9f, 0xea, 0x6f, 0x28, 0x30,
0x4b, 0xb8, 0x90, 0x43, 0xef, 0x3f, 0x5c, 0x6c, 0x2e, 0x41, 0x55, 0x60, 0x33, 0xbe, 0x10, 0xb1,
0x48, 0xbd, 0x0b, 0x73, 0x49, 0x70, 0xc6, 0xc1, 0xe6, 0x93, 0x00, 0x11, 0xad, 0x98, 0x34, 0xe4,
0x35, 0xa1, 0x44, 0xfd, 0xdd, 0x5c, 0x18, 0x56, 0xa0, 0x68, 0x7a, 0xc4, 0xa7, 0x99, 0x94, 0x24,
0xa2, 0x3e, 0xaf, 0xd0, 0x12, 0x5a, 0xbd, 0x06, 0x35, 0x7c, 0x3f, 0xf0, 0x0c, 0xbd, 0x67, 0x78,
0x46, 0x97, 0x89, 0xd5, 0x48, 0xaa, 0xb7, 0x4a, 0xbb, 0x6d, 0xd0, 0x5e, 0x64, 0x12, 0xca, 0x22,
0x6c, 0x92, 0x22, 0x9b, 0x84, 0x96, 0xc4, 0xfb, 0xb4, 0x6a, 0x33, 0xaf, 0xfe, 0x84, 0x78, 0x7d,
0x9c, 0xad, 0x8f, 0x3a, 0x66, 0x92, 0x6b, 0x2a, 0x48, 0xd7, 0x54, 0x6b, 0xe6, 0xd5, 0x9f, 0xe6,
0xa0, 0x41, 0xd7, 0xb2, 0xc6, 0x83, 0x4b, 0x96, 0xeb, 0xa4, 0x3a, 0x2b, 0xa9, 0xce, 0x43, 0xa4,
0xf1, 0x55, 0x28, 0x72, 0x4a, 0xe4, 0x47, 0xa5, 0x04, 0xef, 0x70, 0xd0, 0x7a, 0x4e, 0x41, 0x8d,
0x4e, 0x82, 0x4d, 0xdd, 0x73, 0xf7, 0x7c, 0x2e, 0xaf, 0x55, 0x5e, 0xa6, 0xb9, 0x7b, 0x74, 0x84,
0xc0, 0x0d, 0x0c, 0x9b, 0x35, 0x28, 0x32, 0xa5, 0x44, 0x4b, 0x68, 0xf5, 0x05, 0x66, 0x9f, 0x31,
0x3d, 0xfa, 0x9b, 0x5a, 0x3d, 0x29, 0x05, 0x8d, 0xa2, 0x82, 0x88, 0x0b, 0x66, 0xd6, 0x19, 0xa3,
0x0b, 0xb0, 0xc8, 0x70, 0x41, 0x3f, 0xf5, 0x6d, 0xc3, 0xb2, 0x75, 0x0f, 0x1b, 0xbe, 0xeb, 0xd0,
0xa3, 0xc1, 0x8a, 0x36, 0x67, 0x45, 0x7d, 0xae, 0x1a, 0x96, 0xad, 0xd1, 0x3a, 0xf5, 0x8f, 0x15,
0x98, 0x4f, 0xf1, 0xca, 0x38, 0x22, 0x7b, 0x07, 0x10, 0x83, 0xc2, 0x8c, 0xc9, 0x14, 0x7a, 0x1a,
0xa7, 0xa5, 0x66, 0x35, 0x4d, 0x54, 0x6d, 0xc6, 0x4a, 0x95, 0xf8, 0xea, 0xcf, 0x14, 0x38, 0x7e,
0x0d, 0x07, 0xb4, 0xe9, 0x65, 0xa2, 0x36, 0x37, 0x3c, 0xb7, 0xe3, 0x61, 0xdf, 0xff, 0x05, 0x60,
0xec, 0xdf, 0x63, 0x3e, 0xaa, 0x6c, 0x6d, 0xe3, 0x10, 0x22, 0xcd, 0x87, 0xb9, 0x83, 0xf8, 0x30,
0x9f, 0xe2, 0x43, 0xaa, 0x45, 0x42, 0xc0, 0x18, 0xa7, 0x3d, 0xfe, 0xc8, 0xfe, 0x01, 0x3b, 0xe9,
0x13, 0xd7, 0x34, 0x0e, 0x92, 0x23, 0x51, 0xcd, 0x1d, 0x4a, 0x54, 0x4f, 0x42, 0x55, 0x14, 0x4f,
0xb6, 0x62, 0xd8, 0x8e, 0x85, 0xf2, 0xef, 0x14, 0x16, 0x8f, 0xfe, 0x45, 0x50, 0xde, 0xf5, 0x66,
0x5e, 0xfd, 0x61, 0x0e, 0xea, 0xeb, 0x8e, 0x8f, 0xbd, 0xe0, 0xe8, 0xef, 0xbb, 0xd0, 0x9b, 0x50,
0xa5, 0x2b, 0xf4, 0x75, 0xd3, 0x08, 0x0c, 0x6e, 0xaa, 0x9f, 0x94, 0x46, 0xa2, 0xae, 0x92, 0x76,
0x6b, 0x46, 0x60, 0x68, 0x0c, 0x4d, 0x3e, 0xf9, 0x8d, 0x8e, 0x41, 0x65, 0xc7, 0xf0, 0x77, 0xf4,
0xbb, 0x78, 0x9f, 0x39, 0xc3, 0x75, 0xad, 0x4c, 0x0a, 0xde, 0xc1, 0xfb, 0x3e, 0x7a, 0x02, 0xca,
0x4e, 0xbf, 0xcb, 0x44, 0x8e, 0x28, 0xf8, 0xba, 0x56, 0x72, 0xfa, 0x5d, 0x22, 0x70, 0x0c, 0x5d,
0xe5, 0x66, 0x5e, 0xfd, 0xdb, 0x1c, 0x4c, 0xdd, 0xec, 0x93, 0xed, 0x1e, 0x0d, 0xa8, 0xf5, 0xed,
0xe0, 0xc1, 0xd8, 0xf3, 0x0c, 0xe4, 0x99, 0xe3, 0x44, 0x7a, 0x34, 0xa5, 0x2b, 0x58, 0x5f, 0xf3,
0x35, 0xd2, 0x88, 0x06, 0x93, 0xfa, 0xed, 0x36, 0xf7, 0x41, 0xf3, 0x14, 0xea, 0x0a, 0x29, 0x61,
0x1e, 0xe8, 0x31, 0xa8, 0x60, 0xcf, 0x8b, 0x3c, 0x54, 0xba, 0x26, 0xec, 0x79, 0xac, 0x52, 0x85,
0x9a, 0xd1, 0xbe, 0xeb, 0xb8, 0x7b, 0x36, 0x36, 0x3b, 0xd8, 0xa4, 0x8c, 0x50, 0xd6, 0x12, 0x65,
0x8c, 0x55, 0x08, 0x07, 0xe8, 0x6d, 0x27, 0x08, 0x8d, 0x1e, 0x2b, 0xb9, 0xe2, 0x04, 0xa4, 0xda,
0xc4, 0x36, 0x0e, 0x30, 0xad, 0x2e, 0xb1, 0x6a, 0x56, 0xc2, 0xab, 0xfb, 0xbd, 0xa8, 0x77, 0x99,
0x55, 0xb3, 0x12, 0x52, 0x7d, 0x1c, 0x2a, 0xf1, 0x81, 0x7f, 0x25, 0x3e, 0x9f, 0xa5, 0x05, 0xea,
0xcf, 0x15, 0xa8, 0xaf, 0xd1, 0xa1, 0x1e, 0x03, 0xee, 0x43, 0x30, 0x89, 0xef, 0xf7, 0x3c, 0x2e,
0x4c, 0xf4, 0xf7, 0x50, 0x86, 0x62, 0x5c, 0x53, 0x69, 0xe6, 0xd5, 0x6f, 0x4d, 0x42, 0x7d, 0x13,
0x1b, 0x5e, 0x7b, 0xe7, 0xb1, 0x38, 0x7c, 0x6a, 0x40, 0xde, 0xf4, 0x6d, 0xbe, 0x4e, 0xf2, 0x13,
0x9d, 0x85, 0x99, 0x9e, 0x6d, 0xb4, 0xf1, 0x8e, 0x6b, 0x9b, 0xd8, 0xd3, 0x3b, 0x9e, 0xdb, 0x67,
0x01, 0xd3, 0x9a, 0xd6, 0x10, 0x2a, 0xae, 0x91, 0x72, 0xf4, 0x0a, 0x94, 0x4d, 0xdf, 0xd6, 0xe9,
0xae, 0x9d, 0x39, 0x4a, 0xf2, 0xf5, 0xad, 0xf9, 0x36, 0xdd, 0xb4, 0x97, 0x4c, 0xf6, 0x03, 0x3d,
0x05, 0x75, 0xb7, 0x1f, 0xf4, 0xfa, 0x81, 0xce, 0x44, 0xb6, 0x59, 0xa6, 0xe0, 0xd5, 0x58, 0x21,
0x95, 0x68, 0x1f, 0x5d, 0x85, 0xba, 0x4f, 0x51, 0x19, 0x3a, 0xec, 0x95, 0x51, 0xdd, 0xc4, 0x1a,
0xeb, 0xc7, 0x3d, 0xf6, 0xe7, 0xa0, 0x11, 0x78, 0xc6, 0x2e, 0xb6, 0x85, 0x80, 0x14, 0x50, 0xfe,
0x9c, 0x66, 0xe5, 0x71, 0x34, 0x37, 0x23, 0x7c, 0x55, 0xcd, 0x0a, 0x5f, 0xa1, 0x29, 0xc8, 0x39,
0xf7, 0x68, 0x64, 0x34, 0xaf, 0xe5, 0x9c, 0x7b, 0x8c, 0x11, 0xa6, 0x9a, 0x79, 0xf5, 0x1d, 0x98,
0xbc, 0x6e, 0x05, 0x14, 0xc3, 0x44, 0xfc, 0x15, 0xba, 0x6f, 0xa2, 0x42, 0xfe, 0x04, 0x94, 0x3d,
0x77, 0x8f, 0xe9, 0x35, 0xe2, 0x93, 0xd5, 0xb4, 0x92, 0xe7, 0xee, 0x51, 0xa5, 0x45, 0x93, 0x6b,
0x5c, 0x0f, 0x33, 0x8f, 0x38, 0xa7, 0xf1, 0x2f, 0xf5, 0xcf, 0x94, 0x98, 0xab, 0x88, 0x26, 0xf2,
0x1f, 0x4c, 0x15, 0xbd, 0x09, 0x25, 0x8f, 0xf5, 0x1f, 0x1a, 0xda, 0x17, 0x67, 0xa2, 0x7a, 0x35,
0xec, 0x35, 0x32, 0x03, 0x92, 0x1d, 0x71, 0xed, 0xaa, 0xdd, 0xf7, 0x1f, 0x86, 0x14, 0xc8, 0xc2,
0x24, 0x79, 0x79, 0xd8, 0x86, 0x52, 0x63, 0x7a, 0x29, 0xaf, 0xfe, 0xf7, 0x24, 0xd4, 0x39, 0x3c,
0xe3, 0xb8, 0x1a, 0x99, 0x30, 0x6d, 0x42, 0x95, 0xcc, 0xad, 0xfb, 0xb8, 0x13, 0x9e, 0x06, 0x55,
0x57, 0x57, 0xa5, 0xae, 0x76, 0x02, 0x0c, 0x9a, 0x46, 0xb1, 0x49, 0x3b, 0xbd, 0xed, 0x04, 0xde,
0xbe, 0x06, 0xed, 0xa8, 0x00, 0xb5, 0x61, 0x66, 0x9b, 0x34, 0xd6, 0xc5, 0xa1, 0x27, 0xe9, 0xd0,
0xaf, 0x8c, 0x30, 0x34, 0xfd, 0x4a, 0x8f, 0x3f, 0xbd, 0x9d, 0x2c, 0x45, 0x1f, 0x32, 0x92, 0xea,
0x3e, 0x36, 0xb8, 0x7c, 0x70, 0x63, 0x7b, 0x61, 0x64, 0xe8, 0x0d, 0x26, 0x40, 0x6c, 0x82, 0x7a,
0x5b, 0x2c, 0x6b, 0x7d, 0x08, 0xd3, 0x29, 0x10, 0x88, 0x44, 0xdc, 0xc5, 0xfb, 0x7c, 0xa3, 0x48,
0x7e, 0xa2, 0x97, 0xc4, 0x24, 0x9e, 0x2c, 0x33, 0x7f, 0xc3, 0x75, 0x3a, 0x97, 0x3c, 0xcf, 0xd8,
0xe7, 0x49, 0x3e, 0x17, 0x73, 0x5f, 0x56, 0x5a, 0x5b, 0x30, 0x27, 0x5b, 0xe6, 0xe7, 0x3a, 0xc7,
0x5b, 0x80, 0x06, 0xd7, 0x29, 0x99, 0x21, 0x91, 0x8a, 0x94, 0x17, 0x46, 0x50, 0x3f, 0xc9, 0x43,
0xed, 0xdd, 0x3e, 0xf6, 0xf6, 0x1f, 0xa5, 0x4d, 0x08, 0x6d, 0xda, 0xa4, 0x60, 0xd3, 0x06, 0xd4,
0x70, 0x41, 0xa2, 0x86, 0x25, 0xc6, 0xa4, 0x28, 0x35, 0x26, 0x32, 0x3d, 0x5b, 0x3a, 0x94, 0x9e,
0x2d, 0x67, 0xea, 0xd9, 0x35, 0xa8, 0xb1, 0x88, 0xe1, 0x61, 0x4d, 0x41, 0x95, 0x76, 0x63, 0x96,
0x80, 0xe9, 0x83, 0x46, 0x33, 0xaf, 0xfe, 0x48, 0x89, 0x28, 0x32, 0x96, 0x3e, 0x4d, 0x38, 0xa9,
0xb9, 0x43, 0x3b, 0xa9, 0x23, 0xeb, 0xd3, 0x4f, 0x15, 0xa8, 0xbc, 0x8f, 0xdb, 0x81, 0xeb, 0x11,
0x99, 0x95, 0x74, 0x53, 0x46, 0xd8, 0x39, 0xe4, 0xd2, 0x3b, 0x87, 0xf3, 0x50, 0xb6, 0x4c, 0xdd,
0x20, 0x0c, 0x4f, 0xe7, 0x1d, 0xe6, 0x9f, 0x96, 0x2c, 0x93, 0x4a, 0xc6, 0xe8, 0x71, 0x9f, 0xef,
0x29, 0x50, 0x63, 0x30, 0xfb, 0xac, 0xe7, 0x6b, 0xc2, 0x74, 0x8a, 0x4c, 0x0a, 0xf9, 0x47, 0xb4,
0xd0, 0xeb, 0x13, 0xf1, 0xb4, 0x97, 0x00, 0x08, 0x92, 0x79, 0x77, 0x26, 0xc4, 0x4b, 0x52, 0x68,
0x59, 0x77, 0x8a, 0xf0, 0xeb, 0x13, 0x5a, 0x85, 0xf4, 0xa2, 0x43, 0x5c, 0x2e, 0x41, 0x81, 0xf6,
0x56, 0xff, 0x47, 0x81, 0xd9, 0x2b, 0x86, 0xdd, 0x5e, 0xb3, 0xfc, 0xc0, 0x70, 0xda, 0x63, 0x78,
0xa4, 0x17, 0xa1, 0xe4, 0xf6, 0x74, 0x1b, 0x6f, 0x07, 0x1c, 0xa4, 0x53, 0x43, 0x56, 0xc4, 0xd0,
0xa0, 0x15, 0xdd, 0xde, 0x0d, 0xbc, 0x1d, 0xa0, 0xd7, 0xa1, 0xec, 0xf6, 0x74, 0xcf, 0xea, 0xec,
0x04, 0x1c, 0xfb, 0x23, 0x74, 0x2e, 0xb9, 0x3d, 0x8d, 0xf4, 0x10, 0x0e, 0xcf, 0x26, 0x0f, 0x79,
0x78, 0xa6, 0xfe, 0x64, 0x60, 0xf9, 0x63, 0xc8, 0xc0, 0x45, 0x28, 0x5b, 0x4e, 0xa0, 0x9b, 0x96,
0x1f, 0xa2, 0xe0, 0x84, 0x9c, 0x87, 0x9c, 0x80, 0xae, 0x80, 0xd2, 0xd4, 0x09, 0xc8, 0xdc, 0xe8,
0x2d, 0x80, 0x6d, 0xdb, 0x35, 0x78, 0x6f, 0x86, 0x83, 0x93, 0x72, 0xf1, 0x21, 0xcd, 0xc2, 0xfe,
0x15, 0xda, 0x89, 0x8c, 0x10, 0x93, 0xf4, 0xef, 0x15, 0x98, 0xdf, 0xc0, 0x1e, 0xcb, 0x61, 0x0b,
0xf8, 0xc9, 0xf7, 0xba, 0xb3, 0xed, 0x26, 0x83, 0x0f, 0x4a, 0x2a, 0xf8, 0xf0, 0xf9, 0x1c, 0xb8,
0x27, 0xf6, 0x93, 0x2c, 0x04, 0x16, 0xee, 0x27, 0xc3, 0x40, 0x1f, 0xdb, 0x98, 0x4f, 0x65, 0x90,
0x89, 0xc3, 0x2b, 0x9e, 0x4f, 0xa8, 0xbf, 0xcd, 0xf2, 0x7c, 0xa4, 0x8b, 0x7a, 0x70, 0x86, 0x5d,
0x00, 0x6e, 0x38, 0x52, 0x66, 0xe4, 0x19, 0x48, 0xe9, 0x8e, 0x0c, 0x45, 0xf4, 0xfb, 0x0a, 0x2c,
0x65, 0x43, 0x35, 0x8e, 0x6f, 0xf5, 0x16, 0x14, 0x2c, 0x67, 0xdb, 0x0d, 0xcf, 0x29, 0xcf, 0x48,
0x65, 0x41, 0x3e, 0x2f, 0xeb, 0xa8, 0xfe, 0x43, 0x0e, 0x1a, 0xef, 0xb2, 0xbc, 0x91, 0x2f, 0x9c,
0xfc, 0x5d, 0xdc, 0xd5, 0x7d, 0xeb, 0x63, 0x1c, 0x92, 0xbf, 0x8b, 0xbb, 0x9b, 0xd6, 0xc7, 0x38,
0xc1, 0x19, 0x85, 0x24, 0x67, 0x0c, 0x0f, 0x24, 0x88, 0xe7, 0xe6, 0xa5, 0xe4, 0xb9, 0xf9, 0x02,
0x14, 0x1d, 0xd7, 0xc4, 0xeb, 0x6b, 0x7c, 0x0f, 0xce, 0xbf, 0x62, 0x56, 0xab, 0x1c, 0x8e, 0xd5,
0xc8, 0x54, 0x74, 0x08, 0x93, 0xa5, 0xa0, 0x12, 0x18, 0xd9, 0xa7, 0xfa, 0x5d, 0x05, 0x5a, 0xd7,
0x70, 0x90, 0xc6, 0xea, 0xa3, 0xe3, 0xbf, 0x4f, 0x14, 0x38, 0x26, 0x05, 0x68, 0x1c, 0xd6, 0x7b,
0x2d, 0xc9, 0x7a, 0xf2, 0x23, 0xf2, 0x81, 0x29, 0x39, 0xd7, 0xbd, 0x08, 0xb5, 0xb5, 0x7e, 0xb7,
0x1b, 0xf9, 0x76, 0xa7, 0xa0, 0xe6, 0xb1, 0x9f, 0x6c, 0x5f, 0xcc, 0x2c, 0x73, 0x95, 0x97, 0x91,
0xdd, 0xaf, 0x7a, 0x16, 0xea, 0xbc, 0x0b, 0x87, 0xba, 0x05, 0x65, 0x8f, 0xff, 0xe6, 0xed, 0xa3,
0x6f, 0x75, 0x1e, 0x66, 0x35, 0xdc, 0x21, 0x4c, 0xef, 0xdd, 0xb0, 0x9c, 0xbb, 0x7c, 0x1a, 0xf5,
0x1b, 0x0a, 0xcc, 0x25, 0xcb, 0xf9, 0x58, 0x2f, 0x43, 0xc9, 0x30, 0x4d, 0x0f, 0xfb, 0xfe, 0x50,
0xb2, 0x5c, 0x62, 0x6d, 0xb4, 0xb0, 0xb1, 0x80, 0xb9, 0xdc, 0xc8, 0x98, 0x53, 0x75, 0x98, 0xb9,
0x86, 0x83, 0x9b, 0x38, 0xf0, 0xc6, 0x4a, 0xe7, 0x68, 0x92, 0x8d, 0x29, 0xed, 0xcc, 0xd9, 0x22,
0xfc, 0x54, 0xbf, 0xa3, 0x00, 0x12, 0x67, 0x18, 0x87, 0xcc, 0x22, 0x96, 0x73, 0x49, 0x2c, 0xb3,
0x84, 0xba, 0x6e, 0xcf, 0x75, 0xb0, 0x13, 0x88, 0x8e, 0x58, 0x3d, 0x2a, 0xa5, 0xec, 0xf7, 0x73,
0x05, 0xd0, 0x0d, 0xd7, 0x30, 0x2f, 0x1b, 0xf6, 0x78, 0x8e, 0xc3, 0x09, 0x00, 0xdf, 0x6b, 0xeb,
0x5c, 0x8e, 0x73, 0x5c, 0x2f, 0x79, 0xed, 0x5b, 0x4c, 0x94, 0x4f, 0x42, 0xd5, 0xf4, 0x03, 0x5e,
0x1d, 0x66, 0x17, 0x80, 0xe9, 0x07, 0xac, 0x9e, 0xe6, 0xb5, 0x93, 0x1d, 0x1b, 0x36, 0x75, 0x21,
0x38, 0x3b, 0x49, 0x9b, 0x35, 0x58, 0xc5, 0x66, 0x54, 0x2e, 0x11, 0xae, 0x42, 0x76, 0x8e, 0xe9,
0x4c, 0xb3, 0xa0, 0x6e, 0xc3, 0xe2, 0x4d, 0xc3, 0xe9, 0x1b, 0xf6, 0x15, 0xb7, 0xdb, 0x33, 0x12,
0x39, 0xd1, 0x69, 0x8d, 0xa9, 0x48, 0x34, 0xe6, 0x93, 0x2c, 0x55, 0x93, 0x39, 0xfd, 0x74, 0x71,
0x93, 0x9a, 0x50, 0xc2, 0xe6, 0x29, 0x35, 0x15, 0xd5, 0x87, 0xe6, 0xe0, 0x3c, 0xe3, 0x90, 0x98,
0x42, 0x17, 0x0e, 0x25, 0xea, 0xf3, 0xb8, 0x4c, 0x7d, 0x13, 0x9e, 0xa0, 0xf9, 0xb3, 0x61, 0x51,
0x22, 0xac, 0x92, 0x1e, 0x40, 0x91, 0x0c, 0xf0, 0xa7, 0x39, 0xaa, 0x14, 0x07, 0x46, 0x18, 0x07,
0xf0, 0x8b, 0xc9, 0x20, 0xc6, 0xd3, 0x19, 0x69, 0xfb, 0xc9, 0x19, 0xb9, 0xfa, 0x5e, 0x86, 0x69,
0x7c, 0x1f, 0xb7, 0xfb, 0x81, 0xe5, 0x74, 0x36, 0x6c, 0xc3, 0xb9, 0xe5, 0x72, 0x23, 0x95, 0x2e,
0x46, 0x4f, 0x43, 0x9d, 0x90, 0xc1, 0xed, 0x07, 0xbc, 0x1d, 0xb3, 0x56, 0xc9, 0x42, 0x32, 0x1e,
0x59, 0xaf, 0x8d, 0x03, 0x6c, 0xf2, 0x76, 0xcc, 0x74, 0xa5, 0x8b, 0x09, 0xb6, 0xb6, 0x0d, 0xcb,
0x8e, 0x9a, 0xb1, 0x13, 0xe5, 0x44, 0xd9, 0x00, 0xba, 0x49, 0xb1, 0x7f, 0x18, 0x74, 0xff, 0xa3,
0x92, 0x42, 0x37, 0x1f, 0xe1, 0x51, 0xa1, 0xfb, 0x3a, 0x40, 0x17, 0x7b, 0x1d, 0xbc, 0x4e, 0x4d,
0x06, 0x3b, 0xea, 0x59, 0x96, 0x9a, 0x8c, 0x78, 0x80, 0x9b, 0x61, 0x07, 0x4d, 0xe8, 0xab, 0x5e,
0x83, 0x59, 0x49, 0x13, 0xa2, 0x0d, 0x7d, 0xb7, 0xef, 0xb5, 0x71, 0x78, 0x6c, 0x18, 0x7e, 0x12,
0xeb, 0x19, 0x18, 0x5e, 0x07, 0x07, 0x9c, 0xb1, 0xf9, 0x97, 0xfa, 0x32, 0x0d, 0x12, 0xd2, 0x93,
0x90, 0x04, 0x37, 0x27, 0x73, 0x37, 0x94, 0x81, 0xdc, 0x8d, 0x6d, 0x1a, 0x88, 0x13, 0xfb, 0x8d,
0x99, 0x77, 0x43, 0x4f, 0x97, 0xb0, 0xc9, 0xaf, 0x7a, 0x85, 0x9f, 0xea, 0xff, 0x2a, 0x50, 0x5f,
0xef, 0xf6, 0xdc, 0x38, 0xf4, 0x34, 0xf2, 0x16, 0x76, 0xf0, 0xc4, 0x3e, 0x27, 0x3b, 0xb1, 0x7f,
0x0a, 0xea, 0xc9, 0x4b, 0x41, 0xec, 0x44, 0xb0, 0xd6, 0x16, 0x2f, 0x03, 0x1d, 0x83, 0x8a, 0xe7,
0xee, 0xe9, 0x44, 0x01, 0x9b, 0x3c, 0xc3, 0xa7, 0xec, 0xb9, 0x7b, 0x44, 0x2d, 0x9b, 0x68, 0x0e,
0x0a, 0xdb, 0x96, 0x1d, 0x25, 0xa7, 0xb1, 0x0f, 0xf4, 0x1a, 0xd9, 0xe0, 0xb1, 0xf8, 0x79, 0x71,
0xd4, 0x7d, 0x56, 0xd8, 0x83, 0xe9, 0x39, 0xd4, 0x54, 0xd4, 0x0f, 0x60, 0x2a, 0x5c, 0xfe, 0x98,
0x97, 0xdd, 0x02, 0xc3, 0xbf, 0x1b, 0x66, 0xe1, 0xb0, 0x0f, 0xf5, 0x2c, 0x8b, 0xa6, 0xd2, 0xf1,
0x13, 0xd4, 0x47, 0x30, 0x49, 0x5a, 0x70, 0xa1, 0xa2, 0xbf, 0xd5, 0x7f, 0xcb, 0xc1, 0x42, 0xba,
0xf5, 0x38, 0x20, 0xbd, 0x9c, 0x14, 0x24, 0xf9, 0xdd, 0x25, 0x71, 0x36, 0x2e, 0x44, 0x9c, 0x14,
0x6d, 0xb7, 0xef, 0x04, 0x5c, 0x5b, 0x11, 0x52, 0x5c, 0x21, 0xdf, 0x68, 0x11, 0x4a, 0x96, 0xa9,
0xdb, 0x64, 0x53, 0xc8, 0x4c, 0x5a, 0xd1, 0x32, 0x6f, 0x90, 0x0d, 0xe3, 0x2b, 0xa1, 0xa3, 0x36,
0x72, 0xea, 0x0e, 0x6b, 0x8f, 0xa6, 0x20, 0x67, 0x99, 0x5c, 0x3d, 0xe5, 0x2c, 0x93, 0xb2, 0x8b,
0x98, 0x3f, 0xcf, 0x5d, 0x6c, 0xd1, 0x8c, 0x99, 0xc4, 0x08, 0x73, 0x59, 0xa1, 0x19, 0xf6, 0xe5,
0xa4, 0xf8, 0x98, 0x94, 0x9f, 0x58, 0x4e, 0x9e, 0x1e, 0xf8, 0xd4, 0xe9, 0xce, 0x6b, 0x65, 0x56,
0x70, 0xc7, 0x57, 0xbf, 0x0a, 0x0b, 0x04, 0x66, 0xb6, 0xf6, 0x3b, 0x84, 0x52, 0x87, 0xe6, 0xfd,
0x39, 0x28, 0xd8, 0x56, 0xd7, 0x0a, 0xa5, 0x9d, 0x7d, 0xa8, 0xbf, 0xa9, 0xc0, 0xe2, 0xc0, 0xc8,
0xe3, 0xd0, 0xf0, 0x92, 0xc8, 0x56, 0xd5, 0xd5, 0xb3, 0x52, 0x5d, 0x26, 0x67, 0x9a, 0x90, 0x07,
0x7f, 0x87, 0xb9, 0x69, 0x1a, 0x4b, 0x59, 0x7e, 0xc8, 0x09, 0x70, 0xcb, 0xd0, 0xd8, 0xb3, 0x82,
0x1d, 0x9d, 0xde, 0xb2, 0xa3, 0x3e, 0x12, 0x4b, 0x9c, 0x28, 0x6b, 0x53, 0xa4, 0x7c, 0x93, 0x14,
0x13, 0x3f, 0xc9, 0x57, 0xbf, 0xad, 0xc0, 0x6c, 0x02, 0xac, 0x71, 0xd0, 0xf4, 0x3a, 0x71, 0x1f,
0xd9, 0x40, 0x1c, 0x53, 0x4b, 0x52, 0x4c, 0xf1, 0xd9, 0xa8, 0xb6, 0x8f, 0x7a, 0xa8, 0x3f, 0x53,
0xa0, 0x2a, 0xd4, 0x90, 0x7d, 0x29, 0xaf, 0x8b, 0xf7, 0xa5, 0x51, 0xc1, 0x48, 0x68, 0x78, 0x0a,
0x62, 0x1d, 0x28, 0x5c, 0x01, 0x11, 0x72, 0x50, 0x4d, 0x1f, 0x5d, 0x87, 0x29, 0x86, 0xa6, 0x08,
0x74, 0xe9, 0x71, 0x51, 0x94, 0x5d, 0x6b, 0x78, 0x26, 0x87, 0x52, 0xab, 0xfb, 0xc2, 0x17, 0x8b,
0x99, 0xbb, 0x26, 0xa6, 0x33, 0x15, 0x06, 0x76, 0x89, 0x35, 0xb1, 0x2b, 0xf1, 0xb4, 0x6d, 0x6c,
0x98, 0xd8, 0x8b, 0xd6, 0x16, 0x7d, 0x13, 0xa9, 0x62, 0xbf, 0x75, 0xb2, 0xf3, 0xe0, 0xda, 0x1c,
0x58, 0x11, 0xd9, 0x94, 0xa0, 0x67, 0x60, 0xda, 0xec, 0x26, 0xae, 0x78, 0x86, 0xbe, 0xb8, 0xd9,
0x15, 0xee, 0x76, 0x26, 0x00, 0x9a, 0x4c, 0x02, 0xf4, 0xcd, 0xf8, 0xd2, 0xbc, 0x87, 0x4d, 0xec,
0x04, 0x96, 0x61, 0x3f, 0x38, 0x4f, 0xb6, 0xa0, 0xdc, 0xf7, 0xb1, 0x27, 0x18, 0x9f, 0xe8, 0x9b,
0xd4, 0xf5, 0x0c, 0xdf, 0xdf, 0x73, 0x3d, 0x93, 0x43, 0x19, 0x7d, 0x0f, 0x49, 0xe8, 0x65, 0x17,
0xad, 0xe5, 0x09, 0xbd, 0x2f, 0xc3, 0x62, 0xd7, 0x35, 0xad, 0x6d, 0x4b, 0x96, 0x07, 0x4c, 0xba,
0xcd, 0x87, 0xd5, 0x89, 0x7e, 0xe1, 0x15, 0xa5, 0x59, 0xf1, 0x8a, 0xd2, 0x0f, 0x72, 0xb0, 0xf8,
0x5e, 0xcf, 0xfc, 0x02, 0xf0, 0xb0, 0x04, 0x55, 0xd7, 0x36, 0x37, 0x92, 0xa8, 0x10, 0x8b, 0x48,
0x0b, 0x07, 0xef, 0x45, 0x2d, 0x58, 0x18, 0x42, 0x2c, 0x1a, 0x9a, 0x00, 0xfd, 0x40, 0xf8, 0x2a,
0x0e, 0xc3, 0x57, 0xe5, 0xb3, 0x37, 0x8a, 0xe5, 0x5c, 0x63, 0xae, 0x99, 0x53, 0x7f, 0x05, 0x16,
0x59, 0x6a, 0xc2, 0x43, 0xc6, 0x52, 0x48, 0xa3, 0x79, 0x91, 0x46, 0x1f, 0xc1, 0x3c, 0xd1, 0xe6,
0x64, 0xea, 0xf7, 0x7c, 0xec, 0x8d, 0xa9, 0xa4, 0x8e, 0x43, 0x25, 0x9c, 0x2d, 0x4c, 0x5d, 0x8f,
0x0b, 0xd4, 0x5f, 0x86, 0xb9, 0xd4, 0x5c, 0x0f, 0xb8, 0xca, 0x70, 0x25, 0x0b, 0xe2, 0x4a, 0x96,
0x00, 0x34, 0xd7, 0xc6, 0x6f, 0x3b, 0x81, 0x15, 0xec, 0x13, 0xef, 0x43, 0x30, 0x6d, 0xf4, 0x37,
0x69, 0x41, 0xe6, 0x1d, 0xd2, 0xe2, 0xb7, 0x14, 0x98, 0x61, 0x92, 0x4b, 0x86, 0x7a, 0x70, 0x2a,
0xbc, 0x02, 0x45, 0x4c, 0x67, 0xe1, 0xa7, 0x19, 0x27, 0xe5, 0xaa, 0x3a, 0x02, 0x57, 0xe3, 0xcd,
0xa5, 0x62, 0x14, 0xc0, 0xf4, 0x9a, 0xe7, 0xf6, 0xc6, 0x83, 0x88, 0x7a, 0x3c, 0x36, 0x16, 0x7d,
0xd8, 0x32, 0x29, 0xb8, 0x95, 0xc5, 0x18, 0x3f, 0x55, 0x60, 0xe1, 0x76, 0x0f, 0x7b, 0x46, 0x80,
0x09, 0xd2, 0xc6, 0x9b, 0x7d, 0x98, 0xec, 0x26, 0x20, 0xcb, 0x27, 0x21, 0x43, 0xaf, 0x27, 0xee,
0x55, 0xca, 0xf7, 0x39, 0x29, 0x28, 0xe3, 0xfb, 0x19, 0xe1, 0xba, 0x16, 0xc5, 0x75, 0xfd, 0x58,
0x81, 0x99, 0x4d, 0x4c, 0xec, 0xd8, 0x78, 0x4b, 0x3a, 0x0f, 0x93, 0x04, 0xca, 0x51, 0x09, 0x4c,
0x1b, 0xa3, 0x33, 0x30, 0x63, 0x39, 0x6d, 0xbb, 0x6f, 0x62, 0x9d, 0xac, 0x5f, 0x27, 0xee, 0x21,
0x77, 0x1e, 0xa6, 0x79, 0x05, 0x59, 0x06, 0x31, 0xd1, 0x52, 0x1e, 0xbf, 0xcf, 0x78, 0x3c, 0x4a,
0x08, 0x63, 0x20, 0x28, 0x87, 0x01, 0xe1, 0x02, 0x14, 0xc8, 0xd4, 0xa1, 0x13, 0x21, 0xef, 0x15,
0x8b, 0x89, 0xc6, 0x5a, 0xab, 0xbf, 0xaa, 0x00, 0x12, 0xd1, 0x36, 0x8e, 0x96, 0x78, 0x55, 0x4c,
0x04, 0xc9, 0x0f, 0x05, 0x9d, 0xad, 0x34, 0x4a, 0x01, 0x51, 0x3f, 0x8d, 0xa8, 0x47, 0xc9, 0x3d,
0x0e, 0xf5, 0xc8, 0xba, 0x86, 0x52, 0x4f, 0x40, 0x02, 0x6d, 0x2c, 0x52, 0x8f, 0x72, 0xac, 0x84,
0x7a, 0x04, 0x66, 0x4a, 0x3d, 0xae, 0xdf, 0x9b, 0xcd, 0x1c, 0x21, 0x1a, 0x03, 0x36, 0x24, 0x1a,
0x9d, 0x59, 0x39, 0xcc, 0xcc, 0x17, 0xa0, 0x40, 0x66, 0x3c, 0x18, 0x5f, 0x21, 0xd1, 0x68, 0x6b,
0x81, 0x68, 0x1c, 0x80, 0x87, 0x4f, 0xb4, 0x78, 0xa5, 0x31, 0xd1, 0x54, 0xa8, 0xdd, 0xde, 0xfa,
0x08, 0xb7, 0x83, 0x21, 0x9a, 0xf7, 0x34, 0x4c, 0x6f, 0x78, 0xd6, 0xae, 0x65, 0xe3, 0xce, 0x30,
0x15, 0xfe, 0x6d, 0x05, 0xea, 0xd7, 0x3c, 0xc3, 0x09, 0xdc, 0x50, 0x8d, 0x3f, 0x10, 0x3e, 0x2f,
0x43, 0xa5, 0x17, 0xce, 0xc6, 0x79, 0xe0, 0x69, 0x79, 0xc4, 0x27, 0x09, 0x93, 0x16, 0x77, 0x53,
0xdf, 0x87, 0x39, 0x0a, 0x49, 0x1a, 0xec, 0x37, 0xa0, 0x4c, 0x95, 0xb9, 0xc5, 0x0f, 0x50, 0xaa,
0xab, 0xaa, 0x7c, 0x4b, 0x23, 0x2e, 0x43, 0x8b, 0xfa, 0xa8, 0xff, 0xa2, 0x40, 0x95, 0xd6, 0xc5,
0x0b, 0x3c, 0xbc, 0x94, 0xbf, 0x0a, 0x45, 0x97, 0xa2, 0x7c, 0x68, 0x60, 0x58, 0xa4, 0x8a, 0xc6,
0x3b, 0x10, 0x0f, 0x99, 0xfd, 0x12, 0x35, 0x32, 0xb0, 0x22, 0xae, 0x93, 0x4b, 0x1d, 0x06, 0x3b,
0x55, 0xcb, 0xa3, 0xad, 0x2f, 0xec, 0x42, 0xf7, 0x6a, 0x8c, 0x27, 0x69, 0x83, 0x07, 0x17, 0xe1,
0x2f, 0xa7, 0x6c, 0xec, 0x52, 0x36, 0x14, 0x72, 0x23, 0x9b, 0xd0, 0xac, 0x64, 0xaf, 0x96, 0x00,
0x6b, 0xcc, 0xbd, 0x5a, 0xc4, 0x02, 0xc3, 0xf6, 0x6a, 0x22, 0x70, 0x31, 0x03, 0xfc, 0x93, 0x02,
0x8b, 0xdc, 0xa6, 0x45, 0xbc, 0xf5, 0x08, 0xd0, 0x84, 0xbe, 0xc2, 0x6d, 0x6f, 0x9e, 0xda, 0xde,
0xe7, 0x86, 0xd9, 0xde, 0x08, 0xce, 0x03, 0x8c, 0xef, 0xf7, 0x15, 0x7a, 0x1c, 0x7b, 0xc3, 0x35,
0x4c, 0xcb, 0xe9, 0x8c, 0x7f, 0x83, 0x63, 0x30, 0xb4, 0x90, 0x93, 0x1e, 0x65, 0x3c, 0x03, 0xa9,
0xf4, 0x10, 0x7e, 0x40, 0x97, 0x4e, 0x1a, 0xe9, 0xd2, 0xb3, 0xde, 0x01, 0xf0, 0xc6, 0x0c, 0xfb,
0xf4, 0xf8, 0x40, 0x7c, 0x1f, 0x1d, 0x7d, 0xab, 0xa7, 0xa1, 0x72, 0x93, 0x8e, 0xf0, 0xf6, 0xfd,
0x00, 0x35, 0xa1, 0xb4, 0x8b, 0x3d, 0xdf, 0x72, 0x1d, 0xae, 0xf1, 0xc2, 0xcf, 0x33, 0xa7, 0xa0,
0x1c, 0x5e, 0x3c, 0x45, 0x25, 0xc8, 0x5f, 0xb2, 0xed, 0xc6, 0x04, 0xaa, 0x41, 0x79, 0x9d, 0xdf,
0xae, 0x6c, 0x28, 0x67, 0xde, 0x82, 0x59, 0x89, 0x1b, 0x84, 0x66, 0xa0, 0x7e, 0xc9, 0xa4, 0xce,
0xf6, 0x1d, 0x97, 0x14, 0x36, 0x26, 0xd0, 0x02, 0x20, 0x0d, 0x77, 0xdd, 0x5d, 0xda, 0xf0, 0xaa,
0xe7, 0x76, 0x69, 0xb9, 0x72, 0xe6, 0x79, 0x98, 0x93, 0x11, 0x13, 0x55, 0xa0, 0x40, 0x99, 0xa3,
0x31, 0x81, 0x00, 0x8a, 0x1a, 0xde, 0x75, 0xef, 0xe2, 0x86, 0xb2, 0xfa, 0xa3, 0xb3, 0x50, 0x67,
0xb0, 0xf3, 0x67, 0x12, 0x90, 0x0e, 0x8d, 0xf4, 0x4b, 0x71, 0xe8, 0x4b, 0xf2, 0x83, 0x69, 0xf9,
0x83, 0x72, 0xad, 0x61, 0xf8, 0x54, 0x27, 0xd0, 0x07, 0x30, 0x95, 0x7c, 0x5b, 0x0d, 0xc9, 0xa3,
0xf4, 0xd2, 0x07, 0xd8, 0x0e, 0x1a, 0x5c, 0x87, 0x7a, 0xe2, 0x59, 0x34, 0x24, 0xe7, 0x77, 0xd9,
0xd3, 0x69, 0x2d, 0xb9, 0x72, 0x15, 0x9f, 0x2e, 0x63, 0xd0, 0x27, 0xdf, 0x29, 0xca, 0x80, 0x5e,
0xfa, 0x98, 0xd1, 0x41, 0xd0, 0x1b, 0x30, 0x33, 0xf0, 0x8c, 0x10, 0x7a, 0x3e, 0xe3, 0x7c, 0x48,
0xfe, 0xdc, 0xd0, 0x41, 0x53, 0xec, 0x01, 0x1a, 0x7c, 0xea, 0x0b, 0xad, 0xc8, 0x29, 0x90, 0xf5,
0xf8, 0x59, 0xeb, 0xdc, 0xc8, 0xed, 0x23, 0xc4, 0x7d, 0x4b, 0x81, 0xc5, 0x8c, 0x17, 0x67, 0xd0,
0xf9, 0xac, 0xc3, 0xc2, 0x21, 0xef, 0xe7, 0xb4, 0x5e, 0x3a, 0x5c, 0xa7, 0x08, 0x10, 0x07, 0xa6,
0x53, 0x0f, 0xae, 0xa0, 0xb3, 0x99, 0xb7, 0xc4, 0x07, 0x5f, 0xa3, 0x69, 0x7d, 0x69, 0xb4, 0xc6,
0xd1, 0x7c, 0x1f, 0xc2, 0x74, 0xea, 0xb5, 0x91, 0x8c, 0xf9, 0xe4, 0x6f, 0x92, 0x1c, 0x44, 0xd0,
0xaf, 0x41, 0x3d, 0xf1, 0x2c, 0x48, 0x06, 0xc7, 0xcb, 0x9e, 0x0e, 0x39, 0x68, 0xe8, 0x0f, 0xa1,
0x26, 0xbe, 0xde, 0x81, 0x96, 0xb3, 0x64, 0x69, 0x60, 0xe0, 0xc3, 0x88, 0x52, 0x7c, 0xeb, 0x7e,
0x88, 0x28, 0x0d, 0x3c, 0x54, 0x30, 0xba, 0x28, 0x09, 0xe3, 0x0f, 0x15, 0xa5, 0x43, 0x4f, 0xf1,
0x0d, 0x85, 0x46, 0x41, 0x24, 0xaf, 0x3a, 0xa0, 0xd5, 0x2c, 0xde, 0xcc, 0x7e, 0xbf, 0xa2, 0x75,
0xfe, 0x50, 0x7d, 0x22, 0x2c, 0xde, 0x85, 0xa9, 0xe4, 0xdb, 0x05, 0x19, 0x58, 0x94, 0x3e, 0xf7,
0xd0, 0x3a, 0x3b, 0x52, 0xdb, 0x68, 0xb2, 0x3d, 0x7a, 0x40, 0x9f, 0x32, 0xac, 0x19, 0xda, 0x23,
0xd3, 0x41, 0xc8, 0xd0, 0x1e, 0xd9, 0x16, 0x5b, 0x9d, 0x40, 0xef, 0x41, 0x55, 0x78, 0x75, 0x16,
0x3d, 0x3b, 0x44, 0x80, 0xc4, 0x27, 0x58, 0x0f, 0x22, 0xe1, 0xbb, 0x50, 0x89, 0x1e, 0x8b, 0x45,
0xa7, 0x33, 0x05, 0xe7, 0x30, 0x43, 0x6e, 0x02, 0xc4, 0x2f, 0xc1, 0xa2, 0x67, 0xa4, 0x63, 0x0e,
0x3c, 0x15, 0x7b, 0xd0, 0xa0, 0xd1, 0xf2, 0xd9, 0x2d, 0xad, 0x61, 0xcb, 0x17, 0x2f, 0x1a, 0x1e,
0x34, 0xec, 0x0e, 0xd4, 0x13, 0x17, 0x86, 0xb3, 0x74, 0x87, 0xe4, 0x02, 0x7a, 0xeb, 0xcc, 0x28,
0x4d, 0x23, 0xfa, 0xed, 0x40, 0x3d, 0x71, 0x59, 0x33, 0x63, 0x26, 0xd9, 0x25, 0xd5, 0x8c, 0x99,
0xa4, 0x77, 0x3f, 0xd5, 0x09, 0xf4, 0x75, 0xe1, 0x5e, 0x68, 0xe2, 0x12, 0x2e, 0x7a, 0x71, 0xe8,
0x38, 0xb2, 0xcb, 0xc8, 0xad, 0xd5, 0xc3, 0x74, 0x89, 0x40, 0xe0, 0x5c, 0xc5, 0x50, 0x9a, 0xcd,
0x55, 0x87, 0xa1, 0xd4, 0x26, 0x14, 0xd9, 0xad, 0x4b, 0xa4, 0x66, 0x5c, 0xbd, 0x16, 0xae, 0x64,
0xb6, 0x9e, 0x92, 0xb6, 0x49, 0xde, 0x43, 0x64, 0x83, 0xb2, 0x13, 0xeb, 0x8c, 0x41, 0x13, 0x37,
0xed, 0x46, 0x1d, 0x54, 0x83, 0x22, 0xbb, 0xfa, 0x93, 0x31, 0x68, 0xe2, 0x5e, 0x5b, 0x6b, 0x78,
0x1b, 0x76, 0xee, 0x30, 0x81, 0x36, 0xa0, 0x40, 0xd3, 0x0b, 0xd0, 0xa9, 0x61, 0xd7, 0x49, 0x86,
0x8d, 0x98, 0xb8, 0x71, 0xa2, 0x4e, 0xa0, 0xdb, 0x50, 0xa0, 0xa9, 0x78, 0x19, 0x23, 0x8a, 0xf7,
0x2c, 0x5a, 0x43, 0x9b, 0x84, 0x20, 0x9a, 0x50, 0x13, 0xb3, 0xa1, 0x33, 0x6c, 0xa5, 0x24, 0x5f,
0xbc, 0x35, 0x4a, 0xcb, 0x70, 0x16, 0x26, 0x46, 0x71, 0xaa, 0x45, 0xb6, 0x18, 0x0d, 0xa4, 0x71,
0x64, 0x8b, 0xd1, 0x60, 0xe6, 0x86, 0x3a, 0x81, 0x7e, 0x4d, 0x81, 0x66, 0x56, 0x8a, 0x2e, 0xca,
0x74, 0xbd, 0x86, 0xe5, 0x19, 0xb7, 0x2e, 0x1c, 0xb2, 0x57, 0x04, 0xcb, 0xc7, 0x34, 0xfe, 0x3a,
0x90, 0x94, 0x9b, 0x69, 0x46, 0x32, 0x12, 0x4d, 0x5b, 0x2f, 0x8c, 0xde, 0x21, 0x9a, 0x7b, 0x0b,
0xaa, 0x42, 0xec, 0x37, 0x43, 0xf3, 0x0e, 0x06, 0xad, 0x33, 0xa8, 0x2a, 0x09, 0x23, 0x33, 0xf6,
0xa6, 0x99, 0x9c, 0x19, 0xcc, 0x28, 0x26, 0x86, 0x66, 0xb0, 0x77, 0x22, 0x11, 0x54, 0x9d, 0x40,
0x18, 0x6a, 0x62, 0x5a, 0x67, 0x06, 0x37, 0x4a, 0x32, 0x42, 0x5b, 0xcf, 0x8d, 0xd0, 0x32, 0x9a,
0x46, 0x07, 0x88, 0xd3, 0x2a, 0x33, 0x6c, 0xdd, 0x40, 0x66, 0x67, 0xeb, 0xd9, 0x03, 0xdb, 0x89,
0x66, 0x5f, 0x48, 0x94, 0xcc, 0xc0, 0xfe, 0x60, 0x2a, 0xe5, 0x08, 0x9b, 0xa0, 0xc1, 0xd4, 0xbb,
0x6c, 0x37, 0x46, 0x9e, 0xe5, 0x97, 0xed, 0xc6, 0x64, 0xe4, 0xf4, 0xa9, 0x13, 0xe8, 0x1e, 0x34,
0xd2, 0xa9, 0x8a, 0x19, 0x9b, 0xeb, 0x8c, 0xcc, 0xc9, 0xd6, 0xf3, 0x23, 0xb6, 0x16, 0xed, 0xe1,
0xb1, 0x41, 0x98, 0xbe, 0x6a, 0x05, 0x3b, 0x34, 0x03, 0x6e, 0x94, 0x55, 0x8b, 0xc9, 0x76, 0xa3,
0xac, 0x3a, 0x91, 0x5a, 0xc7, 0x8d, 0x17, 0xcd, 0xfa, 0xc8, 0x32, 0x5e, 0x62, 0x52, 0x57, 0x86,
0x9d, 0x49, 0x66, 0x3e, 0x31, 0xbf, 0x37, 0x99, 0x4d, 0x82, 0xce, 0x8c, 0x94, 0x72, 0x32, 0xcc,
0xef, 0x95, 0xa7, 0xa7, 0xb0, 0x3d, 0x63, 0x2a, 0x59, 0x26, 0x63, 0x0f, 0x27, 0x4f, 0xd6, 0xc9,
0xd8, 0x33, 0x66, 0xe4, 0xdf, 0x50, 0xc1, 0x6a, 0xa4, 0x33, 0x0f, 0x86, 0x1f, 0xc2, 0xa4, 0x43,
0xce, 0x07, 0x9f, 0x93, 0x34, 0xd2, 0x21, 0xfd, 0x8c, 0x09, 0x32, 0x22, 0xff, 0x23, 0x4c, 0x90,
0x8e, 0x86, 0x67, 0x4c, 0x90, 0x11, 0x34, 0x1f, 0xc1, 0x77, 0x4d, 0x44, 0xa1, 0x33, 0x4c, 0xa1,
0x2c, 0x52, 0x9d, 0x61, 0x0a, 0xa5, 0x01, 0x74, 0xe6, 0xd1, 0xc7, 0xc1, 0xe4, 0x0c, 0x2d, 0x37,
0x10, 0x6d, 0x3e, 0x08, 0xfc, 0xdb, 0x50, 0x0e, 0xa3, 0xc1, 0xe8, 0xe9, 0x4c, 0x17, 0xf1, 0x10,
0x03, 0x7e, 0x08, 0xd3, 0xa9, 0xa3, 0xc3, 0x0c, 0x16, 0x95, 0x47, 0x83, 0x0f, 0xa6, 0x27, 0xc4,
0x71, 0xc3, 0x0c, 0x24, 0x0c, 0xc4, 0x63, 0x33, 0x54, 0xfd, 0x60, 0x00, 0x52, 0x9c, 0x80, 0x00,
0x36, 0x74, 0x02, 0x21, 0x64, 0x38, 0x74, 0x02, 0x31, 0x58, 0xc6, 0x38, 0x32, 0x7d, 0x32, 0x9a,
0xc1, 0x91, 0x19, 0xa7, 0xf6, 0x07, 0xa1, 0x68, 0x0b, 0xaa, 0x42, 0xe8, 0x01, 0x0d, 0x03, 0x4d,
0x8c, 0x99, 0x64, 0xb8, 0x0a, 0x92, 0x28, 0x86, 0x3a, 0xb1, 0xda, 0x87, 0xda, 0x86, 0xe7, 0xde,
0x0f, 0x1f, 0xb5, 0xfd, 0x82, 0x0c, 0xfd, 0xc5, 0x36, 0x4c, 0xb1, 0x06, 0x3a, 0xbe, 0x1f, 0xe8,
0xee, 0xd6, 0x47, 0xe8, 0xf8, 0x0a, 0xfb, 0x57, 0x31, 0x2b, 0xe1, 0xbf, 0x8a, 0x59, 0xb9, 0x6a,
0xd9, 0xf8, 0x36, 0xcf, 0x72, 0xfd, 0xf7, 0xd2, 0x90, 0x9b, 0x99, 0xd1, 0x59, 0xb9, 0xc6, 0xff,
0x5b, 0xcd, 0xdb, 0xf7, 0x83, 0xdb, 0x5b, 0x1f, 0x5d, 0x7e, 0xff, 0xb3, 0x37, 0x4a, 0x50, 0x58,
0x5d, 0x79, 0x71, 0xe5, 0x05, 0x98, 0xb2, 0xa2, 0xe6, 0x1d, 0xaf, 0xd7, 0xbe, 0x5c, 0x65, 0x9d,
0x36, 0xc8, 0x38, 0x1b, 0xca, 0x2f, 0x2d, 0x77, 0xac, 0x60, 0xa7, 0xbf, 0x45, 0x48, 0x70, 0x8e,
0x35, 0x7b, 0xde, 0x72, 0xf9, 0xaf, 0x73, 0x46, 0xcf, 0xe2, 0x3f, 0x7b, 0x5b, 0x7f, 0xa4, 0x28,
0x5b, 0x45, 0x3a, 0xfb, 0xf9, 0xff, 0x0f, 0x00, 0x00, 0xff, 0xff, 0xf2, 0xa8, 0x67, 0x1f, 0x1c,
0x67, 0x00, 0x00,
}
// Reference imports to suppress errors if they are not otherwise used.
@ -7504,6 +7618,7 @@ type MilvusServiceClient interface {
ReleasePartitions(ctx context.Context, in *ReleasePartitionsRequest, opts ...grpc.CallOption) (*commonpb.Status, error)
GetPartitionStatistics(ctx context.Context, in *GetPartitionStatisticsRequest, opts ...grpc.CallOption) (*GetPartitionStatisticsResponse, error)
ShowPartitions(ctx context.Context, in *ShowPartitionsRequest, opts ...grpc.CallOption) (*ShowPartitionsResponse, error)
GetLoadingProgress(ctx context.Context, in *GetLoadingProgressRequest, opts ...grpc.CallOption) (*GetLoadingProgressResponse, error)
CreateAlias(ctx context.Context, in *CreateAliasRequest, opts ...grpc.CallOption) (*commonpb.Status, error)
DropAlias(ctx context.Context, in *DropAliasRequest, opts ...grpc.CallOption) (*commonpb.Status, error)
AlterAlias(ctx context.Context, in *AlterAliasRequest, opts ...grpc.CallOption) (*commonpb.Status, error)
@ -7695,6 +7810,15 @@ func (c *milvusServiceClient) ShowPartitions(ctx context.Context, in *ShowPartit
return out, nil
}
func (c *milvusServiceClient) GetLoadingProgress(ctx context.Context, in *GetLoadingProgressRequest, opts ...grpc.CallOption) (*GetLoadingProgressResponse, error) {
out := new(GetLoadingProgressResponse)
err := c.cc.Invoke(ctx, "/milvus.proto.milvus.MilvusService/GetLoadingProgress", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *milvusServiceClient) CreateAlias(ctx context.Context, in *CreateAliasRequest, opts ...grpc.CallOption) (*commonpb.Status, error) {
out := new(commonpb.Status)
err := c.cc.Invoke(ctx, "/milvus.proto.milvus.MilvusService/CreateAlias", in, out, opts...)
@ -8063,6 +8187,7 @@ type MilvusServiceServer interface {
ReleasePartitions(context.Context, *ReleasePartitionsRequest) (*commonpb.Status, error)
GetPartitionStatistics(context.Context, *GetPartitionStatisticsRequest) (*GetPartitionStatisticsResponse, error)
ShowPartitions(context.Context, *ShowPartitionsRequest) (*ShowPartitionsResponse, error)
GetLoadingProgress(context.Context, *GetLoadingProgressRequest) (*GetLoadingProgressResponse, error)
CreateAlias(context.Context, *CreateAliasRequest) (*commonpb.Status, error)
DropAlias(context.Context, *DropAliasRequest) (*commonpb.Status, error)
AlterAlias(context.Context, *AlterAliasRequest) (*commonpb.Status, error)
@ -8160,6 +8285,9 @@ func (*UnimplementedMilvusServiceServer) GetPartitionStatistics(ctx context.Cont
func (*UnimplementedMilvusServiceServer) ShowPartitions(ctx context.Context, req *ShowPartitionsRequest) (*ShowPartitionsResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method ShowPartitions not implemented")
}
func (*UnimplementedMilvusServiceServer) GetLoadingProgress(ctx context.Context, req *GetLoadingProgressRequest) (*GetLoadingProgressResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetLoadingProgress not implemented")
}
func (*UnimplementedMilvusServiceServer) CreateAlias(ctx context.Context, req *CreateAliasRequest) (*commonpb.Status, error) {
return nil, status.Errorf(codes.Unimplemented, "method CreateAlias not implemented")
}
@ -8552,6 +8680,24 @@ func _MilvusService_ShowPartitions_Handler(srv interface{}, ctx context.Context,
return interceptor(ctx, in, info, handler)
}
func _MilvusService_GetLoadingProgress_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(GetLoadingProgressRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(MilvusServiceServer).GetLoadingProgress(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/milvus.proto.milvus.MilvusService/GetLoadingProgress",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(MilvusServiceServer).GetLoadingProgress(ctx, req.(*GetLoadingProgressRequest))
}
return interceptor(ctx, in, info, handler)
}
func _MilvusService_CreateAlias_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(CreateAliasRequest)
if err := dec(in); err != nil {
@ -9318,6 +9464,10 @@ var _MilvusService_serviceDesc = grpc.ServiceDesc{
MethodName: "ShowPartitions",
Handler: _MilvusService_ShowPartitions_Handler,
},
{
MethodName: "GetLoadingProgress",
Handler: _MilvusService_GetLoadingProgress_Handler,
},
{
MethodName: "CreateAlias",
Handler: _MilvusService_CreateAlias_Handler,

View File

@ -627,6 +627,10 @@ func (s *Server) ShowPartitions(ctx context.Context, request *milvuspb.ShowParti
return s.proxy.ShowPartitions(ctx, request)
}
func (s *Server) GetLoadingProgress(ctx context.Context, request *milvuspb.GetLoadingProgressRequest) (*milvuspb.GetLoadingProgressResponse, error) {
return s.proxy.GetLoadingProgress(ctx, request)
}
// CreateIndex notifies Proxy to create index
func (s *Server) CreateIndex(ctx context.Context, request *milvuspb.CreateIndexRequest) (*commonpb.Status, error) {
return s.proxy.CreateIndex(ctx, request)

View File

@ -661,6 +661,10 @@ func (m *MockProxy) ShowPartitions(ctx context.Context, request *milvuspb.ShowPa
return nil, nil
}
func (m *MockProxy) GetLoadingProgress(ctx context.Context, request *milvuspb.GetLoadingProgressRequest) (*milvuspb.GetLoadingProgressResponse, error) {
return nil, nil
}
func (m *MockProxy) CreateIndex(ctx context.Context, request *milvuspb.CreateIndexRequest) (*commonpb.Status, error) {
return nil, nil
}
@ -1093,6 +1097,11 @@ func Test_NewServer(t *testing.T) {
assert.Nil(t, err)
})
t.Run("GetLoadingProgress", func(t *testing.T) {
_, err := server.GetLoadingProgress(ctx, nil)
assert.Nil(t, err)
})
t.Run("CreateIndex", func(t *testing.T) {
_, err := server.CreateIndex(ctx, nil)
assert.Nil(t, err)

View File

@ -30,6 +30,8 @@ service MilvusService {
rpc GetPartitionStatistics(GetPartitionStatisticsRequest) returns (GetPartitionStatisticsResponse) {}
rpc ShowPartitions(ShowPartitionsRequest) returns (ShowPartitionsResponse) {}
rpc GetLoadingProgress(GetLoadingProgressRequest) returns (GetLoadingProgressResponse) {}
rpc CreateAlias(CreateAliasRequest) returns (common.Status) {}
rpc DropAlias(DropAliasRequest) returns (common.Status) {}
rpc AlterAlias(AlterAliasRequest) returns (common.Status) {}
@ -323,6 +325,7 @@ message GetCollectionStatisticsResponse {
/*
* This is for ShowCollectionsRequest type field.
*/
// Deprecated: use GetLoadingProgress rpc instead
enum ShowType {
// Will return all collections
All = 0;
@ -348,6 +351,7 @@ message ShowCollectionsRequest {
// Decide return Loaded collections or All collections(Optional)
ShowType type = 4;
// When type is InMemory, will return these collection's inMemory_percentages.(Optional)
// Deprecated: use GetLoadingProgress rpc instead
repeated string collection_names = 5;
}
@ -366,6 +370,7 @@ message ShowCollectionsResponse {
// The utc timestamp calculated by created_timestamp
repeated uint64 created_utc_timestamps = 5;
// Load percentage on querynode when type is InMemory
// Deprecated: use GetLoadingProgress rpc instead
repeated int64 inMemory_percentages = 6;
// Indicate whether query service is available
repeated bool query_service_available = 7;
@ -479,6 +484,7 @@ message ShowPartitionsRequest {
// When type is InMemory, will return these patitions's inMemory_percentages.(Optional)
repeated string partition_names = 5;
// Decide return Loaded partitions or All partitions(Optional)
// Deprecated: use GetLoadingProgress rpc instead
ShowType type = 6;
}
@ -498,6 +504,7 @@ message ShowPartitionsResponse {
// All utc timestamps calculated by created_timestamps
repeated uint64 created_utc_timestamps = 5;
// Load percentage on querynode
// Deprecated: use GetLoadingProgress rpc instead
repeated int64 inMemory_percentages = 6;
}
@ -1264,6 +1271,19 @@ message OperatePrivilegeRequest {
OperatePrivilegeType type = 3;
}
message GetLoadingProgressRequest {
// Not useful for now
common.MsgBase base = 1;
string collectionName = 2;
repeated string partitionNames = 3;
}
message GetLoadingProgressResponse {
// Not useful for now
common.Status status = 1;
int64 progress = 2;
}
message MilvusExt {
string version = 1;
}

View File

@ -1701,6 +1701,146 @@ func (node *Proxy) ShowPartitions(ctx context.Context, request *milvuspb.ShowPar
return spt.result, nil
}
func (node *Proxy) getMsgBase() (*commonpb.MsgBase, error) {
msgID, err := node.idAllocator.AllocOne()
if err != nil {
return nil, err
}
timestamp, err := node.tsoAllocator.AllocOne()
if err != nil {
return nil, err
}
return &commonpb.MsgBase{
MsgID: msgID,
Timestamp: timestamp,
SourceID: Params.ProxyCfg.GetNodeID(),
}, nil
}
func (node *Proxy) getCollectionProgress(ctx context.Context, request *milvuspb.GetLoadingProgressRequest, collectionID int64) (int64, error) {
resp, err := node.queryCoord.ShowCollections(ctx, &querypb.ShowCollectionsRequest{
Base: &commonpb.MsgBase{
MsgType: commonpb.MsgType_ShowCollections,
MsgID: request.Base.MsgID,
Timestamp: request.Base.Timestamp,
SourceID: request.Base.SourceID,
},
CollectionIDs: []int64{collectionID},
})
if err != nil {
return 0, err
}
if len(resp.InMemoryPercentages) == 0 {
return 0, errors.New("fail to show collections from the querycoord, no data")
}
return resp.InMemoryPercentages[0], nil
}
func (node *Proxy) getPartitionProgress(ctx context.Context, request *milvuspb.GetLoadingProgressRequest, collectionID int64) (int64, error) {
IDs2Names := make(map[int64]string)
partitionIDs := make([]int64, 0)
for _, partitionName := range request.PartitionNames {
partitionID, err := globalMetaCache.GetPartitionID(ctx, request.CollectionName, partitionName)
if err != nil {
return 0, err
}
IDs2Names[partitionID] = partitionName
partitionIDs = append(partitionIDs, partitionID)
}
resp, err := node.queryCoord.ShowPartitions(ctx, &querypb.ShowPartitionsRequest{
Base: &commonpb.MsgBase{
MsgType: commonpb.MsgType_ShowPartitions,
MsgID: request.Base.MsgID,
Timestamp: request.Base.Timestamp,
SourceID: request.Base.SourceID,
},
CollectionID: collectionID,
PartitionIDs: partitionIDs,
})
if err != nil {
return 0, err
}
if len(resp.InMemoryPercentages) != len(partitionIDs) {
return 0, errors.New("fail to show partitions from the querycoord, invalid data num")
}
var progress int64
for _, p := range resp.InMemoryPercentages {
progress += p
}
progress /= int64(len(partitionIDs))
return progress, nil
}
func (node *Proxy) GetLoadingProgress(ctx context.Context, request *milvuspb.GetLoadingProgressRequest) (*milvuspb.GetLoadingProgressResponse, error) {
if !node.checkHealthy() {
return &milvuspb.GetLoadingProgressResponse{Status: unhealthyStatus()}, nil
}
method := "GetLoadingProgress"
tr := timerecord.NewTimeRecorder(method)
sp, ctx := trace.StartSpanFromContextWithOperationName(ctx, "Proxy-ShowPartitions")
defer sp.Finish()
traceID, _, _ := trace.InfoFromSpan(sp)
logger.Info(
rpcReceived(method),
zap.String("traceID", traceID),
zap.Any("request", request))
getErrResponse := func(err error) *milvuspb.GetLoadingProgressResponse {
logger.Error("fail to get loading progress", zap.String("collection_name", request.CollectionName),
zap.Strings("partition_name", request.PartitionNames), zap.Error(err))
return &milvuspb.GetLoadingProgressResponse{
Status: &commonpb.Status{
ErrorCode: commonpb.ErrorCode_UnexpectedError,
Reason: err.Error(),
},
}
}
if err := validateCollectionName(request.CollectionName); err != nil {
return getErrResponse(err), nil
}
collectionID, err := globalMetaCache.GetCollectionID(ctx, request.CollectionName)
if err != nil {
return getErrResponse(err), nil
}
msgBase, err := node.getMsgBase()
if err != nil {
return getErrResponse(err), nil
}
if request.Base == nil {
request.Base = msgBase
} else {
request.Base.MsgID = msgBase.MsgID
request.Base.Timestamp = msgBase.Timestamp
request.Base.SourceID = msgBase.SourceID
}
var progress int64
if len(request.GetPartitionNames()) == 0 {
if progress, err = node.getCollectionProgress(ctx, request, collectionID); err != nil {
return getErrResponse(err), nil
}
} else {
if progress, err = node.getPartitionProgress(ctx, request, collectionID); err != nil {
return getErrResponse(err), nil
}
}
logger.Info(
rpcDone(method),
zap.String("traceID", traceID),
zap.Any("request", request))
metrics.ProxyDMLFunctionCall.WithLabelValues(strconv.FormatInt(Params.ProxyCfg.GetNodeID(), 10), method, metrics.TotalLabel).Inc()
metrics.ProxyDMLFunctionCall.WithLabelValues(strconv.FormatInt(Params.ProxyCfg.GetNodeID(), 10), method, metrics.SuccessLabel).Inc()
metrics.ProxyDMLReqLatency.WithLabelValues(strconv.FormatInt(Params.ProxyCfg.GetNodeID(), 10), method).Observe(float64(tr.ElapseSpan().Milliseconds()))
return &milvuspb.GetLoadingProgressResponse{
Status: &commonpb.Status{
ErrorCode: commonpb.ErrorCode_Success,
},
Progress: progress,
}, nil
}
// CreateIndex create index for collection.
func (node *Proxy) CreateIndex(ctx context.Context, request *milvuspb.CreateIndexRequest) (*commonpb.Status, error) {
if !node.checkHealthy() {

View File

@ -1268,6 +1268,24 @@ func TestProxy(t *testing.T) {
})
assert.NoError(t, err)
assert.NotEqual(t, commonpb.ErrorCode_Success, resp.Status.ErrorCode)
{
progressResp, err := proxy.GetLoadingProgress(ctx, &milvuspb.GetLoadingProgressRequest{
CollectionName: collectionName,
})
assert.NoError(t, err)
assert.Equal(t, commonpb.ErrorCode_Success, progressResp.Status.ErrorCode)
assert.NotEqual(t, int64(0), progressResp.Progress)
}
{
progressResp, err := proxy.GetLoadingProgress(ctx, &milvuspb.GetLoadingProgressRequest{
CollectionName: otherCollectionName,
})
assert.NoError(t, err)
assert.NotEqual(t, commonpb.ErrorCode_Success, progressResp.Status.ErrorCode)
assert.Equal(t, int64(0), progressResp.Progress)
}
})
wg.Add(1)
@ -1849,6 +1867,26 @@ func TestProxy(t *testing.T) {
})
assert.NoError(t, err)
assert.NotEqual(t, commonpb.ErrorCode_Success, resp.Status.ErrorCode)
{
resp, err := proxy.GetLoadingProgress(ctx, &milvuspb.GetLoadingProgressRequest{
CollectionName: collectionName,
PartitionNames: []string{partitionName},
})
assert.NoError(t, err)
assert.Equal(t, commonpb.ErrorCode_Success, resp.Status.ErrorCode)
assert.NotEqual(t, int64(0), resp.Progress)
}
{
resp, err := proxy.GetLoadingProgress(ctx, &milvuspb.GetLoadingProgressRequest{
CollectionName: collectionName,
PartitionNames: []string{otherPartitionName},
})
assert.NoError(t, err)
assert.NotEqual(t, commonpb.ErrorCode_Success, resp.Status.ErrorCode)
assert.Equal(t, int64(0), resp.Progress)
}
})
wg.Add(1)
@ -2424,6 +2462,14 @@ func TestProxy(t *testing.T) {
assert.NotEqual(t, commonpb.ErrorCode_Success, resp.Status.ErrorCode)
})
wg.Add(1)
t.Run("GetLoadingProgress fail, unhealthy", func(t *testing.T) {
defer wg.Done()
resp, err := proxy.GetLoadingProgress(ctx, &milvuspb.GetLoadingProgressRequest{})
assert.NoError(t, err)
assert.NotEqual(t, commonpb.ErrorCode_Success, resp.Status.ErrorCode)
})
wg.Add(1)
t.Run("CreateIndex fail, unhealthy", func(t *testing.T) {
defer wg.Done()
@ -2990,6 +3036,14 @@ func TestProxy(t *testing.T) {
assert.NotEqual(t, commonpb.ErrorCode_Success, resp.Status.ErrorCode)
})
wg.Add(1)
t.Run("GetLoadingProgress fail, timeout", func(t *testing.T) {
defer wg.Done()
resp, err := proxy.GetLoadingProgress(shortCtx, &milvuspb.GetLoadingProgressRequest{})
assert.NoError(t, err)
assert.NotEqual(t, commonpb.ErrorCode_Success, resp.Status.ErrorCode)
})
wg.Add(1)
t.Run("CreateIndex fail, timeout", func(t *testing.T) {
defer wg.Done()

View File

@ -1011,6 +1011,9 @@ type ProxyComponent interface {
// error is always nil
ShowPartitions(ctx context.Context, request *milvuspb.ShowPartitionsRequest) (*milvuspb.ShowPartitionsResponse, error)
// GetLoadingProgress get the collection or partitions loading progress
GetLoadingProgress(ctx context.Context, request *milvuspb.GetLoadingProgressRequest) (*milvuspb.GetLoadingProgressResponse, error)
// CreateIndex notifies Proxy to create index of a field
//
// ctx is the context to control request deadline and cancellation