From 5332913e80af374e04baa8c9bf8f41f19bdb6805 Mon Sep 17 00:00:00 2001 From: Wish Date: Mon, 16 May 2022 15:03:52 +0800 Subject: [PATCH 1/4] Add compact RPC endpoint --- pkg/kvrpcpb/kvrpcpb.pb.go | 1740 +++++++++++++++++++++++++++++-------- pkg/tikvpb/tikvpb.pb.go | 317 ++++--- proto/kvrpcpb.proto | 35 + proto/tikvpb.proto | 4 + 4 files changed, 1594 insertions(+), 502 deletions(-) diff --git a/pkg/kvrpcpb/kvrpcpb.pb.go b/pkg/kvrpcpb/kvrpcpb.pb.go index 8b92d3096..be0f6677c 100644 --- a/pkg/kvrpcpb/kvrpcpb.pb.go +++ b/pkg/kvrpcpb/kvrpcpb.pb.go @@ -8287,6 +8287,254 @@ func (m *RawChecksumResponse) GetTotalBytes() uint64 { return 0 } +type CompactError struct { + // Types that are valid to be assigned to Error: + // *CompactError_ErrCompactInProgress + Error isCompactError_Error `protobuf_oneof:"error"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *CompactError) Reset() { *m = CompactError{} } +func (m *CompactError) String() string { return proto.CompactTextString(m) } +func (*CompactError) ProtoMessage() {} +func (*CompactError) Descriptor() ([]byte, []int) { + return fileDescriptor_1afe832be69693c7, []int{110} +} +func (m *CompactError) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *CompactError) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_CompactError.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *CompactError) XXX_Merge(src proto.Message) { + xxx_messageInfo_CompactError.Merge(m, src) +} +func (m *CompactError) XXX_Size() int { + return m.Size() +} +func (m *CompactError) XXX_DiscardUnknown() { + xxx_messageInfo_CompactError.DiscardUnknown(m) +} + +var xxx_messageInfo_CompactError proto.InternalMessageInfo + +type isCompactError_Error interface { + isCompactError_Error() + MarshalTo([]byte) (int, error) + Size() int +} + +type CompactError_ErrCompactInProgress struct { + ErrCompactInProgress *CompactErrorCompactInProgress `protobuf:"bytes,1,opt,name=err_compact_in_progress,json=errCompactInProgress,proto3,oneof" json:"err_compact_in_progress,omitempty"` +} + +func (*CompactError_ErrCompactInProgress) isCompactError_Error() {} + +func (m *CompactError) GetError() isCompactError_Error { + if m != nil { + return m.Error + } + return nil +} + +func (m *CompactError) GetErrCompactInProgress() *CompactErrorCompactInProgress { + if x, ok := m.GetError().(*CompactError_ErrCompactInProgress); ok { + return x.ErrCompactInProgress + } + return nil +} + +// XXX_OneofWrappers is for the internal use of the proto package. +func (*CompactError) XXX_OneofWrappers() []interface{} { + return []interface{}{ + (*CompactError_ErrCompactInProgress)(nil), + } +} + +type CompactErrorCompactInProgress struct { + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *CompactErrorCompactInProgress) Reset() { *m = CompactErrorCompactInProgress{} } +func (m *CompactErrorCompactInProgress) String() string { return proto.CompactTextString(m) } +func (*CompactErrorCompactInProgress) ProtoMessage() {} +func (*CompactErrorCompactInProgress) Descriptor() ([]byte, []int) { + return fileDescriptor_1afe832be69693c7, []int{111} +} +func (m *CompactErrorCompactInProgress) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *CompactErrorCompactInProgress) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_CompactErrorCompactInProgress.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *CompactErrorCompactInProgress) XXX_Merge(src proto.Message) { + xxx_messageInfo_CompactErrorCompactInProgress.Merge(m, src) +} +func (m *CompactErrorCompactInProgress) XXX_Size() int { + return m.Size() +} +func (m *CompactErrorCompactInProgress) XXX_DiscardUnknown() { + xxx_messageInfo_CompactErrorCompactInProgress.DiscardUnknown(m) +} + +var xxx_messageInfo_CompactErrorCompactInProgress proto.InternalMessageInfo + +type CompactRequest struct { + Id []byte `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` + StartKey []byte `protobuf:"bytes,2,opt,name=start_key,json=startKey,proto3" json:"start_key,omitempty"` + MaxEndKey []byte `protobuf:"bytes,3,opt,name=max_end_key,json=maxEndKey,proto3" json:"max_end_key,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *CompactRequest) Reset() { *m = CompactRequest{} } +func (m *CompactRequest) String() string { return proto.CompactTextString(m) } +func (*CompactRequest) ProtoMessage() {} +func (*CompactRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_1afe832be69693c7, []int{112} +} +func (m *CompactRequest) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *CompactRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_CompactRequest.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *CompactRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_CompactRequest.Merge(m, src) +} +func (m *CompactRequest) XXX_Size() int { + return m.Size() +} +func (m *CompactRequest) XXX_DiscardUnknown() { + xxx_messageInfo_CompactRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_CompactRequest proto.InternalMessageInfo + +func (m *CompactRequest) GetId() []byte { + if m != nil { + return m.Id + } + return nil +} + +func (m *CompactRequest) GetStartKey() []byte { + if m != nil { + return m.StartKey + } + return nil +} + +func (m *CompactRequest) GetMaxEndKey() []byte { + if m != nil { + return m.MaxEndKey + } + return nil +} + +type CompactResponse struct { + Error *CompactError `protobuf:"bytes,1,opt,name=error,proto3" json:"error,omitempty"` + HasRemaining bool `protobuf:"varint,2,opt,name=has_remaining,json=hasRemaining,proto3" json:"has_remaining,omitempty"` + CompactedStartKey []byte `protobuf:"bytes,3,opt,name=compacted_start_key,json=compactedStartKey,proto3" json:"compacted_start_key,omitempty"` + CompactedEndKey []byte `protobuf:"bytes,4,opt,name=compacted_end_key,json=compactedEndKey,proto3" json:"compacted_end_key,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *CompactResponse) Reset() { *m = CompactResponse{} } +func (m *CompactResponse) String() string { return proto.CompactTextString(m) } +func (*CompactResponse) ProtoMessage() {} +func (*CompactResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_1afe832be69693c7, []int{113} +} +func (m *CompactResponse) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *CompactResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_CompactResponse.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *CompactResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_CompactResponse.Merge(m, src) +} +func (m *CompactResponse) XXX_Size() int { + return m.Size() +} +func (m *CompactResponse) XXX_DiscardUnknown() { + xxx_messageInfo_CompactResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_CompactResponse proto.InternalMessageInfo + +func (m *CompactResponse) GetError() *CompactError { + if m != nil { + return m.Error + } + return nil +} + +func (m *CompactResponse) GetHasRemaining() bool { + if m != nil { + return m.HasRemaining + } + return false +} + +func (m *CompactResponse) GetCompactedStartKey() []byte { + if m != nil { + return m.CompactedStartKey + } + return nil +} + +func (m *CompactResponse) GetCompactedEndKey() []byte { + if m != nil { + return m.CompactedEndKey + } + return nil +} + func init() { proto.RegisterEnum("kvrpcpb.APIVersion", APIVersion_name, APIVersion_value) proto.RegisterEnum("kvrpcpb.CommandPri", CommandPri_name, CommandPri_value) @@ -8408,321 +8656,335 @@ func init() { proto.RegisterType((*RawCoprocessorResponse)(nil), "kvrpcpb.RawCoprocessorResponse") proto.RegisterType((*RawChecksumRequest)(nil), "kvrpcpb.RawChecksumRequest") proto.RegisterType((*RawChecksumResponse)(nil), "kvrpcpb.RawChecksumResponse") + proto.RegisterType((*CompactError)(nil), "kvrpcpb.CompactError") + proto.RegisterType((*CompactErrorCompactInProgress)(nil), "kvrpcpb.CompactErrorCompactInProgress") + proto.RegisterType((*CompactRequest)(nil), "kvrpcpb.CompactRequest") + proto.RegisterType((*CompactResponse)(nil), "kvrpcpb.CompactResponse") } func init() { proto.RegisterFile("kvrpcpb.proto", fileDescriptor_1afe832be69693c7) } var fileDescriptor_1afe832be69693c7 = []byte{ - // 4943 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xdc, 0x3c, 0x5d, 0x8f, 0x24, 0xc9, - 0x51, 0x5b, 0xfd, 0xdd, 0xd1, 0x3d, 0xdd, 0x35, 0x39, 0x33, 0x3b, 0xbd, 0xbb, 0x77, 0xb7, 0x73, - 0x05, 0x7b, 0x3b, 0x37, 0xbe, 0x9b, 0xf5, 0x8d, 0xcf, 0x87, 0x01, 0x0b, 0xdf, 0xee, 0xcc, 0xee, - 0xde, 0xdc, 0xce, 0xed, 0x8c, 0xaa, 0xdb, 0x7b, 0x9c, 0x84, 0x5d, 0xce, 0xad, 0xce, 0xee, 0x29, - 0x75, 0x75, 0x55, 0x5d, 0x55, 0x76, 0xef, 0xb4, 0x2d, 0x24, 0xcc, 0x97, 0x84, 0x04, 0x18, 0x8c, - 0xa5, 0xb3, 0x04, 0x42, 0xe2, 0xe1, 0x24, 0xe0, 0x8d, 0x37, 0x84, 0x04, 0x16, 0x12, 0x0f, 0xc6, - 0x12, 0xb2, 0x1f, 0x11, 0x3c, 0x00, 0xc7, 0x0b, 0xfc, 0x00, 0x5e, 0x78, 0x42, 0xf9, 0x55, 0x1f, - 0xdd, 0xbd, 0xb3, 0x73, 0xed, 0x99, 0xb5, 0xc5, 0xd3, 0x74, 0x46, 0x44, 0x65, 0x46, 0x44, 0x46, - 0x46, 0x46, 0x46, 0x46, 0x0e, 0x2c, 0x0d, 0xc6, 0x61, 0x60, 0x07, 0x8f, 0xb7, 0x83, 0xd0, 0xa7, - 0x3e, 0x2a, 0xcb, 0xe6, 0xd5, 0xfa, 0x90, 0x50, 0xac, 0xc0, 0x57, 0x97, 0x48, 0x18, 0xfa, 0x61, - 0xdc, 0x5c, 0xed, 0xfb, 0x7d, 0x9f, 0xff, 0xbc, 0xc5, 0x7e, 0x49, 0x68, 0x33, 0x1c, 0x45, 0x94, - 0xff, 0x94, 0x80, 0x46, 0x97, 0xe0, 0xae, 0xeb, 0xdb, 0x03, 0xd5, 0x0b, 0x0d, 0xb1, 0x4d, 0x54, - 0x2f, 0x46, 0x17, 0xe0, 0x3e, 0xa1, 0x26, 0xf9, 0x70, 0x44, 0x22, 0x8a, 0xb6, 0xa0, 0x6c, 0xfb, - 0x1e, 0x25, 0x27, 0xb4, 0xa5, 0x6d, 0x68, 0x9b, 0xb5, 0x1d, 0x7d, 0x5b, 0xb1, 0xb6, 0x2b, 0xe0, - 0xa6, 0x22, 0x40, 0x3a, 0xe4, 0x07, 0x64, 0xd2, 0xca, 0x6d, 0x68, 0x9b, 0x75, 0x93, 0xfd, 0x44, - 0x2d, 0x28, 0x8f, 0x49, 0x18, 0x39, 0xbe, 0xd7, 0xca, 0x6f, 0x68, 0x9b, 0x05, 0x53, 0x35, 0x8d, - 0x4f, 0x34, 0xa8, 0xf1, 0x61, 0xa2, 0xc0, 0xf7, 0x22, 0x82, 0xde, 0x80, 0x7a, 0x48, 0xfa, 0x8e, - 0xef, 0x59, 0x5c, 0x26, 0x39, 0x58, 0x63, 0x5b, 0x49, 0x78, 0x97, 0xfd, 0x35, 0x6b, 0x82, 0x86, - 0x37, 0xd0, 0x4d, 0x28, 0x0a, 0xda, 0x1c, 0xa7, 0x5d, 0x8e, 0x19, 0x7b, 0x40, 0x26, 0x82, 0x5c, - 0xe0, 0xd1, 0x2a, 0x14, 0xc7, 0xd8, 0x1d, 0x11, 0xce, 0x43, 0xdd, 0x14, 0x0d, 0x74, 0x0d, 0xaa, - 0x9e, 0x4f, 0xad, 0x9e, 0x3f, 0xf2, 0xba, 0xad, 0xc2, 0x86, 0xb6, 0x59, 0x31, 0x2b, 0x9e, 0x4f, - 0xef, 0xb1, 0x36, 0xfa, 0x25, 0x68, 0x92, 0x13, 0x62, 0x5b, 0x5d, 0x42, 0xb1, 0xe3, 0x46, 0xd6, - 0x78, 0xa7, 0x55, 0xe2, 0xa3, 0x5c, 0x8e, 0x47, 0xb9, 0x7b, 0x42, 0xec, 0x3d, 0x81, 0x7e, 0xb4, - 0x63, 0x2e, 0x91, 0x74, 0xf3, 0xdd, 0x42, 0xa5, 0xa8, 0x97, 0x8c, 0xff, 0xd1, 0xa0, 0xd6, 0xb6, - 0xb1, 0xb7, 0x88, 0x32, 0xaf, 0x41, 0x35, 0xa2, 0x38, 0xa4, 0x56, 0xa2, 0xd2, 0x0a, 0x07, 0x3c, - 0x20, 0x13, 0x26, 0x91, 0xeb, 0x0c, 0x1d, 0xca, 0x25, 0x5a, 0x32, 0x45, 0x23, 0xad, 0xed, 0x42, - 0x46, 0xdb, 0xe8, 0x0a, 0x54, 0x06, 0x64, 0x62, 0xf9, 0x9e, 0x3b, 0x69, 0x15, 0xb9, 0xa8, 0xe5, - 0x01, 0x99, 0x1c, 0x7a, 0x2e, 0x9f, 0xa2, 0x90, 0x30, 0x3a, 0xc2, 0x25, 0xac, 0x98, 0xaa, 0x89, - 0xd6, 0xa1, 0x4c, 0xbc, 0x2e, 0x1f, 0xbf, 0xcc, 0xc7, 0x2f, 0x11, 0xaf, 0xcb, 0x46, 0xbf, 0x0e, - 0xb5, 0x08, 0x0f, 0x03, 0x97, 0x58, 0x11, 0x25, 0x41, 0xab, 0xc2, 0x79, 0x00, 0x01, 0x6a, 0x53, - 0x12, 0x18, 0x7f, 0xa8, 0x41, 0x5d, 0xc8, 0xbd, 0xf8, 0xec, 0xde, 0x80, 0x62, 0x80, 0x9d, 0x30, - 0x6a, 0xe5, 0x36, 0xf2, 0x9b, 0xb5, 0x9d, 0x66, 0x32, 0xbb, 0xe3, 0x23, 0xec, 0x84, 0xa6, 0xc0, - 0x26, 0x46, 0x90, 0x3f, 0xdd, 0x08, 0x8c, 0xff, 0x2a, 0x40, 0xf3, 0x28, 0x24, 0x4f, 0x42, 0x87, - 0x92, 0x45, 0xe6, 0xe3, 0x16, 0x54, 0x87, 0x23, 0x8a, 0xa9, 0xe3, 0x7b, 0x8a, 0xa7, 0x64, 0xb0, - 0xf7, 0x24, 0xc6, 0x4c, 0x68, 0xd0, 0xcb, 0x50, 0x0f, 0x42, 0x67, 0x88, 0xc3, 0x89, 0xc5, 0x16, - 0x9b, 0x34, 0xbe, 0x9a, 0x84, 0x1d, 0xf8, 0xf6, 0x00, 0xfd, 0x0c, 0x2c, 0x89, 0x39, 0xce, 0x4e, - 0x5b, 0x9d, 0x03, 0x1f, 0x25, 0x73, 0xc7, 0xbe, 0xb7, 0x28, 0x75, 0xf9, 0xdc, 0x15, 0xcc, 0x32, - 0x6b, 0x77, 0xa8, 0x8b, 0x76, 0x60, 0x2d, 0x1a, 0x38, 0x81, 0x65, 0xfb, 0x5e, 0x44, 0x43, 0xec, - 0x78, 0xd4, 0xb2, 0x8f, 0x89, 0x3d, 0x90, 0x33, 0xb9, 0xc2, 0x90, 0xbb, 0x31, 0x6e, 0x97, 0xa1, - 0xd0, 0x36, 0xac, 0x38, 0x91, 0x15, 0x90, 0x28, 0x72, 0x86, 0x4e, 0x44, 0x1d, 0x5b, 0x70, 0x57, - 0xde, 0xc8, 0x6f, 0x56, 0xcc, 0x65, 0x27, 0x3a, 0x4a, 0x30, 0x9c, 0xc7, 0x2b, 0x50, 0xa1, 0x27, - 0x9e, 0x15, 0x39, 0x5f, 0x27, 0x7c, 0xa6, 0x0b, 0x66, 0x99, 0x9e, 0x78, 0x6d, 0xe7, 0xeb, 0x04, - 0x19, 0xb0, 0xd4, 0xf3, 0x43, 0x6b, 0x14, 0x74, 0x31, 0x25, 0x16, 0x8d, 0x5a, 0x55, 0x8e, 0xaf, - 0xf5, 0xfc, 0xf0, 0xcb, 0x1c, 0xd6, 0x89, 0x18, 0xcd, 0xd0, 0xf1, 0x2c, 0xdb, 0x1f, 0x0e, 0x1d, - 0xca, 0x68, 0x40, 0xd0, 0x0c, 0x1d, 0x6f, 0x97, 0xc3, 0x3a, 0x11, 0xda, 0x04, 0x7d, 0x14, 0x11, - 0x0b, 0x47, 0x13, 0xcf, 0x96, 0x94, 0xad, 0x1a, 0x97, 0xa0, 0x31, 0x8a, 0xc8, 0x6d, 0x06, 0x16, - 0xb4, 0x68, 0x03, 0x6a, 0x11, 0xb1, 0x7d, 0xaf, 0x8b, 0x43, 0x87, 0x44, 0xad, 0xfa, 0x46, 0x9e, - 0xa9, 0x34, 0x05, 0x42, 0x2f, 0x00, 0xd0, 0x90, 0x59, 0x3a, 0xb1, 0x02, 0xbb, 0xb5, 0x24, 0x96, - 0x35, 0x0d, 0x27, 0x87, 0x1e, 0x39, 0xb2, 0x39, 0x37, 0xf8, 0x24, 0xc5, 0x4d, 0x43, 0x72, 0x83, - 0x4f, 0x62, 0x6e, 0xde, 0x86, 0x26, 0x8e, 0x22, 0x12, 0xb2, 0x59, 0xb4, 0x5c, 0x32, 0x26, 0x6e, - 0xab, 0xb9, 0xa1, 0x6d, 0x36, 0x76, 0xd6, 0xe3, 0xe9, 0xbe, 0xad, 0xf0, 0x07, 0x0c, 0x6d, 0x36, - 0x70, 0xa6, 0x6d, 0xfc, 0xad, 0x06, 0x7a, 0x62, 0x6a, 0x8b, 0x2f, 0x81, 0x57, 0xa1, 0xc4, 0xb1, - 0xb3, 0xf6, 0x16, 0x1b, 0xb7, 0x24, 0x98, 0x55, 0x73, 0x7e, 0x56, 0xcd, 0x37, 0x41, 0x17, 0x6a, - 0x49, 0x91, 0x09, 0x83, 0x5b, 0xf2, 0x99, 0x76, 0x14, 0xa1, 0xf1, 0xc3, 0x3c, 0x5c, 0x9e, 0x32, - 0x83, 0xff, 0x2f, 0x2b, 0x66, 0xc6, 0x64, 0x4b, 0x73, 0x4d, 0xd6, 0x89, 0xac, 0x9e, 0x13, 0x46, - 0x54, 0xad, 0x0d, 0x66, 0x45, 0x35, 0x27, 0xba, 0xc7, 0x60, 0x9c, 0x8f, 0x97, 0xa1, 0xfe, 0x04, - 0x33, 0x15, 0x3a, 0x43, 0xe2, 0x8f, 0x28, 0x5f, 0x19, 0x79, 0xb3, 0xc6, 0x60, 0x1d, 0x01, 0x42, - 0x2d, 0x28, 0xf6, 0xfc, 0xd0, 0x26, 0x7c, 0x55, 0x54, 0xee, 0xe4, 0x5a, 0x9a, 0x29, 0x00, 0x4c, - 0x88, 0x90, 0xd0, 0x51, 0xe8, 0x59, 0x7c, 0x27, 0x12, 0x6b, 0xa2, 0x62, 0xd6, 0x05, 0xf0, 0x11, - 0x87, 0xcd, 0xce, 0x68, 0x6d, 0xde, 0x8c, 0x36, 0xf9, 0x7a, 0xb7, 0xc8, 0x89, 0x13, 0x51, 0xe2, - 0xd9, 0xa4, 0x55, 0x17, 0xeb, 0x86, 0x83, 0xef, 0x2a, 0xa8, 0xf1, 0xdf, 0x1a, 0xac, 0xcf, 0xcc, - 0xe8, 0x73, 0x31, 0xcc, 0xeb, 0x50, 0x9d, 0x32, 0x4a, 0xae, 0x89, 0x8a, 0xad, 0x64, 0x68, 0xa9, - 0xcd, 0x99, 0xcd, 0x64, 0x5d, 0xa8, 0x49, 0x6c, 0xd0, 0x97, 0xa1, 0x24, 0xf5, 0x53, 0xe4, 0xeb, - 0x5c, 0xb6, 0xd0, 0x8b, 0x00, 0xf1, 0xc6, 0xcd, 0x26, 0x90, 0x39, 0xae, 0xaa, 0xda, 0xb9, 0x23, - 0xe3, 0x63, 0x0d, 0xae, 0xa6, 0x64, 0x35, 0x7d, 0xd7, 0x7d, 0x8c, 0x17, 0xb3, 0xe0, 0x19, 0x6b, - 0xcb, 0xcd, 0xb1, 0xb6, 0x19, 0x93, 0xca, 0xcf, 0x9a, 0x14, 0x82, 0xc2, 0x80, 0x4c, 0xd8, 0x72, - 0x63, 0x82, 0xf0, 0xdf, 0xc6, 0x37, 0xe0, 0xda, 0x5c, 0x36, 0x9f, 0xc7, 0xb4, 0x18, 0x7f, 0xa5, - 0xc1, 0x4a, 0xe7, 0xc4, 0x7b, 0x87, 0xe0, 0x90, 0xde, 0x21, 0x78, 0xa1, 0x70, 0x6f, 0x7a, 0xb9, - 0xe6, 0xce, 0xb0, 0x5c, 0xf3, 0x73, 0x14, 0xf8, 0x0a, 0x34, 0x71, 0x77, 0xec, 0x44, 0xc4, 0x8a, - 0x57, 0xad, 0x74, 0x4b, 0x02, 0x7c, 0x20, 0xd6, 0xae, 0xf1, 0x7b, 0x1a, 0xac, 0x66, 0x79, 0x7e, - 0x0e, 0xb1, 0x63, 0xda, 0x97, 0xe4, 0x33, 0xbe, 0xc4, 0xf8, 0x8f, 0x1c, 0xac, 0xf1, 0x3d, 0xb5, - 0x73, 0xe2, 0xb5, 0x29, 0xa6, 0xa3, 0x68, 0x11, 0x2d, 0x5e, 0x07, 0xa5, 0xb1, 0x54, 0xa4, 0x07, - 0x12, 0xc4, 0xa2, 0xad, 0x75, 0x28, 0x0b, 0x0e, 0x94, 0x65, 0x95, 0x38, 0x03, 0x11, 0xd3, 0x9b, - 0x8d, 0x5d, 0x97, 0x84, 0x96, 0xd0, 0x71, 0xe2, 0xce, 0x05, 0xb8, 0xcd, 0xa0, 0x1d, 0xbe, 0x5e, - 0xec, 0x51, 0x18, 0x12, 0x8f, 0x93, 0x08, 0x87, 0x58, 0x95, 0x90, 0x4e, 0x84, 0xde, 0x80, 0xb5, - 0x50, 0x1a, 0x9f, 0xe5, 0xf4, 0x2c, 0xb6, 0xb4, 0xb8, 0x3b, 0x91, 0x41, 0x04, 0x52, 0xc8, 0xfd, - 0xde, 0x43, 0x9f, 0x72, 0x97, 0x82, 0xb6, 0x60, 0x99, 0x7b, 0x32, 0x2b, 0xbd, 0x63, 0x0b, 0x2f, - 0xd9, 0xe4, 0x88, 0x76, 0xb2, 0x65, 0x7f, 0x11, 0xae, 0x86, 0x24, 0xf2, 0xdd, 0xb1, 0xe3, 0xf5, - 0x67, 0xc3, 0x8e, 0x0a, 0xff, 0xa8, 0x15, 0x53, 0x4c, 0x39, 0x29, 0xe3, 0x5b, 0x39, 0xb8, 0x3c, - 0xad, 0xe3, 0x9f, 0xe8, 0xac, 0xa3, 0x1b, 0xd0, 0x90, 0x0e, 0x2d, 0xbb, 0x05, 0x2d, 0x09, 0xa8, - 0x32, 0xea, 0x9b, 0x50, 0xc2, 0x36, 0xdb, 0xd6, 0xb8, 0xc2, 0x1b, 0xa9, 0xf8, 0xf5, 0x36, 0x07, - 0x9b, 0x12, 0x8d, 0xb6, 0xa1, 0xca, 0x87, 0x72, 0xbc, 0x9e, 0x2f, 0xcf, 0x18, 0x09, 0x5f, 0x4c, - 0x07, 0xfb, 0x5e, 0xcf, 0x37, 0x39, 0x3b, 0xec, 0x97, 0xf1, 0x4d, 0x0d, 0xae, 0x72, 0x8d, 0xb4, - 0x65, 0xd4, 0xc3, 0x57, 0xda, 0x42, 0xa6, 0xa7, 0xbc, 0x52, 0x2e, 0xf1, 0x4a, 0x67, 0x5a, 0xb1, - 0xc6, 0xf7, 0x34, 0xb8, 0x36, 0x97, 0x87, 0xe7, 0x30, 0x35, 0x37, 0xa1, 0xc8, 0x74, 0xc1, 0x16, - 0x43, 0x7e, 0xbe, 0xae, 0x04, 0x9e, 0x1d, 0xa0, 0xa6, 0xe3, 0x9c, 0x78, 0xd7, 0x31, 0xfe, 0x42, - 0x83, 0x25, 0x61, 0xa0, 0x17, 0xb6, 0x2f, 0x28, 0xed, 0xe6, 0x53, 0xda, 0x3d, 0x9b, 0xf1, 0x88, - 0xd3, 0xa3, 0x59, 0x7a, 0xec, 0x78, 0xae, 0xdf, 0x37, 0xfe, 0x48, 0x83, 0x86, 0xe2, 0xf5, 0x39, - 0x28, 0x78, 0x96, 0xc7, 0xfc, 0x1c, 0x1e, 0x8d, 0x3e, 0x2c, 0xed, 0x0f, 0x03, 0x3f, 0x8c, 0x15, - 0x98, 0x09, 0xf7, 0xb4, 0x33, 0x84, 0x7b, 0xb3, 0x03, 0xe5, 0xe6, 0x0d, 0xf4, 0x01, 0x34, 0xd4, - 0x40, 0x8b, 0x4b, 0xbf, 0x9a, 0x96, 0xbe, 0xaa, 0xce, 0x84, 0xdf, 0x66, 0x9a, 0x75, 0x09, 0xf6, - 0x46, 0xc1, 0xf9, 0xe4, 0x3b, 0xce, 0xb4, 0xdf, 0x65, 0xfd, 0x71, 0x61, 0xca, 0x1f, 0x1b, 0xdf, - 0xd1, 0xa0, 0x19, 0x33, 0xf5, 0xd3, 0x33, 0xdf, 0x03, 0x68, 0xde, 0xc1, 0xd4, 0x3e, 0x5e, 0x30, - 0x37, 0x34, 0xcf, 0xd7, 0x3c, 0x3d, 0x3b, 0xf4, 0xaf, 0x1a, 0xe8, 0xc9, 0x68, 0x17, 0x9e, 0x44, - 0x98, 0x93, 0xed, 0x29, 0x7c, 0x8a, 0x6c, 0x4f, 0xa2, 0xeb, 0xe2, 0xe9, 0xba, 0x7e, 0xb7, 0x50, - 0xc9, 0xeb, 0x05, 0xe3, 0x1b, 0xb0, 0xca, 0x85, 0xbb, 0xf0, 0xd0, 0x74, 0x8e, 0x0b, 0x32, 0x22, - 0x58, 0x9b, 0x1a, 0xfc, 0xe2, 0x6d, 0xcc, 0xf8, 0x4b, 0x0d, 0x9a, 0x6d, 0x1b, 0x7b, 0x8b, 0x1e, - 0x25, 0xaf, 0x03, 0x3b, 0xa2, 0x4f, 0xc9, 0x0a, 0x43, 0x7c, 0xa2, 0x24, 0xcd, 0x64, 0xcb, 0xf2, - 0x4f, 0xcb, 0x96, 0x15, 0xd2, 0xd9, 0xb2, 0x54, 0x7a, 0xab, 0x98, 0x4e, 0x6f, 0x19, 0x1f, 0x69, - 0xa0, 0x27, 0xcc, 0xfe, 0x14, 0x6d, 0x69, 0xc6, 0x0f, 0x35, 0x40, 0x26, 0x0f, 0x95, 0xc8, 0xa2, - 0x9a, 0x3c, 0x93, 0xdd, 0x9c, 0xcd, 0x25, 0xa0, 0xd7, 0xa1, 0x4a, 0x4f, 0x3c, 0x1e, 0xb9, 0x88, - 0xa3, 0x4d, 0x7a, 0xe4, 0xce, 0x89, 0x27, 0x22, 0x17, 0x2a, 0x7e, 0x24, 0x87, 0xa0, 0x62, 0xca, - 0x1a, 0x3f, 0x84, 0x95, 0x8c, 0x40, 0xcf, 0xc1, 0x16, 0x1f, 0x41, 0xf5, 0xfe, 0xee, 0x22, 0xaa, - 0x7b, 0x11, 0x20, 0xc2, 0x3d, 0x62, 0x05, 0xbe, 0xe3, 0x51, 0xa9, 0xb7, 0x2a, 0x83, 0x1c, 0x31, - 0x80, 0x71, 0x0c, 0xc0, 0xfa, 0x7d, 0x0e, 0x12, 0x7c, 0xa4, 0x01, 0xda, 0x23, 0x2e, 0xa1, 0xc4, - 0xc4, 0x5e, 0x9f, 0x9c, 0x7b, 0x76, 0x39, 0xb5, 0x32, 0xf2, 0xd3, 0x89, 0x5f, 0xcf, 0xa7, 0x4e, - 0x4f, 0x66, 0x92, 0x45, 0xd2, 0x1c, 0x04, 0xe8, 0xd0, 0x73, 0x27, 0xc6, 0x57, 0x61, 0x25, 0xc3, - 0xd8, 0x79, 0x6f, 0xd8, 0x5f, 0x81, 0x25, 0x13, 0x3f, 0x39, 0xb7, 0xeb, 0x89, 0x06, 0xe4, 0xec, - 0x1e, 0x97, 0xb1, 0x6a, 0xe6, 0xec, 0x9e, 0xf1, 0xbb, 0x1a, 0x34, 0x54, 0xff, 0xe7, 0xcc, 0xfa, - 0x02, 0x97, 0x10, 0x46, 0x17, 0x90, 0x89, 0x9f, 0x9c, 0xf7, 0xae, 0x3b, 0x2d, 0xb4, 0x0f, 0x2b, - 0x99, 0x51, 0x2e, 0x7a, 0xb7, 0x35, 0xfe, 0x54, 0xe3, 0xb3, 0x78, 0x34, 0x3a, 0xa7, 0x59, 0x9c, - 0xaf, 0x59, 0x21, 0x66, 0x41, 0x89, 0xc9, 0xbe, 0x4b, 0xf2, 0x81, 0xec, 0x27, 0x33, 0xf3, 0x9e, - 0x1f, 0x5a, 0x36, 0x8e, 0xe4, 0x51, 0xb7, 0xd4, 0xf3, 0xc3, 0x5d, 0x1c, 0xb1, 0x88, 0x53, 0xf1, - 0x77, 0xde, 0x06, 0xfc, 0x37, 0x5a, 0x32, 0xa7, 0x0b, 0x2a, 0xe0, 0x8c, 0x31, 0xcd, 0xd4, 0x34, - 0xa3, 0x55, 0x21, 0x7f, 0x21, 0x4e, 0xc1, 0x4d, 0xeb, 0xa0, 0x98, 0xd6, 0x01, 0xb3, 0x1c, 0x4a, - 0x5d, 0x91, 0x5e, 0x2b, 0x98, 0xfc, 0x37, 0x5b, 0xdd, 0x19, 0xde, 0xcf, 0x5b, 0x39, 0x13, 0xd0, - 0x4d, 0xfc, 0x44, 0x3a, 0x90, 0x8b, 0x58, 0xe0, 0x69, 0x71, 0x0b, 0x99, 0x29, 0xff, 0x15, 0x58, - 0x4e, 0x0d, 0x7d, 0xde, 0x82, 0xfd, 0x9a, 0x06, 0x6b, 0x4a, 0x73, 0x8b, 0x8b, 0x77, 0x86, 0xc5, - 0xfc, 0x74, 0x01, 0x31, 0x5c, 0x9e, 0xe6, 0xe0, 0xbc, 0xa5, 0xfc, 0x27, 0xe1, 0x3d, 0x9f, 0xe3, - 0x85, 0x67, 0xfa, 0x5a, 0xb3, 0x90, 0xbd, 0xd6, 0x14, 0x8a, 0x29, 0xc6, 0x8a, 0xf9, 0xf4, 0xd7, - 0x9c, 0x46, 0x1f, 0x9a, 0xb1, 0x38, 0x8b, 0xeb, 0xea, 0x65, 0xc8, 0x0f, 0xc6, 0x4f, 0x5d, 0xac, - 0x0c, 0x67, 0xfc, 0x8e, 0x30, 0x8f, 0x9f, 0xc8, 0x96, 0x3e, 0xe5, 0x26, 0xa5, 0x9d, 0x5c, 0xe8, - 0x26, 0xfe, 0x23, 0x2d, 0xf1, 0x23, 0x8b, 0x1a, 0xcb, 0xab, 0x50, 0x0a, 0x19, 0x77, 0x73, 0x53, - 0xdd, 0x82, 0x6f, 0x49, 0xc0, 0xc2, 0x36, 0x82, 0xed, 0x63, 0x2b, 0x6d, 0x3f, 0x55, 0x06, 0x39, - 0x38, 0x37, 0x1b, 0x32, 0x5c, 0x58, 0xcd, 0x4a, 0x74, 0xa1, 0xf6, 0xf2, 0xab, 0x70, 0xe5, 0xcb, - 0x1e, 0x0b, 0x3c, 0xf7, 0x48, 0x44, 0x43, 0x7f, 0xf2, 0x7c, 0x4d, 0xc6, 0x20, 0x70, 0x75, 0xde, - 0xf0, 0xe7, 0x6d, 0x26, 0x5f, 0x83, 0x6b, 0x26, 0xe9, 0x3b, 0x11, 0x25, 0x21, 0x3b, 0x1b, 0x1c, - 0x3e, 0x8e, 0x48, 0x38, 0x26, 0xe1, 0x22, 0x72, 0xae, 0x41, 0x89, 0x1d, 0x1f, 0x69, 0x24, 0xa3, - 0xf6, 0xe2, 0x10, 0x9f, 0x74, 0x22, 0xe3, 0x4d, 0x78, 0x61, 0xfe, 0x08, 0x52, 0x94, 0x98, 0x2f, - 0x2d, 0x1b, 0x83, 0xb6, 0x78, 0xee, 0xf3, 0x82, 0x98, 0x1a, 0xc1, 0x95, 0x39, 0xdd, 0x9f, 0xc6, - 0x11, 0x33, 0x61, 0x27, 0xb2, 0x6c, 0x97, 0x60, 0x71, 0x9c, 0xab, 0x98, 0x65, 0x27, 0xe2, 0x29, - 0xa4, 0xb3, 0x1f, 0x2d, 0xbf, 0x0a, 0x57, 0x4c, 0x32, 0xf4, 0xc5, 0x39, 0xec, 0x02, 0xc4, 0xda, - 0x81, 0xab, 0xf3, 0xfa, 0x3f, 0x55, 0xd3, 0xdf, 0xd2, 0x60, 0xfd, 0xe8, 0x78, 0x12, 0x39, 0x36, - 0x76, 0x7f, 0x9c, 0xec, 0xc1, 0x7c, 0x96, 0x16, 0xc8, 0x19, 0x18, 0x1f, 0x40, 0x6b, 0x96, 0xa1, - 0x53, 0xe7, 0x26, 0x9e, 0x80, 0xdc, 0x33, 0x26, 0xe0, 0x4f, 0x34, 0x40, 0xed, 0xc0, 0x75, 0xa8, - 0xc9, 0x57, 0xc6, 0x62, 0x59, 0x92, 0x6a, 0xc4, 0x7a, 0x48, 0x96, 0xb3, 0xb8, 0x6b, 0xe5, 0x40, - 0x26, 0x14, 0x3b, 0xc1, 0x2a, 0x02, 0x95, 0x15, 0xaa, 0x2a, 0x6c, 0x84, 0xae, 0x42, 0xd5, 0x89, - 0xac, 0x10, 0x3f, 0xb1, 0x06, 0x63, 0xe5, 0x0b, 0x9d, 0xc8, 0xc4, 0x4f, 0x1e, 0x8c, 0x8d, 0x7f, - 0xd0, 0x60, 0x25, 0xc3, 0xde, 0xe2, 0xcb, 0xfd, 0x15, 0x28, 0xb8, 0xa4, 0x47, 0xe5, 0x31, 0xb7, - 0xb1, 0x2d, 0x4b, 0xda, 0x44, 0xc7, 0x9c, 0x63, 0x8e, 0x47, 0x9b, 0x50, 0x0c, 0x9d, 0xfe, 0x31, - 0x95, 0xa5, 0x3d, 0xf3, 0x08, 0x05, 0x01, 0xda, 0x64, 0x8e, 0xb9, 0xcf, 0x13, 0xcf, 0x22, 0x0d, - 0x31, 0x45, 0x6b, 0x2a, 0xb4, 0xf1, 0x9b, 0x1a, 0xe8, 0x26, 0xc1, 0xdd, 0x7d, 0xaf, 0x4b, 0x4e, - 0x16, 0xd1, 0xf1, 0x15, 0xa8, 0xc4, 0xb7, 0x6d, 0xc2, 0x9a, 0xca, 0x91, 0xbc, 0x67, 0x4b, 0xf6, - 0xa4, 0xfc, 0x33, 0xf6, 0x24, 0xe3, 0x0f, 0x34, 0x58, 0x4e, 0xb1, 0xb1, 0xb8, 0x2e, 0x5f, 0x04, - 0x08, 0x09, 0xee, 0x5a, 0x0e, 0xeb, 0x48, 0xe5, 0x24, 0x42, 0xd5, 0x33, 0x63, 0x89, 0x59, 0x17, - 0xe9, 0xce, 0x94, 0x47, 0xc5, 0xe6, 0x27, 0x09, 0x8c, 0x36, 0xac, 0xbc, 0x37, 0xb6, 0xed, 0xfb, - 0x84, 0xde, 0x99, 0x30, 0x7e, 0xcf, 0x23, 0xfe, 0x36, 0x7e, 0x5b, 0x83, 0xd5, 0x6c, 0xaf, 0xe7, - 0x7d, 0xac, 0xbe, 0x01, 0x05, 0x7e, 0x73, 0x36, 0x2d, 0x1f, 0x1b, 0x95, 0xcb, 0xc7, 0xd1, 0xc6, - 0xd7, 0x60, 0x3d, 0xe6, 0x43, 0xde, 0x8b, 0x9e, 0xef, 0xec, 0xb3, 0xf5, 0xdb, 0x9a, 0x1d, 0xe2, - 0xbc, 0xc5, 0x95, 0x2a, 0xce, 0x27, 0x47, 0x1c, 0xa5, 0x80, 0xc2, 0xe9, 0x0a, 0xf8, 0xbb, 0x32, - 0x94, 0x77, 0x93, 0x6d, 0x5f, 0x72, 0xe3, 0x74, 0x39, 0x2b, 0x05, 0xb3, 0x22, 0x00, 0xfb, 0x5d, - 0xf4, 0x56, 0xc2, 0x6a, 0xe0, 0xdb, 0xc7, 0x72, 0x95, 0xae, 0x64, 0x17, 0xd4, 0x5d, 0x86, 0x8a, - 0xf9, 0x65, 0x0d, 0xb4, 0x01, 0x85, 0x80, 0x10, 0x55, 0x87, 0x57, 0x57, 0xf4, 0x47, 0x84, 0x84, - 0x26, 0xc7, 0xf0, 0x23, 0x25, 0x09, 0x87, 0xf2, 0x08, 0xce, 0x7f, 0xa3, 0x5b, 0x50, 0x09, 0x42, - 0xc7, 0x0f, 0x1d, 0x3a, 0xe1, 0x31, 0x55, 0x63, 0x67, 0x25, 0xa5, 0xfd, 0xe1, 0x10, 0x7b, 0xdd, - 0xa3, 0xd0, 0x31, 0x63, 0x22, 0xf4, 0x36, 0x34, 0x9d, 0xc8, 0x77, 0x71, 0xaa, 0x3a, 0xab, 0x3c, - 0x55, 0x9d, 0xb5, 0xaf, 0xf0, 0xb2, 0x3a, 0xcb, 0xc9, 0xb4, 0xd1, 0xcf, 0x42, 0x83, 0xa7, 0x5c, - 0x1c, 0xd7, 0xb5, 0x6c, 0x6c, 0x1f, 0x13, 0x79, 0x09, 0x5d, 0xf7, 0x7c, 0x7a, 0xcf, 0x71, 0xdd, - 0x5d, 0x06, 0xe3, 0x33, 0x3d, 0xf1, 0x6c, 0xcb, 0xf5, 0xfb, 0xa2, 0x80, 0xc7, 0x2c, 0xb3, 0xf6, - 0x81, 0xdf, 0x47, 0x9b, 0xa0, 0x87, 0xc4, 0xf6, 0xc3, 0x2e, 0xaf, 0xfe, 0xb1, 0x22, 0x8a, 0xa9, - 0xac, 0xe0, 0x69, 0x08, 0x78, 0xc7, 0x19, 0x92, 0x36, 0xc5, 0x34, 0x45, 0x19, 0xd9, 0xd8, 0x13, - 0x94, 0xb5, 0x34, 0x25, 0xdb, 0x44, 0x38, 0xe5, 0xcb, 0x4c, 0xeb, 0x81, 0xeb, 0xd8, 0xd8, 0x62, - 0xab, 0x57, 0x96, 0xf1, 0xd4, 0x24, 0x8c, 0xb9, 0x0a, 0x74, 0x03, 0x1a, 0xe2, 0x9a, 0x9c, 0x74, - 0x2d, 0xb1, 0xa5, 0x2c, 0xf1, 0xb3, 0xf9, 0x92, 0x82, 0xf2, 0x3b, 0x58, 0xf4, 0xf3, 0x70, 0x85, - 0x6d, 0x76, 0xe4, 0x84, 0xd8, 0x23, 0xae, 0xa4, 0xee, 0x28, 0x14, 0xda, 0x1a, 0xaa, 0x72, 0xb7, - 0xcb, 0x43, 0x7c, 0x72, 0x57, 0xe1, 0xf7, 0x24, 0xfa, 0x3d, 0x7e, 0xf7, 0x8b, 0x83, 0xc0, 0x75, - 0x88, 0xf2, 0x27, 0x4d, 0x91, 0x1b, 0x96, 0x40, 0xe1, 0x52, 0xd6, 0xa1, 0x4c, 0x71, 0x34, 0x60, - 0xa6, 0xa3, 0x8b, 0x72, 0x04, 0xd6, 0xdc, 0xef, 0xf2, 0xcd, 0x85, 0x62, 0x97, 0x08, 0x01, 0x96, - 0xb9, 0x00, 0x55, 0x0e, 0xe1, 0xec, 0xbf, 0x06, 0x88, 0x31, 0x3a, 0x0a, 0x6d, 0x62, 0xf5, 0x43, - 0x7f, 0x14, 0x58, 0x14, 0xf7, 0x5b, 0x88, 0x1b, 0xb2, 0xae, 0x30, 0xf7, 0x19, 0xa2, 0x83, 0xfb, - 0xe8, 0x0b, 0xb0, 0xd4, 0x75, 0xa2, 0x81, 0xd5, 0x1b, 0xb9, 0xae, 0xe5, 0x07, 0xb4, 0xb5, 0xc2, - 0x27, 0x79, 0x35, 0x9e, 0xe4, 0x3d, 0x27, 0x1a, 0xdc, 0x1b, 0xb9, 0xee, 0x61, 0x40, 0xcd, 0x5a, - 0x37, 0x69, 0x30, 0x9d, 0xb3, 0x4d, 0x8c, 0xd0, 0x70, 0x62, 0x85, 0x62, 0x89, 0xb7, 0x56, 0x85, - 0xce, 0x9d, 0xc8, 0x64, 0x60, 0xb5, 0xf0, 0xdf, 0x84, 0x1a, 0x0e, 0x9c, 0x38, 0xc5, 0xbd, 0x36, - 0x65, 0x7e, 0xb7, 0x8f, 0xf6, 0x65, 0xa2, 0xdb, 0x04, 0x1c, 0x38, 0xc9, 0xc5, 0x7e, 0x53, 0x64, - 0xc1, 0x69, 0x3c, 0x0f, 0x97, 0xf9, 0x3c, 0x34, 0x62, 0xb0, 0x98, 0x88, 0x5f, 0x00, 0x51, 0x58, - 0x6d, 0x29, 0xef, 0xb2, 0xce, 0x57, 0xc6, 0xda, 0xb6, 0x2a, 0xb7, 0xee, 0xb0, 0xbf, 0xca, 0xc5, - 0xd4, 0x69, 0xaa, 0xf5, 0x6e, 0xa1, 0x52, 0xd0, 0x8b, 0x6c, 0xfa, 0x71, 0xd7, 0xfa, 0x70, 0xe4, - 0x87, 0xa3, 0xa1, 0xf1, 0x6f, 0x39, 0xa8, 0x28, 0xa7, 0x3d, 0x53, 0x7a, 0xa3, 0xcd, 0x96, 0xde, - 0xbc, 0x0c, 0x75, 0x5e, 0x57, 0x90, 0xcd, 0xf3, 0xd7, 0x18, 0x4c, 0x89, 0x32, 0xeb, 0x4c, 0xd2, - 0x75, 0x0f, 0x85, 0x6c, 0xdd, 0x43, 0xba, 0x0e, 0xb4, 0x98, 0xad, 0x03, 0xdd, 0x94, 0x25, 0x0c, - 0x74, 0x12, 0x10, 0xb9, 0x8a, 0x6b, 0xb1, 0x1a, 0x0f, 0x03, 0x51, 0xbc, 0xd0, 0x99, 0x04, 0x04, - 0x7d, 0x06, 0x10, 0xa7, 0xcc, 0x16, 0x4c, 0x95, 0x79, 0x77, 0x4d, 0x86, 0xb9, 0x97, 0x2a, 0x9a, - 0x9a, 0x57, 0x16, 0x5a, 0x99, 0x5b, 0x16, 0x3a, 0x53, 0x2b, 0x57, 0x9d, 0xad, 0x95, 0x9b, 0x2a, - 0x1d, 0x85, 0x99, 0xd2, 0x51, 0xe3, 0xa3, 0x02, 0x54, 0x54, 0xaa, 0x3d, 0xb5, 0x73, 0x6a, 0xcf, - 0xd8, 0x39, 0xd1, 0x0b, 0xcc, 0x9d, 0xd2, 0x70, 0x82, 0x1f, 0xbb, 0x44, 0x7a, 0xeb, 0x04, 0xc0, - 0xfc, 0x38, 0x7e, 0xec, 0x87, 0x54, 0x26, 0x69, 0x44, 0x03, 0xed, 0x40, 0xc5, 0xf6, 0xbd, 0x9e, - 0xeb, 0xd8, 0x74, 0xe6, 0xaa, 0xf1, 0xfd, 0xd0, 0xa1, 0xcc, 0x12, 0x38, 0xd6, 0x8c, 0xe9, 0x98, - 0x41, 0x61, 0x97, 0x99, 0xc4, 0x44, 0x16, 0xe8, 0x14, 0xa5, 0x41, 0xc5, 0x16, 0x2b, 0xb0, 0xbc, - 0x46, 0xc7, 0xac, 0xe3, 0x54, 0x0b, 0xbd, 0x0e, 0x15, 0x55, 0xf5, 0x3f, 0x53, 0x64, 0xb2, 0x27, - 0x11, 0x66, 0x4c, 0x82, 0xf6, 0x60, 0x39, 0x56, 0xa6, 0x45, 0x4e, 0x02, 0x27, 0x24, 0x5d, 0x3e, - 0x4d, 0xb5, 0x9d, 0x56, 0xc6, 0x3f, 0x33, 0xd5, 0xde, 0x15, 0x78, 0xb3, 0x69, 0x67, 0x01, 0x6c, - 0x11, 0x33, 0x93, 0x49, 0x12, 0xdc, 0x15, 0xde, 0xc3, 0x6a, 0xfa, 0x8e, 0xe8, 0xa1, 0x4c, 0x76, - 0x9b, 0x35, 0x9a, 0x34, 0xd0, 0x3b, 0xb0, 0x92, 0x8c, 0x4f, 0x7d, 0xdf, 0x72, 0x71, 0xd8, 0x17, - 0x95, 0x94, 0xb5, 0x9d, 0x2b, 0x33, 0x1c, 0x74, 0x7c, 0xff, 0x80, 0x11, 0x98, 0xba, 0x3d, 0x05, - 0x41, 0xbb, 0xa0, 0x27, 0xd5, 0xbc, 0x3d, 0xec, 0xb8, 0xa4, 0xcb, 0x9d, 0x75, 0x5a, 0x90, 0xb8, - 0x9c, 0xf7, 0x1e, 0xc7, 0x9b, 0x49, 0xfd, 0xaf, 0x00, 0x18, 0x1f, 0x6b, 0xb0, 0x94, 0x99, 0x95, - 0x4c, 0x20, 0xa0, 0x65, 0xc3, 0xc0, 0xeb, 0x50, 0x53, 0x53, 0x96, 0x84, 0x09, 0xa0, 0x40, 0x9d, - 0x68, 0xce, 0xb2, 0x6b, 0x41, 0x59, 0x2e, 0x5d, 0x51, 0x05, 0x69, 0xaa, 0x26, 0xf3, 0x9a, 0x71, - 0x67, 0x89, 0x79, 0x8b, 0xf5, 0xa7, 0x2b, 0x4c, 0x5c, 0xb8, 0xbb, 0x01, 0xf5, 0xb4, 0x0d, 0xa8, - 0x91, 0xb4, 0x24, 0x20, 0xfb, 0x33, 0x0d, 0x2a, 0x6a, 0xbe, 0xd3, 0x95, 0x65, 0x5a, 0xa6, 0xb2, - 0x4c, 0xb9, 0x81, 0x24, 0x9a, 0xe3, 0x84, 0xec, 0x08, 0xb1, 0x05, 0xcb, 0xca, 0x4a, 0x18, 0xda, - 0x3a, 0xc6, 0xd1, 0xb1, 0xbc, 0x1d, 0x6c, 0x2a, 0xc4, 0x03, 0x32, 0x79, 0x07, 0x47, 0xc7, 0xe8, - 0xf3, 0x00, 0xbc, 0x48, 0xd6, 0x3e, 0xc6, 0x8e, 0x27, 0x23, 0xf3, 0xcb, 0xdb, 0xf1, 0xeb, 0x93, - 0xf7, 0xb1, 0x43, 0xef, 0xf9, 0xe1, 0x5d, 0x8f, 0xf9, 0xe4, 0x2a, 0xa3, 0xdc, 0x65, 0x84, 0xc6, - 0xb7, 0x35, 0x68, 0x4e, 0xd9, 0xd6, 0x69, 0xfa, 0xde, 0x86, 0x15, 0x4c, 0x29, 0x19, 0x06, 0xcc, - 0x21, 0x27, 0x3a, 0x12, 0x7a, 0x5f, 0x8e, 0x51, 0xb1, 0x23, 0x98, 0x55, 0xff, 0x8c, 0xfb, 0x28, - 0xcc, 0xb8, 0x0f, 0x63, 0x1f, 0x6a, 0x29, 0x6b, 0x7d, 0xc6, 0xfc, 0x9f, 0x5a, 0xd0, 0x67, 0xdc, - 0x02, 0x7d, 0xda, 0x70, 0xb3, 0xc5, 0x4a, 0xda, 0x54, 0xb1, 0xd2, 0x0f, 0x34, 0x68, 0x4e, 0xd9, - 0xe8, 0x69, 0x0c, 0xcc, 0xa6, 0xc1, 0x3f, 0x0b, 0xd5, 0xd8, 0xa4, 0xb9, 0xe0, 0x8d, 0x1d, 0x34, - 0x6b, 0xfd, 0x66, 0x42, 0xc4, 0xa6, 0x99, 0xfb, 0x18, 0xc7, 0xeb, 0x4f, 0x57, 0x17, 0x36, 0x15, - 0x42, 0xd5, 0x17, 0xbe, 0x06, 0x28, 0xa6, 0x9d, 0xb1, 0x51, 0x85, 0x89, 0x15, 0xf9, 0x5d, 0x0d, - 0x80, 0x05, 0x48, 0xa2, 0x7a, 0x02, 0xbd, 0x0a, 0xcb, 0xdc, 0x46, 0x9e, 0x60, 0xd7, 0x15, 0xf1, - 0xd4, 0x50, 0x08, 0x94, 0x37, 0x1b, 0x0c, 0xf1, 0x3e, 0x76, 0x5d, 0x46, 0xfe, 0x5e, 0x84, 0x6e, - 0xc1, 0x6a, 0x10, 0xfa, 0x36, 0x89, 0xa2, 0x2c, 0x75, 0x8e, 0x53, 0x2f, 0x4b, 0x5c, 0xea, 0x83, - 0x6d, 0x58, 0x1d, 0x8c, 0x79, 0x38, 0x92, 0xfd, 0x20, 0xcf, 0x3f, 0xd0, 0x07, 0x63, 0x16, 0x98, - 0x24, 0xf4, 0xc6, 0x57, 0xa0, 0xc2, 0x02, 0x32, 0xbe, 0xc3, 0xae, 0x42, 0x91, 0xfa, 0x14, 0xbb, - 0x92, 0x17, 0xd1, 0x60, 0xae, 0x5e, 0x0e, 0x43, 0xba, 0x72, 0xdc, 0x04, 0x10, 0x1f, 0xc6, 0x1e, - 0x4f, 0x28, 0x51, 0xa3, 0xf0, 0xc3, 0xd8, 0x1d, 0x06, 0x30, 0x7e, 0x43, 0x03, 0x60, 0xfd, 0x4b, - 0xc9, 0x6f, 0x42, 0x91, 0xbf, 0x10, 0x98, 0xd9, 0x60, 0x14, 0x0f, 0xa6, 0xc0, 0xb3, 0x08, 0x3f, - 0xae, 0xaf, 0x9d, 0x4b, 0xc7, 0xd1, 0x8c, 0xac, 0x8b, 0x29, 0x9e, 0x39, 0x09, 0x25, 0x64, 0x0c, - 0x6d, 0xfc, 0x20, 0x2f, 0xde, 0xe6, 0x08, 0x2e, 0x1e, 0xed, 0xa0, 0xd7, 0x01, 0xc5, 0x22, 0xa8, - 0x68, 0x41, 0xd9, 0xd4, 0x72, 0x8c, 0x91, 0x31, 0x43, 0x84, 0xde, 0x82, 0xf5, 0x59, 0xf2, 0xf4, - 0xf3, 0x90, 0xb5, 0x99, 0x6f, 0x78, 0x90, 0x70, 0x03, 0x1a, 0x5c, 0x87, 0xc9, 0x10, 0xb2, 0xda, - 0x8b, 0x43, 0xe3, 0xee, 0xbf, 0x04, 0x2f, 0x84, 0x2c, 0x7c, 0xea, 0x3e, 0xb6, 0xba, 0x3c, 0x09, - 0x6d, 0x45, 0x03, 0x27, 0x08, 0xf8, 0xd2, 0x1e, 0x79, 0x54, 0xba, 0x9a, 0x2b, 0x92, 0x46, 0xe4, - 0xa9, 0xdb, 0x82, 0x62, 0x97, 0x11, 0xb0, 0xf8, 0x57, 0x75, 0xc0, 0xfc, 0x53, 0xf6, 0x6b, 0x61, - 0xc1, 0x97, 0x25, 0xc1, 0x03, 0x32, 0xc9, 0x7c, 0xfa, 0x36, 0xbc, 0xa8, 0x3e, 0x7d, 0xcc, 0x1d, - 0x1c, 0x3f, 0x1e, 0x58, 0xc7, 0xcc, 0x85, 0xf1, 0xcf, 0x8b, 0x99, 0xc1, 0xef, 0x30, 0x1a, 0x7e, - 0x5a, 0x78, 0xc7, 0xa1, 0xa2, 0x87, 0x9f, 0x83, 0x56, 0xb6, 0x07, 0x6e, 0x0f, 0xe2, 0x63, 0xf1, - 0xd2, 0x60, 0x2d, 0xfd, 0x31, 0xb3, 0x3f, 0xf1, 0xe1, 0xe7, 0x61, 0x7d, 0xce, 0x87, 0xcc, 0x90, - 0x64, 0x74, 0xb4, 0x3a, 0xfd, 0x1d, 0xb3, 0x29, 0xe3, 0xb7, 0x34, 0xa8, 0xa5, 0x2a, 0x93, 0x58, - 0x48, 0xcb, 0x8d, 0x5c, 0x14, 0x32, 0x49, 0xcb, 0x4a, 0x42, 0xda, 0x64, 0xdd, 0x99, 0x40, 0x93, - 0x35, 0xf8, 0x26, 0xd4, 0xf8, 0xf9, 0x44, 0x7e, 0x95, 0x9b, 0xfa, 0x2a, 0xb1, 0x16, 0x13, 0xa2, - 0xf8, 0xb7, 0xa8, 0x65, 0x12, 0x91, 0xaa, 0xf1, 0xeb, 0x1a, 0x2c, 0x65, 0x2a, 0xa4, 0x16, 0xe4, - 0xe4, 0x17, 0xa1, 0x91, 0xe2, 0xc4, 0x1a, 0xef, 0x48, 0x66, 0xd6, 0xe6, 0x30, 0xf3, 0x68, 0xc7, - 0xac, 0x47, 0xa9, 0x96, 0xf1, 0x01, 0x94, 0x44, 0x96, 0x3c, 0xa9, 0xa4, 0xd0, 0x9e, 0x51, 0x79, - 0x73, 0xc6, 0xcb, 0x64, 0xe3, 0x9b, 0x1a, 0x54, 0x54, 0x09, 0x23, 0xba, 0x06, 0x39, 0x3f, 0xe0, - 0x5d, 0x4f, 0xc5, 0xb9, 0x39, 0x3f, 0x38, 0xf3, 0xf5, 0x74, 0xc6, 0x25, 0x17, 0xce, 0xe0, 0x92, - 0x8d, 0xff, 0xd5, 0xa0, 0xca, 0x0e, 0xf5, 0x3c, 0x10, 0x41, 0xd7, 0xa1, 0xc0, 0xc3, 0xed, 0x39, - 0x6c, 0x70, 0xc4, 0x69, 0x89, 0xaa, 0x6b, 0x33, 0x6f, 0x32, 0x52, 0xef, 0x31, 0xae, 0x43, 0x2d, - 0x3a, 0xf6, 0x43, 0x6a, 0xa5, 0x5e, 0x65, 0x98, 0xc0, 0x41, 0xfc, 0x65, 0x0a, 0x73, 0x00, 0xc7, - 0x38, 0xb2, 0xfc, 0x31, 0x09, 0x5d, 0xcc, 0xd7, 0x96, 0xaa, 0x10, 0x97, 0x57, 0xc8, 0x6b, 0xc7, - 0x38, 0x3a, 0x8c, 0xb1, 0xaa, 0xce, 0x0c, 0x6d, 0x40, 0x9d, 0x7d, 0xd7, 0xb7, 0xad, 0x1e, 0x7f, - 0xa9, 0x22, 0xae, 0x50, 0xe0, 0x18, 0x47, 0xf7, 0xed, 0x7b, 0x0c, 0xc2, 0x58, 0x8e, 0xb1, 0xc2, - 0xea, 0xcb, 0x7d, 0x81, 0x32, 0xbe, 0x28, 0x64, 0x17, 0x1c, 0x9c, 0xb2, 0xf7, 0xc5, 0xca, 0xce, - 0xa5, 0xa7, 0xef, 0x7b, 0x39, 0xa8, 0xb0, 0xcf, 0xf9, 0xc1, 0xe8, 0xc7, 0xd1, 0x5c, 0x2a, 0x50, - 0xcb, 0x67, 0x03, 0xb5, 0x67, 0xaa, 0x6d, 0xb6, 0xfe, 0xe0, 0x2c, 0x6f, 0x91, 0xd2, 0xa7, 0xae, - 0xf2, 0xf4, 0xa9, 0xeb, 0xac, 0xc7, 0xa3, 0xa9, 0xa3, 0x4f, 0x75, 0xf6, 0xd5, 0xdc, 0x75, 0xa8, - 0xc5, 0x6f, 0x00, 0xa8, 0x38, 0x1c, 0x15, 0x4c, 0x50, 0xa0, 0x0e, 0xbf, 0xa2, 0xac, 0xa8, 0x8c, - 0x52, 0xbc, 0x21, 0x69, 0x73, 0x52, 0x4e, 0x3c, 0x25, 0x2e, 0x36, 0xa4, 0x2d, 0x28, 0xf1, 0x0d, - 0x4c, 0xe5, 0xbe, 0x51, 0x86, 0x90, 0x9b, 0xb1, 0x29, 0x29, 0x18, 0xad, 0x7c, 0xeb, 0x93, 0x9f, - 0x43, 0xcb, 0x35, 0xa8, 0xde, 0xff, 0x18, 0x9f, 0x83, 0xb2, 0x2c, 0x2e, 0xe3, 0x4a, 0x3d, 0xf1, - 0xa4, 0x11, 0xb0, 0x9f, 0xe8, 0x32, 0x94, 0x22, 0xfe, 0x4e, 0x40, 0x4e, 0x9d, 0x6c, 0x19, 0x6f, - 0xf3, 0xb3, 0x1d, 0xcf, 0xc2, 0x66, 0x13, 0xff, 0xda, 0xd3, 0xaf, 0xbd, 0x72, 0x99, 0x6b, 0xaf, - 0xbf, 0xd7, 0x00, 0x0e, 0x08, 0xee, 0x92, 0x90, 0x0f, 0x7d, 0x6a, 0x12, 0x6d, 0x1d, 0xca, 0x01, - 0x21, 0x21, 0x43, 0x49, 0x36, 0x58, 0x73, 0xbf, 0x1b, 0xe7, 0xc0, 0xf2, 0xa9, 0x1c, 0xd8, 0x74, - 0xc6, 0xad, 0x70, 0xc6, 0x8c, 0xdb, 0x1b, 0x32, 0xdc, 0x60, 0x12, 0x12, 0x79, 0x18, 0x4c, 0xf4, - 0xc6, 0xf6, 0x88, 0x36, 0xc3, 0x88, 0x10, 0x84, 0xff, 0x34, 0xf6, 0xa1, 0x1a, 0xc3, 0x67, 0xd3, - 0x3d, 0xda, 0xfc, 0x74, 0x0f, 0x2f, 0x7a, 0xa3, 0x89, 0x42, 0x71, 0x8f, 0x74, 0x22, 0xa3, 0x0d, - 0x48, 0xdc, 0x53, 0x71, 0x95, 0xa8, 0x9c, 0xca, 0xeb, 0x49, 0x26, 0x5e, 0x94, 0x80, 0x27, 0x2e, - 0x3f, 0xd1, 0x5d, 0x9c, 0x8e, 0x47, 0x0d, 0xc8, 0xc5, 0x1d, 0xe7, 0x68, 0x64, 0x7c, 0x09, 0x56, - 0x32, 0x9d, 0xca, 0xf4, 0x69, 0x2b, 0xdb, 0x6b, 0xe1, 0xe9, 0x1d, 0xec, 0x01, 0x6a, 0x53, 0x3f, - 0x24, 0x6d, 0xc6, 0x64, 0x5b, 0x71, 0xb5, 0x0d, 0x55, 0x16, 0x0b, 0xf0, 0xe4, 0xfb, 0xbc, 0x3d, - 0x41, 0x24, 0xe7, 0x2b, 0x03, 0xf9, 0xcb, 0xd8, 0x86, 0x95, 0x4c, 0x2f, 0x92, 0x8d, 0x94, 0x2e, - 0xb4, 0x8c, 0x2e, 0x6c, 0x7e, 0xa1, 0x7d, 0x9f, 0x30, 0x03, 0xea, 0x74, 0x0e, 0x2e, 0xa6, 0x38, - 0xed, 0xf7, 0x35, 0x7e, 0xc9, 0x9c, 0x1a, 0xe5, 0x02, 0x92, 0xcb, 0xc9, 0x83, 0x17, 0xee, 0xa2, - 0x4e, 0x2d, 0x4f, 0xfb, 0x17, 0x51, 0xc7, 0xb5, 0x7b, 0xbb, 0x7d, 0x91, 0x75, 0x5c, 0xaf, 0xb1, - 0xf0, 0x94, 0x8c, 0x1d, 0x7f, 0x14, 0xa5, 0xde, 0x26, 0x09, 0x5e, 0x74, 0x85, 0x89, 0x5f, 0x26, - 0xdd, 0x80, 0x46, 0x4c, 0x2d, 0x3a, 0x13, 0xb5, 0xbd, 0x4b, 0x0a, 0xfa, 0x28, 0x55, 0x1c, 0x56, - 0x9a, 0x2e, 0x0e, 0x2b, 0xc7, 0x92, 0x1b, 0xdf, 0x17, 0xc5, 0x2c, 0x5c, 0xb8, 0xf3, 0xd6, 0x73, - 0x0b, 0xca, 0xd1, 0xc8, 0xb6, 0x89, 0xbc, 0x96, 0xa9, 0x98, 0xaa, 0x79, 0x21, 0xc2, 0x1a, 0x7b, - 0x70, 0xf9, 0x3e, 0xe1, 0xcf, 0x56, 0xd9, 0x89, 0x9b, 0x2f, 0xc0, 0x4f, 0x3f, 0x5f, 0xc6, 0x77, - 0x34, 0x58, 0x9f, 0xe9, 0xe6, 0xbc, 0x35, 0xf3, 0x59, 0xe6, 0x7c, 0x29, 0xdf, 0xa5, 0xf2, 0xa7, - 0xa6, 0x0b, 0x14, 0x99, 0xf1, 0x8f, 0xa2, 0x76, 0x66, 0xd7, 0x97, 0xa7, 0x0e, 0x3f, 0x5c, 0xb0, - 0x10, 0xc2, 0xf6, 0x83, 0xd0, 0xf2, 0xf0, 0x50, 0xa5, 0xf0, 0x2a, 0x0c, 0xf0, 0x10, 0x0f, 0xf9, - 0x46, 0xcb, 0x91, 0xf2, 0xe0, 0x62, 0x85, 0xe4, 0x43, 0xb9, 0x2c, 0x1b, 0x0c, 0xae, 0x92, 0xc4, - 0xe4, 0xc3, 0xd4, 0x0d, 0x60, 0xe1, 0x59, 0x55, 0x29, 0x48, 0x9e, 0xd6, 0xc4, 0x8c, 0x89, 0xa3, - 0xd9, 0x88, 0xd7, 0xde, 0x64, 0x44, 0x39, 0x6f, 0x05, 0xa3, 0xd4, 0x21, 0x51, 0x0d, 0xfb, 0xb1, - 0xa8, 0x49, 0xe4, 0x8e, 0x37, 0x1a, 0x0d, 0x17, 0xd1, 0xdf, 0x17, 0xa0, 0x8a, 0xdd, 0xbe, 0x1f, - 0x3a, 0xf4, 0x78, 0xc8, 0x07, 0x6c, 0xec, 0x5c, 0x4d, 0xa8, 0x65, 0xc7, 0xb7, 0x15, 0x85, 0x99, - 0x10, 0x7f, 0x9a, 0x4b, 0xd3, 0xbf, 0x16, 0x75, 0x43, 0x09, 0x9f, 0xe7, 0xad, 0x9c, 0xab, 0x50, - 0xb1, 0x65, 0xe7, 0x71, 0x58, 0x2c, 0xdb, 0xcc, 0x42, 0xc4, 0xf1, 0x75, 0x30, 0x8e, 0x5f, 0x93, - 0x71, 0xc0, 0x83, 0x31, 0x0f, 0x9f, 0x04, 0x52, 0x9c, 0xfc, 0x45, 0x8c, 0x07, 0x1c, 0xc4, 0x8f, - 0xfe, 0x5b, 0x37, 0x01, 0x92, 0xeb, 0x04, 0x54, 0x82, 0xdc, 0xa3, 0x37, 0xf4, 0x4b, 0xa8, 0x0a, - 0xc5, 0x47, 0x6f, 0x74, 0x3a, 0x07, 0xba, 0xc6, 0x41, 0x3b, 0x7a, 0x6e, 0xeb, 0x33, 0x00, 0xc9, - 0xb5, 0x17, 0x02, 0x28, 0x3d, 0xf4, 0xc3, 0x21, 0x76, 0xf5, 0x4b, 0xa8, 0x0c, 0xf9, 0x03, 0xff, - 0x89, 0xae, 0xa1, 0x0a, 0x14, 0xde, 0x71, 0xfa, 0xc7, 0x7a, 0x6e, 0xeb, 0x16, 0x34, 0xb2, 0x77, - 0x5d, 0xac, 0x9b, 0xf6, 0xbe, 0x7e, 0x89, 0xfd, 0x35, 0x77, 0x75, 0x0d, 0x2d, 0x41, 0xd5, 0xdc, - 0x15, 0xef, 0x27, 0xdb, 0x7a, 0x6e, 0xeb, 0x11, 0xd4, 0x52, 0xf7, 0x26, 0x68, 0x15, 0xf4, 0x87, - 0x3e, 0xbd, 0xed, 0xba, 0xfe, 0x13, 0xd2, 0x3d, 0xf4, 0x18, 0x58, 0xbf, 0x84, 0xd6, 0x61, 0x25, - 0x06, 0xdd, 0x76, 0x87, 0x7e, 0x44, 0x39, 0x42, 0x43, 0x2d, 0x58, 0x4d, 0x21, 0x78, 0x9a, 0x91, - 0x63, 0x72, 0x5b, 0x36, 0xe4, 0x0e, 0x03, 0xc6, 0xe1, 0xd1, 0x88, 0x0a, 0x56, 0xf7, 0x88, 0x2b, - 0x58, 0x65, 0xfe, 0x42, 0xcf, 0xa1, 0x3a, 0x54, 0xd4, 0x41, 0x40, 0xcf, 0x33, 0xb9, 0xf6, 0x3d, - 0x76, 0xae, 0xd1, 0x0b, 0x68, 0x05, 0x9a, 0x53, 0x8f, 0x3e, 0xf5, 0x22, 0x42, 0xd0, 0xe0, 0x5c, - 0x2b, 0x57, 0x17, 0xe9, 0xa5, 0xad, 0x6d, 0xa8, 0xc6, 0xe7, 0x22, 0xd6, 0xf3, 0x43, 0xdf, 0x23, - 0x42, 0x89, 0x9c, 0x44, 0xd7, 0xd8, 0x20, 0xea, 0x03, 0xa1, 0x9d, 0xec, 0xff, 0x69, 0x60, 0x7c, - 0x1d, 0xf6, 0x7a, 0xfa, 0x25, 0xf6, 0xf5, 0x3d, 0xcc, 0x3f, 0x01, 0x28, 0xb5, 0x69, 0xe8, 0xd8, - 0xec, 0x83, 0x3f, 0xd6, 0xa0, 0x24, 0x1e, 0x67, 0x8a, 0x9e, 0xc4, 0x6f, 0xfd, 0x12, 0x5a, 0x83, - 0xe5, 0x4e, 0xe7, 0x40, 0xa4, 0x22, 0x63, 0x29, 0xb8, 0x3e, 0x18, 0xbb, 0x6a, 0xc8, 0x18, 0x93, - 0x63, 0x1f, 0xbc, 0x17, 0xe7, 0x0e, 0xdb, 0x47, 0xa3, 0xe8, 0x98, 0x74, 0xf5, 0x3c, 0xda, 0x80, - 0x17, 0xe2, 0x7e, 0xe6, 0x3c, 0xfd, 0xd6, 0x0b, 0xe8, 0x0a, 0xac, 0xa5, 0xbb, 0xdc, 0xf3, 0x1f, - 0xfa, 0xf4, 0xd8, 0xf1, 0xfa, 0x7a, 0x71, 0xeb, 0x06, 0x94, 0xef, 0x9e, 0xd0, 0x10, 0x1f, 0x06, - 0x42, 0x78, 0x3f, 0xd0, 0x2f, 0x21, 0x1d, 0xea, 0x2c, 0x9e, 0x3b, 0x74, 0xbb, 0xdc, 0xd5, 0xeb, - 0xda, 0x96, 0x01, 0xcb, 0x33, 0xeb, 0x8d, 0x99, 0xc1, 0x6e, 0x68, 0xbf, 0xf5, 0xa6, 0xf5, 0xcb, - 0x7e, 0xa8, 0x5f, 0xba, 0xf3, 0xca, 0x3f, 0xff, 0x79, 0x45, 0xfb, 0xfe, 0x27, 0x2f, 0x69, 0x3f, - 0xfa, 0xe4, 0x25, 0xed, 0xdf, 0x3f, 0x79, 0x49, 0xfb, 0xee, 0x7f, 0xbe, 0x74, 0x09, 0x74, 0x3f, - 0xec, 0x6f, 0x53, 0x67, 0x30, 0xde, 0x1e, 0x8c, 0xf9, 0x7f, 0x02, 0x7a, 0x5c, 0xe2, 0x7f, 0x3e, - 0xf7, 0x7f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x74, 0xe8, 0xac, 0x59, 0x8d, 0x48, 0x00, 0x00, + // 5104 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xdc, 0x7c, 0xdd, 0x6f, 0x23, 0xc9, + 0x71, 0xf8, 0x0e, 0x3f, 0x44, 0xb2, 0x48, 0x91, 0xa3, 0x96, 0xb4, 0xe2, 0xee, 0xde, 0xdd, 0xea, + 0xc6, 0xbf, 0xbd, 0x95, 0x75, 0x77, 0x5a, 0x9f, 0x7c, 0xbe, 0x9f, 0x93, 0x18, 0xf1, 0xed, 0x6a, + 0xbf, 0x74, 0xab, 0x5b, 0x09, 0x43, 0x7a, 0x2f, 0x07, 0xe4, 0x3c, 0xee, 0x1d, 0x36, 0xa9, 0x01, + 0x87, 0x33, 0x73, 0x33, 0x4d, 0x2e, 0x69, 0x23, 0x40, 0x9c, 0x2f, 0x20, 0x40, 0x12, 0x27, 0x8e, + 0x81, 0x33, 0x90, 0x20, 0x40, 0x1e, 0x0e, 0x48, 0xf2, 0x96, 0xb7, 0x20, 0x40, 0x72, 0x08, 0x90, + 0x07, 0xc7, 0x40, 0x60, 0x3f, 0x06, 0xc9, 0x43, 0x92, 0xcb, 0x4b, 0xf2, 0x07, 0xe4, 0x25, 0x4f, + 0x41, 0x7f, 0xcd, 0x07, 0xc9, 0xd5, 0xea, 0x68, 0x69, 0x6d, 0xe4, 0x49, 0xec, 0xaa, 0x9a, 0xee, + 0xaa, 0xea, 0xea, 0xea, 0xea, 0xea, 0x6a, 0xc1, 0x72, 0x7f, 0x14, 0x06, 0x76, 0xf0, 0x78, 0x27, + 0x08, 0x7d, 0xea, 0xa3, 0x92, 0x6c, 0x5e, 0xae, 0x0d, 0x08, 0xc5, 0x0a, 0x7c, 0x79, 0x99, 0x84, + 0xa1, 0x1f, 0xc6, 0xcd, 0xb5, 0x9e, 0xdf, 0xf3, 0xf9, 0xcf, 0x1b, 0xec, 0x97, 0x84, 0x36, 0xc2, + 0x61, 0x44, 0xf9, 0x4f, 0x09, 0xa8, 0x77, 0x08, 0xee, 0xb8, 0xbe, 0xdd, 0x57, 0xbd, 0xd0, 0x10, + 0xdb, 0x44, 0xf5, 0x62, 0x74, 0x00, 0xee, 0x11, 0x6a, 0x92, 0x0f, 0x87, 0x24, 0xa2, 0x68, 0x1b, + 0x4a, 0xb6, 0xef, 0x51, 0x32, 0xa6, 0x4d, 0x6d, 0x53, 0xdb, 0xaa, 0xee, 0xea, 0x3b, 0x8a, 0xb5, + 0x3d, 0x01, 0x37, 0x15, 0x01, 0xd2, 0x21, 0xdf, 0x27, 0x93, 0x66, 0x6e, 0x53, 0xdb, 0xaa, 0x99, + 0xec, 0x27, 0x6a, 0x42, 0x69, 0x44, 0xc2, 0xc8, 0xf1, 0xbd, 0x66, 0x7e, 0x53, 0xdb, 0x2a, 0x98, + 0xaa, 0x69, 0x7c, 0xaa, 0x41, 0x95, 0x0f, 0x13, 0x05, 0xbe, 0x17, 0x11, 0xf4, 0x06, 0xd4, 0x42, + 0xd2, 0x73, 0x7c, 0xcf, 0xe2, 0x32, 0xc9, 0xc1, 0xea, 0x3b, 0x4a, 0xc2, 0x3b, 0xec, 0xaf, 0x59, + 0x15, 0x34, 0xbc, 0x81, 0xae, 0x43, 0x51, 0xd0, 0xe6, 0x38, 0xed, 0x4a, 0xcc, 0xd8, 0x03, 0x32, + 0x11, 0xe4, 0x02, 0x8f, 0xd6, 0xa0, 0x38, 0xc2, 0xee, 0x90, 0x70, 0x1e, 0x6a, 0xa6, 0x68, 0xa0, + 0x2b, 0x50, 0xf1, 0x7c, 0x6a, 0x75, 0xfd, 0xa1, 0xd7, 0x69, 0x16, 0x36, 0xb5, 0xad, 0xb2, 0x59, + 0xf6, 0x7c, 0x7a, 0x97, 0xb5, 0xd1, 0x2f, 0x42, 0x83, 0x8c, 0x89, 0x6d, 0x75, 0x08, 0xc5, 0x8e, + 0x1b, 0x59, 0xa3, 0xdd, 0xe6, 0x12, 0x1f, 0xe5, 0x62, 0x3c, 0xca, 0x9d, 0x31, 0xb1, 0x6f, 0x0b, + 0xf4, 0xa3, 0x5d, 0x73, 0x99, 0xa4, 0x9b, 0xef, 0x14, 0xca, 0x45, 0x7d, 0xc9, 0xf8, 0x6f, 0x0d, + 0xaa, 0x2d, 0x1b, 0x7b, 0x8b, 0x28, 0xf3, 0x0a, 0x54, 0x22, 0x8a, 0x43, 0x6a, 0x25, 0x2a, 0x2d, + 0x73, 0xc0, 0x03, 0x32, 0x61, 0x12, 0xb9, 0xce, 0xc0, 0xa1, 0x5c, 0xa2, 0x65, 0x53, 0x34, 0xd2, + 0xda, 0x2e, 0x64, 0xb4, 0x8d, 0x2e, 0x41, 0xb9, 0x4f, 0x26, 0x96, 0xef, 0xb9, 0x93, 0x66, 0x91, + 0x8b, 0x5a, 0xea, 0x93, 0xc9, 0xa1, 0xe7, 0xf2, 0x29, 0x0a, 0x09, 0xa3, 0x23, 0x5c, 0xc2, 0xb2, + 0xa9, 0x9a, 0x68, 0x03, 0x4a, 0xc4, 0xeb, 0xf0, 0xf1, 0x4b, 0x7c, 0xfc, 0x25, 0xe2, 0x75, 0xd8, + 0xe8, 0x57, 0xa1, 0x1a, 0xe1, 0x41, 0xe0, 0x12, 0x2b, 0xa2, 0x24, 0x68, 0x96, 0x39, 0x0f, 0x20, + 0x40, 0x2d, 0x4a, 0x02, 0xe3, 0x0f, 0x34, 0xa8, 0x09, 0xb9, 0x17, 0x9f, 0xdd, 0x6b, 0x50, 0x0c, + 0xb0, 0x13, 0x46, 0xcd, 0xdc, 0x66, 0x7e, 0xab, 0xba, 0xdb, 0x48, 0x66, 0x77, 0x74, 0x84, 0x9d, + 0xd0, 0x14, 0xd8, 0xc4, 0x08, 0xf2, 0x27, 0x1b, 0x81, 0xf1, 0x9f, 0x05, 0x68, 0x1c, 0x85, 0xe4, + 0x49, 0xe8, 0x50, 0xb2, 0xc8, 0x7c, 0xdc, 0x80, 0xca, 0x60, 0x48, 0x31, 0x75, 0x7c, 0x4f, 0xf1, + 0x94, 0x0c, 0xf6, 0xae, 0xc4, 0x98, 0x09, 0x0d, 0x7a, 0x19, 0x6a, 0x41, 0xe8, 0x0c, 0x70, 0x38, + 0xb1, 0xd8, 0x62, 0x93, 0xc6, 0x57, 0x95, 0xb0, 0x03, 0xdf, 0xee, 0xa3, 0xcf, 0xc1, 0xb2, 0x98, + 0xe3, 0xec, 0xb4, 0xd5, 0x38, 0xf0, 0x51, 0x32, 0x77, 0xec, 0x7b, 0x8b, 0x52, 0x97, 0xcf, 0x5d, + 0xc1, 0x2c, 0xb1, 0x76, 0x9b, 0xba, 0x68, 0x17, 0xd6, 0xa3, 0xbe, 0x13, 0x58, 0xb6, 0xef, 0x45, + 0x34, 0xc4, 0x8e, 0x47, 0x2d, 0xfb, 0x98, 0xd8, 0x7d, 0x39, 0x93, 0xab, 0x0c, 0xb9, 0x17, 0xe3, + 0xf6, 0x18, 0x0a, 0xed, 0xc0, 0xaa, 0x13, 0x59, 0x01, 0x89, 0x22, 0x67, 0xe0, 0x44, 0xd4, 0xb1, + 0x05, 0x77, 0xa5, 0xcd, 0xfc, 0x56, 0xd9, 0x5c, 0x71, 0xa2, 0xa3, 0x04, 0xc3, 0x79, 0xbc, 0x04, + 0x65, 0x3a, 0xf6, 0xac, 0xc8, 0xf9, 0x26, 0xe1, 0x33, 0x5d, 0x30, 0x4b, 0x74, 0xec, 0xb5, 0x9c, + 0x6f, 0x12, 0x64, 0xc0, 0x72, 0xd7, 0x0f, 0xad, 0x61, 0xd0, 0xc1, 0x94, 0x58, 0x34, 0x6a, 0x56, + 0x38, 0xbe, 0xda, 0xf5, 0xc3, 0xaf, 0x71, 0x58, 0x3b, 0x62, 0x34, 0x03, 0xc7, 0xb3, 0x6c, 0x7f, + 0x30, 0x70, 0x28, 0xa3, 0x01, 0x41, 0x33, 0x70, 0xbc, 0x3d, 0x0e, 0x6b, 0x47, 0x68, 0x0b, 0xf4, + 0x61, 0x44, 0x2c, 0x1c, 0x4d, 0x3c, 0x5b, 0x52, 0x36, 0xab, 0x5c, 0x82, 0xfa, 0x30, 0x22, 0x37, + 0x19, 0x58, 0xd0, 0xa2, 0x4d, 0xa8, 0x46, 0xc4, 0xf6, 0xbd, 0x0e, 0x0e, 0x1d, 0x12, 0x35, 0x6b, + 0x9b, 0x79, 0xa6, 0xd2, 0x14, 0x08, 0xbd, 0x00, 0x40, 0x43, 0x66, 0xe9, 0xc4, 0x0a, 0xec, 0xe6, + 0xb2, 0x58, 0xd6, 0x34, 0x9c, 0x1c, 0x7a, 0xe4, 0xc8, 0xe6, 0xdc, 0xe0, 0x71, 0x8a, 0x9b, 0xba, + 0xe4, 0x06, 0x8f, 0x63, 0x6e, 0xde, 0x86, 0x06, 0x8e, 0x22, 0x12, 0xb2, 0x59, 0xb4, 0x5c, 0x32, + 0x22, 0x6e, 0xb3, 0xb1, 0xa9, 0x6d, 0xd5, 0x77, 0x37, 0xe2, 0xe9, 0xbe, 0xa9, 0xf0, 0x07, 0x0c, + 0x6d, 0xd6, 0x71, 0xa6, 0x6d, 0xfc, 0x8d, 0x06, 0x7a, 0x62, 0x6a, 0x8b, 0x2f, 0x81, 0xcf, 0xc3, + 0x12, 0xc7, 0xce, 0xda, 0x5b, 0x6c, 0xdc, 0x92, 0x60, 0x56, 0xcd, 0xf9, 0x59, 0x35, 0x5f, 0x07, + 0x5d, 0xa8, 0x25, 0x45, 0x26, 0x0c, 0x6e, 0xd9, 0x67, 0xda, 0x51, 0x84, 0xc6, 0x8f, 0xf2, 0x70, + 0x71, 0xca, 0x0c, 0xfe, 0xaf, 0xac, 0x98, 0x19, 0x93, 0x5d, 0x9a, 0x6b, 0xb2, 0x4e, 0x64, 0x75, + 0x9d, 0x30, 0xa2, 0x6a, 0x6d, 0x30, 0x2b, 0xaa, 0x3a, 0xd1, 0x5d, 0x06, 0xe3, 0x7c, 0xbc, 0x0c, + 0xb5, 0x27, 0x98, 0xa9, 0xd0, 0x19, 0x10, 0x7f, 0x48, 0xf9, 0xca, 0xc8, 0x9b, 0x55, 0x06, 0x6b, + 0x0b, 0x10, 0x6a, 0x42, 0xb1, 0xeb, 0x87, 0x36, 0xe1, 0xab, 0xa2, 0x7c, 0x2b, 0xd7, 0xd4, 0x4c, + 0x01, 0x60, 0x42, 0x84, 0x84, 0x0e, 0x43, 0xcf, 0xe2, 0x3b, 0x91, 0x58, 0x13, 0x65, 0xb3, 0x26, + 0x80, 0x8f, 0x38, 0x6c, 0x76, 0x46, 0xab, 0xf3, 0x66, 0xb4, 0xc1, 0xd7, 0xbb, 0x45, 0xc6, 0x4e, + 0x44, 0x89, 0x67, 0x93, 0x66, 0x4d, 0xac, 0x1b, 0x0e, 0xbe, 0xa3, 0xa0, 0xc6, 0x7f, 0x69, 0xb0, + 0x31, 0x33, 0xa3, 0xcf, 0xc5, 0x30, 0xaf, 0x42, 0x65, 0xca, 0x28, 0xb9, 0x26, 0xca, 0xb6, 0x92, + 0xa1, 0xa9, 0x36, 0x67, 0x36, 0x93, 0x35, 0xa1, 0x26, 0xb1, 0x41, 0x5f, 0x84, 0x25, 0xa9, 0x9f, + 0x22, 0x5f, 0xe7, 0xb2, 0x85, 0x5e, 0x04, 0x88, 0x37, 0x6e, 0x36, 0x81, 0xcc, 0x71, 0x55, 0xd4, + 0xce, 0x1d, 0x19, 0x1f, 0x6b, 0x70, 0x39, 0x25, 0xab, 0xe9, 0xbb, 0xee, 0x63, 0xbc, 0x98, 0x05, + 0xcf, 0x58, 0x5b, 0x6e, 0x8e, 0xb5, 0xcd, 0x98, 0x54, 0x7e, 0xd6, 0xa4, 0x10, 0x14, 0xfa, 0x64, + 0xc2, 0x96, 0x1b, 0x13, 0x84, 0xff, 0x36, 0xbe, 0x05, 0x57, 0xe6, 0xb2, 0xf9, 0x3c, 0xa6, 0xc5, + 0xf8, 0x4b, 0x0d, 0x56, 0xdb, 0x63, 0xef, 0x3e, 0xc1, 0x21, 0xbd, 0x45, 0xf0, 0x42, 0xe1, 0xde, + 0xf4, 0x72, 0xcd, 0x9d, 0x62, 0xb9, 0xe6, 0xe7, 0x28, 0xf0, 0x15, 0x68, 0xe0, 0xce, 0xc8, 0x89, + 0x88, 0x15, 0xaf, 0x5a, 0xe9, 0x96, 0x04, 0xf8, 0x40, 0xac, 0x5d, 0xe3, 0x77, 0x35, 0x58, 0xcb, + 0xf2, 0xfc, 0x1c, 0x62, 0xc7, 0xb4, 0x2f, 0xc9, 0x67, 0x7c, 0x89, 0xf1, 0xef, 0x39, 0x58, 0xe7, + 0x7b, 0x6a, 0x7b, 0xec, 0xb5, 0x28, 0xa6, 0xc3, 0x68, 0x11, 0x2d, 0x5e, 0x05, 0xa5, 0xb1, 0x54, + 0xa4, 0x07, 0x12, 0xc4, 0xa2, 0xad, 0x0d, 0x28, 0x09, 0x0e, 0x94, 0x65, 0x2d, 0x71, 0x06, 0x22, + 0xa6, 0x37, 0x1b, 0xbb, 0x2e, 0x09, 0x2d, 0xa1, 0xe3, 0xc4, 0x9d, 0x0b, 0x70, 0x8b, 0x41, 0xdb, + 0x7c, 0xbd, 0xd8, 0xc3, 0x30, 0x24, 0x1e, 0x27, 0x11, 0x0e, 0xb1, 0x22, 0x21, 0xed, 0x08, 0xbd, + 0x01, 0xeb, 0xa1, 0x34, 0x3e, 0xcb, 0xe9, 0x5a, 0x6c, 0x69, 0x71, 0x77, 0x22, 0x83, 0x08, 0xa4, + 0x90, 0xfb, 0xdd, 0x87, 0x3e, 0xe5, 0x2e, 0x05, 0x6d, 0xc3, 0x0a, 0xf7, 0x64, 0x56, 0x7a, 0xc7, + 0x16, 0x5e, 0xb2, 0xc1, 0x11, 0xad, 0x64, 0xcb, 0xfe, 0x0a, 0x5c, 0x0e, 0x49, 0xe4, 0xbb, 0x23, + 0xc7, 0xeb, 0xcd, 0x86, 0x1d, 0x65, 0xfe, 0x51, 0x33, 0xa6, 0x98, 0x72, 0x52, 0xc6, 0x77, 0x72, + 0x70, 0x71, 0x5a, 0xc7, 0x3f, 0xd5, 0x59, 0x47, 0xd7, 0xa0, 0x2e, 0x1d, 0x5a, 0x76, 0x0b, 0x5a, + 0x16, 0x50, 0x65, 0xd4, 0xd7, 0x61, 0x09, 0xdb, 0x6c, 0x5b, 0xe3, 0x0a, 0xaf, 0xa7, 0xe2, 0xd7, + 0x9b, 0x1c, 0x6c, 0x4a, 0x34, 0xda, 0x81, 0x0a, 0x1f, 0xca, 0xf1, 0xba, 0xbe, 0x3c, 0x63, 0x24, + 0x7c, 0x31, 0x1d, 0xec, 0x7b, 0x5d, 0xdf, 0xe4, 0xec, 0xb0, 0x5f, 0xc6, 0xb7, 0x35, 0xb8, 0xcc, + 0x35, 0xd2, 0x92, 0x51, 0x0f, 0x5f, 0x69, 0x0b, 0x99, 0x9e, 0xf2, 0x4a, 0xb9, 0xc4, 0x2b, 0x9d, + 0x6a, 0xc5, 0x1a, 0x9f, 0x68, 0x70, 0x65, 0x2e, 0x0f, 0xcf, 0x61, 0x6a, 0xae, 0x43, 0x91, 0xe9, + 0x82, 0x2d, 0x86, 0xfc, 0x7c, 0x5d, 0x09, 0x3c, 0x3b, 0x40, 0x4d, 0xc7, 0x39, 0xf1, 0xae, 0x63, + 0xfc, 0xb9, 0x06, 0xcb, 0xc2, 0x40, 0xcf, 0x6d, 0x5f, 0x50, 0xda, 0xcd, 0xa7, 0xb4, 0x7b, 0x3a, + 0xe3, 0x11, 0xa7, 0x47, 0x73, 0xe9, 0xb1, 0xe3, 0xb9, 0x7e, 0xcf, 0xf8, 0x43, 0x0d, 0xea, 0x8a, + 0xd7, 0xe7, 0xa0, 0xe0, 0x59, 0x1e, 0xf3, 0x73, 0x78, 0x34, 0x7a, 0xb0, 0xbc, 0x3f, 0x08, 0xfc, + 0x30, 0x56, 0x60, 0x26, 0xdc, 0xd3, 0x4e, 0x11, 0xee, 0xcd, 0x0e, 0x94, 0x9b, 0x37, 0xd0, 0xfb, + 0x50, 0x57, 0x03, 0x2d, 0x2e, 0xfd, 0x5a, 0x5a, 0xfa, 0x8a, 0x3a, 0x13, 0x7e, 0x97, 0x69, 0xd6, + 0x25, 0xd8, 0x1b, 0x06, 0x67, 0x93, 0xef, 0x38, 0xd5, 0x7e, 0x97, 0xf5, 0xc7, 0x85, 0x29, 0x7f, + 0x6c, 0x7c, 0x4f, 0x83, 0x46, 0xcc, 0xd4, 0xcf, 0xce, 0x7c, 0xf7, 0xa1, 0x71, 0x0b, 0x53, 0xfb, + 0x78, 0xc1, 0xdc, 0xd0, 0x3c, 0x5f, 0xf3, 0xf4, 0xec, 0xd0, 0xbf, 0x68, 0xa0, 0x27, 0xa3, 0x9d, + 0x7b, 0x12, 0x61, 0x4e, 0xb6, 0xa7, 0xf0, 0x19, 0xb2, 0x3d, 0x89, 0xae, 0x8b, 0x27, 0xeb, 0xfa, + 0x9d, 0x42, 0x39, 0xaf, 0x17, 0x8c, 0x6f, 0xc1, 0x1a, 0x17, 0xee, 0xdc, 0x43, 0xd3, 0x39, 0x2e, + 0xc8, 0x88, 0x60, 0x7d, 0x6a, 0xf0, 0xf3, 0xb7, 0x31, 0xe3, 0x2f, 0x34, 0x68, 0xb4, 0x6c, 0xec, + 0x2d, 0x7a, 0x94, 0xbc, 0x0a, 0xec, 0x88, 0x3e, 0x25, 0x2b, 0x0c, 0xf0, 0x58, 0x49, 0x9a, 0xc9, + 0x96, 0xe5, 0x9f, 0x96, 0x2d, 0x2b, 0xa4, 0xb3, 0x65, 0xa9, 0xf4, 0x56, 0x31, 0x9d, 0xde, 0x32, + 0x3e, 0xd2, 0x40, 0x4f, 0x98, 0xfd, 0x19, 0xda, 0xd2, 0x8c, 0x1f, 0x69, 0x80, 0x4c, 0x1e, 0x2a, + 0x91, 0x45, 0x35, 0x79, 0x2a, 0xbb, 0x39, 0x9d, 0x4b, 0x40, 0xaf, 0x43, 0x85, 0x8e, 0x3d, 0x1e, + 0xb9, 0x88, 0xa3, 0x4d, 0x7a, 0xe4, 0xf6, 0xd8, 0x13, 0x91, 0x0b, 0x15, 0x3f, 0x92, 0x43, 0x50, + 0x31, 0x65, 0x8d, 0x1f, 0xc2, 0x6a, 0x46, 0xa0, 0xe7, 0x60, 0x8b, 0x8f, 0xa0, 0x72, 0x6f, 0x6f, + 0x11, 0xd5, 0xbd, 0x08, 0x10, 0xe1, 0x2e, 0xb1, 0x02, 0xdf, 0xf1, 0xa8, 0xd4, 0x5b, 0x85, 0x41, + 0x8e, 0x18, 0xc0, 0x38, 0x06, 0x60, 0xfd, 0x3e, 0x07, 0x09, 0x3e, 0xd2, 0x00, 0xdd, 0x26, 0x2e, + 0xa1, 0xc4, 0xc4, 0x5e, 0x8f, 0x9c, 0x79, 0x76, 0x39, 0xb5, 0x32, 0xf2, 0xd3, 0x89, 0x5f, 0xcf, + 0xa7, 0x4e, 0x57, 0x66, 0x92, 0x45, 0xd2, 0x1c, 0x04, 0xe8, 0xd0, 0x73, 0x27, 0xc6, 0xd7, 0x61, + 0x35, 0xc3, 0xd8, 0x59, 0x6f, 0xd8, 0x1f, 0xc0, 0xb2, 0x89, 0x9f, 0x9c, 0xd9, 0xf5, 0x44, 0x1d, + 0x72, 0x76, 0x97, 0xcb, 0x58, 0x31, 0x73, 0x76, 0xd7, 0xf8, 0x1d, 0x0d, 0xea, 0xaa, 0xff, 0x33, + 0x66, 0x7d, 0x81, 0x4b, 0x08, 0xa3, 0x03, 0xc8, 0xc4, 0x4f, 0xce, 0x7a, 0xd7, 0x9d, 0x16, 0xda, + 0x87, 0xd5, 0xcc, 0x28, 0xe7, 0xbd, 0xdb, 0x1a, 0x7f, 0xa2, 0xf1, 0x59, 0x3c, 0x1a, 0x9e, 0xd1, + 0x2c, 0xce, 0xd7, 0xac, 0x10, 0xb3, 0xa0, 0xc4, 0x64, 0xdf, 0x25, 0xf9, 0x40, 0xf6, 0x93, 0x99, + 0x79, 0xd7, 0x0f, 0x2d, 0x1b, 0x47, 0xf2, 0xa8, 0xbb, 0xd4, 0xf5, 0xc3, 0x3d, 0x1c, 0xb1, 0x88, + 0x53, 0xf1, 0x77, 0xd6, 0x06, 0xfc, 0xd7, 0x5a, 0x32, 0xa7, 0x0b, 0x2a, 0xe0, 0x94, 0x31, 0xcd, + 0xd4, 0x34, 0xa3, 0x35, 0x21, 0x7f, 0x21, 0x4e, 0xc1, 0x4d, 0xeb, 0xa0, 0x98, 0xd6, 0x01, 0xb3, + 0x1c, 0x4a, 0x5d, 0x91, 0x5e, 0x2b, 0x98, 0xfc, 0x37, 0x5b, 0xdd, 0x19, 0xde, 0xcf, 0x5a, 0x39, + 0x13, 0xd0, 0x4d, 0xfc, 0x44, 0x3a, 0x90, 0xf3, 0x58, 0xe0, 0x69, 0x71, 0x0b, 0x99, 0x29, 0xff, + 0x65, 0x58, 0x49, 0x0d, 0x7d, 0xd6, 0x82, 0xfd, 0xaa, 0x06, 0xeb, 0x4a, 0x73, 0x8b, 0x8b, 0x77, + 0x8a, 0xc5, 0xfc, 0x74, 0x01, 0x31, 0x5c, 0x9c, 0xe6, 0xe0, 0xac, 0xa5, 0xfc, 0x47, 0xe1, 0x3d, + 0x9f, 0xe3, 0x85, 0x67, 0xfa, 0x5a, 0xb3, 0x90, 0xbd, 0xd6, 0x14, 0x8a, 0x29, 0xc6, 0x8a, 0xf9, + 0xec, 0xd7, 0x9c, 0x46, 0x0f, 0x1a, 0xb1, 0x38, 0x8b, 0xeb, 0xea, 0x65, 0xc8, 0xf7, 0x47, 0x4f, + 0x5d, 0xac, 0x0c, 0x67, 0xfc, 0xb6, 0x30, 0x8f, 0x9f, 0xca, 0x96, 0x3e, 0xe5, 0x26, 0xa5, 0x9d, + 0x9c, 0xeb, 0x26, 0xfe, 0x63, 0x2d, 0xf1, 0x23, 0x8b, 0x1a, 0xcb, 0xe7, 0x61, 0x29, 0x64, 0xdc, + 0xcd, 0x4d, 0x75, 0x0b, 0xbe, 0x25, 0x01, 0x0b, 0xdb, 0x08, 0xb6, 0x8f, 0xad, 0xb4, 0xfd, 0x54, + 0x18, 0xe4, 0xe0, 0xcc, 0x6c, 0xc8, 0x70, 0x61, 0x2d, 0x2b, 0xd1, 0xb9, 0xda, 0xcb, 0xaf, 0xc0, + 0xa5, 0xaf, 0x79, 0x2c, 0xf0, 0xbc, 0x4d, 0x22, 0x1a, 0xfa, 0x93, 0xe7, 0x6b, 0x32, 0x06, 0x81, + 0xcb, 0xf3, 0x86, 0x3f, 0x6b, 0x33, 0xf9, 0x06, 0x5c, 0x31, 0x49, 0xcf, 0x89, 0x28, 0x09, 0xd9, + 0xd9, 0xe0, 0xf0, 0x71, 0x44, 0xc2, 0x11, 0x09, 0x17, 0x91, 0x73, 0x1d, 0x96, 0xd8, 0xf1, 0x91, + 0x46, 0x32, 0x6a, 0x2f, 0x0e, 0xf0, 0xb8, 0x1d, 0x19, 0x6f, 0xc2, 0x0b, 0xf3, 0x47, 0x90, 0xa2, + 0xc4, 0x7c, 0x69, 0xd9, 0x18, 0xb4, 0xc9, 0x73, 0x9f, 0xe7, 0xc4, 0xd4, 0x10, 0x2e, 0xcd, 0xe9, + 0xfe, 0x24, 0x8e, 0x98, 0x09, 0x3b, 0x91, 0x65, 0xbb, 0x04, 0x8b, 0xe3, 0x5c, 0xd9, 0x2c, 0x39, + 0x11, 0x4f, 0x21, 0x9d, 0xfe, 0x68, 0xf9, 0x75, 0xb8, 0x64, 0x92, 0x81, 0x2f, 0xce, 0x61, 0xe7, + 0x20, 0xd6, 0x2e, 0x5c, 0x9e, 0xd7, 0xff, 0x89, 0x9a, 0xfe, 0x8e, 0x06, 0x1b, 0x47, 0xc7, 0x93, + 0xc8, 0xb1, 0xb1, 0xfb, 0x93, 0x64, 0x0f, 0xe6, 0xb3, 0xb4, 0x40, 0xce, 0xc0, 0x78, 0x1f, 0x9a, + 0xb3, 0x0c, 0x9d, 0x38, 0x37, 0xf1, 0x04, 0xe4, 0x9e, 0x31, 0x01, 0x7f, 0xac, 0x01, 0x6a, 0x05, + 0xae, 0x43, 0x4d, 0xbe, 0x32, 0x16, 0xcb, 0x92, 0x54, 0x22, 0xd6, 0x43, 0xb2, 0x9c, 0xc5, 0x5d, + 0x2b, 0x07, 0x32, 0xa1, 0xd8, 0x09, 0x56, 0x11, 0xa8, 0xac, 0x50, 0x45, 0x61, 0x23, 0x74, 0x19, + 0x2a, 0x4e, 0x64, 0x85, 0xf8, 0x89, 0xd5, 0x1f, 0x29, 0x5f, 0xe8, 0x44, 0x26, 0x7e, 0xf2, 0x60, + 0x64, 0xfc, 0xbd, 0x06, 0xab, 0x19, 0xf6, 0x16, 0x5f, 0xee, 0xaf, 0x40, 0xc1, 0x25, 0x5d, 0x2a, + 0x8f, 0xb9, 0xf5, 0x1d, 0x59, 0xd2, 0x26, 0x3a, 0xe6, 0x1c, 0x73, 0x3c, 0xda, 0x82, 0x62, 0xe8, + 0xf4, 0x8e, 0xa9, 0x2c, 0xed, 0x99, 0x47, 0x28, 0x08, 0xd0, 0x16, 0x73, 0xcc, 0x3d, 0x9e, 0x78, + 0x16, 0x69, 0x88, 0x29, 0x5a, 0x53, 0xa1, 0x8d, 0xdf, 0xd0, 0x40, 0x37, 0x09, 0xee, 0xec, 0x7b, + 0x1d, 0x32, 0x5e, 0x44, 0xc7, 0x97, 0xa0, 0x1c, 0xdf, 0xb6, 0x09, 0x6b, 0x2a, 0x45, 0xf2, 0x9e, + 0x2d, 0xd9, 0x93, 0xf2, 0xcf, 0xd8, 0x93, 0x8c, 0xdf, 0xd7, 0x60, 0x25, 0xc5, 0xc6, 0xe2, 0xba, + 0x7c, 0x11, 0x20, 0x24, 0xb8, 0x63, 0x39, 0xac, 0x23, 0x95, 0x93, 0x08, 0x55, 0xcf, 0x8c, 0x25, + 0x66, 0x5d, 0xa4, 0x33, 0x53, 0x1e, 0x15, 0x9b, 0x9f, 0x24, 0x30, 0x5a, 0xb0, 0xfa, 0xee, 0xc8, + 0xb6, 0xef, 0x11, 0x7a, 0x6b, 0xc2, 0xf8, 0x3d, 0x8b, 0xf8, 0xdb, 0xf8, 0x2d, 0x0d, 0xd6, 0xb2, + 0xbd, 0x9e, 0xf5, 0xb1, 0xfa, 0x1a, 0x14, 0xf8, 0xcd, 0xd9, 0xb4, 0x7c, 0x6c, 0x54, 0x2e, 0x1f, + 0x47, 0x1b, 0xdf, 0x80, 0x8d, 0x98, 0x0f, 0x79, 0x2f, 0x7a, 0xb6, 0xb3, 0xcf, 0xd6, 0x6f, 0x73, + 0x76, 0x88, 0xb3, 0x16, 0x57, 0xaa, 0x38, 0x9f, 0x1c, 0x71, 0x94, 0x02, 0x0a, 0x27, 0x2b, 0xe0, + 0x6f, 0x4b, 0x50, 0xda, 0x4b, 0xb6, 0x7d, 0xc9, 0x8d, 0xd3, 0xe1, 0xac, 0x14, 0xcc, 0xb2, 0x00, + 0xec, 0x77, 0xd0, 0x5b, 0x09, 0xab, 0x81, 0x6f, 0x1f, 0xcb, 0x55, 0xba, 0x9a, 0x5d, 0x50, 0x77, + 0x18, 0x2a, 0xe6, 0x97, 0x35, 0xd0, 0x26, 0x14, 0x02, 0x42, 0x54, 0x1d, 0x5e, 0x4d, 0xd1, 0x1f, + 0x11, 0x12, 0x9a, 0x1c, 0xc3, 0x8f, 0x94, 0x24, 0x1c, 0xc8, 0x23, 0x38, 0xff, 0x8d, 0x6e, 0x40, + 0x39, 0x08, 0x1d, 0x3f, 0x74, 0xe8, 0x84, 0xc7, 0x54, 0xf5, 0xdd, 0xd5, 0x94, 0xf6, 0x07, 0x03, + 0xec, 0x75, 0x8e, 0x42, 0xc7, 0x8c, 0x89, 0xd0, 0xdb, 0xd0, 0x70, 0x22, 0xdf, 0xc5, 0xa9, 0xea, + 0xac, 0xd2, 0x54, 0x75, 0xd6, 0xbe, 0xc2, 0xcb, 0xea, 0x2c, 0x27, 0xd3, 0x46, 0xff, 0x0f, 0xea, + 0x3c, 0xe5, 0xe2, 0xb8, 0xae, 0x65, 0x63, 0xfb, 0x98, 0xc8, 0x4b, 0xe8, 0x9a, 0xe7, 0xd3, 0xbb, + 0x8e, 0xeb, 0xee, 0x31, 0x18, 0x9f, 0xe9, 0x89, 0x67, 0x5b, 0xae, 0xdf, 0x13, 0x05, 0x3c, 0x66, + 0x89, 0xb5, 0x0f, 0xfc, 0x1e, 0xda, 0x02, 0x3d, 0x24, 0xb6, 0x1f, 0x76, 0x78, 0xf5, 0x8f, 0x15, + 0x51, 0x4c, 0x65, 0x05, 0x4f, 0x5d, 0xc0, 0xdb, 0xce, 0x80, 0xb4, 0x28, 0xa6, 0x29, 0xca, 0xc8, + 0xc6, 0x9e, 0xa0, 0xac, 0xa6, 0x29, 0xd9, 0x26, 0xc2, 0x29, 0x5f, 0x66, 0x5a, 0x0f, 0x5c, 0xc7, + 0xc6, 0x16, 0x5b, 0xbd, 0xb2, 0x8c, 0xa7, 0x2a, 0x61, 0xcc, 0x55, 0xa0, 0x6b, 0x50, 0x17, 0xd7, + 0xe4, 0xa4, 0x63, 0x89, 0x2d, 0x65, 0x99, 0x9f, 0xcd, 0x97, 0x15, 0x94, 0xdf, 0xc1, 0xa2, 0x9f, + 0x83, 0x4b, 0x6c, 0xb3, 0x23, 0x63, 0x62, 0x0f, 0xb9, 0x92, 0x3a, 0xc3, 0x50, 0x68, 0x6b, 0xa0, + 0xca, 0xdd, 0x2e, 0x0e, 0xf0, 0xf8, 0x8e, 0xc2, 0xdf, 0x96, 0xe8, 0x77, 0xf9, 0xdd, 0x2f, 0x0e, + 0x02, 0xd7, 0x21, 0xca, 0x9f, 0x34, 0x44, 0x6e, 0x58, 0x02, 0x85, 0x4b, 0xd9, 0x80, 0x12, 0xc5, + 0x51, 0x9f, 0x99, 0x8e, 0x2e, 0xca, 0x11, 0x58, 0x73, 0xbf, 0xc3, 0x37, 0x17, 0x8a, 0x5d, 0x22, + 0x04, 0x58, 0xe1, 0x02, 0x54, 0x38, 0x84, 0xb3, 0xff, 0x1a, 0x20, 0xc6, 0xe8, 0x30, 0xb4, 0x89, + 0xd5, 0x0b, 0xfd, 0x61, 0x60, 0x51, 0xdc, 0x6b, 0x22, 0x6e, 0xc8, 0xba, 0xc2, 0xdc, 0x63, 0x88, + 0x36, 0xee, 0xa1, 0x2f, 0xc3, 0x72, 0xc7, 0x89, 0xfa, 0x56, 0x77, 0xe8, 0xba, 0x96, 0x1f, 0xd0, + 0xe6, 0x2a, 0x9f, 0xe4, 0xb5, 0x78, 0x92, 0x6f, 0x3b, 0x51, 0xff, 0xee, 0xd0, 0x75, 0x0f, 0x03, + 0x6a, 0x56, 0x3b, 0x49, 0x83, 0xe9, 0x9c, 0x6d, 0x62, 0x84, 0x86, 0x13, 0x2b, 0x14, 0x4b, 0xbc, + 0xb9, 0x26, 0x74, 0xee, 0x44, 0x26, 0x03, 0xab, 0x85, 0xff, 0x26, 0x54, 0x71, 0xe0, 0xc4, 0x29, + 0xee, 0xf5, 0x29, 0xf3, 0xbb, 0x79, 0xb4, 0x2f, 0x13, 0xdd, 0x26, 0xe0, 0xc0, 0x49, 0x2e, 0xf6, + 0x1b, 0x22, 0x0b, 0x4e, 0xe3, 0x79, 0xb8, 0xc8, 0xe7, 0xa1, 0x1e, 0x83, 0xc5, 0x44, 0xfc, 0x3c, + 0x88, 0xc2, 0x6a, 0x4b, 0x79, 0x97, 0x0d, 0xbe, 0x32, 0xd6, 0x77, 0x54, 0xb9, 0x75, 0x9b, 0xfd, + 0x55, 0x2e, 0xa6, 0x46, 0x53, 0xad, 0x77, 0x0a, 0xe5, 0x82, 0x5e, 0x64, 0xd3, 0x8f, 0x3b, 0xd6, + 0x87, 0x43, 0x3f, 0x1c, 0x0e, 0x8c, 0x7f, 0xcd, 0x41, 0x59, 0x39, 0xed, 0x99, 0xd2, 0x1b, 0x6d, + 0xb6, 0xf4, 0xe6, 0x65, 0xa8, 0xf1, 0xba, 0x82, 0x6c, 0x9e, 0xbf, 0xca, 0x60, 0x4a, 0x94, 0x59, + 0x67, 0x92, 0xae, 0x7b, 0x28, 0x64, 0xeb, 0x1e, 0xd2, 0x75, 0xa0, 0xc5, 0x6c, 0x1d, 0xe8, 0x96, + 0x2c, 0x61, 0xa0, 0x93, 0x80, 0xc8, 0x55, 0x5c, 0x8d, 0xd5, 0x78, 0x18, 0x88, 0xe2, 0x85, 0xf6, + 0x24, 0x20, 0xe8, 0x55, 0x40, 0x9c, 0x32, 0x5b, 0x30, 0x55, 0xe2, 0xdd, 0x35, 0x18, 0xe6, 0x6e, + 0xaa, 0x68, 0x6a, 0x5e, 0x59, 0x68, 0x79, 0x6e, 0x59, 0xe8, 0x4c, 0xad, 0x5c, 0x65, 0xb6, 0x56, + 0x6e, 0xaa, 0x74, 0x14, 0x66, 0x4a, 0x47, 0x8d, 0x8f, 0x0a, 0x50, 0x56, 0xa9, 0xf6, 0xd4, 0xce, + 0xa9, 0x3d, 0x63, 0xe7, 0x44, 0x2f, 0x30, 0x77, 0x4a, 0xc3, 0x09, 0x7e, 0xec, 0x12, 0xe9, 0xad, + 0x13, 0x00, 0xf3, 0xe3, 0xf8, 0xb1, 0x1f, 0x52, 0x99, 0xa4, 0x11, 0x0d, 0xb4, 0x0b, 0x65, 0xdb, + 0xf7, 0xba, 0xae, 0x63, 0xd3, 0x99, 0xab, 0xc6, 0xf7, 0x42, 0x87, 0x32, 0x4b, 0xe0, 0x58, 0x33, + 0xa6, 0x63, 0x06, 0x85, 0x5d, 0x66, 0x12, 0x13, 0x59, 0xa0, 0x53, 0x94, 0x06, 0x15, 0x5b, 0xac, + 0xc0, 0xf2, 0x1a, 0x1d, 0xb3, 0x86, 0x53, 0x2d, 0xf4, 0x3a, 0x94, 0x55, 0xd5, 0xff, 0x4c, 0x91, + 0xc9, 0x6d, 0x89, 0x30, 0x63, 0x12, 0x74, 0x1b, 0x56, 0x62, 0x65, 0x5a, 0x64, 0x1c, 0x38, 0x21, + 0xe9, 0xf0, 0x69, 0xaa, 0xee, 0x36, 0x33, 0xfe, 0x99, 0xa9, 0xf6, 0x8e, 0xc0, 0x9b, 0x0d, 0x3b, + 0x0b, 0x60, 0x8b, 0x98, 0x99, 0x4c, 0x92, 0xe0, 0x2e, 0xf3, 0x1e, 0xd6, 0xd2, 0x77, 0x44, 0x0f, + 0x65, 0xb2, 0xdb, 0xac, 0xd2, 0xa4, 0x81, 0xee, 0xc3, 0x6a, 0x32, 0x3e, 0xf5, 0x7d, 0xcb, 0xc5, + 0x61, 0x4f, 0x54, 0x52, 0x56, 0x77, 0x2f, 0xcd, 0x70, 0xd0, 0xf6, 0xfd, 0x03, 0x46, 0x60, 0xea, + 0xf6, 0x14, 0x04, 0xed, 0x81, 0x9e, 0x54, 0xf3, 0x76, 0xb1, 0xe3, 0x92, 0x0e, 0x77, 0xd6, 0x69, + 0x41, 0xe2, 0x72, 0xde, 0xbb, 0x1c, 0x6f, 0x26, 0xf5, 0xbf, 0x02, 0x60, 0x7c, 0xac, 0xc1, 0x72, + 0x66, 0x56, 0x32, 0x81, 0x80, 0x96, 0x0d, 0x03, 0xaf, 0x42, 0x55, 0x4d, 0x59, 0x12, 0x26, 0x80, + 0x02, 0xb5, 0xa3, 0x39, 0xcb, 0xae, 0x09, 0x25, 0xb9, 0x74, 0x45, 0x15, 0xa4, 0xa9, 0x9a, 0xcc, + 0x6b, 0xc6, 0x9d, 0x25, 0xe6, 0x2d, 0xd6, 0x9f, 0xae, 0x30, 0x71, 0xe1, 0xee, 0x26, 0xd4, 0xd2, + 0x36, 0xa0, 0x46, 0xd2, 0x92, 0x80, 0xec, 0x4f, 0x35, 0x28, 0xab, 0xf9, 0x4e, 0x57, 0x96, 0x69, + 0x99, 0xca, 0x32, 0xe5, 0x06, 0x92, 0x68, 0x8e, 0x13, 0xb2, 0x23, 0xc4, 0x36, 0xac, 0x28, 0x2b, + 0x61, 0x68, 0xeb, 0x18, 0x47, 0xc7, 0xf2, 0x76, 0xb0, 0xa1, 0x10, 0x0f, 0xc8, 0xe4, 0x3e, 0x8e, + 0x8e, 0xd1, 0x97, 0x00, 0x78, 0x91, 0xac, 0x7d, 0x8c, 0x1d, 0x4f, 0x46, 0xe6, 0x17, 0x77, 0xe2, + 0xd7, 0x27, 0xef, 0x61, 0x87, 0xde, 0xf5, 0xc3, 0x3b, 0x1e, 0xf3, 0xc9, 0x15, 0x46, 0xb9, 0xc7, + 0x08, 0x8d, 0xef, 0x6a, 0xd0, 0x98, 0xb2, 0xad, 0x93, 0xf4, 0xbd, 0x03, 0xab, 0x98, 0x52, 0x32, + 0x08, 0x98, 0x43, 0x4e, 0x74, 0x24, 0xf4, 0xbe, 0x12, 0xa3, 0x62, 0x47, 0x30, 0xab, 0xfe, 0x19, + 0xf7, 0x51, 0x98, 0x71, 0x1f, 0xc6, 0x3e, 0x54, 0x53, 0xd6, 0xfa, 0x8c, 0xf9, 0x3f, 0xb1, 0xa0, + 0xcf, 0xb8, 0x01, 0xfa, 0xb4, 0xe1, 0x66, 0x8b, 0x95, 0xb4, 0xa9, 0x62, 0xa5, 0x1f, 0x6a, 0xd0, + 0x98, 0xb2, 0xd1, 0x93, 0x18, 0x98, 0x4d, 0x83, 0x7f, 0x01, 0x2a, 0xb1, 0x49, 0x73, 0xc1, 0xeb, + 0xbb, 0x68, 0xd6, 0xfa, 0xcd, 0x84, 0x88, 0x4d, 0x33, 0xf7, 0x31, 0x8e, 0xd7, 0x9b, 0xae, 0x2e, + 0x6c, 0x28, 0x84, 0xaa, 0x2f, 0x7c, 0x0d, 0x50, 0x4c, 0x3b, 0x63, 0xa3, 0x0a, 0x13, 0x2b, 0xf2, + 0xfb, 0x1a, 0x00, 0x0b, 0x90, 0x44, 0xf5, 0x04, 0xfa, 0x3c, 0xac, 0x70, 0x1b, 0x79, 0x82, 0x5d, + 0x57, 0xc4, 0x53, 0x03, 0x21, 0x50, 0xde, 0xac, 0x33, 0xc4, 0x7b, 0xd8, 0x75, 0x19, 0xf9, 0xbb, + 0x11, 0xba, 0x01, 0x6b, 0x41, 0xe8, 0xdb, 0x24, 0x8a, 0xb2, 0xd4, 0x39, 0x4e, 0xbd, 0x22, 0x71, + 0xa9, 0x0f, 0x76, 0x60, 0xad, 0x3f, 0xe2, 0xe1, 0x48, 0xf6, 0x83, 0x3c, 0xff, 0x40, 0xef, 0x8f, + 0x58, 0x60, 0x92, 0xd0, 0x1b, 0x1f, 0x40, 0x99, 0x05, 0x64, 0x7c, 0x87, 0x5d, 0x83, 0x22, 0xf5, + 0x29, 0x76, 0x25, 0x2f, 0xa2, 0xc1, 0x5c, 0xbd, 0x1c, 0x86, 0x74, 0xe4, 0xb8, 0x09, 0x20, 0x3e, + 0x8c, 0x3d, 0x9e, 0x50, 0xa2, 0x46, 0xe1, 0x87, 0xb1, 0x5b, 0x0c, 0x60, 0xfc, 0xba, 0x06, 0xc0, + 0xfa, 0x97, 0x92, 0x5f, 0x87, 0x22, 0x7f, 0x21, 0x30, 0xb3, 0xc1, 0x28, 0x1e, 0x4c, 0x81, 0x67, + 0x11, 0x7e, 0x5c, 0x5f, 0x3b, 0x97, 0x8e, 0xa3, 0x19, 0x59, 0x07, 0x53, 0x3c, 0x73, 0x12, 0x4a, + 0xc8, 0x18, 0xda, 0xf8, 0x61, 0x5e, 0xbc, 0xcd, 0x11, 0x5c, 0x3c, 0xda, 0x45, 0xaf, 0x03, 0x8a, + 0x45, 0x50, 0xd1, 0x82, 0xb2, 0xa9, 0x95, 0x18, 0x23, 0x63, 0x86, 0x08, 0xbd, 0x05, 0x1b, 0xb3, + 0xe4, 0xe9, 0xe7, 0x21, 0xeb, 0x33, 0xdf, 0xf0, 0x20, 0xe1, 0x1a, 0xd4, 0xb9, 0x0e, 0x93, 0x21, + 0x64, 0xb5, 0x17, 0x87, 0xc6, 0xdd, 0x7f, 0x15, 0x5e, 0x08, 0x59, 0xf8, 0xd4, 0x79, 0x6c, 0x75, + 0x78, 0x12, 0xda, 0x8a, 0xfa, 0x4e, 0x10, 0xf0, 0xa5, 0x3d, 0xf4, 0xa8, 0x74, 0x35, 0x97, 0x24, + 0x8d, 0xc8, 0x53, 0xb7, 0x04, 0xc5, 0x1e, 0x23, 0x60, 0xf1, 0xaf, 0xea, 0x80, 0xf9, 0xa7, 0xec, + 0xd7, 0xc2, 0x82, 0x2f, 0x4a, 0x82, 0x07, 0x64, 0x92, 0xf9, 0xf4, 0x6d, 0x78, 0x51, 0x7d, 0xfa, + 0x98, 0x3b, 0x38, 0x7e, 0x3c, 0xb0, 0x8e, 0x99, 0x0b, 0xe3, 0x9f, 0x17, 0x33, 0x83, 0xdf, 0x62, + 0x34, 0xfc, 0xb4, 0x70, 0xdf, 0xa1, 0xa2, 0x87, 0xff, 0x0f, 0xcd, 0x6c, 0x0f, 0xdc, 0x1e, 0xc4, + 0xc7, 0xe2, 0xa5, 0xc1, 0x7a, 0xfa, 0x63, 0x66, 0x7f, 0xe2, 0xc3, 0x2f, 0xc1, 0xc6, 0x9c, 0x0f, + 0x99, 0x21, 0xc9, 0xe8, 0x68, 0x6d, 0xfa, 0x3b, 0x66, 0x53, 0xc6, 0x6f, 0x6a, 0x50, 0x4d, 0x55, + 0x26, 0xb1, 0x90, 0x96, 0x1b, 0xb9, 0x28, 0x64, 0x92, 0x96, 0x95, 0x84, 0xb4, 0xc9, 0xba, 0x33, + 0x81, 0x26, 0x6b, 0xf0, 0x4d, 0xa8, 0xf2, 0xf3, 0x89, 0xfc, 0x2a, 0x37, 0xf5, 0x55, 0x62, 0x2d, + 0x26, 0x44, 0xf1, 0x6f, 0x51, 0xcb, 0x24, 0x22, 0x55, 0xe3, 0xd7, 0x34, 0x58, 0xce, 0x54, 0x48, + 0x2d, 0xc8, 0xc9, 0x2f, 0x40, 0x3d, 0xc5, 0x89, 0x35, 0xda, 0x95, 0xcc, 0xac, 0xcf, 0x61, 0xe6, + 0xd1, 0xae, 0x59, 0x8b, 0x52, 0x2d, 0xe3, 0x7d, 0x58, 0x12, 0x59, 0xf2, 0xa4, 0x92, 0x42, 0x7b, + 0x46, 0xe5, 0xcd, 0x29, 0x2f, 0x93, 0x8d, 0x6f, 0x6b, 0x50, 0x56, 0x25, 0x8c, 0xe8, 0x0a, 0xe4, + 0xfc, 0x80, 0x77, 0x3d, 0x15, 0xe7, 0xe6, 0xfc, 0xe0, 0xd4, 0xd7, 0xd3, 0x19, 0x97, 0x5c, 0x38, + 0x85, 0x4b, 0x36, 0xfe, 0x47, 0x83, 0x0a, 0x3b, 0xd4, 0xf3, 0x40, 0x04, 0x5d, 0x85, 0x02, 0x0f, + 0xb7, 0xe7, 0xb0, 0xc1, 0x11, 0x27, 0x25, 0xaa, 0xae, 0xcc, 0xbc, 0xc9, 0x48, 0xbd, 0xc7, 0xb8, + 0x0a, 0xd5, 0xe8, 0xd8, 0x0f, 0xa9, 0x95, 0x7a, 0x95, 0x61, 0x02, 0x07, 0xf1, 0x97, 0x29, 0xcc, + 0x01, 0x1c, 0xe3, 0xc8, 0xf2, 0x47, 0x24, 0x74, 0x31, 0x5f, 0x5b, 0xaa, 0x42, 0x5c, 0x5e, 0x21, + 0xaf, 0x1f, 0xe3, 0xe8, 0x30, 0xc6, 0xaa, 0x3a, 0x33, 0xb4, 0x09, 0x35, 0xf6, 0x5d, 0xcf, 0xb6, + 0xba, 0xfc, 0xa5, 0x8a, 0xb8, 0x42, 0x81, 0x63, 0x1c, 0xdd, 0xb3, 0xef, 0x32, 0x08, 0x63, 0x39, + 0xc6, 0x0a, 0xab, 0x2f, 0xf5, 0x04, 0xca, 0xf8, 0x8a, 0x90, 0x5d, 0x70, 0x70, 0xc2, 0xde, 0x17, + 0x2b, 0x3b, 0x97, 0x9e, 0xbe, 0x4f, 0x72, 0x50, 0x66, 0x9f, 0xf3, 0x83, 0xd1, 0x4f, 0xa2, 0xb9, + 0x54, 0xa0, 0x96, 0xcf, 0x06, 0x6a, 0xcf, 0x54, 0xdb, 0x6c, 0xfd, 0xc1, 0x69, 0xde, 0x22, 0xa5, + 0x4f, 0x5d, 0xa5, 0xe9, 0x53, 0xd7, 0x69, 0x8f, 0x47, 0x53, 0x47, 0x9f, 0xca, 0xec, 0xab, 0xb9, + 0xab, 0x50, 0x8d, 0xdf, 0x00, 0x50, 0x71, 0x38, 0x2a, 0x98, 0xa0, 0x40, 0x6d, 0x7e, 0x45, 0x59, + 0x56, 0x19, 0xa5, 0x78, 0x43, 0xd2, 0xe6, 0xa4, 0x9c, 0x78, 0x4a, 0x5c, 0x6c, 0x48, 0xdb, 0xb0, + 0xc4, 0x37, 0x30, 0x95, 0xfb, 0x46, 0x19, 0x42, 0x6e, 0xc6, 0xa6, 0xa4, 0x60, 0xb4, 0xf2, 0xad, + 0x4f, 0x7e, 0x0e, 0x2d, 0xd7, 0xa0, 0x7a, 0xff, 0x63, 0x7c, 0x11, 0x4a, 0xb2, 0xb8, 0x8c, 0x2b, + 0x75, 0xec, 0x49, 0x23, 0x60, 0x3f, 0xd1, 0x45, 0x58, 0x8a, 0xf8, 0x3b, 0x01, 0x39, 0x75, 0xb2, + 0x65, 0xbc, 0xcd, 0xcf, 0x76, 0x3c, 0x0b, 0x9b, 0x4d, 0xfc, 0x6b, 0x4f, 0xbf, 0xf6, 0xca, 0x65, + 0xae, 0xbd, 0xfe, 0x4e, 0x03, 0x38, 0x20, 0xb8, 0x43, 0x42, 0x3e, 0xf4, 0x89, 0x49, 0xb4, 0x0d, + 0x28, 0x05, 0x84, 0x84, 0x0c, 0x25, 0xd9, 0x60, 0xcd, 0xfd, 0x4e, 0x9c, 0x03, 0xcb, 0xa7, 0x72, + 0x60, 0xd3, 0x19, 0xb7, 0xc2, 0x29, 0x33, 0x6e, 0x6f, 0xc8, 0x70, 0x83, 0x49, 0x48, 0xe4, 0x61, + 0x30, 0xd1, 0x1b, 0xdb, 0x23, 0x5a, 0x0c, 0x23, 0x42, 0x10, 0xfe, 0xd3, 0xd8, 0x87, 0x4a, 0x0c, + 0x9f, 0x4d, 0xf7, 0x68, 0xf3, 0xd3, 0x3d, 0xbc, 0xe8, 0x8d, 0x26, 0x0a, 0xc5, 0x5d, 0xd2, 0x8e, + 0x8c, 0x16, 0x20, 0x71, 0x4f, 0xc5, 0x55, 0xa2, 0x72, 0x2a, 0xaf, 0x27, 0x99, 0x78, 0x51, 0x02, + 0x9e, 0xb8, 0xfc, 0x44, 0x77, 0x71, 0x3a, 0x1e, 0xd5, 0x21, 0x17, 0x77, 0x9c, 0xa3, 0x91, 0xf1, + 0x55, 0x58, 0xcd, 0x74, 0x2a, 0xd3, 0xa7, 0xcd, 0x6c, 0xaf, 0x85, 0xa7, 0x77, 0x70, 0x1b, 0x50, + 0x8b, 0xfa, 0x21, 0x69, 0x31, 0x26, 0x5b, 0x8a, 0xab, 0x1d, 0xa8, 0xb0, 0x58, 0x80, 0x27, 0xdf, + 0xe7, 0xed, 0x09, 0x22, 0x39, 0x5f, 0xee, 0xcb, 0x5f, 0xc6, 0x0e, 0xac, 0x66, 0x7a, 0x91, 0x6c, + 0xa4, 0x74, 0xa1, 0x65, 0x74, 0x61, 0xf3, 0x0b, 0xed, 0x7b, 0x84, 0x19, 0x50, 0xbb, 0x7d, 0x70, + 0x3e, 0xc5, 0x69, 0xbf, 0xa7, 0xf1, 0x4b, 0xe6, 0xd4, 0x28, 0xe7, 0x90, 0x5c, 0x4e, 0x1e, 0xbc, + 0x70, 0x17, 0x75, 0x62, 0x79, 0xda, 0x3f, 0x8b, 0x3a, 0xae, 0xbd, 0x9b, 0xad, 0xf3, 0xac, 0xe3, + 0x7a, 0x8d, 0x85, 0xa7, 0x64, 0xe4, 0xf8, 0xc3, 0x28, 0xf5, 0x36, 0x49, 0xf0, 0xa2, 0x2b, 0x4c, + 0xfc, 0x32, 0xe9, 0x1a, 0xd4, 0x63, 0x6a, 0xd1, 0x99, 0xa8, 0xed, 0x5d, 0x56, 0xd0, 0x47, 0xa9, + 0xe2, 0xb0, 0xa5, 0xe9, 0xe2, 0xb0, 0x52, 0x2c, 0xb9, 0xf1, 0x03, 0x51, 0xcc, 0xc2, 0x85, 0x3b, + 0x6b, 0x3d, 0x37, 0xa1, 0x14, 0x0d, 0x6d, 0x9b, 0xc8, 0x6b, 0x99, 0xb2, 0xa9, 0x9a, 0xe7, 0x22, + 0xac, 0x71, 0x1b, 0x2e, 0xde, 0x23, 0xfc, 0xd9, 0x2a, 0x3b, 0x71, 0xf3, 0x05, 0xf8, 0xd9, 0xe7, + 0xcb, 0xf8, 0x9e, 0x06, 0x1b, 0x33, 0xdd, 0x9c, 0xb5, 0x66, 0xbe, 0xc0, 0x9c, 0x2f, 0xe5, 0xbb, + 0x54, 0xfe, 0xc4, 0x74, 0x81, 0x22, 0x33, 0xfe, 0x41, 0xd4, 0xce, 0xec, 0xf9, 0xf2, 0xd4, 0xe1, + 0x87, 0x0b, 0x16, 0x42, 0xd8, 0x7e, 0x10, 0x5a, 0x1e, 0x1e, 0xa8, 0x14, 0x5e, 0x99, 0x01, 0x1e, + 0xe2, 0x01, 0xdf, 0x68, 0x39, 0x52, 0x1e, 0x5c, 0xac, 0x90, 0x7c, 0x28, 0x97, 0x65, 0x9d, 0xc1, + 0x55, 0x92, 0x98, 0x7c, 0x98, 0xba, 0x01, 0x2c, 0x3c, 0xab, 0x2a, 0x05, 0xc9, 0xd3, 0x9a, 0x98, + 0x31, 0x71, 0x34, 0x1b, 0xf2, 0xda, 0x9b, 0x8c, 0x28, 0x67, 0xad, 0x60, 0x94, 0x3a, 0x24, 0xaa, + 0x61, 0x3f, 0x16, 0x35, 0x89, 0xdc, 0xf1, 0x46, 0xc3, 0xc1, 0x22, 0xfa, 0xfb, 0x32, 0x54, 0xb0, + 0xdb, 0xf3, 0x43, 0x87, 0x1e, 0x0f, 0xf8, 0x80, 0xf5, 0xdd, 0xcb, 0x09, 0xb5, 0xec, 0xf8, 0xa6, + 0xa2, 0x30, 0x13, 0xe2, 0xcf, 0x72, 0x69, 0xfa, 0x57, 0xa2, 0x6e, 0x28, 0xe1, 0xf3, 0xac, 0x95, + 0x73, 0x19, 0xca, 0xb6, 0xec, 0x3c, 0x0e, 0x8b, 0x65, 0x9b, 0x59, 0x88, 0x38, 0xbe, 0xf6, 0x47, + 0xf1, 0x6b, 0x32, 0x0e, 0x78, 0x30, 0xe2, 0xe1, 0x93, 0x40, 0x8a, 0x93, 0xbf, 0x88, 0xf1, 0x80, + 0x83, 0xc4, 0xd1, 0x7f, 0x0c, 0xb5, 0x3d, 0x7f, 0x10, 0x60, 0x9b, 0x8a, 0xf1, 0x2d, 0xd8, 0x20, + 0x61, 0xc8, 0xa2, 0x36, 0x06, 0xb3, 0x1c, 0xcf, 0x0a, 0x42, 0xbf, 0x17, 0x92, 0x28, 0x92, 0xdc, + 0xbf, 0x92, 0xce, 0x71, 0xc6, 0xdf, 0xc9, 0xdf, 0xfb, 0xde, 0x91, 0xa4, 0xbe, 0x7f, 0xc1, 0x5c, + 0x23, 0xe1, 0x2c, 0xfc, 0x56, 0x49, 0x0a, 0x68, 0x5c, 0x85, 0x17, 0x4f, 0xec, 0xc1, 0xf8, 0x80, + 0x3f, 0x2e, 0x63, 0x40, 0x35, 0xf1, 0x75, 0xc8, 0xc9, 0x90, 0xa6, 0x66, 0xe6, 0x9c, 0xce, 0xc9, + 0x55, 0x42, 0x2f, 0x89, 0x97, 0x19, 0xd9, 0x4a, 0xa1, 0xca, 0x00, 0x8f, 0xef, 0x88, 0xa8, 0xe9, + 0x13, 0x91, 0xcc, 0x13, 0xfd, 0xcb, 0x09, 0x7b, 0x35, 0x7b, 0x3c, 0x5b, 0x9f, 0x2b, 0xab, 0x9a, + 0x94, 0xcf, 0xc1, 0x32, 0x3b, 0x36, 0x84, 0x64, 0x80, 0x1d, 0xcf, 0xf1, 0x7a, 0xb2, 0xc2, 0x85, + 0x9d, 0x25, 0x4c, 0x05, 0x43, 0x3b, 0x3c, 0x5f, 0xcc, 0xbe, 0x25, 0x1d, 0x6b, 0xba, 0xa8, 0x63, + 0x25, 0x46, 0xb5, 0x14, 0xd7, 0xdb, 0x90, 0x00, 0x63, 0xde, 0x45, 0xcc, 0xde, 0x88, 0x11, 0x42, + 0x82, 0xed, 0xeb, 0x00, 0xc9, 0x55, 0x10, 0x5a, 0x82, 0xdc, 0xa3, 0x37, 0xf4, 0x0b, 0xa8, 0x02, + 0xc5, 0x47, 0x6f, 0xb4, 0xdb, 0x07, 0xba, 0xc6, 0x41, 0xbb, 0x7a, 0x6e, 0xfb, 0x55, 0x80, 0xe4, + 0xca, 0x12, 0x01, 0x2c, 0x3d, 0xf4, 0xc3, 0x01, 0x76, 0xf5, 0x0b, 0xa8, 0x04, 0xf9, 0x03, 0xff, + 0x89, 0xae, 0xa1, 0x32, 0x14, 0xee, 0x3b, 0xbd, 0x63, 0x3d, 0xb7, 0x7d, 0x03, 0xea, 0xd9, 0x7b, + 0x4a, 0xd6, 0x4d, 0x6b, 0x5f, 0xbf, 0xc0, 0xfe, 0x9a, 0x7b, 0xba, 0x86, 0x96, 0xa1, 0x62, 0xee, + 0x89, 0xb7, 0xaf, 0x2d, 0x3d, 0xb7, 0xfd, 0x08, 0xaa, 0xa9, 0x3b, 0x2f, 0xb4, 0x06, 0xfa, 0x43, + 0x9f, 0xde, 0x74, 0x5d, 0xff, 0x09, 0xe9, 0x1c, 0x7a, 0x0c, 0xac, 0x5f, 0x40, 0x1b, 0xb0, 0x1a, + 0x83, 0x6e, 0xba, 0x03, 0x3f, 0xa2, 0x1c, 0xa1, 0xa1, 0x26, 0xac, 0xa5, 0x10, 0x3c, 0x45, 0xcc, + 0x31, 0xb9, 0x6d, 0x1b, 0x72, 0x87, 0x01, 0xe3, 0xf0, 0x68, 0x48, 0x05, 0xab, 0xb7, 0x89, 0x2b, + 0x58, 0x65, 0xbe, 0x5e, 0xcf, 0xa1, 0x1a, 0x94, 0xd5, 0x21, 0x4e, 0xcf, 0x33, 0xb9, 0xf6, 0x3d, + 0x76, 0x26, 0xd5, 0x0b, 0x68, 0x15, 0x1a, 0x53, 0x0f, 0x76, 0xf5, 0x22, 0x42, 0x50, 0xe7, 0x5c, + 0xab, 0x6d, 0x2a, 0xd2, 0x97, 0xb6, 0x77, 0xa0, 0x12, 0x9f, 0x69, 0x59, 0xcf, 0x0f, 0x7d, 0x8f, + 0x08, 0x25, 0x72, 0x12, 0x5d, 0x63, 0x83, 0xa8, 0x0f, 0x84, 0x76, 0xb2, 0xff, 0x63, 0x83, 0xf1, + 0x75, 0xd8, 0xed, 0xea, 0x17, 0xd8, 0xd7, 0x77, 0x31, 0xff, 0x04, 0x60, 0xa9, 0x45, 0x43, 0xc7, + 0x66, 0x1f, 0xfc, 0x91, 0x06, 0x4b, 0xe2, 0x61, 0xad, 0xe8, 0x49, 0xfc, 0xd6, 0x2f, 0xa0, 0x75, + 0x58, 0x69, 0xb7, 0x0f, 0x44, 0x1a, 0x39, 0x96, 0x82, 0xeb, 0x83, 0xb1, 0xab, 0x86, 0x8c, 0x31, + 0x39, 0xf6, 0xc1, 0xbb, 0x71, 0xde, 0xb7, 0x75, 0x34, 0x8c, 0x8e, 0x49, 0x47, 0xcf, 0xa3, 0x4d, + 0x78, 0x21, 0xee, 0x67, 0xce, 0xb3, 0x7d, 0xbd, 0x80, 0x2e, 0xc1, 0x7a, 0xba, 0xcb, 0xdb, 0xfe, + 0x43, 0x9f, 0x1e, 0x3b, 0x5e, 0x4f, 0x2f, 0x6e, 0x5f, 0x83, 0xd2, 0x9d, 0x31, 0x0d, 0xf1, 0x61, + 0x20, 0x84, 0xf7, 0x03, 0xfd, 0x02, 0xd2, 0xa1, 0xc6, 0x62, 0xf1, 0x43, 0xb7, 0xc3, 0xb7, 0x69, + 0x5d, 0xdb, 0x36, 0x60, 0x65, 0xc6, 0x57, 0x32, 0x33, 0xd8, 0x0b, 0xed, 0xb7, 0xde, 0xb4, 0x7e, + 0xc9, 0x0f, 0xf5, 0x0b, 0xb7, 0x5e, 0xf9, 0xa7, 0x3f, 0x2b, 0x6b, 0x3f, 0xf8, 0xf4, 0x25, 0xed, + 0xc7, 0x9f, 0xbe, 0xa4, 0xfd, 0xdb, 0xa7, 0x2f, 0x69, 0xdf, 0xff, 0x8f, 0x97, 0x2e, 0x80, 0xee, + 0x87, 0xbd, 0x1d, 0xea, 0xf4, 0x47, 0x3b, 0xfd, 0x11, 0xff, 0x2f, 0x4e, 0x8f, 0x97, 0xf8, 0x9f, + 0x2f, 0xfe, 0x6f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xe6, 0x01, 0xac, 0x50, 0x49, 0x4a, 0x00, 0x00, } func (m *GetRequest) Marshal() (dAtA []byte, err error) { @@ -15420,76 +15682,271 @@ func (m *RawChecksumResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { return len(dAtA) - i, nil } -func encodeVarintKvrpcpb(dAtA []byte, offset int, v uint64) int { - offset -= sovKvrpcpb(v) - base := offset - for v >= 1<<7 { - dAtA[offset] = uint8(v&0x7f | 0x80) - v >>= 7 - offset++ +func (m *CompactError) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err } - dAtA[offset] = uint8(v) - return base + return dAtA[:n], nil } -func (m *GetRequest) Size() (n int) { - if m == nil { - return 0 - } + +func (m *CompactError) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *CompactError) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i var l int _ = l - if m.Context != nil { - l = m.Context.Size() - n += 1 + l + sovKvrpcpb(uint64(l)) + if m.XXX_unrecognized != nil { + i -= len(m.XXX_unrecognized) + copy(dAtA[i:], m.XXX_unrecognized) } - l = len(m.Key) - if l > 0 { - n += 1 + l + sovKvrpcpb(uint64(l)) + if m.Error != nil { + { + size := m.Error.Size() + i -= size + if _, err := m.Error.MarshalTo(dAtA[i:]); err != nil { + return 0, err + } + } } - if m.Version != 0 { - n += 1 + sovKvrpcpb(uint64(m.Version)) + return len(dAtA) - i, nil +} + +func (m *CompactError_ErrCompactInProgress) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *CompactError_ErrCompactInProgress) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + if m.ErrCompactInProgress != nil { + { + size, err := m.ErrCompactInProgress.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintKvrpcpb(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0xa } - if m.XXX_unrecognized != nil { - n += len(m.XXX_unrecognized) + return len(dAtA) - i, nil +} +func (m *CompactErrorCompactInProgress) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err } - return n + return dAtA[:n], nil } -func (m *GetResponse) Size() (n int) { - if m == nil { - return 0 - } +func (m *CompactErrorCompactInProgress) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *CompactErrorCompactInProgress) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i var l int _ = l - if m.RegionError != nil { - l = m.RegionError.Size() - n += 1 + l + sovKvrpcpb(uint64(l)) - } - if m.Error != nil { - l = m.Error.Size() - n += 1 + l + sovKvrpcpb(uint64(l)) - } - l = len(m.Value) - if l > 0 { - n += 1 + l + sovKvrpcpb(uint64(l)) - } - if m.NotFound { - n += 2 - } - if m.ExecDetailsV2 != nil { - l = m.ExecDetailsV2.Size() - n += 1 + l + sovKvrpcpb(uint64(l)) - } if m.XXX_unrecognized != nil { - n += len(m.XXX_unrecognized) + i -= len(m.XXX_unrecognized) + copy(dAtA[i:], m.XXX_unrecognized) } - return n + return len(dAtA) - i, nil } -func (m *ScanRequest) Size() (n int) { - if m == nil { - return 0 - } - var l int +func (m *CompactRequest) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *CompactRequest) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *CompactRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.XXX_unrecognized != nil { + i -= len(m.XXX_unrecognized) + copy(dAtA[i:], m.XXX_unrecognized) + } + if len(m.MaxEndKey) > 0 { + i -= len(m.MaxEndKey) + copy(dAtA[i:], m.MaxEndKey) + i = encodeVarintKvrpcpb(dAtA, i, uint64(len(m.MaxEndKey))) + i-- + dAtA[i] = 0x1a + } + if len(m.StartKey) > 0 { + i -= len(m.StartKey) + copy(dAtA[i:], m.StartKey) + i = encodeVarintKvrpcpb(dAtA, i, uint64(len(m.StartKey))) + i-- + dAtA[i] = 0x12 + } + if len(m.Id) > 0 { + i -= len(m.Id) + copy(dAtA[i:], m.Id) + i = encodeVarintKvrpcpb(dAtA, i, uint64(len(m.Id))) + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + +func (m *CompactResponse) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *CompactResponse) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *CompactResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.XXX_unrecognized != nil { + i -= len(m.XXX_unrecognized) + copy(dAtA[i:], m.XXX_unrecognized) + } + if len(m.CompactedEndKey) > 0 { + i -= len(m.CompactedEndKey) + copy(dAtA[i:], m.CompactedEndKey) + i = encodeVarintKvrpcpb(dAtA, i, uint64(len(m.CompactedEndKey))) + i-- + dAtA[i] = 0x22 + } + if len(m.CompactedStartKey) > 0 { + i -= len(m.CompactedStartKey) + copy(dAtA[i:], m.CompactedStartKey) + i = encodeVarintKvrpcpb(dAtA, i, uint64(len(m.CompactedStartKey))) + i-- + dAtA[i] = 0x1a + } + if m.HasRemaining { + i-- + if m.HasRemaining { + dAtA[i] = 1 + } else { + dAtA[i] = 0 + } + i-- + dAtA[i] = 0x10 + } + if m.Error != nil { + { + size, err := m.Error.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintKvrpcpb(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + +func encodeVarintKvrpcpb(dAtA []byte, offset int, v uint64) int { + offset -= sovKvrpcpb(v) + base := offset + for v >= 1<<7 { + dAtA[offset] = uint8(v&0x7f | 0x80) + v >>= 7 + offset++ + } + dAtA[offset] = uint8(v) + return base +} +func (m *GetRequest) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.Context != nil { + l = m.Context.Size() + n += 1 + l + sovKvrpcpb(uint64(l)) + } + l = len(m.Key) + if l > 0 { + n += 1 + l + sovKvrpcpb(uint64(l)) + } + if m.Version != 0 { + n += 1 + sovKvrpcpb(uint64(m.Version)) + } + if m.XXX_unrecognized != nil { + n += len(m.XXX_unrecognized) + } + return n +} + +func (m *GetResponse) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.RegionError != nil { + l = m.RegionError.Size() + n += 1 + l + sovKvrpcpb(uint64(l)) + } + if m.Error != nil { + l = m.Error.Size() + n += 1 + l + sovKvrpcpb(uint64(l)) + } + l = len(m.Value) + if l > 0 { + n += 1 + l + sovKvrpcpb(uint64(l)) + } + if m.NotFound { + n += 2 + } + if m.ExecDetailsV2 != nil { + l = m.ExecDetailsV2.Size() + n += 1 + l + sovKvrpcpb(uint64(l)) + } + if m.XXX_unrecognized != nil { + n += len(m.XXX_unrecognized) + } + return n +} + +func (m *ScanRequest) Size() (n int) { + if m == nil { + return 0 + } + var l int _ = l if m.Context != nil { l = m.Context.Size() @@ -18375,6 +18832,96 @@ func (m *RawChecksumResponse) Size() (n int) { return n } +func (m *CompactError) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.Error != nil { + n += m.Error.Size() + } + if m.XXX_unrecognized != nil { + n += len(m.XXX_unrecognized) + } + return n +} + +func (m *CompactError_ErrCompactInProgress) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.ErrCompactInProgress != nil { + l = m.ErrCompactInProgress.Size() + n += 1 + l + sovKvrpcpb(uint64(l)) + } + return n +} +func (m *CompactErrorCompactInProgress) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.XXX_unrecognized != nil { + n += len(m.XXX_unrecognized) + } + return n +} + +func (m *CompactRequest) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.Id) + if l > 0 { + n += 1 + l + sovKvrpcpb(uint64(l)) + } + l = len(m.StartKey) + if l > 0 { + n += 1 + l + sovKvrpcpb(uint64(l)) + } + l = len(m.MaxEndKey) + if l > 0 { + n += 1 + l + sovKvrpcpb(uint64(l)) + } + if m.XXX_unrecognized != nil { + n += len(m.XXX_unrecognized) + } + return n +} + +func (m *CompactResponse) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.Error != nil { + l = m.Error.Size() + n += 1 + l + sovKvrpcpb(uint64(l)) + } + if m.HasRemaining { + n += 2 + } + l = len(m.CompactedStartKey) + if l > 0 { + n += 1 + l + sovKvrpcpb(uint64(l)) + } + l = len(m.CompactedEndKey) + if l > 0 { + n += 1 + l + sovKvrpcpb(uint64(l)) + } + if m.XXX_unrecognized != nil { + n += len(m.XXX_unrecognized) + } + return n +} + func sovKvrpcpb(x uint64) (n int) { return (math_bits.Len64(x|1) + 6) / 7 } @@ -36368,6 +36915,471 @@ func (m *RawChecksumResponse) Unmarshal(dAtA []byte) error { } return nil } +func (m *CompactError) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowKvrpcpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: CompactError: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: CompactError: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field ErrCompactInProgress", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowKvrpcpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthKvrpcpb + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthKvrpcpb + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + v := &CompactErrorCompactInProgress{} + if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + m.Error = &CompactError_ErrCompactInProgress{v} + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipKvrpcpb(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthKvrpcpb + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *CompactErrorCompactInProgress) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowKvrpcpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: CompactErrorCompactInProgress: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: CompactErrorCompactInProgress: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + default: + iNdEx = preIndex + skippy, err := skipKvrpcpb(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthKvrpcpb + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *CompactRequest) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowKvrpcpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: CompactRequest: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: CompactRequest: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Id", wireType) + } + var byteLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowKvrpcpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + byteLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if byteLen < 0 { + return ErrInvalidLengthKvrpcpb + } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthKvrpcpb + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Id = append(m.Id[:0], dAtA[iNdEx:postIndex]...) + if m.Id == nil { + m.Id = []byte{} + } + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field StartKey", wireType) + } + var byteLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowKvrpcpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + byteLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if byteLen < 0 { + return ErrInvalidLengthKvrpcpb + } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthKvrpcpb + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.StartKey = append(m.StartKey[:0], dAtA[iNdEx:postIndex]...) + if m.StartKey == nil { + m.StartKey = []byte{} + } + iNdEx = postIndex + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field MaxEndKey", wireType) + } + var byteLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowKvrpcpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + byteLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if byteLen < 0 { + return ErrInvalidLengthKvrpcpb + } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthKvrpcpb + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.MaxEndKey = append(m.MaxEndKey[:0], dAtA[iNdEx:postIndex]...) + if m.MaxEndKey == nil { + m.MaxEndKey = []byte{} + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipKvrpcpb(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthKvrpcpb + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *CompactResponse) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowKvrpcpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: CompactResponse: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: CompactResponse: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Error", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowKvrpcpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthKvrpcpb + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthKvrpcpb + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.Error == nil { + m.Error = &CompactError{} + } + if err := m.Error.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 2: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field HasRemaining", wireType) + } + var v int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowKvrpcpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.HasRemaining = bool(v != 0) + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field CompactedStartKey", wireType) + } + var byteLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowKvrpcpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + byteLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if byteLen < 0 { + return ErrInvalidLengthKvrpcpb + } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthKvrpcpb + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.CompactedStartKey = append(m.CompactedStartKey[:0], dAtA[iNdEx:postIndex]...) + if m.CompactedStartKey == nil { + m.CompactedStartKey = []byte{} + } + iNdEx = postIndex + case 4: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field CompactedEndKey", wireType) + } + var byteLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowKvrpcpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + byteLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if byteLen < 0 { + return ErrInvalidLengthKvrpcpb + } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthKvrpcpb + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.CompactedEndKey = append(m.CompactedEndKey[:0], dAtA[iNdEx:postIndex]...) + if m.CompactedEndKey == nil { + m.CompactedEndKey = []byte{} + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipKvrpcpb(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthKvrpcpb + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func skipKvrpcpb(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 diff --git a/pkg/tikvpb/tikvpb.pb.go b/pkg/tikvpb/tikvpb.pb.go index 93e577760..78efa3c87 100644 --- a/pkg/tikvpb/tikvpb.pb.go +++ b/pkg/tikvpb/tikvpb.pb.go @@ -1194,144 +1194,145 @@ func init() { func init() { proto.RegisterFile("tikvpb.proto", fileDescriptor_274fe050f0c997b3) } var fileDescriptor_274fe050f0c997b3 = []byte{ - // 2183 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x9a, 0xdb, 0x52, 0x1b, 0xc9, - 0x19, 0x80, 0x47, 0xb6, 0xcc, 0xa1, 0x31, 0xa7, 0x06, 0xcc, 0xd0, 0xcb, 0xc1, 0xcc, 0xb2, 0x1b, - 0x2a, 0xa9, 0x22, 0xc6, 0xeb, 0xac, 0xb3, 0xbb, 0xc9, 0x06, 0x23, 0xbc, 0x80, 0x05, 0xb5, 0x2a, - 0x49, 0x9b, 0x75, 0xaa, 0x52, 0x45, 0x35, 0x52, 0x03, 0x2a, 0xa4, 0x19, 0x65, 0xa6, 0x19, 0xac, - 0xd7, 0xc8, 0x45, 0x2a, 0x8f, 0x90, 0x07, 0xc8, 0x43, 0xe4, 0x22, 0x17, 0xb9, 0xcc, 0x65, 0xca, - 0xb9, 0xc8, 0x63, 0x24, 0xd5, 0x3d, 0x33, 0x3d, 0xdd, 0x3d, 0xdd, 0x23, 0x72, 0xc5, 0xe8, 0x3f, - 0xf6, 0xf9, 0xfb, 0xbb, 0x6d, 0xf0, 0x94, 0xf6, 0x6e, 0xe3, 0xe1, 0xe5, 0xde, 0x30, 0x0c, 0x68, - 0x00, 0x27, 0x92, 0x5f, 0x68, 0xb1, 0x13, 0x0c, 0xc3, 0xa0, 0x43, 0xa2, 0x28, 0x08, 0x13, 0x15, - 0x9a, 0xbd, 0x8d, 0xc3, 0x61, 0x27, 0xb3, 0x44, 0xd3, 0x83, 0xe1, 0x30, 0xfd, 0x5c, 0x0a, 0xf1, - 0x15, 0xbd, 0x88, 0x48, 0x18, 0x93, 0x50, 0xe8, 0x97, 0xaf, 0x83, 0xeb, 0x80, 0x7f, 0xfe, 0x9c, - 0x7d, 0xa5, 0xd2, 0xf9, 0xf0, 0x2e, 0xa2, 0xfc, 0x33, 0x11, 0x78, 0x7f, 0x9c, 0x07, 0xcb, 0x87, - 0x98, 0x76, 0x6e, 0x6a, 0xc1, 0x60, 0x80, 0xfd, 0x6e, 0xd4, 0x24, 0x7f, 0xb8, 0x23, 0x11, 0x85, - 0x07, 0x60, 0x2a, 0x4c, 0x3e, 0x23, 0xb7, 0xf2, 0xfc, 0xf1, 0xee, 0xcc, 0xcb, 0x9d, 0xbd, 0xb4, - 0xa9, 0x26, 0xfb, 0xbd, 0xf4, 0x6f, 0x53, 0x78, 0xc1, 0x2d, 0x30, 0x93, 0x7e, 0x5f, 0xf4, 0xba, - 0x91, 0xfb, 0xe8, 0xf9, 0xe3, 0xdd, 0x6a, 0x13, 0xa4, 0xa2, 0xd3, 0x6e, 0x84, 0xfe, 0x34, 0x07, - 0x26, 0xb3, 0x74, 0x3f, 0x01, 0x8f, 0x8f, 0x09, 0x75, 0x2b, 0xcf, 0x2b, 0xbb, 0x33, 0x2f, 0x97, - 0xf6, 0xb2, 0xbe, 0x1e, 0x13, 0x9a, 0x5a, 0x9c, 0x38, 0x4d, 0x66, 0x01, 0x7f, 0x0a, 0xaa, 0xad, - 0x0e, 0xf6, 0xdd, 0x47, 0xdc, 0x72, 0x59, 0x58, 0x32, 0x61, 0x6e, 0xca, 0x6d, 0xe0, 0x97, 0x60, - 0xaa, 0x11, 0x92, 0xfb, 0xb0, 0x47, 0x89, 0xfb, 0x98, 0xdb, 0xbb, 0xc2, 0x3e, 0x53, 0xe4, 0x3e, - 0xc2, 0x16, 0xbe, 0x00, 0x13, 0xac, 0x7b, 0x3d, 0xea, 0x56, 0xb9, 0xd7, 0x33, 0xe1, 0x95, 0x88, - 0x73, 0x9f, 0xd4, 0x8e, 0x79, 0x9c, 0x0e, 0x86, 0x41, 0x48, 0xdd, 0x27, 0x9a, 0x47, 0x22, 0x96, - 0x3c, 0x12, 0x01, 0xfc, 0x02, 0x4c, 0xd6, 0xfa, 0x04, 0xfb, 0x77, 0x43, 0x77, 0x82, 0xbb, 0xac, - 0xe6, 0x49, 0x12, 0x79, 0xee, 0x93, 0x59, 0xb2, 0x0e, 0xf1, 0xc1, 0x67, 0x43, 0x35, 0xa9, 0x75, - 0x28, 0x53, 0x48, 0x1d, 0xca, 0x44, 0xf0, 0x2d, 0x98, 0xe5, 0xdf, 0xcd, 0xa0, 0xdf, 0xbf, 0xc4, - 0x9d, 0x5b, 0x77, 0x8a, 0x3b, 0x6f, 0xa8, 0xce, 0x99, 0x36, 0x8f, 0xa0, 0x7a, 0xb1, 0xf4, 0x6c, - 0x5c, 0xcf, 0x82, 0xce, 0xad, 0x3b, 0xad, 0xa5, 0xcf, 0x14, 0x52, 0xfa, 0x4c, 0x04, 0x7f, 0x03, - 0x66, 0x9a, 0x24, 0x0a, 0xfa, 0x31, 0xe1, 0xae, 0x80, 0xbb, 0x7e, 0x22, 0x5c, 0x25, 0x5d, 0xee, - 0x2d, 0x7b, 0xc0, 0x1d, 0xf0, 0xe8, 0xb8, 0xe6, 0xce, 0x70, 0x3f, 0x98, 0x2f, 0x8e, 0x5a, 0x6e, - 0xfe, 0xe8, 0xb8, 0xc6, 0xd2, 0x1c, 0x91, 0x3e, 0xa1, 0xa4, 0x89, 0xfd, 0x6b, 0xe2, 0x3e, 0xd5, - 0xd2, 0x48, 0x3a, 0x29, 0x8d, 0x24, 0x65, 0xb3, 0xd8, 0xc4, 0xf7, 0x6c, 0x70, 0x67, 0xb5, 0x59, - 0x4c, 0xc4, 0xd2, 0x2c, 0x26, 0x02, 0xde, 0x33, 0x7c, 0x2f, 0xe6, 0x64, 0x4e, 0xef, 0x59, 0xae, - 0x93, 0x7b, 0x96, 0x4b, 0xd3, 0x94, 0x8d, 0x3b, 0xea, 0xce, 0x17, 0x53, 0x36, 0xee, 0xb4, 0x94, - 0x8d, 0x3b, 0x25, 0x25, 0x73, 0x5b, 0xb0, 0xa4, 0x54, 0x7c, 0x65, 0x0f, 0xf8, 0x15, 0x98, 0x6e, - 0xe2, 0xfb, 0xa4, 0xdf, 0xee, 0x22, 0x77, 0x5f, 0x93, 0xdd, 0xd3, 0x11, 0x11, 0xce, 0xb9, 0x35, - 0x3c, 0x01, 0x73, 0x59, 0xa4, 0xd4, 0x1f, 0x72, 0xff, 0xcd, 0x42, 0x7a, 0x3d, 0x88, 0xe6, 0xc7, - 0x96, 0x7f, 0x13, 0xdf, 0xf3, 0x9d, 0xbc, 0xa4, 0x2d, 0xff, 0x54, 0x2e, 0x2d, 0xff, 0x54, 0x92, - 0xa6, 0x97, 0xe7, 0x78, 0xb9, 0x98, 0xde, 0x38, 0xcd, 0x9a, 0x1f, 0x3c, 0x04, 0x4f, 0xb3, 0x06, - 0xf1, 0x36, 0xac, 0xf0, 0x38, 0xeb, 0x85, 0x6e, 0xa8, 0x0d, 0x51, 0x7c, 0xe0, 0x2f, 0xc1, 0x4c, - 0x2d, 0x3f, 0xa5, 0xdd, 0x67, 0xe9, 0x81, 0x24, 0x9f, 0xdc, 0xd2, 0x0c, 0x48, 0xa6, 0xb0, 0x0e, - 0xe6, 0x1b, 0x24, 0x8a, 0x7a, 0x83, 0x5e, 0x44, 0x7b, 0x1d, 0xbe, 0x27, 0x56, 0xb9, 0xf7, 0x56, - 0x7e, 0x3c, 0xa9, 0xfa, 0x3c, 0x90, 0xee, 0x09, 0x7f, 0x04, 0x4b, 0x92, 0x48, 0xec, 0x70, 0x97, - 0x07, 0xfc, 0xd4, 0x14, 0xb0, 0xb8, 0xcf, 0x4d, 0x11, 0xd8, 0x68, 0xd7, 0x6e, 0x48, 0xe7, 0xb6, - 0xfd, 0xc1, 0x6f, 0x51, 0x4c, 0xef, 0x22, 0x77, 0x4d, 0x1b, 0x6d, 0x55, 0x2d, 0x8d, 0xb6, 0xaa, - 0x60, 0xa3, 0xdd, 0xfe, 0xe0, 0x9f, 0x10, 0x1c, 0xd2, 0x43, 0x82, 0xa9, 0x8b, 0xb4, 0xd1, 0x96, - 0x95, 0xd2, 0x68, 0xcb, 0x62, 0xd6, 0x4d, 0x1e, 0xb5, 0x45, 0x3a, 0x81, 0xdf, 0xc5, 0xe1, 0x88, - 0x75, 0x3e, 0x72, 0xb7, 0xb5, 0x6e, 0x1a, 0x6c, 0xa4, 0x6e, 0x1a, 0xb4, 0xe9, 0xa2, 0x92, 0x67, - 0xd2, 0x2b, 0x2e, 0x2a, 0x49, 0xad, 0x2e, 0x2a, 0x79, 0x5a, 0xbf, 0x06, 0x4f, 0xde, 0x0e, 0x86, - 0x74, 0xe4, 0xfe, 0x37, 0xc1, 0xd8, 0xb6, 0x11, 0x98, 0xdc, 0x24, 0x0f, 0x92, 0xb8, 0x1c, 0x3e, - 0x01, 0x8f, 0x3b, 0x83, 0xee, 0xbb, 0xea, 0xd4, 0x27, 0x0b, 0xdb, 0xde, 0x7f, 0xe6, 0xc1, 0x8a, - 0x06, 0xd9, 0x68, 0x18, 0xf8, 0x11, 0x81, 0x47, 0x60, 0x3a, 0x4c, 0xbf, 0x33, 0x2c, 0x7f, 0x6e, - 0xc1, 0x72, 0x62, 0xb5, 0x97, 0x7d, 0x34, 0x73, 0xc7, 0xb1, 0x64, 0x86, 0x2f, 0xc0, 0x32, 0x0d, - 0xb1, 0x1f, 0x31, 0x52, 0x5d, 0xf4, 0xf1, 0x88, 0x84, 0x17, 0xfd, 0x00, 0x77, 0x39, 0x44, 0xab, - 0x4d, 0x28, 0x74, 0x67, 0x4c, 0x75, 0x16, 0xe0, 0x2e, 0xfa, 0xeb, 0x1c, 0x98, 0x12, 0xad, 0xdc, - 0x95, 0x61, 0xbe, 0xac, 0xc2, 0x3c, 0x31, 0xc9, 0x68, 0xfe, 0x33, 0x85, 0xe6, 0x2b, 0x1a, 0xcd, - 0x85, 0x6d, 0x82, 0xf3, 0xd7, 0x05, 0x9c, 0xaf, 0x19, 0x70, 0x2e, 0x9c, 0x72, 0x9e, 0xef, 0x6b, - 0x3c, 0x5f, 0x2d, 0xf0, 0x5c, 0x38, 0x65, 0x40, 0xdf, 0xd7, 0x80, 0xbe, 0x5a, 0x00, 0x7a, 0xee, - 0x92, 0x12, 0xfd, 0x95, 0x4e, 0x74, 0xb7, 0x48, 0x74, 0xe1, 0x24, 0x90, 0xfe, 0xba, 0x80, 0xf4, - 0x35, 0x03, 0xd2, 0xf3, 0x4e, 0x09, 0x72, 0x7c, 0x67, 0x66, 0xfa, 0xa6, 0x8d, 0xe9, 0x22, 0x84, - 0x06, 0xf5, 0xd7, 0x05, 0xa8, 0xaf, 0x19, 0xa0, 0x9e, 0x37, 0x40, 0x50, 0xfd, 0xc0, 0x44, 0xf5, - 0x75, 0x33, 0xd5, 0x85, 0xbb, 0x82, 0xf5, 0xcf, 0x24, 0xac, 0x2f, 0x29, 0x58, 0x17, 0xf6, 0x8c, - 0xeb, 0x07, 0x26, 0xae, 0xaf, 0x9b, 0xb9, 0x9e, 0x27, 0x92, 0x8f, 0xfb, 0x7d, 0x0d, 0xec, 0xab, - 0x05, 0xb0, 0xe7, 0xb3, 0x99, 0x92, 0xfd, 0xc0, 0x44, 0xf6, 0x75, 0x33, 0xd9, 0xa5, 0xde, 0x49, - 0x68, 0xdf, 0xd7, 0xd0, 0xbe, 0x5a, 0x40, 0xbb, 0x92, 0x94, 0xa1, 0xf9, 0xc0, 0xc4, 0xf6, 0x75, - 0x33, 0xdb, 0x8b, 0x49, 0x59, 0x84, 0xaf, 0x8b, 0x70, 0x47, 0x26, 0xb8, 0x0b, 0x6f, 0x89, 0xee, - 0xa7, 0x16, 0xba, 0x6f, 0x59, 0xe9, 0x2e, 0xa2, 0xe8, 0x78, 0x7f, 0xa5, 0xe3, 0xdd, 0x2d, 0xe2, - 0x3d, 0xdf, 0x0b, 0x19, 0xdf, 0x4f, 0x2d, 0x7c, 0xdf, 0xb2, 0xf2, 0x5d, 0x69, 0x80, 0x3c, 0xe3, - 0x35, 0x23, 0xe0, 0x37, 0x2c, 0x80, 0x17, 0x61, 0x54, 0xc2, 0x7f, 0x65, 0x22, 0xfc, 0x8a, 0x46, - 0xf8, 0x7c, 0x1e, 0x64, 0x16, 0x9c, 0xd9, 0x10, 0xff, 0xdc, 0x8e, 0x78, 0x11, 0xa9, 0xc0, 0xf8, - 0xf7, 0x65, 0x8c, 0xdf, 0x29, 0x67, 0xbc, 0x88, 0x6a, 0x84, 0xfc, 0xa9, 0x05, 0xf2, 0x5b, 0x56, - 0xc8, 0xe7, 0x43, 0xae, 0x51, 0xbe, 0x66, 0xa4, 0xfc, 0x86, 0x85, 0xf2, 0xf9, 0x90, 0x2b, 0x98, - 0x7f, 0x5f, 0x86, 0xf9, 0x9d, 0x72, 0xcc, 0xe7, 0x3d, 0x35, 0x71, 0xfe, 0xd4, 0xc2, 0xf9, 0x2d, - 0x2b, 0xe7, 0x95, 0xc5, 0x25, 0x4f, 0xee, 0x37, 0x1a, 0xe8, 0xbd, 0x32, 0xd0, 0x8b, 0x28, 0x26, - 0xd2, 0x1f, 0x82, 0x85, 0xe4, 0x34, 0xc6, 0x57, 0xf4, 0x9c, 0x44, 0x11, 0xbe, 0x26, 0x70, 0x0f, - 0x54, 0x07, 0xd1, 0x75, 0x86, 0x77, 0xb4, 0xa7, 0xde, 0xee, 0x25, 0xcb, 0x26, 0xb7, 0xf3, 0x5a, - 0x60, 0xcd, 0x5a, 0x60, 0xc0, 0x55, 0x30, 0x49, 0x13, 0xce, 0x73, 0x1c, 0x57, 0x9b, 0x13, 0x94, - 0x33, 0x1e, 0x6e, 0x00, 0xd0, 0x25, 0x7d, 0x3c, 0xba, 0xa0, 0xbd, 0x01, 0xe1, 0xfc, 0xad, 0x36, - 0xa7, 0xb9, 0xa4, 0xdd, 0x1b, 0x10, 0xef, 0x17, 0x00, 0xd9, 0x3b, 0x63, 0x8d, 0xfa, 0xf2, 0xef, - 0x5b, 0xa0, 0xda, 0xee, 0xdd, 0xc6, 0xf0, 0x15, 0x78, 0x52, 0x8f, 0xd9, 0x29, 0x68, 0xba, 0xcb, - 0x23, 0x63, 0x4d, 0xe0, 0x39, 0xf0, 0x35, 0x98, 0xa8, 0xc7, 0x7c, 0xeb, 0x19, 0x2f, 0xf6, 0xc8, - 0x5c, 0x20, 0x78, 0x0e, 0xac, 0x01, 0x50, 0x8f, 0x05, 0xef, 0xad, 0xb7, 0x7c, 0x64, 0x2f, 0x18, - 0x3c, 0x07, 0xbe, 0x07, 0x8b, 0xf5, 0x58, 0xdf, 0x7a, 0xe3, 0x4a, 0x72, 0x34, 0x76, 0x43, 0x7b, - 0x0e, 0xec, 0x82, 0x95, 0xfa, 0x6f, 0x4d, 0xdb, 0xef, 0x21, 0xf5, 0x39, 0x7a, 0xd0, 0x06, 0xf7, - 0x1c, 0xf8, 0x3d, 0x98, 0xab, 0xc7, 0xca, 0x6e, 0x2a, 0x2d, 0xb1, 0x51, 0xf9, 0xd6, 0xf4, 0x1c, - 0xf8, 0x03, 0x58, 0xa8, 0xc7, 0xda, 0x2e, 0x1f, 0x53, 0xfd, 0xa3, 0x71, 0x07, 0x47, 0x3a, 0x1a, - 0xb1, 0x69, 0x8b, 0x3e, 0xa4, 0x8c, 0x47, 0x0f, 0x3a, 0x04, 0x3c, 0x07, 0xfe, 0x1a, 0x4c, 0xd5, - 0xe3, 0xb4, 0x9a, 0xb3, 0x3c, 0xe0, 0x20, 0x5b, 0x21, 0x98, 0xb9, 0xa7, 0x95, 0x9d, 0xe5, 0x35, - 0x07, 0xd9, 0x8a, 0x42, 0xcf, 0x81, 0x07, 0x60, 0xba, 0x1e, 0x67, 0x35, 0x9e, 0xed, 0x69, 0x07, - 0x59, 0x2b, 0xc4, 0x6c, 0x49, 0x8b, 0x62, 0xc2, 0xfa, 0xce, 0x83, 0xec, 0xe5, 0xa2, 0xe7, 0xc0, - 0x26, 0x98, 0x4f, 0x83, 0x88, 0x25, 0x57, 0xfe, 0xe8, 0x83, 0xc6, 0xd4, 0x8f, 0x59, 0xc3, 0x44, - 0x15, 0x68, 0x7d, 0x01, 0x42, 0xf6, 0x32, 0xd2, 0x73, 0xe0, 0x19, 0x98, 0xad, 0xc7, 0x72, 0x2d, - 0x58, 0xf6, 0x1c, 0x84, 0x4a, 0xab, 0x4a, 0xcf, 0x81, 0xfb, 0xa0, 0x5a, 0x8f, 0x8f, 0x6b, 0xd0, - 0xf0, 0x36, 0x84, 0x4c, 0x85, 0x65, 0xd6, 0x00, 0xb9, 0x62, 0x28, 0x7b, 0x28, 0x42, 0xa5, 0xd5, - 0xa6, 0xe7, 0xc0, 0x6f, 0xb2, 0x02, 0x13, 0x5a, 0xde, 0x8c, 0x90, 0xad, 0xe4, 0xf4, 0x1c, 0xf8, - 0x4e, 0x29, 0x35, 0x61, 0xd9, 0xf3, 0x11, 0x2a, 0xad, 0x40, 0x45, 0x43, 0x58, 0x25, 0x68, 0x79, - 0x49, 0x42, 0xb6, 0x32, 0x54, 0x6d, 0x08, 0x8b, 0x50, 0xf6, 0xa8, 0x84, 0x4a, 0xab, 0x52, 0xcf, - 0x61, 0x37, 0xd5, 0xbc, 0xb2, 0xb4, 0xbf, 0x2f, 0xa1, 0x92, 0xea, 0xd4, 0x73, 0x60, 0x4b, 0x2f, - 0x49, 0xe1, 0x98, 0xa7, 0x26, 0x34, 0xae, 0x58, 0xf5, 0x1c, 0xf8, 0xad, 0x28, 0x4e, 0xa1, 0xed, - 0xd5, 0x09, 0x59, 0xeb, 0x55, 0xd1, 0x28, 0x79, 0xed, 0x8c, 0x79, 0x80, 0x42, 0xe3, 0x0a, 0x58, - 0xcf, 0x81, 0xe7, 0x6a, 0xc1, 0x0a, 0x4b, 0xdf, 0xa2, 0x50, 0x79, 0x21, 0x2b, 0xc2, 0x1d, 0x13, - 0x5a, 0x27, 0xa3, 0x76, 0xfb, 0x4c, 0x0d, 0x27, 0xc4, 0xc6, 0x70, 0x92, 0x56, 0x84, 0xfb, 0x0e, - 0x2c, 0xf2, 0x1a, 0x68, 0x30, 0xc4, 0x21, 0x79, 0xe3, 0x77, 0x5b, 0xf7, 0x78, 0xa8, 0xae, 0xb0, - 0xda, 0x9b, 0x96, 0x71, 0x85, 0x71, 0xb9, 0xb6, 0xc2, 0xf8, 0xc1, 0x1d, 0xdd, 0x0d, 0xd4, 0x15, - 0x96, 0x49, 0x8d, 0x2b, 0x2c, 0x57, 0x8a, 0x58, 0x17, 0x00, 0xfe, 0xe0, 0x47, 0xf8, 0x8a, 0x1c, - 0x91, 0x88, 0x86, 0xc1, 0x28, 0x99, 0x0a, 0x4f, 0x78, 0x15, 0x95, 0x59, 0xe4, 0x4f, 0x4b, 0x6d, - 0x44, 0x02, 0x02, 0x96, 0x9b, 0xe4, 0xba, 0x17, 0x51, 0x12, 0xb2, 0xf3, 0xe6, 0xfb, 0xcb, 0xa4, - 0x08, 0x83, 0x3b, 0xd2, 0x69, 0x54, 0x54, 0x67, 0x49, 0x3e, 0x1b, 0x63, 0x25, 0xd2, 0xfc, 0x1e, - 0x2c, 0xf2, 0xde, 0x29, 0x39, 0xb6, 0x55, 0xca, 0x99, 0x12, 0x78, 0x65, 0x26, 0xf2, 0x28, 0x35, - 0xc9, 0x20, 0x48, 0x8e, 0x4c, 0x11, 0xde, 0x93, 0x1a, 0xa7, 0x2b, 0x8b, 0xa3, 0x64, 0xb2, 0x11, - 0x09, 0x7e, 0x07, 0x16, 0x1a, 0x37, 0xa3, 0xa8, 0xd7, 0xc1, 0x7d, 0x01, 0x05, 0xa9, 0x26, 0xd2, - 0x54, 0x59, 0xf0, 0xed, 0x12, 0x0b, 0x11, 0xfa, 0x57, 0xca, 0xfd, 0x0b, 0x1a, 0xdf, 0x56, 0x91, - 0xf9, 0x3e, 0xc6, 0x4f, 0xa0, 0x45, 0xc9, 0xbb, 0x45, 0x43, 0x82, 0x07, 0xff, 0x67, 0x8c, 0x17, - 0x15, 0x78, 0x9e, 0x56, 0xe8, 0x72, 0x43, 0xd6, 0x14, 0xf3, 0x84, 0x93, 0xe2, 0x38, 0x33, 0xa8, - 0xa4, 0x70, 0x2d, 0xfd, 0x16, 0x02, 0xc7, 0xbc, 0x33, 0xa2, 0x71, 0xf7, 0x13, 0x7e, 0xe8, 0x57, - 0xd9, 0xb5, 0x00, 0x96, 0xdc, 0x15, 0xd0, 0x92, 0xa6, 0x3b, 0x0a, 0x7c, 0xe2, 0x39, 0xbb, 0x15, - 0xf8, 0x2d, 0x98, 0x16, 0x57, 0x10, 0xe8, 0x2a, 0x37, 0x99, 0x07, 0xf9, 0xbf, 0x01, 0x53, 0x2d, - 0x1f, 0x0f, 0xa3, 0x9b, 0x80, 0xd5, 0x9b, 0xaa, 0x51, 0xa6, 0xa8, 0xdd, 0xdc, 0xf9, 0xb7, 0xf6, - 0x10, 0xef, 0xc0, 0x4c, 0x6b, 0xd8, 0x67, 0xe5, 0xd7, 0x75, 0x2f, 0xf0, 0xa5, 0x53, 0x41, 0x92, - 0x16, 0x4f, 0x05, 0x45, 0xa9, 0x70, 0x87, 0xe0, 0xee, 0xa9, 0xdf, 0x25, 0x1f, 0x64, 0xee, 0x64, - 0x32, 0x03, 0x77, 0x72, 0x95, 0x7c, 0x7c, 0x9e, 0xc7, 0x9d, 0xce, 0x31, 0xa1, 0x87, 0xa3, 0x3a, - 0x19, 0x49, 0xc7, 0xa7, 0x2c, 0x2e, 0x1e, 0x9f, 0xaa, 0x56, 0xde, 0x23, 0x42, 0xd3, 0xa2, 0x38, - 0xa4, 0xed, 0x48, 0xda, 0x23, 0xba, 0xaa, 0xb8, 0x47, 0x8a, 0x16, 0x52, 0x85, 0x37, 0xab, 0x5c, - 0xd4, 0xe0, 0x7a, 0xd9, 0x3f, 0xd3, 0xa2, 0x8d, 0xd2, 0xd7, 0x62, 0x36, 0x1b, 0x2f, 0x2a, 0xf0, - 0x04, 0xcc, 0x1f, 0xf5, 0xa2, 0x21, 0xb3, 0x38, 0x6f, 0x34, 0xda, 0x38, 0x62, 0x65, 0xde, 0x60, - 0x38, 0xdc, 0xcb, 0xa4, 0x4c, 0x94, 0x97, 0x79, 0x45, 0x8d, 0x68, 0xdd, 0x21, 0x98, 0xad, 0x61, - 0xbf, 0x43, 0xfa, 0x59, 0x9c, 0x67, 0xdc, 0x3a, 0x91, 0xc9, 0x51, 0x56, 0x0b, 0x72, 0x11, 0xa3, - 0x0d, 0x9e, 0xbd, 0x8d, 0x28, 0xbe, 0xec, 0xf7, 0x22, 0xd6, 0x9c, 0x5a, 0xe0, 0xfb, 0xa4, 0x43, - 0xd9, 0x42, 0xf1, 0xb8, 0x93, 0x59, 0x99, 0x05, 0x86, 0xdc, 0xe6, 0xbc, 0xd1, 0x38, 0xc2, 0x14, - 0x37, 0x70, 0xe7, 0x96, 0x50, 0xbe, 0x11, 0xbf, 0x04, 0x93, 0xa7, 0xd1, 0x9b, 0x7e, 0x2f, 0x26, - 0x70, 0x89, 0x9b, 0xa4, 0xbf, 0xf2, 0x2b, 0xaa, 0x22, 0x14, 0xad, 0x39, 0x01, 0x33, 0xc9, 0x71, - 0x4b, 0x70, 0x97, 0x84, 0xd2, 0x5a, 0x95, 0xa4, 0xc5, 0xb5, 0xaa, 0x28, 0xd3, 0x4b, 0x74, 0x1d, - 0xcc, 0x1d, 0x13, 0xda, 0xa2, 0x41, 0x48, 0x5a, 0xf8, 0x8a, 0xb4, 0x5b, 0xf2, 0xc2, 0xcf, 0xa5, - 0x86, 0x85, 0x2f, 0x2b, 0xd3, 0x60, 0x6d, 0x30, 0x7f, 0x4c, 0x28, 0x3b, 0x3f, 0x7f, 0xc4, 0x3d, - 0x7a, 0xea, 0x5f, 0x05, 0xd2, 0xcd, 0x55, 0xd3, 0x14, 0x6f, 0xae, 0x05, 0x83, 0x24, 0xea, 0xe1, - 0xe7, 0xff, 0xfc, 0xcb, 0x54, 0xe5, 0x6f, 0x1f, 0x37, 0x2b, 0xff, 0xf8, 0xb8, 0x59, 0xf9, 0xd7, - 0xc7, 0xcd, 0xca, 0x9f, 0xff, 0xbd, 0xe9, 0x80, 0x85, 0x20, 0xbc, 0xe6, 0xcb, 0x68, 0xef, 0x36, - 0xe6, 0xff, 0x8b, 0xe0, 0x72, 0x82, 0xff, 0xf9, 0xe2, 0x7f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x80, - 0x5c, 0x8a, 0x7a, 0xcd, 0x20, 0x00, 0x00, + // 2200 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x9a, 0xdb, 0x52, 0x1c, 0xb9, + 0xdd, 0xc0, 0x7b, 0xcc, 0x98, 0x83, 0x30, 0x27, 0x01, 0xa6, 0xd1, 0x72, 0xec, 0x65, 0xf7, 0xa3, + 0xbe, 0x54, 0x11, 0xe3, 0x75, 0xd6, 0xd9, 0x43, 0x36, 0x98, 0xc1, 0x0b, 0x78, 0xa0, 0x76, 0x6a, + 0x66, 0x36, 0xeb, 0x54, 0xa5, 0x8a, 0x12, 0x33, 0x02, 0xa6, 0x98, 0xe9, 0x9e, 0x74, 0x8b, 0xc6, + 0xbc, 0x42, 0x2e, 0x73, 0x91, 0xca, 0x23, 0xe4, 0x01, 0xf2, 0x10, 0xb9, 0xcc, 0x65, 0x2e, 0x53, + 0xce, 0x45, 0x1e, 0x23, 0x29, 0xa9, 0xbb, 0xd5, 0x92, 0x5a, 0xea, 0x21, 0x57, 0xf4, 0xfc, 0x8f, + 0x3a, 0xff, 0xfe, 0x92, 0x0d, 0x9e, 0xd1, 0xde, 0x6d, 0x3c, 0xbc, 0xdc, 0x1b, 0x86, 0x01, 0x0d, + 0xe0, 0x78, 0xf2, 0x0b, 0x2d, 0x74, 0x82, 0x61, 0x18, 0x74, 0x48, 0x14, 0x05, 0x61, 0xa2, 0x42, + 0x33, 0xb7, 0x71, 0x38, 0xec, 0x64, 0x96, 0x68, 0x6a, 0x30, 0x1c, 0xa6, 0x9f, 0x8b, 0x21, 0xbe, + 0xa2, 0x17, 0x11, 0x09, 0x63, 0x12, 0x0a, 0xfd, 0xd2, 0x75, 0x70, 0x1d, 0xf0, 0xcf, 0x9f, 0xb3, + 0xaf, 0x54, 0x3a, 0x17, 0xde, 0x45, 0x94, 0x7f, 0x26, 0x02, 0xef, 0x8f, 0x73, 0x60, 0xe9, 0x10, + 0xd3, 0xce, 0x4d, 0x2d, 0x18, 0x0c, 0xb0, 0xdf, 0x8d, 0x9a, 0xe4, 0xf7, 0x77, 0x24, 0xa2, 0xf0, + 0x00, 0x4c, 0x86, 0xc9, 0x67, 0xe4, 0x56, 0xb6, 0xc6, 0x76, 0xa7, 0x5f, 0xee, 0xec, 0xa5, 0x4d, + 0x35, 0xd9, 0xef, 0xa5, 0x7f, 0x9b, 0xc2, 0x0b, 0x6e, 0x82, 0xe9, 0xf4, 0xfb, 0xa2, 0xd7, 0x8d, + 0xdc, 0x27, 0x5b, 0x63, 0xbb, 0xd5, 0x26, 0x48, 0x45, 0xa7, 0xdd, 0x08, 0xfd, 0x69, 0x16, 0x4c, + 0x64, 0xe9, 0xfe, 0x0f, 0x8c, 0x1d, 0x13, 0xea, 0x56, 0xb6, 0x2a, 0xbb, 0xd3, 0x2f, 0x17, 0xf7, + 0xb2, 0xbe, 0x1e, 0x13, 0x9a, 0x5a, 0x9c, 0x38, 0x4d, 0x66, 0x01, 0xff, 0x1f, 0x54, 0x5b, 0x1d, + 0xec, 0xbb, 0x4f, 0xb8, 0xe5, 0x92, 0xb0, 0x64, 0xc2, 0xdc, 0x94, 0xdb, 0xc0, 0x2f, 0xc1, 0x64, + 0x23, 0x24, 0xf7, 0x61, 0x8f, 0x12, 0x77, 0x8c, 0xdb, 0xbb, 0xc2, 0x3e, 0x53, 0xe4, 0x3e, 0xc2, + 0x16, 0xbe, 0x00, 0xe3, 0xac, 0x7b, 0x3d, 0xea, 0x56, 0xb9, 0xd7, 0x73, 0xe1, 0x95, 0x88, 0x73, + 0x9f, 0xd4, 0x8e, 0x79, 0x9c, 0x0e, 0x86, 0x41, 0x48, 0xdd, 0xa7, 0x9a, 0x47, 0x22, 0x96, 0x3c, + 0x12, 0x01, 0xfc, 0x02, 0x4c, 0xd4, 0xfa, 0x04, 0xfb, 0x77, 0x43, 0x77, 0x9c, 0xbb, 0xac, 0xe4, + 0x49, 0x12, 0x79, 0xee, 0x93, 0x59, 0xb2, 0x0e, 0xf1, 0xc1, 0x67, 0x43, 0x35, 0xa1, 0x75, 0x28, + 0x53, 0x48, 0x1d, 0xca, 0x44, 0xf0, 0x2d, 0x98, 0xe1, 0xdf, 0xcd, 0xa0, 0xdf, 0xbf, 0xc4, 0x9d, + 0x5b, 0x77, 0x92, 0x3b, 0xaf, 0xab, 0xce, 0x99, 0x36, 0x8f, 0xa0, 0x7a, 0xb1, 0xf4, 0x6c, 0x5c, + 0xcf, 0x82, 0xce, 0xad, 0x3b, 0xa5, 0xa5, 0xcf, 0x14, 0x52, 0xfa, 0x4c, 0x04, 0x7f, 0x0d, 0xa6, + 0x9b, 0x24, 0x0a, 0xfa, 0x31, 0xe1, 0xae, 0x80, 0xbb, 0x7e, 0x22, 0x5c, 0x25, 0x5d, 0xee, 0x2d, + 0x7b, 0xc0, 0x1d, 0xf0, 0xe4, 0xb8, 0xe6, 0x4e, 0x73, 0x3f, 0x98, 0x2f, 0x8e, 0x5a, 0x6e, 0xfe, + 0xe4, 0xb8, 0xc6, 0xd2, 0x1c, 0x91, 0x3e, 0xa1, 0xa4, 0x89, 0xfd, 0x6b, 0xe2, 0x3e, 0xd3, 0xd2, + 0x48, 0x3a, 0x29, 0x8d, 0x24, 0x65, 0xb3, 0xd8, 0xc4, 0xf7, 0x6c, 0x70, 0x67, 0xb4, 0x59, 0x4c, + 0xc4, 0xd2, 0x2c, 0x26, 0x02, 0xde, 0x33, 0x7c, 0x2f, 0xe6, 0x64, 0x56, 0xef, 0x59, 0xae, 0x93, + 0x7b, 0x96, 0x4b, 0xd3, 0x94, 0x8d, 0x3b, 0xea, 0xce, 0x15, 0x53, 0x36, 0xee, 0xb4, 0x94, 0x8d, + 0x3b, 0x25, 0x25, 0x73, 0x9b, 0xb7, 0xa4, 0x54, 0x7c, 0x65, 0x0f, 0xf8, 0x15, 0x98, 0x6a, 0xe2, + 0xfb, 0xa4, 0xdf, 0xee, 0x02, 0x77, 0x5f, 0x95, 0xdd, 0xd3, 0x11, 0x11, 0xce, 0xb9, 0x35, 0x3c, + 0x01, 0xb3, 0x59, 0xa4, 0xd4, 0x1f, 0x72, 0xff, 0x8d, 0x42, 0x7a, 0x3d, 0x88, 0xe6, 0xc7, 0x96, + 0x7f, 0x13, 0xdf, 0xf3, 0x9d, 0xbc, 0xa8, 0x2d, 0xff, 0x54, 0x2e, 0x2d, 0xff, 0x54, 0x92, 0xa6, + 0x97, 0xe7, 0x78, 0xa9, 0x98, 0xde, 0x38, 0xcd, 0x9a, 0x1f, 0x3c, 0x04, 0xcf, 0xb2, 0x06, 0xf1, + 0x36, 0x2c, 0xf3, 0x38, 0x6b, 0x85, 0x6e, 0xa8, 0x0d, 0x51, 0x7c, 0xe0, 0x2f, 0xc1, 0x74, 0x2d, + 0x3f, 0xa5, 0xdd, 0xe7, 0xe9, 0x81, 0x24, 0x9f, 0xdc, 0xd2, 0x0c, 0x48, 0xa6, 0xb0, 0x0e, 0xe6, + 0x1a, 0x24, 0x8a, 0x7a, 0x83, 0x5e, 0x44, 0x7b, 0x1d, 0xbe, 0x27, 0x56, 0xb8, 0xf7, 0x66, 0x7e, + 0x3c, 0xa9, 0xfa, 0x3c, 0x90, 0xee, 0x09, 0x7f, 0x02, 0x8b, 0x92, 0x48, 0xec, 0x70, 0x97, 0x07, + 0xfc, 0xd4, 0x14, 0xb0, 0xb8, 0xcf, 0x4d, 0x11, 0xd8, 0x68, 0xd7, 0x6e, 0x48, 0xe7, 0xb6, 0xfd, + 0xc1, 0x6f, 0x51, 0x4c, 0xef, 0x22, 0x77, 0x55, 0x1b, 0x6d, 0x55, 0x2d, 0x8d, 0xb6, 0xaa, 0x60, + 0xa3, 0xdd, 0xfe, 0xe0, 0x9f, 0x10, 0x1c, 0xd2, 0x43, 0x82, 0xa9, 0x8b, 0xb4, 0xd1, 0x96, 0x95, + 0xd2, 0x68, 0xcb, 0x62, 0xd6, 0x4d, 0x1e, 0xb5, 0x45, 0x3a, 0x81, 0xdf, 0xc5, 0xe1, 0x03, 0xeb, + 0x7c, 0xe4, 0x6e, 0x6b, 0xdd, 0x34, 0xd8, 0x48, 0xdd, 0x34, 0x68, 0xd3, 0x45, 0x25, 0xcf, 0xa4, + 0x57, 0x5c, 0x54, 0x92, 0x5a, 0x5d, 0x54, 0xf2, 0xb4, 0x7e, 0x0d, 0x9e, 0xbe, 0x1d, 0x0c, 0xe9, + 0x83, 0xfb, 0x9f, 0x04, 0x63, 0xdb, 0x46, 0x60, 0x72, 0x93, 0x3c, 0x48, 0xe2, 0x72, 0xf8, 0x14, + 0x8c, 0x75, 0x06, 0xdd, 0x77, 0xd5, 0xc9, 0x4f, 0xe6, 0xb7, 0xbd, 0x7f, 0xcf, 0x81, 0x65, 0x0d, + 0xb2, 0xd1, 0x30, 0xf0, 0x23, 0x02, 0x8f, 0xc0, 0x54, 0x98, 0x7e, 0x67, 0x58, 0xfe, 0xdc, 0x82, + 0xe5, 0xc4, 0x6a, 0x2f, 0xfb, 0x68, 0xe6, 0x8e, 0x23, 0xc9, 0x0c, 0x5f, 0x80, 0x25, 0x1a, 0x62, + 0x3f, 0x62, 0xa4, 0xba, 0xe8, 0xe3, 0x07, 0x12, 0x5e, 0xf4, 0x03, 0xdc, 0xe5, 0x10, 0xad, 0x36, + 0xa1, 0xd0, 0x9d, 0x31, 0xd5, 0x59, 0x80, 0xbb, 0xe8, 0xaf, 0xb3, 0x60, 0x52, 0xb4, 0x72, 0x57, + 0x86, 0xf9, 0x92, 0x0a, 0xf3, 0xc4, 0x24, 0xa3, 0xf9, 0xcf, 0x14, 0x9a, 0x2f, 0x6b, 0x34, 0x17, + 0xb6, 0x09, 0xce, 0x5f, 0x17, 0x70, 0xbe, 0x6a, 0xc0, 0xb9, 0x70, 0xca, 0x79, 0xbe, 0xaf, 0xf1, + 0x7c, 0xa5, 0xc0, 0x73, 0xe1, 0x94, 0x01, 0x7d, 0x5f, 0x03, 0xfa, 0x4a, 0x01, 0xe8, 0xb9, 0x4b, + 0x4a, 0xf4, 0x57, 0x3a, 0xd1, 0xdd, 0x22, 0xd1, 0x85, 0x93, 0x40, 0xfa, 0xeb, 0x02, 0xd2, 0x57, + 0x0d, 0x48, 0xcf, 0x3b, 0x25, 0xc8, 0xf1, 0xbd, 0x99, 0xe9, 0x1b, 0x36, 0xa6, 0x8b, 0x10, 0x1a, + 0xd4, 0x5f, 0x17, 0xa0, 0xbe, 0x6a, 0x80, 0x7a, 0xde, 0x00, 0x41, 0xf5, 0x03, 0x13, 0xd5, 0xd7, + 0xcc, 0x54, 0x17, 0xee, 0x0a, 0xd6, 0x3f, 0x93, 0xb0, 0xbe, 0xa8, 0x60, 0x5d, 0xd8, 0x33, 0xae, + 0x1f, 0x98, 0xb8, 0xbe, 0x66, 0xe6, 0x7a, 0x9e, 0x48, 0x3e, 0xee, 0xf7, 0x35, 0xb0, 0xaf, 0x14, + 0xc0, 0x9e, 0xcf, 0x66, 0x4a, 0xf6, 0x03, 0x13, 0xd9, 0xd7, 0xcc, 0x64, 0x97, 0x7a, 0x27, 0xa1, + 0x7d, 0x5f, 0x43, 0xfb, 0x4a, 0x01, 0xed, 0x4a, 0x52, 0x86, 0xe6, 0x03, 0x13, 0xdb, 0xd7, 0xcc, + 0x6c, 0x2f, 0x26, 0x65, 0x11, 0xbe, 0x2e, 0xc2, 0x1d, 0x99, 0xe0, 0x2e, 0xbc, 0x25, 0xba, 0x9f, + 0x5a, 0xe8, 0xbe, 0x69, 0xa5, 0xbb, 0x88, 0xa2, 0xe3, 0xfd, 0x95, 0x8e, 0x77, 0xb7, 0x88, 0xf7, + 0x7c, 0x2f, 0x64, 0x7c, 0x3f, 0xb5, 0xf0, 0x7d, 0xd3, 0xca, 0x77, 0xa5, 0x01, 0xf2, 0x8c, 0xd7, + 0x8c, 0x80, 0x5f, 0xb7, 0x00, 0x5e, 0x84, 0x51, 0x09, 0xff, 0x95, 0x89, 0xf0, 0xcb, 0x1a, 0xe1, + 0xf3, 0x79, 0x90, 0x59, 0x70, 0x66, 0x43, 0xfc, 0x96, 0x1d, 0xf1, 0x22, 0x52, 0x81, 0xf1, 0xef, + 0xcb, 0x18, 0xbf, 0x53, 0xce, 0x78, 0x11, 0xd5, 0x08, 0xf9, 0x53, 0x0b, 0xe4, 0x37, 0xad, 0x90, + 0xcf, 0x87, 0x5c, 0xa3, 0x7c, 0xcd, 0x48, 0xf9, 0x75, 0x0b, 0xe5, 0xf3, 0x21, 0x57, 0x30, 0xff, + 0xbe, 0x0c, 0xf3, 0x3b, 0xe5, 0x98, 0xcf, 0x7b, 0x6a, 0xe2, 0xfc, 0xa9, 0x85, 0xf3, 0x9b, 0x56, + 0xce, 0x2b, 0x8b, 0x4b, 0x9e, 0xdc, 0x6f, 0x34, 0xd0, 0x7b, 0x65, 0xa0, 0x17, 0x51, 0x4c, 0xa4, + 0x3f, 0x04, 0xf3, 0xc9, 0x69, 0x8c, 0xaf, 0xe8, 0x39, 0x89, 0x22, 0x7c, 0x4d, 0xe0, 0x1e, 0xa8, + 0x0e, 0xa2, 0xeb, 0x0c, 0xef, 0x68, 0x4f, 0xbd, 0xdd, 0x4b, 0x96, 0x4d, 0x6e, 0xe7, 0xb5, 0xc0, + 0xaa, 0xb5, 0xc0, 0x80, 0x2b, 0x60, 0x82, 0x26, 0x9c, 0xe7, 0x38, 0xae, 0x36, 0xc7, 0x29, 0x67, + 0x3c, 0x5c, 0x07, 0xa0, 0x4b, 0xfa, 0xf8, 0xe1, 0x82, 0xf6, 0x06, 0x84, 0xf3, 0xb7, 0xda, 0x9c, + 0xe2, 0x92, 0x76, 0x6f, 0x40, 0xbc, 0x5f, 0x00, 0x64, 0xef, 0x8c, 0x35, 0xea, 0xcb, 0x3f, 0x6c, + 0x81, 0x6a, 0xbb, 0x77, 0x1b, 0xc3, 0x57, 0xe0, 0x69, 0x3d, 0x66, 0xa7, 0xa0, 0xe9, 0x2e, 0x8f, + 0x8c, 0x35, 0x81, 0xe7, 0xc0, 0xd7, 0x60, 0xbc, 0x1e, 0xf3, 0xad, 0x67, 0xbc, 0xd8, 0x23, 0x73, + 0x81, 0xe0, 0x39, 0xb0, 0x06, 0x40, 0x3d, 0x16, 0xbc, 0xb7, 0xde, 0xf2, 0x91, 0xbd, 0x60, 0xf0, + 0x1c, 0xf8, 0x1e, 0x2c, 0xd4, 0x63, 0x7d, 0xeb, 0x8d, 0x2a, 0xc9, 0xd1, 0xc8, 0x0d, 0xed, 0x39, + 0xb0, 0x0b, 0x96, 0xeb, 0xbf, 0x31, 0x6d, 0xbf, 0xc7, 0xd4, 0xe7, 0xe8, 0x51, 0x1b, 0xdc, 0x73, + 0xe0, 0x0f, 0x60, 0xb6, 0x1e, 0x2b, 0xbb, 0xa9, 0xb4, 0xc4, 0x46, 0xe5, 0x5b, 0xd3, 0x73, 0xe0, + 0x8f, 0x60, 0xbe, 0x1e, 0x6b, 0xbb, 0x7c, 0x44, 0xf5, 0x8f, 0x46, 0x1d, 0x1c, 0xe9, 0x68, 0xc4, + 0xa6, 0x2d, 0xfa, 0x98, 0x32, 0x1e, 0x3d, 0xea, 0x10, 0xf0, 0x1c, 0xf8, 0x2b, 0x30, 0x59, 0x8f, + 0xd3, 0x6a, 0xce, 0xf2, 0x80, 0x83, 0x6c, 0x85, 0x60, 0xe6, 0x9e, 0x56, 0x76, 0x96, 0xd7, 0x1c, + 0x64, 0x2b, 0x0a, 0x3d, 0x07, 0x1e, 0x80, 0xa9, 0x7a, 0x9c, 0xd5, 0x78, 0xb6, 0xa7, 0x1d, 0x64, + 0xad, 0x10, 0xb3, 0x25, 0x2d, 0x8a, 0x09, 0xeb, 0x3b, 0x0f, 0xb2, 0x97, 0x8b, 0x9e, 0x03, 0x9b, + 0x60, 0x2e, 0x0d, 0x22, 0x96, 0x5c, 0xf9, 0xa3, 0x0f, 0x1a, 0x51, 0x3f, 0x66, 0x0d, 0x13, 0x55, + 0xa0, 0xf5, 0x05, 0x08, 0xd9, 0xcb, 0x48, 0xcf, 0x81, 0x67, 0x60, 0xa6, 0x1e, 0xcb, 0xb5, 0x60, + 0xd9, 0x73, 0x10, 0x2a, 0xad, 0x2a, 0x3d, 0x07, 0xee, 0x83, 0x6a, 0x3d, 0x3e, 0xae, 0x41, 0xc3, + 0xdb, 0x10, 0x32, 0x15, 0x96, 0x59, 0x03, 0xe4, 0x8a, 0xa1, 0xec, 0xa1, 0x08, 0x95, 0x56, 0x9b, + 0x9e, 0x03, 0xbf, 0xc9, 0x0a, 0x4c, 0x68, 0x79, 0x33, 0x42, 0xb6, 0x92, 0xd3, 0x73, 0xe0, 0x3b, + 0xa5, 0xd4, 0x84, 0x65, 0xcf, 0x47, 0xa8, 0xb4, 0x02, 0x15, 0x0d, 0x61, 0x95, 0xa0, 0xe5, 0x25, + 0x09, 0xd9, 0xca, 0x50, 0xb5, 0x21, 0x2c, 0x42, 0xd9, 0xa3, 0x12, 0x2a, 0xad, 0x4a, 0x3d, 0x87, + 0xdd, 0x54, 0xf3, 0xca, 0xd2, 0xfe, 0xbe, 0x84, 0x4a, 0xaa, 0x53, 0xcf, 0x81, 0x2d, 0xbd, 0x24, + 0x85, 0x23, 0x9e, 0x9a, 0xd0, 0xa8, 0x62, 0xd5, 0x73, 0xe0, 0x77, 0xa2, 0x38, 0x85, 0xb6, 0x57, + 0x27, 0x64, 0xad, 0x57, 0x45, 0xa3, 0xe4, 0xb5, 0x33, 0xe2, 0x01, 0x0a, 0x8d, 0x2a, 0x60, 0x3d, + 0x07, 0x9e, 0xab, 0x05, 0x2b, 0x2c, 0x7d, 0x8b, 0x42, 0xe5, 0x85, 0xac, 0x08, 0x77, 0x4c, 0x68, + 0x9d, 0x3c, 0xb4, 0xdb, 0x67, 0x6a, 0x38, 0x21, 0x36, 0x86, 0x93, 0xb4, 0x22, 0xdc, 0xf7, 0x60, + 0x81, 0xd7, 0x40, 0x83, 0x21, 0x0e, 0xc9, 0x1b, 0xbf, 0xdb, 0xba, 0xc7, 0x43, 0x75, 0x85, 0xd5, + 0xde, 0xb4, 0x8c, 0x2b, 0x8c, 0xcb, 0xb5, 0x15, 0xc6, 0x0f, 0xee, 0xe8, 0x6e, 0xa0, 0xae, 0xb0, + 0x4c, 0x6a, 0x5c, 0x61, 0xb9, 0x52, 0xc4, 0xba, 0x00, 0xf0, 0x47, 0x3f, 0xc2, 0x57, 0xe4, 0x88, + 0x44, 0x34, 0x0c, 0x1e, 0x92, 0xa9, 0xf0, 0x84, 0x57, 0x51, 0x99, 0x45, 0xfe, 0xb4, 0xd4, 0x46, + 0x24, 0x20, 0x60, 0xa9, 0x49, 0xae, 0x7b, 0x11, 0x25, 0x21, 0x3b, 0x6f, 0x7e, 0xb8, 0x4c, 0x8a, + 0x30, 0xb8, 0x23, 0x9d, 0x46, 0x45, 0x75, 0x96, 0xe4, 0xb3, 0x11, 0x56, 0x22, 0xcd, 0xef, 0xc0, + 0x02, 0xef, 0x9d, 0x92, 0x63, 0x5b, 0xa5, 0x9c, 0x29, 0x81, 0x57, 0x66, 0x22, 0x8f, 0x52, 0x93, + 0x0c, 0x82, 0xe4, 0xc8, 0x14, 0xe1, 0x3d, 0xa9, 0x71, 0xba, 0xb2, 0x38, 0x4a, 0x26, 0x1b, 0x91, + 0xe0, 0xb7, 0x60, 0xbe, 0x71, 0xf3, 0x10, 0xf5, 0x3a, 0xb8, 0x2f, 0xa0, 0x20, 0xd5, 0x44, 0x9a, + 0x2a, 0x0b, 0xbe, 0x5d, 0x62, 0x21, 0x42, 0x7f, 0xab, 0xdc, 0xbf, 0xa0, 0xf1, 0x6d, 0x15, 0x99, + 0xef, 0x63, 0xfc, 0x04, 0x5a, 0x90, 0xbc, 0x5b, 0x34, 0x24, 0x78, 0xf0, 0x3f, 0xc6, 0x78, 0x51, + 0x81, 0xe7, 0x69, 0x85, 0x2e, 0x37, 0x64, 0x55, 0x31, 0x4f, 0x38, 0x29, 0x8e, 0x33, 0x83, 0x4a, + 0x0a, 0xd7, 0xd2, 0x6f, 0x21, 0x70, 0xc4, 0x3b, 0x23, 0x1a, 0x75, 0x3f, 0xe1, 0x87, 0x7e, 0x95, + 0x5d, 0x0b, 0x60, 0xc9, 0x5d, 0x01, 0x2d, 0x6a, 0xba, 0xa3, 0xc0, 0x27, 0x9e, 0xb3, 0x5b, 0x81, + 0xdf, 0x81, 0x29, 0x71, 0x05, 0x81, 0xae, 0x72, 0x93, 0x79, 0x94, 0xff, 0x1b, 0x30, 0xd9, 0xf2, + 0xf1, 0x30, 0xba, 0x09, 0x58, 0xbd, 0xa9, 0x1a, 0x65, 0x8a, 0xda, 0xcd, 0x9d, 0x7f, 0x6b, 0x0f, + 0xf1, 0x0e, 0x4c, 0xb7, 0x86, 0x7d, 0x56, 0x7e, 0x5d, 0xf7, 0x02, 0x5f, 0x3a, 0x15, 0x24, 0x69, + 0xf1, 0x54, 0x50, 0x94, 0x0a, 0x77, 0x08, 0xee, 0x9e, 0xfa, 0x5d, 0xf2, 0x41, 0xe6, 0x4e, 0x26, + 0x33, 0x70, 0x27, 0x57, 0xc9, 0xc7, 0xe7, 0x79, 0xdc, 0xe9, 0x1c, 0x13, 0x7a, 0xf8, 0x50, 0x27, + 0x0f, 0xd2, 0xf1, 0x29, 0x8b, 0x8b, 0xc7, 0xa7, 0xaa, 0x95, 0xf7, 0x88, 0xd0, 0xb4, 0x28, 0x0e, + 0x69, 0x3b, 0x92, 0xf6, 0x88, 0xae, 0x2a, 0xee, 0x91, 0xa2, 0x85, 0x54, 0xe1, 0xcd, 0x28, 0x17, + 0x35, 0xb8, 0x56, 0xf6, 0xcf, 0xb4, 0x68, 0xbd, 0xf4, 0xb5, 0x98, 0xcd, 0xc6, 0x8b, 0x0a, 0x3c, + 0x01, 0x73, 0x47, 0xbd, 0x68, 0xc8, 0x2c, 0xce, 0x1b, 0x8d, 0x36, 0x8e, 0x58, 0x99, 0x37, 0x18, + 0x0e, 0xf7, 0x32, 0x29, 0x13, 0xe5, 0x65, 0x5e, 0x51, 0x23, 0x5a, 0x77, 0x08, 0x66, 0x6a, 0xd8, + 0xef, 0x90, 0x7e, 0x16, 0xe7, 0x39, 0xb7, 0x4e, 0x64, 0x72, 0x94, 0x95, 0x82, 0x5c, 0xc4, 0x68, + 0x83, 0xe7, 0x6f, 0x23, 0x8a, 0x2f, 0xfb, 0xbd, 0x88, 0x35, 0xa7, 0x16, 0xf8, 0x3e, 0xe9, 0x50, + 0xb6, 0x50, 0x3c, 0xee, 0x64, 0x56, 0x66, 0x81, 0x21, 0xb7, 0x39, 0x6f, 0x34, 0x8e, 0x30, 0xc5, + 0x0d, 0xdc, 0xb9, 0x25, 0x94, 0x6f, 0xc4, 0x2f, 0xc1, 0xc4, 0x69, 0xf4, 0xa6, 0xdf, 0x8b, 0x09, + 0x5c, 0xe4, 0x26, 0xe9, 0xaf, 0xfc, 0x8a, 0xaa, 0x08, 0x45, 0x6b, 0x4e, 0xc0, 0x74, 0x72, 0xdc, + 0x12, 0xdc, 0x25, 0xa1, 0xb4, 0x56, 0x25, 0x69, 0x71, 0xad, 0x2a, 0xca, 0xf4, 0x12, 0x5d, 0x07, + 0xb3, 0xc7, 0x84, 0xb6, 0x68, 0x10, 0x92, 0x16, 0xbe, 0x22, 0xed, 0x96, 0xbc, 0xf0, 0x73, 0xa9, + 0x61, 0xe1, 0xcb, 0xca, 0x34, 0x58, 0x1b, 0xcc, 0x1d, 0x13, 0xca, 0xce, 0xcf, 0x9f, 0x70, 0x8f, + 0x9e, 0xfa, 0x57, 0x81, 0x74, 0x73, 0xd5, 0x34, 0xc5, 0x9b, 0x6b, 0xc1, 0x20, 0x8d, 0xfa, 0x2d, + 0x98, 0xe0, 0xcc, 0xef, 0x50, 0xa8, 0x5c, 0x95, 0x98, 0xc4, 0x70, 0x87, 0xc9, 0x14, 0x89, 0xf7, + 0xe1, 0xe7, 0xff, 0xf8, 0xcb, 0x64, 0xe5, 0x6f, 0x1f, 0x37, 0x2a, 0x7f, 0xff, 0xb8, 0x51, 0xf9, + 0xe7, 0xc7, 0x8d, 0xca, 0x9f, 0xff, 0xb5, 0xe1, 0x80, 0xf9, 0x20, 0xbc, 0xe6, 0x8b, 0x70, 0xef, + 0x36, 0xe6, 0xff, 0x07, 0xe1, 0x72, 0x9c, 0xff, 0xf9, 0xe2, 0xbf, 0x01, 0x00, 0x00, 0xff, 0xff, + 0xee, 0xcd, 0x64, 0xb1, 0x0b, 0x21, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -1420,6 +1421,9 @@ type TikvClient interface { GetStoreSafeTS(ctx context.Context, in *kvrpcpb.StoreSafeTSRequest, opts ...grpc.CallOption) (*kvrpcpb.StoreSafeTSResponse, error) /// Get the information about lock waiting from TiKV. GetLockWaitInfo(ctx context.Context, in *kvrpcpb.GetLockWaitInfoRequest, opts ...grpc.CallOption) (*kvrpcpb.GetLockWaitInfoResponse, error) + /// Compact a specified key range. This request is not restricted to raft leaders and will not be replicated. + /// It only compacts data on this node. + Compact(ctx context.Context, in *kvrpcpb.CompactRequest, opts ...grpc.CallOption) (*kvrpcpb.CompactResponse, error) } type tikvClient struct { @@ -2073,6 +2077,15 @@ func (c *tikvClient) GetLockWaitInfo(ctx context.Context, in *kvrpcpb.GetLockWai return out, nil } +func (c *tikvClient) Compact(ctx context.Context, in *kvrpcpb.CompactRequest, opts ...grpc.CallOption) (*kvrpcpb.CompactResponse, error) { + out := new(kvrpcpb.CompactResponse) + err := c.cc.Invoke(ctx, "/tikvpb.Tikv/Compact", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + // TikvServer is the server API for Tikv service. type TikvServer interface { // Commands using a transactional interface. @@ -2149,6 +2162,9 @@ type TikvServer interface { GetStoreSafeTS(context.Context, *kvrpcpb.StoreSafeTSRequest) (*kvrpcpb.StoreSafeTSResponse, error) /// Get the information about lock waiting from TiKV. GetLockWaitInfo(context.Context, *kvrpcpb.GetLockWaitInfoRequest) (*kvrpcpb.GetLockWaitInfoResponse, error) + /// Compact a specified key range. This request is not restricted to raft leaders and will not be replicated. + /// It only compacts data on this node. + Compact(context.Context, *kvrpcpb.CompactRequest) (*kvrpcpb.CompactResponse, error) } // UnimplementedTikvServer can be embedded to have forward compatible implementations. @@ -2314,6 +2330,9 @@ func (*UnimplementedTikvServer) GetStoreSafeTS(ctx context.Context, req *kvrpcpb func (*UnimplementedTikvServer) GetLockWaitInfo(ctx context.Context, req *kvrpcpb.GetLockWaitInfoRequest) (*kvrpcpb.GetLockWaitInfoResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method GetLockWaitInfo not implemented") } +func (*UnimplementedTikvServer) Compact(ctx context.Context, req *kvrpcpb.CompactRequest) (*kvrpcpb.CompactResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method Compact not implemented") +} func RegisterTikvServer(s *grpc.Server, srv TikvServer) { s.RegisterService(&_Tikv_serviceDesc, srv) @@ -3314,6 +3333,24 @@ func _Tikv_GetLockWaitInfo_Handler(srv interface{}, ctx context.Context, dec fun return interceptor(ctx, in, info, handler) } +func _Tikv_Compact_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(kvrpcpb.CompactRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(TikvServer).Compact(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/tikvpb.Tikv/Compact", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(TikvServer).Compact(ctx, req.(*kvrpcpb.CompactRequest)) + } + return interceptor(ctx, in, info, handler) +} + var _Tikv_serviceDesc = grpc.ServiceDesc{ ServiceName: "tikvpb.Tikv", HandlerType: (*TikvServer)(nil), @@ -3502,6 +3539,10 @@ var _Tikv_serviceDesc = grpc.ServiceDesc{ MethodName: "GetLockWaitInfo", Handler: _Tikv_GetLockWaitInfo_Handler, }, + { + MethodName: "Compact", + Handler: _Tikv_Compact_Handler, + }, }, Streams: []grpc.StreamDesc{ { diff --git a/proto/kvrpcpb.proto b/proto/kvrpcpb.proto index 94c5219b3..44e027a02 100644 --- a/proto/kvrpcpb.proto +++ b/proto/kvrpcpb.proto @@ -1151,3 +1151,38 @@ message RawChecksumResponse { uint64 total_kvs = 4; uint64 total_bytes = 5; } + +message CompactError { + oneof error { + CompactErrorCompactInProgress err_compact_in_progress = 1; + CompactErrorTooManyPendingTasks err_too_many_pending_tasks = 2; + } +} + +message CompactErrorCompactInProgress {} + +message CompactErrorTooManyPendingTasks {} + +message CompactRequest { + // If specified, the compaction will be performed starting from this start key. + bytes start_key = 1; + + // TODO: this is information that TiKV doesn't need to know. + // See https://github.com/pingcap/kvproto/issues/912 + int64 physical_table_id = 2; + + // TODO: this is information that TiKV doesn't need to know. + // See https://github.com/pingcap/kvproto/issues/912 + int64 logical_table_id = 3; +} + +message CompactResponse { + CompactError error = 1; + + // The compaction is done incrementally. If there are more data to compact, this field + // will be set. The client can request to compact more data according to the `compacted_end_key`. + bool has_remaining = 2; + + bytes compacted_start_key = 3; + bytes compacted_end_key = 4; +} diff --git a/proto/tikvpb.proto b/proto/tikvpb.proto index c3fd6ad3e..701ec3e01 100644 --- a/proto/tikvpb.proto +++ b/proto/tikvpb.proto @@ -104,6 +104,10 @@ service Tikv { /// Get the information about lock waiting from TiKV. rpc GetLockWaitInfo(kvrpcpb.GetLockWaitInfoRequest) returns (kvrpcpb.GetLockWaitInfoResponse); + + /// Compact a specified key range. This request is not restricted to raft leaders and will not be replicated. + /// It only compacts data on this node. + rpc Compact(kvrpcpb.CompactRequest) returns (kvrpcpb.CompactResponse); } message BatchCommandsRequest { From 86121407a82d9e976060027f952ebb3d00b1c757 Mon Sep 17 00:00:00 2001 From: Wish Date: Tue, 17 May 2022 16:13:11 +0800 Subject: [PATCH 2/4] Add more compact errors --- pkg/kvrpcpb/kvrpcpb.pb.go | 1435 ++++++++++++++++++++++++++----------- proto/kvrpcpb.proto | 10 +- 2 files changed, 1032 insertions(+), 413 deletions(-) diff --git a/pkg/kvrpcpb/kvrpcpb.pb.go b/pkg/kvrpcpb/kvrpcpb.pb.go index be0f6677c..edae7834b 100644 --- a/pkg/kvrpcpb/kvrpcpb.pb.go +++ b/pkg/kvrpcpb/kvrpcpb.pb.go @@ -8289,7 +8289,10 @@ func (m *RawChecksumResponse) GetTotalBytes() uint64 { type CompactError struct { // Types that are valid to be assigned to Error: + // *CompactError_ErrInvalidStartKey + // *CompactError_ErrPhysicalTableNotExist // *CompactError_ErrCompactInProgress + // *CompactError_ErrTooManyPendingTasks Error isCompactError_Error `protobuf_oneof:"error"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` @@ -8335,11 +8338,23 @@ type isCompactError_Error interface { Size() int } +type CompactError_ErrInvalidStartKey struct { + ErrInvalidStartKey *CompactErrorInvalidStartKey `protobuf:"bytes,1,opt,name=err_invalid_start_key,json=errInvalidStartKey,proto3,oneof" json:"err_invalid_start_key,omitempty"` +} +type CompactError_ErrPhysicalTableNotExist struct { + ErrPhysicalTableNotExist *CompactErrorPhysicalTableNotExist `protobuf:"bytes,2,opt,name=err_physical_table_not_exist,json=errPhysicalTableNotExist,proto3,oneof" json:"err_physical_table_not_exist,omitempty"` +} type CompactError_ErrCompactInProgress struct { - ErrCompactInProgress *CompactErrorCompactInProgress `protobuf:"bytes,1,opt,name=err_compact_in_progress,json=errCompactInProgress,proto3,oneof" json:"err_compact_in_progress,omitempty"` + ErrCompactInProgress *CompactErrorCompactInProgress `protobuf:"bytes,3,opt,name=err_compact_in_progress,json=errCompactInProgress,proto3,oneof" json:"err_compact_in_progress,omitempty"` +} +type CompactError_ErrTooManyPendingTasks struct { + ErrTooManyPendingTasks *CompactErrorTooManyPendingTasks `protobuf:"bytes,4,opt,name=err_too_many_pending_tasks,json=errTooManyPendingTasks,proto3,oneof" json:"err_too_many_pending_tasks,omitempty"` } -func (*CompactError_ErrCompactInProgress) isCompactError_Error() {} +func (*CompactError_ErrInvalidStartKey) isCompactError_Error() {} +func (*CompactError_ErrPhysicalTableNotExist) isCompactError_Error() {} +func (*CompactError_ErrCompactInProgress) isCompactError_Error() {} +func (*CompactError_ErrTooManyPendingTasks) isCompactError_Error() {} func (m *CompactError) GetError() isCompactError_Error { if m != nil { @@ -8348,6 +8363,20 @@ func (m *CompactError) GetError() isCompactError_Error { return nil } +func (m *CompactError) GetErrInvalidStartKey() *CompactErrorInvalidStartKey { + if x, ok := m.GetError().(*CompactError_ErrInvalidStartKey); ok { + return x.ErrInvalidStartKey + } + return nil +} + +func (m *CompactError) GetErrPhysicalTableNotExist() *CompactErrorPhysicalTableNotExist { + if x, ok := m.GetError().(*CompactError_ErrPhysicalTableNotExist); ok { + return x.ErrPhysicalTableNotExist + } + return nil +} + func (m *CompactError) GetErrCompactInProgress() *CompactErrorCompactInProgress { if x, ok := m.GetError().(*CompactError_ErrCompactInProgress); ok { return x.ErrCompactInProgress @@ -8355,12 +8384,100 @@ func (m *CompactError) GetErrCompactInProgress() *CompactErrorCompactInProgress return nil } +func (m *CompactError) GetErrTooManyPendingTasks() *CompactErrorTooManyPendingTasks { + if x, ok := m.GetError().(*CompactError_ErrTooManyPendingTasks); ok { + return x.ErrTooManyPendingTasks + } + return nil +} + // XXX_OneofWrappers is for the internal use of the proto package. func (*CompactError) XXX_OneofWrappers() []interface{} { return []interface{}{ + (*CompactError_ErrInvalidStartKey)(nil), + (*CompactError_ErrPhysicalTableNotExist)(nil), (*CompactError_ErrCompactInProgress)(nil), + (*CompactError_ErrTooManyPendingTasks)(nil), + } +} + +type CompactErrorInvalidStartKey struct { + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *CompactErrorInvalidStartKey) Reset() { *m = CompactErrorInvalidStartKey{} } +func (m *CompactErrorInvalidStartKey) String() string { return proto.CompactTextString(m) } +func (*CompactErrorInvalidStartKey) ProtoMessage() {} +func (*CompactErrorInvalidStartKey) Descriptor() ([]byte, []int) { + return fileDescriptor_1afe832be69693c7, []int{111} +} +func (m *CompactErrorInvalidStartKey) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *CompactErrorInvalidStartKey) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_CompactErrorInvalidStartKey.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *CompactErrorInvalidStartKey) XXX_Merge(src proto.Message) { + xxx_messageInfo_CompactErrorInvalidStartKey.Merge(m, src) +} +func (m *CompactErrorInvalidStartKey) XXX_Size() int { + return m.Size() +} +func (m *CompactErrorInvalidStartKey) XXX_DiscardUnknown() { + xxx_messageInfo_CompactErrorInvalidStartKey.DiscardUnknown(m) +} + +var xxx_messageInfo_CompactErrorInvalidStartKey proto.InternalMessageInfo + +type CompactErrorPhysicalTableNotExist struct { + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *CompactErrorPhysicalTableNotExist) Reset() { *m = CompactErrorPhysicalTableNotExist{} } +func (m *CompactErrorPhysicalTableNotExist) String() string { return proto.CompactTextString(m) } +func (*CompactErrorPhysicalTableNotExist) ProtoMessage() {} +func (*CompactErrorPhysicalTableNotExist) Descriptor() ([]byte, []int) { + return fileDescriptor_1afe832be69693c7, []int{112} +} +func (m *CompactErrorPhysicalTableNotExist) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *CompactErrorPhysicalTableNotExist) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_CompactErrorPhysicalTableNotExist.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil } } +func (m *CompactErrorPhysicalTableNotExist) XXX_Merge(src proto.Message) { + xxx_messageInfo_CompactErrorPhysicalTableNotExist.Merge(m, src) +} +func (m *CompactErrorPhysicalTableNotExist) XXX_Size() int { + return m.Size() +} +func (m *CompactErrorPhysicalTableNotExist) XXX_DiscardUnknown() { + xxx_messageInfo_CompactErrorPhysicalTableNotExist.DiscardUnknown(m) +} + +var xxx_messageInfo_CompactErrorPhysicalTableNotExist proto.InternalMessageInfo type CompactErrorCompactInProgress struct { XXX_NoUnkeyedLiteral struct{} `json:"-"` @@ -8372,7 +8489,7 @@ func (m *CompactErrorCompactInProgress) Reset() { *m = CompactErrorCompa func (m *CompactErrorCompactInProgress) String() string { return proto.CompactTextString(m) } func (*CompactErrorCompactInProgress) ProtoMessage() {} func (*CompactErrorCompactInProgress) Descriptor() ([]byte, []int) { - return fileDescriptor_1afe832be69693c7, []int{111} + return fileDescriptor_1afe832be69693c7, []int{113} } func (m *CompactErrorCompactInProgress) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8401,10 +8518,54 @@ func (m *CompactErrorCompactInProgress) XXX_DiscardUnknown() { var xxx_messageInfo_CompactErrorCompactInProgress proto.InternalMessageInfo +type CompactErrorTooManyPendingTasks struct { + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *CompactErrorTooManyPendingTasks) Reset() { *m = CompactErrorTooManyPendingTasks{} } +func (m *CompactErrorTooManyPendingTasks) String() string { return proto.CompactTextString(m) } +func (*CompactErrorTooManyPendingTasks) ProtoMessage() {} +func (*CompactErrorTooManyPendingTasks) Descriptor() ([]byte, []int) { + return fileDescriptor_1afe832be69693c7, []int{114} +} +func (m *CompactErrorTooManyPendingTasks) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *CompactErrorTooManyPendingTasks) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_CompactErrorTooManyPendingTasks.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *CompactErrorTooManyPendingTasks) XXX_Merge(src proto.Message) { + xxx_messageInfo_CompactErrorTooManyPendingTasks.Merge(m, src) +} +func (m *CompactErrorTooManyPendingTasks) XXX_Size() int { + return m.Size() +} +func (m *CompactErrorTooManyPendingTasks) XXX_DiscardUnknown() { + xxx_messageInfo_CompactErrorTooManyPendingTasks.DiscardUnknown(m) +} + +var xxx_messageInfo_CompactErrorTooManyPendingTasks proto.InternalMessageInfo + type CompactRequest struct { - Id []byte `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` - StartKey []byte `protobuf:"bytes,2,opt,name=start_key,json=startKey,proto3" json:"start_key,omitempty"` - MaxEndKey []byte `protobuf:"bytes,3,opt,name=max_end_key,json=maxEndKey,proto3" json:"max_end_key,omitempty"` + // If specified, the compaction will be performed starting from this start key. + StartKey []byte `protobuf:"bytes,1,opt,name=start_key,json=startKey,proto3" json:"start_key,omitempty"` + // TODO: this is information that TiKV doesn't need to know. + // See https://github.com/pingcap/kvproto/issues/912 + PhysicalTableId int64 `protobuf:"varint,2,opt,name=physical_table_id,json=physicalTableId,proto3" json:"physical_table_id,omitempty"` + // TODO: this is information that TiKV doesn't need to know. + // See https://github.com/pingcap/kvproto/issues/912 + LogicalTableId int64 `protobuf:"varint,3,opt,name=logical_table_id,json=logicalTableId,proto3" json:"logical_table_id,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -8414,7 +8575,7 @@ func (m *CompactRequest) Reset() { *m = CompactRequest{} } func (m *CompactRequest) String() string { return proto.CompactTextString(m) } func (*CompactRequest) ProtoMessage() {} func (*CompactRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_1afe832be69693c7, []int{112} + return fileDescriptor_1afe832be69693c7, []int{115} } func (m *CompactRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8443,42 +8604,44 @@ func (m *CompactRequest) XXX_DiscardUnknown() { var xxx_messageInfo_CompactRequest proto.InternalMessageInfo -func (m *CompactRequest) GetId() []byte { +func (m *CompactRequest) GetStartKey() []byte { if m != nil { - return m.Id + return m.StartKey } return nil } -func (m *CompactRequest) GetStartKey() []byte { +func (m *CompactRequest) GetPhysicalTableId() int64 { if m != nil { - return m.StartKey + return m.PhysicalTableId } - return nil + return 0 } -func (m *CompactRequest) GetMaxEndKey() []byte { +func (m *CompactRequest) GetLogicalTableId() int64 { if m != nil { - return m.MaxEndKey + return m.LogicalTableId } - return nil + return 0 } type CompactResponse struct { - Error *CompactError `protobuf:"bytes,1,opt,name=error,proto3" json:"error,omitempty"` - HasRemaining bool `protobuf:"varint,2,opt,name=has_remaining,json=hasRemaining,proto3" json:"has_remaining,omitempty"` - CompactedStartKey []byte `protobuf:"bytes,3,opt,name=compacted_start_key,json=compactedStartKey,proto3" json:"compacted_start_key,omitempty"` - CompactedEndKey []byte `protobuf:"bytes,4,opt,name=compacted_end_key,json=compactedEndKey,proto3" json:"compacted_end_key,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + Error *CompactError `protobuf:"bytes,1,opt,name=error,proto3" json:"error,omitempty"` + // The compaction is done incrementally. If there are more data to compact, this field + // will be set. The client can request to compact more data according to the `compacted_end_key`. + HasRemaining bool `protobuf:"varint,2,opt,name=has_remaining,json=hasRemaining,proto3" json:"has_remaining,omitempty"` + CompactedStartKey []byte `protobuf:"bytes,3,opt,name=compacted_start_key,json=compactedStartKey,proto3" json:"compacted_start_key,omitempty"` + CompactedEndKey []byte `protobuf:"bytes,4,opt,name=compacted_end_key,json=compactedEndKey,proto3" json:"compacted_end_key,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *CompactResponse) Reset() { *m = CompactResponse{} } func (m *CompactResponse) String() string { return proto.CompactTextString(m) } func (*CompactResponse) ProtoMessage() {} func (*CompactResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_1afe832be69693c7, []int{113} + return fileDescriptor_1afe832be69693c7, []int{116} } func (m *CompactResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8657,7 +8820,10 @@ func init() { proto.RegisterType((*RawChecksumRequest)(nil), "kvrpcpb.RawChecksumRequest") proto.RegisterType((*RawChecksumResponse)(nil), "kvrpcpb.RawChecksumResponse") proto.RegisterType((*CompactError)(nil), "kvrpcpb.CompactError") + proto.RegisterType((*CompactErrorInvalidStartKey)(nil), "kvrpcpb.CompactErrorInvalidStartKey") + proto.RegisterType((*CompactErrorPhysicalTableNotExist)(nil), "kvrpcpb.CompactErrorPhysicalTableNotExist") proto.RegisterType((*CompactErrorCompactInProgress)(nil), "kvrpcpb.CompactErrorCompactInProgress") + proto.RegisterType((*CompactErrorTooManyPendingTasks)(nil), "kvrpcpb.CompactErrorTooManyPendingTasks") proto.RegisterType((*CompactRequest)(nil), "kvrpcpb.CompactRequest") proto.RegisterType((*CompactResponse)(nil), "kvrpcpb.CompactResponse") } @@ -8665,326 +8831,335 @@ func init() { func init() { proto.RegisterFile("kvrpcpb.proto", fileDescriptor_1afe832be69693c7) } var fileDescriptor_1afe832be69693c7 = []byte{ - // 5104 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xdc, 0x7c, 0xdd, 0x6f, 0x23, 0xc9, - 0x71, 0xf8, 0x0e, 0x3f, 0x44, 0xb2, 0x48, 0x91, 0xa3, 0x96, 0xb4, 0xe2, 0xee, 0xde, 0xdd, 0xea, - 0xc6, 0xbf, 0xbd, 0x95, 0x75, 0x77, 0x5a, 0x9f, 0x7c, 0xbe, 0x9f, 0x93, 0x18, 0xf1, 0xed, 0x6a, - 0xbf, 0x74, 0xab, 0x5b, 0x09, 0x43, 0x7a, 0x2f, 0x07, 0xe4, 0x3c, 0xee, 0x1d, 0x36, 0xa9, 0x01, - 0x87, 0x33, 0x73, 0x33, 0x4d, 0x2e, 0x69, 0x23, 0x40, 0x9c, 0x2f, 0x20, 0x40, 0x12, 0x27, 0x8e, - 0x81, 0x33, 0x90, 0x20, 0x40, 0x1e, 0x0e, 0x48, 0xf2, 0x96, 0xb7, 0x20, 0x40, 0x72, 0x08, 0x90, - 0x07, 0xc7, 0x40, 0x60, 0x3f, 0x06, 0xc9, 0x43, 0x92, 0xcb, 0x4b, 0xf2, 0x07, 0xe4, 0x25, 0x4f, - 0x41, 0x7f, 0xcd, 0x07, 0xc9, 0xd5, 0xea, 0x68, 0x69, 0x6d, 0xe4, 0x49, 0xec, 0xaa, 0x9a, 0xee, - 0xaa, 0xea, 0xea, 0xea, 0xea, 0xea, 0x6a, 0xc1, 0x72, 0x7f, 0x14, 0x06, 0x76, 0xf0, 0x78, 0x27, - 0x08, 0x7d, 0xea, 0xa3, 0x92, 0x6c, 0x5e, 0xae, 0x0d, 0x08, 0xc5, 0x0a, 0x7c, 0x79, 0x99, 0x84, - 0xa1, 0x1f, 0xc6, 0xcd, 0xb5, 0x9e, 0xdf, 0xf3, 0xf9, 0xcf, 0x1b, 0xec, 0x97, 0x84, 0x36, 0xc2, - 0x61, 0x44, 0xf9, 0x4f, 0x09, 0xa8, 0x77, 0x08, 0xee, 0xb8, 0xbe, 0xdd, 0x57, 0xbd, 0xd0, 0x10, - 0xdb, 0x44, 0xf5, 0x62, 0x74, 0x00, 0xee, 0x11, 0x6a, 0x92, 0x0f, 0x87, 0x24, 0xa2, 0x68, 0x1b, - 0x4a, 0xb6, 0xef, 0x51, 0x32, 0xa6, 0x4d, 0x6d, 0x53, 0xdb, 0xaa, 0xee, 0xea, 0x3b, 0x8a, 0xb5, - 0x3d, 0x01, 0x37, 0x15, 0x01, 0xd2, 0x21, 0xdf, 0x27, 0x93, 0x66, 0x6e, 0x53, 0xdb, 0xaa, 0x99, - 0xec, 0x27, 0x6a, 0x42, 0x69, 0x44, 0xc2, 0xc8, 0xf1, 0xbd, 0x66, 0x7e, 0x53, 0xdb, 0x2a, 0x98, - 0xaa, 0x69, 0x7c, 0xaa, 0x41, 0x95, 0x0f, 0x13, 0x05, 0xbe, 0x17, 0x11, 0xf4, 0x06, 0xd4, 0x42, - 0xd2, 0x73, 0x7c, 0xcf, 0xe2, 0x32, 0xc9, 0xc1, 0xea, 0x3b, 0x4a, 0xc2, 0x3b, 0xec, 0xaf, 0x59, - 0x15, 0x34, 0xbc, 0x81, 0xae, 0x43, 0x51, 0xd0, 0xe6, 0x38, 0xed, 0x4a, 0xcc, 0xd8, 0x03, 0x32, - 0x11, 0xe4, 0x02, 0x8f, 0xd6, 0xa0, 0x38, 0xc2, 0xee, 0x90, 0x70, 0x1e, 0x6a, 0xa6, 0x68, 0xa0, - 0x2b, 0x50, 0xf1, 0x7c, 0x6a, 0x75, 0xfd, 0xa1, 0xd7, 0x69, 0x16, 0x36, 0xb5, 0xad, 0xb2, 0x59, - 0xf6, 0x7c, 0x7a, 0x97, 0xb5, 0xd1, 0x2f, 0x42, 0x83, 0x8c, 0x89, 0x6d, 0x75, 0x08, 0xc5, 0x8e, - 0x1b, 0x59, 0xa3, 0xdd, 0xe6, 0x12, 0x1f, 0xe5, 0x62, 0x3c, 0xca, 0x9d, 0x31, 0xb1, 0x6f, 0x0b, - 0xf4, 0xa3, 0x5d, 0x73, 0x99, 0xa4, 0x9b, 0xef, 0x14, 0xca, 0x45, 0x7d, 0xc9, 0xf8, 0x6f, 0x0d, - 0xaa, 0x2d, 0x1b, 0x7b, 0x8b, 0x28, 0xf3, 0x0a, 0x54, 0x22, 0x8a, 0x43, 0x6a, 0x25, 0x2a, 0x2d, - 0x73, 0xc0, 0x03, 0x32, 0x61, 0x12, 0xb9, 0xce, 0xc0, 0xa1, 0x5c, 0xa2, 0x65, 0x53, 0x34, 0xd2, - 0xda, 0x2e, 0x64, 0xb4, 0x8d, 0x2e, 0x41, 0xb9, 0x4f, 0x26, 0x96, 0xef, 0xb9, 0x93, 0x66, 0x91, - 0x8b, 0x5a, 0xea, 0x93, 0xc9, 0xa1, 0xe7, 0xf2, 0x29, 0x0a, 0x09, 0xa3, 0x23, 0x5c, 0xc2, 0xb2, - 0xa9, 0x9a, 0x68, 0x03, 0x4a, 0xc4, 0xeb, 0xf0, 0xf1, 0x4b, 0x7c, 0xfc, 0x25, 0xe2, 0x75, 0xd8, - 0xe8, 0x57, 0xa1, 0x1a, 0xe1, 0x41, 0xe0, 0x12, 0x2b, 0xa2, 0x24, 0x68, 0x96, 0x39, 0x0f, 0x20, - 0x40, 0x2d, 0x4a, 0x02, 0xe3, 0x0f, 0x34, 0xa8, 0x09, 0xb9, 0x17, 0x9f, 0xdd, 0x6b, 0x50, 0x0c, - 0xb0, 0x13, 0x46, 0xcd, 0xdc, 0x66, 0x7e, 0xab, 0xba, 0xdb, 0x48, 0x66, 0x77, 0x74, 0x84, 0x9d, - 0xd0, 0x14, 0xd8, 0xc4, 0x08, 0xf2, 0x27, 0x1b, 0x81, 0xf1, 0x9f, 0x05, 0x68, 0x1c, 0x85, 0xe4, - 0x49, 0xe8, 0x50, 0xb2, 0xc8, 0x7c, 0xdc, 0x80, 0xca, 0x60, 0x48, 0x31, 0x75, 0x7c, 0x4f, 0xf1, - 0x94, 0x0c, 0xf6, 0xae, 0xc4, 0x98, 0x09, 0x0d, 0x7a, 0x19, 0x6a, 0x41, 0xe8, 0x0c, 0x70, 0x38, - 0xb1, 0xd8, 0x62, 0x93, 0xc6, 0x57, 0x95, 0xb0, 0x03, 0xdf, 0xee, 0xa3, 0xcf, 0xc1, 0xb2, 0x98, - 0xe3, 0xec, 0xb4, 0xd5, 0x38, 0xf0, 0x51, 0x32, 0x77, 0xec, 0x7b, 0x8b, 0x52, 0x97, 0xcf, 0x5d, - 0xc1, 0x2c, 0xb1, 0x76, 0x9b, 0xba, 0x68, 0x17, 0xd6, 0xa3, 0xbe, 0x13, 0x58, 0xb6, 0xef, 0x45, - 0x34, 0xc4, 0x8e, 0x47, 0x2d, 0xfb, 0x98, 0xd8, 0x7d, 0x39, 0x93, 0xab, 0x0c, 0xb9, 0x17, 0xe3, - 0xf6, 0x18, 0x0a, 0xed, 0xc0, 0xaa, 0x13, 0x59, 0x01, 0x89, 0x22, 0x67, 0xe0, 0x44, 0xd4, 0xb1, - 0x05, 0x77, 0xa5, 0xcd, 0xfc, 0x56, 0xd9, 0x5c, 0x71, 0xa2, 0xa3, 0x04, 0xc3, 0x79, 0xbc, 0x04, - 0x65, 0x3a, 0xf6, 0xac, 0xc8, 0xf9, 0x26, 0xe1, 0x33, 0x5d, 0x30, 0x4b, 0x74, 0xec, 0xb5, 0x9c, - 0x6f, 0x12, 0x64, 0xc0, 0x72, 0xd7, 0x0f, 0xad, 0x61, 0xd0, 0xc1, 0x94, 0x58, 0x34, 0x6a, 0x56, - 0x38, 0xbe, 0xda, 0xf5, 0xc3, 0xaf, 0x71, 0x58, 0x3b, 0x62, 0x34, 0x03, 0xc7, 0xb3, 0x6c, 0x7f, - 0x30, 0x70, 0x28, 0xa3, 0x01, 0x41, 0x33, 0x70, 0xbc, 0x3d, 0x0e, 0x6b, 0x47, 0x68, 0x0b, 0xf4, - 0x61, 0x44, 0x2c, 0x1c, 0x4d, 0x3c, 0x5b, 0x52, 0x36, 0xab, 0x5c, 0x82, 0xfa, 0x30, 0x22, 0x37, - 0x19, 0x58, 0xd0, 0xa2, 0x4d, 0xa8, 0x46, 0xc4, 0xf6, 0xbd, 0x0e, 0x0e, 0x1d, 0x12, 0x35, 0x6b, - 0x9b, 0x79, 0xa6, 0xd2, 0x14, 0x08, 0xbd, 0x00, 0x40, 0x43, 0x66, 0xe9, 0xc4, 0x0a, 0xec, 0xe6, - 0xb2, 0x58, 0xd6, 0x34, 0x9c, 0x1c, 0x7a, 0xe4, 0xc8, 0xe6, 0xdc, 0xe0, 0x71, 0x8a, 0x9b, 0xba, - 0xe4, 0x06, 0x8f, 0x63, 0x6e, 0xde, 0x86, 0x06, 0x8e, 0x22, 0x12, 0xb2, 0x59, 0xb4, 0x5c, 0x32, - 0x22, 0x6e, 0xb3, 0xb1, 0xa9, 0x6d, 0xd5, 0x77, 0x37, 0xe2, 0xe9, 0xbe, 0xa9, 0xf0, 0x07, 0x0c, - 0x6d, 0xd6, 0x71, 0xa6, 0x6d, 0xfc, 0x8d, 0x06, 0x7a, 0x62, 0x6a, 0x8b, 0x2f, 0x81, 0xcf, 0xc3, - 0x12, 0xc7, 0xce, 0xda, 0x5b, 0x6c, 0xdc, 0x92, 0x60, 0x56, 0xcd, 0xf9, 0x59, 0x35, 0x5f, 0x07, - 0x5d, 0xa8, 0x25, 0x45, 0x26, 0x0c, 0x6e, 0xd9, 0x67, 0xda, 0x51, 0x84, 0xc6, 0x8f, 0xf2, 0x70, - 0x71, 0xca, 0x0c, 0xfe, 0xaf, 0xac, 0x98, 0x19, 0x93, 0x5d, 0x9a, 0x6b, 0xb2, 0x4e, 0x64, 0x75, - 0x9d, 0x30, 0xa2, 0x6a, 0x6d, 0x30, 0x2b, 0xaa, 0x3a, 0xd1, 0x5d, 0x06, 0xe3, 0x7c, 0xbc, 0x0c, - 0xb5, 0x27, 0x98, 0xa9, 0xd0, 0x19, 0x10, 0x7f, 0x48, 0xf9, 0xca, 0xc8, 0x9b, 0x55, 0x06, 0x6b, - 0x0b, 0x10, 0x6a, 0x42, 0xb1, 0xeb, 0x87, 0x36, 0xe1, 0xab, 0xa2, 0x7c, 0x2b, 0xd7, 0xd4, 0x4c, - 0x01, 0x60, 0x42, 0x84, 0x84, 0x0e, 0x43, 0xcf, 0xe2, 0x3b, 0x91, 0x58, 0x13, 0x65, 0xb3, 0x26, - 0x80, 0x8f, 0x38, 0x6c, 0x76, 0x46, 0xab, 0xf3, 0x66, 0xb4, 0xc1, 0xd7, 0xbb, 0x45, 0xc6, 0x4e, - 0x44, 0x89, 0x67, 0x93, 0x66, 0x4d, 0xac, 0x1b, 0x0e, 0xbe, 0xa3, 0xa0, 0xc6, 0x7f, 0x69, 0xb0, - 0x31, 0x33, 0xa3, 0xcf, 0xc5, 0x30, 0xaf, 0x42, 0x65, 0xca, 0x28, 0xb9, 0x26, 0xca, 0xb6, 0x92, - 0xa1, 0xa9, 0x36, 0x67, 0x36, 0x93, 0x35, 0xa1, 0x26, 0xb1, 0x41, 0x5f, 0x84, 0x25, 0xa9, 0x9f, - 0x22, 0x5f, 0xe7, 0xb2, 0x85, 0x5e, 0x04, 0x88, 0x37, 0x6e, 0x36, 0x81, 0xcc, 0x71, 0x55, 0xd4, - 0xce, 0x1d, 0x19, 0x1f, 0x6b, 0x70, 0x39, 0x25, 0xab, 0xe9, 0xbb, 0xee, 0x63, 0xbc, 0x98, 0x05, - 0xcf, 0x58, 0x5b, 0x6e, 0x8e, 0xb5, 0xcd, 0x98, 0x54, 0x7e, 0xd6, 0xa4, 0x10, 0x14, 0xfa, 0x64, - 0xc2, 0x96, 0x1b, 0x13, 0x84, 0xff, 0x36, 0xbe, 0x05, 0x57, 0xe6, 0xb2, 0xf9, 0x3c, 0xa6, 0xc5, - 0xf8, 0x4b, 0x0d, 0x56, 0xdb, 0x63, 0xef, 0x3e, 0xc1, 0x21, 0xbd, 0x45, 0xf0, 0x42, 0xe1, 0xde, - 0xf4, 0x72, 0xcd, 0x9d, 0x62, 0xb9, 0xe6, 0xe7, 0x28, 0xf0, 0x15, 0x68, 0xe0, 0xce, 0xc8, 0x89, - 0x88, 0x15, 0xaf, 0x5a, 0xe9, 0x96, 0x04, 0xf8, 0x40, 0xac, 0x5d, 0xe3, 0x77, 0x35, 0x58, 0xcb, - 0xf2, 0xfc, 0x1c, 0x62, 0xc7, 0xb4, 0x2f, 0xc9, 0x67, 0x7c, 0x89, 0xf1, 0xef, 0x39, 0x58, 0xe7, - 0x7b, 0x6a, 0x7b, 0xec, 0xb5, 0x28, 0xa6, 0xc3, 0x68, 0x11, 0x2d, 0x5e, 0x05, 0xa5, 0xb1, 0x54, - 0xa4, 0x07, 0x12, 0xc4, 0xa2, 0xad, 0x0d, 0x28, 0x09, 0x0e, 0x94, 0x65, 0x2d, 0x71, 0x06, 0x22, - 0xa6, 0x37, 0x1b, 0xbb, 0x2e, 0x09, 0x2d, 0xa1, 0xe3, 0xc4, 0x9d, 0x0b, 0x70, 0x8b, 0x41, 0xdb, - 0x7c, 0xbd, 0xd8, 0xc3, 0x30, 0x24, 0x1e, 0x27, 0x11, 0x0e, 0xb1, 0x22, 0x21, 0xed, 0x08, 0xbd, - 0x01, 0xeb, 0xa1, 0x34, 0x3e, 0xcb, 0xe9, 0x5a, 0x6c, 0x69, 0x71, 0x77, 0x22, 0x83, 0x08, 0xa4, - 0x90, 0xfb, 0xdd, 0x87, 0x3e, 0xe5, 0x2e, 0x05, 0x6d, 0xc3, 0x0a, 0xf7, 0x64, 0x56, 0x7a, 0xc7, - 0x16, 0x5e, 0xb2, 0xc1, 0x11, 0xad, 0x64, 0xcb, 0xfe, 0x0a, 0x5c, 0x0e, 0x49, 0xe4, 0xbb, 0x23, - 0xc7, 0xeb, 0xcd, 0x86, 0x1d, 0x65, 0xfe, 0x51, 0x33, 0xa6, 0x98, 0x72, 0x52, 0xc6, 0x77, 0x72, - 0x70, 0x71, 0x5a, 0xc7, 0x3f, 0xd5, 0x59, 0x47, 0xd7, 0xa0, 0x2e, 0x1d, 0x5a, 0x76, 0x0b, 0x5a, - 0x16, 0x50, 0x65, 0xd4, 0xd7, 0x61, 0x09, 0xdb, 0x6c, 0x5b, 0xe3, 0x0a, 0xaf, 0xa7, 0xe2, 0xd7, - 0x9b, 0x1c, 0x6c, 0x4a, 0x34, 0xda, 0x81, 0x0a, 0x1f, 0xca, 0xf1, 0xba, 0xbe, 0x3c, 0x63, 0x24, - 0x7c, 0x31, 0x1d, 0xec, 0x7b, 0x5d, 0xdf, 0xe4, 0xec, 0xb0, 0x5f, 0xc6, 0xb7, 0x35, 0xb8, 0xcc, - 0x35, 0xd2, 0x92, 0x51, 0x0f, 0x5f, 0x69, 0x0b, 0x99, 0x9e, 0xf2, 0x4a, 0xb9, 0xc4, 0x2b, 0x9d, - 0x6a, 0xc5, 0x1a, 0x9f, 0x68, 0x70, 0x65, 0x2e, 0x0f, 0xcf, 0x61, 0x6a, 0xae, 0x43, 0x91, 0xe9, - 0x82, 0x2d, 0x86, 0xfc, 0x7c, 0x5d, 0x09, 0x3c, 0x3b, 0x40, 0x4d, 0xc7, 0x39, 0xf1, 0xae, 0x63, - 0xfc, 0xb9, 0x06, 0xcb, 0xc2, 0x40, 0xcf, 0x6d, 0x5f, 0x50, 0xda, 0xcd, 0xa7, 0xb4, 0x7b, 0x3a, - 0xe3, 0x11, 0xa7, 0x47, 0x73, 0xe9, 0xb1, 0xe3, 0xb9, 0x7e, 0xcf, 0xf8, 0x43, 0x0d, 0xea, 0x8a, - 0xd7, 0xe7, 0xa0, 0xe0, 0x59, 0x1e, 0xf3, 0x73, 0x78, 0x34, 0x7a, 0xb0, 0xbc, 0x3f, 0x08, 0xfc, - 0x30, 0x56, 0x60, 0x26, 0xdc, 0xd3, 0x4e, 0x11, 0xee, 0xcd, 0x0e, 0x94, 0x9b, 0x37, 0xd0, 0xfb, - 0x50, 0x57, 0x03, 0x2d, 0x2e, 0xfd, 0x5a, 0x5a, 0xfa, 0x8a, 0x3a, 0x13, 0x7e, 0x97, 0x69, 0xd6, - 0x25, 0xd8, 0x1b, 0x06, 0x67, 0x93, 0xef, 0x38, 0xd5, 0x7e, 0x97, 0xf5, 0xc7, 0x85, 0x29, 0x7f, - 0x6c, 0x7c, 0x4f, 0x83, 0x46, 0xcc, 0xd4, 0xcf, 0xce, 0x7c, 0xf7, 0xa1, 0x71, 0x0b, 0x53, 0xfb, - 0x78, 0xc1, 0xdc, 0xd0, 0x3c, 0x5f, 0xf3, 0xf4, 0xec, 0xd0, 0xbf, 0x68, 0xa0, 0x27, 0xa3, 0x9d, - 0x7b, 0x12, 0x61, 0x4e, 0xb6, 0xa7, 0xf0, 0x19, 0xb2, 0x3d, 0x89, 0xae, 0x8b, 0x27, 0xeb, 0xfa, - 0x9d, 0x42, 0x39, 0xaf, 0x17, 0x8c, 0x6f, 0xc1, 0x1a, 0x17, 0xee, 0xdc, 0x43, 0xd3, 0x39, 0x2e, - 0xc8, 0x88, 0x60, 0x7d, 0x6a, 0xf0, 0xf3, 0xb7, 0x31, 0xe3, 0x2f, 0x34, 0x68, 0xb4, 0x6c, 0xec, - 0x2d, 0x7a, 0x94, 0xbc, 0x0a, 0xec, 0x88, 0x3e, 0x25, 0x2b, 0x0c, 0xf0, 0x58, 0x49, 0x9a, 0xc9, - 0x96, 0xe5, 0x9f, 0x96, 0x2d, 0x2b, 0xa4, 0xb3, 0x65, 0xa9, 0xf4, 0x56, 0x31, 0x9d, 0xde, 0x32, - 0x3e, 0xd2, 0x40, 0x4f, 0x98, 0xfd, 0x19, 0xda, 0xd2, 0x8c, 0x1f, 0x69, 0x80, 0x4c, 0x1e, 0x2a, - 0x91, 0x45, 0x35, 0x79, 0x2a, 0xbb, 0x39, 0x9d, 0x4b, 0x40, 0xaf, 0x43, 0x85, 0x8e, 0x3d, 0x1e, - 0xb9, 0x88, 0xa3, 0x4d, 0x7a, 0xe4, 0xf6, 0xd8, 0x13, 0x91, 0x0b, 0x15, 0x3f, 0x92, 0x43, 0x50, - 0x31, 0x65, 0x8d, 0x1f, 0xc2, 0x6a, 0x46, 0xa0, 0xe7, 0x60, 0x8b, 0x8f, 0xa0, 0x72, 0x6f, 0x6f, - 0x11, 0xd5, 0xbd, 0x08, 0x10, 0xe1, 0x2e, 0xb1, 0x02, 0xdf, 0xf1, 0xa8, 0xd4, 0x5b, 0x85, 0x41, - 0x8e, 0x18, 0xc0, 0x38, 0x06, 0x60, 0xfd, 0x3e, 0x07, 0x09, 0x3e, 0xd2, 0x00, 0xdd, 0x26, 0x2e, - 0xa1, 0xc4, 0xc4, 0x5e, 0x8f, 0x9c, 0x79, 0x76, 0x39, 0xb5, 0x32, 0xf2, 0xd3, 0x89, 0x5f, 0xcf, - 0xa7, 0x4e, 0x57, 0x66, 0x92, 0x45, 0xd2, 0x1c, 0x04, 0xe8, 0xd0, 0x73, 0x27, 0xc6, 0xd7, 0x61, - 0x35, 0xc3, 0xd8, 0x59, 0x6f, 0xd8, 0x1f, 0xc0, 0xb2, 0x89, 0x9f, 0x9c, 0xd9, 0xf5, 0x44, 0x1d, - 0x72, 0x76, 0x97, 0xcb, 0x58, 0x31, 0x73, 0x76, 0xd7, 0xf8, 0x1d, 0x0d, 0xea, 0xaa, 0xff, 0x33, - 0x66, 0x7d, 0x81, 0x4b, 0x08, 0xa3, 0x03, 0xc8, 0xc4, 0x4f, 0xce, 0x7a, 0xd7, 0x9d, 0x16, 0xda, - 0x87, 0xd5, 0xcc, 0x28, 0xe7, 0xbd, 0xdb, 0x1a, 0x7f, 0xa2, 0xf1, 0x59, 0x3c, 0x1a, 0x9e, 0xd1, - 0x2c, 0xce, 0xd7, 0xac, 0x10, 0xb3, 0xa0, 0xc4, 0x64, 0xdf, 0x25, 0xf9, 0x40, 0xf6, 0x93, 0x99, - 0x79, 0xd7, 0x0f, 0x2d, 0x1b, 0x47, 0xf2, 0xa8, 0xbb, 0xd4, 0xf5, 0xc3, 0x3d, 0x1c, 0xb1, 0x88, - 0x53, 0xf1, 0x77, 0xd6, 0x06, 0xfc, 0xd7, 0x5a, 0x32, 0xa7, 0x0b, 0x2a, 0xe0, 0x94, 0x31, 0xcd, - 0xd4, 0x34, 0xa3, 0x35, 0x21, 0x7f, 0x21, 0x4e, 0xc1, 0x4d, 0xeb, 0xa0, 0x98, 0xd6, 0x01, 0xb3, - 0x1c, 0x4a, 0x5d, 0x91, 0x5e, 0x2b, 0x98, 0xfc, 0x37, 0x5b, 0xdd, 0x19, 0xde, 0xcf, 0x5a, 0x39, - 0x13, 0xd0, 0x4d, 0xfc, 0x44, 0x3a, 0x90, 0xf3, 0x58, 0xe0, 0x69, 0x71, 0x0b, 0x99, 0x29, 0xff, - 0x65, 0x58, 0x49, 0x0d, 0x7d, 0xd6, 0x82, 0xfd, 0xaa, 0x06, 0xeb, 0x4a, 0x73, 0x8b, 0x8b, 0x77, - 0x8a, 0xc5, 0xfc, 0x74, 0x01, 0x31, 0x5c, 0x9c, 0xe6, 0xe0, 0xac, 0xa5, 0xfc, 0x47, 0xe1, 0x3d, - 0x9f, 0xe3, 0x85, 0x67, 0xfa, 0x5a, 0xb3, 0x90, 0xbd, 0xd6, 0x14, 0x8a, 0x29, 0xc6, 0x8a, 0xf9, - 0xec, 0xd7, 0x9c, 0x46, 0x0f, 0x1a, 0xb1, 0x38, 0x8b, 0xeb, 0xea, 0x65, 0xc8, 0xf7, 0x47, 0x4f, - 0x5d, 0xac, 0x0c, 0x67, 0xfc, 0xb6, 0x30, 0x8f, 0x9f, 0xca, 0x96, 0x3e, 0xe5, 0x26, 0xa5, 0x9d, - 0x9c, 0xeb, 0x26, 0xfe, 0x63, 0x2d, 0xf1, 0x23, 0x8b, 0x1a, 0xcb, 0xe7, 0x61, 0x29, 0x64, 0xdc, - 0xcd, 0x4d, 0x75, 0x0b, 0xbe, 0x25, 0x01, 0x0b, 0xdb, 0x08, 0xb6, 0x8f, 0xad, 0xb4, 0xfd, 0x54, - 0x18, 0xe4, 0xe0, 0xcc, 0x6c, 0xc8, 0x70, 0x61, 0x2d, 0x2b, 0xd1, 0xb9, 0xda, 0xcb, 0xaf, 0xc0, - 0xa5, 0xaf, 0x79, 0x2c, 0xf0, 0xbc, 0x4d, 0x22, 0x1a, 0xfa, 0x93, 0xe7, 0x6b, 0x32, 0x06, 0x81, - 0xcb, 0xf3, 0x86, 0x3f, 0x6b, 0x33, 0xf9, 0x06, 0x5c, 0x31, 0x49, 0xcf, 0x89, 0x28, 0x09, 0xd9, - 0xd9, 0xe0, 0xf0, 0x71, 0x44, 0xc2, 0x11, 0x09, 0x17, 0x91, 0x73, 0x1d, 0x96, 0xd8, 0xf1, 0x91, - 0x46, 0x32, 0x6a, 0x2f, 0x0e, 0xf0, 0xb8, 0x1d, 0x19, 0x6f, 0xc2, 0x0b, 0xf3, 0x47, 0x90, 0xa2, - 0xc4, 0x7c, 0x69, 0xd9, 0x18, 0xb4, 0xc9, 0x73, 0x9f, 0xe7, 0xc4, 0xd4, 0x10, 0x2e, 0xcd, 0xe9, - 0xfe, 0x24, 0x8e, 0x98, 0x09, 0x3b, 0x91, 0x65, 0xbb, 0x04, 0x8b, 0xe3, 0x5c, 0xd9, 0x2c, 0x39, - 0x11, 0x4f, 0x21, 0x9d, 0xfe, 0x68, 0xf9, 0x75, 0xb8, 0x64, 0x92, 0x81, 0x2f, 0xce, 0x61, 0xe7, - 0x20, 0xd6, 0x2e, 0x5c, 0x9e, 0xd7, 0xff, 0x89, 0x9a, 0xfe, 0x8e, 0x06, 0x1b, 0x47, 0xc7, 0x93, - 0xc8, 0xb1, 0xb1, 0xfb, 0x93, 0x64, 0x0f, 0xe6, 0xb3, 0xb4, 0x40, 0xce, 0xc0, 0x78, 0x1f, 0x9a, - 0xb3, 0x0c, 0x9d, 0x38, 0x37, 0xf1, 0x04, 0xe4, 0x9e, 0x31, 0x01, 0x7f, 0xac, 0x01, 0x6a, 0x05, - 0xae, 0x43, 0x4d, 0xbe, 0x32, 0x16, 0xcb, 0x92, 0x54, 0x22, 0xd6, 0x43, 0xb2, 0x9c, 0xc5, 0x5d, - 0x2b, 0x07, 0x32, 0xa1, 0xd8, 0x09, 0x56, 0x11, 0xa8, 0xac, 0x50, 0x45, 0x61, 0x23, 0x74, 0x19, - 0x2a, 0x4e, 0x64, 0x85, 0xf8, 0x89, 0xd5, 0x1f, 0x29, 0x5f, 0xe8, 0x44, 0x26, 0x7e, 0xf2, 0x60, - 0x64, 0xfc, 0xbd, 0x06, 0xab, 0x19, 0xf6, 0x16, 0x5f, 0xee, 0xaf, 0x40, 0xc1, 0x25, 0x5d, 0x2a, - 0x8f, 0xb9, 0xf5, 0x1d, 0x59, 0xd2, 0x26, 0x3a, 0xe6, 0x1c, 0x73, 0x3c, 0xda, 0x82, 0x62, 0xe8, - 0xf4, 0x8e, 0xa9, 0x2c, 0xed, 0x99, 0x47, 0x28, 0x08, 0xd0, 0x16, 0x73, 0xcc, 0x3d, 0x9e, 0x78, - 0x16, 0x69, 0x88, 0x29, 0x5a, 0x53, 0xa1, 0x8d, 0xdf, 0xd0, 0x40, 0x37, 0x09, 0xee, 0xec, 0x7b, - 0x1d, 0x32, 0x5e, 0x44, 0xc7, 0x97, 0xa0, 0x1c, 0xdf, 0xb6, 0x09, 0x6b, 0x2a, 0x45, 0xf2, 0x9e, - 0x2d, 0xd9, 0x93, 0xf2, 0xcf, 0xd8, 0x93, 0x8c, 0xdf, 0xd7, 0x60, 0x25, 0xc5, 0xc6, 0xe2, 0xba, - 0x7c, 0x11, 0x20, 0x24, 0xb8, 0x63, 0x39, 0xac, 0x23, 0x95, 0x93, 0x08, 0x55, 0xcf, 0x8c, 0x25, - 0x66, 0x5d, 0xa4, 0x33, 0x53, 0x1e, 0x15, 0x9b, 0x9f, 0x24, 0x30, 0x5a, 0xb0, 0xfa, 0xee, 0xc8, - 0xb6, 0xef, 0x11, 0x7a, 0x6b, 0xc2, 0xf8, 0x3d, 0x8b, 0xf8, 0xdb, 0xf8, 0x2d, 0x0d, 0xd6, 0xb2, - 0xbd, 0x9e, 0xf5, 0xb1, 0xfa, 0x1a, 0x14, 0xf8, 0xcd, 0xd9, 0xb4, 0x7c, 0x6c, 0x54, 0x2e, 0x1f, - 0x47, 0x1b, 0xdf, 0x80, 0x8d, 0x98, 0x0f, 0x79, 0x2f, 0x7a, 0xb6, 0xb3, 0xcf, 0xd6, 0x6f, 0x73, - 0x76, 0x88, 0xb3, 0x16, 0x57, 0xaa, 0x38, 0x9f, 0x1c, 0x71, 0x94, 0x02, 0x0a, 0x27, 0x2b, 0xe0, - 0x6f, 0x4b, 0x50, 0xda, 0x4b, 0xb6, 0x7d, 0xc9, 0x8d, 0xd3, 0xe1, 0xac, 0x14, 0xcc, 0xb2, 0x00, - 0xec, 0x77, 0xd0, 0x5b, 0x09, 0xab, 0x81, 0x6f, 0x1f, 0xcb, 0x55, 0xba, 0x9a, 0x5d, 0x50, 0x77, - 0x18, 0x2a, 0xe6, 0x97, 0x35, 0xd0, 0x26, 0x14, 0x02, 0x42, 0x54, 0x1d, 0x5e, 0x4d, 0xd1, 0x1f, - 0x11, 0x12, 0x9a, 0x1c, 0xc3, 0x8f, 0x94, 0x24, 0x1c, 0xc8, 0x23, 0x38, 0xff, 0x8d, 0x6e, 0x40, - 0x39, 0x08, 0x1d, 0x3f, 0x74, 0xe8, 0x84, 0xc7, 0x54, 0xf5, 0xdd, 0xd5, 0x94, 0xf6, 0x07, 0x03, - 0xec, 0x75, 0x8e, 0x42, 0xc7, 0x8c, 0x89, 0xd0, 0xdb, 0xd0, 0x70, 0x22, 0xdf, 0xc5, 0xa9, 0xea, - 0xac, 0xd2, 0x54, 0x75, 0xd6, 0xbe, 0xc2, 0xcb, 0xea, 0x2c, 0x27, 0xd3, 0x46, 0xff, 0x0f, 0xea, - 0x3c, 0xe5, 0xe2, 0xb8, 0xae, 0x65, 0x63, 0xfb, 0x98, 0xc8, 0x4b, 0xe8, 0x9a, 0xe7, 0xd3, 0xbb, - 0x8e, 0xeb, 0xee, 0x31, 0x18, 0x9f, 0xe9, 0x89, 0x67, 0x5b, 0xae, 0xdf, 0x13, 0x05, 0x3c, 0x66, - 0x89, 0xb5, 0x0f, 0xfc, 0x1e, 0xda, 0x02, 0x3d, 0x24, 0xb6, 0x1f, 0x76, 0x78, 0xf5, 0x8f, 0x15, - 0x51, 0x4c, 0x65, 0x05, 0x4f, 0x5d, 0xc0, 0xdb, 0xce, 0x80, 0xb4, 0x28, 0xa6, 0x29, 0xca, 0xc8, - 0xc6, 0x9e, 0xa0, 0xac, 0xa6, 0x29, 0xd9, 0x26, 0xc2, 0x29, 0x5f, 0x66, 0x5a, 0x0f, 0x5c, 0xc7, - 0xc6, 0x16, 0x5b, 0xbd, 0xb2, 0x8c, 0xa7, 0x2a, 0x61, 0xcc, 0x55, 0xa0, 0x6b, 0x50, 0x17, 0xd7, - 0xe4, 0xa4, 0x63, 0x89, 0x2d, 0x65, 0x99, 0x9f, 0xcd, 0x97, 0x15, 0x94, 0xdf, 0xc1, 0xa2, 0x9f, - 0x83, 0x4b, 0x6c, 0xb3, 0x23, 0x63, 0x62, 0x0f, 0xb9, 0x92, 0x3a, 0xc3, 0x50, 0x68, 0x6b, 0xa0, - 0xca, 0xdd, 0x2e, 0x0e, 0xf0, 0xf8, 0x8e, 0xc2, 0xdf, 0x96, 0xe8, 0x77, 0xf9, 0xdd, 0x2f, 0x0e, - 0x02, 0xd7, 0x21, 0xca, 0x9f, 0x34, 0x44, 0x6e, 0x58, 0x02, 0x85, 0x4b, 0xd9, 0x80, 0x12, 0xc5, - 0x51, 0x9f, 0x99, 0x8e, 0x2e, 0xca, 0x11, 0x58, 0x73, 0xbf, 0xc3, 0x37, 0x17, 0x8a, 0x5d, 0x22, - 0x04, 0x58, 0xe1, 0x02, 0x54, 0x38, 0x84, 0xb3, 0xff, 0x1a, 0x20, 0xc6, 0xe8, 0x30, 0xb4, 0x89, - 0xd5, 0x0b, 0xfd, 0x61, 0x60, 0x51, 0xdc, 0x6b, 0x22, 0x6e, 0xc8, 0xba, 0xc2, 0xdc, 0x63, 0x88, - 0x36, 0xee, 0xa1, 0x2f, 0xc3, 0x72, 0xc7, 0x89, 0xfa, 0x56, 0x77, 0xe8, 0xba, 0x96, 0x1f, 0xd0, - 0xe6, 0x2a, 0x9f, 0xe4, 0xb5, 0x78, 0x92, 0x6f, 0x3b, 0x51, 0xff, 0xee, 0xd0, 0x75, 0x0f, 0x03, - 0x6a, 0x56, 0x3b, 0x49, 0x83, 0xe9, 0x9c, 0x6d, 0x62, 0x84, 0x86, 0x13, 0x2b, 0x14, 0x4b, 0xbc, - 0xb9, 0x26, 0x74, 0xee, 0x44, 0x26, 0x03, 0xab, 0x85, 0xff, 0x26, 0x54, 0x71, 0xe0, 0xc4, 0x29, - 0xee, 0xf5, 0x29, 0xf3, 0xbb, 0x79, 0xb4, 0x2f, 0x13, 0xdd, 0x26, 0xe0, 0xc0, 0x49, 0x2e, 0xf6, - 0x1b, 0x22, 0x0b, 0x4e, 0xe3, 0x79, 0xb8, 0xc8, 0xe7, 0xa1, 0x1e, 0x83, 0xc5, 0x44, 0xfc, 0x3c, - 0x88, 0xc2, 0x6a, 0x4b, 0x79, 0x97, 0x0d, 0xbe, 0x32, 0xd6, 0x77, 0x54, 0xb9, 0x75, 0x9b, 0xfd, - 0x55, 0x2e, 0xa6, 0x46, 0x53, 0xad, 0x77, 0x0a, 0xe5, 0x82, 0x5e, 0x64, 0xd3, 0x8f, 0x3b, 0xd6, - 0x87, 0x43, 0x3f, 0x1c, 0x0e, 0x8c, 0x7f, 0xcd, 0x41, 0x59, 0x39, 0xed, 0x99, 0xd2, 0x1b, 0x6d, - 0xb6, 0xf4, 0xe6, 0x65, 0xa8, 0xf1, 0xba, 0x82, 0x6c, 0x9e, 0xbf, 0xca, 0x60, 0x4a, 0x94, 0x59, - 0x67, 0x92, 0xae, 0x7b, 0x28, 0x64, 0xeb, 0x1e, 0xd2, 0x75, 0xa0, 0xc5, 0x6c, 0x1d, 0xe8, 0x96, - 0x2c, 0x61, 0xa0, 0x93, 0x80, 0xc8, 0x55, 0x5c, 0x8d, 0xd5, 0x78, 0x18, 0x88, 0xe2, 0x85, 0xf6, - 0x24, 0x20, 0xe8, 0x55, 0x40, 0x9c, 0x32, 0x5b, 0x30, 0x55, 0xe2, 0xdd, 0x35, 0x18, 0xe6, 0x6e, - 0xaa, 0x68, 0x6a, 0x5e, 0x59, 0x68, 0x79, 0x6e, 0x59, 0xe8, 0x4c, 0xad, 0x5c, 0x65, 0xb6, 0x56, - 0x6e, 0xaa, 0x74, 0x14, 0x66, 0x4a, 0x47, 0x8d, 0x8f, 0x0a, 0x50, 0x56, 0xa9, 0xf6, 0xd4, 0xce, - 0xa9, 0x3d, 0x63, 0xe7, 0x44, 0x2f, 0x30, 0x77, 0x4a, 0xc3, 0x09, 0x7e, 0xec, 0x12, 0xe9, 0xad, - 0x13, 0x00, 0xf3, 0xe3, 0xf8, 0xb1, 0x1f, 0x52, 0x99, 0xa4, 0x11, 0x0d, 0xb4, 0x0b, 0x65, 0xdb, - 0xf7, 0xba, 0xae, 0x63, 0xd3, 0x99, 0xab, 0xc6, 0xf7, 0x42, 0x87, 0x32, 0x4b, 0xe0, 0x58, 0x33, - 0xa6, 0x63, 0x06, 0x85, 0x5d, 0x66, 0x12, 0x13, 0x59, 0xa0, 0x53, 0x94, 0x06, 0x15, 0x5b, 0xac, - 0xc0, 0xf2, 0x1a, 0x1d, 0xb3, 0x86, 0x53, 0x2d, 0xf4, 0x3a, 0x94, 0x55, 0xd5, 0xff, 0x4c, 0x91, - 0xc9, 0x6d, 0x89, 0x30, 0x63, 0x12, 0x74, 0x1b, 0x56, 0x62, 0x65, 0x5a, 0x64, 0x1c, 0x38, 0x21, - 0xe9, 0xf0, 0x69, 0xaa, 0xee, 0x36, 0x33, 0xfe, 0x99, 0xa9, 0xf6, 0x8e, 0xc0, 0x9b, 0x0d, 0x3b, - 0x0b, 0x60, 0x8b, 0x98, 0x99, 0x4c, 0x92, 0xe0, 0x2e, 0xf3, 0x1e, 0xd6, 0xd2, 0x77, 0x44, 0x0f, - 0x65, 0xb2, 0xdb, 0xac, 0xd2, 0xa4, 0x81, 0xee, 0xc3, 0x6a, 0x32, 0x3e, 0xf5, 0x7d, 0xcb, 0xc5, - 0x61, 0x4f, 0x54, 0x52, 0x56, 0x77, 0x2f, 0xcd, 0x70, 0xd0, 0xf6, 0xfd, 0x03, 0x46, 0x60, 0xea, - 0xf6, 0x14, 0x04, 0xed, 0x81, 0x9e, 0x54, 0xf3, 0x76, 0xb1, 0xe3, 0x92, 0x0e, 0x77, 0xd6, 0x69, - 0x41, 0xe2, 0x72, 0xde, 0xbb, 0x1c, 0x6f, 0x26, 0xf5, 0xbf, 0x02, 0x60, 0x7c, 0xac, 0xc1, 0x72, - 0x66, 0x56, 0x32, 0x81, 0x80, 0x96, 0x0d, 0x03, 0xaf, 0x42, 0x55, 0x4d, 0x59, 0x12, 0x26, 0x80, - 0x02, 0xb5, 0xa3, 0x39, 0xcb, 0xae, 0x09, 0x25, 0xb9, 0x74, 0x45, 0x15, 0xa4, 0xa9, 0x9a, 0xcc, - 0x6b, 0xc6, 0x9d, 0x25, 0xe6, 0x2d, 0xd6, 0x9f, 0xae, 0x30, 0x71, 0xe1, 0xee, 0x26, 0xd4, 0xd2, - 0x36, 0xa0, 0x46, 0xd2, 0x92, 0x80, 0xec, 0x4f, 0x35, 0x28, 0xab, 0xf9, 0x4e, 0x57, 0x96, 0x69, - 0x99, 0xca, 0x32, 0xe5, 0x06, 0x92, 0x68, 0x8e, 0x13, 0xb2, 0x23, 0xc4, 0x36, 0xac, 0x28, 0x2b, - 0x61, 0x68, 0xeb, 0x18, 0x47, 0xc7, 0xf2, 0x76, 0xb0, 0xa1, 0x10, 0x0f, 0xc8, 0xe4, 0x3e, 0x8e, - 0x8e, 0xd1, 0x97, 0x00, 0x78, 0x91, 0xac, 0x7d, 0x8c, 0x1d, 0x4f, 0x46, 0xe6, 0x17, 0x77, 0xe2, - 0xd7, 0x27, 0xef, 0x61, 0x87, 0xde, 0xf5, 0xc3, 0x3b, 0x1e, 0xf3, 0xc9, 0x15, 0x46, 0xb9, 0xc7, - 0x08, 0x8d, 0xef, 0x6a, 0xd0, 0x98, 0xb2, 0xad, 0x93, 0xf4, 0xbd, 0x03, 0xab, 0x98, 0x52, 0x32, - 0x08, 0x98, 0x43, 0x4e, 0x74, 0x24, 0xf4, 0xbe, 0x12, 0xa3, 0x62, 0x47, 0x30, 0xab, 0xfe, 0x19, - 0xf7, 0x51, 0x98, 0x71, 0x1f, 0xc6, 0x3e, 0x54, 0x53, 0xd6, 0xfa, 0x8c, 0xf9, 0x3f, 0xb1, 0xa0, - 0xcf, 0xb8, 0x01, 0xfa, 0xb4, 0xe1, 0x66, 0x8b, 0x95, 0xb4, 0xa9, 0x62, 0xa5, 0x1f, 0x6a, 0xd0, - 0x98, 0xb2, 0xd1, 0x93, 0x18, 0x98, 0x4d, 0x83, 0x7f, 0x01, 0x2a, 0xb1, 0x49, 0x73, 0xc1, 0xeb, - 0xbb, 0x68, 0xd6, 0xfa, 0xcd, 0x84, 0x88, 0x4d, 0x33, 0xf7, 0x31, 0x8e, 0xd7, 0x9b, 0xae, 0x2e, - 0x6c, 0x28, 0x84, 0xaa, 0x2f, 0x7c, 0x0d, 0x50, 0x4c, 0x3b, 0x63, 0xa3, 0x0a, 0x13, 0x2b, 0xf2, - 0xfb, 0x1a, 0x00, 0x0b, 0x90, 0x44, 0xf5, 0x04, 0xfa, 0x3c, 0xac, 0x70, 0x1b, 0x79, 0x82, 0x5d, - 0x57, 0xc4, 0x53, 0x03, 0x21, 0x50, 0xde, 0xac, 0x33, 0xc4, 0x7b, 0xd8, 0x75, 0x19, 0xf9, 0xbb, - 0x11, 0xba, 0x01, 0x6b, 0x41, 0xe8, 0xdb, 0x24, 0x8a, 0xb2, 0xd4, 0x39, 0x4e, 0xbd, 0x22, 0x71, - 0xa9, 0x0f, 0x76, 0x60, 0xad, 0x3f, 0xe2, 0xe1, 0x48, 0xf6, 0x83, 0x3c, 0xff, 0x40, 0xef, 0x8f, - 0x58, 0x60, 0x92, 0xd0, 0x1b, 0x1f, 0x40, 0x99, 0x05, 0x64, 0x7c, 0x87, 0x5d, 0x83, 0x22, 0xf5, - 0x29, 0x76, 0x25, 0x2f, 0xa2, 0xc1, 0x5c, 0xbd, 0x1c, 0x86, 0x74, 0xe4, 0xb8, 0x09, 0x20, 0x3e, - 0x8c, 0x3d, 0x9e, 0x50, 0xa2, 0x46, 0xe1, 0x87, 0xb1, 0x5b, 0x0c, 0x60, 0xfc, 0xba, 0x06, 0xc0, - 0xfa, 0x97, 0x92, 0x5f, 0x87, 0x22, 0x7f, 0x21, 0x30, 0xb3, 0xc1, 0x28, 0x1e, 0x4c, 0x81, 0x67, - 0x11, 0x7e, 0x5c, 0x5f, 0x3b, 0x97, 0x8e, 0xa3, 0x19, 0x59, 0x07, 0x53, 0x3c, 0x73, 0x12, 0x4a, - 0xc8, 0x18, 0xda, 0xf8, 0x61, 0x5e, 0xbc, 0xcd, 0x11, 0x5c, 0x3c, 0xda, 0x45, 0xaf, 0x03, 0x8a, - 0x45, 0x50, 0xd1, 0x82, 0xb2, 0xa9, 0x95, 0x18, 0x23, 0x63, 0x86, 0x08, 0xbd, 0x05, 0x1b, 0xb3, - 0xe4, 0xe9, 0xe7, 0x21, 0xeb, 0x33, 0xdf, 0xf0, 0x20, 0xe1, 0x1a, 0xd4, 0xb9, 0x0e, 0x93, 0x21, - 0x64, 0xb5, 0x17, 0x87, 0xc6, 0xdd, 0x7f, 0x15, 0x5e, 0x08, 0x59, 0xf8, 0xd4, 0x79, 0x6c, 0x75, - 0x78, 0x12, 0xda, 0x8a, 0xfa, 0x4e, 0x10, 0xf0, 0xa5, 0x3d, 0xf4, 0xa8, 0x74, 0x35, 0x97, 0x24, - 0x8d, 0xc8, 0x53, 0xb7, 0x04, 0xc5, 0x1e, 0x23, 0x60, 0xf1, 0xaf, 0xea, 0x80, 0xf9, 0xa7, 0xec, - 0xd7, 0xc2, 0x82, 0x2f, 0x4a, 0x82, 0x07, 0x64, 0x92, 0xf9, 0xf4, 0x6d, 0x78, 0x51, 0x7d, 0xfa, - 0x98, 0x3b, 0x38, 0x7e, 0x3c, 0xb0, 0x8e, 0x99, 0x0b, 0xe3, 0x9f, 0x17, 0x33, 0x83, 0xdf, 0x62, - 0x34, 0xfc, 0xb4, 0x70, 0xdf, 0xa1, 0xa2, 0x87, 0xff, 0x0f, 0xcd, 0x6c, 0x0f, 0xdc, 0x1e, 0xc4, - 0xc7, 0xe2, 0xa5, 0xc1, 0x7a, 0xfa, 0x63, 0x66, 0x7f, 0xe2, 0xc3, 0x2f, 0xc1, 0xc6, 0x9c, 0x0f, - 0x99, 0x21, 0xc9, 0xe8, 0x68, 0x6d, 0xfa, 0x3b, 0x66, 0x53, 0xc6, 0x6f, 0x6a, 0x50, 0x4d, 0x55, - 0x26, 0xb1, 0x90, 0x96, 0x1b, 0xb9, 0x28, 0x64, 0x92, 0x96, 0x95, 0x84, 0xb4, 0xc9, 0xba, 0x33, - 0x81, 0x26, 0x6b, 0xf0, 0x4d, 0xa8, 0xf2, 0xf3, 0x89, 0xfc, 0x2a, 0x37, 0xf5, 0x55, 0x62, 0x2d, - 0x26, 0x44, 0xf1, 0x6f, 0x51, 0xcb, 0x24, 0x22, 0x55, 0xe3, 0xd7, 0x34, 0x58, 0xce, 0x54, 0x48, - 0x2d, 0xc8, 0xc9, 0x2f, 0x40, 0x3d, 0xc5, 0x89, 0x35, 0xda, 0x95, 0xcc, 0xac, 0xcf, 0x61, 0xe6, - 0xd1, 0xae, 0x59, 0x8b, 0x52, 0x2d, 0xe3, 0x7d, 0x58, 0x12, 0x59, 0xf2, 0xa4, 0x92, 0x42, 0x7b, - 0x46, 0xe5, 0xcd, 0x29, 0x2f, 0x93, 0x8d, 0x6f, 0x6b, 0x50, 0x56, 0x25, 0x8c, 0xe8, 0x0a, 0xe4, - 0xfc, 0x80, 0x77, 0x3d, 0x15, 0xe7, 0xe6, 0xfc, 0xe0, 0xd4, 0xd7, 0xd3, 0x19, 0x97, 0x5c, 0x38, - 0x85, 0x4b, 0x36, 0xfe, 0x47, 0x83, 0x0a, 0x3b, 0xd4, 0xf3, 0x40, 0x04, 0x5d, 0x85, 0x02, 0x0f, - 0xb7, 0xe7, 0xb0, 0xc1, 0x11, 0x27, 0x25, 0xaa, 0xae, 0xcc, 0xbc, 0xc9, 0x48, 0xbd, 0xc7, 0xb8, - 0x0a, 0xd5, 0xe8, 0xd8, 0x0f, 0xa9, 0x95, 0x7a, 0x95, 0x61, 0x02, 0x07, 0xf1, 0x97, 0x29, 0xcc, - 0x01, 0x1c, 0xe3, 0xc8, 0xf2, 0x47, 0x24, 0x74, 0x31, 0x5f, 0x5b, 0xaa, 0x42, 0x5c, 0x5e, 0x21, - 0xaf, 0x1f, 0xe3, 0xe8, 0x30, 0xc6, 0xaa, 0x3a, 0x33, 0xb4, 0x09, 0x35, 0xf6, 0x5d, 0xcf, 0xb6, - 0xba, 0xfc, 0xa5, 0x8a, 0xb8, 0x42, 0x81, 0x63, 0x1c, 0xdd, 0xb3, 0xef, 0x32, 0x08, 0x63, 0x39, - 0xc6, 0x0a, 0xab, 0x2f, 0xf5, 0x04, 0xca, 0xf8, 0x8a, 0x90, 0x5d, 0x70, 0x70, 0xc2, 0xde, 0x17, - 0x2b, 0x3b, 0x97, 0x9e, 0xbe, 0x4f, 0x72, 0x50, 0x66, 0x9f, 0xf3, 0x83, 0xd1, 0x4f, 0xa2, 0xb9, - 0x54, 0xa0, 0x96, 0xcf, 0x06, 0x6a, 0xcf, 0x54, 0xdb, 0x6c, 0xfd, 0xc1, 0x69, 0xde, 0x22, 0xa5, - 0x4f, 0x5d, 0xa5, 0xe9, 0x53, 0xd7, 0x69, 0x8f, 0x47, 0x53, 0x47, 0x9f, 0xca, 0xec, 0xab, 0xb9, - 0xab, 0x50, 0x8d, 0xdf, 0x00, 0x50, 0x71, 0x38, 0x2a, 0x98, 0xa0, 0x40, 0x6d, 0x7e, 0x45, 0x59, - 0x56, 0x19, 0xa5, 0x78, 0x43, 0xd2, 0xe6, 0xa4, 0x9c, 0x78, 0x4a, 0x5c, 0x6c, 0x48, 0xdb, 0xb0, - 0xc4, 0x37, 0x30, 0x95, 0xfb, 0x46, 0x19, 0x42, 0x6e, 0xc6, 0xa6, 0xa4, 0x60, 0xb4, 0xf2, 0xad, - 0x4f, 0x7e, 0x0e, 0x2d, 0xd7, 0xa0, 0x7a, 0xff, 0x63, 0x7c, 0x11, 0x4a, 0xb2, 0xb8, 0x8c, 0x2b, - 0x75, 0xec, 0x49, 0x23, 0x60, 0x3f, 0xd1, 0x45, 0x58, 0x8a, 0xf8, 0x3b, 0x01, 0x39, 0x75, 0xb2, - 0x65, 0xbc, 0xcd, 0xcf, 0x76, 0x3c, 0x0b, 0x9b, 0x4d, 0xfc, 0x6b, 0x4f, 0xbf, 0xf6, 0xca, 0x65, - 0xae, 0xbd, 0xfe, 0x4e, 0x03, 0x38, 0x20, 0xb8, 0x43, 0x42, 0x3e, 0xf4, 0x89, 0x49, 0xb4, 0x0d, - 0x28, 0x05, 0x84, 0x84, 0x0c, 0x25, 0xd9, 0x60, 0xcd, 0xfd, 0x4e, 0x9c, 0x03, 0xcb, 0xa7, 0x72, - 0x60, 0xd3, 0x19, 0xb7, 0xc2, 0x29, 0x33, 0x6e, 0x6f, 0xc8, 0x70, 0x83, 0x49, 0x48, 0xe4, 0x61, - 0x30, 0xd1, 0x1b, 0xdb, 0x23, 0x5a, 0x0c, 0x23, 0x42, 0x10, 0xfe, 0xd3, 0xd8, 0x87, 0x4a, 0x0c, - 0x9f, 0x4d, 0xf7, 0x68, 0xf3, 0xd3, 0x3d, 0xbc, 0xe8, 0x8d, 0x26, 0x0a, 0xc5, 0x5d, 0xd2, 0x8e, - 0x8c, 0x16, 0x20, 0x71, 0x4f, 0xc5, 0x55, 0xa2, 0x72, 0x2a, 0xaf, 0x27, 0x99, 0x78, 0x51, 0x02, - 0x9e, 0xb8, 0xfc, 0x44, 0x77, 0x71, 0x3a, 0x1e, 0xd5, 0x21, 0x17, 0x77, 0x9c, 0xa3, 0x91, 0xf1, - 0x55, 0x58, 0xcd, 0x74, 0x2a, 0xd3, 0xa7, 0xcd, 0x6c, 0xaf, 0x85, 0xa7, 0x77, 0x70, 0x1b, 0x50, - 0x8b, 0xfa, 0x21, 0x69, 0x31, 0x26, 0x5b, 0x8a, 0xab, 0x1d, 0xa8, 0xb0, 0x58, 0x80, 0x27, 0xdf, - 0xe7, 0xed, 0x09, 0x22, 0x39, 0x5f, 0xee, 0xcb, 0x5f, 0xc6, 0x0e, 0xac, 0x66, 0x7a, 0x91, 0x6c, - 0xa4, 0x74, 0xa1, 0x65, 0x74, 0x61, 0xf3, 0x0b, 0xed, 0x7b, 0x84, 0x19, 0x50, 0xbb, 0x7d, 0x70, - 0x3e, 0xc5, 0x69, 0xbf, 0xa7, 0xf1, 0x4b, 0xe6, 0xd4, 0x28, 0xe7, 0x90, 0x5c, 0x4e, 0x1e, 0xbc, - 0x70, 0x17, 0x75, 0x62, 0x79, 0xda, 0x3f, 0x8b, 0x3a, 0xae, 0xbd, 0x9b, 0xad, 0xf3, 0xac, 0xe3, - 0x7a, 0x8d, 0x85, 0xa7, 0x64, 0xe4, 0xf8, 0xc3, 0x28, 0xf5, 0x36, 0x49, 0xf0, 0xa2, 0x2b, 0x4c, - 0xfc, 0x32, 0xe9, 0x1a, 0xd4, 0x63, 0x6a, 0xd1, 0x99, 0xa8, 0xed, 0x5d, 0x56, 0xd0, 0x47, 0xa9, - 0xe2, 0xb0, 0xa5, 0xe9, 0xe2, 0xb0, 0x52, 0x2c, 0xb9, 0xf1, 0x03, 0x51, 0xcc, 0xc2, 0x85, 0x3b, - 0x6b, 0x3d, 0x37, 0xa1, 0x14, 0x0d, 0x6d, 0x9b, 0xc8, 0x6b, 0x99, 0xb2, 0xa9, 0x9a, 0xe7, 0x22, - 0xac, 0x71, 0x1b, 0x2e, 0xde, 0x23, 0xfc, 0xd9, 0x2a, 0x3b, 0x71, 0xf3, 0x05, 0xf8, 0xd9, 0xe7, - 0xcb, 0xf8, 0x9e, 0x06, 0x1b, 0x33, 0xdd, 0x9c, 0xb5, 0x66, 0xbe, 0xc0, 0x9c, 0x2f, 0xe5, 0xbb, - 0x54, 0xfe, 0xc4, 0x74, 0x81, 0x22, 0x33, 0xfe, 0x41, 0xd4, 0xce, 0xec, 0xf9, 0xf2, 0xd4, 0xe1, - 0x87, 0x0b, 0x16, 0x42, 0xd8, 0x7e, 0x10, 0x5a, 0x1e, 0x1e, 0xa8, 0x14, 0x5e, 0x99, 0x01, 0x1e, - 0xe2, 0x01, 0xdf, 0x68, 0x39, 0x52, 0x1e, 0x5c, 0xac, 0x90, 0x7c, 0x28, 0x97, 0x65, 0x9d, 0xc1, - 0x55, 0x92, 0x98, 0x7c, 0x98, 0xba, 0x01, 0x2c, 0x3c, 0xab, 0x2a, 0x05, 0xc9, 0xd3, 0x9a, 0x98, - 0x31, 0x71, 0x34, 0x1b, 0xf2, 0xda, 0x9b, 0x8c, 0x28, 0x67, 0xad, 0x60, 0x94, 0x3a, 0x24, 0xaa, - 0x61, 0x3f, 0x16, 0x35, 0x89, 0xdc, 0xf1, 0x46, 0xc3, 0xc1, 0x22, 0xfa, 0xfb, 0x32, 0x54, 0xb0, - 0xdb, 0xf3, 0x43, 0x87, 0x1e, 0x0f, 0xf8, 0x80, 0xf5, 0xdd, 0xcb, 0x09, 0xb5, 0xec, 0xf8, 0xa6, - 0xa2, 0x30, 0x13, 0xe2, 0xcf, 0x72, 0x69, 0xfa, 0x57, 0xa2, 0x6e, 0x28, 0xe1, 0xf3, 0xac, 0x95, - 0x73, 0x19, 0xca, 0xb6, 0xec, 0x3c, 0x0e, 0x8b, 0x65, 0x9b, 0x59, 0x88, 0x38, 0xbe, 0xf6, 0x47, - 0xf1, 0x6b, 0x32, 0x0e, 0x78, 0x30, 0xe2, 0xe1, 0x93, 0x40, 0x8a, 0x93, 0xbf, 0x88, 0xf1, 0x80, - 0x83, 0xc4, 0xd1, 0x7f, 0x0c, 0xb5, 0x3d, 0x7f, 0x10, 0x60, 0x9b, 0x8a, 0xf1, 0x2d, 0xd8, 0x20, - 0x61, 0xc8, 0xa2, 0x36, 0x06, 0xb3, 0x1c, 0xcf, 0x0a, 0x42, 0xbf, 0x17, 0x92, 0x28, 0x92, 0xdc, - 0xbf, 0x92, 0xce, 0x71, 0xc6, 0xdf, 0xc9, 0xdf, 0xfb, 0xde, 0x91, 0xa4, 0xbe, 0x7f, 0xc1, 0x5c, - 0x23, 0xe1, 0x2c, 0xfc, 0x56, 0x49, 0x0a, 0x68, 0x5c, 0x85, 0x17, 0x4f, 0xec, 0xc1, 0xf8, 0x80, - 0x3f, 0x2e, 0x63, 0x40, 0x35, 0xf1, 0x75, 0xc8, 0xc9, 0x90, 0xa6, 0x66, 0xe6, 0x9c, 0xce, 0xc9, - 0x55, 0x42, 0x2f, 0x89, 0x97, 0x19, 0xd9, 0x4a, 0xa1, 0xca, 0x00, 0x8f, 0xef, 0x88, 0xa8, 0xe9, - 0x13, 0x91, 0xcc, 0x13, 0xfd, 0xcb, 0x09, 0x7b, 0x35, 0x7b, 0x3c, 0x5b, 0x9f, 0x2b, 0xab, 0x9a, - 0x94, 0xcf, 0xc1, 0x32, 0x3b, 0x36, 0x84, 0x64, 0x80, 0x1d, 0xcf, 0xf1, 0x7a, 0xb2, 0xc2, 0x85, - 0x9d, 0x25, 0x4c, 0x05, 0x43, 0x3b, 0x3c, 0x5f, 0xcc, 0xbe, 0x25, 0x1d, 0x6b, 0xba, 0xa8, 0x63, - 0x25, 0x46, 0xb5, 0x14, 0xd7, 0xdb, 0x90, 0x00, 0x63, 0xde, 0x45, 0xcc, 0xde, 0x88, 0x11, 0x42, - 0x82, 0xed, 0xeb, 0x00, 0xc9, 0x55, 0x10, 0x5a, 0x82, 0xdc, 0xa3, 0x37, 0xf4, 0x0b, 0xa8, 0x02, - 0xc5, 0x47, 0x6f, 0xb4, 0xdb, 0x07, 0xba, 0xc6, 0x41, 0xbb, 0x7a, 0x6e, 0xfb, 0x55, 0x80, 0xe4, - 0xca, 0x12, 0x01, 0x2c, 0x3d, 0xf4, 0xc3, 0x01, 0x76, 0xf5, 0x0b, 0xa8, 0x04, 0xf9, 0x03, 0xff, - 0x89, 0xae, 0xa1, 0x32, 0x14, 0xee, 0x3b, 0xbd, 0x63, 0x3d, 0xb7, 0x7d, 0x03, 0xea, 0xd9, 0x7b, - 0x4a, 0xd6, 0x4d, 0x6b, 0x5f, 0xbf, 0xc0, 0xfe, 0x9a, 0x7b, 0xba, 0x86, 0x96, 0xa1, 0x62, 0xee, - 0x89, 0xb7, 0xaf, 0x2d, 0x3d, 0xb7, 0xfd, 0x08, 0xaa, 0xa9, 0x3b, 0x2f, 0xb4, 0x06, 0xfa, 0x43, - 0x9f, 0xde, 0x74, 0x5d, 0xff, 0x09, 0xe9, 0x1c, 0x7a, 0x0c, 0xac, 0x5f, 0x40, 0x1b, 0xb0, 0x1a, - 0x83, 0x6e, 0xba, 0x03, 0x3f, 0xa2, 0x1c, 0xa1, 0xa1, 0x26, 0xac, 0xa5, 0x10, 0x3c, 0x45, 0xcc, - 0x31, 0xb9, 0x6d, 0x1b, 0x72, 0x87, 0x01, 0xe3, 0xf0, 0x68, 0x48, 0x05, 0xab, 0xb7, 0x89, 0x2b, - 0x58, 0x65, 0xbe, 0x5e, 0xcf, 0xa1, 0x1a, 0x94, 0xd5, 0x21, 0x4e, 0xcf, 0x33, 0xb9, 0xf6, 0x3d, - 0x76, 0x26, 0xd5, 0x0b, 0x68, 0x15, 0x1a, 0x53, 0x0f, 0x76, 0xf5, 0x22, 0x42, 0x50, 0xe7, 0x5c, - 0xab, 0x6d, 0x2a, 0xd2, 0x97, 0xb6, 0x77, 0xa0, 0x12, 0x9f, 0x69, 0x59, 0xcf, 0x0f, 0x7d, 0x8f, - 0x08, 0x25, 0x72, 0x12, 0x5d, 0x63, 0x83, 0xa8, 0x0f, 0x84, 0x76, 0xb2, 0xff, 0x63, 0x83, 0xf1, - 0x75, 0xd8, 0xed, 0xea, 0x17, 0xd8, 0xd7, 0x77, 0x31, 0xff, 0x04, 0x60, 0xa9, 0x45, 0x43, 0xc7, - 0x66, 0x1f, 0xfc, 0x91, 0x06, 0x4b, 0xe2, 0x61, 0xad, 0xe8, 0x49, 0xfc, 0xd6, 0x2f, 0xa0, 0x75, - 0x58, 0x69, 0xb7, 0x0f, 0x44, 0x1a, 0x39, 0x96, 0x82, 0xeb, 0x83, 0xb1, 0xab, 0x86, 0x8c, 0x31, - 0x39, 0xf6, 0xc1, 0xbb, 0x71, 0xde, 0xb7, 0x75, 0x34, 0x8c, 0x8e, 0x49, 0x47, 0xcf, 0xa3, 0x4d, - 0x78, 0x21, 0xee, 0x67, 0xce, 0xb3, 0x7d, 0xbd, 0x80, 0x2e, 0xc1, 0x7a, 0xba, 0xcb, 0xdb, 0xfe, - 0x43, 0x9f, 0x1e, 0x3b, 0x5e, 0x4f, 0x2f, 0x6e, 0x5f, 0x83, 0xd2, 0x9d, 0x31, 0x0d, 0xf1, 0x61, - 0x20, 0x84, 0xf7, 0x03, 0xfd, 0x02, 0xd2, 0xa1, 0xc6, 0x62, 0xf1, 0x43, 0xb7, 0xc3, 0xb7, 0x69, - 0x5d, 0xdb, 0x36, 0x60, 0x65, 0xc6, 0x57, 0x32, 0x33, 0xd8, 0x0b, 0xed, 0xb7, 0xde, 0xb4, 0x7e, - 0xc9, 0x0f, 0xf5, 0x0b, 0xb7, 0x5e, 0xf9, 0xa7, 0x3f, 0x2b, 0x6b, 0x3f, 0xf8, 0xf4, 0x25, 0xed, - 0xc7, 0x9f, 0xbe, 0xa4, 0xfd, 0xdb, 0xa7, 0x2f, 0x69, 0xdf, 0xff, 0x8f, 0x97, 0x2e, 0x80, 0xee, - 0x87, 0xbd, 0x1d, 0xea, 0xf4, 0x47, 0x3b, 0xfd, 0x11, 0xff, 0x2f, 0x4e, 0x8f, 0x97, 0xf8, 0x9f, - 0x2f, 0xfe, 0x6f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xe6, 0x01, 0xac, 0x50, 0x49, 0x4a, 0x00, 0x00, + // 5241 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xdc, 0x3c, 0x5d, 0x8f, 0x24, 0xc9, + 0x51, 0x53, 0xfd, 0x31, 0xdd, 0x1d, 0xdd, 0xd3, 0x5d, 0x93, 0xf3, 0xd5, 0xfb, 0x75, 0x3b, 0x5b, + 0xf6, 0xde, 0x8e, 0xc7, 0xbe, 0x59, 0xdf, 0xf8, 0x6c, 0x0c, 0x58, 0xf8, 0x76, 0x67, 0xbf, 0xc6, + 0xfb, 0x31, 0xa3, 0xea, 0xf6, 0x9a, 0x93, 0xb0, 0xcb, 0xb9, 0xd5, 0xd9, 0x3d, 0xa5, 0xae, 0xae, + 0xaa, 0xab, 0xca, 0xee, 0x9d, 0xb6, 0x85, 0x84, 0x31, 0x20, 0x21, 0x01, 0x06, 0x63, 0xe9, 0x2c, + 0x81, 0x90, 0x78, 0x38, 0x09, 0xf3, 0xc6, 0x1b, 0x42, 0x82, 0x13, 0x12, 0x0f, 0xc6, 0x12, 0xb2, + 0x1f, 0x11, 0x3c, 0x00, 0xc7, 0x0b, 0xfc, 0x00, 0x5e, 0x78, 0x42, 0xf9, 0x55, 0x1f, 0xdd, 0xbd, + 0xb3, 0x73, 0xed, 0x99, 0xb5, 0xc5, 0xd3, 0x74, 0x46, 0x44, 0x66, 0x46, 0x44, 0x46, 0x46, 0x46, + 0x46, 0x46, 0x0d, 0x2c, 0xf5, 0x47, 0x61, 0x60, 0x07, 0xcf, 0x76, 0x82, 0xd0, 0xa7, 0x3e, 0x2a, + 0xc9, 0xe6, 0xc5, 0xda, 0x80, 0x50, 0xac, 0xc0, 0x17, 0x97, 0x48, 0x18, 0xfa, 0x61, 0xdc, 0x5c, + 0xed, 0xf9, 0x3d, 0x9f, 0xff, 0xbc, 0xc9, 0x7e, 0x49, 0x68, 0x23, 0x1c, 0x46, 0x94, 0xff, 0x94, + 0x80, 0x7a, 0x87, 0xe0, 0x8e, 0xeb, 0xdb, 0x7d, 0x35, 0x0a, 0x0d, 0xb1, 0x4d, 0xd4, 0x28, 0x46, + 0x07, 0xe0, 0x3e, 0xa1, 0x26, 0x79, 0x77, 0x48, 0x22, 0x8a, 0xb6, 0xa1, 0x64, 0xfb, 0x1e, 0x25, + 0xc7, 0xb4, 0xa9, 0x6d, 0x6a, 0x5b, 0xd5, 0x5d, 0x7d, 0x47, 0xb1, 0xb6, 0x27, 0xe0, 0xa6, 0x22, + 0x40, 0x3a, 0xe4, 0xfb, 0x64, 0xdc, 0xcc, 0x6d, 0x6a, 0x5b, 0x35, 0x93, 0xfd, 0x44, 0x4d, 0x28, + 0x8d, 0x48, 0x18, 0x39, 0xbe, 0xd7, 0xcc, 0x6f, 0x6a, 0x5b, 0x05, 0x53, 0x35, 0x8d, 0x0f, 0x35, + 0xa8, 0xf2, 0x69, 0xa2, 0xc0, 0xf7, 0x22, 0x82, 0xde, 0x84, 0x5a, 0x48, 0x7a, 0x8e, 0xef, 0x59, + 0x5c, 0x26, 0x39, 0x59, 0x7d, 0x47, 0x49, 0x78, 0x97, 0xfd, 0x35, 0xab, 0x82, 0x86, 0x37, 0xd0, + 0x0d, 0x28, 0x0a, 0xda, 0x1c, 0xa7, 0x5d, 0x8e, 0x19, 0x7b, 0x48, 0xc6, 0x82, 0x5c, 0xe0, 0xd1, + 0x2a, 0x14, 0x47, 0xd8, 0x1d, 0x12, 0xce, 0x43, 0xcd, 0x14, 0x0d, 0x74, 0x09, 0x2a, 0x9e, 0x4f, + 0xad, 0xae, 0x3f, 0xf4, 0x3a, 0xcd, 0xc2, 0xa6, 0xb6, 0x55, 0x36, 0xcb, 0x9e, 0x4f, 0xef, 0xb1, + 0x36, 0xfa, 0x15, 0x68, 0x90, 0x63, 0x62, 0x5b, 0x1d, 0x42, 0xb1, 0xe3, 0x46, 0xd6, 0x68, 0xb7, + 0xb9, 0xc8, 0x67, 0x59, 0x8f, 0x67, 0xb9, 0x7b, 0x4c, 0xec, 0x3b, 0x02, 0xfd, 0x74, 0xd7, 0x5c, + 0x22, 0xe9, 0xe6, 0x97, 0x0a, 0xe5, 0xa2, 0xbe, 0x68, 0xfc, 0x8f, 0x06, 0xd5, 0x96, 0x8d, 0xbd, + 0x79, 0x94, 0x79, 0x09, 0x2a, 0x11, 0xc5, 0x21, 0xb5, 0x12, 0x95, 0x96, 0x39, 0xe0, 0x21, 0x19, + 0x33, 0x89, 0x5c, 0x67, 0xe0, 0x50, 0x2e, 0xd1, 0x92, 0x29, 0x1a, 0x69, 0x6d, 0x17, 0x32, 0xda, + 0x46, 0x17, 0xa0, 0xdc, 0x27, 0x63, 0xcb, 0xf7, 0xdc, 0x71, 0xb3, 0xc8, 0x45, 0x2d, 0xf5, 0xc9, + 0xf8, 0xc0, 0x73, 0xf9, 0x12, 0x85, 0x84, 0xd1, 0x11, 0x2e, 0x61, 0xd9, 0x54, 0x4d, 0xb4, 0x01, + 0x25, 0xe2, 0x75, 0xf8, 0xfc, 0x25, 0x3e, 0xff, 0x22, 0xf1, 0x3a, 0x6c, 0xf6, 0xab, 0x50, 0x8d, + 0xf0, 0x20, 0x70, 0x89, 0x15, 0x51, 0x12, 0x34, 0xcb, 0x9c, 0x07, 0x10, 0xa0, 0x16, 0x25, 0x81, + 0xf1, 0x47, 0x1a, 0xd4, 0x84, 0xdc, 0xf3, 0xaf, 0xee, 0x75, 0x28, 0x06, 0xd8, 0x09, 0xa3, 0x66, + 0x6e, 0x33, 0xbf, 0x55, 0xdd, 0x6d, 0x24, 0xab, 0x3b, 0x3a, 0xc4, 0x4e, 0x68, 0x0a, 0x6c, 0x62, + 0x04, 0xf9, 0x93, 0x8d, 0xc0, 0xf8, 0xaf, 0x02, 0x34, 0x0e, 0x43, 0xf2, 0x3c, 0x74, 0x28, 0x99, + 0x67, 0x3d, 0x6e, 0x42, 0x65, 0x30, 0xa4, 0x98, 0x3a, 0xbe, 0xa7, 0x78, 0x4a, 0x26, 0x7b, 0x2c, + 0x31, 0x66, 0x42, 0x83, 0xae, 0x41, 0x2d, 0x08, 0x9d, 0x01, 0x0e, 0xc7, 0x16, 0xdb, 0x6c, 0xd2, + 0xf8, 0xaa, 0x12, 0xf6, 0xc8, 0xb7, 0xfb, 0xe8, 0x63, 0xb0, 0x24, 0xd6, 0x38, 0xbb, 0x6c, 0x35, + 0x0e, 0x7c, 0x9a, 0xac, 0x1d, 0xeb, 0x6f, 0x51, 0xea, 0xf2, 0xb5, 0x2b, 0x98, 0x25, 0xd6, 0x6e, + 0x53, 0x17, 0xed, 0xc2, 0x5a, 0xd4, 0x77, 0x02, 0xcb, 0xf6, 0xbd, 0x88, 0x86, 0xd8, 0xf1, 0xa8, + 0x65, 0x1f, 0x11, 0xbb, 0x2f, 0x57, 0x72, 0x85, 0x21, 0xf7, 0x62, 0xdc, 0x1e, 0x43, 0xa1, 0x1d, + 0x58, 0x71, 0x22, 0x2b, 0x20, 0x51, 0xe4, 0x0c, 0x9c, 0x88, 0x3a, 0xb6, 0xe0, 0xae, 0xb4, 0x99, + 0xdf, 0x2a, 0x9b, 0xcb, 0x4e, 0x74, 0x98, 0x60, 0x38, 0x8f, 0x17, 0xa0, 0x4c, 0x8f, 0x3d, 0x2b, + 0x72, 0xbe, 0x41, 0xf8, 0x4a, 0x17, 0xcc, 0x12, 0x3d, 0xf6, 0x5a, 0xce, 0x37, 0x08, 0x32, 0x60, + 0xa9, 0xeb, 0x87, 0xd6, 0x30, 0xe8, 0x60, 0x4a, 0x2c, 0x1a, 0x35, 0x2b, 0x1c, 0x5f, 0xed, 0xfa, + 0xe1, 0x97, 0x39, 0xac, 0x1d, 0x31, 0x9a, 0x81, 0xe3, 0x59, 0xb6, 0x3f, 0x18, 0x38, 0x94, 0xd1, + 0x80, 0xa0, 0x19, 0x38, 0xde, 0x1e, 0x87, 0xb5, 0x23, 0xb4, 0x05, 0xfa, 0x30, 0x22, 0x16, 0x8e, + 0xc6, 0x9e, 0x2d, 0x29, 0x9b, 0x55, 0x2e, 0x41, 0x7d, 0x18, 0x91, 0x5b, 0x0c, 0x2c, 0x68, 0xd1, + 0x26, 0x54, 0x23, 0x62, 0xfb, 0x5e, 0x07, 0x87, 0x0e, 0x89, 0x9a, 0xb5, 0xcd, 0x3c, 0x53, 0x69, + 0x0a, 0x84, 0x2e, 0x03, 0xd0, 0x90, 0x59, 0x3a, 0xb1, 0x02, 0xbb, 0xb9, 0x24, 0xb6, 0x35, 0x0d, + 0xc7, 0x07, 0x1e, 0x39, 0xb4, 0x39, 0x37, 0xf8, 0x38, 0xc5, 0x4d, 0x5d, 0x72, 0x83, 0x8f, 0x63, + 0x6e, 0xde, 0x86, 0x06, 0x8e, 0x22, 0x12, 0xb2, 0x55, 0xb4, 0x5c, 0x32, 0x22, 0x6e, 0xb3, 0xb1, + 0xa9, 0x6d, 0xd5, 0x77, 0x37, 0xe2, 0xe5, 0xbe, 0xa5, 0xf0, 0x8f, 0x18, 0xda, 0xac, 0xe3, 0x4c, + 0xdb, 0xf8, 0x5b, 0x0d, 0xf4, 0xc4, 0xd4, 0xe6, 0xdf, 0x02, 0x9f, 0x80, 0x45, 0x8e, 0x9d, 0xb6, + 0xb7, 0xd8, 0xb8, 0x25, 0xc1, 0xb4, 0x9a, 0xf3, 0xd3, 0x6a, 0xbe, 0x01, 0xba, 0x50, 0x4b, 0x8a, + 0x4c, 0x18, 0xdc, 0x92, 0xcf, 0xb4, 0xa3, 0x08, 0x8d, 0x1f, 0xe7, 0x61, 0x7d, 0xc2, 0x0c, 0xfe, + 0xbf, 0xec, 0x98, 0x29, 0x93, 0x5d, 0x9c, 0x69, 0xb2, 0x4e, 0x64, 0x75, 0x9d, 0x30, 0xa2, 0x6a, + 0x6f, 0x30, 0x2b, 0xaa, 0x3a, 0xd1, 0x3d, 0x06, 0xe3, 0x7c, 0x5c, 0x83, 0xda, 0x73, 0xcc, 0x54, + 0xe8, 0x0c, 0x88, 0x3f, 0xa4, 0x7c, 0x67, 0xe4, 0xcd, 0x2a, 0x83, 0xb5, 0x05, 0x08, 0x35, 0xa1, + 0xd8, 0xf5, 0x43, 0x9b, 0xf0, 0x5d, 0x51, 0xbe, 0x9d, 0x6b, 0x6a, 0xa6, 0x00, 0x30, 0x21, 0x42, + 0x42, 0x87, 0xa1, 0x67, 0xf1, 0x93, 0x48, 0xec, 0x89, 0xb2, 0x59, 0x13, 0xc0, 0xa7, 0x1c, 0x36, + 0xbd, 0xa2, 0xd5, 0x59, 0x2b, 0xda, 0xe0, 0xfb, 0xdd, 0x22, 0xc7, 0x4e, 0x44, 0x89, 0x67, 0x93, + 0x66, 0x4d, 0xec, 0x1b, 0x0e, 0xbe, 0xab, 0xa0, 0xc6, 0x7f, 0x6b, 0xb0, 0x31, 0xb5, 0xa2, 0xaf, + 0xc4, 0x30, 0xaf, 0x42, 0x65, 0xc2, 0x28, 0xb9, 0x26, 0xca, 0xb6, 0x92, 0xa1, 0xa9, 0x0e, 0x67, + 0xb6, 0x92, 0x35, 0xa1, 0x26, 0x71, 0x40, 0xaf, 0xc3, 0xa2, 0xd4, 0x4f, 0x91, 0xef, 0x73, 0xd9, + 0x42, 0x57, 0x00, 0xe2, 0x83, 0x9b, 0x2d, 0x20, 0x73, 0x5c, 0x15, 0x75, 0x72, 0x47, 0xc6, 0xfb, + 0x1a, 0x5c, 0x4c, 0xc9, 0x6a, 0xfa, 0xae, 0xfb, 0x0c, 0xcf, 0x67, 0xc1, 0x53, 0xd6, 0x96, 0x9b, + 0x61, 0x6d, 0x53, 0x26, 0x95, 0x9f, 0x36, 0x29, 0x04, 0x85, 0x3e, 0x19, 0xb3, 0xed, 0xc6, 0x04, + 0xe1, 0xbf, 0x8d, 0x6f, 0xc2, 0xa5, 0x99, 0x6c, 0xbe, 0x8a, 0x65, 0x31, 0xfe, 0x4a, 0x83, 0x95, + 0xf6, 0xb1, 0xf7, 0x80, 0xe0, 0x90, 0xde, 0x26, 0x78, 0xae, 0x70, 0x6f, 0x72, 0xbb, 0xe6, 0x4e, + 0xb1, 0x5d, 0xf3, 0x33, 0x14, 0xf8, 0x3a, 0x34, 0x70, 0x67, 0xe4, 0x44, 0xc4, 0x8a, 0x77, 0xad, + 0x74, 0x4b, 0x02, 0xfc, 0x48, 0xec, 0x5d, 0xe3, 0xf7, 0x35, 0x58, 0xcd, 0xf2, 0xfc, 0x0a, 0x62, + 0xc7, 0xb4, 0x2f, 0xc9, 0x67, 0x7c, 0x89, 0xf1, 0x1f, 0x39, 0x58, 0xe3, 0x67, 0x6a, 0xfb, 0xd8, + 0x6b, 0x51, 0x4c, 0x87, 0xd1, 0x3c, 0x5a, 0xbc, 0x0a, 0x4a, 0x63, 0xa9, 0x48, 0x0f, 0x24, 0x88, + 0x45, 0x5b, 0x1b, 0x50, 0x12, 0x1c, 0x28, 0xcb, 0x5a, 0xe4, 0x0c, 0x44, 0x4c, 0x6f, 0x36, 0x76, + 0x5d, 0x12, 0x5a, 0x42, 0xc7, 0x89, 0x3b, 0x17, 0xe0, 0x16, 0x83, 0xb6, 0xf9, 0x7e, 0xb1, 0x87, + 0x61, 0x48, 0x3c, 0x4e, 0x22, 0x1c, 0x62, 0x45, 0x42, 0xda, 0x11, 0x7a, 0x13, 0xd6, 0x42, 0x69, + 0x7c, 0x96, 0xd3, 0xb5, 0xd8, 0xd6, 0xe2, 0xee, 0x44, 0x06, 0x11, 0x48, 0x21, 0xf7, 0xbb, 0x4f, + 0x7c, 0xca, 0x5d, 0x0a, 0xda, 0x86, 0x65, 0xee, 0xc9, 0xac, 0xf4, 0x89, 0x2d, 0xbc, 0x64, 0x83, + 0x23, 0x5a, 0xc9, 0x91, 0xfd, 0x05, 0xb8, 0x18, 0x92, 0xc8, 0x77, 0x47, 0x8e, 0xd7, 0x9b, 0x0e, + 0x3b, 0xca, 0xbc, 0x53, 0x33, 0xa6, 0x98, 0x70, 0x52, 0xc6, 0x77, 0x72, 0xb0, 0x3e, 0xa9, 0xe3, + 0x9f, 0xe9, 0xaa, 0xa3, 0xeb, 0x50, 0x97, 0x0e, 0x2d, 0x7b, 0x04, 0x2d, 0x09, 0xa8, 0x32, 0xea, + 0x1b, 0xb0, 0x88, 0x6d, 0x76, 0xac, 0x71, 0x85, 0xd7, 0x53, 0xf1, 0xeb, 0x2d, 0x0e, 0x36, 0x25, + 0x1a, 0xed, 0x40, 0x85, 0x4f, 0xe5, 0x78, 0x5d, 0x5f, 0xde, 0x31, 0x12, 0xbe, 0x98, 0x0e, 0xf6, + 0xbd, 0xae, 0x6f, 0x72, 0x76, 0xd8, 0x2f, 0xe3, 0x5b, 0x1a, 0x5c, 0xe4, 0x1a, 0x69, 0xc9, 0xa8, + 0x87, 0xef, 0xb4, 0xb9, 0x4c, 0x4f, 0x79, 0xa5, 0x5c, 0xe2, 0x95, 0x4e, 0xb5, 0x63, 0x8d, 0x0f, + 0x34, 0xb8, 0x34, 0x93, 0x87, 0x57, 0xb0, 0x34, 0x37, 0xa0, 0xc8, 0x74, 0xc1, 0x36, 0x43, 0x7e, + 0xb6, 0xae, 0x04, 0x9e, 0x5d, 0xa0, 0x26, 0xe3, 0x9c, 0xf8, 0xd4, 0x31, 0x7e, 0xa0, 0xc1, 0x92, + 0x30, 0xd0, 0x73, 0x3b, 0x17, 0x94, 0x76, 0xf3, 0x29, 0xed, 0x9e, 0xce, 0x78, 0xc4, 0xed, 0xd1, + 0x5c, 0x7c, 0xe6, 0x78, 0xae, 0xdf, 0x33, 0xfe, 0x58, 0x83, 0xba, 0xe2, 0xf5, 0x15, 0x28, 0x78, + 0x9a, 0xc7, 0xfc, 0x0c, 0x1e, 0x8d, 0x1e, 0x2c, 0xed, 0x0f, 0x02, 0x3f, 0x8c, 0x15, 0x98, 0x09, + 0xf7, 0xb4, 0x53, 0x84, 0x7b, 0xd3, 0x13, 0xe5, 0x66, 0x4d, 0xf4, 0x0e, 0xd4, 0xd5, 0x44, 0xf3, + 0x4b, 0xbf, 0x9a, 0x96, 0xbe, 0xa2, 0xee, 0x84, 0xdf, 0x65, 0x9a, 0x75, 0x09, 0xf6, 0x86, 0xc1, + 0xd9, 0xe4, 0x3b, 0x4e, 0x75, 0xde, 0x65, 0xfd, 0x71, 0x61, 0xc2, 0x1f, 0x1b, 0xdf, 0xd3, 0xa0, + 0x11, 0x33, 0xf5, 0xf3, 0xb3, 0xde, 0x7d, 0x68, 0xdc, 0xc6, 0xd4, 0x3e, 0x9a, 0x33, 0x37, 0x34, + 0xcb, 0xd7, 0xbc, 0x38, 0x3b, 0xf4, 0xaf, 0x1a, 0xe8, 0xc9, 0x6c, 0xe7, 0x9e, 0x44, 0x98, 0x91, + 0xed, 0x29, 0x7c, 0x84, 0x6c, 0x4f, 0xa2, 0xeb, 0xe2, 0xc9, 0xba, 0xfe, 0x52, 0xa1, 0x9c, 0xd7, + 0x0b, 0xc6, 0x37, 0x61, 0x95, 0x0b, 0x77, 0xee, 0xa1, 0xe9, 0x0c, 0x17, 0x64, 0x44, 0xb0, 0x36, + 0x31, 0xf9, 0xf9, 0xdb, 0x98, 0xf1, 0x97, 0x1a, 0x34, 0x5a, 0x36, 0xf6, 0xe6, 0xbd, 0x4a, 0x5e, + 0x05, 0x76, 0x45, 0x9f, 0x90, 0x15, 0x06, 0xf8, 0x58, 0x49, 0x9a, 0xc9, 0x96, 0xe5, 0x5f, 0x94, + 0x2d, 0x2b, 0xa4, 0xb3, 0x65, 0xa9, 0xf4, 0x56, 0x31, 0x9d, 0xde, 0x32, 0xde, 0xd3, 0x40, 0x4f, + 0x98, 0xfd, 0x39, 0x3a, 0xd2, 0x8c, 0x1f, 0x6b, 0x80, 0x4c, 0x1e, 0x2a, 0x91, 0x79, 0x35, 0x79, + 0x2a, 0xbb, 0x39, 0x9d, 0x4b, 0x40, 0x6f, 0x40, 0x85, 0x1e, 0x7b, 0x3c, 0x72, 0x11, 0x57, 0x9b, + 0xf4, 0xcc, 0xed, 0x63, 0x4f, 0x44, 0x2e, 0x54, 0xfc, 0x48, 0x2e, 0x41, 0xc5, 0x94, 0x35, 0xbe, + 0x0b, 0x2b, 0x19, 0x81, 0x5e, 0x81, 0x2d, 0x3e, 0x85, 0xca, 0xfd, 0xbd, 0x79, 0x54, 0x77, 0x05, + 0x20, 0xc2, 0x5d, 0x62, 0x05, 0xbe, 0xe3, 0x51, 0xa9, 0xb7, 0x0a, 0x83, 0x1c, 0x32, 0x80, 0x71, + 0x04, 0xc0, 0xc6, 0x7d, 0x05, 0x12, 0xbc, 0xa7, 0x01, 0xba, 0x43, 0x5c, 0x42, 0x89, 0x89, 0xbd, + 0x1e, 0x39, 0xf3, 0xec, 0x72, 0x6a, 0x67, 0xe4, 0x27, 0x13, 0xbf, 0x9e, 0x4f, 0x9d, 0xae, 0xcc, + 0x24, 0x8b, 0xa4, 0x39, 0x08, 0xd0, 0x81, 0xe7, 0x8e, 0x8d, 0xaf, 0xc1, 0x4a, 0x86, 0xb1, 0xb3, + 0x3e, 0xb0, 0xbf, 0x0a, 0x4b, 0x26, 0x7e, 0x7e, 0x66, 0xcf, 0x13, 0x75, 0xc8, 0xd9, 0x5d, 0x2e, + 0x63, 0xc5, 0xcc, 0xd9, 0x5d, 0xe3, 0xf7, 0x34, 0xa8, 0xab, 0xf1, 0xcf, 0x98, 0xf5, 0x39, 0x1e, + 0x21, 0x8c, 0x0e, 0x20, 0x13, 0x3f, 0x3f, 0xeb, 0x53, 0x77, 0x52, 0x68, 0x1f, 0x56, 0x32, 0xb3, + 0x9c, 0xf7, 0x69, 0x6b, 0xfc, 0x99, 0xc6, 0x57, 0xf1, 0x70, 0x78, 0x46, 0xab, 0x38, 0x5b, 0xb3, + 0x42, 0xcc, 0x82, 0x12, 0x93, 0xf5, 0x4b, 0xf2, 0x81, 0xec, 0x27, 0x33, 0xf3, 0xae, 0x1f, 0x5a, + 0x36, 0x8e, 0xe4, 0x55, 0x77, 0xb1, 0xeb, 0x87, 0x7b, 0x38, 0x62, 0x11, 0xa7, 0xe2, 0xef, 0xac, + 0x0d, 0xf8, 0x6f, 0xb4, 0x64, 0x4d, 0xe7, 0x54, 0xc0, 0x29, 0x63, 0x9a, 0x89, 0x65, 0x46, 0xab, + 0x42, 0xfe, 0x42, 0x9c, 0x82, 0x9b, 0xd4, 0x41, 0x31, 0xad, 0x03, 0x66, 0x39, 0x94, 0xba, 0x22, + 0xbd, 0x56, 0x30, 0xf9, 0x6f, 0xb6, 0xbb, 0x33, 0xbc, 0x9f, 0xb5, 0x72, 0xc6, 0xa0, 0x9b, 0xf8, + 0xb9, 0x74, 0x20, 0xe7, 0xb1, 0xc1, 0xd3, 0xe2, 0x16, 0x32, 0x4b, 0xfe, 0x6b, 0xb0, 0x9c, 0x9a, + 0xfa, 0xac, 0x05, 0xfb, 0x0d, 0x0d, 0xd6, 0x94, 0xe6, 0xe6, 0x17, 0xef, 0x14, 0x9b, 0xf9, 0xc5, + 0x02, 0x62, 0x58, 0x9f, 0xe4, 0xe0, 0xac, 0xa5, 0xfc, 0x27, 0xe1, 0x3d, 0x5f, 0xe1, 0x83, 0x67, + 0xfa, 0x59, 0xb3, 0x90, 0x7d, 0xd6, 0x14, 0x8a, 0x29, 0xc6, 0x8a, 0xf9, 0xe8, 0xcf, 0x9c, 0x46, + 0x0f, 0x1a, 0xb1, 0x38, 0xf3, 0xeb, 0xea, 0x1a, 0xe4, 0xfb, 0xa3, 0x17, 0x6e, 0x56, 0x86, 0x33, + 0x7e, 0x57, 0x98, 0xc7, 0xcf, 0xe4, 0x48, 0x9f, 0x70, 0x93, 0xd2, 0x4e, 0xce, 0xf5, 0x10, 0xff, + 0x89, 0x96, 0xf8, 0x91, 0x79, 0x8d, 0xe5, 0x13, 0xb0, 0x18, 0x32, 0xee, 0x66, 0xa6, 0xba, 0x05, + 0xdf, 0x92, 0x80, 0x85, 0x6d, 0x04, 0xdb, 0x47, 0x56, 0xda, 0x7e, 0x2a, 0x0c, 0xf2, 0xe8, 0xcc, + 0x6c, 0xc8, 0x70, 0x61, 0x35, 0x2b, 0xd1, 0xb9, 0xda, 0xcb, 0xaf, 0xc3, 0x85, 0x2f, 0x7b, 0x2c, + 0xf0, 0xbc, 0x43, 0x22, 0x1a, 0xfa, 0xe3, 0x57, 0x6b, 0x32, 0x06, 0x81, 0x8b, 0xb3, 0xa6, 0x3f, + 0x6b, 0x33, 0xf9, 0x3a, 0x5c, 0x32, 0x49, 0xcf, 0x89, 0x28, 0x09, 0xd9, 0xdd, 0xe0, 0xe0, 0x59, + 0x44, 0xc2, 0x11, 0x09, 0xe7, 0x91, 0x73, 0x0d, 0x16, 0xd9, 0xf5, 0x91, 0x46, 0x32, 0x6a, 0x2f, + 0x0e, 0xf0, 0x71, 0x3b, 0x32, 0xde, 0x82, 0xcb, 0xb3, 0x67, 0x90, 0xa2, 0xc4, 0x7c, 0x69, 0xd9, + 0x18, 0xb4, 0xc9, 0x73, 0x9f, 0xe7, 0xc4, 0xd4, 0x10, 0x2e, 0xcc, 0x18, 0xfe, 0x24, 0x8e, 0x98, + 0x09, 0x3b, 0x91, 0x65, 0xbb, 0x04, 0x8b, 0xeb, 0x5c, 0xd9, 0x2c, 0x39, 0x11, 0x4f, 0x21, 0x9d, + 0xfe, 0x6a, 0xf9, 0x35, 0xb8, 0x60, 0x92, 0x81, 0x2f, 0xee, 0x61, 0xe7, 0x20, 0xd6, 0x2e, 0x5c, + 0x9c, 0x35, 0xfe, 0x89, 0x9a, 0xfe, 0x8e, 0x06, 0x1b, 0x87, 0x47, 0xe3, 0xc8, 0xb1, 0xb1, 0xfb, + 0xd3, 0x64, 0x0f, 0x66, 0xb3, 0x34, 0x47, 0xce, 0xc0, 0x78, 0x07, 0x9a, 0xd3, 0x0c, 0x9d, 0xb8, + 0x36, 0xf1, 0x02, 0xe4, 0x5e, 0xb2, 0x00, 0x7f, 0xaa, 0x01, 0x6a, 0x05, 0xae, 0x43, 0x4d, 0xbe, + 0x33, 0xe6, 0xcb, 0x92, 0x54, 0x22, 0x36, 0x42, 0xb2, 0x9d, 0xc5, 0x5b, 0x2b, 0x07, 0x32, 0xa1, + 0xd8, 0x0d, 0x56, 0x11, 0xa8, 0xac, 0x50, 0x45, 0x61, 0x23, 0x74, 0x11, 0x2a, 0x4e, 0x64, 0x85, + 0xf8, 0xb9, 0xd5, 0x1f, 0x29, 0x5f, 0xe8, 0x44, 0x26, 0x7e, 0xfe, 0x70, 0x64, 0xfc, 0x83, 0x06, + 0x2b, 0x19, 0xf6, 0xe6, 0xdf, 0xee, 0xaf, 0x43, 0xc1, 0x25, 0x5d, 0x2a, 0xaf, 0xb9, 0xf5, 0x1d, + 0x59, 0xd2, 0x26, 0x06, 0xe6, 0x1c, 0x73, 0x3c, 0xda, 0x82, 0x62, 0xe8, 0xf4, 0x8e, 0xa8, 0x2c, + 0xed, 0x99, 0x45, 0x28, 0x08, 0xd0, 0x16, 0x73, 0xcc, 0x3d, 0x9e, 0x78, 0x16, 0x69, 0x88, 0x09, + 0x5a, 0x53, 0xa1, 0x8d, 0xdf, 0xd2, 0x40, 0x37, 0x09, 0xee, 0xec, 0x7b, 0x1d, 0x72, 0x3c, 0x8f, + 0x8e, 0x2f, 0x40, 0x39, 0x7e, 0x6d, 0x13, 0xd6, 0x54, 0x8a, 0xe4, 0x3b, 0x5b, 0x72, 0x26, 0xe5, + 0x5f, 0x72, 0x26, 0x19, 0x7f, 0xa8, 0xc1, 0x72, 0x8a, 0x8d, 0xf9, 0x75, 0x79, 0x05, 0x20, 0x24, + 0xb8, 0x63, 0x39, 0x6c, 0x20, 0x95, 0x93, 0x08, 0xd5, 0xc8, 0x8c, 0x25, 0x66, 0x5d, 0xa4, 0x33, + 0x55, 0x1e, 0x15, 0x9b, 0x9f, 0x24, 0x30, 0x5a, 0xb0, 0xf2, 0x78, 0x64, 0xdb, 0xf7, 0x09, 0xbd, + 0x3d, 0x66, 0xfc, 0x9e, 0x45, 0xfc, 0x6d, 0xfc, 0x8e, 0x06, 0xab, 0xd9, 0x51, 0xcf, 0xfa, 0x5a, + 0x7d, 0x1d, 0x0a, 0xfc, 0xe5, 0x6c, 0x52, 0x3e, 0x36, 0x2b, 0x97, 0x8f, 0xa3, 0x8d, 0xaf, 0xc3, + 0x46, 0xcc, 0x87, 0x7c, 0x17, 0x3d, 0xdb, 0xd5, 0x67, 0xfb, 0xb7, 0x39, 0x3d, 0xc5, 0x59, 0x8b, + 0x2b, 0x55, 0x9c, 0x4f, 0xae, 0x38, 0x4a, 0x01, 0x85, 0x93, 0x15, 0xf0, 0x77, 0x25, 0x28, 0xed, + 0x25, 0xc7, 0xbe, 0xe4, 0xc6, 0xe9, 0x70, 0x56, 0x0a, 0x66, 0x59, 0x00, 0xf6, 0x3b, 0xe8, 0x73, + 0x09, 0xab, 0x81, 0x6f, 0x1f, 0xc9, 0x5d, 0xba, 0x92, 0xdd, 0x50, 0x77, 0x19, 0x2a, 0xe6, 0x97, + 0x35, 0xd0, 0x26, 0x14, 0x02, 0x42, 0x54, 0x1d, 0x5e, 0x4d, 0xd1, 0x1f, 0x12, 0x12, 0x9a, 0x1c, + 0xc3, 0xaf, 0x94, 0x24, 0x1c, 0xc8, 0x2b, 0x38, 0xff, 0x8d, 0x6e, 0x42, 0x39, 0x08, 0x1d, 0x3f, + 0x74, 0xe8, 0x98, 0xc7, 0x54, 0xf5, 0xdd, 0x95, 0x94, 0xf6, 0x07, 0x03, 0xec, 0x75, 0x0e, 0x43, + 0xc7, 0x8c, 0x89, 0xd0, 0xdb, 0xd0, 0x70, 0x22, 0xdf, 0xc5, 0xa9, 0xea, 0xac, 0xd2, 0x44, 0x75, + 0xd6, 0xbe, 0xc2, 0xcb, 0xea, 0x2c, 0x27, 0xd3, 0x46, 0x1f, 0x87, 0x3a, 0x4f, 0xb9, 0x38, 0xae, + 0x6b, 0xd9, 0xd8, 0x3e, 0x22, 0xf2, 0x11, 0xba, 0xe6, 0xf9, 0xf4, 0x9e, 0xe3, 0xba, 0x7b, 0x0c, + 0xc6, 0x57, 0x7a, 0xec, 0xd9, 0x96, 0xeb, 0xf7, 0x44, 0x01, 0x8f, 0x59, 0x62, 0xed, 0x47, 0x7e, + 0x0f, 0x6d, 0x81, 0x1e, 0x12, 0xdb, 0x0f, 0x3b, 0xbc, 0xfa, 0xc7, 0x8a, 0x28, 0xa6, 0xb2, 0x82, + 0xa7, 0x2e, 0xe0, 0x6d, 0x67, 0x40, 0x5a, 0x14, 0xd3, 0x14, 0x65, 0x64, 0x63, 0x4f, 0x50, 0x56, + 0xd3, 0x94, 0xec, 0x10, 0xe1, 0x94, 0xd7, 0x98, 0xd6, 0x03, 0xd7, 0xb1, 0xb1, 0xc5, 0x76, 0xaf, + 0x2c, 0xe3, 0xa9, 0x4a, 0x18, 0x73, 0x15, 0xe8, 0x3a, 0xd4, 0xc5, 0x33, 0x39, 0xe9, 0x58, 0xe2, + 0x48, 0x59, 0xe2, 0x77, 0xf3, 0x25, 0x05, 0xe5, 0x6f, 0xb0, 0xe8, 0x17, 0xe1, 0x02, 0x3b, 0xec, + 0xc8, 0x31, 0xb1, 0x87, 0x5c, 0x49, 0x9d, 0x61, 0x28, 0xb4, 0x35, 0x50, 0xe5, 0x6e, 0xeb, 0x03, + 0x7c, 0x7c, 0x57, 0xe1, 0xef, 0x48, 0xf4, 0x63, 0xfe, 0xf6, 0x8b, 0x83, 0xc0, 0x75, 0x88, 0xf2, + 0x27, 0x0d, 0x91, 0x1b, 0x96, 0x40, 0xe1, 0x52, 0x36, 0xa0, 0x44, 0x71, 0xd4, 0x67, 0xa6, 0xa3, + 0x8b, 0x72, 0x04, 0xd6, 0xdc, 0xef, 0xf0, 0xc3, 0x85, 0x62, 0x97, 0x08, 0x01, 0x96, 0xb9, 0x00, + 0x15, 0x0e, 0xe1, 0xec, 0x7f, 0x0a, 0x10, 0x63, 0x74, 0x18, 0xda, 0xc4, 0xea, 0x85, 0xfe, 0x30, + 0xb0, 0x28, 0xee, 0x35, 0x11, 0x37, 0x64, 0x5d, 0x61, 0xee, 0x33, 0x44, 0x1b, 0xf7, 0xd0, 0xe7, + 0x61, 0xa9, 0xe3, 0x44, 0x7d, 0xab, 0x3b, 0x74, 0x5d, 0xcb, 0x0f, 0x68, 0x73, 0x85, 0x2f, 0xf2, + 0x6a, 0xbc, 0xc8, 0x77, 0x9c, 0xa8, 0x7f, 0x6f, 0xe8, 0xba, 0x07, 0x01, 0x35, 0xab, 0x9d, 0xa4, + 0xc1, 0x74, 0xce, 0x0e, 0x31, 0x42, 0xc3, 0xb1, 0x15, 0x8a, 0x2d, 0xde, 0x5c, 0x15, 0x3a, 0x77, + 0x22, 0x93, 0x81, 0xd5, 0xc6, 0x7f, 0x0b, 0xaa, 0x38, 0x70, 0xe2, 0x14, 0xf7, 0xda, 0x84, 0xf9, + 0xdd, 0x3a, 0xdc, 0x97, 0x89, 0x6e, 0x13, 0x70, 0xe0, 0x24, 0x0f, 0xfb, 0x0d, 0x91, 0x05, 0xa7, + 0xf1, 0x3a, 0xac, 0xf3, 0x75, 0xa8, 0xc7, 0x60, 0xb1, 0x10, 0xbf, 0x04, 0xa2, 0xb0, 0xda, 0x52, + 0xde, 0x65, 0x83, 0xef, 0x8c, 0xb5, 0x1d, 0x55, 0x6e, 0xdd, 0x66, 0x7f, 0x95, 0x8b, 0xa9, 0xd1, + 0x54, 0xeb, 0x4b, 0x85, 0x72, 0x41, 0x2f, 0xb2, 0xe5, 0xc7, 0x1d, 0xeb, 0xdd, 0xa1, 0x1f, 0x0e, + 0x07, 0xc6, 0xbf, 0xe5, 0xa0, 0xac, 0x9c, 0xf6, 0x54, 0xe9, 0x8d, 0x36, 0x5d, 0x7a, 0x73, 0x0d, + 0x6a, 0xbc, 0xae, 0x20, 0x9b, 0xe7, 0xaf, 0x32, 0x98, 0x12, 0x65, 0xda, 0x99, 0xa4, 0xeb, 0x1e, + 0x0a, 0xd9, 0xba, 0x87, 0x74, 0x1d, 0x68, 0x31, 0x5b, 0x07, 0xba, 0x25, 0x4b, 0x18, 0xe8, 0x38, + 0x20, 0x72, 0x17, 0x57, 0x63, 0x35, 0x1e, 0x04, 0xa2, 0x78, 0xa1, 0x3d, 0x0e, 0x08, 0xfa, 0x24, + 0x20, 0x4e, 0x99, 0x2d, 0x98, 0x2a, 0xf1, 0xe1, 0x1a, 0x0c, 0x73, 0x2f, 0x55, 0x34, 0x35, 0xab, + 0x2c, 0xb4, 0x3c, 0xb3, 0x2c, 0x74, 0xaa, 0x56, 0xae, 0x32, 0x5d, 0x2b, 0x37, 0x51, 0x3a, 0x0a, + 0x53, 0xa5, 0xa3, 0xc6, 0x7b, 0x05, 0x28, 0xab, 0x54, 0x7b, 0xea, 0xe4, 0xd4, 0x5e, 0x72, 0x72, + 0xa2, 0xcb, 0xcc, 0x9d, 0xd2, 0x70, 0x8c, 0x9f, 0xb9, 0x44, 0x7a, 0xeb, 0x04, 0xc0, 0xfc, 0x38, + 0x7e, 0xe6, 0x87, 0x54, 0x26, 0x69, 0x44, 0x03, 0xed, 0x42, 0xd9, 0xf6, 0xbd, 0xae, 0xeb, 0xd8, + 0x74, 0xea, 0xa9, 0xf1, 0x2b, 0xa1, 0x43, 0x99, 0x25, 0x70, 0xac, 0x19, 0xd3, 0x31, 0x83, 0xc2, + 0x2e, 0x33, 0x89, 0xb1, 0x2c, 0xd0, 0x29, 0x4a, 0x83, 0x8a, 0x2d, 0x56, 0x60, 0x79, 0x8d, 0x8e, + 0x59, 0xc3, 0xa9, 0x16, 0x7a, 0x03, 0xca, 0xaa, 0xea, 0x7f, 0xaa, 0xc8, 0xe4, 0x8e, 0x44, 0x98, + 0x31, 0x09, 0xba, 0x03, 0xcb, 0xb1, 0x32, 0x2d, 0x72, 0x1c, 0x38, 0x21, 0xe9, 0xf0, 0x65, 0xaa, + 0xee, 0x36, 0x33, 0xfe, 0x99, 0xa9, 0xf6, 0xae, 0xc0, 0x9b, 0x0d, 0x3b, 0x0b, 0x60, 0x9b, 0x98, + 0x99, 0x4c, 0x92, 0xe0, 0x2e, 0xf3, 0x11, 0x56, 0xd3, 0x6f, 0x44, 0x4f, 0x64, 0xb2, 0xdb, 0xac, + 0xd2, 0xa4, 0x81, 0x1e, 0xc0, 0x4a, 0x32, 0x3f, 0xf5, 0x7d, 0xcb, 0xc5, 0x61, 0x4f, 0x54, 0x52, + 0x56, 0x77, 0x2f, 0x4c, 0x71, 0xd0, 0xf6, 0xfd, 0x47, 0x8c, 0xc0, 0xd4, 0xed, 0x09, 0x08, 0xda, + 0x03, 0x3d, 0xa9, 0xe6, 0xed, 0x62, 0xc7, 0x25, 0x1d, 0xee, 0xac, 0xd3, 0x82, 0xc4, 0xe5, 0xbc, + 0xf7, 0x38, 0xde, 0x4c, 0xea, 0x7f, 0x05, 0xc0, 0x78, 0x5f, 0x83, 0xa5, 0xcc, 0xaa, 0x64, 0x02, + 0x01, 0x2d, 0x1b, 0x06, 0x5e, 0x85, 0xaa, 0x5a, 0xb2, 0x24, 0x4c, 0x00, 0x05, 0x6a, 0x47, 0x33, + 0xb6, 0x5d, 0x13, 0x4a, 0x72, 0xeb, 0x8a, 0x2a, 0x48, 0x53, 0x35, 0x99, 0xd7, 0x8c, 0x07, 0x4b, + 0xcc, 0x5b, 0xec, 0x3f, 0x5d, 0x61, 0xe2, 0xc2, 0xdd, 0x4d, 0xa8, 0xa5, 0x6d, 0x40, 0xcd, 0xa4, + 0x25, 0x01, 0xd9, 0x9f, 0x6b, 0x50, 0x56, 0xeb, 0x9d, 0xae, 0x2c, 0xd3, 0x32, 0x95, 0x65, 0xca, + 0x0d, 0x24, 0xd1, 0x1c, 0x27, 0x64, 0x57, 0x88, 0x6d, 0x58, 0x56, 0x56, 0xc2, 0xd0, 0xd6, 0x11, + 0x8e, 0x8e, 0xe4, 0xeb, 0x60, 0x43, 0x21, 0x1e, 0x92, 0xf1, 0x03, 0x1c, 0x1d, 0xa1, 0xcf, 0x02, + 0xf0, 0x22, 0x59, 0xfb, 0x08, 0x3b, 0x9e, 0x8c, 0xcc, 0xd7, 0x77, 0xe2, 0xaf, 0x4f, 0xbe, 0x82, + 0x1d, 0x7a, 0xcf, 0x0f, 0xef, 0x7a, 0xcc, 0x27, 0x57, 0x18, 0xe5, 0x1e, 0x23, 0x34, 0xbe, 0xab, + 0x41, 0x63, 0xc2, 0xb6, 0x4e, 0xd2, 0xf7, 0x0e, 0xac, 0x60, 0x4a, 0xc9, 0x20, 0x60, 0x0e, 0x39, + 0xd1, 0x91, 0xd0, 0xfb, 0x72, 0x8c, 0x8a, 0x1d, 0xc1, 0xb4, 0xfa, 0xa7, 0xdc, 0x47, 0x61, 0xca, + 0x7d, 0x18, 0xfb, 0x50, 0x4d, 0x59, 0xeb, 0x4b, 0xd6, 0xff, 0xc4, 0x82, 0x3e, 0xe3, 0x26, 0xe8, + 0x93, 0x86, 0x9b, 0x2d, 0x56, 0xd2, 0x26, 0x8a, 0x95, 0x7e, 0xa4, 0x41, 0x63, 0xc2, 0x46, 0x4f, + 0x62, 0x60, 0x3a, 0x0d, 0xfe, 0x69, 0xa8, 0xc4, 0x26, 0xcd, 0x05, 0xaf, 0xef, 0xa2, 0x69, 0xeb, + 0x37, 0x13, 0x22, 0xb6, 0xcc, 0xdc, 0xc7, 0x38, 0x5e, 0x6f, 0xb2, 0xba, 0xb0, 0xa1, 0x10, 0xaa, + 0xbe, 0xf0, 0x53, 0x80, 0x62, 0xda, 0x29, 0x1b, 0x55, 0x98, 0x58, 0x91, 0xdf, 0xd7, 0x00, 0x58, + 0x80, 0x24, 0xaa, 0x27, 0xd0, 0x27, 0x60, 0x99, 0xdb, 0xc8, 0x73, 0xec, 0xba, 0x22, 0x9e, 0x1a, + 0x08, 0x81, 0xf2, 0x66, 0x9d, 0x21, 0xbe, 0x82, 0x5d, 0x97, 0x91, 0x3f, 0x8e, 0xd0, 0x4d, 0x58, + 0x0d, 0x42, 0xdf, 0x26, 0x51, 0x94, 0xa5, 0xce, 0x71, 0xea, 0x65, 0x89, 0x4b, 0x75, 0xd8, 0x81, + 0xd5, 0xfe, 0x88, 0x87, 0x23, 0xd9, 0x0e, 0x79, 0xde, 0x41, 0xef, 0x8f, 0x58, 0x60, 0x92, 0xd0, + 0x1b, 0x5f, 0x85, 0x32, 0x0b, 0xc8, 0xf8, 0x09, 0xbb, 0x0a, 0x45, 0xea, 0x53, 0xec, 0x4a, 0x5e, + 0x44, 0x83, 0xb9, 0x7a, 0x39, 0x0d, 0xe9, 0xc8, 0x79, 0x13, 0x40, 0x7c, 0x19, 0x7b, 0x36, 0xa6, + 0x44, 0xcd, 0xc2, 0x2f, 0x63, 0xb7, 0x19, 0xc0, 0xf8, 0xb6, 0x06, 0xc0, 0xc6, 0x97, 0x92, 0xdf, + 0x80, 0x22, 0xff, 0x42, 0x60, 0xea, 0x80, 0x51, 0x3c, 0x98, 0x02, 0xcf, 0x22, 0xfc, 0xb8, 0xbe, + 0x76, 0x26, 0x1d, 0x47, 0x33, 0xb2, 0x0e, 0xa6, 0x78, 0xea, 0x26, 0x94, 0x90, 0x31, 0xb4, 0xf1, + 0xa3, 0xbc, 0xf8, 0x36, 0x47, 0x70, 0xf1, 0x74, 0x17, 0xbd, 0x01, 0x28, 0x16, 0x41, 0x45, 0x0b, + 0xca, 0xa6, 0x96, 0x63, 0x8c, 0x8c, 0x19, 0x22, 0xf4, 0x39, 0xd8, 0x98, 0x26, 0x4f, 0x7f, 0x1e, + 0xb2, 0x36, 0xd5, 0x87, 0x07, 0x09, 0xd7, 0xa1, 0xce, 0x75, 0x98, 0x4c, 0x21, 0xab, 0xbd, 0x38, + 0x34, 0x1e, 0xfe, 0x8b, 0x70, 0x39, 0x64, 0xe1, 0x53, 0xe7, 0x99, 0xd5, 0xe1, 0x49, 0x68, 0x2b, + 0xea, 0x3b, 0x41, 0xc0, 0xb7, 0xf6, 0xd0, 0xa3, 0xd2, 0xd5, 0x5c, 0x90, 0x34, 0x22, 0x4f, 0xdd, + 0x12, 0x14, 0x7b, 0x8c, 0x80, 0xc5, 0xbf, 0x6a, 0x00, 0xe6, 0x9f, 0xb2, 0xbd, 0x85, 0x05, 0xaf, + 0x4b, 0x82, 0x87, 0x64, 0x9c, 0xe9, 0xfa, 0x36, 0x5c, 0x51, 0x5d, 0x9f, 0x71, 0x07, 0xc7, 0xaf, + 0x07, 0xd6, 0x11, 0x73, 0x61, 0xbc, 0x7b, 0x31, 0x33, 0xf9, 0x6d, 0x46, 0xc3, 0x6f, 0x0b, 0x0f, + 0x1c, 0x2a, 0x46, 0xf8, 0x05, 0x68, 0x66, 0x47, 0xe0, 0xf6, 0x20, 0x3a, 0x8b, 0x2f, 0x0d, 0xd6, + 0xd2, 0x9d, 0x99, 0xfd, 0x89, 0x8e, 0x9f, 0x85, 0x8d, 0x19, 0x1d, 0x99, 0x21, 0xc9, 0xe8, 0x68, + 0x75, 0xb2, 0x1f, 0xb3, 0x29, 0xe3, 0xb7, 0x35, 0xa8, 0xa6, 0x2a, 0x93, 0x58, 0x48, 0xcb, 0x8d, + 0x5c, 0x14, 0x32, 0x49, 0xcb, 0x4a, 0x42, 0xda, 0x64, 0xdf, 0x99, 0x40, 0x93, 0x3d, 0xf8, 0x16, + 0x54, 0xf9, 0xfd, 0x44, 0xf6, 0xca, 0x4d, 0xf4, 0x4a, 0xac, 0xc5, 0x84, 0x28, 0xfe, 0x2d, 0x6a, + 0x99, 0x44, 0xa4, 0x6a, 0xfc, 0xa6, 0x06, 0x4b, 0x99, 0x0a, 0xa9, 0x39, 0x39, 0xf9, 0x65, 0xa8, + 0xa7, 0x38, 0xb1, 0x46, 0xbb, 0x92, 0x99, 0xb5, 0x19, 0xcc, 0x3c, 0xdd, 0x35, 0x6b, 0x51, 0xaa, + 0x65, 0xbc, 0x03, 0x8b, 0x22, 0x4b, 0x9e, 0x54, 0x52, 0x68, 0x2f, 0xa9, 0xbc, 0x39, 0xe5, 0x63, + 0xb2, 0xf1, 0x2d, 0x0d, 0xca, 0xaa, 0x84, 0x11, 0x5d, 0x82, 0x9c, 0x1f, 0xf0, 0xa1, 0x27, 0xe2, + 0xdc, 0x9c, 0x1f, 0x9c, 0xfa, 0x79, 0x3a, 0xe3, 0x92, 0x0b, 0xa7, 0x70, 0xc9, 0xc6, 0xff, 0x6a, + 0x50, 0x61, 0x97, 0x7a, 0x1e, 0x88, 0xa0, 0xab, 0x50, 0xe0, 0xe1, 0xf6, 0x0c, 0x36, 0x38, 0xe2, + 0xa4, 0x44, 0xd5, 0xa5, 0xa9, 0x6f, 0x32, 0x52, 0xdf, 0x63, 0x5c, 0x85, 0x6a, 0x74, 0xe4, 0x87, + 0xd4, 0x4a, 0x7d, 0x95, 0x61, 0x02, 0x07, 0xf1, 0x2f, 0x53, 0x98, 0x03, 0x38, 0xc2, 0x91, 0xe5, + 0x8f, 0x48, 0xe8, 0x62, 0xbe, 0xb7, 0x54, 0x85, 0xb8, 0x7c, 0x42, 0x5e, 0x3b, 0xc2, 0xd1, 0x41, + 0x8c, 0x55, 0x75, 0x66, 0x68, 0x13, 0x6a, 0xac, 0x5f, 0xcf, 0xb6, 0xba, 0xfc, 0x4b, 0x15, 0xf1, + 0x84, 0x02, 0x47, 0x38, 0xba, 0x6f, 0xdf, 0x63, 0x10, 0xc6, 0x72, 0x8c, 0x15, 0x56, 0x5f, 0xea, + 0x09, 0x94, 0xf1, 0x05, 0x21, 0xbb, 0xe0, 0xe0, 0x84, 0xb3, 0x2f, 0x56, 0x76, 0x2e, 0xbd, 0x7c, + 0x1f, 0xe4, 0xa0, 0xcc, 0xba, 0xf3, 0x8b, 0xd1, 0x4f, 0xa3, 0xb9, 0x54, 0xa0, 0x96, 0xcf, 0x06, + 0x6a, 0x2f, 0x55, 0xdb, 0x74, 0xfd, 0xc1, 0x69, 0xbe, 0x45, 0x4a, 0xdf, 0xba, 0x4a, 0x93, 0xb7, + 0xae, 0xd3, 0x5e, 0x8f, 0x26, 0xae, 0x3e, 0x95, 0xe9, 0xaf, 0xe6, 0xae, 0x42, 0x35, 0xfe, 0x06, + 0x80, 0x8a, 0xcb, 0x51, 0xc1, 0x04, 0x05, 0x6a, 0xf3, 0x27, 0xca, 0xb2, 0xca, 0x28, 0xc5, 0x07, + 0x92, 0x36, 0x23, 0xe5, 0xc4, 0x53, 0xe2, 0xe2, 0x40, 0xda, 0x86, 0x45, 0x7e, 0x80, 0xa9, 0xdc, + 0x37, 0xca, 0x10, 0x72, 0x33, 0x36, 0x25, 0x05, 0xa3, 0x95, 0xdf, 0xfa, 0xe4, 0x67, 0xd0, 0x72, + 0x0d, 0xaa, 0xef, 0x7f, 0x8c, 0xcf, 0x40, 0x49, 0x16, 0x97, 0x71, 0xa5, 0x1e, 0x7b, 0xd2, 0x08, + 0xd8, 0x4f, 0xb4, 0x0e, 0x8b, 0x11, 0xff, 0x4e, 0x40, 0x2e, 0x9d, 0x6c, 0x19, 0x6f, 0xf3, 0xbb, + 0x1d, 0xcf, 0xc2, 0x66, 0x13, 0xff, 0xda, 0x8b, 0x9f, 0xbd, 0x72, 0x99, 0x67, 0xaf, 0xbf, 0xd7, + 0x00, 0x1e, 0x11, 0xdc, 0x21, 0x21, 0x9f, 0xfa, 0xc4, 0x24, 0xda, 0x06, 0x94, 0x02, 0x42, 0x42, + 0x86, 0x92, 0x6c, 0xb0, 0xe6, 0x7e, 0x27, 0xce, 0x81, 0xe5, 0x53, 0x39, 0xb0, 0xc9, 0x8c, 0x5b, + 0xe1, 0x94, 0x19, 0xb7, 0x37, 0x65, 0xb8, 0xc1, 0x24, 0x24, 0xf2, 0x32, 0x98, 0xe8, 0x8d, 0x9d, + 0x11, 0x2d, 0x86, 0x11, 0x21, 0x08, 0xff, 0x69, 0xec, 0x43, 0x25, 0x86, 0x4f, 0xa7, 0x7b, 0xb4, + 0xd9, 0xe9, 0x1e, 0x5e, 0xf4, 0x46, 0x13, 0x85, 0xe2, 0x2e, 0x69, 0x47, 0x46, 0x0b, 0x90, 0x78, + 0xa7, 0xe2, 0x2a, 0x51, 0x39, 0x95, 0x37, 0x92, 0x4c, 0xbc, 0x28, 0x01, 0x4f, 0x5c, 0x7e, 0xa2, + 0xbb, 0x38, 0x1d, 0x8f, 0xea, 0x90, 0x8b, 0x07, 0xce, 0xd1, 0xc8, 0xf8, 0x22, 0xac, 0x64, 0x06, + 0x95, 0xe9, 0xd3, 0x66, 0x76, 0xd4, 0xc2, 0x8b, 0x07, 0xb8, 0x03, 0xa8, 0x45, 0xfd, 0x90, 0xb4, + 0x18, 0x93, 0x2d, 0xc5, 0xd5, 0x0e, 0x54, 0x58, 0x2c, 0xc0, 0x93, 0xef, 0xb3, 0xce, 0x04, 0x91, + 0x9c, 0x2f, 0xf7, 0xe5, 0x2f, 0x63, 0x07, 0x56, 0x32, 0xa3, 0x48, 0x36, 0x52, 0xba, 0xd0, 0x32, + 0xba, 0xb0, 0xf9, 0x83, 0xf6, 0x7d, 0xc2, 0x0c, 0xa8, 0xdd, 0x7e, 0x74, 0x3e, 0xc5, 0x69, 0x7f, + 0xa0, 0xf1, 0x47, 0xe6, 0xd4, 0x2c, 0xe7, 0x90, 0x5c, 0x4e, 0x3e, 0x78, 0xe1, 0x2e, 0xea, 0xc4, + 0xf2, 0xb4, 0x7f, 0x11, 0x75, 0x5c, 0x7b, 0xb7, 0x5a, 0xe7, 0x59, 0xc7, 0xf5, 0x29, 0x16, 0x9e, + 0x92, 0x91, 0xe3, 0x0f, 0xa3, 0xd4, 0xb7, 0x49, 0x82, 0x17, 0x5d, 0x61, 0xe2, 0x2f, 0x93, 0xae, + 0x43, 0x3d, 0xa6, 0x16, 0x83, 0x89, 0xda, 0xde, 0x25, 0x05, 0x7d, 0x9a, 0x2a, 0x0e, 0x5b, 0x9c, + 0x2c, 0x0e, 0x2b, 0xc5, 0x92, 0x1b, 0x3f, 0x14, 0xc5, 0x2c, 0x5c, 0xb8, 0xb3, 0xd6, 0x73, 0x13, + 0x4a, 0xd1, 0xd0, 0xb6, 0x89, 0x7c, 0x96, 0x29, 0x9b, 0xaa, 0x79, 0x2e, 0xc2, 0x1a, 0x77, 0x60, + 0xfd, 0x3e, 0xe1, 0x9f, 0xad, 0xb2, 0x1b, 0x37, 0xdf, 0x80, 0x1f, 0x7d, 0xbd, 0x8c, 0xef, 0x69, + 0xb0, 0x31, 0x35, 0xcc, 0x59, 0x6b, 0xe6, 0xd3, 0xcc, 0xf9, 0x52, 0x7e, 0x4a, 0xe5, 0x4f, 0x4c, + 0x17, 0x28, 0x32, 0xe3, 0x1f, 0x45, 0xed, 0xcc, 0x9e, 0x2f, 0x6f, 0x1d, 0x7e, 0x38, 0x67, 0x21, + 0x84, 0xed, 0x07, 0xa1, 0xe5, 0xe1, 0x81, 0x4a, 0xe1, 0x95, 0x19, 0xe0, 0x09, 0x1e, 0xf0, 0x83, + 0x96, 0x23, 0xe5, 0xc5, 0xc5, 0x0a, 0xc9, 0xbb, 0x72, 0x5b, 0xd6, 0x19, 0x5c, 0x25, 0x89, 0xc9, + 0xbb, 0xa9, 0x17, 0xc0, 0xc2, 0xcb, 0xaa, 0x52, 0x90, 0xbc, 0xad, 0x89, 0x15, 0x13, 0x57, 0xb3, + 0x21, 0xaf, 0xbd, 0xc9, 0x88, 0x72, 0xd6, 0x0a, 0x46, 0xa9, 0x4b, 0xa2, 0x9a, 0xf6, 0x7d, 0x51, + 0x93, 0xc8, 0x1d, 0x6f, 0x34, 0x1c, 0xcc, 0xa3, 0xbf, 0xcf, 0x43, 0x05, 0xbb, 0x3d, 0x3f, 0x74, + 0xe8, 0xd1, 0x80, 0x4f, 0x58, 0xdf, 0xbd, 0x98, 0x50, 0xcb, 0x81, 0x6f, 0x29, 0x0a, 0x33, 0x21, + 0xfe, 0x28, 0x8f, 0xa6, 0x7f, 0x2d, 0xea, 0x86, 0x12, 0x3e, 0xcf, 0x5a, 0x39, 0x17, 0xa1, 0x6c, + 0xcb, 0xc1, 0xe3, 0xb0, 0x58, 0xb6, 0x99, 0x85, 0x88, 0xeb, 0x6b, 0x7f, 0x14, 0x7f, 0x4d, 0xc6, + 0x01, 0x0f, 0x47, 0x3c, 0x7c, 0x12, 0x48, 0x71, 0xf3, 0x17, 0x31, 0x1e, 0x70, 0x90, 0xb8, 0xfa, + 0xff, 0x20, 0x0f, 0xb5, 0x3d, 0x7f, 0x10, 0x60, 0x9b, 0x0a, 0x06, 0xde, 0x81, 0x35, 0x12, 0x86, + 0x96, 0xe3, 0x8d, 0xb0, 0xeb, 0x74, 0xac, 0x6c, 0x38, 0x52, 0xdd, 0xfd, 0x78, 0x3a, 0xc5, 0x19, + 0xf7, 0xda, 0x17, 0xd4, 0x2d, 0x19, 0xaa, 0x3c, 0x58, 0x30, 0x11, 0x09, 0x27, 0xa1, 0xc8, 0x85, + 0xcb, 0x6c, 0xe8, 0x40, 0xd6, 0x29, 0x58, 0x14, 0x3f, 0x73, 0x49, 0xca, 0x9b, 0x88, 0x1b, 0xd5, + 0xf6, 0xcc, 0x19, 0x54, 0x71, 0x43, 0x9b, 0xf5, 0x51, 0x7e, 0xe6, 0xc1, 0x82, 0xd9, 0x24, 0xe1, + 0x6c, 0x1c, 0xb2, 0x60, 0x83, 0xcd, 0x66, 0x8b, 0x41, 0x2c, 0xc7, 0xb3, 0x82, 0xd0, 0xef, 0x85, + 0x24, 0x8a, 0x64, 0x22, 0xe2, 0xf5, 0x99, 0x13, 0xc9, 0xdf, 0xfb, 0xde, 0xa1, 0xa4, 0x7e, 0xb0, + 0x60, 0xae, 0x92, 0x70, 0x1a, 0x8e, 0xba, 0x70, 0x91, 0x4d, 0x40, 0x7d, 0xdf, 0x1a, 0x60, 0x6f, + 0x6c, 0x05, 0xc4, 0xeb, 0x38, 0x5e, 0xcf, 0xa2, 0x38, 0xea, 0x47, 0x32, 0x56, 0xda, 0x9a, 0x39, + 0x47, 0xdb, 0xf7, 0x1f, 0x63, 0x6f, 0x7c, 0x28, 0x3a, 0xb4, 0x19, 0xfd, 0x83, 0x05, 0x73, 0x9d, + 0x84, 0xb3, 0x30, 0xb7, 0x4b, 0xd2, 0x24, 0x8c, 0x2b, 0x70, 0xe9, 0x04, 0xa5, 0x1b, 0x1f, 0x83, + 0x6b, 0x2f, 0xd5, 0x98, 0x71, 0x15, 0xae, 0x9c, 0x28, 0xad, 0x71, 0x0d, 0xae, 0xbe, 0x84, 0x55, + 0xe3, 0xdb, 0xe2, 0xb3, 0x3f, 0x46, 0xa3, 0xb6, 0xe4, 0x89, 0x81, 0xeb, 0x36, 0x2c, 0x4f, 0xac, + 0xb9, 0xa3, 0x72, 0x54, 0x8d, 0x20, 0xcd, 0xe5, 0x7e, 0x87, 0xb9, 0x34, 0xd7, 0xef, 0x65, 0x49, + 0x45, 0xbe, 0xaa, 0x2e, 0xe1, 0x92, 0xd2, 0xf8, 0x40, 0x24, 0x63, 0x05, 0x17, 0x72, 0xc3, 0x7d, + 0x32, 0x7b, 0xbd, 0x5e, 0x9b, 0xa9, 0x7d, 0xb5, 0xa9, 0x3e, 0x06, 0x4b, 0xec, 0xda, 0x17, 0x92, + 0x01, 0x76, 0x3c, 0xc7, 0xeb, 0xc9, 0x0a, 0x25, 0x76, 0x17, 0x34, 0x15, 0x0c, 0xed, 0xf0, 0x7c, + 0x3f, 0xeb, 0x4b, 0xd2, 0x9b, 0x41, 0x78, 0xa9, 0xe5, 0x18, 0xd5, 0x4a, 0xc9, 0x9a, 0xd0, 0xab, + 0x70, 0x5d, 0xdc, 0xb9, 0x1a, 0x31, 0xe2, 0x2e, 0x8f, 0xdb, 0xb7, 0x6f, 0x00, 0x24, 0x4f, 0x79, + 0x68, 0x11, 0x72, 0x4f, 0xdf, 0xd4, 0x17, 0x50, 0x05, 0x8a, 0x4f, 0xdf, 0x6c, 0xb7, 0x1f, 0xe9, + 0x1a, 0x07, 0xed, 0xea, 0xb9, 0xed, 0x4f, 0x02, 0x24, 0x4f, 0xce, 0x08, 0x60, 0xf1, 0x89, 0x1f, + 0x0e, 0xb0, 0xab, 0x2f, 0xa0, 0x12, 0xe4, 0x1f, 0xf9, 0xcf, 0x75, 0x0d, 0x95, 0xa1, 0xf0, 0xc0, + 0xe9, 0x1d, 0xe9, 0xb9, 0xed, 0x9b, 0x50, 0xcf, 0xbe, 0x33, 0xb3, 0x61, 0x5a, 0xfb, 0xfa, 0x02, + 0xfb, 0x6b, 0xee, 0xe9, 0x1a, 0x5a, 0x82, 0x8a, 0xb9, 0x27, 0xbe, 0x5d, 0x6e, 0xe9, 0xb9, 0xed, + 0xa7, 0x50, 0x4d, 0xbd, 0x59, 0xa2, 0x55, 0xd0, 0x9f, 0xf8, 0xf4, 0x96, 0xeb, 0xfa, 0xcf, 0x49, + 0xe7, 0xc0, 0x63, 0x60, 0x7d, 0x01, 0x6d, 0xc0, 0x4a, 0x0c, 0xba, 0xe5, 0x0e, 0xfc, 0x88, 0x72, + 0x84, 0x86, 0x9a, 0xb0, 0x9a, 0x42, 0xf0, 0x14, 0x3f, 0xc7, 0xe4, 0xb6, 0x6d, 0xc8, 0x1d, 0x04, + 0x8c, 0xc3, 0xc3, 0x21, 0x15, 0xac, 0xde, 0x21, 0xae, 0x60, 0x95, 0x9d, 0xd5, 0x7a, 0x0e, 0xd5, + 0xa0, 0xac, 0x2e, 0xe1, 0x7a, 0x9e, 0xc9, 0xb5, 0xef, 0x45, 0x24, 0xa4, 0x7a, 0x01, 0xad, 0x40, + 0x63, 0xe2, 0x83, 0x6b, 0xbd, 0x88, 0x10, 0xd4, 0x39, 0xd7, 0xca, 0x98, 0x23, 0x7d, 0x71, 0x7b, + 0x07, 0x2a, 0x71, 0x4e, 0x82, 0x8d, 0xfc, 0xc4, 0xf7, 0x88, 0x50, 0x22, 0x27, 0xd1, 0x35, 0x36, + 0x89, 0xea, 0x20, 0xb4, 0x93, 0xfd, 0x1f, 0x29, 0x8c, 0xaf, 0x83, 0x6e, 0x57, 0x5f, 0x60, 0xbd, + 0xef, 0x61, 0xde, 0x05, 0x60, 0xb1, 0x45, 0x43, 0xc7, 0x66, 0x1d, 0xfe, 0x44, 0x83, 0x45, 0xf1, + 0x61, 0xb4, 0x18, 0x49, 0xfc, 0xd6, 0x17, 0xd0, 0x1a, 0x2c, 0xb7, 0xdb, 0x8f, 0xc4, 0x33, 0x40, + 0x2c, 0x05, 0xd7, 0x07, 0x63, 0x57, 0x4d, 0x19, 0x63, 0x72, 0xac, 0xc3, 0xe3, 0x38, 0x6f, 0xdf, + 0x3a, 0x1c, 0x46, 0x47, 0xa4, 0xa3, 0xe7, 0xd1, 0x26, 0x5c, 0x8e, 0xc7, 0x99, 0xf1, 0x6f, 0x17, + 0xf4, 0x02, 0xba, 0x00, 0x6b, 0xe9, 0x21, 0xef, 0xf8, 0x4f, 0x7c, 0x7a, 0xe4, 0x78, 0x3d, 0xbd, + 0xb8, 0x7d, 0x1d, 0x4a, 0x77, 0x8f, 0x69, 0x88, 0x0f, 0x02, 0x21, 0xbc, 0x1f, 0xe8, 0x0b, 0x48, + 0x87, 0x1a, 0xbb, 0x4b, 0x1d, 0xb8, 0x1d, 0x1e, 0x66, 0xe9, 0xda, 0xb6, 0x01, 0xcb, 0x53, 0x67, + 0x1d, 0x33, 0x83, 0xbd, 0xd0, 0xfe, 0xdc, 0x5b, 0xd6, 0xaf, 0xfa, 0xa1, 0xbe, 0x70, 0xfb, 0xf5, + 0x7f, 0xfe, 0x8b, 0xb2, 0xf6, 0xc3, 0x0f, 0x5f, 0xd3, 0x7e, 0xf2, 0xe1, 0x6b, 0xda, 0xbf, 0x7f, + 0xf8, 0x9a, 0xf6, 0xfd, 0xff, 0x7c, 0x6d, 0x01, 0x74, 0x3f, 0xec, 0xed, 0x50, 0xa7, 0x3f, 0xda, + 0xe9, 0x8f, 0xf8, 0x7f, 0xe1, 0x7a, 0xb6, 0xc8, 0xff, 0x7c, 0xe6, 0xff, 0x02, 0x00, 0x00, 0xff, + 0xff, 0x6f, 0x7f, 0xdd, 0x89, 0x09, 0x4c, 0x00, 0x00, } func (m *GetRequest) Marshal() (dAtA []byte, err error) { @@ -15718,6 +15893,48 @@ func (m *CompactError) MarshalToSizedBuffer(dAtA []byte) (int, error) { return len(dAtA) - i, nil } +func (m *CompactError_ErrInvalidStartKey) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *CompactError_ErrInvalidStartKey) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + if m.ErrInvalidStartKey != nil { + { + size, err := m.ErrInvalidStartKey.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintKvrpcpb(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} +func (m *CompactError_ErrPhysicalTableNotExist) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *CompactError_ErrPhysicalTableNotExist) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + if m.ErrPhysicalTableNotExist != nil { + { + size, err := m.ErrPhysicalTableNotExist.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintKvrpcpb(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x12 + } + return len(dAtA) - i, nil +} func (m *CompactError_ErrCompactInProgress) MarshalTo(dAtA []byte) (int, error) { size := m.Size() return m.MarshalToSizedBuffer(dAtA[:size]) @@ -15735,10 +15952,85 @@ func (m *CompactError_ErrCompactInProgress) MarshalToSizedBuffer(dAtA []byte) (i i = encodeVarintKvrpcpb(dAtA, i, uint64(size)) } i-- - dAtA[i] = 0xa + dAtA[i] = 0x1a + } + return len(dAtA) - i, nil +} +func (m *CompactError_ErrTooManyPendingTasks) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *CompactError_ErrTooManyPendingTasks) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + if m.ErrTooManyPendingTasks != nil { + { + size, err := m.ErrTooManyPendingTasks.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintKvrpcpb(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x22 + } + return len(dAtA) - i, nil +} +func (m *CompactErrorInvalidStartKey) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *CompactErrorInvalidStartKey) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *CompactErrorInvalidStartKey) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.XXX_unrecognized != nil { + i -= len(m.XXX_unrecognized) + copy(dAtA[i:], m.XXX_unrecognized) + } + return len(dAtA) - i, nil +} + +func (m *CompactErrorPhysicalTableNotExist) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *CompactErrorPhysicalTableNotExist) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *CompactErrorPhysicalTableNotExist) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.XXX_unrecognized != nil { + i -= len(m.XXX_unrecognized) + copy(dAtA[i:], m.XXX_unrecognized) } return len(dAtA) - i, nil } + func (m *CompactErrorCompactInProgress) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -15766,6 +16058,33 @@ func (m *CompactErrorCompactInProgress) MarshalToSizedBuffer(dAtA []byte) (int, return len(dAtA) - i, nil } +func (m *CompactErrorTooManyPendingTasks) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *CompactErrorTooManyPendingTasks) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *CompactErrorTooManyPendingTasks) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.XXX_unrecognized != nil { + i -= len(m.XXX_unrecognized) + copy(dAtA[i:], m.XXX_unrecognized) + } + return len(dAtA) - i, nil +} + func (m *CompactRequest) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -15790,25 +16109,21 @@ func (m *CompactRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { i -= len(m.XXX_unrecognized) copy(dAtA[i:], m.XXX_unrecognized) } - if len(m.MaxEndKey) > 0 { - i -= len(m.MaxEndKey) - copy(dAtA[i:], m.MaxEndKey) - i = encodeVarintKvrpcpb(dAtA, i, uint64(len(m.MaxEndKey))) + if m.LogicalTableId != 0 { + i = encodeVarintKvrpcpb(dAtA, i, uint64(m.LogicalTableId)) i-- - dAtA[i] = 0x1a + dAtA[i] = 0x18 + } + if m.PhysicalTableId != 0 { + i = encodeVarintKvrpcpb(dAtA, i, uint64(m.PhysicalTableId)) + i-- + dAtA[i] = 0x10 } if len(m.StartKey) > 0 { i -= len(m.StartKey) copy(dAtA[i:], m.StartKey) i = encodeVarintKvrpcpb(dAtA, i, uint64(len(m.StartKey))) i-- - dAtA[i] = 0x12 - } - if len(m.Id) > 0 { - i -= len(m.Id) - copy(dAtA[i:], m.Id) - i = encodeVarintKvrpcpb(dAtA, i, uint64(len(m.Id))) - i-- dAtA[i] = 0xa } return len(dAtA) - i, nil @@ -18847,48 +19162,118 @@ func (m *CompactError) Size() (n int) { return n } -func (m *CompactError_ErrCompactInProgress) Size() (n int) { +func (m *CompactError_ErrInvalidStartKey) Size() (n int) { if m == nil { return 0 } var l int _ = l - if m.ErrCompactInProgress != nil { - l = m.ErrCompactInProgress.Size() + if m.ErrInvalidStartKey != nil { + l = m.ErrInvalidStartKey.Size() n += 1 + l + sovKvrpcpb(uint64(l)) } return n } -func (m *CompactErrorCompactInProgress) Size() (n int) { +func (m *CompactError_ErrPhysicalTableNotExist) Size() (n int) { if m == nil { return 0 } var l int _ = l - if m.XXX_unrecognized != nil { - n += len(m.XXX_unrecognized) + if m.ErrPhysicalTableNotExist != nil { + l = m.ErrPhysicalTableNotExist.Size() + n += 1 + l + sovKvrpcpb(uint64(l)) } return n } - -func (m *CompactRequest) Size() (n int) { +func (m *CompactError_ErrCompactInProgress) Size() (n int) { if m == nil { return 0 } var l int _ = l - l = len(m.Id) - if l > 0 { + if m.ErrCompactInProgress != nil { + l = m.ErrCompactInProgress.Size() n += 1 + l + sovKvrpcpb(uint64(l)) } - l = len(m.StartKey) - if l > 0 { + return n +} +func (m *CompactError_ErrTooManyPendingTasks) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.ErrTooManyPendingTasks != nil { + l = m.ErrTooManyPendingTasks.Size() n += 1 + l + sovKvrpcpb(uint64(l)) } - l = len(m.MaxEndKey) + return n +} +func (m *CompactErrorInvalidStartKey) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.XXX_unrecognized != nil { + n += len(m.XXX_unrecognized) + } + return n +} + +func (m *CompactErrorPhysicalTableNotExist) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.XXX_unrecognized != nil { + n += len(m.XXX_unrecognized) + } + return n +} + +func (m *CompactErrorCompactInProgress) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.XXX_unrecognized != nil { + n += len(m.XXX_unrecognized) + } + return n +} + +func (m *CompactErrorTooManyPendingTasks) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.XXX_unrecognized != nil { + n += len(m.XXX_unrecognized) + } + return n +} + +func (m *CompactRequest) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.StartKey) if l > 0 { n += 1 + l + sovKvrpcpb(uint64(l)) } + if m.PhysicalTableId != 0 { + n += 1 + sovKvrpcpb(uint64(m.PhysicalTableId)) + } + if m.LogicalTableId != 0 { + n += 1 + sovKvrpcpb(uint64(m.LogicalTableId)) + } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } @@ -36945,6 +37330,76 @@ func (m *CompactError) Unmarshal(dAtA []byte) error { } switch fieldNum { case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field ErrInvalidStartKey", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowKvrpcpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthKvrpcpb + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthKvrpcpb + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + v := &CompactErrorInvalidStartKey{} + if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + m.Error = &CompactError_ErrInvalidStartKey{v} + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field ErrPhysicalTableNotExist", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowKvrpcpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthKvrpcpb + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthKvrpcpb + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + v := &CompactErrorPhysicalTableNotExist{} + if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + m.Error = &CompactError_ErrPhysicalTableNotExist{v} + iNdEx = postIndex + case 3: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field ErrCompactInProgress", wireType) } @@ -36979,6 +37434,143 @@ func (m *CompactError) Unmarshal(dAtA []byte) error { } m.Error = &CompactError_ErrCompactInProgress{v} iNdEx = postIndex + case 4: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field ErrTooManyPendingTasks", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowKvrpcpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthKvrpcpb + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthKvrpcpb + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + v := &CompactErrorTooManyPendingTasks{} + if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + m.Error = &CompactError_ErrTooManyPendingTasks{v} + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipKvrpcpb(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthKvrpcpb + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *CompactErrorInvalidStartKey) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowKvrpcpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: CompactErrorInvalidStartKey: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: CompactErrorInvalidStartKey: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + default: + iNdEx = preIndex + skippy, err := skipKvrpcpb(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthKvrpcpb + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *CompactErrorPhysicalTableNotExist) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowKvrpcpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: CompactErrorPhysicalTableNotExist: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: CompactErrorPhysicalTableNotExist: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { default: iNdEx = preIndex skippy, err := skipKvrpcpb(dAtA[iNdEx:]) @@ -37052,6 +37644,57 @@ func (m *CompactErrorCompactInProgress) Unmarshal(dAtA []byte) error { } return nil } +func (m *CompactErrorTooManyPendingTasks) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowKvrpcpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: CompactErrorTooManyPendingTasks: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: CompactErrorTooManyPendingTasks: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + default: + iNdEx = preIndex + skippy, err := skipKvrpcpb(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthKvrpcpb + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func (m *CompactRequest) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 @@ -37083,7 +37726,7 @@ func (m *CompactRequest) Unmarshal(dAtA []byte) error { switch fieldNum { case 1: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Id", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field StartKey", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { @@ -37110,16 +37753,16 @@ func (m *CompactRequest) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - m.Id = append(m.Id[:0], dAtA[iNdEx:postIndex]...) - if m.Id == nil { - m.Id = []byte{} + m.StartKey = append(m.StartKey[:0], dAtA[iNdEx:postIndex]...) + if m.StartKey == nil { + m.StartKey = []byte{} } iNdEx = postIndex case 2: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field StartKey", wireType) + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field PhysicalTableId", wireType) } - var byteLen int + m.PhysicalTableId = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -37129,31 +37772,16 @@ func (m *CompactRequest) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - byteLen |= int(b&0x7F) << shift + m.PhysicalTableId |= int64(b&0x7F) << shift if b < 0x80 { break } } - if byteLen < 0 { - return ErrInvalidLengthKvrpcpb - } - postIndex := iNdEx + byteLen - if postIndex < 0 { - return ErrInvalidLengthKvrpcpb - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.StartKey = append(m.StartKey[:0], dAtA[iNdEx:postIndex]...) - if m.StartKey == nil { - m.StartKey = []byte{} - } - iNdEx = postIndex case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field MaxEndKey", wireType) + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field LogicalTableId", wireType) } - var byteLen int + m.LogicalTableId = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -37163,26 +37791,11 @@ func (m *CompactRequest) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - byteLen |= int(b&0x7F) << shift + m.LogicalTableId |= int64(b&0x7F) << shift if b < 0x80 { break } } - if byteLen < 0 { - return ErrInvalidLengthKvrpcpb - } - postIndex := iNdEx + byteLen - if postIndex < 0 { - return ErrInvalidLengthKvrpcpb - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.MaxEndKey = append(m.MaxEndKey[:0], dAtA[iNdEx:postIndex]...) - if m.MaxEndKey == nil { - m.MaxEndKey = []byte{} - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipKvrpcpb(dAtA[iNdEx:]) diff --git a/proto/kvrpcpb.proto b/proto/kvrpcpb.proto index 44e027a02..10e42f4eb 100644 --- a/proto/kvrpcpb.proto +++ b/proto/kvrpcpb.proto @@ -1154,11 +1154,17 @@ message RawChecksumResponse { message CompactError { oneof error { - CompactErrorCompactInProgress err_compact_in_progress = 1; - CompactErrorTooManyPendingTasks err_too_many_pending_tasks = 2; + CompactErrorInvalidStartKey err_invalid_start_key = 1; + CompactErrorPhysicalTableNotExist err_physical_table_not_exist = 2; + CompactErrorCompactInProgress err_compact_in_progress = 3; + CompactErrorTooManyPendingTasks err_too_many_pending_tasks = 4; } } +message CompactErrorInvalidStartKey {} + +message CompactErrorPhysicalTableNotExist {} + message CompactErrorCompactInProgress {} message CompactErrorTooManyPendingTasks {} From 92fb862e3f57a4875b5a742cd3bb39790761eb76 Mon Sep 17 00:00:00 2001 From: Wish Date: Tue, 17 May 2022 16:24:59 +0800 Subject: [PATCH 3/4] Add more detailed comments about each field. --- pkg/kvrpcpb/kvrpcpb.pb.go | 11 ++++++++++- pkg/tikvpb/tikvpb.pb.go | 4 ++++ proto/kvrpcpb.proto | 11 ++++++++++- proto/tikvpb.proto | 2 ++ 4 files changed, 26 insertions(+), 2 deletions(-) diff --git a/pkg/kvrpcpb/kvrpcpb.pb.go b/pkg/kvrpcpb/kvrpcpb.pb.go index edae7834b..a3403a8a1 100644 --- a/pkg/kvrpcpb/kvrpcpb.pb.go +++ b/pkg/kvrpcpb/kvrpcpb.pb.go @@ -8558,11 +8558,20 @@ func (m *CompactErrorTooManyPendingTasks) XXX_DiscardUnknown() { var xxx_messageInfo_CompactErrorTooManyPendingTasks proto.InternalMessageInfo type CompactRequest struct { - // If specified, the compaction will be performed starting from this start key. + // If specified, the compaction will start from this start key. + // If unspecified, the compaction will start from beginning. + // NOTE 1: The start key should be never manually constructed. You should always use a key + // returned in CompactResponse. + // NOTE 2: the compaction range will be always restricted by physical_table_id. StartKey []byte `protobuf:"bytes,1,opt,name=start_key,json=startKey,proto3" json:"start_key,omitempty"` + // The physical table that will be compacted. + // // TODO: this is information that TiKV doesn't need to know. // See https://github.com/pingcap/kvproto/issues/912 PhysicalTableId int64 `protobuf:"varint,2,opt,name=physical_table_id,json=physicalTableId,proto3" json:"physical_table_id,omitempty"` + // The logical table id of the compaction. When receiving parallel requests with the same + // logical table id, err_compact_in_progress will be returned. + // // TODO: this is information that TiKV doesn't need to know. // See https://github.com/pingcap/kvproto/issues/912 LogicalTableId int64 `protobuf:"varint,3,opt,name=logical_table_id,json=logicalTableId,proto3" json:"logical_table_id,omitempty"` diff --git a/pkg/tikvpb/tikvpb.pb.go b/pkg/tikvpb/tikvpb.pb.go index 78efa3c87..84c08e405 100644 --- a/pkg/tikvpb/tikvpb.pb.go +++ b/pkg/tikvpb/tikvpb.pb.go @@ -1423,6 +1423,8 @@ type TikvClient interface { GetLockWaitInfo(ctx context.Context, in *kvrpcpb.GetLockWaitInfoRequest, opts ...grpc.CallOption) (*kvrpcpb.GetLockWaitInfoResponse, error) /// Compact a specified key range. This request is not restricted to raft leaders and will not be replicated. /// It only compacts data on this node. + /// TODO: Currently this RPC is designed to be only compatible with TiFlash. + /// Shall be move out in https://github.com/pingcap/kvproto/issues/912 Compact(ctx context.Context, in *kvrpcpb.CompactRequest, opts ...grpc.CallOption) (*kvrpcpb.CompactResponse, error) } @@ -2164,6 +2166,8 @@ type TikvServer interface { GetLockWaitInfo(context.Context, *kvrpcpb.GetLockWaitInfoRequest) (*kvrpcpb.GetLockWaitInfoResponse, error) /// Compact a specified key range. This request is not restricted to raft leaders and will not be replicated. /// It only compacts data on this node. + /// TODO: Currently this RPC is designed to be only compatible with TiFlash. + /// Shall be move out in https://github.com/pingcap/kvproto/issues/912 Compact(context.Context, *kvrpcpb.CompactRequest) (*kvrpcpb.CompactResponse, error) } diff --git a/proto/kvrpcpb.proto b/proto/kvrpcpb.proto index 10e42f4eb..f9c3bc4d2 100644 --- a/proto/kvrpcpb.proto +++ b/proto/kvrpcpb.proto @@ -1170,13 +1170,22 @@ message CompactErrorCompactInProgress {} message CompactErrorTooManyPendingTasks {} message CompactRequest { - // If specified, the compaction will be performed starting from this start key. + // If specified, the compaction will start from this start key. + // If unspecified, the compaction will start from beginning. + // NOTE 1: The start key should be never manually constructed. You should always use a key + // returned in CompactResponse. + // NOTE 2: the compaction range will be always restricted by physical_table_id. bytes start_key = 1; + // The physical table that will be compacted. + // // TODO: this is information that TiKV doesn't need to know. // See https://github.com/pingcap/kvproto/issues/912 int64 physical_table_id = 2; + // The logical table id of the compaction. When receiving parallel requests with the same + // logical table id, err_compact_in_progress will be returned. + // // TODO: this is information that TiKV doesn't need to know. // See https://github.com/pingcap/kvproto/issues/912 int64 logical_table_id = 3; diff --git a/proto/tikvpb.proto b/proto/tikvpb.proto index 701ec3e01..dd37fcfaa 100644 --- a/proto/tikvpb.proto +++ b/proto/tikvpb.proto @@ -107,6 +107,8 @@ service Tikv { /// Compact a specified key range. This request is not restricted to raft leaders and will not be replicated. /// It only compacts data on this node. + /// TODO: Currently this RPC is designed to be only compatible with TiFlash. + /// Shall be move out in https://github.com/pingcap/kvproto/issues/912 rpc Compact(kvrpcpb.CompactRequest) returns (kvrpcpb.CompactResponse); } From c1d990c767d7804f677c707dfd37728ab91ec9c2 Mon Sep 17 00:00:00 2001 From: Wish Date: Tue, 17 May 2022 16:44:44 +0800 Subject: [PATCH 4/4] trigger cla