diff --git a/pkg/brpb/brpb.pb.go b/pkg/brpb/brpb.pb.go index 1c34bf72f..432d9607f 100644 --- a/pkg/brpb/brpb.pb.go +++ b/pkg/brpb/brpb.pb.go @@ -32,6 +32,69 @@ var _ = math.Inf // proto package needs to be updated. const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package +type PrepareSnapshotBackupRequestType int32 + +const ( + // Update the lease of suspending some commands (Which may impact the + // disk snapshot backup) to be proposed. + // As long as the lease is kept, those commands may not be proposed. + // If the client has gone, the lease will be destroyed after its TTL. + PrepareSnapshotBackupRequestType_UpdateLease PrepareSnapshotBackupRequestType = 0 + // Wait a region apply to the last index. + PrepareSnapshotBackupRequestType_WaitApply PrepareSnapshotBackupRequestType = 1 + // Hint before closing the stream. Server will go back to normal after this. + // This should also return a final "UpdateLeaseResult" to the client, which + // indices whether the last lease is valid. + PrepareSnapshotBackupRequestType_Finish PrepareSnapshotBackupRequestType = 2 +) + +var PrepareSnapshotBackupRequestType_name = map[int32]string{ + 0: "UpdateLease", + 1: "WaitApply", + 2: "Finish", +} + +var PrepareSnapshotBackupRequestType_value = map[string]int32{ + "UpdateLease": 0, + "WaitApply": 1, + "Finish": 2, +} + +func (x PrepareSnapshotBackupRequestType) String() string { + return proto.EnumName(PrepareSnapshotBackupRequestType_name, int32(x)) +} + +func (PrepareSnapshotBackupRequestType) EnumDescriptor() ([]byte, []int) { + return fileDescriptor_483d1f48d58a4885, []int{0} +} + +type PrepareSnapshotBackupEventType int32 + +const ( + // A region has finished wait apply. + PrepareSnapshotBackupEventType_WaitApplyDone PrepareSnapshotBackupEventType = 0 + // A lease has been updated. + PrepareSnapshotBackupEventType_UpdateLeaseResult PrepareSnapshotBackupEventType = 1 +) + +var PrepareSnapshotBackupEventType_name = map[int32]string{ + 0: "WaitApplyDone", + 1: "UpdateLeaseResult", +} + +var PrepareSnapshotBackupEventType_value = map[string]int32{ + "WaitApplyDone": 0, + "UpdateLeaseResult": 1, +} + +func (x PrepareSnapshotBackupEventType) String() string { + return proto.EnumName(PrepareSnapshotBackupEventType_name, int32(x)) +} + +func (PrepareSnapshotBackupEventType) EnumDescriptor() ([]byte, []int) { + return fileDescriptor_483d1f48d58a4885, []int{1} +} + // sst files or log files compression algorithm // for log files, unknown means not use compression algorithm type CompressionType int32 @@ -62,7 +125,7 @@ func (x CompressionType) String() string { } func (CompressionType) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{0} + return fileDescriptor_483d1f48d58a4885, []int{2} } // BackupMpde represents the mode of this whole backup request to the cluster. @@ -95,7 +158,7 @@ func (x BackupMode) String() string { } func (BackupMode) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{1} + return fileDescriptor_483d1f48d58a4885, []int{3} } type MetaVersion int32 @@ -120,7 +183,7 @@ func (x MetaVersion) String() string { } func (MetaVersion) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{2} + return fileDescriptor_483d1f48d58a4885, []int{4} } type FileType int32 @@ -145,7 +208,151 @@ func (x FileType) String() string { } func (FileType) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{3} + return fileDescriptor_483d1f48d58a4885, []int{5} +} + +type PrepareSnapshotBackupRequest struct { + // The type of the request. + Ty PrepareSnapshotBackupRequestType `protobuf:"varint,1,opt,name=ty,proto3,enum=backup.PrepareSnapshotBackupRequestType" json:"ty,omitempty"` + // The regions related to the request. + // If the request is "UpdateLease" or "Finish", it should be empty. + Regions []*metapb.Region `protobuf:"bytes,2,rep,name=regions,proto3" json:"regions,omitempty"` + // The lease duration for "UpdateLease" request. + LeaseInSeconds uint64 `protobuf:"varint,3,opt,name=lease_in_seconds,json=leaseInSeconds,proto3" json:"lease_in_seconds,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *PrepareSnapshotBackupRequest) Reset() { *m = PrepareSnapshotBackupRequest{} } +func (m *PrepareSnapshotBackupRequest) String() string { return proto.CompactTextString(m) } +func (*PrepareSnapshotBackupRequest) ProtoMessage() {} +func (*PrepareSnapshotBackupRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_483d1f48d58a4885, []int{0} +} +func (m *PrepareSnapshotBackupRequest) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *PrepareSnapshotBackupRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_PrepareSnapshotBackupRequest.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 *PrepareSnapshotBackupRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_PrepareSnapshotBackupRequest.Merge(m, src) +} +func (m *PrepareSnapshotBackupRequest) XXX_Size() int { + return m.Size() +} +func (m *PrepareSnapshotBackupRequest) XXX_DiscardUnknown() { + xxx_messageInfo_PrepareSnapshotBackupRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_PrepareSnapshotBackupRequest proto.InternalMessageInfo + +func (m *PrepareSnapshotBackupRequest) GetTy() PrepareSnapshotBackupRequestType { + if m != nil { + return m.Ty + } + return PrepareSnapshotBackupRequestType_UpdateLease +} + +func (m *PrepareSnapshotBackupRequest) GetRegions() []*metapb.Region { + if m != nil { + return m.Regions + } + return nil +} + +func (m *PrepareSnapshotBackupRequest) GetLeaseInSeconds() uint64 { + if m != nil { + return m.LeaseInSeconds + } + return 0 +} + +type PrepareSnapshotBackupResponse struct { + // The type of the event. + Ty PrepareSnapshotBackupEventType `protobuf:"varint,1,opt,name=ty,proto3,enum=backup.PrepareSnapshotBackupEventType" json:"ty,omitempty"` + // The region bind to the type. + // For "WaitApplyDone". + Region *metapb.Region `protobuf:"bytes,2,opt,name=region,proto3" json:"region,omitempty"` + // The error of the execution. + Error *errorpb.Error `protobuf:"bytes,3,opt,name=error,proto3" json:"error,omitempty"` + // Whether the last lease is valid. + // For "UpdateLease" and "Finish". + LastLeaseIsValid bool `protobuf:"varint,4,opt,name=last_lease_is_valid,json=lastLeaseIsValid,proto3" json:"last_lease_is_valid,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *PrepareSnapshotBackupResponse) Reset() { *m = PrepareSnapshotBackupResponse{} } +func (m *PrepareSnapshotBackupResponse) String() string { return proto.CompactTextString(m) } +func (*PrepareSnapshotBackupResponse) ProtoMessage() {} +func (*PrepareSnapshotBackupResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_483d1f48d58a4885, []int{1} +} +func (m *PrepareSnapshotBackupResponse) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *PrepareSnapshotBackupResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_PrepareSnapshotBackupResponse.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 *PrepareSnapshotBackupResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_PrepareSnapshotBackupResponse.Merge(m, src) +} +func (m *PrepareSnapshotBackupResponse) XXX_Size() int { + return m.Size() +} +func (m *PrepareSnapshotBackupResponse) XXX_DiscardUnknown() { + xxx_messageInfo_PrepareSnapshotBackupResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_PrepareSnapshotBackupResponse proto.InternalMessageInfo + +func (m *PrepareSnapshotBackupResponse) GetTy() PrepareSnapshotBackupEventType { + if m != nil { + return m.Ty + } + return PrepareSnapshotBackupEventType_WaitApplyDone +} + +func (m *PrepareSnapshotBackupResponse) GetRegion() *metapb.Region { + if m != nil { + return m.Region + } + return nil +} + +func (m *PrepareSnapshotBackupResponse) GetError() *errorpb.Error { + if m != nil { + return m.Error + } + return nil +} + +func (m *PrepareSnapshotBackupResponse) GetLastLeaseIsValid() bool { + if m != nil { + return m.LastLeaseIsValid + } + return false } // The message save the metadata of a backup. @@ -217,7 +424,7 @@ func (m *BackupMeta) Reset() { *m = BackupMeta{} } func (m *BackupMeta) String() string { return proto.CompactTextString(m) } func (*BackupMeta) ProtoMessage() {} func (*BackupMeta) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{0} + return fileDescriptor_483d1f48d58a4885, []int{2} } func (m *BackupMeta) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -427,7 +634,7 @@ func (m *BackupRange) Reset() { *m = BackupRange{} } func (m *BackupRange) String() string { return proto.CompactTextString(m) } func (*BackupRange) ProtoMessage() {} func (*BackupRange) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{1} + return fileDescriptor_483d1f48d58a4885, []int{3} } func (m *BackupRange) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -500,7 +707,7 @@ func (m *File) Reset() { *m = File{} } func (m *File) String() string { return proto.CompactTextString(m) } func (*File) ProtoMessage() {} func (*File) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{2} + return fileDescriptor_483d1f48d58a4885, []int{4} } func (m *File) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -637,7 +844,7 @@ func (m *MetaFile) Reset() { *m = MetaFile{} } func (m *MetaFile) String() string { return proto.CompactTextString(m) } func (*MetaFile) ProtoMessage() {} func (*MetaFile) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{3} + return fileDescriptor_483d1f48d58a4885, []int{5} } func (m *MetaFile) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -719,7 +926,7 @@ func (m *PlacementPolicy) Reset() { *m = PlacementPolicy{} } func (m *PlacementPolicy) String() string { return proto.CompactTextString(m) } func (*PlacementPolicy) ProtoMessage() {} func (*PlacementPolicy) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{4} + return fileDescriptor_483d1f48d58a4885, []int{6} } func (m *PlacementPolicy) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -769,7 +976,7 @@ func (m *StatsBlock) Reset() { *m = StatsBlock{} } func (m *StatsBlock) String() string { return proto.CompactTextString(m) } func (*StatsBlock) ProtoMessage() {} func (*StatsBlock) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{5} + return fileDescriptor_483d1f48d58a4885, []int{7} } func (m *StatsBlock) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -824,7 +1031,7 @@ func (m *StatsFile) Reset() { *m = StatsFile{} } func (m *StatsFile) String() string { return proto.CompactTextString(m) } func (*StatsFile) ProtoMessage() {} func (*StatsFile) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{6} + return fileDescriptor_483d1f48d58a4885, []int{8} } func (m *StatsFile) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -880,7 +1087,7 @@ func (m *StatsFileIndex) Reset() { *m = StatsFileIndex{} } func (m *StatsFileIndex) String() string { return proto.CompactTextString(m) } func (*StatsFileIndex) ProtoMessage() {} func (*StatsFileIndex) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{7} + return fileDescriptor_483d1f48d58a4885, []int{9} } func (m *StatsFileIndex) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -972,7 +1179,7 @@ func (m *Schema) Reset() { *m = Schema{} } func (m *Schema) String() string { return proto.CompactTextString(m) } func (*Schema) ProtoMessage() {} func (*Schema) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{8} + return fileDescriptor_483d1f48d58a4885, []int{10} } func (m *Schema) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1069,7 +1276,7 @@ func (m *IDMap) Reset() { *m = IDMap{} } func (m *IDMap) String() string { return proto.CompactTextString(m) } func (*IDMap) ProtoMessage() {} func (*IDMap) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{9} + return fileDescriptor_483d1f48d58a4885, []int{11} } func (m *IDMap) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1125,7 +1332,7 @@ func (m *PitrTableMap) Reset() { *m = PitrTableMap{} } func (m *PitrTableMap) String() string { return proto.CompactTextString(m) } func (*PitrTableMap) ProtoMessage() {} func (*PitrTableMap) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{10} + return fileDescriptor_483d1f48d58a4885, []int{12} } func (m *PitrTableMap) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1188,7 +1395,7 @@ func (m *PitrDBMap) Reset() { *m = PitrDBMap{} } func (m *PitrDBMap) String() string { return proto.CompactTextString(m) } func (*PitrDBMap) ProtoMessage() {} func (*PitrDBMap) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{11} + return fileDescriptor_483d1f48d58a4885, []int{13} } func (m *PitrDBMap) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1251,7 +1458,7 @@ func (m *RawRange) Reset() { *m = RawRange{} } func (m *RawRange) String() string { return proto.CompactTextString(m) } func (*RawRange) ProtoMessage() {} func (*RawRange) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{12} + return fileDescriptor_483d1f48d58a4885, []int{14} } func (m *RawRange) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1313,7 +1520,7 @@ func (m *ClusterIDError) Reset() { *m = ClusterIDError{} } func (m *ClusterIDError) String() string { return proto.CompactTextString(m) } func (*ClusterIDError) ProtoMessage() {} func (*ClusterIDError) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{13} + return fileDescriptor_483d1f48d58a4885, []int{15} } func (m *ClusterIDError) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1372,7 +1579,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_483d1f48d58a4885, []int{14} + return fileDescriptor_483d1f48d58a4885, []int{16} } func (m *Error) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1477,7 +1684,7 @@ func (m *CipherInfo) Reset() { *m = CipherInfo{} } func (m *CipherInfo) String() string { return proto.CompactTextString(m) } func (*CipherInfo) ProtoMessage() {} func (*CipherInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{15} + return fileDescriptor_483d1f48d58a4885, []int{17} } func (m *CipherInfo) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1570,7 +1777,7 @@ func (m *BackupRequest) Reset() { *m = BackupRequest{} } func (m *BackupRequest) String() string { return proto.CompactTextString(m) } func (*BackupRequest) ProtoMessage() {} func (*BackupRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{16} + return fileDescriptor_483d1f48d58a4885, []int{18} } func (m *BackupRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1755,7 +1962,7 @@ func (m *StreamBackupTaskInfo) Reset() { *m = StreamBackupTaskInfo{} } func (m *StreamBackupTaskInfo) String() string { return proto.CompactTextString(m) } func (*StreamBackupTaskInfo) ProtoMessage() {} func (*StreamBackupTaskInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{17} + return fileDescriptor_483d1f48d58a4885, []int{19} } func (m *StreamBackupTaskInfo) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1845,7 +2052,7 @@ func (m *StorageBackend) Reset() { *m = StorageBackend{} } func (m *StorageBackend) String() string { return proto.CompactTextString(m) } func (*StorageBackend) ProtoMessage() {} func (*StorageBackend) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{18} + return fileDescriptor_483d1f48d58a4885, []int{20} } func (m *StorageBackend) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1990,7 +2197,7 @@ func (m *Noop) Reset() { *m = Noop{} } func (m *Noop) String() string { return proto.CompactTextString(m) } func (*Noop) ProtoMessage() {} func (*Noop) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{19} + return fileDescriptor_483d1f48d58a4885, []int{21} } func (m *Noop) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2031,7 +2238,7 @@ func (m *Local) Reset() { *m = Local{} } func (m *Local) String() string { return proto.CompactTextString(m) } func (*Local) ProtoMessage() {} func (*Local) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{20} + return fileDescriptor_483d1f48d58a4885, []int{22} } func (m *Local) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2097,7 +2304,7 @@ func (m *S3) Reset() { *m = S3{} } func (m *S3) String() string { return proto.CompactTextString(m) } func (*S3) ProtoMessage() {} func (*S3) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{21} + return fileDescriptor_483d1f48d58a4885, []int{23} } func (m *S3) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2268,7 +2475,7 @@ func (m *GCS) Reset() { *m = GCS{} } func (m *GCS) String() string { return proto.CompactTextString(m) } func (*GCS) ProtoMessage() {} func (*GCS) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{22} + return fileDescriptor_483d1f48d58a4885, []int{24} } func (m *GCS) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2354,7 +2561,7 @@ func (m *AzureCustomerKey) Reset() { *m = AzureCustomerKey{} } func (m *AzureCustomerKey) String() string { return proto.CompactTextString(m) } func (*AzureCustomerKey) ProtoMessage() {} func (*AzureCustomerKey) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{23} + return fileDescriptor_483d1f48d58a4885, []int{25} } func (m *AzureCustomerKey) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2454,7 +2661,7 @@ func (m *AzureBlobStorage) Reset() { *m = AzureBlobStorage{} } func (m *AzureBlobStorage) String() string { return proto.CompactTextString(m) } func (*AzureBlobStorage) ProtoMessage() {} func (*AzureBlobStorage) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{24} + return fileDescriptor_483d1f48d58a4885, []int{26} } func (m *AzureBlobStorage) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2561,7 +2768,7 @@ func (m *Bucket) Reset() { *m = Bucket{} } func (m *Bucket) String() string { return proto.CompactTextString(m) } func (*Bucket) ProtoMessage() {} func (*Bucket) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{25} + return fileDescriptor_483d1f48d58a4885, []int{27} } func (m *Bucket) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2639,7 +2846,7 @@ func (m *CloudDynamic) Reset() { *m = CloudDynamic{} } func (m *CloudDynamic) String() string { return proto.CompactTextString(m) } func (*CloudDynamic) ProtoMessage() {} func (*CloudDynamic) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{26} + return fileDescriptor_483d1f48d58a4885, []int{28} } func (m *CloudDynamic) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2702,7 +2909,7 @@ func (m *HDFS) Reset() { *m = HDFS{} } func (m *HDFS) String() string { return proto.CompactTextString(m) } func (*HDFS) ProtoMessage() {} func (*HDFS) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{27} + return fileDescriptor_483d1f48d58a4885, []int{29} } func (m *HDFS) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2754,7 +2961,7 @@ func (m *BackupResponse) Reset() { *m = BackupResponse{} } func (m *BackupResponse) String() string { return proto.CompactTextString(m) } func (*BackupResponse) ProtoMessage() {} func (*BackupResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{28} + return fileDescriptor_483d1f48d58a4885, []int{30} } func (m *BackupResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2831,7 +3038,7 @@ func (m *CleanupRequest) Reset() { *m = CleanupRequest{} } func (m *CleanupRequest) String() string { return proto.CompactTextString(m) } func (*CleanupRequest) ProtoMessage() {} func (*CleanupRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{29} + return fileDescriptor_483d1f48d58a4885, []int{31} } func (m *CleanupRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2879,7 +3086,7 @@ func (m *CleanupResponse) Reset() { *m = CleanupResponse{} } func (m *CleanupResponse) String() string { return proto.CompactTextString(m) } func (*CleanupResponse) ProtoMessage() {} func (*CleanupResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{30} + return fileDescriptor_483d1f48d58a4885, []int{32} } func (m *CleanupResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2934,7 +3141,7 @@ func (m *PrepareRequest) Reset() { *m = PrepareRequest{} } func (m *PrepareRequest) String() string { return proto.CompactTextString(m) } func (*PrepareRequest) ProtoMessage() {} func (*PrepareRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{31} + return fileDescriptor_483d1f48d58a4885, []int{33} } func (m *PrepareRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2987,7 +3194,7 @@ func (m *PrepareResponse) Reset() { *m = PrepareResponse{} } func (m *PrepareResponse) String() string { return proto.CompactTextString(m) } func (*PrepareResponse) ProtoMessage() {} func (*PrepareResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{32} + return fileDescriptor_483d1f48d58a4885, []int{34} } func (m *PrepareResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3054,7 +3261,7 @@ func (m *CheckAdminRequest) Reset() { *m = CheckAdminRequest{} } func (m *CheckAdminRequest) String() string { return proto.CompactTextString(m) } func (*CheckAdminRequest) ProtoMessage() {} func (*CheckAdminRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{33} + return fileDescriptor_483d1f48d58a4885, []int{35} } func (m *CheckAdminRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3096,7 +3303,7 @@ func (m *CheckAdminResponse) Reset() { *m = CheckAdminResponse{} } func (m *CheckAdminResponse) String() string { return proto.CompactTextString(m) } func (*CheckAdminResponse) ProtoMessage() {} func (*CheckAdminResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{34} + return fileDescriptor_483d1f48d58a4885, []int{36} } func (m *CheckAdminResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3160,7 +3367,7 @@ func (m *ExternalStorageRestoreRequest) Reset() { *m = ExternalStorageRe func (m *ExternalStorageRestoreRequest) String() string { return proto.CompactTextString(m) } func (*ExternalStorageRestoreRequest) ProtoMessage() {} func (*ExternalStorageRestoreRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{35} + return fileDescriptor_483d1f48d58a4885, []int{37} } func (m *ExternalStorageRestoreRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3227,7 +3434,7 @@ func (m *ExternalStorageRestoreResponse) Reset() { *m = ExternalStorageR func (m *ExternalStorageRestoreResponse) String() string { return proto.CompactTextString(m) } func (*ExternalStorageRestoreResponse) ProtoMessage() {} func (*ExternalStorageRestoreResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{36} + return fileDescriptor_483d1f48d58a4885, []int{38} } func (m *ExternalStorageRestoreResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3269,7 +3476,7 @@ func (m *ExternalStorageSaveRequest) Reset() { *m = ExternalStorageSaveR func (m *ExternalStorageSaveRequest) String() string { return proto.CompactTextString(m) } func (*ExternalStorageSaveRequest) ProtoMessage() {} func (*ExternalStorageSaveRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{37} + return fileDescriptor_483d1f48d58a4885, []int{39} } func (m *ExternalStorageSaveRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3329,7 +3536,7 @@ func (m *ExternalStorageSaveResponse) Reset() { *m = ExternalStorageSave func (m *ExternalStorageSaveResponse) String() string { return proto.CompactTextString(m) } func (*ExternalStorageSaveResponse) ProtoMessage() {} func (*ExternalStorageSaveResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{38} + return fileDescriptor_483d1f48d58a4885, []int{40} } func (m *ExternalStorageSaveResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3376,7 +3583,7 @@ func (m *Metadata) Reset() { *m = Metadata{} } func (m *Metadata) String() string { return proto.CompactTextString(m) } func (*Metadata) ProtoMessage() {} func (*Metadata) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{39} + return fileDescriptor_483d1f48d58a4885, []int{41} } func (m *Metadata) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3478,7 +3685,7 @@ func (m *DataFileGroup) Reset() { *m = DataFileGroup{} } func (m *DataFileGroup) String() string { return proto.CompactTextString(m) } func (*DataFileGroup) ProtoMessage() {} func (*DataFileGroup) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{40} + return fileDescriptor_483d1f48d58a4885, []int{42} } func (m *DataFileGroup) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3595,7 +3802,7 @@ func (m *DataFileInfo) Reset() { *m = DataFileInfo{} } func (m *DataFileInfo) String() string { return proto.CompactTextString(m) } func (*DataFileInfo) ProtoMessage() {} func (*DataFileInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{41} + return fileDescriptor_483d1f48d58a4885, []int{43} } func (m *DataFileInfo) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3768,7 +3975,7 @@ func (m *StreamBackupError) Reset() { *m = StreamBackupError{} } func (m *StreamBackupError) String() string { return proto.CompactTextString(m) } func (*StreamBackupError) ProtoMessage() {} func (*StreamBackupError) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{42} + return fileDescriptor_483d1f48d58a4885, []int{44} } func (m *StreamBackupError) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3826,10 +4033,14 @@ func (m *StreamBackupError) GetStoreId() uint64 { } func init() { + proto.RegisterEnum("backup.PrepareSnapshotBackupRequestType", PrepareSnapshotBackupRequestType_name, PrepareSnapshotBackupRequestType_value) + proto.RegisterEnum("backup.PrepareSnapshotBackupEventType", PrepareSnapshotBackupEventType_name, PrepareSnapshotBackupEventType_value) proto.RegisterEnum("backup.CompressionType", CompressionType_name, CompressionType_value) proto.RegisterEnum("backup.BackupMode", BackupMode_name, BackupMode_value) proto.RegisterEnum("backup.MetaVersion", MetaVersion_name, MetaVersion_value) proto.RegisterEnum("backup.FileType", FileType_name, FileType_value) + proto.RegisterType((*PrepareSnapshotBackupRequest)(nil), "backup.PrepareSnapshotBackupRequest") + proto.RegisterType((*PrepareSnapshotBackupResponse)(nil), "backup.PrepareSnapshotBackupResponse") proto.RegisterType((*BackupMeta)(nil), "backup.BackupMeta") proto.RegisterType((*BackupRange)(nil), "backup.BackupRange") proto.RegisterType((*File)(nil), "backup.File") @@ -3879,227 +4090,240 @@ func init() { func init() { proto.RegisterFile("brpb.proto", fileDescriptor_483d1f48d58a4885) } var fileDescriptor_483d1f48d58a4885 = []byte{ - // 3506 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x5a, 0x5b, 0x6f, 0x24, 0xc7, - 0x75, 0x66, 0xcf, 0x7d, 0xce, 0x5c, 0xd9, 0x7b, 0xd1, 0x88, 0x9b, 0xdd, 0xa5, 0x5a, 0xde, 0x0d, - 0x43, 0xd9, 0xb4, 0x4c, 0xca, 0xb2, 0x12, 0x39, 0x10, 0x78, 0x93, 0x48, 0x2f, 0x77, 0x97, 0x29, - 0x32, 0x0e, 0xa2, 0x97, 0x46, 0x4d, 0x77, 0x0d, 0xd9, 0x66, 0x4f, 0x77, 0xbb, 0xab, 0x67, 0x96, - 0xd4, 0x63, 0xde, 0x85, 0xdc, 0x10, 0x20, 0x7f, 0x20, 0x40, 0x5e, 0x02, 0xe4, 0x27, 0xe4, 0x25, - 0x80, 0x83, 0x04, 0x88, 0x81, 0xbc, 0xe4, 0x31, 0x50, 0x90, 0xff, 0x11, 0x9c, 0x53, 0x55, 0x3d, - 0x3d, 0xb3, 0x24, 0x77, 0xd7, 0x09, 0xfc, 0xc4, 0xae, 0xef, 0x9c, 0xba, 0x9d, 0xfb, 0xa9, 0x21, - 0xc0, 0x30, 0x4d, 0x86, 0x1b, 0x49, 0x1a, 0x67, 0xb1, 0x5d, 0x1b, 0x72, 0xef, 0x62, 0x92, 0xac, - 0x74, 0x2e, 0xa6, 0x69, 0xe2, 0x19, 0x78, 0xa5, 0x23, 0xd2, 0x34, 0xce, 0xb9, 0x56, 0xda, 0x63, - 0x91, 0xf1, 0x7c, 0x64, 0x8b, 0xc8, 0x4b, 0xaf, 0x92, 0x2c, 0x88, 0xa3, 0x1c, 0xbb, 0x7b, 0x16, - 0x9f, 0xc5, 0xf4, 0xf9, 0x43, 0xfc, 0xd2, 0x68, 0x2f, 0x9d, 0xc8, 0x8c, 0x3e, 0x15, 0xe0, 0xfc, - 0x4f, 0x1d, 0x60, 0x87, 0x76, 0x7c, 0x2e, 0x32, 0x6e, 0x3f, 0x04, 0xf0, 0xc2, 0x89, 0xcc, 0x44, - 0xea, 0x06, 0xfe, 0xc0, 0x5a, 0xb5, 0xd6, 0x2a, 0xac, 0xa9, 0x91, 0x43, 0xdf, 0xfe, 0x5d, 0xe8, - 0x19, 0xf2, 0x54, 0xa4, 0x32, 0x88, 0xa3, 0x41, 0x69, 0xd5, 0x5a, 0x6b, 0xb2, 0xae, 0x86, 0x7f, - 0xae, 0x50, 0x5c, 0x67, 0x38, 0xe3, 0x69, 0x11, 0x4f, 0x73, 0x98, 0x93, 0x07, 0x50, 0x37, 0xb4, - 0xf6, 0xaa, 0xb5, 0x56, 0x65, 0x66, 0x68, 0x3b, 0x50, 0x1d, 0x05, 0xa1, 0x90, 0x83, 0xca, 0x6a, - 0x79, 0xad, 0xb5, 0xd9, 0xde, 0x50, 0xe2, 0xd8, 0xf8, 0x32, 0x08, 0x05, 0x53, 0x24, 0xfb, 0x87, - 0x00, 0xf8, 0xe1, 0x06, 0x91, 0x2f, 0x2e, 0x07, 0x9d, 0x55, 0x6b, 0xad, 0xb5, 0xd9, 0x37, 0x8c, - 0x78, 0x0d, 0x62, 0x6e, 0x22, 0xcf, 0x21, 0xb2, 0xd8, 0x1f, 0x42, 0x47, 0x66, 0x3c, 0xcd, 0xf2, - 0x03, 0x55, 0xe9, 0x62, 0x6d, 0x02, 0xcd, 0x99, 0x1e, 0x43, 0x4b, 0x44, 0x7e, 0xce, 0x52, 0x23, - 0x16, 0x10, 0x91, 0x6f, 0x18, 0xd6, 0xa0, 0x2e, 0xbd, 0x73, 0x31, 0xe6, 0x72, 0x50, 0xa7, 0xc3, - 0x75, 0xcd, 0x9e, 0x27, 0x04, 0x33, 0x43, 0xb6, 0xb7, 0xa0, 0xad, 0x3e, 0xf5, 0x11, 0xbb, 0x37, - 0x1c, 0xb1, 0xa5, 0xb8, 0xd4, 0x21, 0x57, 0xa0, 0x19, 0x48, 0x37, 0xe5, 0xaf, 0xdc, 0x8b, 0xe9, - 0xa0, 0xb1, 0x6a, 0xad, 0x35, 0x58, 0x3d, 0x90, 0x8c, 0xbf, 0x7a, 0x36, 0xc5, 0x1b, 0x23, 0x21, - 0xe5, 0xd1, 0x99, 0x90, 0x83, 0x26, 0xed, 0x9e, 0x2f, 0xc7, 0xf8, 0x2b, 0x86, 0x04, 0xd6, 0x4c, - 0xf5, 0x97, 0xb4, 0x3f, 0x83, 0x5e, 0x3e, 0x41, 0x1f, 0xa2, 0x77, 0xc3, 0x21, 0x3a, 0x66, 0x96, - 0x3a, 0x86, 0x0d, 0x15, 0xdf, 0x0f, 0xe5, 0x00, 0x56, 0xad, 0xb5, 0x36, 0xa3, 0x6f, 0xfb, 0x47, - 0xd0, 0xf2, 0xfd, 0x50, 0xad, 0x23, 0xe4, 0xa0, 0x7f, 0xc3, 0x4a, 0xe0, 0xfb, 0xe1, 0xa1, 0xe2, - 0x41, 0x91, 0x2b, 0xb2, 0x9b, 0x0a, 0x39, 0x09, 0xb3, 0xc1, 0x32, 0xd9, 0x40, 0x5b, 0x81, 0x8c, - 0x30, 0xfb, 0x13, 0x68, 0xf1, 0x24, 0xc8, 0x45, 0x6e, 0xaf, 0x5a, 0x6b, 0xdd, 0xcd, 0x3b, 0x1b, - 0xc6, 0xf2, 0xb7, 0x8f, 0x0f, 0xb5, 0xec, 0x19, 0xf0, 0x24, 0x30, 0x7a, 0xd8, 0x82, 0x46, 0x12, - 0x87, 0x81, 0x17, 0x08, 0x39, 0xb8, 0x43, 0xa2, 0x78, 0xcf, 0x1c, 0xe5, 0x38, 0xe4, 0x9e, 0x18, - 0x8b, 0x28, 0x3b, 0x46, 0x86, 0x2b, 0x96, 0x33, 0xda, 0x9f, 0xc0, 0xfd, 0x48, 0xbc, 0x72, 0xbd, - 0x38, 0x0c, 0x39, 0xfa, 0x89, 0x74, 0x45, 0xc4, 0x87, 0xa1, 0xf0, 0x07, 0x77, 0xe9, 0x60, 0x77, - 0x23, 0xf1, 0x6a, 0x37, 0x27, 0xee, 0x2b, 0x9a, 0xd6, 0x49, 0x76, 0x19, 0xa1, 0x4e, 0xee, 0x19, - 0x9d, 0x9c, 0x5e, 0x46, 0xcf, 0xa6, 0xf6, 0x3a, 0xd4, 0xfd, 0xa1, 0x3b, 0xe6, 0x89, 0x1c, 0xdc, - 0xa7, 0x53, 0x2c, 0xe7, 0xa7, 0x08, 0xb2, 0x74, 0x6f, 0xe7, 0x39, 0x4f, 0x58, 0xcd, 0x1f, 0x3e, - 0xe7, 0x89, 0xb4, 0x9f, 0x42, 0x65, 0x1c, 0xfb, 0x62, 0xf0, 0x1e, 0xdd, 0xd0, 0x36, 0x8c, 0xda, - 0xf1, 0x62, 0x5f, 0x30, 0xa2, 0xdb, 0x1f, 0x41, 0x4d, 0xeb, 0x78, 0x40, 0x4b, 0xde, 0x99, 0xe7, - 0x54, 0x6a, 0xd6, 0x2c, 0x68, 0xb0, 0x5a, 0xc4, 0x32, 0xf8, 0x46, 0x0c, 0xde, 0x57, 0x06, 0xab, - 0xa0, 0x93, 0xe0, 0x1b, 0xf1, 0xb3, 0x4a, 0xa3, 0xdc, 0xaf, 0xb0, 0x4a, 0xc2, 0xb3, 0x73, 0xe7, - 0x0c, 0x5a, 0x85, 0x35, 0xec, 0x07, 0xd0, 0x54, 0x1e, 0x71, 0x21, 0xae, 0xc8, 0xcd, 0xdb, 0xac, - 0x41, 0xc0, 0x33, 0x71, 0x65, 0xbf, 0x07, 0x75, 0xf4, 0x04, 0x24, 0x95, 0x88, 0x54, 0x13, 0x91, - 0x8f, 0x84, 0xdc, 0x39, 0xcb, 0x37, 0x3a, 0xa7, 0xf3, 0x2f, 0x25, 0xa8, 0xe0, 0x18, 0x0d, 0x29, - 0xe2, 0x63, 0x41, 0xab, 0x37, 0x19, 0x7d, 0xdb, 0xf7, 0xa1, 0x26, 0xcf, 0xf9, 0xe6, 0x8f, 0x3f, - 0x35, 0x0b, 0xab, 0xd1, 0xfc, 0x71, 0xca, 0x37, 0x1f, 0xa7, 0x32, 0x77, 0x9c, 0xff, 0x1f, 0xb7, - 0x5e, 0x81, 0x86, 0x97, 0x7a, 0x9f, 0x7e, 0x72, 0x19, 0xa7, 0x83, 0x3a, 0x51, 0xf3, 0x31, 0x9e, - 0x2b, 0x8b, 0x33, 0x1e, 0xba, 0x17, 0x53, 0x49, 0x3e, 0x59, 0x61, 0x0d, 0x02, 0x9e, 0x4d, 0x49, - 0xfe, 0x8a, 0x38, 0xbc, 0xca, 0xc8, 0x2b, 0x69, 0x65, 0x82, 0x76, 0x10, 0xb1, 0xbb, 0x50, 0xf2, - 0x46, 0xe4, 0x48, 0x4d, 0x56, 0xf2, 0x46, 0x28, 0x11, 0xd2, 0x54, 0x8b, 0x38, 0xe9, 0x1b, 0x77, - 0xf0, 0x82, 0xe4, 0x1c, 0xe3, 0xed, 0x94, 0x62, 0x61, 0x9b, 0x35, 0x14, 0x70, 0x38, 0x75, 0xbe, - 0x2d, 0x41, 0xc3, 0x78, 0x97, 0xfd, 0x11, 0x00, 0x06, 0x7d, 0x57, 0x69, 0xc0, 0xba, 0x46, 0x03, - 0xcd, 0xb1, 0xe6, 0x95, 0xc8, 0xec, 0xf3, 0x9c, 0xb9, 0x74, 0x1d, 0x33, 0xd2, 0x15, 0x73, 0x21, - 0xb0, 0x95, 0x6f, 0x0f, 0x6c, 0xf3, 0x71, 0xa8, 0xf2, 0x36, 0x71, 0x28, 0x0f, 0x03, 0x6a, 0x4e, - 0xed, 0x66, 0xbb, 0x36, 0xb1, 0x41, 0xcd, 0x34, 0x71, 0xa8, 0xba, 0x5a, 0x36, 0x71, 0xc8, 0x79, - 0x02, 0xbd, 0x05, 0x0f, 0x47, 0xb6, 0x20, 0x1a, 0xc5, 0xda, 0x86, 0xe9, 0xdb, 0x39, 0x02, 0x38, - 0xc9, 0x78, 0x26, 0x77, 0xc2, 0xd8, 0xbb, 0x40, 0x35, 0x25, 0xe7, 0x57, 0x32, 0xf0, 0x78, 0x68, - 0x72, 0x5a, 0x99, 0x81, 0x81, 0x0e, 0x7d, 0xcc, 0x55, 0xbf, 0x90, 0x71, 0xe4, 0x66, 0xe8, 0xf3, - 0xda, 0x30, 0x9b, 0x88, 0x9c, 0x22, 0xe0, 0xfc, 0x04, 0x9a, 0xb4, 0x1a, 0x29, 0x61, 0x1d, 0x6a, - 0x43, 0x5c, 0xd5, 0x28, 0x20, 0x77, 0xe5, 0xd9, 0x86, 0x4c, 0x73, 0x38, 0xff, 0x68, 0x41, 0x37, - 0x9f, 0x99, 0x07, 0xd7, 0xb7, 0xf6, 0x89, 0xf7, 0xa1, 0x81, 0x16, 0xe2, 0x8a, 0xc8, 0x23, 0x97, - 0xa8, 0xb0, 0x3a, 0x8e, 0xf7, 0x23, 0x2f, 0x27, 0xc5, 0x69, 0x40, 0x2e, 0xa1, 0x49, 0x2f, 0xd3, - 0x60, 0xde, 0x9e, 0xaa, 0xf3, 0xf6, 0x84, 0xa2, 0x08, 0xa2, 0x30, 0x88, 0x84, 0x8b, 0xca, 0x27, - 0x5f, 0x68, 0x33, 0x50, 0xd0, 0x1e, 0xcf, 0xb8, 0xf3, 0x67, 0x25, 0xa8, 0x29, 0x9d, 0xa3, 0xf1, - 0xfa, 0x43, 0x2d, 0xd6, 0x92, 0x3f, 0xb4, 0xef, 0x42, 0xb5, 0x28, 0x20, 0x35, 0x98, 0x73, 0x9e, - 0xf2, 0x6d, 0xce, 0x53, 0xb9, 0xdd, 0x79, 0xaa, 0xaf, 0x39, 0xcf, 0xef, 0x41, 0x3f, 0x0b, 0x46, - 0x21, 0x97, 0xe7, 0x6e, 0x2a, 0x92, 0x30, 0xf0, 0xb8, 0xa4, 0x03, 0x77, 0x58, 0x4f, 0xe3, 0x4c, - 0xc3, 0x78, 0x34, 0x89, 0x72, 0x26, 0xf7, 0x6d, 0x33, 0x35, 0xb0, 0x7f, 0x02, 0x2d, 0xfa, 0xd0, - 0xe9, 0xaf, 0x41, 0xfa, 0xba, 0x3f, 0xa7, 0xaf, 0x5c, 0x31, 0x0c, 0x88, 0x95, 0xbe, 0x9d, 0xe7, - 0x50, 0x3d, 0xdc, 0x7b, 0xce, 0x13, 0x3c, 0xe3, 0x24, 0x91, 0x59, 0x2a, 0xf8, 0xb8, 0x60, 0x39, - 0x06, 0x3a, 0xf4, 0x31, 0x00, 0xf9, 0xf1, 0xab, 0x68, 0xc6, 0x52, 0x22, 0x96, 0xf6, 0x0c, 0x3c, - 0xf4, 0x9d, 0x57, 0xd0, 0xc6, 0x84, 0x40, 0xc6, 0x84, 0xab, 0x5e, 0x67, 0x03, 0xdf, 0x83, 0x5a, - 0xe0, 0x63, 0x2e, 0xa1, 0x15, 0x5a, 0x9b, 0x1d, 0x73, 0x4c, 0x3a, 0x08, 0xab, 0x06, 0x3e, 0xce, - 0xfc, 0x01, 0x40, 0xc2, 0xd3, 0x2c, 0xa0, 0x14, 0xa5, 0x5d, 0x75, 0x81, 0xb3, 0xc0, 0xe0, 0x48, - 0x68, 0xe6, 0x99, 0xe8, 0xff, 0xb0, 0xeb, 0xf7, 0xa1, 0x46, 0xba, 0x36, 0x3b, 0xde, 0x2d, 0xa6, - 0x39, 0x73, 0x2b, 0xa6, 0x79, 0x9c, 0x63, 0x68, 0x98, 0x38, 0xf0, 0x1b, 0x26, 0x19, 0x15, 0x35, - 0xcb, 0x26, 0x6a, 0x3a, 0x7b, 0xd0, 0xdd, 0xd5, 0x05, 0xe8, 0xde, 0x3e, 0x16, 0xc1, 0x58, 0x3d, - 0x7a, 0x93, 0x34, 0x15, 0x51, 0xa6, 0x2b, 0x54, 0x33, 0x44, 0x4a, 0x2a, 0x7e, 0x39, 0x11, 0x32, - 0xa3, 0x45, 0x2b, 0xcc, 0x0c, 0x9d, 0x7f, 0xb3, 0xa0, 0xaa, 0x66, 0xf7, 0xa1, 0x3c, 0x96, 0x67, - 0x5a, 0x10, 0xf8, 0x69, 0xef, 0x40, 0x7f, 0x56, 0xf4, 0xba, 0x54, 0x68, 0xd3, 0xfe, 0x05, 0x73, - 0x99, 0x3f, 0xc1, 0xc1, 0x52, 0x5e, 0xf0, 0x1e, 0xfa, 0x6a, 0xd5, 0x0d, 0x68, 0x5c, 0x4c, 0xf5, - 0xdc, 0x0a, 0xcd, 0x5d, 0xce, 0xeb, 0x98, 0x67, 0xe2, 0xca, 0x4c, 0xab, 0x5f, 0x4c, 0x15, 0xff, - 0x16, 0xb4, 0x53, 0x71, 0x16, 0xc4, 0x91, 0x9e, 0x53, 0xa5, 0x39, 0xdd, 0x0d, 0x53, 0xe6, 0x9b, - 0x09, 0x2d, 0xc5, 0x45, 0xc3, 0x9d, 0x06, 0xd4, 0x7c, 0x91, 0xf1, 0x20, 0x74, 0x42, 0x80, 0x5d, - 0xe5, 0xd5, 0xd1, 0x28, 0xb6, 0xbf, 0x80, 0x96, 0x76, 0xfa, 0xec, 0x2a, 0x51, 0x3a, 0xee, 0x6e, - 0x3e, 0xda, 0x98, 0xeb, 0x0a, 0xf6, 0xf3, 0xc1, 0x73, 0x91, 0x9d, 0xc7, 0x3e, 0x03, 0x35, 0xe5, - 0xf4, 0x2a, 0x11, 0x54, 0xf6, 0xab, 0x05, 0x66, 0xfa, 0xd0, 0x71, 0xe4, 0x99, 0xb8, 0x72, 0xbe, - 0xad, 0x41, 0x47, 0x47, 0x6a, 0x25, 0xce, 0x37, 0xf5, 0x09, 0x73, 0x9a, 0x2f, 0xdd, 0xac, 0xf9, - 0xf2, 0xed, 0xf9, 0xbc, 0xf2, 0xe6, 0x7c, 0x5e, 0x7d, 0x2d, 0x9f, 0x3f, 0xc4, 0x1c, 0x95, 0x09, - 0x37, 0x0c, 0xc6, 0x41, 0xa6, 0x33, 0x7a, 0x13, 0x91, 0x23, 0x04, 0xec, 0x55, 0x68, 0x79, 0x71, - 0xa4, 0x0c, 0xc6, 0xbb, 0xa2, 0xa4, 0xde, 0x61, 0x45, 0xc8, 0xfe, 0x02, 0x7a, 0x32, 0x8b, 0x53, - 0x7e, 0x26, 0x5c, 0xd4, 0xbe, 0x88, 0x7c, 0xca, 0xed, 0x73, 0xc1, 0x83, 0xc8, 0x3b, 0x8a, 0xca, - 0xba, 0x72, 0x6e, 0x3c, 0x5f, 0xc9, 0xc3, 0x7c, 0x25, 0xaf, 0xac, 0xbb, 0x95, 0xd7, 0x04, 0x68, - 0x7b, 0xf1, 0x38, 0x49, 0x85, 0xc4, 0xc3, 0x2b, 0xfd, 0xb5, 0x49, 0x7f, 0x79, 0x51, 0xbb, 0x3b, - 0xa3, 0xa3, 0xb2, 0x58, 0xcf, 0x9b, 0x07, 0xec, 0x8f, 0x60, 0xb9, 0xb8, 0x46, 0x28, 0xa6, 0x22, - 0xa4, 0xb6, 0xa8, 0xca, 0x8a, 0x8b, 0x1f, 0x21, 0x6e, 0x6f, 0xe5, 0xb6, 0x42, 0x79, 0x53, 0xb5, - 0x26, 0x79, 0x1a, 0x9b, 0x19, 0x95, 0xb1, 0x0f, 0x32, 0xb0, 0xcf, 0xa1, 0xe7, 0xcb, 0xcc, 0x2d, - 0x16, 0xeb, 0xbd, 0x9b, 0x8b, 0xf5, 0x8e, 0x2f, 0xb3, 0xed, 0x59, 0xbd, 0xfe, 0x31, 0x80, 0x9c, - 0x0c, 0x4d, 0x01, 0xd0, 0xd7, 0xb5, 0x72, 0xc1, 0x39, 0x74, 0xd5, 0x20, 0x27, 0x43, 0x9d, 0xfb, - 0x3f, 0x40, 0xe7, 0xa0, 0xe0, 0xee, 0xa6, 0x82, 0xfb, 0xd4, 0x3b, 0x34, 0xd0, 0x15, 0x08, 0x63, - 0x82, 0xfb, 0x79, 0x45, 0x6d, 0xbf, 0xa1, 0xa2, 0x7e, 0x00, 0xcd, 0x49, 0x14, 0xfc, 0x72, 0x22, - 0xd0, 0x4e, 0xef, 0x90, 0xd8, 0x1b, 0x0a, 0x38, 0xf4, 0xb1, 0x84, 0xf7, 0xe2, 0x28, 0x13, 0x97, - 0x19, 0x75, 0x01, 0x58, 0xcb, 0x98, 0x63, 0xed, 0x2a, 0x9c, 0x19, 0x86, 0x9f, 0x55, 0x1a, 0xb5, - 0x7e, 0x5d, 0x17, 0xd3, 0x7f, 0x53, 0x82, 0xbb, 0x27, 0x14, 0xdf, 0xd5, 0x7e, 0xa7, 0x5c, 0x5e, - 0x90, 0x9c, 0x3e, 0x86, 0xba, 0xb6, 0x05, 0xf2, 0x89, 0x9b, 0x4d, 0xc6, 0xb0, 0x51, 0x2a, 0x27, - 0x9b, 0xcf, 0xa4, 0x09, 0x59, 0x34, 0x3e, 0x95, 0xf6, 0x3d, 0x40, 0xc7, 0x40, 0x82, 0xca, 0xac, - 0x55, 0x11, 0xf9, 0xa7, 0x32, 0x8f, 0xe4, 0x95, 0x42, 0x24, 0xff, 0x00, 0xda, 0x14, 0x7f, 0xb1, - 0xde, 0xcb, 0x44, 0x4a, 0x45, 0x53, 0x93, 0xb5, 0x08, 0xfb, 0x92, 0xa0, 0x6b, 0x0d, 0xad, 0xf6, - 0x6e, 0x86, 0xc6, 0xba, 0x21, 0x97, 0x99, 0x3b, 0x49, 0x7c, 0xf4, 0xaf, 0x4c, 0x9a, 0x4e, 0x84, - 0xd5, 0x30, 0x7b, 0x4e, 0xa4, 0xf3, 0xeb, 0x12, 0x56, 0x3c, 0x73, 0xbe, 0xe0, 0x40, 0x25, 0x8a, - 0xe3, 0x44, 0x8b, 0x23, 0x2f, 0x41, 0x5f, 0xc4, 0x71, 0x72, 0xb0, 0xc4, 0x88, 0x66, 0x3f, 0x81, - 0x6a, 0x18, 0x7b, 0x3c, 0x5c, 0x4c, 0x43, 0x47, 0x08, 0x1e, 0x2c, 0x31, 0x45, 0xb5, 0x7f, 0x07, - 0x4a, 0x72, 0x4b, 0x07, 0x66, 0xc8, 0xe5, 0xba, 0x75, 0xb0, 0xc4, 0x4a, 0x72, 0xcb, 0x7e, 0x0c, - 0xe5, 0x33, 0x4f, 0xea, 0xd8, 0xdb, 0x32, 0xe4, 0xaf, 0x76, 0x4f, 0x0e, 0x96, 0x18, 0x52, 0xec, - 0xcf, 0xa1, 0xe3, 0x85, 0xf1, 0xc4, 0x77, 0xfd, 0xab, 0x88, 0x8f, 0x03, 0x4f, 0x87, 0xdc, 0xbb, - 0xb3, 0x10, 0x1f, 0x4f, 0xfc, 0x3d, 0x45, 0x3b, 0x58, 0x62, 0x6d, 0xaf, 0x30, 0xc6, 0x6b, 0x9c, - 0xfb, 0x23, 0x55, 0x81, 0x14, 0xae, 0x71, 0xb0, 0xf7, 0x25, 0xae, 0x4f, 0x34, 0xfb, 0x00, 0x6c, - 0xfe, 0xcd, 0x24, 0x15, 0xee, 0x30, 0x8c, 0x87, 0xae, 0xb1, 0x83, 0x3a, 0xcd, 0x18, 0x98, 0x19, - 0xdb, 0xc8, 0xb1, 0x13, 0xc6, 0x43, 0x2d, 0xa7, 0x83, 0x25, 0xd6, 0xe7, 0x0b, 0xd8, 0x4e, 0x13, - 0xea, 0x3a, 0xf2, 0x38, 0x35, 0xa8, 0xa0, 0xac, 0x9c, 0x07, 0x50, 0x25, 0x71, 0xa0, 0xfa, 0xd1, - 0x06, 0x4d, 0x22, 0x27, 0x7b, 0xfc, 0xab, 0x0a, 0x94, 0x4e, 0xb6, 0xb0, 0x18, 0x13, 0x91, 0x9f, - 0xc4, 0x81, 0x4e, 0x8c, 0x4d, 0x96, 0x8f, 0xb1, 0xca, 0x54, 0x99, 0x44, 0x3f, 0xd8, 0xe8, 0x11, - 0xe2, 0xc3, 0x89, 0x77, 0x21, 0x32, 0x9d, 0x71, 0xf5, 0x08, 0xf1, 0x24, 0x15, 0xa3, 0xe0, 0x52, - 0xdb, 0x99, 0x1e, 0xa9, 0x18, 0xad, 0x82, 0xa3, 0x17, 0x72, 0xa9, 0x2a, 0xb7, 0x26, 0xc6, 0x68, - 0x02, 0x77, 0x11, 0xc3, 0x14, 0x2b, 0xa5, 0x32, 0xaf, 0x26, 0xc3, 0x4f, 0x44, 0xb8, 0x17, 0x92, - 0x30, 0x9a, 0x0c, 0x3f, 0x31, 0x4c, 0x73, 0xcf, 0x13, 0x52, 0x52, 0x22, 0x68, 0xa8, 0x17, 0x22, - 0x85, 0x60, 0x2e, 0x58, 0x87, 0x65, 0x29, 0xbc, 0x54, 0x64, 0x6e, 0x81, 0xab, 0x49, 0x5c, 0x3d, - 0x45, 0xd8, 0xce, 0x79, 0xd7, 0xa0, 0x3f, 0x8a, 0x53, 0x4f, 0xb8, 0x28, 0x0c, 0x57, 0x66, 0x57, - 0xa1, 0xd0, 0x61, 0xb7, 0x4b, 0xf8, 0x31, 0xcf, 0xce, 0x4f, 0x10, 0xb5, 0x3f, 0x84, 0xae, 0x94, - 0xc2, 0xbd, 0x18, 0xd3, 0x7a, 0x18, 0x12, 0x54, 0x24, 0x6e, 0x49, 0x29, 0x9e, 0x8d, 0x71, 0xb1, - 0x43, 0x1f, 0x5d, 0x32, 0x8d, 0x43, 0xe1, 0xf2, 0x54, 0xbd, 0x4e, 0x35, 0x59, 0x1d, 0xc7, 0xdb, - 0xa9, 0x4a, 0x3e, 0x97, 0x99, 0x48, 0x23, 0xd5, 0x4b, 0x74, 0x88, 0x0a, 0x06, 0x3a, 0xf4, 0xed, - 0x0d, 0xb8, 0x13, 0x0f, 0x7f, 0x21, 0xbc, 0xcc, 0xc5, 0x1e, 0x20, 0x7f, 0x63, 0xe8, 0xd2, 0x69, - 0x96, 0x15, 0xe9, 0x28, 0xf6, 0x2e, 0xcc, 0x03, 0x03, 0x8a, 0xd3, 0x78, 0x64, 0x7c, 0x21, 0x54, - 0x58, 0x45, 0x71, 0x6a, 0xaf, 0x43, 0x0c, 0xf5, 0x9a, 0xa4, 0xf1, 0x34, 0xf0, 0x45, 0x4a, 0x6f, - 0x2f, 0x4d, 0x96, 0x8f, 0xb1, 0xe2, 0x49, 0xd2, 0x18, 0xdb, 0x3c, 0xfd, 0xc2, 0x62, 0x86, 0xce, - 0xaf, 0x2c, 0x28, 0x7f, 0xb5, 0x7b, 0xf2, 0x26, 0xab, 0xd0, 0xda, 0x2f, 0xdd, 0xa0, 0xfd, 0xf2, - 0xed, 0xda, 0xaf, 0x5c, 0xa3, 0xfd, 0x27, 0xd0, 0x4d, 0x52, 0xe1, 0x8b, 0x51, 0x10, 0x09, 0xdf, - 0x45, 0xb5, 0x2b, 0x1b, 0xe9, 0xcc, 0xd0, 0x6d, 0x2f, 0xc4, 0x02, 0xdf, 0x43, 0x20, 0xca, 0x02, - 0x1e, 0x4a, 0x72, 0x1a, 0x6d, 0x31, 0xbd, 0x02, 0x8e, 0x6e, 0xe1, 0x8c, 0xa1, 0x4f, 0x7e, 0xb3, - 0x3b, 0x91, 0x59, 0x3c, 0xa6, 0x9a, 0x04, 0x77, 0x99, 0xd5, 0x37, 0x79, 0x85, 0xd9, 0x64, 0x9d, - 0x19, 0x8a, 0x6c, 0x9b, 0x70, 0x6f, 0x9e, 0xcd, 0x2d, 0x34, 0x5b, 0x4d, 0x76, 0x67, 0x8e, 0xfb, - 0x84, 0x48, 0x18, 0xc6, 0xfa, 0x8b, 0x7e, 0xfa, 0xdb, 0x17, 0xe3, 0x07, 0xd0, 0xe6, 0x9e, 0x17, - 0x4f, 0xa2, 0xcc, 0xa5, 0x78, 0xaf, 0x84, 0xd8, 0xd2, 0xd8, 0x0b, 0x0c, 0xfb, 0x0f, 0x01, 0xe4, - 0x39, 0x4f, 0x85, 0x2a, 0xa6, 0x94, 0xf0, 0x9a, 0x0a, 0xc1, 0xbb, 0xcf, 0x5c, 0x4c, 0x06, 0x67, - 0xf3, 0x2e, 0x76, 0x12, 0x9c, 0xa1, 0x02, 0x0a, 0xa2, 0x91, 0x5e, 0x9c, 0x08, 0xe3, 0x61, 0x33, - 0xfc, 0x04, 0x61, 0xfb, 0x8b, 0xd7, 0x84, 0x0d, 0xd7, 0x84, 0xb5, 0x82, 0x7a, 0x16, 0xd4, 0xe0, - 0xfc, 0xa5, 0x05, 0xb5, 0x1d, 0x25, 0x94, 0xb7, 0x8b, 0x52, 0xe5, 0x1b, 0xa2, 0x54, 0xe5, 0x06, - 0x01, 0x57, 0x6f, 0x17, 0x70, 0xed, 0x75, 0x01, 0x63, 0x4b, 0xd0, 0x2e, 0x06, 0x7d, 0xfb, 0x69, - 0xbe, 0x8b, 0xa5, 0xab, 0x71, 0x53, 0x55, 0x10, 0x9a, 0xef, 0xfa, 0x21, 0x74, 0x8c, 0xff, 0x29, - 0xd5, 0x28, 0xad, 0xb7, 0x0d, 0x48, 0xba, 0xf9, 0x31, 0x54, 0x79, 0x96, 0xa5, 0xa6, 0x6b, 0x7a, - 0x7c, 0x5d, 0x9a, 0xd9, 0xd8, 0x46, 0x8e, 0xfd, 0x28, 0x4b, 0xaf, 0x98, 0xe2, 0x5e, 0xf9, 0x0c, - 0x60, 0x06, 0x62, 0xd8, 0x9c, 0x59, 0x36, 0x7e, 0x62, 0xaf, 0x3b, 0xe5, 0xe1, 0xc4, 0xec, 0xa9, - 0x06, 0x7f, 0x50, 0xfa, 0xcc, 0x72, 0x1e, 0x41, 0x05, 0xd3, 0x91, 0x92, 0xe1, 0x38, 0xce, 0x4c, - 0xaf, 0xa7, 0x47, 0xce, 0x3f, 0x5b, 0xd0, 0x35, 0x45, 0xbc, 0x4c, 0xe2, 0x48, 0x62, 0x38, 0xac, - 0xaa, 0xee, 0xc3, 0x9a, 0x4f, 0xbc, 0xd4, 0x6d, 0x30, 0x45, 0xfb, 0x0d, 0x6b, 0xf9, 0xb7, 0x79, - 0xc7, 0x5f, 0x78, 0xfe, 0xad, 0xbe, 0xd5, 0xf3, 0xaf, 0xf3, 0x03, 0xec, 0x07, 0x05, 0x8f, 0x66, - 0xcd, 0xc8, 0x5c, 0x8d, 0x67, 0xcd, 0xd7, 0x78, 0xce, 0x31, 0xf4, 0x72, 0xf6, 0x77, 0xb9, 0xf6, - 0x00, 0xea, 0x72, 0x42, 0xbe, 0x42, 0x97, 0x6e, 0x30, 0x33, 0x74, 0x3e, 0x83, 0xee, 0x71, 0x2a, - 0x12, 0x9e, 0x0a, 0x73, 0x80, 0xa7, 0xd0, 0x93, 0x7c, 0x2a, 0xdc, 0x2c, 0x76, 0x8b, 0xe5, 0x5f, - 0x83, 0x75, 0x10, 0x3e, 0x8d, 0x75, 0x0c, 0x71, 0xfe, 0xc1, 0x82, 0x5e, 0x3e, 0xf5, 0x1d, 0x75, - 0x30, 0xbb, 0x61, 0x69, 0xa1, 0x8a, 0xfd, 0x3e, 0xd8, 0x5e, 0x1c, 0x86, 0x98, 0x74, 0xe8, 0x67, - 0x11, 0x8a, 0x0f, 0xba, 0x66, 0xec, 0x6b, 0x0a, 0x8a, 0x7d, 0x17, 0x71, 0x4c, 0xac, 0x73, 0xdc, - 0xf4, 0x22, 0xa9, 0x1a, 0xad, 0x5e, 0x81, 0xf9, 0x24, 0xf8, 0x46, 0x38, 0x77, 0x60, 0x79, 0xf7, - 0x5c, 0x78, 0x17, 0xdb, 0xfe, 0x38, 0x88, 0xf4, 0x65, 0x9d, 0x6f, 0x2d, 0xb0, 0x8b, 0xe8, 0xbb, - 0xdc, 0xe3, 0xe9, 0x5c, 0x15, 0x82, 0x1e, 0xa6, 0x7f, 0xc7, 0x62, 0x84, 0xe6, 0xfe, 0xbe, 0x0e, - 0xcb, 0xe7, 0x5c, 0xba, 0x89, 0x88, 0xfc, 0x20, 0x3a, 0x73, 0x39, 0xee, 0x44, 0x37, 0x6a, 0xb0, - 0xde, 0x39, 0x97, 0xc7, 0x0a, 0xa7, 0x03, 0x38, 0xff, 0x6a, 0xc1, 0xc3, 0x7d, 0x9d, 0x81, 0xb5, - 0xa0, 0x99, 0x40, 0x35, 0xe4, 0xea, 0xb9, 0xa6, 0xa1, 0xb3, 0xde, 0xa9, 0xa1, 0x7b, 0x0c, 0x2d, - 0x9d, 0xd5, 0x0b, 0xee, 0x0e, 0x0a, 0x7a, 0xa1, 0xeb, 0xef, 0x54, 0xed, 0xa9, 0x38, 0x54, 0xf4, - 0x6a, 0x69, 0x8c, 0x58, 0x9e, 0x40, 0x97, 0x5a, 0x89, 0x28, 0x73, 0x43, 0x11, 0x9d, 0x65, 0xe7, - 0x5a, 0xe8, 0x1d, 0x8d, 0x1e, 0x11, 0xe8, 0xac, 0xc2, 0xa3, 0x9b, 0x2e, 0xa3, 0x04, 0xed, 0xfc, - 0x9d, 0x05, 0x2b, 0x0b, 0x2c, 0x27, 0x7c, 0xfa, 0x5b, 0xbc, 0xec, 0xeb, 0x37, 0x29, 0x5f, 0x77, - 0x93, 0x87, 0xf0, 0xe0, 0xda, 0x63, 0xea, 0x6b, 0xfc, 0x85, 0x7e, 0xdb, 0xf6, 0x79, 0xc6, 0xed, - 0x75, 0x13, 0x2d, 0xac, 0xf9, 0x27, 0xa6, 0x3d, 0xfd, 0x46, 0x4d, 0x0d, 0xa9, 0x8e, 0x1a, 0x9f, - 0x42, 0x8b, 0x0c, 0xf7, 0x2c, 0x8d, 0x27, 0x89, 0x79, 0x50, 0xbe, 0xb7, 0x38, 0xe3, 0x2b, 0xa4, - 0x32, 0xfa, 0x9d, 0x90, 0x3e, 0xa5, 0xea, 0xb4, 0x50, 0x43, 0xf9, 0x3b, 0x1d, 0x35, 0x61, 0xe8, - 0x41, 0x8f, 0x01, 0x55, 0x15, 0x87, 0x53, 0x51, 0x68, 0xb7, 0xc0, 0x40, 0xaa, 0x15, 0x1b, 0xf3, - 0x4b, 0xa4, 0x29, 0xa5, 0x55, 0xc7, 0xfc, 0x52, 0xc3, 0x41, 0x84, 0x70, 0x55, 0xc3, 0x41, 0x74, - 0x8a, 0x27, 0xa4, 0x9f, 0x67, 0xf3, 0xc0, 0x56, 0xd7, 0x81, 0xad, 0xf0, 0x7b, 0x99, 0x09, 0x6c, - 0xad, 0xf1, 0x6c, 0xe0, 0xfc, 0xbb, 0x05, 0x9d, 0xb9, 0xf3, 0x5f, 0x57, 0xec, 0xdb, 0x3f, 0x85, - 0xde, 0xec, 0x69, 0x5f, 0x35, 0xf1, 0xa5, 0x5b, 0xa4, 0xd6, 0xc9, 0xdf, 0xf9, 0xa9, 0x43, 0x9d, - 0x1d, 0xb9, 0x5c, 0x3c, 0xf2, 0x0d, 0x17, 0x7c, 0x0a, 0x3d, 0xe4, 0x2e, 0x0a, 0x47, 0xdd, 0xb4, - 0xa3, 0x5c, 0xdf, 0xc8, 0xe7, 0x3e, 0xd4, 0xb4, 0x29, 0xa8, 0xdf, 0x57, 0xf4, 0xc8, 0xf9, 0x8f, - 0x0a, 0xb4, 0x8b, 0xa7, 0x29, 0x3c, 0x76, 0x5b, 0x73, 0x8f, 0xdd, 0xe6, 0xa2, 0xa5, 0xc2, 0x45, - 0xd7, 0x61, 0x39, 0x9a, 0x8c, 0x87, 0x22, 0x75, 0xe3, 0x91, 0x2b, 0xa2, 0x2c, 0x0d, 0x84, 0x3a, - 0x75, 0x99, 0xf5, 0x14, 0xe1, 0xe5, 0x68, 0x5f, 0xc1, 0x85, 0x6b, 0x55, 0xae, 0xbf, 0x56, 0xb5, - 0x78, 0xad, 0x05, 0x7d, 0xd7, 0x5e, 0xd3, 0xf7, 0x03, 0x68, 0xea, 0xd7, 0xb9, 0xc0, 0x27, 0xf5, - 0x95, 0x59, 0x43, 0x01, 0x8b, 0x8f, 0x5b, 0x8d, 0x9b, 0x13, 0x62, 0xf3, 0x9a, 0x67, 0xcd, 0xd9, - 0x8f, 0x41, 0xdf, 0x83, 0x0a, 0xf5, 0xe0, 0x2d, 0x32, 0x8e, 0x7e, 0x31, 0x3f, 0x52, 0xaf, 0x4d, - 0x54, 0x5c, 0x2e, 0x90, 0x2e, 0x1a, 0x09, 0xb5, 0x22, 0x0d, 0x56, 0x0b, 0x24, 0xfd, 0x50, 0xff, - 0x3e, 0x34, 0x54, 0xc7, 0xaf, 0xdb, 0x90, 0x32, 0xab, 0xd3, 0xf8, 0xd0, 0x2f, 0x28, 0xa3, 0x5b, - 0x54, 0x86, 0xfd, 0xfb, 0xb0, 0x82, 0x32, 0x1a, 0x8a, 0x33, 0x92, 0x94, 0x1b, 0x44, 0xae, 0x2f, - 0x46, 0x7c, 0x12, 0x66, 0xae, 0x37, 0xa2, 0xc6, 0xa3, 0xc2, 0xee, 0x8d, 0x83, 0x68, 0x07, 0x19, - 0x4e, 0xe5, 0x61, 0xb4, 0xa7, 0xa8, 0xbb, 0x23, 0x8a, 0x6f, 0xf4, 0x53, 0x72, 0x3c, 0x1a, 0x49, - 0x91, 0x51, 0x17, 0x52, 0x61, 0x2d, 0xc2, 0x5e, 0x12, 0x34, 0x63, 0xd1, 0x7b, 0x2f, 0x17, 0x58, - 0x54, 0x44, 0xb8, 0xf6, 0x09, 0xc2, 0x7e, 0xc7, 0x27, 0x88, 0x52, 0x30, 0x75, 0xfe, 0xdc, 0x82, - 0xe5, 0xe2, 0xf3, 0xcb, 0xbe, 0xc9, 0x91, 0xe7, 0x3c, 0x49, 0x44, 0xe4, 0x72, 0xf3, 0x2e, 0xdc, - 0x50, 0xc0, 0x36, 0xbd, 0x57, 0x52, 0x06, 0x72, 0xbd, 0xd8, 0x37, 0x31, 0xad, 0x49, 0xc8, 0x6e, - 0xec, 0x63, 0xf2, 0x52, 0xff, 0x5f, 0xe1, 0x8e, 0x85, 0x94, 0x98, 0xbe, 0x55, 0x00, 0x6f, 0x13, - 0xf8, 0x5c, 0x61, 0x73, 0x01, 0xc4, 0xfc, 0xea, 0xa2, 0x02, 0xc8, 0xfa, 0x1f, 0x42, 0x6f, 0xe1, - 0xe4, 0x76, 0x0b, 0xea, 0x7f, 0xfc, 0xe2, 0xd9, 0x8b, 0x97, 0x7f, 0xf2, 0xa2, 0xbf, 0x64, 0xd7, - 0xa1, 0x7c, 0xf4, 0xf5, 0x27, 0x7d, 0xcb, 0x06, 0xa8, 0x9d, 0xbc, 0xd8, 0x3e, 0x3e, 0xfe, 0xd3, - 0x7e, 0xc9, 0x6e, 0x40, 0xe5, 0xeb, 0x93, 0xd3, 0xbd, 0x7e, 0x79, 0x7d, 0x35, 0xff, 0x1f, 0x0c, - 0x3c, 0x4c, 0x03, 0x2a, 0x27, 0xbb, 0xdb, 0x38, 0xad, 0x01, 0x95, 0x2f, 0x0f, 0x8f, 0xf6, 0xfb, - 0xd6, 0xfa, 0x43, 0x68, 0x15, 0xc2, 0x86, 0x5d, 0x83, 0xd2, 0xcf, 0x7f, 0xd4, 0x5f, 0xa2, 0xbf, - 0x9b, 0x7d, 0x6b, 0xfd, 0x31, 0x34, 0x8c, 0xe1, 0xe0, 0x16, 0x7b, 0x22, 0x14, 0x99, 0x50, 0xfb, - 0x1e, 0x4f, 0xb2, 0xbe, 0xb5, 0xf9, 0xd7, 0x25, 0xa8, 0xa9, 0x2d, 0xec, 0xcf, 0x41, 0xff, 0x8b, - 0x89, 0x7d, 0x6f, 0xe1, 0x57, 0x38, 0x95, 0x41, 0x56, 0xee, 0x2f, 0xc2, 0x3a, 0x62, 0x2f, 0x7d, - 0x6c, 0xd9, 0xc7, 0x70, 0x87, 0x72, 0x7f, 0x31, 0x03, 0xbf, 0x4c, 0xec, 0xf7, 0x73, 0xfd, 0x2d, - 0x96, 0x0b, 0x2b, 0x2b, 0xd7, 0x91, 0x0a, 0x2b, 0xfe, 0x14, 0x1b, 0x58, 0x2a, 0x89, 0xec, 0x7c, - 0xe3, 0xf9, 0xf2, 0x6a, 0xe5, 0xbd, 0xd7, 0x70, 0x33, 0x1f, 0x67, 0x7b, 0xaa, 0xba, 0xb3, 0x0b, - 0x6f, 0xf5, 0xc5, 0xea, 0x70, 0x36, 0x7b, 0xa1, 0x0c, 0x74, 0x96, 0x36, 0xff, 0xc9, 0x82, 0xde, - 0x42, 0x8e, 0xb2, 0xbf, 0x86, 0xba, 0x4e, 0xdb, 0xf6, 0x93, 0xbc, 0x86, 0xb9, 0xad, 0xbc, 0x58, - 0x79, 0xfa, 0x26, 0xb6, 0xfc, 0xb4, 0x7f, 0x04, 0x15, 0x2c, 0x08, 0x6d, 0xe7, 0x86, 0x19, 0x85, - 0x3c, 0xbe, 0xf2, 0xe1, 0xad, 0x3c, 0x66, 0xc9, 0x9d, 0xa7, 0xff, 0xf9, 0xf7, 0x0d, 0xeb, 0x57, - 0xdf, 0x3d, 0xb2, 0x7e, 0xfd, 0xdd, 0x23, 0xeb, 0xbf, 0xbe, 0x7b, 0x64, 0xfd, 0xed, 0x7f, 0x3f, - 0x5a, 0x82, 0x7e, 0x9c, 0x9e, 0x6d, 0x64, 0xc1, 0xc5, 0x74, 0xe3, 0x62, 0x4a, 0xff, 0xe7, 0x33, - 0xac, 0xd1, 0x9f, 0xad, 0xff, 0x0d, 0x00, 0x00, 0xff, 0xff, 0x79, 0x6a, 0xa4, 0x21, 0x6b, 0x24, - 0x00, 0x00, + // 3723 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x7a, 0x5b, 0x6f, 0x23, 0x47, + 0x76, 0xbf, 0x9a, 0x77, 0x1e, 0x92, 0x22, 0x55, 0x73, 0x31, 0xad, 0xd9, 0x99, 0x91, 0x7b, 0x3c, + 0xf3, 0xd7, 0x5f, 0x5e, 0x6b, 0xbd, 0x33, 0x5e, 0xef, 0x24, 0xde, 0xc0, 0xd0, 0x6d, 0x2c, 0x79, + 0x6e, 0x4a, 0x49, 0xeb, 0x45, 0xfc, 0xd2, 0x68, 0x76, 0x97, 0xc4, 0x5e, 0x35, 0xbb, 0x7b, 0xbb, + 0x9a, 0x1c, 0xc9, 0x8f, 0x79, 0x37, 0x72, 0x01, 0x02, 0xe4, 0x0b, 0x04, 0xc8, 0x43, 0x02, 0xe4, + 0x23, 0xe4, 0x25, 0xc0, 0x06, 0x09, 0x90, 0x05, 0x92, 0x87, 0x3c, 0x06, 0x0e, 0xf2, 0x31, 0x02, + 0x04, 0xe7, 0x54, 0x55, 0xb3, 0xc9, 0xa1, 0x34, 0x33, 0x9b, 0x60, 0x9f, 0xd8, 0xf5, 0x3b, 0xa7, + 0xaa, 0x4f, 0x9d, 0x7b, 0x55, 0x13, 0x60, 0x90, 0x26, 0x83, 0xcd, 0x24, 0x8d, 0xb3, 0x98, 0xd5, + 0x06, 0xae, 0x77, 0x36, 0x4e, 0x56, 0x3b, 0x67, 0x93, 0x34, 0xf1, 0x0c, 0xbc, 0xda, 0x11, 0x69, + 0x1a, 0xe7, 0x5c, 0xab, 0xed, 0x91, 0xc8, 0xdc, 0x7c, 0xc4, 0x44, 0xe4, 0xa5, 0x17, 0x49, 0x16, + 0xc4, 0x51, 0x8e, 0x5d, 0x3f, 0x8d, 0x4f, 0x63, 0x7a, 0xfc, 0x11, 0x3e, 0x69, 0xb4, 0x9b, 0x8e, + 0x65, 0x46, 0x8f, 0x0a, 0xb0, 0xff, 0xc6, 0x82, 0x1f, 0x1c, 0xa6, 0x22, 0x71, 0x53, 0x71, 0x14, + 0xb9, 0x89, 0x1c, 0xc6, 0xd9, 0x36, 0x09, 0xc0, 0xc5, 0xaf, 0xc6, 0x42, 0x66, 0xec, 0x31, 0x94, + 0xb2, 0x8b, 0xbe, 0xb5, 0x66, 0xad, 0x2f, 0x3f, 0x5c, 0xdf, 0x54, 0xc2, 0x6d, 0x5e, 0x35, 0xe3, + 0xf8, 0x22, 0x11, 0xbc, 0x94, 0x5d, 0xb0, 0x75, 0xa8, 0xa7, 0xe2, 0x34, 0x88, 0x23, 0xd9, 0x2f, + 0xad, 0x95, 0xd7, 0x5b, 0x0f, 0x97, 0x37, 0xb5, 0xd4, 0x9c, 0x60, 0x6e, 0xc8, 0x6c, 0x1d, 0x7a, + 0xa1, 0x70, 0xa5, 0x70, 0x82, 0xc8, 0x91, 0xc2, 0x8b, 0x23, 0x5f, 0xf6, 0xcb, 0x6b, 0xd6, 0x7a, + 0x85, 0x2f, 0x13, 0x7e, 0x10, 0x1d, 0x29, 0xd4, 0xfe, 0x37, 0x0b, 0x6e, 0x5f, 0xf2, 0x72, 0x99, + 0xc4, 0x91, 0x14, 0xec, 0xb3, 0x82, 0xbc, 0x0f, 0xae, 0x94, 0x77, 0x6f, 0x22, 0xa2, 0xa9, 0xb4, + 0x0f, 0xa0, 0xa6, 0xc4, 0xe9, 0x97, 0xd6, 0xac, 0x05, 0xc2, 0x6a, 0x2a, 0xfb, 0x10, 0xaa, 0x64, + 0x0a, 0x12, 0x10, 0xd9, 0x8c, 0x61, 0xf6, 0xf0, 0x97, 0x2b, 0x22, 0xfb, 0x18, 0xae, 0x85, 0xae, + 0xcc, 0x1c, 0xbd, 0x2d, 0xe9, 0x4c, 0xdc, 0x30, 0xf0, 0xfb, 0x95, 0x35, 0x6b, 0xbd, 0xc1, 0x7b, + 0x48, 0x7a, 0x46, 0x1b, 0x93, 0x5f, 0x23, 0x6e, 0xff, 0x57, 0x1d, 0x40, 0x09, 0xf5, 0x5c, 0x64, + 0x2e, 0xbb, 0x0d, 0xe0, 0x85, 0x63, 0x99, 0x89, 0xd4, 0x09, 0x7c, 0xda, 0x4b, 0x85, 0x37, 0x35, + 0x72, 0xe0, 0xb3, 0xff, 0x07, 0x5d, 0x43, 0x9e, 0x88, 0x54, 0x1a, 0x99, 0x9b, 0x7c, 0x59, 0xc3, + 0x5f, 0x2b, 0x14, 0xd7, 0x19, 0x4c, 0x79, 0x5a, 0xc4, 0xd3, 0x1c, 0xe4, 0xe4, 0x3e, 0xd4, 0x0d, + 0xad, 0xbd, 0x66, 0xad, 0x57, 0xb9, 0x19, 0x32, 0x1b, 0xaa, 0x27, 0x41, 0x28, 0x64, 0xbf, 0x42, + 0x86, 0x6b, 0x1b, 0x3d, 0x3e, 0x09, 0x42, 0xc1, 0x15, 0x89, 0xfd, 0x08, 0x00, 0x1f, 0x9c, 0x20, + 0xf2, 0xc5, 0x79, 0xbf, 0x43, 0xda, 0xe8, 0x19, 0x46, 0xdc, 0x06, 0x31, 0x37, 0x91, 0xe7, 0x00, + 0x59, 0xd8, 0x3d, 0xe8, 0xc8, 0xcc, 0x4d, 0xb3, 0x5c, 0xa0, 0x2a, 0x6d, 0xac, 0x4d, 0xa0, 0x91, + 0xe9, 0x2e, 0xb4, 0x44, 0xe4, 0xe7, 0x2c, 0x35, 0x62, 0x01, 0x11, 0xf9, 0x86, 0x61, 0x1d, 0xea, + 0xd2, 0x1b, 0x8a, 0x91, 0x2b, 0xfb, 0x75, 0xed, 0x55, 0xfa, 0x9d, 0x47, 0x04, 0x73, 0x43, 0x66, + 0x8f, 0xa0, 0xad, 0x1e, 0xb5, 0x88, 0xcb, 0x97, 0x88, 0xd8, 0x52, 0x5c, 0x4a, 0xc8, 0x55, 0x68, + 0x06, 0xd2, 0x49, 0xdd, 0x57, 0xce, 0xd9, 0xa4, 0xdf, 0x20, 0x73, 0xd5, 0x03, 0xc9, 0xdd, 0x57, + 0x4f, 0x27, 0xb8, 0x63, 0x24, 0xa4, 0x6e, 0x74, 0x2a, 0x64, 0xbf, 0x49, 0x6f, 0xcf, 0x97, 0xe3, + 0xee, 0x2b, 0x8e, 0x04, 0xde, 0x4c, 0xf5, 0x93, 0x64, 0x8f, 0xa1, 0x9b, 0x4f, 0xd0, 0x42, 0x74, + 0x2f, 0x11, 0xa2, 0x63, 0x66, 0x29, 0x31, 0x18, 0x54, 0x7c, 0x3f, 0x94, 0x7d, 0x58, 0xb3, 0xd6, + 0xdb, 0x9c, 0x9e, 0xd9, 0x8f, 0xa1, 0xe5, 0xfb, 0xa1, 0x5a, 0x47, 0xc8, 0x7e, 0xef, 0x92, 0x95, + 0xc0, 0xf7, 0xc3, 0x03, 0xc5, 0x83, 0x2a, 0x57, 0x64, 0x27, 0x15, 0x72, 0x1c, 0x66, 0xfd, 0x15, + 0xf2, 0x81, 0xf6, 0xc0, 0xc4, 0xcc, 0x38, 0xcc, 0xd8, 0xa7, 0xd0, 0x72, 0x93, 0x20, 0x57, 0x39, + 0xa3, 0xd0, 0xb9, 0xb6, 0x69, 0xf2, 0xcf, 0xd6, 0xe1, 0x81, 0xd6, 0x3d, 0x07, 0x37, 0x09, 0x8c, + 0x1d, 0x1e, 0x41, 0x23, 0x89, 0xc3, 0xc0, 0x0b, 0x84, 0xec, 0x5f, 0x23, 0x55, 0xbc, 0x97, 0x47, + 0x5b, 0xe8, 0x7a, 0x62, 0x24, 0xa2, 0xec, 0x10, 0x19, 0x2e, 0x78, 0xce, 0xc8, 0x3e, 0x85, 0x9b, + 0x91, 0x78, 0xe5, 0x78, 0x71, 0x18, 0xba, 0x98, 0xad, 0xa4, 0x23, 0x22, 0x77, 0x10, 0x0a, 0xbf, + 0x7f, 0x9d, 0x04, 0xbb, 0x1e, 0x89, 0x57, 0x3b, 0x39, 0x71, 0x4f, 0xd1, 0xb4, 0x4d, 0xb2, 0xf3, + 0x08, 0x6d, 0x72, 0xc3, 0xd8, 0xe4, 0xf8, 0x3c, 0x7a, 0x3a, 0x61, 0x1b, 0x50, 0xf7, 0x07, 0xce, + 0xc8, 0x4d, 0x64, 0xff, 0x26, 0x49, 0xb1, 0x92, 0x4b, 0x11, 0x64, 0xe9, 0xee, 0xf6, 0x73, 0x37, + 0xe1, 0x35, 0x7f, 0xf0, 0xdc, 0x4d, 0x24, 0x7b, 0x00, 0x95, 0x51, 0xec, 0x8b, 0xfe, 0x7b, 0xb4, + 0x43, 0x66, 0x18, 0x75, 0xe0, 0xc5, 0xbe, 0xe0, 0x44, 0x67, 0x1f, 0x41, 0x4d, 0xdb, 0xb8, 0x4f, + 0x4b, 0x5e, 0x9b, 0xe5, 0x54, 0x66, 0xd6, 0x2c, 0xe8, 0xb0, 0x5a, 0xc5, 0x32, 0xf8, 0x56, 0xf4, + 0xdf, 0x57, 0x0e, 0xab, 0xa0, 0xa3, 0xe0, 0x5b, 0xf1, 0x55, 0xa5, 0x51, 0xee, 0x55, 0x78, 0x25, + 0x71, 0xb3, 0xa1, 0x7d, 0x0a, 0xad, 0xc2, 0x1a, 0xec, 0x16, 0x34, 0x55, 0x44, 0x9c, 0x09, 0x95, + 0xb2, 0xda, 0xbc, 0x41, 0xc0, 0x53, 0x71, 0xc1, 0xde, 0x83, 0x3a, 0x46, 0x02, 0x92, 0x4a, 0x44, + 0xaa, 0x89, 0xc8, 0x47, 0x42, 0x1e, 0x9c, 0xe5, 0x4b, 0x83, 0xd3, 0xfe, 0xc7, 0x12, 0x54, 0x70, + 0x8c, 0x8e, 0x14, 0xb9, 0x23, 0x41, 0xab, 0x37, 0x39, 0x3d, 0xb3, 0x9b, 0x50, 0x93, 0x43, 0xf7, + 0xe1, 0x4f, 0x3e, 0x33, 0x0b, 0xab, 0xd1, 0xac, 0x38, 0xe5, 0xcb, 0xc5, 0xa9, 0xcc, 0x88, 0xf3, + 0x7f, 0x13, 0xd6, 0xab, 0xd0, 0xf0, 0x52, 0xef, 0xb3, 0x4f, 0xcf, 0xe3, 0xb4, 0x5f, 0x27, 0x6a, + 0x3e, 0x46, 0xb9, 0xb2, 0x38, 0x73, 0x43, 0xe7, 0x6c, 0x22, 0x29, 0x26, 0x2b, 0xbc, 0x41, 0xc0, + 0xd3, 0x09, 0xe9, 0x5f, 0x11, 0x07, 0x17, 0x19, 0x45, 0x25, 0xad, 0x4c, 0xd0, 0x36, 0x22, 0x6c, + 0x19, 0x4a, 0xde, 0x09, 0x05, 0x52, 0x93, 0x97, 0xbc, 0x13, 0xd4, 0x08, 0x59, 0xaa, 0x45, 0x9c, + 0xf4, 0x8c, 0x6f, 0xf0, 0x82, 0x64, 0x88, 0xf9, 0x76, 0x42, 0xb9, 0xb0, 0xcd, 0x1b, 0x0a, 0x38, + 0x98, 0xd8, 0xdf, 0x95, 0xa0, 0x61, 0xa2, 0x8b, 0x7d, 0x04, 0x80, 0x75, 0xc1, 0x51, 0x16, 0xb0, + 0x16, 0x58, 0xa0, 0x39, 0xd2, 0xbc, 0x12, 0x99, 0x7d, 0x37, 0x67, 0x2e, 0x2d, 0x62, 0x46, 0xba, + 0x62, 0x2e, 0x24, 0xb6, 0xf2, 0xd5, 0x89, 0x6d, 0x36, 0x0f, 0x55, 0xde, 0x26, 0x0f, 0xe5, 0x69, + 0x40, 0xcd, 0xa9, 0x5d, 0xee, 0xd7, 0x26, 0x37, 0xa8, 0x99, 0x26, 0x0f, 0x55, 0xd7, 0xca, 0x26, + 0x0f, 0xd9, 0xf7, 0xa1, 0x3b, 0x17, 0xe1, 0xc8, 0x16, 0x44, 0x27, 0xb1, 0xf6, 0x61, 0x7a, 0xb6, + 0x9f, 0x01, 0x1c, 0x65, 0x6e, 0x26, 0xb7, 0xc3, 0xd8, 0x3b, 0x43, 0x33, 0x25, 0xc3, 0x0b, 0x19, + 0x78, 0x6e, 0x68, 0x6a, 0x5a, 0x99, 0x83, 0x81, 0x0e, 0x7c, 0xac, 0x55, 0xbf, 0x94, 0x71, 0xe4, + 0x64, 0x18, 0xf3, 0xda, 0x31, 0x9b, 0x88, 0x1c, 0x23, 0x60, 0xff, 0x14, 0x9a, 0xb4, 0x1a, 0x19, + 0x61, 0x03, 0x6a, 0x03, 0x5c, 0xd5, 0x18, 0x20, 0x0f, 0xe5, 0xe9, 0x0b, 0xb9, 0xe6, 0xb0, 0xff, + 0xce, 0x82, 0xe5, 0x7c, 0x66, 0x9e, 0x5c, 0xdf, 0x3a, 0x26, 0xde, 0x87, 0x06, 0x7a, 0x88, 0x23, + 0x22, 0x4f, 0xb7, 0x24, 0x75, 0x1c, 0xef, 0x45, 0x5e, 0x4e, 0x8a, 0xd3, 0x80, 0x42, 0x42, 0x93, + 0x5e, 0xa6, 0xc1, 0xac, 0x3f, 0x55, 0x67, 0xfd, 0x09, 0x55, 0x11, 0x44, 0x61, 0x10, 0x09, 0x07, + 0x8d, 0x4f, 0xb1, 0xd0, 0xe6, 0xa0, 0xa0, 0x5d, 0x37, 0x73, 0xed, 0x3f, 0x2e, 0x41, 0x4d, 0xd9, + 0x1c, 0x9d, 0xd7, 0x1f, 0x68, 0xb5, 0x96, 0xfc, 0x01, 0xbb, 0x0e, 0xd5, 0xa2, 0x82, 0xd4, 0x60, + 0x26, 0x78, 0xca, 0x57, 0x05, 0x4f, 0xe5, 0xea, 0xe0, 0xa9, 0xbe, 0x16, 0x3c, 0xff, 0x1f, 0x7a, + 0x59, 0x70, 0x12, 0xba, 0x72, 0xe8, 0xa4, 0x22, 0x09, 0x03, 0xcf, 0x95, 0x24, 0x70, 0x87, 0x77, + 0x35, 0xce, 0x35, 0x8c, 0xa2, 0x49, 0xd4, 0x33, 0x85, 0x6f, 0x9b, 0xab, 0x01, 0xfb, 0x29, 0xb4, + 0xe8, 0x41, 0x97, 0xbf, 0x06, 0xd9, 0xeb, 0xe6, 0x8c, 0xbd, 0x72, 0xc3, 0x70, 0x20, 0x56, 0x7a, + 0xb6, 0x9f, 0x43, 0xf5, 0x60, 0xf7, 0xb9, 0x9b, 0xa0, 0x8c, 0xe3, 0x44, 0x66, 0xa9, 0x70, 0x47, + 0x05, 0xcf, 0x31, 0xd0, 0x81, 0x8f, 0x09, 0xc8, 0x8f, 0x5f, 0x45, 0x53, 0x96, 0x12, 0xb1, 0xb4, + 0xa7, 0xe0, 0x81, 0x6f, 0xbf, 0x82, 0x36, 0x16, 0x04, 0x72, 0x26, 0x5c, 0x75, 0x91, 0x0f, 0x7c, + 0x08, 0xb5, 0xc0, 0xc7, 0x5a, 0xa2, 0x5b, 0xc0, 0x8e, 0x11, 0x93, 0x04, 0xe1, 0xd5, 0xc0, 0xc7, + 0x99, 0x1f, 0x03, 0x24, 0x6e, 0x9a, 0x05, 0x54, 0xa2, 0x74, 0xa8, 0xce, 0x71, 0x16, 0x18, 0x6c, + 0x09, 0xcd, 0xbc, 0x12, 0xfd, 0x2f, 0xde, 0xfa, 0x43, 0xa8, 0x91, 0xad, 0xcd, 0x1b, 0xaf, 0x17, + 0xcb, 0x9c, 0xd9, 0x15, 0xd7, 0x3c, 0xf6, 0x21, 0x34, 0x4c, 0x1e, 0xf8, 0x2d, 0x8b, 0x8c, 0xca, + 0x9a, 0x65, 0x93, 0x35, 0xed, 0x5d, 0x58, 0xde, 0xd1, 0x0d, 0xe8, 0x2e, 0x75, 0xba, 0xd8, 0x3d, + 0x7a, 0xe3, 0x34, 0x15, 0x51, 0xa6, 0x3b, 0x54, 0x33, 0x44, 0x4a, 0xaa, 0xce, 0x02, 0xb4, 0x68, + 0x85, 0x9b, 0xa1, 0xfd, 0xcf, 0x16, 0x54, 0xd5, 0xec, 0x1e, 0x94, 0x47, 0xf2, 0x54, 0x2b, 0x02, + 0x1f, 0xd9, 0x36, 0xf4, 0xa6, 0x4d, 0xaf, 0x53, 0xec, 0xb1, 0x73, 0x77, 0x99, 0x95, 0x60, 0x7f, + 0x29, 0x6f, 0x78, 0x0f, 0x7c, 0xb5, 0xea, 0x26, 0x34, 0xce, 0x26, 0x7a, 0x6e, 0x85, 0xe6, 0xae, + 0xe4, 0x7d, 0xcc, 0x53, 0x71, 0x61, 0xa6, 0xd5, 0xcf, 0x26, 0x8a, 0xff, 0x11, 0xb4, 0x55, 0x5b, + 0xaf, 0xe7, 0x54, 0x17, 0xf5, 0xf4, 0xfb, 0x4b, 0xbc, 0xa5, 0xb8, 0x68, 0xb8, 0xdd, 0x80, 0x9a, + 0x2f, 0x32, 0x37, 0x08, 0xed, 0x10, 0x60, 0x47, 0x45, 0x75, 0x74, 0x12, 0xb3, 0x2f, 0xa0, 0xa5, + 0x83, 0x3e, 0xbb, 0x48, 0x84, 0x3e, 0x82, 0xdc, 0xd9, 0x9c, 0x39, 0x9b, 0xed, 0xe5, 0x83, 0xe7, + 0x22, 0x1b, 0xc6, 0x3e, 0x07, 0x35, 0x05, 0x8f, 0x21, 0xd4, 0xf6, 0xab, 0x05, 0xa6, 0xf6, 0xd0, + 0x79, 0xe4, 0xa9, 0xb8, 0xb0, 0xbf, 0xab, 0x41, 0x67, 0xf6, 0x6c, 0xf6, 0x86, 0x73, 0xc2, 0x8c, + 0xe5, 0x4b, 0x97, 0x5b, 0xbe, 0x7c, 0x75, 0x3d, 0xaf, 0xbc, 0xb9, 0x9e, 0x57, 0x5f, 0xab, 0xe7, + 0xb7, 0xb1, 0x46, 0x65, 0xc2, 0x09, 0x83, 0x51, 0x90, 0xe9, 0x8a, 0xde, 0x44, 0xe4, 0x19, 0x02, + 0x6c, 0x0d, 0x5a, 0x5e, 0x1c, 0x29, 0x87, 0xf1, 0x2e, 0xa8, 0xa8, 0x77, 0x78, 0x11, 0x62, 0x5f, + 0x40, 0x57, 0x66, 0x71, 0xea, 0x9e, 0x0a, 0x07, 0xad, 0x2f, 0x22, 0x9f, 0x6a, 0xfb, 0x4c, 0xf2, + 0x20, 0xf2, 0xb6, 0xa2, 0xf2, 0x65, 0x39, 0x33, 0x9e, 0xed, 0xe4, 0x61, 0xb6, 0x93, 0x57, 0xde, + 0xdd, 0xca, 0x7b, 0x02, 0xf4, 0xbd, 0x78, 0x94, 0xa4, 0x42, 0xa2, 0xf0, 0xca, 0x7e, 0x6d, 0xb2, + 0x5f, 0xde, 0xd4, 0xee, 0x4c, 0xe9, 0x74, 0x66, 0xec, 0x7a, 0xb3, 0x00, 0xfb, 0x08, 0x56, 0x8a, + 0x6b, 0x84, 0x62, 0x22, 0x42, 0x3a, 0x16, 0x55, 0x79, 0x71, 0xf1, 0x67, 0x88, 0xb3, 0x47, 0xb9, + 0xaf, 0x50, 0xdd, 0x54, 0x47, 0x93, 0xbc, 0x8c, 0x4d, 0x9d, 0xca, 0xf8, 0x07, 0x39, 0xd8, 0xe7, + 0xd0, 0xf5, 0x65, 0xe6, 0x14, 0x9b, 0xf5, 0xee, 0xe5, 0xcd, 0x7a, 0xc7, 0x97, 0xd9, 0xd6, 0xb4, + 0x5f, 0xff, 0x04, 0x40, 0x8e, 0x07, 0xa6, 0x01, 0xe8, 0xe9, 0x5e, 0xb9, 0x10, 0x1c, 0xba, 0x6b, + 0x90, 0xe3, 0x81, 0xae, 0xfd, 0x1f, 0x60, 0x70, 0x50, 0x72, 0x77, 0x52, 0xe1, 0xfa, 0x74, 0x76, + 0x68, 0x60, 0x28, 0x10, 0xc6, 0x85, 0xeb, 0xe7, 0x1d, 0x35, 0x7b, 0x43, 0x47, 0x7d, 0x0b, 0x9a, + 0xe3, 0x28, 0xf8, 0xd5, 0x58, 0xa0, 0x9f, 0x5e, 0x23, 0xb5, 0x37, 0x14, 0x70, 0xe0, 0x63, 0x0b, + 0xef, 0xc5, 0x51, 0x26, 0xce, 0x33, 0x3a, 0x05, 0x60, 0x2f, 0x63, 0xc4, 0xda, 0x51, 0x38, 0x37, + 0x0c, 0x5f, 0x55, 0x1a, 0xb5, 0x5e, 0x5d, 0x37, 0xd3, 0x7f, 0x51, 0x82, 0xeb, 0x47, 0x94, 0xdf, + 0xd5, 0xfb, 0x8e, 0x5d, 0x79, 0x46, 0x7a, 0xfa, 0x04, 0xea, 0xda, 0x17, 0x28, 0x26, 0x2e, 0x77, + 0x19, 0xc3, 0x46, 0xa5, 0x9c, 0x7c, 0x3e, 0x93, 0x26, 0x65, 0xd1, 0xf8, 0x58, 0xb2, 0x1b, 0x80, + 0x81, 0x81, 0x04, 0x55, 0x59, 0xab, 0x22, 0xf2, 0x8f, 0x65, 0x9e, 0xc9, 0x2b, 0x85, 0x4c, 0xfe, + 0x01, 0xb4, 0x29, 0xff, 0x62, 0xbf, 0x97, 0x89, 0x94, 0x9a, 0xa6, 0x26, 0x6f, 0x11, 0xf6, 0x84, + 0xa0, 0x85, 0x8e, 0x56, 0x7b, 0x37, 0x47, 0xe3, 0xcb, 0x74, 0xb3, 0x30, 0x4e, 0x7c, 0x8c, 0xaf, + 0x4c, 0x9a, 0x93, 0x08, 0xaf, 0x61, 0xf5, 0x1c, 0x4b, 0xfb, 0x37, 0x25, 0xec, 0x78, 0x66, 0x62, + 0xc1, 0x86, 0x4a, 0x14, 0xc7, 0x89, 0x56, 0x47, 0xde, 0x82, 0xbe, 0x88, 0xe3, 0x64, 0x7f, 0x89, + 0x13, 0x8d, 0xdd, 0x87, 0x6a, 0x18, 0x7b, 0x6e, 0x38, 0x5f, 0x86, 0x9e, 0x21, 0xb8, 0xbf, 0xc4, + 0x15, 0x95, 0xfd, 0x00, 0x4a, 0xf2, 0x91, 0x4e, 0xcc, 0x90, 0xeb, 0xf5, 0xd1, 0xfe, 0x12, 0x2f, + 0xc9, 0x47, 0xec, 0x2e, 0x94, 0x4f, 0x3d, 0xa9, 0x73, 0x6f, 0xcb, 0x90, 0xbf, 0xdc, 0x39, 0xda, + 0x5f, 0xe2, 0x48, 0x61, 0x9f, 0x43, 0xc7, 0x0b, 0xe3, 0xb1, 0xef, 0xf8, 0x17, 0x91, 0x3b, 0x0a, + 0x3c, 0x9d, 0x72, 0xaf, 0x4f, 0x53, 0x7c, 0x3c, 0xf6, 0x77, 0x15, 0x6d, 0x7f, 0x89, 0xb7, 0xbd, + 0xc2, 0x18, 0xb7, 0x31, 0xf4, 0x4f, 0x54, 0x07, 0x52, 0xd8, 0xc6, 0xfe, 0xee, 0x13, 0x5c, 0x9f, + 0x68, 0x6c, 0x1f, 0x98, 0xfb, 0xed, 0x38, 0x15, 0xce, 0x20, 0x8c, 0x07, 0x8e, 0xf1, 0x83, 0x3a, + 0xcd, 0xe8, 0x9b, 0x19, 0x5b, 0xc8, 0xb1, 0x1d, 0xc6, 0x03, 0xad, 0xa7, 0xfd, 0x25, 0xde, 0x73, + 0xe7, 0xb0, 0xed, 0x26, 0xd4, 0x75, 0xe6, 0xb1, 0x6b, 0x50, 0x41, 0x5d, 0xd9, 0xb7, 0xa0, 0x4a, + 0xea, 0x40, 0xf3, 0xa3, 0x0f, 0x9a, 0x42, 0x4e, 0xfe, 0xf8, 0xe7, 0x15, 0x28, 0x1d, 0x3d, 0xc2, + 0x66, 0x4c, 0x44, 0x7e, 0x12, 0x07, 0xba, 0x30, 0x36, 0x79, 0x3e, 0xc6, 0x2e, 0xb3, 0x70, 0xc9, + 0xd4, 0xcc, 0x2f, 0x95, 0x6e, 0x42, 0x6d, 0x30, 0xf6, 0xce, 0x44, 0xa6, 0x2b, 0xae, 0x1e, 0x21, + 0x9e, 0xa4, 0xe2, 0x24, 0x38, 0xd7, 0x7e, 0xa6, 0x47, 0x2a, 0x47, 0xab, 0xe4, 0xe8, 0x85, 0xae, + 0x54, 0x9d, 0x5b, 0x13, 0x73, 0x34, 0x81, 0x3b, 0x88, 0x61, 0x89, 0x95, 0x52, 0xb9, 0x57, 0x93, + 0xe3, 0x23, 0x22, 0xae, 0x17, 0x92, 0x32, 0x9a, 0x1c, 0x1f, 0x31, 0x4d, 0xbb, 0x9e, 0x27, 0xa4, + 0xa4, 0x42, 0xd0, 0x50, 0x37, 0x44, 0x0a, 0xc1, 0x5a, 0xb0, 0x01, 0x2b, 0x52, 0x78, 0xa9, 0xc8, + 0x9c, 0x02, 0x57, 0x93, 0xb8, 0xba, 0x8a, 0xb0, 0x95, 0xf3, 0xae, 0x43, 0xef, 0x24, 0x4e, 0x3d, + 0xe1, 0xa0, 0x32, 0x1c, 0x99, 0x5d, 0x84, 0x42, 0xa7, 0xdd, 0x65, 0xc2, 0x0f, 0xdd, 0x6c, 0x78, + 0x84, 0x28, 0xbb, 0x07, 0xcb, 0x52, 0x0a, 0xe7, 0x6c, 0x44, 0xeb, 0x61, 0x4a, 0x50, 0x99, 0xb8, + 0x25, 0xa5, 0x78, 0x3a, 0xc2, 0xc5, 0x0e, 0x7c, 0x0c, 0xc9, 0x34, 0x0e, 0x85, 0xe3, 0xa6, 0xea, + 0x76, 0xaa, 0xc9, 0xeb, 0x38, 0xde, 0x4a, 0x55, 0xf1, 0x39, 0xcf, 0x44, 0x1a, 0xa9, 0xb3, 0x44, + 0x87, 0xa8, 0x60, 0xa0, 0x03, 0x9f, 0x6d, 0xc2, 0xb5, 0x78, 0xf0, 0x4b, 0xe1, 0x65, 0x0e, 0x9e, + 0x01, 0xf2, 0x3b, 0x86, 0x65, 0x92, 0x66, 0x45, 0x91, 0x9e, 0xc5, 0xde, 0x99, 0xb9, 0x60, 0x40, + 0x75, 0x9a, 0x88, 0x8c, 0xcf, 0x84, 0x4a, 0xab, 0xa8, 0x4e, 0x1d, 0x75, 0x88, 0xa1, 0x5d, 0x93, + 0x34, 0x9e, 0x04, 0xbe, 0x48, 0xe9, 0xee, 0xa5, 0xc9, 0xf3, 0x31, 0x76, 0x3c, 0x49, 0x1a, 0xe3, + 0x31, 0x4f, 0xdf, 0xb0, 0x98, 0xa1, 0xfd, 0x6b, 0x0b, 0xca, 0x5f, 0xee, 0x1c, 0xbd, 0xc9, 0x2b, + 0xb4, 0xf5, 0x4b, 0x97, 0x58, 0xbf, 0x7c, 0xb5, 0xf5, 0x2b, 0x0b, 0xac, 0x7f, 0x1f, 0x96, 0x93, + 0x54, 0xf8, 0xe2, 0x24, 0x88, 0x84, 0xef, 0xa0, 0xd9, 0x95, 0x8f, 0x74, 0xa6, 0xe8, 0x96, 0x17, + 0x62, 0x83, 0xef, 0x21, 0x10, 0x65, 0x81, 0x1b, 0x4a, 0x0a, 0x1a, 0xed, 0x31, 0xdd, 0x02, 0x8e, + 0x61, 0x61, 0x8f, 0xa0, 0x47, 0x71, 0xb3, 0x33, 0x96, 0x59, 0x3c, 0xa2, 0x9e, 0x04, 0xdf, 0x32, + 0xed, 0x6f, 0xf2, 0x0e, 0xb3, 0xc9, 0x3b, 0x53, 0x14, 0xd9, 0x1e, 0xc2, 0x8d, 0x59, 0x36, 0xa7, + 0x70, 0xd8, 0x6a, 0xf2, 0x6b, 0x33, 0xdc, 0x47, 0x44, 0xc2, 0x34, 0xd6, 0x9b, 0x8f, 0xd3, 0xdf, + 0xbd, 0x1a, 0x3f, 0x80, 0xb6, 0xeb, 0x79, 0xf1, 0x38, 0xca, 0x1c, 0xca, 0xf7, 0x4a, 0x89, 0x2d, + 0x8d, 0xbd, 0xc0, 0xb4, 0x7f, 0x1b, 0x40, 0x0e, 0xdd, 0x54, 0xa8, 0x66, 0x4a, 0x29, 0xaf, 0xa9, + 0x10, 0xdc, 0xfb, 0x34, 0xc4, 0x64, 0x70, 0x3a, 0x1b, 0x62, 0x47, 0xc1, 0x29, 0x1a, 0xa0, 0xa0, + 0x1a, 0xe9, 0xc5, 0x89, 0x30, 0x11, 0x36, 0xc5, 0x8f, 0x10, 0x66, 0x5f, 0xbc, 0xa6, 0x6c, 0x58, + 0x90, 0xd6, 0x0a, 0xe6, 0x99, 0x33, 0x83, 0xfd, 0x67, 0x16, 0xd4, 0xb6, 0x95, 0x52, 0xde, 0x2e, + 0x4b, 0x95, 0x2f, 0xc9, 0x52, 0x95, 0x4b, 0x14, 0x5c, 0xbd, 0x5a, 0xc1, 0xb5, 0xd7, 0x15, 0x8c, + 0x47, 0x82, 0x76, 0x31, 0xe9, 0xb3, 0x07, 0xf9, 0x5b, 0x2c, 0xdd, 0x8d, 0x9b, 0xae, 0x82, 0xd0, + 0xfc, 0xad, 0xf7, 0xa0, 0x63, 0xe2, 0x4f, 0x99, 0x46, 0x59, 0xbd, 0x6d, 0x40, 0xb2, 0xcd, 0x4f, + 0xa0, 0xea, 0x66, 0x59, 0x6a, 0x4e, 0x4d, 0x77, 0x17, 0x95, 0x99, 0xcd, 0x2d, 0xe4, 0xd8, 0x8b, + 0xb2, 0xf4, 0x82, 0x2b, 0xee, 0xd5, 0xc7, 0x00, 0x53, 0x10, 0xd3, 0xe6, 0xd4, 0xb3, 0xf1, 0x11, + 0xcf, 0xba, 0x13, 0x37, 0x1c, 0x9b, 0x77, 0xaa, 0xc1, 0xef, 0x97, 0x1e, 0x5b, 0xf6, 0x1d, 0xa8, + 0x60, 0x39, 0x52, 0x3a, 0x1c, 0xc5, 0x99, 0x39, 0xeb, 0xe9, 0x91, 0xfd, 0x0f, 0x16, 0x2c, 0xcf, + 0x7d, 0xb1, 0xb8, 0x67, 0xbe, 0x28, 0x58, 0xb3, 0x85, 0x77, 0xe6, 0x83, 0xc2, 0x6f, 0xd7, 0xcb, + 0xbf, 0xcd, 0x3d, 0xfe, 0xdc, 0xf5, 0x6f, 0xf5, 0xad, 0xae, 0x7f, 0xed, 0x8f, 0xf1, 0x3c, 0x28, + 0xdc, 0x68, 0x7a, 0x18, 0x99, 0xe9, 0xf1, 0xac, 0xd9, 0x1e, 0xcf, 0x3e, 0x84, 0x6e, 0xce, 0xfe, + 0x2e, 0xdb, 0xee, 0x43, 0x5d, 0x8e, 0x29, 0x56, 0x68, 0xd3, 0x0d, 0x6e, 0x86, 0xf6, 0x63, 0x58, + 0xd6, 0x5f, 0x75, 0x8c, 0x00, 0x0f, 0xa0, 0x2b, 0xdd, 0x89, 0x70, 0xb2, 0xd8, 0x29, 0xb6, 0x7f, + 0x0d, 0xde, 0x41, 0xf8, 0x38, 0xd6, 0x39, 0xc4, 0xfe, 0x5b, 0x0b, 0xba, 0xf9, 0xd4, 0x77, 0xb4, + 0xc1, 0x74, 0x87, 0xa5, 0xb9, 0x2e, 0xf6, 0x87, 0xc0, 0xbc, 0x38, 0x0c, 0xb1, 0xe8, 0xd0, 0x67, + 0x11, 0xca, 0x0f, 0xba, 0x67, 0xec, 0x69, 0x0a, 0xaa, 0x7d, 0x07, 0x71, 0x2c, 0xac, 0x33, 0xdc, + 0x74, 0x23, 0xa9, 0x0e, 0x5a, 0xdd, 0x02, 0xf3, 0x51, 0xf0, 0xad, 0xb0, 0xaf, 0xc1, 0xca, 0xce, + 0x50, 0x78, 0x67, 0x5b, 0xfe, 0x28, 0x88, 0xf4, 0x66, 0xed, 0xef, 0x2c, 0x60, 0x45, 0xf4, 0x5d, + 0xf6, 0xf1, 0xb6, 0x9f, 0xba, 0x36, 0x60, 0x65, 0xe8, 0x4a, 0x27, 0x11, 0x91, 0x1f, 0x44, 0xa7, + 0x8e, 0x8b, 0x6f, 0xa2, 0x1d, 0x35, 0x78, 0x77, 0xe8, 0xca, 0x43, 0x85, 0x93, 0x00, 0xf6, 0x3f, + 0x59, 0x70, 0x7b, 0x4f, 0x57, 0x60, 0xad, 0x68, 0x2e, 0xd0, 0x0c, 0xb9, 0x79, 0x16, 0x1c, 0xe8, + 0xac, 0x77, 0x3a, 0xd0, 0xdd, 0x85, 0x96, 0xae, 0xea, 0x85, 0x70, 0x07, 0x05, 0xbd, 0xd0, 0xfd, + 0x77, 0xaa, 0xde, 0xa9, 0x38, 0x54, 0xf6, 0x6a, 0x69, 0x8c, 0x58, 0xee, 0xc3, 0x32, 0x1d, 0x25, + 0xa2, 0xcc, 0x09, 0x45, 0x74, 0x9a, 0x0d, 0xb5, 0xd2, 0x3b, 0x1a, 0x7d, 0x46, 0xa0, 0xbd, 0x06, + 0x77, 0x2e, 0xdb, 0x8c, 0x52, 0xb4, 0xfd, 0x57, 0x16, 0xac, 0xce, 0xb1, 0x1c, 0xb9, 0x93, 0xdf, + 0xe1, 0x66, 0x5f, 0xdf, 0x49, 0x79, 0xd1, 0x4e, 0x6e, 0xc3, 0xad, 0x85, 0x62, 0xea, 0x6d, 0xfc, + 0xa9, 0xbe, 0xdb, 0xf6, 0xdd, 0xcc, 0x65, 0x1b, 0x26, 0x5b, 0x58, 0xb3, 0x57, 0x4c, 0xbb, 0xfa, + 0x8e, 0x9a, 0x0e, 0xa4, 0x3a, 0x6b, 0x7c, 0x06, 0x2d, 0x72, 0xdc, 0xd3, 0x34, 0x1e, 0x27, 0xe6, + 0x42, 0xf9, 0xc6, 0xfc, 0x8c, 0x2f, 0x91, 0xca, 0xe9, 0x3b, 0x21, 0x3d, 0x4a, 0x75, 0xd2, 0x42, + 0x0b, 0xe5, 0xf7, 0x74, 0x74, 0x08, 0xc3, 0x08, 0xba, 0x0b, 0x68, 0xaa, 0x38, 0x9c, 0x88, 0xc2, + 0x71, 0x0b, 0x0c, 0xa4, 0x8e, 0x62, 0x23, 0xf7, 0x1c, 0x69, 0xca, 0x68, 0xd5, 0x91, 0x7b, 0xae, + 0xe1, 0x20, 0x42, 0xb8, 0xaa, 0xe1, 0x20, 0x3a, 0x46, 0x09, 0xe9, 0x23, 0x79, 0x9e, 0xd8, 0xea, + 0x3a, 0xb1, 0x15, 0xbe, 0x97, 0x99, 0xc4, 0xd6, 0x1a, 0x4d, 0x07, 0xf6, 0xbf, 0x58, 0xd0, 0x99, + 0x91, 0x7f, 0x51, 0xb3, 0xcf, 0x7e, 0x06, 0xdd, 0xe9, 0xd5, 0xbe, 0x3a, 0xc4, 0x97, 0xae, 0xd0, + 0x5a, 0x27, 0xbf, 0xe7, 0xa7, 0x13, 0xea, 0x54, 0xe4, 0x72, 0x51, 0xe4, 0x4b, 0x36, 0xf8, 0x00, + 0xba, 0xc8, 0x5d, 0x54, 0x8e, 0xda, 0x69, 0x47, 0x85, 0xbe, 0xd1, 0xcf, 0x4d, 0xa8, 0x69, 0x57, + 0x50, 0xdf, 0x57, 0xf4, 0xc8, 0xfe, 0xd7, 0x0a, 0xb4, 0x8b, 0xd2, 0x14, 0x2e, 0xbb, 0xad, 0x99, + 0xcb, 0x6e, 0xb3, 0xd1, 0x52, 0x61, 0xa3, 0x1b, 0xb0, 0x12, 0x8d, 0x47, 0x03, 0x91, 0x3a, 0xf1, + 0x89, 0x23, 0xa2, 0x2c, 0x0d, 0x84, 0x92, 0xba, 0xcc, 0xbb, 0x8a, 0xf0, 0xf2, 0x64, 0x4f, 0xc1, + 0x85, 0x6d, 0x55, 0x16, 0x6f, 0xab, 0x5a, 0xdc, 0xd6, 0x9c, 0xbd, 0x6b, 0xaf, 0xd9, 0xfb, 0x16, + 0x34, 0xf5, 0xed, 0x5c, 0xe0, 0x93, 0xf9, 0xca, 0xbc, 0xa1, 0x80, 0xf9, 0xcb, 0xad, 0xc6, 0xe5, + 0x05, 0xb1, 0xb9, 0xe0, 0x5a, 0x73, 0xfa, 0x31, 0xe8, 0x43, 0xa8, 0xd0, 0x19, 0xbc, 0x45, 0xce, + 0xd1, 0x2b, 0xd6, 0x47, 0x3a, 0x6b, 0x13, 0x15, 0x97, 0x0b, 0xa4, 0x83, 0x4e, 0x42, 0x47, 0x91, + 0x06, 0xaf, 0x05, 0x92, 0x3e, 0xd4, 0xbf, 0x0f, 0x0d, 0x75, 0xe2, 0xd7, 0xc7, 0x90, 0x32, 0xaf, + 0xd3, 0xf8, 0xc0, 0x2f, 0x18, 0x63, 0xb9, 0x68, 0x0c, 0xf6, 0x7b, 0xb0, 0x8a, 0x3a, 0x1a, 0x88, + 0x53, 0xd2, 0x94, 0x13, 0x44, 0x8e, 0x2f, 0x4e, 0xdc, 0x71, 0x98, 0x39, 0xde, 0x09, 0x1d, 0x3c, + 0x2a, 0xfc, 0xc6, 0x28, 0x88, 0xb6, 0x91, 0xe1, 0x58, 0x1e, 0x44, 0xbb, 0x8a, 0xba, 0x73, 0x42, + 0xf9, 0x8d, 0x3e, 0x25, 0xc7, 0x27, 0x27, 0x52, 0x64, 0x74, 0x0a, 0xa9, 0xf0, 0x16, 0x61, 0x2f, + 0x09, 0x9a, 0xb2, 0xe8, 0x77, 0xaf, 0x14, 0x58, 0x54, 0x46, 0x58, 0x78, 0x05, 0xc1, 0xde, 0xf1, + 0x0a, 0xa2, 0x14, 0x4c, 0xec, 0x3f, 0xb1, 0x60, 0xa5, 0x78, 0xfd, 0xb2, 0x67, 0x6a, 0xe4, 0xd0, + 0x4d, 0x12, 0x11, 0x39, 0xae, 0xb9, 0x17, 0x6e, 0x28, 0x60, 0x8b, 0xee, 0x2b, 0xa9, 0x02, 0x39, + 0x5e, 0xec, 0x9b, 0x9c, 0xd6, 0x24, 0x64, 0x27, 0xf6, 0xb1, 0x78, 0xa9, 0x7f, 0xb9, 0x38, 0x23, + 0x21, 0x25, 0x96, 0x6f, 0x95, 0xc0, 0xdb, 0x04, 0x3e, 0x57, 0xd8, 0x4c, 0x02, 0x31, 0x5f, 0x5d, + 0x54, 0x02, 0xd9, 0x78, 0x01, 0x6b, 0x6f, 0xfa, 0x63, 0x0a, 0xeb, 0x42, 0xeb, 0xe7, 0x74, 0x73, + 0x42, 0xff, 0xbf, 0xe8, 0x2d, 0xb1, 0x0e, 0x34, 0x7f, 0xe1, 0x06, 0xd9, 0x56, 0x92, 0x84, 0x17, + 0x3d, 0x8b, 0x01, 0xd4, 0x9e, 0x04, 0x51, 0x20, 0x87, 0xbd, 0xd2, 0xc6, 0x57, 0x70, 0xe7, 0xea, + 0x3f, 0x8e, 0xb0, 0x15, 0xe8, 0xe4, 0x93, 0x77, 0xe3, 0x08, 0xd7, 0xbb, 0x01, 0x2b, 0x85, 0x17, + 0xa8, 0x4f, 0xec, 0x3d, 0x6b, 0xe3, 0x0f, 0xa0, 0x3b, 0xa7, 0x55, 0xd6, 0x82, 0xfa, 0xcf, 0x5f, + 0x3c, 0x7d, 0xf1, 0xf2, 0x17, 0x2f, 0x7a, 0x4b, 0xac, 0x0e, 0xe5, 0x67, 0xdf, 0x7c, 0xaa, 0x04, + 0x38, 0x7a, 0xb1, 0x75, 0x78, 0xf8, 0x47, 0xbd, 0x12, 0x6b, 0x40, 0xe5, 0x9b, 0xa3, 0xe3, 0xdd, + 0x5e, 0x79, 0x63, 0x2d, 0xff, 0x7f, 0x08, 0x2a, 0xaa, 0x01, 0x95, 0xa3, 0x9d, 0x2d, 0x9c, 0xd6, + 0x80, 0xca, 0x93, 0x83, 0x67, 0x7b, 0x3d, 0x6b, 0xe3, 0x36, 0xb4, 0x0a, 0x29, 0x8d, 0xd5, 0xa0, + 0xf4, 0xf5, 0x8f, 0x7b, 0x4b, 0xf4, 0xfb, 0xb0, 0x67, 0x6d, 0xdc, 0x85, 0x86, 0x71, 0x6a, 0x7c, + 0xc5, 0xae, 0x08, 0x45, 0x26, 0xd4, 0x7b, 0x0f, 0xc7, 0x59, 0xcf, 0x7a, 0xf8, 0xdf, 0x25, 0xa8, + 0xa9, 0x57, 0xb0, 0xcf, 0x41, 0xff, 0x09, 0x89, 0xdd, 0x98, 0xfb, 0x42, 0xa8, 0x14, 0xb9, 0x7a, + 0x73, 0x1e, 0xd6, 0xd5, 0x64, 0xe9, 0x13, 0x8b, 0x1d, 0xc2, 0x35, 0xea, 0x4b, 0x8a, 0xdd, 0xc1, + 0xcb, 0x84, 0xbd, 0x9f, 0xfb, 0xd6, 0x7c, 0x2b, 0xb3, 0xba, 0xba, 0x88, 0x54, 0x58, 0x71, 0x08, + 0x37, 0x16, 0x9a, 0x81, 0x7d, 0xf8, 0x36, 0x7f, 0x47, 0x5a, 0xbd, 0xff, 0x06, 0x2e, 0xf5, 0xa6, + 0x75, 0xeb, 0x13, 0x8b, 0xfd, 0x0c, 0x8f, 0xf1, 0xc4, 0xc4, 0x6e, 0xce, 0xcd, 0x32, 0xab, 0xbd, + 0xf7, 0x1a, 0x6e, 0x24, 0xc5, 0xd9, 0x9e, 0xea, 0x71, 0x59, 0xe1, 0x8b, 0x45, 0xb1, 0x47, 0x9e, + 0xce, 0x9e, 0x6b, 0x86, 0xed, 0xa5, 0x87, 0x7f, 0x6f, 0x41, 0x77, 0xae, 0x52, 0xb3, 0x6f, 0xa0, + 0xae, 0x9b, 0x17, 0x96, 0xef, 0xe2, 0xca, 0x26, 0x6b, 0xf5, 0xc1, 0x9b, 0xd8, 0x72, 0x69, 0xff, + 0x10, 0x2a, 0xd8, 0x16, 0x33, 0xfb, 0x92, 0x19, 0x85, 0x6e, 0x66, 0xf5, 0xde, 0x95, 0x3c, 0x66, + 0xc9, 0xed, 0x07, 0xff, 0xfe, 0xd7, 0x0d, 0xeb, 0xd7, 0xdf, 0xdf, 0xb1, 0x7e, 0xf3, 0xfd, 0x1d, + 0xeb, 0x3f, 0xbe, 0xbf, 0x63, 0xfd, 0xe5, 0x7f, 0xde, 0x59, 0x82, 0x5e, 0x9c, 0x9e, 0x6e, 0x66, + 0xc1, 0xd9, 0x64, 0xf3, 0x6c, 0x42, 0xff, 0x39, 0x1b, 0xd4, 0xe8, 0xe7, 0xd1, 0xff, 0x04, 0x00, + 0x00, 0xff, 0xff, 0x1c, 0x1b, 0xef, 0xfe, 0xf7, 0x26, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -4119,6 +4343,9 @@ type BackupClient interface { // we need stop all schedule first and make sure all in-flight schedule has finished. // this rpc check all pending conf change for leader. CheckPendingAdminOp(ctx context.Context, in *CheckAdminRequest, opts ...grpc.CallOption) (Backup_CheckPendingAdminOpClient, error) + // PrepareSnapshotBackup is an advanced version of preparing snapshot backup. + // Check the defination of `PrepareSnapshotBackupRequest` for more. + PrepareSnapshotBackup(ctx context.Context, opts ...grpc.CallOption) (Backup_PrepareSnapshotBackupClient, error) // prepare is used for file-copy backup. before we start the backup for a TiKV. // we need invoke this function to generate the SST files map. or we get nothing to backup. Prepare(ctx context.Context, in *PrepareRequest, opts ...grpc.CallOption) (*PrepareResponse, error) @@ -4199,6 +4426,37 @@ func (x *backupCheckPendingAdminOpClient) Recv() (*CheckAdminResponse, error) { return m, nil } +func (c *backupClient) PrepareSnapshotBackup(ctx context.Context, opts ...grpc.CallOption) (Backup_PrepareSnapshotBackupClient, error) { + stream, err := c.cc.NewStream(ctx, &_Backup_serviceDesc.Streams[2], "/backup.Backup/PrepareSnapshotBackup", opts...) + if err != nil { + return nil, err + } + x := &backupPrepareSnapshotBackupClient{stream} + return x, nil +} + +type Backup_PrepareSnapshotBackupClient interface { + Send(*PrepareSnapshotBackupRequest) error + Recv() (*PrepareSnapshotBackupResponse, error) + grpc.ClientStream +} + +type backupPrepareSnapshotBackupClient struct { + grpc.ClientStream +} + +func (x *backupPrepareSnapshotBackupClient) Send(m *PrepareSnapshotBackupRequest) error { + return x.ClientStream.SendMsg(m) +} + +func (x *backupPrepareSnapshotBackupClient) Recv() (*PrepareSnapshotBackupResponse, error) { + m := new(PrepareSnapshotBackupResponse) + if err := x.ClientStream.RecvMsg(m); err != nil { + return nil, err + } + return m, nil +} + func (c *backupClient) Prepare(ctx context.Context, in *PrepareRequest, opts ...grpc.CallOption) (*PrepareResponse, error) { out := new(PrepareResponse) err := c.cc.Invoke(ctx, "/backup.Backup/prepare", in, out, opts...) @@ -4224,6 +4482,9 @@ type BackupServer interface { // we need stop all schedule first and make sure all in-flight schedule has finished. // this rpc check all pending conf change for leader. CheckPendingAdminOp(*CheckAdminRequest, Backup_CheckPendingAdminOpServer) error + // PrepareSnapshotBackup is an advanced version of preparing snapshot backup. + // Check the defination of `PrepareSnapshotBackupRequest` for more. + PrepareSnapshotBackup(Backup_PrepareSnapshotBackupServer) error // prepare is used for file-copy backup. before we start the backup for a TiKV. // we need invoke this function to generate the SST files map. or we get nothing to backup. Prepare(context.Context, *PrepareRequest) (*PrepareResponse, error) @@ -4242,6 +4503,9 @@ func (*UnimplementedBackupServer) Backup(req *BackupRequest, srv Backup_BackupSe func (*UnimplementedBackupServer) CheckPendingAdminOp(req *CheckAdminRequest, srv Backup_CheckPendingAdminOpServer) error { return status.Errorf(codes.Unimplemented, "method CheckPendingAdminOp not implemented") } +func (*UnimplementedBackupServer) PrepareSnapshotBackup(srv Backup_PrepareSnapshotBackupServer) error { + return status.Errorf(codes.Unimplemented, "method PrepareSnapshotBackup not implemented") +} func (*UnimplementedBackupServer) Prepare(ctx context.Context, req *PrepareRequest) (*PrepareResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method Prepare not implemented") } @@ -4295,6 +4559,32 @@ func (x *backupCheckPendingAdminOpServer) Send(m *CheckAdminResponse) error { return x.ServerStream.SendMsg(m) } +func _Backup_PrepareSnapshotBackup_Handler(srv interface{}, stream grpc.ServerStream) error { + return srv.(BackupServer).PrepareSnapshotBackup(&backupPrepareSnapshotBackupServer{stream}) +} + +type Backup_PrepareSnapshotBackupServer interface { + Send(*PrepareSnapshotBackupResponse) error + Recv() (*PrepareSnapshotBackupRequest, error) + grpc.ServerStream +} + +type backupPrepareSnapshotBackupServer struct { + grpc.ServerStream +} + +func (x *backupPrepareSnapshotBackupServer) Send(m *PrepareSnapshotBackupResponse) error { + return x.ServerStream.SendMsg(m) +} + +func (x *backupPrepareSnapshotBackupServer) Recv() (*PrepareSnapshotBackupRequest, error) { + m := new(PrepareSnapshotBackupRequest) + if err := x.ServerStream.RecvMsg(m); err != nil { + return nil, err + } + return m, nil +} + func _Backup_Prepare_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(PrepareRequest) if err := dec(in); err != nil { @@ -4355,6 +4645,12 @@ var _Backup_serviceDesc = grpc.ServiceDesc{ Handler: _Backup_CheckPendingAdminOp_Handler, ServerStreams: true, }, + { + StreamName: "PrepareSnapshotBackup", + Handler: _Backup_PrepareSnapshotBackup_Handler, + ServerStreams: true, + ClientStreams: true, + }, }, Metadata: "brpb.proto", } @@ -4471,7 +4767,7 @@ var _ExternalStorage_serviceDesc = grpc.ServiceDesc{ Metadata: "brpb.proto", } -func (m *BackupMeta) Marshal() (dAtA []byte, err error) { +func (m *PrepareSnapshotBackupRequest) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalToSizedBuffer(dAtA[:size]) @@ -4481,12 +4777,12 @@ func (m *BackupMeta) Marshal() (dAtA []byte, err error) { return dAtA[:n], nil } -func (m *BackupMeta) MarshalTo(dAtA []byte) (int, error) { +func (m *PrepareSnapshotBackupRequest) MarshalTo(dAtA []byte) (int, error) { size := m.Size() return m.MarshalToSizedBuffer(dAtA[:size]) } -func (m *BackupMeta) MarshalToSizedBuffer(dAtA []byte) (int, error) { +func (m *PrepareSnapshotBackupRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { i := len(dAtA) _ = i var l int @@ -4495,17 +4791,15 @@ func (m *BackupMeta) MarshalToSizedBuffer(dAtA []byte) (int, error) { i -= len(m.XXX_unrecognized) copy(dAtA[i:], m.XXX_unrecognized) } - if m.BackupSize != 0 { - i = encodeVarintBrpb(dAtA, i, uint64(m.BackupSize)) + if m.LeaseInSeconds != 0 { + i = encodeVarintBrpb(dAtA, i, uint64(m.LeaseInSeconds)) i-- - dAtA[i] = 0x1 - i-- - dAtA[i] = 0xc8 + dAtA[i] = 0x18 } - if len(m.Ranges) > 0 { - for iNdEx := len(m.Ranges) - 1; iNdEx >= 0; iNdEx-- { + if len(m.Regions) > 0 { + for iNdEx := len(m.Regions) - 1; iNdEx >= 0; iNdEx-- { { - size, err := m.Ranges[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + size, err := m.Regions[iNdEx].MarshalToSizedBuffer(dAtA[:i]) if err != nil { return 0, err } @@ -4513,7 +4807,126 @@ func (m *BackupMeta) MarshalToSizedBuffer(dAtA []byte) (int, error) { i = encodeVarintBrpb(dAtA, i, uint64(size)) } i-- - dAtA[i] = 0x1 + dAtA[i] = 0x12 + } + } + if m.Ty != 0 { + i = encodeVarintBrpb(dAtA, i, uint64(m.Ty)) + i-- + dAtA[i] = 0x8 + } + return len(dAtA) - i, nil +} + +func (m *PrepareSnapshotBackupResponse) 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 *PrepareSnapshotBackupResponse) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *PrepareSnapshotBackupResponse) 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 m.LastLeaseIsValid { + i-- + if m.LastLeaseIsValid { + dAtA[i] = 1 + } else { + dAtA[i] = 0 + } + i-- + dAtA[i] = 0x20 + } + if m.Error != nil { + { + size, err := m.Error.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintBrpb(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x1a + } + if m.Region != nil { + { + size, err := m.Region.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintBrpb(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x12 + } + if m.Ty != 0 { + i = encodeVarintBrpb(dAtA, i, uint64(m.Ty)) + i-- + dAtA[i] = 0x8 + } + return len(dAtA) - i, nil +} + +func (m *BackupMeta) 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 *BackupMeta) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *BackupMeta) 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 m.BackupSize != 0 { + i = encodeVarintBrpb(dAtA, i, uint64(m.BackupSize)) + i-- + dAtA[i] = 0x1 + i-- + dAtA[i] = 0xc8 + } + if len(m.Ranges) > 0 { + for iNdEx := len(m.Ranges) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.Ranges[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintBrpb(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x1 i-- dAtA[i] = 0xc2 } @@ -7511,6 +7924,56 @@ func encodeVarintBrpb(dAtA []byte, offset int, v uint64) int { dAtA[offset] = uint8(v) return base } +func (m *PrepareSnapshotBackupRequest) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.Ty != 0 { + n += 1 + sovBrpb(uint64(m.Ty)) + } + if len(m.Regions) > 0 { + for _, e := range m.Regions { + l = e.Size() + n += 1 + l + sovBrpb(uint64(l)) + } + } + if m.LeaseInSeconds != 0 { + n += 1 + sovBrpb(uint64(m.LeaseInSeconds)) + } + if m.XXX_unrecognized != nil { + n += len(m.XXX_unrecognized) + } + return n +} + +func (m *PrepareSnapshotBackupResponse) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.Ty != 0 { + n += 1 + sovBrpb(uint64(m.Ty)) + } + if m.Region != nil { + l = m.Region.Size() + n += 1 + l + sovBrpb(uint64(l)) + } + if m.Error != nil { + l = m.Error.Size() + n += 1 + l + sovBrpb(uint64(l)) + } + if m.LastLeaseIsValid { + n += 2 + } + if m.XXX_unrecognized != nil { + n += len(m.XXX_unrecognized) + } + return n +} + func (m *BackupMeta) Size() (n int) { if m == nil { return 0 @@ -8958,6 +9421,291 @@ func sovBrpb(x uint64) (n int) { func sozBrpb(x uint64) (n int) { return sovBrpb(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } +func (m *PrepareSnapshotBackupRequest) 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 ErrIntOverflowBrpb + } + 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: PrepareSnapshotBackupRequest: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: PrepareSnapshotBackupRequest: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Ty", wireType) + } + m.Ty = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowBrpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.Ty |= PrepareSnapshotBackupRequestType(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Regions", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowBrpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthBrpb + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthBrpb + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Regions = append(m.Regions, &metapb.Region{}) + if err := m.Regions[len(m.Regions)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 3: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field LeaseInSeconds", wireType) + } + m.LeaseInSeconds = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowBrpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.LeaseInSeconds |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + default: + iNdEx = preIndex + skippy, err := skipBrpb(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthBrpb + } + 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 *PrepareSnapshotBackupResponse) 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 ErrIntOverflowBrpb + } + 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: PrepareSnapshotBackupResponse: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: PrepareSnapshotBackupResponse: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Ty", wireType) + } + m.Ty = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowBrpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.Ty |= PrepareSnapshotBackupEventType(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Region", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowBrpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthBrpb + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthBrpb + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.Region == nil { + m.Region = &metapb.Region{} + } + if err := m.Region.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 3: + 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 ErrIntOverflowBrpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthBrpb + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthBrpb + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.Error == nil { + m.Error = &errorpb.Error{} + } + if err := m.Error.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 4: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field LastLeaseIsValid", wireType) + } + var v int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowBrpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.LastLeaseIsValid = bool(v != 0) + default: + iNdEx = preIndex + skippy, err := skipBrpb(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthBrpb + } + 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 *BackupMeta) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 diff --git a/proto/brpb.proto b/proto/brpb.proto index 74230917f..447ee3541 100644 --- a/proto/brpb.proto +++ b/proto/brpb.proto @@ -15,6 +15,50 @@ option (rustproto.lite_runtime_all) = true; option java_package = "org.tikv.kvproto"; +enum PrepareSnapshotBackupRequestType { + // Update the lease of suspending some commands (Which may impact the + // disk snapshot backup) to be proposed. + // As long as the lease is kept, those commands may not be proposed. + // If the client has gone, the lease will be destroyed after its TTL. + UpdateLease = 0; + // Wait a region apply to the last index. + WaitApply = 1; + // Hint before closing the stream. Server will go back to normal after this. + // This should also return a final "UpdateLeaseResult" to the client, which + // indices whether the last lease is valid. + Finish = 2; +} + +message PrepareSnapshotBackupRequest { + // The type of the request. + PrepareSnapshotBackupRequestType ty = 1; + // The regions related to the request. + // If the request is "UpdateLease" or "Finish", it should be empty. + repeated metapb.Region regions = 2; + // The lease duration for "UpdateLease" request. + uint64 lease_in_seconds = 3; +} + +enum PrepareSnapshotBackupEventType { + // A region has finished wait apply. + WaitApplyDone = 0; + // A lease has been updated. + UpdateLeaseResult = 1; +} + +message PrepareSnapshotBackupResponse { + // The type of the event. + PrepareSnapshotBackupEventType ty = 1; + // The region bind to the type. + // For "WaitApplyDone". + metapb.Region region = 2; + // The error of the execution. + errorpb.Error error = 3; + // Whether the last lease is valid. + // For "UpdateLease" and "Finish". + bool last_lease_is_valid = 4; +} + // The message save the metadata of a backup. message BackupMeta { // ID and version of backuped cluster. @@ -532,11 +576,16 @@ message CheckAdminResponse { service Backup { rpc backup(BackupRequest) returns (stream BackupResponse) {} + // CheckPendingAdminOp used for snapshot backup. before we start snapshot for a TiKV. // we need stop all schedule first and make sure all in-flight schedule has finished. // this rpc check all pending conf change for leader. rpc CheckPendingAdminOp(CheckAdminRequest) returns (stream CheckAdminResponse) {} + // PrepareSnapshotBackup is an advanced version of preparing snapshot backup. + // Check the defination of `PrepareSnapshotBackupRequest` for more. + rpc PrepareSnapshotBackup(stream PrepareSnapshotBackupRequest) returns (stream PrepareSnapshotBackupResponse); + // prepare is used for file-copy backup. before we start the backup for a TiKV. // we need invoke this function to generate the SST files map. or we get nothing to backup. rpc prepare(PrepareRequest) returns (PrepareResponse) {} diff --git a/scripts/proto.lock b/scripts/proto.lock index 3ff6b52d2..3f408dab7 100644 --- a/scripts/proto.lock +++ b/scripts/proto.lock @@ -161,6 +161,34 @@ "protopath": "brpb.proto", "def": { "enums": [ + { + "name": "PrepareSnapshotBackupRequestType", + "enum_fields": [ + { + "name": "UpdateLease" + }, + { + "name": "WaitApply", + "integer": 1 + }, + { + "name": "Finish", + "integer": 2 + } + ] + }, + { + "name": "PrepareSnapshotBackupEventType", + "enum_fields": [ + { + "name": "WaitApplyDone" + }, + { + "name": "UpdateLeaseResult", + "integer": 1 + } + ] + }, { "name": "CompressionType", "enum_fields": [ @@ -219,6 +247,52 @@ } ], "messages": [ + { + "name": "PrepareSnapshotBackupRequest", + "fields": [ + { + "id": 1, + "name": "ty", + "type": "PrepareSnapshotBackupRequestType" + }, + { + "id": 2, + "name": "regions", + "type": "metapb.Region", + "is_repeated": true + }, + { + "id": 3, + "name": "lease_in_seconds", + "type": "uint64" + } + ] + }, + { + "name": "PrepareSnapshotBackupResponse", + "fields": [ + { + "id": 1, + "name": "ty", + "type": "PrepareSnapshotBackupEventType" + }, + { + "id": 2, + "name": "region", + "type": "metapb.Region" + }, + { + "id": 3, + "name": "error", + "type": "errorpb.Error" + }, + { + "id": 4, + "name": "last_lease_is_valid", + "type": "bool" + } + ] + }, { "name": "BackupMeta", "fields": [ @@ -1581,6 +1655,13 @@ "out_type": "CheckAdminResponse", "out_streamed": true }, + { + "name": "PrepareSnapshotBackup", + "in_type": "PrepareSnapshotBackupRequest", + "out_type": "PrepareSnapshotBackupResponse", + "in_streamed": true, + "out_streamed": true + }, { "name": "prepare", "in_type": "PrepareRequest",