From 121d118fa10e253013b7dc03d0d5b9148f859b78 Mon Sep 17 00:00:00 2001 From: disksing Date: Wed, 18 Sep 2019 12:07:55 +0800 Subject: [PATCH] pdpb: support specifying keys to split region (#457) Signed-off-by: disksing --- pkg/pdpb/pdpb.pb.go | 543 ++++++++++++++++++++++++-------------------- proto/pdpb.proto | 2 + 2 files changed, 301 insertions(+), 244 deletions(-) diff --git a/pkg/pdpb/pdpb.pb.go b/pkg/pdpb/pdpb.pb.go index f31658d65..d0b14c591 100644 --- a/pkg/pdpb/pdpb.pb.go +++ b/pkg/pdpb/pdpb.pb.go @@ -67,7 +67,7 @@ func (x ErrorType) String() string { return proto.EnumName(ErrorType_name, int32(x)) } func (ErrorType) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_pdpb_f222a36fbc291b87, []int{0} + return fileDescriptor_pdpb_f15cfe3b94b4d489, []int{0} } type CheckPolicy int32 @@ -75,22 +75,25 @@ type CheckPolicy int32 const ( CheckPolicy_SCAN CheckPolicy = 0 CheckPolicy_APPROXIMATE CheckPolicy = 1 + CheckPolicy_USEKEY CheckPolicy = 2 ) var CheckPolicy_name = map[int32]string{ 0: "SCAN", 1: "APPROXIMATE", + 2: "USEKEY", } var CheckPolicy_value = map[string]int32{ "SCAN": 0, "APPROXIMATE": 1, + "USEKEY": 2, } func (x CheckPolicy) String() string { return proto.EnumName(CheckPolicy_name, int32(x)) } func (CheckPolicy) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_pdpb_f222a36fbc291b87, []int{1} + return fileDescriptor_pdpb_f15cfe3b94b4d489, []int{1} } type OperatorStatus int32 @@ -122,7 +125,7 @@ func (x OperatorStatus) String() string { return proto.EnumName(OperatorStatus_name, int32(x)) } func (OperatorStatus) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_pdpb_f222a36fbc291b87, []int{2} + return fileDescriptor_pdpb_f15cfe3b94b4d489, []int{2} } type RequestHeader struct { @@ -137,7 +140,7 @@ func (m *RequestHeader) Reset() { *m = RequestHeader{} } func (m *RequestHeader) String() string { return proto.CompactTextString(m) } func (*RequestHeader) ProtoMessage() {} func (*RequestHeader) Descriptor() ([]byte, []int) { - return fileDescriptor_pdpb_f222a36fbc291b87, []int{0} + return fileDescriptor_pdpb_f15cfe3b94b4d489, []int{0} } func (m *RequestHeader) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -186,7 +189,7 @@ func (m *ResponseHeader) Reset() { *m = ResponseHeader{} } func (m *ResponseHeader) String() string { return proto.CompactTextString(m) } func (*ResponseHeader) ProtoMessage() {} func (*ResponseHeader) Descriptor() ([]byte, []int) { - return fileDescriptor_pdpb_f222a36fbc291b87, []int{1} + return fileDescriptor_pdpb_f15cfe3b94b4d489, []int{1} } func (m *ResponseHeader) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -241,7 +244,7 @@ func (m *Error) Reset() { *m = Error{} } func (m *Error) String() string { return proto.CompactTextString(m) } func (*Error) ProtoMessage() {} func (*Error) Descriptor() ([]byte, []int) { - return fileDescriptor_pdpb_f222a36fbc291b87, []int{2} + return fileDescriptor_pdpb_f15cfe3b94b4d489, []int{2} } func (m *Error) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -296,7 +299,7 @@ func (m *TsoRequest) Reset() { *m = TsoRequest{} } func (m *TsoRequest) String() string { return proto.CompactTextString(m) } func (*TsoRequest) ProtoMessage() {} func (*TsoRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_pdpb_f222a36fbc291b87, []int{3} + return fileDescriptor_pdpb_f15cfe3b94b4d489, []int{3} } func (m *TsoRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -351,7 +354,7 @@ func (m *Timestamp) Reset() { *m = Timestamp{} } func (m *Timestamp) String() string { return proto.CompactTextString(m) } func (*Timestamp) ProtoMessage() {} func (*Timestamp) Descriptor() ([]byte, []int) { - return fileDescriptor_pdpb_f222a36fbc291b87, []int{4} + return fileDescriptor_pdpb_f15cfe3b94b4d489, []int{4} } func (m *Timestamp) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -407,7 +410,7 @@ func (m *TsoResponse) Reset() { *m = TsoResponse{} } func (m *TsoResponse) String() string { return proto.CompactTextString(m) } func (*TsoResponse) ProtoMessage() {} func (*TsoResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_pdpb_f222a36fbc291b87, []int{5} + return fileDescriptor_pdpb_f15cfe3b94b4d489, []int{5} } func (m *TsoResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -470,7 +473,7 @@ func (m *BootstrapRequest) Reset() { *m = BootstrapRequest{} } func (m *BootstrapRequest) String() string { return proto.CompactTextString(m) } func (*BootstrapRequest) ProtoMessage() {} func (*BootstrapRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_pdpb_f222a36fbc291b87, []int{6} + return fileDescriptor_pdpb_f15cfe3b94b4d489, []int{6} } func (m *BootstrapRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -531,7 +534,7 @@ func (m *BootstrapResponse) Reset() { *m = BootstrapResponse{} } func (m *BootstrapResponse) String() string { return proto.CompactTextString(m) } func (*BootstrapResponse) ProtoMessage() {} func (*BootstrapResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_pdpb_f222a36fbc291b87, []int{7} + return fileDescriptor_pdpb_f15cfe3b94b4d489, []int{7} } func (m *BootstrapResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -578,7 +581,7 @@ func (m *IsBootstrappedRequest) Reset() { *m = IsBootstrappedRequest{} } func (m *IsBootstrappedRequest) String() string { return proto.CompactTextString(m) } func (*IsBootstrappedRequest) ProtoMessage() {} func (*IsBootstrappedRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_pdpb_f222a36fbc291b87, []int{8} + return fileDescriptor_pdpb_f15cfe3b94b4d489, []int{8} } func (m *IsBootstrappedRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -626,7 +629,7 @@ func (m *IsBootstrappedResponse) Reset() { *m = IsBootstrappedResponse{} func (m *IsBootstrappedResponse) String() string { return proto.CompactTextString(m) } func (*IsBootstrappedResponse) ProtoMessage() {} func (*IsBootstrappedResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_pdpb_f222a36fbc291b87, []int{9} + return fileDescriptor_pdpb_f15cfe3b94b4d489, []int{9} } func (m *IsBootstrappedResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -680,7 +683,7 @@ func (m *AllocIDRequest) Reset() { *m = AllocIDRequest{} } func (m *AllocIDRequest) String() string { return proto.CompactTextString(m) } func (*AllocIDRequest) ProtoMessage() {} func (*AllocIDRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_pdpb_f222a36fbc291b87, []int{10} + return fileDescriptor_pdpb_f15cfe3b94b4d489, []int{10} } func (m *AllocIDRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -728,7 +731,7 @@ func (m *AllocIDResponse) Reset() { *m = AllocIDResponse{} } func (m *AllocIDResponse) String() string { return proto.CompactTextString(m) } func (*AllocIDResponse) ProtoMessage() {} func (*AllocIDResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_pdpb_f222a36fbc291b87, []int{11} + return fileDescriptor_pdpb_f15cfe3b94b4d489, []int{11} } func (m *AllocIDResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -783,7 +786,7 @@ func (m *GetStoreRequest) Reset() { *m = GetStoreRequest{} } func (m *GetStoreRequest) String() string { return proto.CompactTextString(m) } func (*GetStoreRequest) ProtoMessage() {} func (*GetStoreRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_pdpb_f222a36fbc291b87, []int{12} + return fileDescriptor_pdpb_f15cfe3b94b4d489, []int{12} } func (m *GetStoreRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -839,7 +842,7 @@ func (m *GetStoreResponse) Reset() { *m = GetStoreResponse{} } func (m *GetStoreResponse) String() string { return proto.CompactTextString(m) } func (*GetStoreResponse) ProtoMessage() {} func (*GetStoreResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_pdpb_f222a36fbc291b87, []int{13} + return fileDescriptor_pdpb_f15cfe3b94b4d489, []int{13} } func (m *GetStoreResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -901,7 +904,7 @@ func (m *PutStoreRequest) Reset() { *m = PutStoreRequest{} } func (m *PutStoreRequest) String() string { return proto.CompactTextString(m) } func (*PutStoreRequest) ProtoMessage() {} func (*PutStoreRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_pdpb_f222a36fbc291b87, []int{14} + return fileDescriptor_pdpb_f15cfe3b94b4d489, []int{14} } func (m *PutStoreRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -955,7 +958,7 @@ func (m *PutStoreResponse) Reset() { *m = PutStoreResponse{} } func (m *PutStoreResponse) String() string { return proto.CompactTextString(m) } func (*PutStoreResponse) ProtoMessage() {} func (*PutStoreResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_pdpb_f222a36fbc291b87, []int{15} + return fileDescriptor_pdpb_f15cfe3b94b4d489, []int{15} } func (m *PutStoreResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1004,7 +1007,7 @@ func (m *GetAllStoresRequest) Reset() { *m = GetAllStoresRequest{} } func (m *GetAllStoresRequest) String() string { return proto.CompactTextString(m) } func (*GetAllStoresRequest) ProtoMessage() {} func (*GetAllStoresRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_pdpb_f222a36fbc291b87, []int{16} + return fileDescriptor_pdpb_f15cfe3b94b4d489, []int{16} } func (m *GetAllStoresRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1059,7 +1062,7 @@ func (m *GetAllStoresResponse) Reset() { *m = GetAllStoresResponse{} } func (m *GetAllStoresResponse) String() string { return proto.CompactTextString(m) } func (*GetAllStoresResponse) ProtoMessage() {} func (*GetAllStoresResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_pdpb_f222a36fbc291b87, []int{17} + return fileDescriptor_pdpb_f15cfe3b94b4d489, []int{17} } func (m *GetAllStoresResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1114,7 +1117,7 @@ func (m *GetRegionRequest) Reset() { *m = GetRegionRequest{} } func (m *GetRegionRequest) String() string { return proto.CompactTextString(m) } func (*GetRegionRequest) ProtoMessage() {} func (*GetRegionRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_pdpb_f222a36fbc291b87, []int{18} + return fileDescriptor_pdpb_f15cfe3b94b4d489, []int{18} } func (m *GetRegionRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1171,7 +1174,7 @@ func (m *GetRegionResponse) Reset() { *m = GetRegionResponse{} } func (m *GetRegionResponse) String() string { return proto.CompactTextString(m) } func (*GetRegionResponse) ProtoMessage() {} func (*GetRegionResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_pdpb_f222a36fbc291b87, []int{19} + return fileDescriptor_pdpb_f15cfe3b94b4d489, []int{19} } func (m *GetRegionResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1240,7 +1243,7 @@ func (m *GetRegionByIDRequest) Reset() { *m = GetRegionByIDRequest{} } func (m *GetRegionByIDRequest) String() string { return proto.CompactTextString(m) } func (*GetRegionByIDRequest) ProtoMessage() {} func (*GetRegionByIDRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_pdpb_f222a36fbc291b87, []int{20} + return fileDescriptor_pdpb_f15cfe3b94b4d489, []int{20} } func (m *GetRegionByIDRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1297,7 +1300,7 @@ func (m *ScanRegionsRequest) Reset() { *m = ScanRegionsRequest{} } func (m *ScanRegionsRequest) String() string { return proto.CompactTextString(m) } func (*ScanRegionsRequest) ProtoMessage() {} func (*ScanRegionsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_pdpb_f222a36fbc291b87, []int{21} + return fileDescriptor_pdpb_f15cfe3b94b4d489, []int{21} } func (m *ScanRegionsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1367,7 +1370,7 @@ func (m *ScanRegionsResponse) Reset() { *m = ScanRegionsResponse{} } func (m *ScanRegionsResponse) String() string { return proto.CompactTextString(m) } func (*ScanRegionsResponse) ProtoMessage() {} func (*ScanRegionsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_pdpb_f222a36fbc291b87, []int{22} + return fileDescriptor_pdpb_f15cfe3b94b4d489, []int{22} } func (m *ScanRegionsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1428,7 +1431,7 @@ func (m *GetClusterConfigRequest) Reset() { *m = GetClusterConfigRequest func (m *GetClusterConfigRequest) String() string { return proto.CompactTextString(m) } func (*GetClusterConfigRequest) ProtoMessage() {} func (*GetClusterConfigRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_pdpb_f222a36fbc291b87, []int{23} + return fileDescriptor_pdpb_f15cfe3b94b4d489, []int{23} } func (m *GetClusterConfigRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1476,7 +1479,7 @@ func (m *GetClusterConfigResponse) Reset() { *m = GetClusterConfigRespon func (m *GetClusterConfigResponse) String() string { return proto.CompactTextString(m) } func (*GetClusterConfigResponse) ProtoMessage() {} func (*GetClusterConfigResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_pdpb_f222a36fbc291b87, []int{24} + return fileDescriptor_pdpb_f15cfe3b94b4d489, []int{24} } func (m *GetClusterConfigResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1531,7 +1534,7 @@ func (m *PutClusterConfigRequest) Reset() { *m = PutClusterConfigRequest func (m *PutClusterConfigRequest) String() string { return proto.CompactTextString(m) } func (*PutClusterConfigRequest) ProtoMessage() {} func (*PutClusterConfigRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_pdpb_f222a36fbc291b87, []int{25} + return fileDescriptor_pdpb_f15cfe3b94b4d489, []int{25} } func (m *PutClusterConfigRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1585,7 +1588,7 @@ func (m *PutClusterConfigResponse) Reset() { *m = PutClusterConfigRespon func (m *PutClusterConfigResponse) String() string { return proto.CompactTextString(m) } func (*PutClusterConfigResponse) ProtoMessage() {} func (*PutClusterConfigResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_pdpb_f222a36fbc291b87, []int{26} + return fileDescriptor_pdpb_f15cfe3b94b4d489, []int{26} } func (m *PutClusterConfigResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1638,7 +1641,7 @@ func (m *Member) Reset() { *m = Member{} } func (m *Member) String() string { return proto.CompactTextString(m) } func (*Member) ProtoMessage() {} func (*Member) Descriptor() ([]byte, []int) { - return fileDescriptor_pdpb_f222a36fbc291b87, []int{27} + return fileDescriptor_pdpb_f15cfe3b94b4d489, []int{27} } func (m *Member) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1713,7 +1716,7 @@ func (m *GetMembersRequest) Reset() { *m = GetMembersRequest{} } func (m *GetMembersRequest) String() string { return proto.CompactTextString(m) } func (*GetMembersRequest) ProtoMessage() {} func (*GetMembersRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_pdpb_f222a36fbc291b87, []int{28} + return fileDescriptor_pdpb_f15cfe3b94b4d489, []int{28} } func (m *GetMembersRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1763,7 +1766,7 @@ func (m *GetMembersResponse) Reset() { *m = GetMembersResponse{} } func (m *GetMembersResponse) String() string { return proto.CompactTextString(m) } func (*GetMembersResponse) ProtoMessage() {} func (*GetMembersResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_pdpb_f222a36fbc291b87, []int{29} + return fileDescriptor_pdpb_f15cfe3b94b4d489, []int{29} } func (m *GetMembersResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1832,7 +1835,7 @@ func (m *PeerStats) Reset() { *m = PeerStats{} } func (m *PeerStats) String() string { return proto.CompactTextString(m) } func (*PeerStats) ProtoMessage() {} func (*PeerStats) Descriptor() ([]byte, []int) { - return fileDescriptor_pdpb_f222a36fbc291b87, []int{30} + return fileDescriptor_pdpb_f15cfe3b94b4d489, []int{30} } func (m *PeerStats) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1908,7 +1911,7 @@ func (m *RegionHeartbeatRequest) Reset() { *m = RegionHeartbeatRequest{} func (m *RegionHeartbeatRequest) String() string { return proto.CompactTextString(m) } func (*RegionHeartbeatRequest) ProtoMessage() {} func (*RegionHeartbeatRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_pdpb_f222a36fbc291b87, []int{31} + return fileDescriptor_pdpb_f15cfe3b94b4d489, []int{31} } func (m *RegionHeartbeatRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2040,7 +2043,7 @@ func (m *ChangePeer) Reset() { *m = ChangePeer{} } func (m *ChangePeer) String() string { return proto.CompactTextString(m) } func (*ChangePeer) ProtoMessage() {} func (*ChangePeer) Descriptor() ([]byte, []int) { - return fileDescriptor_pdpb_f222a36fbc291b87, []int{32} + return fileDescriptor_pdpb_f15cfe3b94b4d489, []int{32} } func (m *ChangePeer) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2094,7 +2097,7 @@ func (m *TransferLeader) Reset() { *m = TransferLeader{} } func (m *TransferLeader) String() string { return proto.CompactTextString(m) } func (*TransferLeader) ProtoMessage() {} func (*TransferLeader) Descriptor() ([]byte, []int) { - return fileDescriptor_pdpb_f222a36fbc291b87, []int{33} + return fileDescriptor_pdpb_f15cfe3b94b4d489, []int{33} } func (m *TransferLeader) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2141,7 +2144,7 @@ func (m *Merge) Reset() { *m = Merge{} } func (m *Merge) String() string { return proto.CompactTextString(m) } func (*Merge) ProtoMessage() {} func (*Merge) Descriptor() ([]byte, []int) { - return fileDescriptor_pdpb_f222a36fbc291b87, []int{34} + return fileDescriptor_pdpb_f15cfe3b94b4d489, []int{34} } func (m *Merge) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2179,6 +2182,7 @@ func (m *Merge) GetTarget() *metapb.Region { type SplitRegion struct { Policy CheckPolicy `protobuf:"varint,1,opt,name=policy,proto3,enum=pdpb.CheckPolicy" json:"policy,omitempty"` + Keys [][]byte `protobuf:"bytes,2,rep,name=keys" json:"keys,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -2188,7 +2192,7 @@ func (m *SplitRegion) Reset() { *m = SplitRegion{} } func (m *SplitRegion) String() string { return proto.CompactTextString(m) } func (*SplitRegion) ProtoMessage() {} func (*SplitRegion) Descriptor() ([]byte, []int) { - return fileDescriptor_pdpb_f222a36fbc291b87, []int{35} + return fileDescriptor_pdpb_f15cfe3b94b4d489, []int{35} } func (m *SplitRegion) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2224,6 +2228,13 @@ func (m *SplitRegion) GetPolicy() CheckPolicy { return CheckPolicy_SCAN } +func (m *SplitRegion) GetKeys() [][]byte { + if m != nil { + return m.Keys + } + return nil +} + type RegionHeartbeatResponse struct { Header *ResponseHeader `protobuf:"bytes,1,opt,name=header" json:"header,omitempty"` // Notice, Pd only allows handling reported epoch >= current pd's. @@ -2260,7 +2271,7 @@ func (m *RegionHeartbeatResponse) Reset() { *m = RegionHeartbeatResponse func (m *RegionHeartbeatResponse) String() string { return proto.CompactTextString(m) } func (*RegionHeartbeatResponse) ProtoMessage() {} func (*RegionHeartbeatResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_pdpb_f222a36fbc291b87, []int{36} + return fileDescriptor_pdpb_f15cfe3b94b4d489, []int{36} } func (m *RegionHeartbeatResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2357,7 +2368,7 @@ func (m *AskSplitRequest) Reset() { *m = AskSplitRequest{} } func (m *AskSplitRequest) String() string { return proto.CompactTextString(m) } func (*AskSplitRequest) ProtoMessage() {} func (*AskSplitRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_pdpb_f222a36fbc291b87, []int{37} + return fileDescriptor_pdpb_f15cfe3b94b4d489, []int{37} } func (m *AskSplitRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2417,7 +2428,7 @@ func (m *AskSplitResponse) Reset() { *m = AskSplitResponse{} } func (m *AskSplitResponse) String() string { return proto.CompactTextString(m) } func (*AskSplitResponse) ProtoMessage() {} func (*AskSplitResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_pdpb_f222a36fbc291b87, []int{38} + return fileDescriptor_pdpb_f15cfe3b94b4d489, []int{38} } func (m *AskSplitResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2480,7 +2491,7 @@ func (m *ReportSplitRequest) Reset() { *m = ReportSplitRequest{} } func (m *ReportSplitRequest) String() string { return proto.CompactTextString(m) } func (*ReportSplitRequest) ProtoMessage() {} func (*ReportSplitRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_pdpb_f222a36fbc291b87, []int{39} + return fileDescriptor_pdpb_f15cfe3b94b4d489, []int{39} } func (m *ReportSplitRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2541,7 +2552,7 @@ func (m *ReportSplitResponse) Reset() { *m = ReportSplitResponse{} } func (m *ReportSplitResponse) String() string { return proto.CompactTextString(m) } func (*ReportSplitResponse) ProtoMessage() {} func (*ReportSplitResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_pdpb_f222a36fbc291b87, []int{40} + return fileDescriptor_pdpb_f15cfe3b94b4d489, []int{40} } func (m *ReportSplitResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2590,7 +2601,7 @@ func (m *AskBatchSplitRequest) Reset() { *m = AskBatchSplitRequest{} } func (m *AskBatchSplitRequest) String() string { return proto.CompactTextString(m) } func (*AskBatchSplitRequest) ProtoMessage() {} func (*AskBatchSplitRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_pdpb_f222a36fbc291b87, []int{41} + return fileDescriptor_pdpb_f15cfe3b94b4d489, []int{41} } func (m *AskBatchSplitRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2652,7 +2663,7 @@ func (m *SplitID) Reset() { *m = SplitID{} } func (m *SplitID) String() string { return proto.CompactTextString(m) } func (*SplitID) ProtoMessage() {} func (*SplitID) Descriptor() ([]byte, []int) { - return fileDescriptor_pdpb_f222a36fbc291b87, []int{42} + return fileDescriptor_pdpb_f15cfe3b94b4d489, []int{42} } func (m *SplitID) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2707,7 +2718,7 @@ func (m *AskBatchSplitResponse) Reset() { *m = AskBatchSplitResponse{} } func (m *AskBatchSplitResponse) String() string { return proto.CompactTextString(m) } func (*AskBatchSplitResponse) ProtoMessage() {} func (*AskBatchSplitResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_pdpb_f222a36fbc291b87, []int{43} + return fileDescriptor_pdpb_f15cfe3b94b4d489, []int{43} } func (m *AskBatchSplitResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2762,7 +2773,7 @@ func (m *ReportBatchSplitRequest) Reset() { *m = ReportBatchSplitRequest func (m *ReportBatchSplitRequest) String() string { return proto.CompactTextString(m) } func (*ReportBatchSplitRequest) ProtoMessage() {} func (*ReportBatchSplitRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_pdpb_f222a36fbc291b87, []int{44} + return fileDescriptor_pdpb_f15cfe3b94b4d489, []int{44} } func (m *ReportBatchSplitRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2816,7 +2827,7 @@ func (m *ReportBatchSplitResponse) Reset() { *m = ReportBatchSplitRespon func (m *ReportBatchSplitResponse) String() string { return proto.CompactTextString(m) } func (*ReportBatchSplitResponse) ProtoMessage() {} func (*ReportBatchSplitResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_pdpb_f222a36fbc291b87, []int{45} + return fileDescriptor_pdpb_f15cfe3b94b4d489, []int{45} } func (m *ReportBatchSplitResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2866,7 +2877,7 @@ func (m *TimeInterval) Reset() { *m = TimeInterval{} } func (m *TimeInterval) String() string { return proto.CompactTextString(m) } func (*TimeInterval) ProtoMessage() {} func (*TimeInterval) Descriptor() ([]byte, []int) { - return fileDescriptor_pdpb_f222a36fbc291b87, []int{46} + return fileDescriptor_pdpb_f15cfe3b94b4d489, []int{46} } func (m *TimeInterval) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2921,7 +2932,7 @@ func (m *RecordPair) Reset() { *m = RecordPair{} } func (m *RecordPair) String() string { return proto.CompactTextString(m) } func (*RecordPair) ProtoMessage() {} func (*RecordPair) Descriptor() ([]byte, []int) { - return fileDescriptor_pdpb_f222a36fbc291b87, []int{47} + return fileDescriptor_pdpb_f15cfe3b94b4d489, []int{47} } func (m *RecordPair) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3011,7 +3022,7 @@ func (m *StoreStats) Reset() { *m = StoreStats{} } func (m *StoreStats) String() string { return proto.CompactTextString(m) } func (*StoreStats) ProtoMessage() {} func (*StoreStats) Descriptor() ([]byte, []int) { - return fileDescriptor_pdpb_f222a36fbc291b87, []int{48} + return fileDescriptor_pdpb_f15cfe3b94b4d489, []int{48} } func (m *StoreStats) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3185,7 +3196,7 @@ func (m *StoreHeartbeatRequest) Reset() { *m = StoreHeartbeatRequest{} } func (m *StoreHeartbeatRequest) String() string { return proto.CompactTextString(m) } func (*StoreHeartbeatRequest) ProtoMessage() {} func (*StoreHeartbeatRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_pdpb_f222a36fbc291b87, []int{49} + return fileDescriptor_pdpb_f15cfe3b94b4d489, []int{49} } func (m *StoreHeartbeatRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3239,7 +3250,7 @@ func (m *StoreHeartbeatResponse) Reset() { *m = StoreHeartbeatResponse{} func (m *StoreHeartbeatResponse) String() string { return proto.CompactTextString(m) } func (*StoreHeartbeatResponse) ProtoMessage() {} func (*StoreHeartbeatResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_pdpb_f222a36fbc291b87, []int{50} + return fileDescriptor_pdpb_f15cfe3b94b4d489, []int{50} } func (m *StoreHeartbeatResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3291,7 +3302,7 @@ func (m *ScatterRegionRequest) Reset() { *m = ScatterRegionRequest{} } func (m *ScatterRegionRequest) String() string { return proto.CompactTextString(m) } func (*ScatterRegionRequest) ProtoMessage() {} func (*ScatterRegionRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_pdpb_f222a36fbc291b87, []int{51} + return fileDescriptor_pdpb_f15cfe3b94b4d489, []int{51} } func (m *ScatterRegionRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3359,7 +3370,7 @@ func (m *ScatterRegionResponse) Reset() { *m = ScatterRegionResponse{} } func (m *ScatterRegionResponse) String() string { return proto.CompactTextString(m) } func (*ScatterRegionResponse) ProtoMessage() {} func (*ScatterRegionResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_pdpb_f222a36fbc291b87, []int{52} + return fileDescriptor_pdpb_f15cfe3b94b4d489, []int{52} } func (m *ScatterRegionResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3406,7 +3417,7 @@ func (m *GetGCSafePointRequest) Reset() { *m = GetGCSafePointRequest{} } func (m *GetGCSafePointRequest) String() string { return proto.CompactTextString(m) } func (*GetGCSafePointRequest) ProtoMessage() {} func (*GetGCSafePointRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_pdpb_f222a36fbc291b87, []int{53} + return fileDescriptor_pdpb_f15cfe3b94b4d489, []int{53} } func (m *GetGCSafePointRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3454,7 +3465,7 @@ func (m *GetGCSafePointResponse) Reset() { *m = GetGCSafePointResponse{} func (m *GetGCSafePointResponse) String() string { return proto.CompactTextString(m) } func (*GetGCSafePointResponse) ProtoMessage() {} func (*GetGCSafePointResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_pdpb_f222a36fbc291b87, []int{54} + return fileDescriptor_pdpb_f15cfe3b94b4d489, []int{54} } func (m *GetGCSafePointResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3509,7 +3520,7 @@ func (m *UpdateGCSafePointRequest) Reset() { *m = UpdateGCSafePointReque func (m *UpdateGCSafePointRequest) String() string { return proto.CompactTextString(m) } func (*UpdateGCSafePointRequest) ProtoMessage() {} func (*UpdateGCSafePointRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_pdpb_f222a36fbc291b87, []int{55} + return fileDescriptor_pdpb_f15cfe3b94b4d489, []int{55} } func (m *UpdateGCSafePointRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3564,7 +3575,7 @@ func (m *UpdateGCSafePointResponse) Reset() { *m = UpdateGCSafePointResp func (m *UpdateGCSafePointResponse) String() string { return proto.CompactTextString(m) } func (*UpdateGCSafePointResponse) ProtoMessage() {} func (*UpdateGCSafePointResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_pdpb_f222a36fbc291b87, []int{56} + return fileDescriptor_pdpb_f15cfe3b94b4d489, []int{56} } func (m *UpdateGCSafePointResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3622,7 +3633,7 @@ func (m *SyncRegionRequest) Reset() { *m = SyncRegionRequest{} } func (m *SyncRegionRequest) String() string { return proto.CompactTextString(m) } func (*SyncRegionRequest) ProtoMessage() {} func (*SyncRegionRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_pdpb_f222a36fbc291b87, []int{57} + return fileDescriptor_pdpb_f15cfe3b94b4d489, []int{57} } func (m *SyncRegionRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3687,7 +3698,7 @@ func (m *SyncRegionResponse) Reset() { *m = SyncRegionResponse{} } func (m *SyncRegionResponse) String() string { return proto.CompactTextString(m) } func (*SyncRegionResponse) ProtoMessage() {} func (*SyncRegionResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_pdpb_f222a36fbc291b87, []int{58} + return fileDescriptor_pdpb_f15cfe3b94b4d489, []int{58} } func (m *SyncRegionResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3749,7 +3760,7 @@ func (m *GetOperatorRequest) Reset() { *m = GetOperatorRequest{} } func (m *GetOperatorRequest) String() string { return proto.CompactTextString(m) } func (*GetOperatorRequest) ProtoMessage() {} func (*GetOperatorRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_pdpb_f222a36fbc291b87, []int{59} + return fileDescriptor_pdpb_f15cfe3b94b4d489, []int{59} } func (m *GetOperatorRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3807,7 +3818,7 @@ func (m *GetOperatorResponse) Reset() { *m = GetOperatorResponse{} } func (m *GetOperatorResponse) String() string { return proto.CompactTextString(m) } func (*GetOperatorResponse) ProtoMessage() {} func (*GetOperatorResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_pdpb_f222a36fbc291b87, []int{60} + return fileDescriptor_pdpb_f15cfe3b94b4d489, []int{60} } func (m *GetOperatorResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6394,6 +6405,14 @@ func (m *SplitRegion) MarshalTo(dAtA []byte) (int, error) { i++ i = encodeVarintPdpb(dAtA, i, uint64(m.Policy)) } + if len(m.Keys) > 0 { + for _, b := range m.Keys { + dAtA[i] = 0x12 + i++ + i = encodeVarintPdpb(dAtA, i, uint64(len(b))) + i += copy(dAtA[i:], b) + } + } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } @@ -8244,6 +8263,12 @@ func (m *SplitRegion) Size() (n int) { if m.Policy != 0 { n += 1 + sovPdpb(uint64(m.Policy)) } + if len(m.Keys) > 0 { + for _, b := range m.Keys { + l = len(b) + n += 1 + l + sovPdpb(uint64(l)) + } + } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } @@ -13025,6 +13050,35 @@ func (m *SplitRegion) Unmarshal(dAtA []byte) error { break } } + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Keys", wireType) + } + var byteLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowPdpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + byteLen |= (int(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + if byteLen < 0 { + return ErrInvalidLengthPdpb + } + postIndex := iNdEx + byteLen + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Keys = append(m.Keys, make([]byte, postIndex-iNdEx)) + copy(m.Keys[len(m.Keys)-1], dAtA[iNdEx:postIndex]) + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipPdpb(dAtA[iNdEx:]) @@ -16618,184 +16672,185 @@ var ( ErrIntOverflowPdpb = fmt.Errorf("proto: integer overflow") ) -func init() { proto.RegisterFile("pdpb.proto", fileDescriptor_pdpb_f222a36fbc291b87) } - -var fileDescriptor_pdpb_f222a36fbc291b87 = []byte{ - // 2811 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x3a, 0xcd, 0x6f, 0x1b, 0xc7, - 0xf5, 0x5a, 0x8a, 0xa4, 0xc8, 0xc7, 0x4f, 0x8d, 0x64, 0x89, 0xa6, 0x63, 0xc7, 0x59, 0xfb, 0x97, - 0x9f, 0x93, 0x26, 0x4a, 0xe2, 0x04, 0x81, 0x81, 0x22, 0x41, 0x28, 0x8a, 0x56, 0x18, 0x5b, 0x24, - 0x31, 0xa4, 0x92, 0x06, 0x28, 0xc2, 0xae, 0x96, 0x23, 0x6a, 0x2b, 0x6a, 0x77, 0xb3, 0xb3, 0x94, - 0xc3, 0xa0, 0x87, 0x9e, 0xda, 0x02, 0x4d, 0x0f, 0x3d, 0xa4, 0x28, 0x7a, 0xea, 0xb1, 0xa7, 0xde, - 0xda, 0x6b, 0xaf, 0x3d, 0xf6, 0xd8, 0x63, 0x91, 0xfe, 0x05, 0xfd, 0x0f, 0x8a, 0xf9, 0xda, 0x5d, - 0x2e, 0x49, 0x5b, 0x5d, 0xc7, 0x27, 0x71, 0xdf, 0x7b, 0xf3, 0xe6, 0x7d, 0xcd, 0x9b, 0x37, 0xef, - 0x09, 0xc0, 0x1d, 0xb9, 0x27, 0x7b, 0xae, 0xe7, 0xf8, 0x0e, 0x4a, 0xb3, 0xdf, 0xf5, 0xe2, 0x05, - 0xf1, 0x0d, 0x05, 0xab, 0x97, 0x88, 0x67, 0x9c, 0xfa, 0xc1, 0xe7, 0xf6, 0xd8, 0x19, 0x3b, 0xfc, - 0xe7, 0x5b, 0xec, 0x97, 0x84, 0x56, 0xbc, 0x29, 0xf5, 0xf9, 0x4f, 0x01, 0xd0, 0xf7, 0xa0, 0x84, - 0xc9, 0x97, 0x53, 0x42, 0xfd, 0x8f, 0x89, 0x31, 0x22, 0x1e, 0xba, 0x09, 0x60, 0x4e, 0xa6, 0xd4, - 0x27, 0xde, 0xd0, 0x1a, 0xd5, 0xb4, 0xdb, 0xda, 0xbd, 0x34, 0xce, 0x4b, 0x48, 0x7b, 0xa4, 0x63, - 0x28, 0x63, 0x42, 0x5d, 0xc7, 0xa6, 0xe4, 0x4a, 0x0b, 0xd0, 0x2b, 0x90, 0x21, 0x9e, 0xe7, 0x78, - 0xb5, 0xd4, 0x6d, 0xed, 0x5e, 0xe1, 0x7e, 0x61, 0x8f, 0xab, 0xd1, 0x62, 0x20, 0x2c, 0x30, 0xfa, - 0x43, 0xc8, 0xf0, 0x6f, 0x74, 0x07, 0xd2, 0xfe, 0xcc, 0x25, 0x9c, 0x49, 0xf9, 0x7e, 0x25, 0x42, - 0x3a, 0x98, 0xb9, 0x04, 0x73, 0x24, 0xaa, 0xc1, 0xc6, 0x05, 0xa1, 0xd4, 0x18, 0x13, 0xce, 0x32, - 0x8f, 0xd5, 0xa7, 0xde, 0x05, 0x18, 0x50, 0x47, 0xaa, 0x83, 0x7e, 0x00, 0xd9, 0x33, 0x2e, 0x21, - 0x67, 0x57, 0xb8, 0xbf, 0x25, 0xd8, 0xcd, 0x69, 0x8b, 0x25, 0x09, 0xda, 0x86, 0x8c, 0xe9, 0x4c, - 0x6d, 0x9f, 0xb3, 0x2c, 0x61, 0xf1, 0xa1, 0x37, 0x20, 0x3f, 0xb0, 0x2e, 0x08, 0xf5, 0x8d, 0x0b, - 0x17, 0xd5, 0x21, 0xe7, 0x9e, 0xcd, 0xa8, 0x65, 0x1a, 0x13, 0xce, 0x71, 0x1d, 0x07, 0xdf, 0x4c, - 0xa6, 0x89, 0x33, 0xe6, 0xa8, 0x14, 0x47, 0xa9, 0x4f, 0xfd, 0xe7, 0x1a, 0x14, 0xb8, 0x50, 0xc2, - 0x66, 0xe8, 0x8d, 0x98, 0x54, 0xdb, 0x4a, 0xaa, 0xa8, 0x4d, 0x9f, 0x2e, 0x16, 0x7a, 0x13, 0xf2, - 0xbe, 0x12, 0xab, 0xb6, 0xce, 0xd9, 0x48, 0x5b, 0x05, 0xd2, 0xe2, 0x90, 0x42, 0xff, 0x46, 0x83, - 0xea, 0xbe, 0xe3, 0xf8, 0xd4, 0xf7, 0x0c, 0x37, 0x91, 0x75, 0xee, 0x40, 0x86, 0xfa, 0x8e, 0x47, - 0xa4, 0x0f, 0x4b, 0x7b, 0x32, 0xf0, 0xfa, 0x0c, 0x88, 0x05, 0x0e, 0xbd, 0x0a, 0x59, 0x8f, 0x8c, - 0x2d, 0xc7, 0x96, 0x22, 0x95, 0x15, 0x15, 0xe6, 0x50, 0x2c, 0xb1, 0x7a, 0x03, 0x36, 0x23, 0xd2, - 0x24, 0x31, 0x8b, 0x7e, 0x00, 0xd7, 0xda, 0x34, 0x60, 0xe2, 0x92, 0x51, 0x12, 0xad, 0xf4, 0x9f, - 0xc2, 0x4e, 0x9c, 0x4b, 0x22, 0x27, 0xe9, 0x50, 0x3c, 0x89, 0x70, 0xe1, 0x46, 0xca, 0xe1, 0x39, - 0x98, 0xfe, 0x01, 0x94, 0x1b, 0x93, 0x89, 0x63, 0xb6, 0x0f, 0x12, 0x89, 0xda, 0x85, 0x4a, 0xb0, - 0x3c, 0x91, 0x8c, 0x65, 0x48, 0x59, 0x42, 0xb2, 0x34, 0x4e, 0x59, 0x23, 0xfd, 0x73, 0xa8, 0x1c, - 0x12, 0x5f, 0xf8, 0x2f, 0x49, 0x44, 0x5c, 0x87, 0x1c, 0xf7, 0xfa, 0x30, 0xe0, 0xba, 0xc1, 0xbf, - 0xdb, 0x23, 0xfd, 0x37, 0x1a, 0x54, 0x43, 0xde, 0x89, 0xa4, 0xbd, 0x62, 0xbc, 0x65, 0xa8, 0x6f, - 0xf8, 0x54, 0x86, 0x5b, 0x55, 0x70, 0xe4, 0x24, 0x7d, 0x06, 0xc7, 0x02, 0xad, 0x9b, 0x50, 0xe9, - 0x4d, 0x9f, 0x43, 0xd5, 0xab, 0x08, 0xa3, 0x7f, 0x04, 0xd5, 0x70, 0x93, 0x44, 0x31, 0xfd, 0x33, - 0xd8, 0x3a, 0x24, 0x7e, 0x63, 0x32, 0xe1, 0x4c, 0x68, 0x22, 0x51, 0x1f, 0x40, 0x8d, 0x7c, 0x65, - 0x4e, 0xa6, 0x23, 0x32, 0xf4, 0x9d, 0x8b, 0x13, 0xea, 0x3b, 0x36, 0x19, 0x72, 0x01, 0xa9, 0x8c, - 0xca, 0x1d, 0x89, 0x1f, 0x28, 0xb4, 0xd8, 0x4d, 0x3f, 0x87, 0xed, 0xf9, 0xdd, 0x13, 0xf9, 0xed, - 0xff, 0x20, 0x1b, 0xec, 0xb6, 0xbe, 0x68, 0x2b, 0x89, 0xd4, 0xbf, 0xe0, 0x01, 0x22, 0xd3, 0x42, - 0x12, 0x3d, 0x6f, 0x02, 0x88, 0x64, 0x32, 0x3c, 0x27, 0x33, 0xae, 0x59, 0x11, 0xe7, 0x05, 0xe4, - 0x11, 0x99, 0xe9, 0x7f, 0xd1, 0x60, 0x33, 0xb2, 0x41, 0x22, 0x55, 0xc2, 0x6c, 0x96, 0x7a, 0x5a, - 0x36, 0x43, 0x77, 0x21, 0x3b, 0x11, 0x5c, 0x45, 0x18, 0x16, 0x15, 0x5d, 0x8f, 0x30, 0x6e, 0x02, - 0xc7, 0xa8, 0xe8, 0xc4, 0xb8, 0x24, 0xb4, 0x96, 0xe6, 0x86, 0x89, 0x51, 0x09, 0x9c, 0xfe, 0x13, - 0xee, 0x04, 0xb1, 0xc1, 0xfe, 0x2c, 0x59, 0xaa, 0x40, 0x37, 0x40, 0x5a, 0x22, 0x3c, 0x9a, 0x39, - 0x01, 0x10, 0x67, 0x13, 0xf5, 0x4d, 0xc3, 0x16, 0x7b, 0xd0, 0xa4, 0x1b, 0x50, 0xdf, 0xf0, 0xfc, - 0x88, 0xed, 0x73, 0x1c, 0xf0, 0x88, 0xcc, 0xd8, 0x85, 0x35, 0xb1, 0x2e, 0x2c, 0x9f, 0x5b, 0x23, - 0x83, 0xc5, 0x07, 0xda, 0x85, 0x0d, 0x62, 0x8f, 0xf8, 0x82, 0x34, 0x5f, 0x90, 0x25, 0xf6, 0x88, - 0x79, 0xea, 0x5b, 0x0d, 0xb6, 0xe6, 0xe4, 0x49, 0xe4, 0xab, 0x7b, 0xb0, 0x21, 0x34, 0x54, 0x71, - 0x17, 0x77, 0x96, 0x42, 0xa3, 0x57, 0x61, 0x43, 0x78, 0x84, 0x65, 0x8d, 0x45, 0x47, 0x28, 0xa4, - 0xfe, 0x10, 0x76, 0x0f, 0x89, 0xdf, 0x14, 0x45, 0x4c, 0xd3, 0xb1, 0x4f, 0xad, 0x71, 0xa2, 0xbc, - 0x4d, 0xa1, 0xb6, 0xc8, 0x27, 0x91, 0x8e, 0xaf, 0xc1, 0x86, 0xac, 0xa9, 0x64, 0x40, 0x56, 0x94, - 0xe4, 0x92, 0x3b, 0x56, 0x78, 0xfd, 0x4b, 0xd8, 0xed, 0x4d, 0x9f, 0x5f, 0xf8, 0xff, 0x65, 0xcb, - 0x8f, 0xa1, 0xb6, 0xb8, 0x65, 0xa2, 0x34, 0xf8, 0x47, 0x0d, 0xb2, 0x47, 0xe4, 0xe2, 0x84, 0x78, - 0x08, 0x41, 0xda, 0x36, 0x2e, 0x44, 0x35, 0x98, 0xc7, 0xfc, 0x37, 0x0b, 0xbe, 0x0b, 0x8e, 0x8d, - 0x44, 0xb7, 0x00, 0xb4, 0x47, 0x0c, 0xe9, 0x12, 0xe2, 0x0d, 0xa7, 0xde, 0x44, 0xf8, 0x37, 0x8f, - 0x73, 0x0c, 0x70, 0xec, 0x4d, 0x28, 0x7a, 0x19, 0x0a, 0xe6, 0xc4, 0x22, 0xb6, 0x2f, 0xd0, 0x69, - 0x8e, 0x06, 0x01, 0xe2, 0x04, 0xff, 0x0f, 0x15, 0xe1, 0xfe, 0xa1, 0xeb, 0x59, 0x8e, 0x67, 0xf9, - 0xb3, 0x5a, 0x86, 0x07, 0x71, 0x59, 0x80, 0x7b, 0x12, 0xaa, 0x7f, 0xc4, 0xb3, 0x8b, 0x10, 0x32, - 0xd1, 0x11, 0xd2, 0xff, 0xa6, 0x01, 0x8a, 0xb2, 0x48, 0x98, 0xa1, 0x36, 0x84, 0xe6, 0x2a, 0xea, - 0x8b, 0x82, 0x5c, 0x70, 0xc5, 0x0a, 0xb9, 0x24, 0x43, 0x45, 0xc9, 0x54, 0x86, 0x7a, 0x13, 0x0a, - 0xc4, 0x37, 0x47, 0x43, 0x49, 0x9a, 0x5e, 0x42, 0x0a, 0x8c, 0xe0, 0xb1, 0xd0, 0xa0, 0x07, 0x79, - 0x76, 0x62, 0xf8, 0x45, 0x8b, 0x6e, 0x43, 0x9a, 0x99, 0x59, 0x4a, 0x3d, 0x7f, 0xa4, 0x38, 0x06, - 0xbd, 0x02, 0xc5, 0x91, 0xf3, 0xc4, 0x1e, 0x52, 0x62, 0x3a, 0xf6, 0x88, 0x4a, 0xcf, 0x15, 0x18, - 0xac, 0x2f, 0x40, 0xfa, 0x1f, 0xd2, 0xb0, 0x23, 0x8e, 0xeb, 0xc7, 0xc4, 0xf0, 0xfc, 0x13, 0x62, - 0xf8, 0x89, 0xa2, 0xf6, 0xfb, 0x4d, 0xdc, 0x7b, 0x00, 0x5c, 0x70, 0xa6, 0x85, 0x4a, 0xde, 0xb2, - 0xd6, 0x0e, 0xf4, 0xc7, 0x79, 0x46, 0xc2, 0x3e, 0x29, 0x7a, 0x07, 0x4a, 0x2e, 0xb1, 0x47, 0x96, - 0x3d, 0x96, 0x4b, 0x32, 0x4b, 0xd2, 0x4c, 0x51, 0x92, 0x88, 0x25, 0x77, 0xa0, 0x74, 0x32, 0xf3, - 0x09, 0x1d, 0x3e, 0xf1, 0x2c, 0xdf, 0x27, 0x76, 0x2d, 0xcb, 0x8d, 0x53, 0xe4, 0xc0, 0xcf, 0x04, - 0x8c, 0xdd, 0x78, 0x82, 0xc8, 0x23, 0xc6, 0xa8, 0xb6, 0x21, 0x1e, 0x59, 0x1c, 0x82, 0x89, 0xc1, - 0x1e, 0x59, 0xc5, 0x73, 0x32, 0x0b, 0x59, 0xe4, 0x84, 0x7d, 0x19, 0x4c, 0x71, 0xb8, 0x01, 0x79, - 0x4e, 0xc2, 0x19, 0xe4, 0xc5, 0xc9, 0x61, 0x00, 0xbe, 0xfe, 0x35, 0xa8, 0x1a, 0xae, 0xeb, 0x39, - 0x5f, 0x59, 0x17, 0x86, 0x4f, 0x86, 0xd4, 0xfa, 0x9a, 0xd4, 0x80, 0xd3, 0x54, 0x22, 0xf0, 0xbe, - 0xf5, 0x35, 0x41, 0x7b, 0x90, 0xb3, 0x6c, 0x9f, 0x78, 0x97, 0xc6, 0xa4, 0x56, 0xe4, 0x96, 0x43, - 0xe1, 0xdb, 0xa3, 0x2d, 0x31, 0x38, 0xa0, 0x89, 0xb3, 0x66, 0x5b, 0xd6, 0x4a, 0x0b, 0xac, 0x1f, - 0x91, 0x19, 0x65, 0x07, 0xde, 0x27, 0xde, 0x45, 0xad, 0xcc, 0xd1, 0xfc, 0xf7, 0x27, 0xe9, 0x5c, - 0xa1, 0x5a, 0xd4, 0xcf, 0x00, 0x9a, 0x67, 0x86, 0x3d, 0x26, 0xcc, 0x64, 0x57, 0x88, 0xb7, 0x07, - 0x50, 0x30, 0x39, 0xfd, 0x90, 0xbf, 0x27, 0x53, 0xfc, 0x3d, 0xb9, 0xbb, 0xa7, 0x5e, 0xc8, 0x2c, - 0x43, 0x09, 0x7e, 0xfc, 0x5d, 0x09, 0x66, 0xf0, 0x5b, 0xbf, 0x0f, 0xe5, 0x81, 0x67, 0xd8, 0xf4, - 0x94, 0x78, 0x22, 0xd4, 0x9f, 0xbd, 0x9b, 0xfe, 0x16, 0x64, 0x8e, 0x88, 0x37, 0xe6, 0x4f, 0x20, - 0xdf, 0xf0, 0xc6, 0xc4, 0x97, 0xc4, 0x0b, 0xb1, 0x27, 0xb0, 0xfa, 0x03, 0x28, 0xf4, 0xdd, 0x89, - 0x25, 0xaf, 0x7a, 0xf4, 0x1a, 0x64, 0x5d, 0x67, 0x62, 0x99, 0x33, 0xf9, 0xf0, 0xdd, 0x14, 0x06, - 0x6d, 0x9e, 0x11, 0xf3, 0xbc, 0xc7, 0x11, 0x58, 0x12, 0xe8, 0xbf, 0x5b, 0x87, 0xdd, 0x85, 0x53, - 0x92, 0x28, 0x7d, 0xbc, 0x13, 0x98, 0x88, 0x6b, 0x97, 0x8a, 0x16, 0xd1, 0xa1, 0xad, 0x95, 0x6d, - 0xb8, 0xdd, 0x3f, 0x80, 0x8a, 0x2f, 0x6d, 0x33, 0x9c, 0x3b, 0x3b, 0x72, 0xa7, 0x79, 0xc3, 0xe1, - 0xb2, 0x3f, 0x6f, 0xc8, 0xb9, 0xca, 0x24, 0x3d, 0x5f, 0x99, 0xa0, 0xf7, 0xa1, 0x28, 0x91, 0xc4, - 0x75, 0xcc, 0x33, 0x9e, 0x7a, 0xd9, 0x49, 0x9f, 0x33, 0x60, 0x8b, 0xa1, 0x70, 0xc1, 0x0b, 0x3f, - 0x58, 0xde, 0x12, 0x46, 0x15, 0x6a, 0x64, 0x97, 0x38, 0x09, 0x04, 0x41, 0x4f, 0x24, 0xa2, 0xcc, - 0x05, 0x73, 0x15, 0x3f, 0x42, 0x41, 0x37, 0x82, 0x7b, 0x0f, 0x0b, 0x0c, 0x7a, 0x0f, 0x8a, 0x94, - 0x39, 0x67, 0x28, 0xd3, 0x48, 0x8e, 0x53, 0x4a, 0x9f, 0x44, 0xdc, 0x86, 0x0b, 0x34, 0xfc, 0xd0, - 0x4f, 0xa1, 0xd2, 0xa0, 0xe7, 0x12, 0xfd, 0xe2, 0xd2, 0x96, 0xfe, 0x0b, 0x0d, 0xaa, 0xe1, 0x46, - 0x09, 0xdf, 0xab, 0x25, 0x9b, 0x3c, 0x19, 0xc6, 0xab, 0xc4, 0x82, 0x4d, 0x9e, 0x60, 0xe5, 0x8e, - 0xdb, 0x50, 0x64, 0x34, 0xfc, 0x3a, 0xb5, 0x46, 0xe2, 0x36, 0x4d, 0x63, 0xb0, 0xc9, 0x13, 0x66, - 0xc6, 0xf6, 0x88, 0xea, 0xbf, 0xd6, 0x00, 0x61, 0xe2, 0x3a, 0x9e, 0x9f, 0x5c, 0x69, 0x1d, 0xd2, - 0x13, 0x72, 0xea, 0xaf, 0x50, 0x99, 0xe3, 0xd0, 0x5d, 0xc8, 0x78, 0xd6, 0xf8, 0xcc, 0x5f, 0xd1, - 0x55, 0x10, 0x48, 0xbd, 0x09, 0x5b, 0x73, 0xc2, 0x24, 0xaa, 0x3d, 0xbe, 0xd1, 0x60, 0xbb, 0x41, - 0xcf, 0xf7, 0x0d, 0xdf, 0x3c, 0x7b, 0xe1, 0x9e, 0x64, 0x05, 0x89, 0x88, 0x33, 0xd1, 0xe1, 0x59, - 0xe7, 0x1d, 0x1e, 0xe0, 0xa0, 0x26, 0xef, 0x3e, 0x75, 0x61, 0x83, 0x4b, 0xd1, 0x3e, 0x58, 0x74, - 0x99, 0xf6, 0x6c, 0x97, 0xa5, 0x16, 0x5c, 0x76, 0x0a, 0xd7, 0x62, 0xea, 0x25, 0x8a, 0x9f, 0x97, - 0x61, 0x5d, 0xf1, 0x67, 0x4f, 0xbc, 0xf0, 0x5c, 0xb4, 0x0f, 0x30, 0xc3, 0xe8, 0x2e, 0xcb, 0x51, - 0xcc, 0x19, 0xcf, 0x69, 0xc9, 0x2b, 0xd7, 0xf5, 0xac, 0xfe, 0x5c, 0xdc, 0x31, 0x51, 0x0c, 0xfc, - 0x18, 0x8a, 0xd1, 0x8b, 0x8c, 0x55, 0x85, 0xe2, 0xb5, 0x13, 0x76, 0xdc, 0x84, 0xed, 0xcb, 0x1c, - 0x1c, 0xb6, 0x07, 0xef, 0x40, 0x89, 0xbd, 0x71, 0x42, 0x32, 0x71, 0xaa, 0x8a, 0xc4, 0x1e, 0x05, - 0x44, 0xfa, 0x7b, 0x00, 0x98, 0x98, 0x8e, 0x37, 0xea, 0x19, 0x96, 0x87, 0xaa, 0xb0, 0xce, 0x9e, - 0x44, 0xa2, 0xbe, 0x65, 0x3f, 0xd9, 0xf3, 0xe9, 0xd2, 0x98, 0x4c, 0x89, 0x5c, 0x2c, 0x3e, 0xf4, - 0xff, 0x64, 0x00, 0xc2, 0xbe, 0xc6, 0x5c, 0xef, 0x45, 0x9b, 0xeb, 0xbd, 0xa0, 0x3a, 0xe4, 0x4c, - 0xc3, 0x35, 0x4c, 0x56, 0xbc, 0xca, 0xea, 0x58, 0x7d, 0xa3, 0x97, 0x20, 0x6f, 0x5c, 0x1a, 0xd6, - 0xc4, 0x38, 0x99, 0x10, 0x1e, 0x6d, 0x69, 0x1c, 0x02, 0x58, 0x05, 0x21, 0xa3, 0x4b, 0x84, 0x63, - 0x9a, 0x87, 0xa3, 0x4c, 0xb5, 0x3c, 0x1e, 0xd1, 0x1b, 0x80, 0xa8, 0xac, 0x6d, 0xa8, 0x6d, 0xb8, - 0x92, 0x30, 0xc3, 0x09, 0xab, 0x12, 0xd3, 0xb7, 0x0d, 0x57, 0x50, 0xbf, 0x0d, 0xdb, 0x1e, 0x31, - 0x89, 0x75, 0x19, 0xa3, 0xcf, 0x72, 0x7a, 0x14, 0xe0, 0xc2, 0x15, 0x37, 0x01, 0x42, 0x53, 0xf3, - 0x04, 0x5d, 0xc2, 0xf9, 0xc0, 0xca, 0x68, 0x0f, 0xb6, 0x0c, 0xd7, 0x9d, 0xcc, 0x62, 0xfc, 0x72, - 0x9c, 0x6e, 0x53, 0xa1, 0x42, 0x76, 0xbb, 0xb0, 0x61, 0xd1, 0xe1, 0xc9, 0x94, 0xce, 0x78, 0xb9, - 0x93, 0xc3, 0x59, 0x8b, 0xee, 0x4f, 0xe9, 0x8c, 0xdd, 0x43, 0x53, 0x4a, 0x46, 0xd1, 0x2a, 0x27, - 0xc7, 0x00, 0xbc, 0xbc, 0x59, 0xa8, 0xc6, 0x0a, 0x4b, 0xaa, 0xb1, 0x78, 0xb9, 0x55, 0x5c, 0x2c, - 0xb7, 0xe6, 0x0b, 0xb6, 0x52, 0xbc, 0x60, 0x9b, 0xab, 0xc6, 0xca, 0xb1, 0x6a, 0x2c, 0x5a, 0x62, - 0x55, 0xae, 0x50, 0x62, 0xbd, 0x05, 0x60, 0xba, 0xd3, 0xe1, 0x94, 0x1a, 0x63, 0x42, 0x6b, 0x55, - 0x7e, 0x54, 0xaa, 0x2a, 0xca, 0x55, 0xb4, 0xe1, 0xbc, 0xe9, 0x4e, 0x8f, 0x39, 0x09, 0x7a, 0x0f, - 0x4a, 0x6c, 0xe3, 0xa1, 0xe5, 0x0c, 0x3d, 0xc3, 0x27, 0xb4, 0xb6, 0xb9, 0x62, 0x4d, 0x81, 0x91, - 0xb5, 0x1d, 0xcc, 0x88, 0xd0, 0xfb, 0x50, 0x66, 0x0a, 0x93, 0x70, 0x19, 0x5a, 0xb1, 0xac, 0xc8, - 0xe9, 0xd4, 0xba, 0x77, 0xa1, 0xe8, 0xb8, 0xc3, 0x89, 0xe1, 0x13, 0xdb, 0xb4, 0x08, 0xad, 0x6d, - 0xad, 0xda, 0xcc, 0x71, 0x1f, 0x2b, 0x22, 0x7d, 0x02, 0xd7, 0x78, 0xc8, 0x3f, 0xef, 0x63, 0x40, - 0xf6, 0x08, 0x53, 0x4f, 0xef, 0x11, 0x3e, 0x84, 0x9d, 0xf8, 0x6e, 0x89, 0xb2, 0xc7, 0x9f, 0x35, - 0xd8, 0xee, 0x9b, 0x86, 0xcf, 0x1e, 0xc7, 0xc9, 0xdb, 0x5b, 0x4f, 0x6b, 0xe1, 0x5c, 0xb5, 0xcd, - 0x1e, 0x79, 0xdf, 0xa4, 0x57, 0xbf, 0x6f, 0xf4, 0x16, 0x5c, 0x8b, 0xc9, 0x9b, 0xb4, 0x21, 0x7f, - 0x48, 0xfc, 0xc3, 0x66, 0xdf, 0x38, 0x25, 0x3d, 0xc7, 0xb2, 0x13, 0x79, 0x4b, 0x27, 0xb0, 0x13, - 0xe7, 0x92, 0xe8, 0x82, 0x62, 0x89, 0xc4, 0x38, 0x25, 0x43, 0x97, 0xf1, 0x90, 0x06, 0xcc, 0x53, - 0xc5, 0x54, 0x3f, 0x85, 0xda, 0xb1, 0x3b, 0x32, 0x7c, 0xf2, 0x9c, 0xf2, 0x3e, 0x6b, 0x1f, 0x07, - 0xae, 0x2f, 0xd9, 0x27, 0x91, 0x46, 0x77, 0xa1, 0xcc, 0xee, 0xf6, 0x85, 0xdd, 0xd8, 0x8d, 0x1f, - 0xf0, 0xd6, 0x7f, 0xa9, 0xc1, 0x66, 0x7f, 0x66, 0x9b, 0xcf, 0x11, 0x7a, 0x77, 0x21, 0x2b, 0xfa, - 0x06, 0xf2, 0xc4, 0xc4, 0x9a, 0x05, 0x02, 0xc7, 0x4b, 0x17, 0x9e, 0xa9, 0x2d, 0x7b, 0x44, 0xbe, - 0x92, 0x97, 0x89, 0x48, 0xde, 0x6d, 0x06, 0x11, 0x7d, 0xc6, 0x88, 0x24, 0x2f, 0xb8, 0xad, 0xf7, - 0x4c, 0x79, 0xbe, 0xe0, 0xfd, 0x96, 0xae, 0x4b, 0x3c, 0xc3, 0x77, 0xbc, 0xef, 0xbf, 0xaf, 0xfa, - 0x57, 0x8d, 0x77, 0xef, 0xc3, 0x0d, 0x12, 0x29, 0xfc, 0xd4, 0x73, 0x8f, 0x20, 0x3d, 0x22, 0xd4, - 0xe4, 0xca, 0x15, 0x31, 0xff, 0xcd, 0xd8, 0xb3, 0xfc, 0x35, 0xa5, 0xfc, 0x8c, 0x97, 0x15, 0x7b, - 0x25, 0x46, 0x9f, 0xe3, 0xb0, 0xa4, 0x61, 0x1c, 0xce, 0x2d, 0x7b, 0xc4, 0x6f, 0xec, 0x22, 0xe6, - 0xbf, 0x5f, 0xff, 0x56, 0x83, 0x7c, 0x30, 0x60, 0x45, 0x59, 0x48, 0x75, 0x1f, 0x55, 0xd7, 0x50, - 0x01, 0x36, 0x8e, 0x3b, 0x8f, 0x3a, 0xdd, 0xcf, 0x3a, 0x55, 0x0d, 0x6d, 0x43, 0xb5, 0xd3, 0x1d, - 0x0c, 0xf7, 0xbb, 0xdd, 0x41, 0x7f, 0x80, 0x1b, 0xbd, 0x5e, 0xeb, 0xa0, 0x9a, 0x42, 0x5b, 0x50, - 0xe9, 0x0f, 0xba, 0xb8, 0x35, 0x1c, 0x74, 0x8f, 0xf6, 0xfb, 0x83, 0x6e, 0xa7, 0x55, 0x5d, 0x47, - 0x35, 0xd8, 0x6e, 0x3c, 0xc6, 0xad, 0xc6, 0xc1, 0xe7, 0xf3, 0xe4, 0x69, 0x86, 0x69, 0x77, 0x9a, - 0xdd, 0xa3, 0x5e, 0x63, 0xd0, 0xde, 0x7f, 0xdc, 0x1a, 0x7e, 0xda, 0xc2, 0xfd, 0x76, 0xb7, 0x53, - 0xcd, 0x30, 0xf6, 0xb8, 0x75, 0xd8, 0xee, 0x76, 0x86, 0x6c, 0x97, 0x87, 0xdd, 0xe3, 0xce, 0x41, - 0x35, 0xfb, 0xfa, 0x3d, 0x28, 0x44, 0x9e, 0xbf, 0x28, 0x07, 0xe9, 0x7e, 0xb3, 0xd1, 0xa9, 0xae, - 0xa1, 0x0a, 0x14, 0x1a, 0xbd, 0x1e, 0xee, 0xfe, 0xa8, 0x7d, 0xd4, 0x18, 0xb4, 0xaa, 0xda, 0xeb, - 0x3d, 0x28, 0xcf, 0xeb, 0xcb, 0xa4, 0xef, 0x1f, 0x37, 0x9b, 0xad, 0x7e, 0x5f, 0xa8, 0x32, 0x68, - 0x1f, 0xb5, 0xba, 0xc7, 0x83, 0xaa, 0x86, 0x00, 0xb2, 0xcd, 0x46, 0xa7, 0xd9, 0x7a, 0x5c, 0x4d, - 0x31, 0x04, 0x6e, 0xf5, 0x1e, 0x37, 0x9a, 0x4c, 0x70, 0xf6, 0x71, 0xdc, 0xe9, 0xb4, 0x3b, 0x87, - 0xd5, 0xf4, 0xfd, 0xdf, 0x96, 0x21, 0xd5, 0x3b, 0x40, 0x0d, 0x80, 0xb0, 0x47, 0x87, 0x76, 0x85, - 0x69, 0x17, 0x1a, 0x7f, 0xf5, 0xda, 0x22, 0x42, 0x38, 0x57, 0x5f, 0x43, 0x6f, 0xc3, 0xfa, 0x80, - 0x3a, 0x48, 0x5e, 0x3b, 0xe1, 0x6c, 0xba, 0xbe, 0x19, 0x81, 0x28, 0xea, 0x7b, 0xda, 0xdb, 0x1a, - 0xfa, 0x10, 0xf2, 0xc1, 0x44, 0x12, 0xed, 0x08, 0xaa, 0xf8, 0xec, 0xb6, 0xbe, 0xbb, 0x00, 0x0f, - 0x76, 0x3c, 0x82, 0xf2, 0xfc, 0x4c, 0x13, 0xdd, 0x10, 0xc4, 0x4b, 0xe7, 0xa5, 0xf5, 0x97, 0x96, - 0x23, 0x03, 0x76, 0x0f, 0x60, 0x43, 0xce, 0x1d, 0x91, 0x8c, 0xad, 0xf9, 0x29, 0x66, 0xfd, 0x5a, - 0x0c, 0x1a, 0xac, 0xfc, 0x21, 0xe4, 0xd4, 0x10, 0x10, 0x5d, 0x0b, 0x4c, 0x14, 0x9d, 0xc2, 0xd5, - 0x77, 0xe2, 0xe0, 0xe8, 0x62, 0x35, 0x4d, 0x53, 0x8b, 0x63, 0x23, 0x3c, 0xb5, 0x38, 0x3e, 0x74, - 0xd3, 0xd7, 0xd0, 0x21, 0x14, 0xa3, 0xa3, 0x2c, 0x74, 0x3d, 0xd8, 0x26, 0x3e, 0x5c, 0xab, 0xd7, - 0x97, 0xa1, 0xa2, 0xb6, 0x9c, 0x2f, 0x0a, 0x94, 0x2d, 0x97, 0x16, 0x26, 0xca, 0x96, 0xcb, 0xeb, - 0x08, 0x7d, 0x0d, 0x0d, 0xa0, 0x12, 0xeb, 0xdc, 0xa0, 0x97, 0x54, 0x3a, 0x58, 0xd6, 0xf6, 0xac, - 0xdf, 0x5c, 0x81, 0x8d, 0x07, 0x4c, 0x30, 0x33, 0x42, 0xa1, 0x45, 0xe7, 0xae, 0x80, 0xfa, 0xee, - 0x02, 0x3c, 0x90, 0x6a, 0x1f, 0x4a, 0x87, 0xc4, 0xef, 0x79, 0xe4, 0x32, 0x39, 0x8f, 0x87, 0x9c, - 0x47, 0x38, 0xb7, 0x42, 0xf5, 0x18, 0x6d, 0x64, 0x98, 0xf5, 0x34, 0x3e, 0x07, 0x50, 0x88, 0x0c, - 0x83, 0x90, 0x3c, 0x59, 0x8b, 0xf3, 0xaa, 0xfa, 0xf5, 0x25, 0x98, 0x80, 0xcb, 0x87, 0x90, 0x53, - 0x0d, 0x12, 0x15, 0x3c, 0xb1, 0xce, 0x8c, 0x0a, 0x9e, 0x78, 0x1f, 0x45, 0x5f, 0xff, 0x55, 0x4a, - 0x43, 0x87, 0x50, 0x88, 0xb4, 0x12, 0x94, 0x14, 0x8b, 0xad, 0x0e, 0x25, 0xc5, 0x92, 0xbe, 0x83, - 0x60, 0xf4, 0x09, 0x94, 0xe6, 0x9e, 0xdb, 0xca, 0x2c, 0xcb, 0x5a, 0x0c, 0xf5, 0x1b, 0x4b, 0x71, - 0x81, 0x52, 0x7d, 0xa8, 0xc6, 0x1f, 0xb8, 0xe8, 0x66, 0x74, 0xff, 0x45, 0x8e, 0xb7, 0x56, 0xa1, - 0xa3, 0x4c, 0xe3, 0xd3, 0x29, 0xc5, 0x74, 0xc5, 0xf4, 0x4b, 0x31, 0x5d, 0x35, 0xd4, 0x12, 0x4c, - 0xe3, 0xa3, 0x20, 0xc5, 0x74, 0xc5, 0x54, 0x4a, 0x31, 0x5d, 0x35, 0x41, 0xd2, 0xd7, 0x98, 0x29, - 0xe7, 0xca, 0x54, 0x65, 0xca, 0x65, 0xb5, 0xb6, 0x32, 0xe5, 0xd2, 0xba, 0x56, 0x1c, 0xeb, 0xf9, - 0x2a, 0x53, 0x1d, 0xeb, 0xa5, 0x15, 0xac, 0x3a, 0xd6, 0xcb, 0x0b, 0x53, 0x7d, 0x0d, 0x7d, 0x0a, - 0x9b, 0x0b, 0x55, 0x1e, 0x92, 0x1a, 0xad, 0x2a, 0x33, 0xeb, 0x2f, 0xaf, 0xc4, 0x47, 0x0e, 0x55, - 0x21, 0xac, 0xa0, 0x82, 0xfb, 0x67, 0xa1, 0xbc, 0x53, 0xf7, 0xcf, 0x62, 0xb5, 0x25, 0x13, 0xc4, - 0x01, 0x14, 0x22, 0x95, 0x09, 0x0a, 0xaf, 0xab, 0x58, 0x35, 0x54, 0xbf, 0xbe, 0x04, 0xa3, 0x38, - 0xed, 0xbf, 0xfa, 0xcf, 0x3f, 0xe5, 0xb4, 0xbf, 0x7f, 0x77, 0x4b, 0xfb, 0xc7, 0x77, 0xb7, 0xb4, - 0x7f, 0x7d, 0x77, 0x4b, 0xfb, 0xfd, 0xbf, 0x6f, 0xad, 0x41, 0xd5, 0xf1, 0xc6, 0x7b, 0xbe, 0x75, - 0x7e, 0xb9, 0x77, 0x7e, 0xc9, 0xff, 0x9d, 0xec, 0x24, 0xcb, 0xff, 0xbc, 0xfb, 0xdf, 0x00, 0x00, - 0x00, 0xff, 0xff, 0x94, 0x5a, 0x7f, 0x48, 0xad, 0x26, 0x00, 0x00, +func init() { proto.RegisterFile("pdpb.proto", fileDescriptor_pdpb_f15cfe3b94b4d489) } + +var fileDescriptor_pdpb_f15cfe3b94b4d489 = []byte{ + // 2831 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x3a, 0x4d, 0x73, 0x1b, 0xc7, + 0xb1, 0x5c, 0x10, 0x00, 0x81, 0xc6, 0x27, 0x87, 0x14, 0x09, 0x41, 0x96, 0x2c, 0xaf, 0xf4, 0xfc, + 0x64, 0x3f, 0x9b, 0xb6, 0x65, 0x95, 0xcb, 0x55, 0xaf, 0xec, 0x32, 0x08, 0x42, 0x34, 0x2c, 0x12, + 0x40, 0x0d, 0x40, 0xfb, 0xb9, 0xea, 0x95, 0x91, 0x25, 0x76, 0x08, 0x6e, 0x08, 0xee, 0xae, 0x77, + 0x16, 0x94, 0xe1, 0xca, 0x21, 0xa7, 0x24, 0x55, 0x71, 0x0e, 0x39, 0x38, 0x95, 0xca, 0x29, 0xc7, + 0x9c, 0x72, 0x4b, 0xae, 0xb9, 0xe6, 0x98, 0x63, 0x8e, 0x29, 0xe7, 0x17, 0xe4, 0x1f, 0xa4, 0xe6, + 0x6b, 0x77, 0xb1, 0x00, 0x24, 0x66, 0x65, 0x9f, 0x88, 0xed, 0xee, 0xe9, 0xe9, 0xaf, 0xe9, 0xe9, + 0xe9, 0x26, 0x80, 0x6b, 0xba, 0xa7, 0x7b, 0xae, 0xe7, 0xf8, 0x0e, 0x4a, 0xb3, 0xdf, 0xf5, 0xe2, + 0x25, 0xf1, 0x0d, 0x05, 0xab, 0x97, 0x88, 0x67, 0x9c, 0xf9, 0xc1, 0xe7, 0xf6, 0xd8, 0x19, 0x3b, + 0xfc, 0xe7, 0x5b, 0xec, 0x97, 0x84, 0x56, 0xbc, 0x29, 0xf5, 0xf9, 0x4f, 0x01, 0xd0, 0xf7, 0xa0, + 0x84, 0xc9, 0x97, 0x53, 0x42, 0xfd, 0x8f, 0x89, 0x61, 0x12, 0x0f, 0xdd, 0x06, 0x18, 0x4d, 0xa6, + 0xd4, 0x27, 0xde, 0xd0, 0x32, 0x6b, 0xda, 0x5d, 0xed, 0x41, 0x1a, 0xe7, 0x25, 0xa4, 0x6d, 0xea, + 0x18, 0xca, 0x98, 0x50, 0xd7, 0xb1, 0x29, 0xb9, 0xd6, 0x02, 0xf4, 0x0a, 0x64, 0x88, 0xe7, 0x39, + 0x5e, 0x2d, 0x75, 0x57, 0x7b, 0x50, 0x78, 0x58, 0xd8, 0xe3, 0x6a, 0xb4, 0x18, 0x08, 0x0b, 0x8c, + 0xfe, 0x18, 0x32, 0xfc, 0x1b, 0xdd, 0x83, 0xb4, 0x3f, 0x73, 0x09, 0x67, 0x52, 0x7e, 0x58, 0x89, + 0x90, 0x0e, 0x66, 0x2e, 0xc1, 0x1c, 0x89, 0x6a, 0xb0, 0x71, 0x49, 0x28, 0x35, 0xc6, 0x84, 0xb3, + 0xcc, 0x63, 0xf5, 0xa9, 0x77, 0x01, 0x06, 0xd4, 0x91, 0xea, 0xa0, 0xff, 0x81, 0xec, 0x39, 0x97, + 0x90, 0xb3, 0x2b, 0x3c, 0xdc, 0x12, 0xec, 0xe6, 0xb4, 0xc5, 0x92, 0x04, 0x6d, 0x43, 0x66, 0xe4, + 0x4c, 0x6d, 0x9f, 0xb3, 0x2c, 0x61, 0xf1, 0xa1, 0x37, 0x20, 0x3f, 0xb0, 0x2e, 0x09, 0xf5, 0x8d, + 0x4b, 0x17, 0xd5, 0x21, 0xe7, 0x9e, 0xcf, 0xa8, 0x35, 0x32, 0x26, 0x9c, 0xe3, 0x3a, 0x0e, 0xbe, + 0x99, 0x4c, 0x13, 0x67, 0xcc, 0x51, 0x29, 0x8e, 0x52, 0x9f, 0xfa, 0x4f, 0x35, 0x28, 0x70, 0xa1, + 0x84, 0xcd, 0xd0, 0x1b, 0x31, 0xa9, 0xb6, 0x95, 0x54, 0x51, 0x9b, 0x3e, 0x5b, 0x2c, 0xf4, 0x26, + 0xe4, 0x7d, 0x25, 0x56, 0x6d, 0x9d, 0xb3, 0x91, 0xb6, 0x0a, 0xa4, 0xc5, 0x21, 0x85, 0xfe, 0x8d, + 0x06, 0xd5, 0x7d, 0xc7, 0xf1, 0xa9, 0xef, 0x19, 0x6e, 0x22, 0xeb, 0xdc, 0x83, 0x0c, 0xf5, 0x1d, + 0x8f, 0x48, 0x1f, 0x96, 0xf6, 0x64, 0xe0, 0xf5, 0x19, 0x10, 0x0b, 0x1c, 0x7a, 0x15, 0xb2, 0x1e, + 0x19, 0x5b, 0x8e, 0x2d, 0x45, 0x2a, 0x2b, 0x2a, 0xcc, 0xa1, 0x58, 0x62, 0xf5, 0x06, 0x6c, 0x46, + 0xa4, 0x49, 0x62, 0x16, 0xfd, 0x00, 0x6e, 0xb4, 0x69, 0xc0, 0xc4, 0x25, 0x66, 0x12, 0xad, 0xf4, + 0x1f, 0xc3, 0x4e, 0x9c, 0x4b, 0x22, 0x27, 0xe9, 0x50, 0x3c, 0x8d, 0x70, 0xe1, 0x46, 0xca, 0xe1, + 0x39, 0x98, 0xfe, 0x01, 0x94, 0x1b, 0x93, 0x89, 0x33, 0x6a, 0x1f, 0x24, 0x12, 0xb5, 0x0b, 0x95, + 0x60, 0x79, 0x22, 0x19, 0xcb, 0x90, 0xb2, 0x84, 0x64, 0x69, 0x9c, 0xb2, 0x4c, 0xfd, 0x73, 0xa8, + 0x1c, 0x12, 0x5f, 0xf8, 0x2f, 0x49, 0x44, 0xdc, 0x84, 0x1c, 0xf7, 0xfa, 0x30, 0xe0, 0xba, 0xc1, + 0xbf, 0xdb, 0xa6, 0xfe, 0x2b, 0x0d, 0xaa, 0x21, 0xef, 0x44, 0xd2, 0x5e, 0x33, 0xde, 0x32, 0xd4, + 0x37, 0x7c, 0x2a, 0xc3, 0xad, 0x2a, 0x38, 0x72, 0x92, 0x3e, 0x83, 0x63, 0x81, 0xd6, 0x47, 0x50, + 0xe9, 0x4d, 0x5f, 0x40, 0xd5, 0xeb, 0x08, 0xa3, 0x7f, 0x04, 0xd5, 0x70, 0x93, 0x44, 0x31, 0xfd, + 0x13, 0xd8, 0x3a, 0x24, 0x7e, 0x63, 0x32, 0xe1, 0x4c, 0x68, 0x22, 0x51, 0xdf, 0x87, 0x1a, 0xf9, + 0x6a, 0x34, 0x99, 0x9a, 0x64, 0xe8, 0x3b, 0x97, 0xa7, 0xd4, 0x77, 0x6c, 0x32, 0xe4, 0x02, 0x52, + 0x19, 0x95, 0x3b, 0x12, 0x3f, 0x50, 0x68, 0xb1, 0x9b, 0x7e, 0x01, 0xdb, 0xf3, 0xbb, 0x27, 0xf2, + 0xdb, 0x7f, 0x41, 0x36, 0xd8, 0x6d, 0x7d, 0xd1, 0x56, 0x12, 0xa9, 0x7f, 0xc1, 0x03, 0x44, 0xa6, + 0x85, 0x24, 0x7a, 0xde, 0x06, 0x10, 0xc9, 0x64, 0x78, 0x41, 0x66, 0x5c, 0xb3, 0x22, 0xce, 0x0b, + 0xc8, 0x13, 0x32, 0xd3, 0xff, 0xa4, 0xc1, 0x66, 0x64, 0x83, 0x44, 0xaa, 0x84, 0xd9, 0x2c, 0xf5, + 0xac, 0x6c, 0x86, 0xee, 0x43, 0x76, 0x22, 0xb8, 0x8a, 0x30, 0x2c, 0x2a, 0xba, 0x1e, 0x61, 0xdc, + 0x04, 0x8e, 0x51, 0xd1, 0x89, 0x71, 0x45, 0x68, 0x2d, 0xcd, 0x0d, 0x13, 0xa3, 0x12, 0x38, 0xfd, + 0x47, 0xdc, 0x09, 0x62, 0x83, 0xfd, 0x59, 0xb2, 0x54, 0x81, 0x6e, 0x81, 0xb4, 0x44, 0x78, 0x34, + 0x73, 0x02, 0x20, 0xce, 0x26, 0xea, 0x8f, 0x0c, 0x5b, 0xec, 0x41, 0x93, 0x6e, 0x40, 0x7d, 0xc3, + 0xf3, 0x23, 0xb6, 0xcf, 0x71, 0xc0, 0x13, 0x32, 0x63, 0x17, 0xd6, 0xc4, 0xba, 0xb4, 0x7c, 0x6e, + 0x8d, 0x0c, 0x16, 0x1f, 0x68, 0x17, 0x36, 0x88, 0x6d, 0xf2, 0x05, 0x69, 0xbe, 0x20, 0x4b, 0x6c, + 0x93, 0x79, 0xea, 0x5b, 0x0d, 0xb6, 0xe6, 0xe4, 0x49, 0xe4, 0xab, 0x07, 0xb0, 0x21, 0x34, 0x54, + 0x71, 0x17, 0x77, 0x96, 0x42, 0xa3, 0x57, 0x61, 0x43, 0x78, 0x84, 0x65, 0x8d, 0x45, 0x47, 0x28, + 0xa4, 0xfe, 0x18, 0x76, 0x0f, 0x89, 0xdf, 0x14, 0x45, 0x4c, 0xd3, 0xb1, 0xcf, 0xac, 0x71, 0xa2, + 0xbc, 0x4d, 0xa1, 0xb6, 0xc8, 0x27, 0x91, 0x8e, 0xaf, 0xc1, 0x86, 0xac, 0xa9, 0x64, 0x40, 0x56, + 0x94, 0xe4, 0x92, 0x3b, 0x56, 0x78, 0xfd, 0x4b, 0xd8, 0xed, 0x4d, 0x5f, 0x5c, 0xf8, 0xff, 0x64, + 0xcb, 0x8f, 0xa1, 0xb6, 0xb8, 0x65, 0xa2, 0x34, 0xf8, 0x7b, 0x0d, 0xb2, 0xc7, 0xe4, 0xf2, 0x94, + 0x78, 0x08, 0x41, 0xda, 0x36, 0x2e, 0x45, 0x35, 0x98, 0xc7, 0xfc, 0x37, 0x0b, 0xbe, 0x4b, 0x8e, + 0x8d, 0x44, 0xb7, 0x00, 0xb4, 0x4d, 0x86, 0x74, 0x09, 0xf1, 0x86, 0x53, 0x6f, 0x22, 0xfc, 0x9b, + 0xc7, 0x39, 0x06, 0x38, 0xf1, 0x26, 0x14, 0xbd, 0x0c, 0x85, 0xd1, 0xc4, 0x22, 0xb6, 0x2f, 0xd0, + 0x69, 0x8e, 0x06, 0x01, 0xe2, 0x04, 0xff, 0x0d, 0x15, 0xe1, 0xfe, 0xa1, 0xeb, 0x59, 0x8e, 0x67, + 0xf9, 0xb3, 0x5a, 0x86, 0x07, 0x71, 0x59, 0x80, 0x7b, 0x12, 0xaa, 0x7f, 0xc4, 0xb3, 0x8b, 0x10, + 0x32, 0xd1, 0x11, 0xd2, 0xff, 0xa2, 0x01, 0x8a, 0xb2, 0x48, 0x98, 0xa1, 0x36, 0x84, 0xe6, 0x2a, + 0xea, 0x8b, 0x82, 0x5c, 0x70, 0xc5, 0x0a, 0xb9, 0x24, 0x43, 0x45, 0xc9, 0x54, 0x86, 0x7a, 0x13, + 0x0a, 0xc4, 0x1f, 0x99, 0x43, 0x49, 0x9a, 0x5e, 0x42, 0x0a, 0x8c, 0xe0, 0x48, 0x68, 0xd0, 0x83, + 0x3c, 0x3b, 0x31, 0xfc, 0xa2, 0x45, 0x77, 0x21, 0xcd, 0xcc, 0x2c, 0xa5, 0x9e, 0x3f, 0x52, 0x1c, + 0x83, 0x5e, 0x81, 0xa2, 0xe9, 0x3c, 0xb5, 0x87, 0x94, 0x8c, 0x1c, 0xdb, 0xa4, 0xd2, 0x73, 0x05, + 0x06, 0xeb, 0x0b, 0x90, 0xfe, 0xbb, 0x34, 0xec, 0x88, 0xe3, 0xfa, 0x31, 0x31, 0x3c, 0xff, 0x94, + 0x18, 0x7e, 0xa2, 0xa8, 0xfd, 0x7e, 0x13, 0xf7, 0x1e, 0x00, 0x17, 0x9c, 0x69, 0xa1, 0x92, 0xb7, + 0xac, 0xb5, 0x03, 0xfd, 0x71, 0x9e, 0x91, 0xb0, 0x4f, 0x8a, 0xde, 0x81, 0x92, 0x4b, 0x6c, 0xd3, + 0xb2, 0xc7, 0x72, 0x49, 0x66, 0x49, 0x9a, 0x29, 0x4a, 0x12, 0xb1, 0xe4, 0x1e, 0x94, 0x4e, 0x67, + 0x3e, 0xa1, 0xc3, 0xa7, 0x9e, 0xe5, 0xfb, 0xc4, 0xae, 0x65, 0xb9, 0x71, 0x8a, 0x1c, 0xf8, 0x99, + 0x80, 0xb1, 0x1b, 0x4f, 0x10, 0x79, 0xc4, 0x30, 0x6b, 0x1b, 0xe2, 0x91, 0xc5, 0x21, 0x98, 0x18, + 0xec, 0x91, 0x55, 0xbc, 0x20, 0xb3, 0x90, 0x45, 0x4e, 0xd8, 0x97, 0xc1, 0x14, 0x87, 0x5b, 0x90, + 0xe7, 0x24, 0x9c, 0x41, 0x5e, 0x9c, 0x1c, 0x06, 0xe0, 0xeb, 0x5f, 0x83, 0xaa, 0xe1, 0xba, 0x9e, + 0xf3, 0x95, 0x75, 0x69, 0xf8, 0x64, 0x48, 0xad, 0xaf, 0x49, 0x0d, 0x38, 0x4d, 0x25, 0x02, 0xef, + 0x5b, 0x5f, 0x13, 0xb4, 0x07, 0x39, 0xcb, 0xf6, 0x89, 0x77, 0x65, 0x4c, 0x6a, 0x45, 0x6e, 0x39, + 0x14, 0xbe, 0x3d, 0xda, 0x12, 0x83, 0x03, 0x9a, 0x38, 0x6b, 0xb6, 0x65, 0xad, 0xb4, 0xc0, 0xfa, + 0x09, 0x99, 0x51, 0x76, 0xe0, 0x7d, 0xe2, 0x5d, 0xd6, 0xca, 0x1c, 0xcd, 0x7f, 0x7f, 0x92, 0xce, + 0x15, 0xaa, 0x45, 0xfd, 0x1c, 0xa0, 0x79, 0x6e, 0xd8, 0x63, 0xc2, 0x4c, 0x76, 0x8d, 0x78, 0x7b, + 0x1f, 0x0a, 0x23, 0x4e, 0x3f, 0xe4, 0xef, 0xc9, 0x14, 0x7f, 0x4f, 0xee, 0xee, 0xa9, 0x17, 0x32, + 0xcb, 0x50, 0x82, 0x1f, 0x7f, 0x57, 0xc2, 0x28, 0xf8, 0xad, 0x3f, 0x84, 0xf2, 0xc0, 0x33, 0x6c, + 0x7a, 0x46, 0x3c, 0x11, 0xea, 0xcf, 0xdf, 0x4d, 0x7f, 0x0b, 0x32, 0xc7, 0xc4, 0x1b, 0xf3, 0x27, + 0x90, 0x6f, 0x78, 0x63, 0xe2, 0x4b, 0xe2, 0x85, 0xd8, 0x13, 0x58, 0xfd, 0x08, 0x0a, 0x7d, 0x77, + 0x62, 0xc9, 0xab, 0x1e, 0xbd, 0x06, 0x59, 0xd7, 0x99, 0x58, 0xa3, 0x99, 0x7c, 0xf8, 0x6e, 0x0a, + 0x83, 0x36, 0xcf, 0xc9, 0xe8, 0xa2, 0xc7, 0x11, 0x58, 0x12, 0x30, 0x13, 0x71, 0x0b, 0xb2, 0x13, + 0x5f, 0xc4, 0xfc, 0xb7, 0xfe, 0x9b, 0x75, 0xd8, 0x5d, 0x38, 0x39, 0x89, 0x52, 0xca, 0x3b, 0x81, + 0xd9, 0xb8, 0xc6, 0xa9, 0x68, 0x61, 0x1d, 0xda, 0x5f, 0xd9, 0x8b, 0xfb, 0xe2, 0x03, 0xa8, 0xf8, + 0xd2, 0x5e, 0xc3, 0xb9, 0xf3, 0x24, 0x77, 0x9a, 0x37, 0x26, 0x2e, 0xfb, 0xf3, 0xc6, 0x9d, 0xab, + 0x56, 0xd2, 0xf3, 0xd5, 0x0a, 0x7a, 0x0f, 0x8a, 0x12, 0x49, 0x5c, 0x67, 0x74, 0xce, 0xd3, 0x31, + 0x3b, 0xfd, 0x73, 0x46, 0x6d, 0x31, 0x14, 0x2e, 0x78, 0xe1, 0x07, 0xcb, 0x65, 0xc2, 0xd0, 0x42, + 0x8d, 0xec, 0x12, 0xc7, 0x81, 0x20, 0xe8, 0x89, 0xe4, 0x94, 0xb9, 0x64, 0xee, 0xe3, 0xc7, 0x2a, + 0xe8, 0x50, 0x70, 0x8f, 0x62, 0x81, 0x41, 0x8f, 0xa0, 0x48, 0x99, 0xc3, 0x86, 0x32, 0xb5, 0xe4, + 0x38, 0xa5, 0xf4, 0x53, 0xc4, 0x95, 0xb8, 0x40, 0xc3, 0x0f, 0xfd, 0x0c, 0x2a, 0x0d, 0x7a, 0x21, + 0xd1, 0x3f, 0x5c, 0x2a, 0xd3, 0x7f, 0xa6, 0x41, 0x35, 0xdc, 0x28, 0xe1, 0x1b, 0xb6, 0x64, 0x93, + 0xa7, 0xc3, 0x78, 0xe5, 0x58, 0xb0, 0xc9, 0x53, 0xac, 0xdc, 0x71, 0x17, 0x8a, 0x8c, 0x86, 0x5f, + 0xb1, 0x96, 0x29, 0x6e, 0xd8, 0x34, 0x06, 0x9b, 0x3c, 0x65, 0x66, 0x6c, 0x9b, 0x54, 0xff, 0xa5, + 0x06, 0x08, 0x13, 0xd7, 0xf1, 0xfc, 0xe4, 0x4a, 0xeb, 0x90, 0x9e, 0x90, 0x33, 0x7f, 0x85, 0xca, + 0x1c, 0x87, 0xee, 0x43, 0xc6, 0xb3, 0xc6, 0xe7, 0xfe, 0x8a, 0x4e, 0x83, 0x40, 0xea, 0x4d, 0xd8, + 0x9a, 0x13, 0x26, 0x51, 0x3d, 0xf2, 0x8d, 0x06, 0xdb, 0x0d, 0x7a, 0xb1, 0x6f, 0xf8, 0xa3, 0xf3, + 0x1f, 0xdc, 0x93, 0xac, 0x48, 0x11, 0x71, 0x26, 0xba, 0x3e, 0xeb, 0xbc, 0xeb, 0x03, 0x1c, 0xd4, + 0xe4, 0x1d, 0xa9, 0x2e, 0x6c, 0x70, 0x29, 0xda, 0x07, 0x8b, 0x2e, 0xd3, 0x9e, 0xef, 0xb2, 0xd4, + 0x82, 0xcb, 0xce, 0xe0, 0x46, 0x4c, 0xbd, 0x44, 0xf1, 0xf3, 0x32, 0xac, 0x2b, 0xfe, 0xec, 0xd9, + 0x17, 0x9e, 0x8b, 0xf6, 0x01, 0x66, 0x18, 0xdd, 0x65, 0x39, 0x8a, 0x39, 0xe3, 0x05, 0x2d, 0x79, + 0xed, 0x5a, 0x9f, 0xd5, 0xa4, 0x8b, 0x3b, 0x26, 0x8a, 0x81, 0xff, 0x87, 0x62, 0xf4, 0x72, 0x63, + 0x95, 0xa2, 0x78, 0x01, 0x85, 0x5d, 0x38, 0x61, 0xfb, 0x32, 0x07, 0x87, 0x2d, 0xc3, 0x7b, 0x50, + 0x62, 0xef, 0x9e, 0x90, 0x4c, 0x9c, 0xaa, 0x22, 0xb1, 0xcd, 0x80, 0x48, 0x7f, 0x04, 0x80, 0xc9, + 0xc8, 0xf1, 0xcc, 0x9e, 0x61, 0x79, 0xa8, 0x0a, 0xeb, 0xec, 0x99, 0x24, 0x6a, 0x5e, 0xf6, 0x93, + 0x3d, 0xa9, 0xae, 0x8c, 0xc9, 0x94, 0xc8, 0xc5, 0xe2, 0x43, 0xff, 0x57, 0x06, 0x20, 0xec, 0x75, + 0xcc, 0xf5, 0x63, 0xb4, 0xb9, 0x7e, 0x0c, 0xaa, 0x43, 0x6e, 0x64, 0xb8, 0xc6, 0x88, 0x15, 0xb4, + 0xb2, 0x62, 0x56, 0xdf, 0xe8, 0x25, 0xc8, 0x1b, 0x57, 0x86, 0x35, 0x31, 0x4e, 0x27, 0x84, 0x47, + 0x5b, 0x1a, 0x87, 0x00, 0x56, 0x55, 0xc8, 0xe8, 0x12, 0xe1, 0x98, 0xe6, 0xe1, 0x28, 0x53, 0x2d, + 0x8f, 0x47, 0xf4, 0x06, 0x20, 0x2a, 0xeb, 0x1d, 0x6a, 0x1b, 0xae, 0x24, 0xcc, 0x70, 0xc2, 0xaa, + 0xc4, 0xf4, 0x6d, 0xc3, 0x15, 0xd4, 0x6f, 0xc3, 0xb6, 0x47, 0x46, 0xc4, 0xba, 0x8a, 0xd1, 0x67, + 0x39, 0x3d, 0x0a, 0x70, 0xe1, 0x8a, 0xdb, 0x00, 0xa1, 0xa9, 0x79, 0x82, 0x2e, 0xe1, 0x7c, 0x60, + 0x65, 0xb4, 0x07, 0x5b, 0x86, 0xeb, 0x4e, 0x66, 0x31, 0x7e, 0x39, 0x4e, 0xb7, 0xa9, 0x50, 0x21, + 0xbb, 0x5d, 0xd8, 0xb0, 0xe8, 0xf0, 0x74, 0x4a, 0x67, 0xbc, 0x04, 0xca, 0xe1, 0xac, 0x45, 0xf7, + 0xa7, 0x74, 0xc6, 0xee, 0xa1, 0x29, 0x25, 0x66, 0xb4, 0xf2, 0xc9, 0x31, 0x00, 0x2f, 0x79, 0x16, + 0x2a, 0xb4, 0xc2, 0x92, 0x0a, 0x2d, 0x5e, 0x82, 0x15, 0x17, 0x4b, 0xb0, 0xf9, 0x22, 0xae, 0x14, + 0x2f, 0xe2, 0xe6, 0x2a, 0xb4, 0x72, 0xac, 0x42, 0x8b, 0x96, 0x5d, 0x95, 0x6b, 0x94, 0x5d, 0x6f, + 0x01, 0x8c, 0xdc, 0xe9, 0x70, 0x4a, 0x8d, 0x31, 0xa1, 0xb5, 0x2a, 0x3f, 0x2a, 0x55, 0x15, 0xe5, + 0x2a, 0xda, 0x70, 0x7e, 0xe4, 0x4e, 0x4f, 0x38, 0x09, 0x7a, 0x04, 0x25, 0xb6, 0xf1, 0xd0, 0x72, + 0x86, 0x9e, 0xe1, 0x13, 0x5a, 0xdb, 0x5c, 0xb1, 0xa6, 0xc0, 0xc8, 0xda, 0x0e, 0x66, 0x44, 0xe8, + 0x3d, 0x28, 0x33, 0x85, 0x49, 0xb8, 0x0c, 0xad, 0x58, 0x56, 0xe4, 0x74, 0x6a, 0xdd, 0xbb, 0x50, + 0x74, 0xdc, 0xe1, 0xc4, 0xf0, 0x89, 0x3d, 0xb2, 0x08, 0xad, 0x6d, 0xad, 0xda, 0xcc, 0x71, 0x8f, + 0x14, 0x91, 0x3e, 0x81, 0x1b, 0x3c, 0xe4, 0x5f, 0xf4, 0x81, 0x20, 0xfb, 0x86, 0xa9, 0x67, 0xf7, + 0x0d, 0x1f, 0xc3, 0x4e, 0x7c, 0xb7, 0x44, 0xd9, 0xe3, 0x8f, 0x1a, 0x6c, 0xf7, 0x47, 0x86, 0xcf, + 0x1e, 0xcc, 0xc9, 0x5b, 0x5e, 0xcf, 0x6a, 0xeb, 0x5c, 0xb7, 0xf5, 0x1e, 0x79, 0xf3, 0xa4, 0x57, + 0xbf, 0x79, 0xf4, 0x16, 0xdc, 0x88, 0xc9, 0x9b, 0xb4, 0x49, 0x7f, 0x48, 0xfc, 0xc3, 0x66, 0xdf, + 0x38, 0x23, 0x3d, 0xc7, 0xb2, 0x13, 0x79, 0x4b, 0x27, 0xb0, 0x13, 0xe7, 0x92, 0xe8, 0x82, 0x62, + 0x89, 0xc4, 0x38, 0x23, 0x43, 0x97, 0xf1, 0x90, 0x06, 0xcc, 0x53, 0xc5, 0x54, 0x3f, 0x83, 0xda, + 0x89, 0x6b, 0x1a, 0x3e, 0x79, 0x41, 0x79, 0x9f, 0xb7, 0x8f, 0x03, 0x37, 0x97, 0xec, 0x93, 0x48, + 0xa3, 0xfb, 0x50, 0x66, 0x77, 0xfb, 0xc2, 0x6e, 0xec, 0xc6, 0x0f, 0x78, 0xeb, 0x3f, 0xd7, 0x60, + 0xb3, 0x3f, 0xb3, 0x47, 0x2f, 0x10, 0x7a, 0xf7, 0x21, 0x2b, 0x7a, 0x09, 0xf2, 0xc4, 0xc4, 0x1a, + 0x08, 0x02, 0xc7, 0x4b, 0x17, 0x9e, 0xa9, 0x2d, 0xdb, 0x24, 0x5f, 0xc9, 0xcb, 0x44, 0x24, 0xef, + 0x36, 0x83, 0x88, 0xde, 0x63, 0x44, 0x92, 0x1f, 0xb8, 0xd5, 0xf7, 0x5c, 0x79, 0xbe, 0xe0, 0x3d, + 0x98, 0xae, 0x4b, 0x3c, 0xc3, 0x77, 0xbc, 0xef, 0xbf, 0xd7, 0xfa, 0x67, 0x8d, 0x77, 0xf4, 0xc3, + 0x0d, 0x12, 0x29, 0xfc, 0xcc, 0x73, 0x8f, 0x20, 0x6d, 0x12, 0x3a, 0xe2, 0xca, 0x15, 0x31, 0xff, + 0xcd, 0xd8, 0xb3, 0xfc, 0x35, 0xa5, 0xfc, 0x8c, 0x97, 0x15, 0x7b, 0x25, 0x46, 0x9f, 0xe3, 0xb0, + 0xa4, 0xe1, 0xef, 0x49, 0xcb, 0x36, 0xf9, 0x8d, 0xcd, 0xde, 0x93, 0x96, 0x6d, 0xbe, 0xfe, 0xad, + 0x06, 0xf9, 0x60, 0xe8, 0x8a, 0xb2, 0x90, 0xea, 0x3e, 0xa9, 0xae, 0xa1, 0x02, 0x6c, 0x9c, 0x74, + 0x9e, 0x74, 0xba, 0x9f, 0x75, 0xaa, 0x1a, 0xda, 0x86, 0x6a, 0xa7, 0x3b, 0x18, 0xee, 0x77, 0xbb, + 0x83, 0xfe, 0x00, 0x37, 0x7a, 0xbd, 0xd6, 0x41, 0x35, 0x85, 0xb6, 0xa0, 0xd2, 0x1f, 0x74, 0x71, + 0x6b, 0x38, 0xe8, 0x1e, 0xef, 0xf7, 0x07, 0xdd, 0x4e, 0xab, 0xba, 0x8e, 0x6a, 0xb0, 0xdd, 0x38, + 0xc2, 0xad, 0xc6, 0xc1, 0xe7, 0xf3, 0xe4, 0x69, 0x86, 0x69, 0x77, 0x9a, 0xdd, 0xe3, 0x5e, 0x63, + 0xd0, 0xde, 0x3f, 0x6a, 0x0d, 0x3f, 0x6d, 0xe1, 0x7e, 0xbb, 0xdb, 0xa9, 0x66, 0x18, 0x7b, 0xdc, + 0x3a, 0x6c, 0x77, 0x3b, 0x43, 0xb6, 0xcb, 0xe3, 0xee, 0x49, 0xe7, 0xa0, 0x9a, 0x7d, 0xfd, 0x11, + 0x14, 0x22, 0x4f, 0x62, 0x94, 0x83, 0x74, 0xbf, 0xd9, 0xe8, 0x54, 0xd7, 0x50, 0x05, 0x0a, 0x8d, + 0x5e, 0x0f, 0x77, 0xff, 0xaf, 0x7d, 0xdc, 0x18, 0xb4, 0xaa, 0x1a, 0x02, 0xc8, 0x9e, 0xf4, 0x5b, + 0x4f, 0x5a, 0x9f, 0x57, 0x53, 0xaf, 0xf7, 0xa0, 0x3c, 0xaf, 0x3b, 0xd3, 0xa4, 0x7f, 0xd2, 0x6c, + 0xb6, 0xfa, 0x7d, 0xa1, 0xd6, 0xa0, 0x7d, 0xdc, 0xea, 0x9e, 0x0c, 0xc4, 0xba, 0x66, 0xa3, 0xd3, + 0x6c, 0x1d, 0x55, 0x53, 0x0c, 0x81, 0x5b, 0xbd, 0xa3, 0x46, 0x93, 0x29, 0xc1, 0x3e, 0x4e, 0x3a, + 0x9d, 0x76, 0xe7, 0xb0, 0x9a, 0x7e, 0xf8, 0xeb, 0x32, 0xa4, 0x7a, 0x07, 0xa8, 0x01, 0x10, 0xf6, + 0xf0, 0xd0, 0xae, 0x30, 0xf3, 0x42, 0x63, 0xb0, 0x5e, 0x5b, 0x44, 0x08, 0x47, 0xeb, 0x6b, 0xe8, + 0x6d, 0x58, 0x1f, 0x50, 0x07, 0xc9, 0x2b, 0x28, 0x9c, 0x5d, 0xd7, 0x37, 0x23, 0x10, 0x45, 0xfd, + 0x40, 0x7b, 0x5b, 0x43, 0x1f, 0x42, 0x3e, 0x98, 0x58, 0xa2, 0x1d, 0x41, 0x15, 0x9f, 0xed, 0xd6, + 0x77, 0x17, 0xe0, 0xc1, 0x8e, 0xc7, 0x50, 0x9e, 0x9f, 0x79, 0xa2, 0x5b, 0x82, 0x78, 0xe9, 0x3c, + 0xb5, 0xfe, 0xd2, 0x72, 0x64, 0xc0, 0xee, 0x7d, 0xd8, 0x90, 0x73, 0x49, 0x24, 0xe3, 0x6c, 0x7e, + 0xca, 0x59, 0xbf, 0x11, 0x83, 0x06, 0x2b, 0xff, 0x17, 0x72, 0x6a, 0x48, 0x88, 0x6e, 0x04, 0x26, + 0x8a, 0x4e, 0xe9, 0xea, 0x3b, 0x71, 0x70, 0x74, 0xb1, 0x9a, 0xb6, 0xa9, 0xc5, 0xb1, 0x11, 0x9f, + 0x5a, 0x1c, 0x1f, 0xca, 0xe9, 0x6b, 0xe8, 0x10, 0x8a, 0xd1, 0x51, 0x17, 0xba, 0x19, 0x6c, 0x13, + 0x1f, 0xbe, 0xd5, 0xeb, 0xcb, 0x50, 0x51, 0x5b, 0xce, 0x17, 0x08, 0xca, 0x96, 0x4b, 0x8b, 0x14, + 0x65, 0xcb, 0xe5, 0x35, 0x85, 0xbe, 0x86, 0x06, 0x50, 0x89, 0x75, 0x71, 0xd0, 0x4b, 0x2a, 0x35, + 0x2c, 0x6b, 0x8b, 0xd6, 0x6f, 0xaf, 0xc0, 0xc6, 0x03, 0x26, 0x98, 0x29, 0xa1, 0xd0, 0xa2, 0x73, + 0xd7, 0x41, 0x7d, 0x77, 0x01, 0x1e, 0x48, 0xb5, 0x0f, 0xa5, 0x43, 0xe2, 0xf7, 0x3c, 0x72, 0x95, + 0x9c, 0xc7, 0x63, 0xce, 0x23, 0x9c, 0x6b, 0xa1, 0x7a, 0x8c, 0x36, 0x32, 0xec, 0x7a, 0x16, 0x9f, + 0x03, 0x28, 0x44, 0x86, 0x45, 0x48, 0x9e, 0xac, 0xc5, 0x79, 0x56, 0xfd, 0xe6, 0x12, 0x4c, 0xc0, + 0xe5, 0x43, 0xc8, 0xa9, 0x66, 0x89, 0x0a, 0x9e, 0x58, 0x97, 0x46, 0x05, 0x4f, 0xbc, 0xa7, 0xa2, + 0xaf, 0xff, 0x22, 0xa5, 0xa1, 0x43, 0x28, 0x44, 0xda, 0x0a, 0x4a, 0x8a, 0xc5, 0xb6, 0x87, 0x92, + 0x62, 0x49, 0x0f, 0x42, 0x30, 0xfa, 0x04, 0x4a, 0x73, 0x4f, 0x6f, 0x65, 0x96, 0x65, 0xed, 0x86, + 0xfa, 0xad, 0xa5, 0xb8, 0x40, 0xa9, 0x3e, 0x54, 0xe3, 0x8f, 0x5d, 0x74, 0x3b, 0xba, 0xff, 0x22, + 0xc7, 0x3b, 0xab, 0xd0, 0x51, 0xa6, 0xf1, 0xe9, 0x95, 0x62, 0xba, 0x62, 0x3a, 0xa6, 0x98, 0xae, + 0x1a, 0x7a, 0x09, 0xa6, 0xf1, 0x51, 0x91, 0x62, 0xba, 0x62, 0x6a, 0xa5, 0x98, 0xae, 0x9a, 0x30, + 0xe9, 0x6b, 0xcc, 0x94, 0x73, 0x25, 0xab, 0x32, 0xe5, 0xb2, 0xba, 0x5b, 0x99, 0x72, 0x69, 0x8d, + 0x2b, 0x8e, 0xf5, 0x7c, 0xc5, 0xa9, 0x8e, 0xf5, 0xd2, 0x6a, 0x56, 0x1d, 0xeb, 0xe5, 0x45, 0xaa, + 0xbe, 0x86, 0x3e, 0x85, 0xcd, 0x85, 0x8a, 0x0f, 0x49, 0x8d, 0x56, 0x95, 0x9c, 0xf5, 0x97, 0x57, + 0xe2, 0x23, 0x87, 0xaa, 0x10, 0x56, 0x53, 0xc1, 0xfd, 0xb3, 0x50, 0xea, 0xa9, 0xfb, 0x67, 0xb1, + 0xf2, 0x92, 0x09, 0xe2, 0x00, 0x0a, 0x91, 0x2a, 0x05, 0x85, 0xd7, 0x55, 0xac, 0x32, 0xaa, 0xdf, + 0x5c, 0x82, 0x51, 0x9c, 0xf6, 0x5f, 0xfd, 0xfb, 0x1f, 0x72, 0xda, 0x5f, 0xbf, 0xbb, 0xa3, 0xfd, + 0xed, 0xbb, 0x3b, 0xda, 0x3f, 0xbe, 0xbb, 0xa3, 0xfd, 0xf6, 0x9f, 0x77, 0xd6, 0xa0, 0xea, 0x78, + 0xe3, 0x3d, 0xdf, 0xba, 0xb8, 0xda, 0xbb, 0xb8, 0xe2, 0xff, 0x6e, 0x76, 0x9a, 0xe5, 0x7f, 0xde, + 0xfd, 0x77, 0x00, 0x00, 0x00, 0xff, 0xff, 0x1c, 0x00, 0xe0, 0xdd, 0xcd, 0x26, 0x00, 0x00, } diff --git a/proto/pdpb.proto b/proto/pdpb.proto index 79a7b897f..68f30b9b1 100644 --- a/proto/pdpb.proto +++ b/proto/pdpb.proto @@ -311,11 +311,13 @@ message Merge { message SplitRegion { CheckPolicy policy = 1; + repeated bytes keys = 2; } enum CheckPolicy { SCAN = 0; APPROXIMATE = 1; + USEKEY = 2; } message RegionHeartbeatResponse {