From 49a3b7cb1a146955204f4ce0899c22f01e3f9696 Mon Sep 17 00:00:00 2001 From: hillium Date: Thu, 28 Sep 2023 10:42:43 +0800 Subject: [PATCH] cherry-pick Signed-off-by: hillium --- pkg/import_sstpb/import_sstpb.pb.go | 786 ++++++++++++++++++++++------ proto/import_sstpb.proto | 21 + 2 files changed, 654 insertions(+), 153 deletions(-) diff --git a/pkg/import_sstpb/import_sstpb.pb.go b/pkg/import_sstpb/import_sstpb.pb.go index fc8b77289..36fe28e7d 100644 --- a/pkg/import_sstpb/import_sstpb.pb.go +++ b/pkg/import_sstpb/import_sstpb.pb.go @@ -79,7 +79,123 @@ func (x Pair_OP) String() string { } func (Pair_OP) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_4d076b7935cfab6b, []int{17, 0} + return fileDescriptor_4d076b7935cfab6b, []int{19, 0} +} + +type SuspendImportRPCRequest struct { + // whether to suspend new imports. + ShouldSuspendImports bool `protobuf:"varint,1,opt,name=should_suspend_imports,json=shouldSuspendImports,proto3" json:"should_suspend_imports,omitempty"` + // the duration of import service suspension + // when should_deny_imports is false, + // this won't take effect. + DurationInSecs uint64 `protobuf:"varint,2,opt,name=duration_in_secs,json=durationInSecs,proto3" json:"duration_in_secs,omitempty"` + // The identifier for the caller. + Caller string `protobuf:"bytes,3,opt,name=caller,proto3" json:"caller,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *SuspendImportRPCRequest) Reset() { *m = SuspendImportRPCRequest{} } +func (m *SuspendImportRPCRequest) String() string { return proto.CompactTextString(m) } +func (*SuspendImportRPCRequest) ProtoMessage() {} +func (*SuspendImportRPCRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_4d076b7935cfab6b, []int{0} +} +func (m *SuspendImportRPCRequest) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *SuspendImportRPCRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_SuspendImportRPCRequest.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 *SuspendImportRPCRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_SuspendImportRPCRequest.Merge(m, src) +} +func (m *SuspendImportRPCRequest) XXX_Size() int { + return m.Size() +} +func (m *SuspendImportRPCRequest) XXX_DiscardUnknown() { + xxx_messageInfo_SuspendImportRPCRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_SuspendImportRPCRequest proto.InternalMessageInfo + +func (m *SuspendImportRPCRequest) GetShouldSuspendImports() bool { + if m != nil { + return m.ShouldSuspendImports + } + return false +} + +func (m *SuspendImportRPCRequest) GetDurationInSecs() uint64 { + if m != nil { + return m.DurationInSecs + } + return 0 +} + +func (m *SuspendImportRPCRequest) GetCaller() string { + if m != nil { + return m.Caller + } + return "" +} + +type SuspendImportRPCResponse struct { + // The last state before this RPC. + AlreadySuspended bool `protobuf:"varint,1,opt,name=already_suspended,json=alreadySuspended,proto3" json:"already_suspended,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *SuspendImportRPCResponse) Reset() { *m = SuspendImportRPCResponse{} } +func (m *SuspendImportRPCResponse) String() string { return proto.CompactTextString(m) } +func (*SuspendImportRPCResponse) ProtoMessage() {} +func (*SuspendImportRPCResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_4d076b7935cfab6b, []int{1} +} +func (m *SuspendImportRPCResponse) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *SuspendImportRPCResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_SuspendImportRPCResponse.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 *SuspendImportRPCResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_SuspendImportRPCResponse.Merge(m, src) +} +func (m *SuspendImportRPCResponse) XXX_Size() int { + return m.Size() +} +func (m *SuspendImportRPCResponse) XXX_DiscardUnknown() { + xxx_messageInfo_SuspendImportRPCResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_SuspendImportRPCResponse proto.InternalMessageInfo + +func (m *SuspendImportRPCResponse) GetAlreadySuspended() bool { + if m != nil { + return m.AlreadySuspended + } + return false } type SwitchModeRequest struct { @@ -93,7 +209,7 @@ func (m *SwitchModeRequest) Reset() { *m = SwitchModeRequest{} } func (m *SwitchModeRequest) String() string { return proto.CompactTextString(m) } func (*SwitchModeRequest) ProtoMessage() {} func (*SwitchModeRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_4d076b7935cfab6b, []int{0} + return fileDescriptor_4d076b7935cfab6b, []int{2} } func (m *SwitchModeRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -139,7 +255,7 @@ func (m *SwitchModeResponse) Reset() { *m = SwitchModeResponse{} } func (m *SwitchModeResponse) String() string { return proto.CompactTextString(m) } func (*SwitchModeResponse) ProtoMessage() {} func (*SwitchModeResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_4d076b7935cfab6b, []int{1} + return fileDescriptor_4d076b7935cfab6b, []int{3} } func (m *SwitchModeResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -180,7 +296,7 @@ func (m *Range) Reset() { *m = Range{} } func (m *Range) String() string { return proto.CompactTextString(m) } func (*Range) ProtoMessage() {} func (*Range) Descriptor() ([]byte, []int) { - return fileDescriptor_4d076b7935cfab6b, []int{2} + return fileDescriptor_4d076b7935cfab6b, []int{4} } func (m *Range) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -249,7 +365,7 @@ func (m *SSTMeta) Reset() { *m = SSTMeta{} } func (m *SSTMeta) String() string { return proto.CompactTextString(m) } func (*SSTMeta) ProtoMessage() {} func (*SSTMeta) Descriptor() ([]byte, []int) { - return fileDescriptor_4d076b7935cfab6b, []int{3} + return fileDescriptor_4d076b7935cfab6b, []int{5} } func (m *SSTMeta) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -377,7 +493,7 @@ func (m *RewriteRule) Reset() { *m = RewriteRule{} } func (m *RewriteRule) String() string { return proto.CompactTextString(m) } func (*RewriteRule) ProtoMessage() {} func (*RewriteRule) Descriptor() ([]byte, []int) { - return fileDescriptor_4d076b7935cfab6b, []int{4} + return fileDescriptor_4d076b7935cfab6b, []int{6} } func (m *RewriteRule) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -441,7 +557,7 @@ func (m *UploadRequest) Reset() { *m = UploadRequest{} } func (m *UploadRequest) String() string { return proto.CompactTextString(m) } func (*UploadRequest) ProtoMessage() {} func (*UploadRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_4d076b7935cfab6b, []int{5} + return fileDescriptor_4d076b7935cfab6b, []int{7} } func (m *UploadRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -525,7 +641,7 @@ func (m *UploadResponse) Reset() { *m = UploadResponse{} } func (m *UploadResponse) String() string { return proto.CompactTextString(m) } func (*UploadResponse) ProtoMessage() {} func (*UploadResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_4d076b7935cfab6b, []int{6} + return fileDescriptor_4d076b7935cfab6b, []int{8} } func (m *UploadResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -566,7 +682,7 @@ func (m *IngestRequest) Reset() { *m = IngestRequest{} } func (m *IngestRequest) String() string { return proto.CompactTextString(m) } func (*IngestRequest) ProtoMessage() {} func (*IngestRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_4d076b7935cfab6b, []int{7} + return fileDescriptor_4d076b7935cfab6b, []int{9} } func (m *IngestRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -621,7 +737,7 @@ func (m *MultiIngestRequest) Reset() { *m = MultiIngestRequest{} } func (m *MultiIngestRequest) String() string { return proto.CompactTextString(m) } func (*MultiIngestRequest) ProtoMessage() {} func (*MultiIngestRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_4d076b7935cfab6b, []int{8} + return fileDescriptor_4d076b7935cfab6b, []int{10} } func (m *MultiIngestRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -675,7 +791,7 @@ func (m *IngestResponse) Reset() { *m = IngestResponse{} } func (m *IngestResponse) String() string { return proto.CompactTextString(m) } func (*IngestResponse) ProtoMessage() {} func (*IngestResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_4d076b7935cfab6b, []int{9} + return fileDescriptor_4d076b7935cfab6b, []int{11} } func (m *IngestResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -726,7 +842,7 @@ func (m *CompactRequest) Reset() { *m = CompactRequest{} } func (m *CompactRequest) String() string { return proto.CompactTextString(m) } func (*CompactRequest) ProtoMessage() {} func (*CompactRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_4d076b7935cfab6b, []int{10} + return fileDescriptor_4d076b7935cfab6b, []int{12} } func (m *CompactRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -779,7 +895,7 @@ func (m *CompactResponse) Reset() { *m = CompactResponse{} } func (m *CompactResponse) String() string { return proto.CompactTextString(m) } func (*CompactResponse) ProtoMessage() {} func (*CompactResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_4d076b7935cfab6b, []int{11} + return fileDescriptor_4d076b7935cfab6b, []int{13} } func (m *CompactResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -847,7 +963,7 @@ func (m *DownloadRequest) Reset() { *m = DownloadRequest{} } func (m *DownloadRequest) String() string { return proto.CompactTextString(m) } func (*DownloadRequest) ProtoMessage() {} func (*DownloadRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_4d076b7935cfab6b, []int{12} + return fileDescriptor_4d076b7935cfab6b, []int{14} } func (m *DownloadRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -940,7 +1056,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_4d076b7935cfab6b, []int{13} + return fileDescriptor_4d076b7935cfab6b, []int{15} } func (m *Error) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1006,7 +1122,7 @@ func (m *DownloadResponse) Reset() { *m = DownloadResponse{} } func (m *DownloadResponse) String() string { return proto.CompactTextString(m) } func (*DownloadResponse) ProtoMessage() {} func (*DownloadResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_4d076b7935cfab6b, []int{14} + return fileDescriptor_4d076b7935cfab6b, []int{16} } func (m *DownloadResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1082,7 +1198,7 @@ func (m *SetDownloadSpeedLimitRequest) Reset() { *m = SetDownloadSpeedLi func (m *SetDownloadSpeedLimitRequest) String() string { return proto.CompactTextString(m) } func (*SetDownloadSpeedLimitRequest) ProtoMessage() {} func (*SetDownloadSpeedLimitRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_4d076b7935cfab6b, []int{15} + return fileDescriptor_4d076b7935cfab6b, []int{17} } func (m *SetDownloadSpeedLimitRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1128,7 +1244,7 @@ func (m *SetDownloadSpeedLimitResponse) Reset() { *m = SetDownloadSpeedL func (m *SetDownloadSpeedLimitResponse) String() string { return proto.CompactTextString(m) } func (*SetDownloadSpeedLimitResponse) ProtoMessage() {} func (*SetDownloadSpeedLimitResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_4d076b7935cfab6b, []int{16} + return fileDescriptor_4d076b7935cfab6b, []int{18} } func (m *SetDownloadSpeedLimitResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1170,7 +1286,7 @@ func (m *Pair) Reset() { *m = Pair{} } func (m *Pair) String() string { return proto.CompactTextString(m) } func (*Pair) ProtoMessage() {} func (*Pair) Descriptor() ([]byte, []int) { - return fileDescriptor_4d076b7935cfab6b, []int{17} + return fileDescriptor_4d076b7935cfab6b, []int{19} } func (m *Pair) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1232,7 +1348,7 @@ func (m *WriteBatch) Reset() { *m = WriteBatch{} } func (m *WriteBatch) String() string { return proto.CompactTextString(m) } func (*WriteBatch) ProtoMessage() {} func (*WriteBatch) Descriptor() ([]byte, []int) { - return fileDescriptor_4d076b7935cfab6b, []int{18} + return fileDescriptor_4d076b7935cfab6b, []int{20} } func (m *WriteBatch) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1289,7 +1405,7 @@ func (m *WriteRequest) Reset() { *m = WriteRequest{} } func (m *WriteRequest) String() string { return proto.CompactTextString(m) } func (*WriteRequest) ProtoMessage() {} func (*WriteRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_4d076b7935cfab6b, []int{19} + return fileDescriptor_4d076b7935cfab6b, []int{21} } func (m *WriteRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1375,7 +1491,7 @@ func (m *WriteResponse) Reset() { *m = WriteResponse{} } func (m *WriteResponse) String() string { return proto.CompactTextString(m) } func (*WriteResponse) ProtoMessage() {} func (*WriteResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_4d076b7935cfab6b, []int{20} + return fileDescriptor_4d076b7935cfab6b, []int{22} } func (m *WriteResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1436,7 +1552,7 @@ func (m *RawWriteBatch) Reset() { *m = RawWriteBatch{} } func (m *RawWriteBatch) String() string { return proto.CompactTextString(m) } func (*RawWriteBatch) ProtoMessage() {} func (*RawWriteBatch) Descriptor() ([]byte, []int) { - return fileDescriptor_4d076b7935cfab6b, []int{21} + return fileDescriptor_4d076b7935cfab6b, []int{23} } func (m *RawWriteBatch) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1500,7 +1616,7 @@ func (m *RawWriteRequest) Reset() { *m = RawWriteRequest{} } func (m *RawWriteRequest) String() string { return proto.CompactTextString(m) } func (*RawWriteRequest) ProtoMessage() {} func (*RawWriteRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_4d076b7935cfab6b, []int{22} + return fileDescriptor_4d076b7935cfab6b, []int{24} } func (m *RawWriteRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1586,7 +1702,7 @@ func (m *RawWriteResponse) Reset() { *m = RawWriteResponse{} } func (m *RawWriteResponse) String() string { return proto.CompactTextString(m) } func (*RawWriteResponse) ProtoMessage() {} func (*RawWriteResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_4d076b7935cfab6b, []int{23} + return fileDescriptor_4d076b7935cfab6b, []int{25} } func (m *RawWriteResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1646,7 +1762,7 @@ func (m *DuplicateDetectRequest) Reset() { *m = DuplicateDetectRequest{} func (m *DuplicateDetectRequest) String() string { return proto.CompactTextString(m) } func (*DuplicateDetectRequest) ProtoMessage() {} func (*DuplicateDetectRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_4d076b7935cfab6b, []int{24} + return fileDescriptor_4d076b7935cfab6b, []int{26} } func (m *DuplicateDetectRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1723,7 +1839,7 @@ func (m *KvPair) Reset() { *m = KvPair{} } func (m *KvPair) String() string { return proto.CompactTextString(m) } func (*KvPair) ProtoMessage() {} func (*KvPair) Descriptor() ([]byte, []int) { - return fileDescriptor_4d076b7935cfab6b, []int{25} + return fileDescriptor_4d076b7935cfab6b, []int{27} } func (m *KvPair) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1796,7 +1912,7 @@ func (m *DuplicateDetectResponse) Reset() { *m = DuplicateDetectResponse func (m *DuplicateDetectResponse) String() string { return proto.CompactTextString(m) } func (*DuplicateDetectResponse) ProtoMessage() {} func (*DuplicateDetectResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_4d076b7935cfab6b, []int{26} + return fileDescriptor_4d076b7935cfab6b, []int{28} } func (m *DuplicateDetectResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1882,7 +1998,7 @@ func (m *KVMeta) Reset() { *m = KVMeta{} } func (m *KVMeta) String() string { return proto.CompactTextString(m) } func (*KVMeta) ProtoMessage() {} func (*KVMeta) Descriptor() ([]byte, []int) { - return fileDescriptor_4d076b7935cfab6b, []int{27} + return fileDescriptor_4d076b7935cfab6b, []int{29} } func (m *KVMeta) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2037,7 +2153,7 @@ func (m *ApplyRequest) Reset() { *m = ApplyRequest{} } func (m *ApplyRequest) String() string { return proto.CompactTextString(m) } func (*ApplyRequest) ProtoMessage() {} func (*ApplyRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_4d076b7935cfab6b, []int{28} + return fileDescriptor_4d076b7935cfab6b, []int{30} } func (m *ApplyRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2136,7 +2252,7 @@ func (m *ApplyResponse) Reset() { *m = ApplyResponse{} } func (m *ApplyResponse) String() string { return proto.CompactTextString(m) } func (*ApplyResponse) ProtoMessage() {} func (*ApplyResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_4d076b7935cfab6b, []int{29} + return fileDescriptor_4d076b7935cfab6b, []int{31} } func (m *ApplyResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2191,7 +2307,7 @@ func (m *ClearRequest) Reset() { *m = ClearRequest{} } func (m *ClearRequest) String() string { return proto.CompactTextString(m) } func (*ClearRequest) ProtoMessage() {} func (*ClearRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_4d076b7935cfab6b, []int{30} + return fileDescriptor_4d076b7935cfab6b, []int{32} } func (m *ClearRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2238,7 +2354,7 @@ func (m *ClearResponse) Reset() { *m = ClearResponse{} } func (m *ClearResponse) String() string { return proto.CompactTextString(m) } func (*ClearResponse) ProtoMessage() {} func (*ClearResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_4d076b7935cfab6b, []int{31} + return fileDescriptor_4d076b7935cfab6b, []int{33} } func (m *ClearResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2277,6 +2393,8 @@ func (m *ClearResponse) GetError() *Error { func init() { proto.RegisterEnum("import_sstpb.SwitchMode", SwitchMode_name, SwitchMode_value) proto.RegisterEnum("import_sstpb.Pair_OP", Pair_OP_name, Pair_OP_value) + proto.RegisterType((*SuspendImportRPCRequest)(nil), "import_sstpb.SuspendImportRPCRequest") + proto.RegisterType((*SuspendImportRPCResponse)(nil), "import_sstpb.SuspendImportRPCResponse") proto.RegisterType((*SwitchModeRequest)(nil), "import_sstpb.SwitchModeRequest") proto.RegisterType((*SwitchModeResponse)(nil), "import_sstpb.SwitchModeResponse") proto.RegisterType((*Range)(nil), "import_sstpb.Range") @@ -2314,126 +2432,134 @@ func init() { func init() { proto.RegisterFile("import_sstpb.proto", fileDescriptor_4d076b7935cfab6b) } var fileDescriptor_4d076b7935cfab6b = []byte{ - // 1903 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x58, 0xcd, 0x73, 0x1b, 0x49, - 0x15, 0xf7, 0xe8, 0x5b, 0x4f, 0x9f, 0xe9, 0xf5, 0x3a, 0x13, 0x65, 0x63, 0x7b, 0x87, 0xec, 0xe2, - 0x38, 0xa0, 0x04, 0x07, 0x72, 0xe0, 0xc0, 0x56, 0x64, 0x1b, 0x62, 0x1c, 0xaf, 0x4d, 0xcb, 0x84, - 0x03, 0x55, 0x4c, 0x8d, 0x47, 0x2d, 0x69, 0xd0, 0x7c, 0x31, 0xdd, 0x92, 0xa2, 0x2a, 0x8a, 0xbf, - 0x83, 0x1b, 0xc5, 0x8d, 0xe2, 0x4c, 0x15, 0xc5, 0x7f, 0xb0, 0xc7, 0x3d, 0x72, 0x02, 0x2a, 0xfc, - 0x23, 0x54, 0x7f, 0x8c, 0x34, 0x33, 0x91, 0xe3, 0xc4, 0x55, 0x9c, 0xd4, 0xfd, 0xde, 0xeb, 0xf7, - 0xde, 0xbc, 0xaf, 0xfe, 0xb5, 0x00, 0x39, 0x5e, 0x18, 0x44, 0xcc, 0xa4, 0x94, 0x85, 0x57, 0xdd, - 0x30, 0x0a, 0x58, 0x80, 0xea, 0x49, 0x5a, 0xa7, 0xee, 0x11, 0x66, 0xc5, 0xbc, 0x4e, 0x83, 0x44, - 0x51, 0x10, 0xad, 0xb6, 0x93, 0x59, 0x14, 0xda, 0xcb, 0xed, 0xe6, 0x28, 0x18, 0x05, 0x62, 0xf9, - 0x84, 0xaf, 0x14, 0xb5, 0x15, 0x4d, 0x29, 0x13, 0x4b, 0x45, 0x80, 0xab, 0xa5, 0x06, 0xe3, 0x05, - 0xdc, 0xe9, 0xcf, 0x1d, 0x66, 0x8f, 0xcf, 0x82, 0x01, 0xc1, 0xe4, 0x77, 0x53, 0x42, 0x19, 0xfa, - 0x1e, 0x14, 0xbc, 0x60, 0x40, 0x74, 0x6d, 0x57, 0xdb, 0x6b, 0x1e, 0xe8, 0xdd, 0x94, 0x93, 0x09, - 0x71, 0x21, 0x65, 0x6c, 0x02, 0x4a, 0xaa, 0xa0, 0x61, 0xe0, 0x53, 0x62, 0x3c, 0x81, 0x22, 0xb6, - 0xfc, 0x11, 0x41, 0x9b, 0x50, 0xa4, 0xcc, 0x8a, 0x98, 0xd0, 0x56, 0xc7, 0x72, 0x83, 0xda, 0x90, - 0x27, 0xfe, 0x40, 0xcf, 0x09, 0x1a, 0x5f, 0x1a, 0x7f, 0xce, 0x43, 0xb9, 0xdf, 0xbf, 0x3c, 0x23, - 0xcc, 0x42, 0x08, 0x0a, 0xd3, 0xa9, 0x33, 0x50, 0x47, 0xc4, 0x1a, 0x3d, 0x82, 0x62, 0xc4, 0x15, - 0x8a, 0x33, 0xb5, 0x83, 0x4f, 0xd2, 0x5e, 0x09, 0x5b, 0x58, 0x4a, 0x70, 0x93, 0x76, 0x64, 0x3f, - 0x3b, 0xd0, 0xf3, 0xbb, 0xda, 0x5e, 0x03, 0xcb, 0x0d, 0xda, 0x82, 0x92, 0x4b, 0xfc, 0x11, 0x1b, - 0xeb, 0x85, 0x5d, 0x6d, 0xaf, 0x80, 0xd5, 0x0e, 0xdd, 0x85, 0xb2, 0x3d, 0x34, 0x7d, 0xcb, 0x23, - 0x7a, 0x71, 0x57, 0xdb, 0xab, 0xe2, 0x92, 0x3d, 0xfc, 0xda, 0xf2, 0x08, 0xba, 0x0f, 0xd5, 0x88, - 0x8c, 0x9c, 0xc0, 0x37, 0x9d, 0x81, 0x5e, 0x12, 0x67, 0x2a, 0x92, 0x70, 0x32, 0x40, 0xcf, 0xa1, - 0xae, 0x98, 0x24, 0x0c, 0xec, 0xb1, 0x5e, 0x56, 0x5e, 0xa9, 0x74, 0x61, 0xc1, 0x3b, 0xe6, 0x2c, - 0x5c, 0x8b, 0x56, 0x1b, 0xb4, 0x0f, 0x77, 0x88, 0x3f, 0x30, 0x27, 0x64, 0x61, 0x92, 0x37, 0xb6, - 0x3b, 0xa5, 0xce, 0x8c, 0xe8, 0x95, 0x5d, 0x6d, 0xaf, 0x82, 0x5b, 0xc4, 0x1f, 0x9c, 0x92, 0xc5, - 0x71, 0x4c, 0xe6, 0x0e, 0xb0, 0x80, 0x59, 0xae, 0x39, 0x99, 0x51, 0xbd, 0x2a, 0x1d, 0x10, 0x84, - 0xd3, 0x19, 0x45, 0x3b, 0x50, 0x93, 0xcc, 0xab, 0x05, 0x23, 0x54, 0x07, 0xc1, 0x06, 0x41, 0xea, - 0x71, 0x0a, 0xfa, 0x21, 0xd4, 0xac, 0xd0, 0x31, 0x67, 0x24, 0xa2, 0x4e, 0xe0, 0xeb, 0x35, 0x91, - 0xcc, 0x4f, 0xba, 0x71, 0xc9, 0xbc, 0xb8, 0x38, 0x79, 0x2d, 0x59, 0x18, 0xac, 0xd0, 0x51, 0x6b, - 0x6e, 0xd3, 0x76, 0xc2, 0x31, 0x89, 0x4c, 0x67, 0xa6, 0xd7, 0x45, 0xfc, 0x2b, 0x92, 0x70, 0x32, - 0x33, 0xfe, 0x00, 0x35, 0x4c, 0xe6, 0x91, 0xc3, 0x08, 0x9e, 0xba, 0x04, 0x3d, 0x84, 0x66, 0xe0, - 0xca, 0x6f, 0x09, 0x23, 0x32, 0x74, 0xde, 0xa8, 0x84, 0xd5, 0x03, 0x97, 0x7f, 0xc8, 0x85, 0xa0, - 0x71, 0x29, 0x9f, 0xcc, 0x93, 0x52, 0x32, 0xeb, 0x75, 0x9f, 0xcc, 0x57, 0x52, 0xdf, 0x81, 0x06, - 0x97, 0x62, 0x8e, 0x47, 0x28, 0xb3, 0xbc, 0x50, 0xe4, 0xae, 0x20, 0x84, 0x2e, 0x63, 0x9a, 0xf1, - 0x6b, 0x68, 0xfc, 0x32, 0x74, 0x03, 0x6b, 0x10, 0x57, 0xea, 0x63, 0x28, 0xf0, 0x80, 0x0b, 0xbb, - 0xb5, 0x83, 0x4f, 0x33, 0x95, 0x2a, 0xab, 0xe9, 0xe5, 0x06, 0x16, 0x42, 0x68, 0x13, 0x0a, 0x03, - 0x8b, 0x59, 0xd2, 0x3c, 0xa7, 0xf2, 0x5d, 0xaf, 0x0c, 0x45, 0x7b, 0x3c, 0xf5, 0x27, 0x46, 0x1b, - 0x9a, 0xb1, 0x72, 0x55, 0xc3, 0x03, 0x68, 0x9c, 0xf8, 0x23, 0x42, 0x59, 0x6c, 0x6e, 0x1f, 0xca, - 0x76, 0xe0, 0x33, 0xf2, 0x86, 0x29, 0x8b, 0xed, 0x65, 0x38, 0x0f, 0x25, 0x1d, 0xc7, 0x02, 0xe8, - 0xbb, 0x90, 0xa7, 0x94, 0xa9, 0x6a, 0x5d, 0xef, 0x19, 0xe6, 0x12, 0xc6, 0x04, 0xd0, 0xd9, 0xd4, - 0x65, 0xce, 0xed, 0x4d, 0x3d, 0x82, 0x02, 0xa5, 0x8c, 0xea, 0xb9, 0xdd, 0xfc, 0xf5, 0xb6, 0x84, - 0x88, 0xf1, 0x1c, 0x9a, 0xb1, 0x1d, 0xf9, 0x91, 0xe8, 0x21, 0x14, 0xc5, 0x50, 0x51, 0x66, 0x9a, - 0xdd, 0x78, 0xc4, 0x1c, 0xf3, 0x5f, 0x2c, 0x99, 0xc6, 0x6f, 0xa0, 0x79, 0x18, 0x78, 0xa1, 0x65, - 0x2f, 0x1d, 0x5c, 0xf6, 0xa3, 0x76, 0x63, 0x3f, 0x7e, 0x0e, 0xf5, 0x60, 0xca, 0xc2, 0x29, 0x33, - 0x5d, 0x32, 0x23, 0xae, 0x88, 0x49, 0x11, 0xd7, 0x24, 0xed, 0x15, 0x27, 0x19, 0x77, 0xa0, 0xb5, - 0xd4, 0xaf, 0xa2, 0xff, 0xef, 0x1c, 0xb4, 0x8e, 0x82, 0xb9, 0x9f, 0xcc, 0xf7, 0xf7, 0x6f, 0x0e, - 0x6a, 0xaf, 0xf0, 0xcd, 0xbf, 0x76, 0x36, 0x44, 0x68, 0xf9, 0x1c, 0x11, 0x7d, 0x5d, 0x15, 0x7d, - 0x2d, 0xd6, 0xa8, 0xc7, 0x1b, 0x57, 0xd4, 0xb0, 0x19, 0x4d, 0x5d, 0xa2, 0x37, 0x84, 0xae, 0x7b, - 0x19, 0xf7, 0x57, 0x55, 0xae, 0xf4, 0xd5, 0xa2, 0x44, 0xe1, 0x7f, 0x05, 0x2d, 0xca, 0x82, 0xc8, - 0x1a, 0x11, 0xf3, 0xca, 0xb2, 0x27, 0x7c, 0x92, 0x35, 0x85, 0x9a, 0xad, 0x2e, 0xdf, 0x4f, 0xc3, - 0x6e, 0x5f, 0xb2, 0x7b, 0x92, 0x8b, 0x9b, 0x34, 0xb5, 0x47, 0x7b, 0xd0, 0x8e, 0x15, 0xd8, 0x96, - 0x3d, 0x26, 0x7c, 0xc2, 0xdc, 0x11, 0x4e, 0xc6, 0x92, 0x87, 0x9c, 0x7c, 0x32, 0x40, 0x1d, 0xa8, - 0x3a, 0xd4, 0x8c, 0xac, 0xb9, 0x39, 0x99, 0xe9, 0x2d, 0x31, 0x27, 0xca, 0x0e, 0xc5, 0xd6, 0xfc, - 0x74, 0x86, 0x9e, 0x41, 0x2d, 0xee, 0x55, 0x7f, 0x18, 0xe8, 0x6d, 0xe1, 0x02, 0x8a, 0x5d, 0x38, - 0x94, 0x5d, 0xeb, 0x0f, 0x03, 0x0c, 0xf6, 0x72, 0xfd, 0xf3, 0x42, 0xa5, 0xd2, 0xae, 0xe2, 0xfc, - 0x34, 0x72, 0x0d, 0x0c, 0x45, 0x91, 0x64, 0xa4, 0x43, 0xd9, 0x23, 0x94, 0x5a, 0x2a, 0x9b, 0x55, - 0x1c, 0x6f, 0xd1, 0x13, 0xa8, 0x71, 0x87, 0x88, 0x29, 0x6b, 0x24, 0xb7, 0xb6, 0x46, 0x40, 0x88, - 0x88, 0xb5, 0xf1, 0x77, 0x0d, 0xda, 0xab, 0xac, 0xa9, 0x1a, 0x7b, 0x72, 0x73, 0xad, 0xa8, 0x30, - 0xab, 0x8a, 0xb9, 0x07, 0x15, 0x87, 0x9a, 0xc4, 0x0b, 0xd9, 0x42, 0xd8, 0x14, 0x1f, 0x7d, 0xcc, - 0xb7, 0xbc, 0xee, 0xa4, 0x2f, 0xf9, 0x75, 0xba, 0x92, 0x45, 0xbb, 0xba, 0x07, 0x0a, 0xeb, 0xef, - 0x81, 0x62, 0xf2, 0x1e, 0x30, 0xbe, 0x82, 0xcf, 0xfa, 0x84, 0xc5, 0xbe, 0xf7, 0x43, 0x42, 0x06, - 0xaf, 0x1c, 0xcf, 0x59, 0x16, 0xfc, 0x0e, 0xd4, 0x28, 0x27, 0x9a, 0x2e, 0xa7, 0x8a, 0x4f, 0x29, - 0x60, 0xa0, 0x4b, 0x39, 0x63, 0x07, 0x1e, 0x5c, 0xa3, 0x40, 0x55, 0x74, 0x08, 0x85, 0x0b, 0xcb, - 0x89, 0xf8, 0xe5, 0x37, 0x21, 0x0b, 0x35, 0x2c, 0xf9, 0x92, 0x7b, 0x3a, 0xb3, 0xdc, 0x29, 0x51, - 0xa3, 0x51, 0x6e, 0xd0, 0x17, 0x90, 0x0b, 0xe4, 0x20, 0x6c, 0x66, 0x8b, 0x9d, 0xeb, 0xe9, 0x9e, - 0x5f, 0xe0, 0x5c, 0x10, 0x1a, 0xf7, 0x20, 0x77, 0x7e, 0x81, 0xca, 0x90, 0xbf, 0x98, 0xb2, 0xf6, - 0x06, 0x02, 0x28, 0x1d, 0x11, 0x97, 0x30, 0xd2, 0xd6, 0x8c, 0x3e, 0xc0, 0xaf, 0x78, 0xd5, 0xf6, - 0x2c, 0x66, 0x8f, 0xc5, 0x6c, 0x0f, 0x3c, 0xcf, 0x61, 0x26, 0xa3, 0xca, 0xff, 0x8a, 0x24, 0x5c, - 0x52, 0xb4, 0x07, 0xc5, 0xd0, 0x72, 0xa2, 0x78, 0x8a, 0xa0, 0x77, 0xed, 0x61, 0x29, 0x60, 0xcc, - 0xa0, 0x2e, 0x94, 0xde, 0x6a, 0x08, 0x3f, 0x85, 0xe2, 0x15, 0x77, 0x46, 0x95, 0x52, 0x06, 0x5c, - 0xac, 0x9c, 0x7d, 0xb9, 0x81, 0xa5, 0xe0, 0x6a, 0x40, 0x8f, 0xa0, 0xa1, 0xec, 0xaa, 0xb2, 0x7a, - 0x94, 0x1e, 0x5d, 0xef, 0x2b, 0x85, 0xc7, 0x50, 0xe4, 0xe6, 0x6f, 0x98, 0x91, 0x52, 0x86, 0x5f, - 0x33, 0xd8, 0x9a, 0x27, 0x02, 0xd7, 0x86, 0x3c, 0x63, 0xae, 0x0a, 0x19, 0x5f, 0x7e, 0x78, 0xb4, - 0x50, 0x13, 0x72, 0x8c, 0xaa, 0xdb, 0x2c, 0xc7, 0xa8, 0xf1, 0x7b, 0x68, 0xc5, 0xca, 0x6f, 0x15, - 0xc0, 0x67, 0xe9, 0x00, 0xde, 0xcf, 0xf6, 0xd2, 0xfc, 0xbd, 0x31, 0xfc, 0x2d, 0xb4, 0x57, 0xd6, - 0xff, 0xcf, 0x61, 0xfc, 0x87, 0x06, 0x5b, 0x47, 0xd3, 0xd0, 0x75, 0x6c, 0x8b, 0x91, 0x23, 0xc2, - 0x88, 0x7d, 0xab, 0xdb, 0xed, 0x3e, 0x54, 0x05, 0x66, 0xe4, 0x08, 0x42, 0xf5, 0x47, 0x45, 0x10, - 0x4e, 0xc9, 0x82, 0x83, 0x37, 0x05, 0xa7, 0x44, 0x88, 0xeb, 0xb8, 0x24, 0x41, 0x14, 0x9f, 0x20, - 0x1c, 0x71, 0x04, 0xbe, 0xbb, 0x10, 0xed, 0x5f, 0xc1, 0xe5, 0x09, 0x59, 0x9c, 0xfb, 0xee, 0x02, - 0x19, 0xd0, 0xf0, 0x1c, 0xdf, 0x5c, 0xb5, 0x82, 0x9c, 0x03, 0x35, 0xcf, 0xf1, 0x0f, 0x55, 0x37, - 0x18, 0x67, 0x50, 0x3a, 0x9d, 0x7d, 0x54, 0xb3, 0xa6, 0x9a, 0x2b, 0x9f, 0x6e, 0x2e, 0xe3, 0xaf, - 0x1a, 0xdc, 0x7d, 0x27, 0x14, 0x2a, 0xfc, 0x3f, 0x58, 0x21, 0xc9, 0xf7, 0xdc, 0xc3, 0x31, 0x88, - 0x14, 0x69, 0x78, 0x0a, 0x55, 0x01, 0x20, 0x13, 0x33, 0x79, 0x6d, 0xd6, 0x78, 0x08, 0xe4, 0x89, - 0xfd, 0xb8, 0x5e, 0xf3, 0x22, 0x71, 0x9b, 0x69, 0x69, 0xf9, 0xa9, 0x71, 0x7f, 0xff, 0x29, 0x0f, - 0xa5, 0xd3, 0xd7, 0x31, 0x10, 0x17, 0x17, 0xa8, 0x96, 0xb8, 0x40, 0x3f, 0x87, 0xba, 0x18, 0xd2, - 0x66, 0x30, 0x1c, 0x52, 0xc2, 0x04, 0xb0, 0x2c, 0xe0, 0x9a, 0xa0, 0x9d, 0x0b, 0x52, 0x62, 0xc4, - 0xe6, 0x52, 0x50, 0x7b, 0x79, 0x54, 0x71, 0xeb, 0x89, 0xa3, 0xaf, 0xa4, 0x48, 0x13, 0x72, 0xf6, - 0x50, 0xc4, 0xaf, 0x8a, 0x73, 0xf6, 0x90, 0x87, 0xd5, 0xa1, 0xe6, 0x40, 0x0c, 0x34, 0x95, 0xc8, - 0x8a, 0x43, 0xe5, 0x80, 0xe3, 0x49, 0x96, 0xa5, 0xc1, 0x62, 0x00, 0x5c, 0x16, 0xfb, 0x4b, 0x8a, - 0x1e, 0x00, 0x44, 0x44, 0x5e, 0x5d, 0xcb, 0x0c, 0x57, 0x15, 0xe5, 0x92, 0xa6, 0x8b, 0xaa, 0x74, - 0x7d, 0x51, 0x95, 0x53, 0x45, 0xb5, 0x05, 0x25, 0x3a, 0xb6, 0x0e, 0x7e, 0xf4, 0x5c, 0x20, 0xf6, - 0x3a, 0x56, 0x3b, 0x0e, 0xea, 0xa5, 0x36, 0xea, 0x5b, 0x21, 0x1d, 0x07, 0xc2, 0x21, 0x09, 0xd8, - 0x5b, 0x82, 0xd1, 0x57, 0xf4, 0x4b, 0x8a, 0x7a, 0xd0, 0xb6, 0x03, 0x2f, 0x8c, 0x08, 0xe5, 0x78, - 0xdb, 0x64, 0x8b, 0x50, 0x62, 0x90, 0xe6, 0xc1, 0xdd, 0xe5, 0xcd, 0xbd, 0xe2, 0x5f, 0x2e, 0x42, - 0x82, 0x5b, 0x76, 0x9a, 0x60, 0xfc, 0x2d, 0x0f, 0xf5, 0x17, 0x61, 0xe8, 0x2e, 0xe2, 0x7e, 0xda, - 0x4b, 0x4d, 0x90, 0x6c, 0x76, 0x5f, 0x4b, 0x00, 0x28, 0xc6, 0xc7, 0x7e, 0xdc, 0xc1, 0xf5, 0xb5, - 0x85, 0xf0, 0x3a, 0xd1, 0xc0, 0xef, 0x40, 0xa5, 0xdc, 0x2d, 0xa0, 0xd2, 0x4f, 0xa0, 0x91, 0xd4, - 0x41, 0xf5, 0x86, 0xb0, 0x7b, 0xbd, 0x12, 0x5c, 0x4f, 0x1c, 0xa7, 0x6b, 0x91, 0x52, 0x71, 0x2d, - 0x52, 0x5a, 0x03, 0xca, 0xf2, 0x1f, 0x05, 0xca, 0x12, 0x43, 0xa9, 0x70, 0xd3, 0x50, 0xca, 0x40, - 0xaf, 0xda, 0x87, 0x40, 0x2f, 0x63, 0x02, 0x0d, 0x95, 0xb5, 0xdb, 0xe2, 0xa2, 0xe5, 0xa8, 0xce, - 0xdd, 0x34, 0xaa, 0x8d, 0x2f, 0xa1, 0x7e, 0xe8, 0x12, 0x2b, 0x8a, 0x4b, 0x64, 0x0b, 0x4a, 0x89, - 0x47, 0x5a, 0x15, 0xab, 0x9d, 0xf1, 0x63, 0x68, 0x28, 0xb9, 0x8f, 0xbe, 0x0e, 0xf6, 0x1f, 0x02, - 0xac, 0x9e, 0xfe, 0x1c, 0x78, 0x7c, 0x1d, 0x44, 0x9e, 0xe5, 0x4a, 0x10, 0x72, 0x22, 0x8e, 0xb5, - 0xb5, 0x83, 0x6f, 0xcb, 0x50, 0x95, 0x9b, 0x7e, 0xff, 0x12, 0xfd, 0x22, 0x75, 0x66, 0xe7, 0xda, - 0x3f, 0x17, 0xa4, 0xdb, 0x9d, 0xdd, 0xeb, 0x05, 0x14, 0xaa, 0xda, 0x40, 0x3f, 0x83, 0x92, 0x7c, - 0xb9, 0xa1, 0xcc, 0x6d, 0x98, 0x7a, 0x2c, 0x76, 0x3e, 0x5b, 0xcf, 0x8c, 0xd5, 0xec, 0x69, 0xe8, - 0x18, 0x4a, 0xf2, 0x75, 0x94, 0x55, 0x94, 0x7a, 0x9b, 0x65, 0x15, 0xa5, 0x1f, 0x54, 0xc6, 0x06, - 0x7a, 0x09, 0x65, 0xf5, 0x98, 0x41, 0x19, 0xd1, 0xf4, 0x1b, 0xaa, 0xf3, 0xe0, 0x1a, 0xee, 0x52, - 0x53, 0x04, 0x9f, 0xae, 0x85, 0x94, 0x68, 0x3f, 0x13, 0x96, 0xf7, 0x00, 0xd7, 0xce, 0xe3, 0x0f, - 0x92, 0x5d, 0xda, 0x3c, 0x85, 0x4a, 0xcc, 0x47, 0x19, 0x07, 0x33, 0xcf, 0xb1, 0xce, 0xf6, 0x75, - 0xec, 0xa5, 0xb2, 0x23, 0x28, 0x0a, 0xb0, 0x81, 0x3a, 0x6b, 0x80, 0x5e, 0xac, 0xe6, 0xfe, 0x5a, - 0x5e, 0x22, 0x2f, 0x67, 0x50, 0x89, 0x51, 0x4b, 0xd6, 0xa5, 0x0c, 0x96, 0xca, 0xba, 0x94, 0x05, - 0x3b, 0x42, 0xdd, 0x39, 0xd4, 0x12, 0x2f, 0x6e, 0x94, 0x29, 0xb1, 0x77, 0x1f, 0xe3, 0x37, 0x26, - 0xfc, 0x0a, 0x5a, 0x99, 0xdb, 0x1d, 0x3d, 0xcc, 0x84, 0x66, 0x2d, 0x0e, 0xea, 0x7c, 0x71, 0x83, - 0x54, 0x6c, 0xe1, 0xa9, 0x86, 0x7a, 0x50, 0x14, 0xc3, 0x23, 0x1b, 0xc9, 0xe4, 0x3d, 0x90, 0x8d, - 0x64, 0x6a, 0xda, 0x88, 0x46, 0x01, 0xd1, 0xeb, 0x3f, 0x75, 0xf8, 0x68, 0xcd, 0x28, 0x4a, 0x4e, - 0x8b, 0xac, 0xa2, 0xd4, 0x84, 0x30, 0x36, 0x7a, 0x5f, 0xfe, 0xf3, 0x2f, 0x15, 0xed, 0x9b, 0xb7, - 0xdb, 0xda, 0xb7, 0x6f, 0xb7, 0xb5, 0xff, 0xbc, 0xdd, 0xd6, 0xfe, 0xf8, 0xdf, 0xed, 0x0d, 0x68, - 0x07, 0xd1, 0xa8, 0xcb, 0x9c, 0xc9, 0xac, 0x3b, 0x99, 0x89, 0xbf, 0x17, 0xaf, 0x4a, 0xe2, 0xe7, - 0xd9, 0xff, 0x02, 0x00, 0x00, 0xff, 0xff, 0xa4, 0xe3, 0x27, 0x80, 0xe8, 0x14, 0x00, 0x00, + // 2018 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x58, 0x4b, 0x73, 0x1c, 0x49, + 0xf1, 0xd7, 0xbc, 0x67, 0x72, 0x9e, 0xaa, 0xd5, 0xca, 0xe3, 0xf1, 0x5a, 0xf2, 0xf6, 0xdf, 0xeb, + 0xbf, 0x2c, 0x83, 0x6c, 0xe4, 0xc5, 0x07, 0x0e, 0x6c, 0x58, 0x0f, 0xd6, 0x42, 0xd6, 0x4a, 0xd4, + 0x08, 0x73, 0x20, 0x82, 0x8e, 0x56, 0x4f, 0x49, 0xd3, 0x4c, 0x4f, 0x77, 0xd3, 0x55, 0x3d, 0xf2, + 0x44, 0x10, 0x7c, 0x07, 0x6e, 0xdc, 0x08, 0x6e, 0x04, 0x67, 0x08, 0x82, 0x6f, 0xb0, 0x47, 0x8e, + 0x9c, 0x80, 0x30, 0x5f, 0x84, 0xa8, 0xac, 0xea, 0x99, 0xee, 0xd6, 0xc8, 0xb2, 0x15, 0xc1, 0x69, + 0xaa, 0x32, 0xb3, 0x32, 0xb3, 0xf3, 0x55, 0xbf, 0x1a, 0x20, 0xce, 0x38, 0xf0, 0x43, 0x61, 0x72, + 0x2e, 0x82, 0xb3, 0xad, 0x20, 0xf4, 0x85, 0x4f, 0x1a, 0x49, 0x5a, 0xaf, 0x31, 0x66, 0xc2, 0x8a, + 0x79, 0xbd, 0x26, 0x0b, 0x43, 0x3f, 0x9c, 0x6f, 0x47, 0x93, 0x30, 0xb0, 0x67, 0xdb, 0x95, 0x0b, + 0xff, 0xc2, 0xc7, 0xe5, 0x53, 0xb9, 0xd2, 0xd4, 0x76, 0x18, 0x71, 0x81, 0x4b, 0x4d, 0x80, 0xb3, + 0x99, 0x06, 0xe3, 0xb7, 0x39, 0xb8, 0xd3, 0x8f, 0x78, 0xc0, 0xbc, 0xc1, 0x01, 0x9a, 0xa5, 0x27, + 0xbb, 0x94, 0xfd, 0x2a, 0x62, 0x5c, 0x90, 0x2f, 0x61, 0x95, 0x0f, 0xfd, 0xc8, 0x1d, 0x98, 0x5c, + 0x49, 0x98, 0xca, 0x33, 0xde, 0xcd, 0x3d, 0xc8, 0x6d, 0x54, 0xe9, 0x8a, 0xe2, 0xa6, 0x8e, 0x73, + 0xb2, 0x01, 0x9d, 0x41, 0x14, 0x5a, 0xc2, 0xf1, 0x3d, 0xd3, 0xf1, 0x4c, 0xce, 0x6c, 0xde, 0xcd, + 0x3f, 0xc8, 0x6d, 0x14, 0x69, 0x2b, 0xa6, 0x1f, 0x78, 0x7d, 0x66, 0x73, 0xb2, 0x0a, 0x65, 0xdb, + 0x72, 0x5d, 0x16, 0x76, 0x0b, 0x0f, 0x72, 0x1b, 0x35, 0xaa, 0x77, 0xc6, 0xd7, 0xd0, 0xbd, 0xea, + 0x12, 0x0f, 0x7c, 0x8f, 0x33, 0xf2, 0x04, 0x96, 0x2d, 0x37, 0x64, 0xd6, 0x60, 0x1a, 0x3b, 0xc5, + 0x06, 0xda, 0x9d, 0x8e, 0x66, 0xf4, 0x63, 0xba, 0xf1, 0x12, 0x96, 0xfb, 0x97, 0x8e, 0xb0, 0x87, + 0x47, 0xfe, 0x80, 0xc5, 0x5f, 0xf5, 0x1d, 0x28, 0x8e, 0xfd, 0x01, 0xc3, 0x43, 0xad, 0xed, 0xee, + 0x56, 0x2a, 0x03, 0x09, 0x71, 0x94, 0x32, 0x56, 0x80, 0x24, 0x55, 0x28, 0x2f, 0x8c, 0xa7, 0x50, + 0xa2, 0x96, 0x77, 0xc1, 0xc8, 0x0a, 0x94, 0xb8, 0xb0, 0x42, 0x81, 0xda, 0x1a, 0x54, 0x6d, 0x48, + 0x07, 0x0a, 0xcc, 0x1b, 0xe0, 0x57, 0x37, 0xa8, 0x5c, 0x1a, 0x7f, 0x28, 0x40, 0xa5, 0xdf, 0x3f, + 0x3d, 0x62, 0xc2, 0x22, 0x04, 0x8a, 0x51, 0xe4, 0x0c, 0xf4, 0x11, 0x5c, 0x93, 0xc7, 0x50, 0x0a, + 0xa5, 0x42, 0x3c, 0x53, 0xdf, 0xfe, 0x24, 0xed, 0x15, 0xda, 0xa2, 0x4a, 0x42, 0x9a, 0xb4, 0x43, + 0xfb, 0xf9, 0x36, 0x06, 0xad, 0x49, 0xd5, 0x46, 0xc6, 0xd2, 0x65, 0xde, 0x85, 0x18, 0x76, 0x8b, + 0x18, 0x6b, 0xbd, 0x23, 0x77, 0xa0, 0x62, 0x9f, 0x9b, 0x9e, 0x35, 0x66, 0xdd, 0x92, 0x0e, 0xf2, + 0xf9, 0x37, 0xd6, 0x98, 0x91, 0x7b, 0x50, 0x0b, 0xd9, 0x05, 0x26, 0x69, 0xd0, 0x2d, 0xe3, 0x99, + 0xaa, 0x22, 0x1c, 0x0c, 0xc8, 0x0b, 0x68, 0x68, 0x26, 0x0b, 0x7c, 0x7b, 0xd8, 0xad, 0x68, 0xaf, + 0x74, 0x2d, 0x52, 0xe4, 0xed, 0x4b, 0x16, 0xad, 0x87, 0xf3, 0x0d, 0xd9, 0x84, 0x65, 0x59, 0x26, + 0x23, 0x36, 0x35, 0xd9, 0x5b, 0xdb, 0x8d, 0xb8, 0x33, 0x61, 0xdd, 0x2a, 0x66, 0xa7, 0xcd, 0xbc, + 0xc1, 0x21, 0x9b, 0xee, 0xc7, 0x64, 0xe9, 0x80, 0xf0, 0x85, 0xe5, 0x9a, 0xa3, 0x09, 0xef, 0xd6, + 0x94, 0x03, 0x48, 0x38, 0x9c, 0x70, 0xb2, 0x0e, 0x75, 0xc5, 0x3c, 0x9b, 0x0a, 0xc6, 0xbb, 0x80, + 0x6c, 0x40, 0xd2, 0x8e, 0xa4, 0x90, 0x2f, 0xa1, 0x6e, 0x05, 0x8e, 0x39, 0x61, 0x21, 0x77, 0x7c, + 0xaf, 0x5b, 0xc7, 0x64, 0x7e, 0xb2, 0x15, 0xf7, 0xc3, 0xcb, 0x93, 0x83, 0x37, 0x8a, 0x45, 0xc1, + 0x0a, 0x1c, 0xbd, 0x96, 0x36, 0x6d, 0x27, 0x18, 0xb2, 0xd0, 0x74, 0x26, 0xdd, 0x06, 0xc6, 0xbf, + 0xaa, 0x08, 0x07, 0x13, 0xe3, 0x37, 0x50, 0xa7, 0xec, 0x32, 0x74, 0x04, 0xa3, 0x91, 0xcb, 0xc8, + 0x43, 0x68, 0xf9, 0xae, 0xfa, 0x96, 0x20, 0x64, 0xe7, 0xce, 0x5b, 0x9d, 0xb0, 0x86, 0xef, 0xca, + 0x0f, 0x39, 0x41, 0x9a, 0x94, 0xf2, 0xd8, 0x65, 0x52, 0x4a, 0x65, 0xbd, 0xe1, 0xb1, 0xcb, 0xb9, + 0xd4, 0xff, 0x41, 0x53, 0x4a, 0x09, 0x67, 0xcc, 0xb8, 0xb0, 0xc6, 0x01, 0xe6, 0xae, 0x88, 0x42, + 0xa7, 0x31, 0xcd, 0xf8, 0x39, 0x34, 0x7f, 0x1a, 0xb8, 0xbe, 0x35, 0x88, 0x2b, 0xf5, 0x09, 0x14, + 0x65, 0xc0, 0xd1, 0x6e, 0x7d, 0xfb, 0xd3, 0x4c, 0xa5, 0xaa, 0x6a, 0x7a, 0xb5, 0x44, 0x51, 0x88, + 0xac, 0x40, 0x71, 0x60, 0x09, 0x4b, 0x99, 0x97, 0x54, 0xb9, 0xdb, 0xa9, 0x40, 0xc9, 0x1e, 0x46, + 0xde, 0xc8, 0xe8, 0x40, 0x2b, 0x56, 0xae, 0x6b, 0x78, 0x00, 0xcd, 0x03, 0xef, 0x82, 0x71, 0x11, + 0x9b, 0xdb, 0x84, 0x8a, 0xed, 0x7b, 0x82, 0xbd, 0x15, 0xda, 0x62, 0x67, 0x16, 0xce, 0x5d, 0x45, + 0xa7, 0xb1, 0x00, 0xf9, 0x7f, 0x28, 0x70, 0x2e, 0x74, 0xb5, 0x2e, 0xf6, 0x8c, 0x4a, 0x09, 0x63, + 0x04, 0xe4, 0x28, 0x72, 0x85, 0x73, 0x7b, 0x53, 0x8f, 0xa1, 0xc8, 0xb9, 0x90, 0x33, 0xa4, 0x70, + 0xbd, 0x2d, 0x14, 0x31, 0x5e, 0x40, 0x2b, 0xb6, 0xa3, 0xc7, 0xc5, 0x43, 0x28, 0xe1, 0xc4, 0xd4, + 0x66, 0x5a, 0x5b, 0xf1, 0xfc, 0xdc, 0x97, 0xbf, 0x54, 0x31, 0x8d, 0x5f, 0x40, 0x6b, 0xd7, 0x1f, + 0x07, 0x96, 0x3d, 0x73, 0x70, 0xd6, 0x8f, 0xb9, 0x1b, 0xfb, 0xf1, 0x73, 0x68, 0xf8, 0x91, 0x08, + 0x22, 0x61, 0xba, 0x6c, 0xc2, 0x5c, 0x8c, 0x49, 0x89, 0xd6, 0x15, 0xed, 0xb5, 0x24, 0x19, 0xcb, + 0xd0, 0x9e, 0xe9, 0xd7, 0xd1, 0xff, 0x57, 0x1e, 0xda, 0x7b, 0xfe, 0xa5, 0x97, 0xcc, 0xf7, 0x77, + 0x6f, 0x0e, 0xea, 0x4e, 0xf1, 0xdb, 0x7f, 0xae, 0x2f, 0x61, 0x68, 0xe5, 0x1c, 0xc1, 0xbe, 0xae, + 0x61, 0x5f, 0xe3, 0x9a, 0xec, 0xc8, 0xc6, 0xc5, 0x1a, 0x36, 0xc3, 0xc8, 0x65, 0xdd, 0x26, 0xea, + 0xba, 0x9b, 0x71, 0x7f, 0x5e, 0xe5, 0x5a, 0x5f, 0x3d, 0x4c, 0x14, 0xfe, 0x57, 0xd0, 0xe6, 0xc2, + 0x0f, 0xad, 0x0b, 0x66, 0x9e, 0x59, 0xf6, 0x48, 0x4e, 0xb2, 0x16, 0xaa, 0x59, 0xdd, 0x92, 0xfb, + 0x28, 0xd8, 0xea, 0x2b, 0xf6, 0x8e, 0xe2, 0xd2, 0x16, 0x4f, 0xed, 0xe5, 0x0d, 0x10, 0x2b, 0xb0, + 0x2d, 0x7b, 0xc8, 0xe4, 0x84, 0x59, 0x46, 0x27, 0x63, 0xc9, 0x5d, 0x49, 0x3e, 0x18, 0x90, 0x1e, + 0xd4, 0x1c, 0x6e, 0x86, 0xd6, 0xa5, 0x39, 0x9a, 0x74, 0xdb, 0x38, 0x27, 0x2a, 0x0e, 0xa7, 0xd6, + 0xe5, 0xe1, 0x84, 0x3c, 0x87, 0x7a, 0xdc, 0xab, 0xde, 0xb9, 0xdf, 0xed, 0xa0, 0x0b, 0x24, 0x76, + 0x61, 0x57, 0x75, 0xad, 0x77, 0xee, 0x53, 0xb0, 0x67, 0xeb, 0x1f, 0x17, 0xab, 0xd5, 0x4e, 0x8d, + 0x16, 0xa2, 0xd0, 0x35, 0x28, 0x94, 0x30, 0xc9, 0xa4, 0x0b, 0x95, 0x31, 0xe3, 0xdc, 0xd2, 0xd9, + 0xac, 0xd1, 0x78, 0x4b, 0x9e, 0x42, 0x5d, 0x3a, 0xc4, 0x4c, 0x55, 0x23, 0xf9, 0x85, 0x35, 0x02, + 0x28, 0x82, 0x6b, 0xe3, 0xaf, 0x39, 0xe8, 0xcc, 0xb3, 0xa6, 0x6b, 0xec, 0xe9, 0xcd, 0xb5, 0xa2, + 0xc3, 0xac, 0x2b, 0xe6, 0x2e, 0x54, 0x1d, 0x6e, 0xb2, 0x71, 0x20, 0xa6, 0x68, 0x13, 0x3f, 0x7a, + 0x5f, 0x6e, 0x65, 0xdd, 0x29, 0x5f, 0x0a, 0x8b, 0x74, 0x25, 0x8b, 0x76, 0x7e, 0x0f, 0x14, 0x17, + 0xdf, 0x03, 0xa5, 0xe4, 0x3d, 0x60, 0x7c, 0x05, 0x9f, 0xf5, 0x99, 0x88, 0x7d, 0xef, 0x07, 0x8c, + 0x0d, 0x5e, 0x3b, 0x63, 0x67, 0x56, 0xf0, 0xeb, 0x50, 0xe7, 0x92, 0x68, 0xba, 0x92, 0x8a, 0x9f, + 0x52, 0xa4, 0xc0, 0x67, 0x72, 0xc6, 0x3a, 0xdc, 0xbf, 0x46, 0x81, 0xae, 0xe8, 0x00, 0x8a, 0x27, + 0x96, 0x13, 0xca, 0xcb, 0x6f, 0xc4, 0xa6, 0x7a, 0x58, 0xca, 0xa5, 0xf4, 0x74, 0x62, 0xb9, 0x11, + 0xd3, 0xa3, 0x51, 0x6d, 0xc8, 0x17, 0x90, 0xf7, 0xd5, 0x20, 0x6c, 0x65, 0x8b, 0x5d, 0xea, 0xd9, + 0x3a, 0x3e, 0xa1, 0x79, 0x3f, 0x30, 0xee, 0x42, 0xfe, 0xf8, 0x84, 0x54, 0xa0, 0x70, 0x12, 0x89, + 0xce, 0x12, 0x01, 0x28, 0xef, 0x31, 0x97, 0x09, 0xd6, 0xc9, 0x19, 0x7d, 0x80, 0x9f, 0xc9, 0xaa, + 0xdd, 0xb1, 0x84, 0x3d, 0xc4, 0xd9, 0xee, 0x8f, 0xc7, 0x8e, 0x30, 0x35, 0x40, 0x29, 0xd2, 0xaa, + 0x22, 0x9c, 0x4a, 0x50, 0x52, 0x0a, 0x2c, 0x27, 0x8c, 0xa7, 0x08, 0xb9, 0x6a, 0x8f, 0x2a, 0x01, + 0x63, 0x02, 0x0d, 0x54, 0x7a, 0xab, 0x21, 0xfc, 0x0c, 0x4a, 0x67, 0xd2, 0x19, 0x5d, 0x4a, 0x19, + 0x70, 0x31, 0x77, 0xf6, 0xd5, 0x12, 0x55, 0x82, 0xf3, 0x01, 0x7d, 0x01, 0x4d, 0x6d, 0x57, 0x97, + 0xd5, 0xe3, 0xf4, 0xe8, 0x7a, 0x5f, 0x29, 0x3c, 0x81, 0x92, 0x34, 0x7f, 0xc3, 0x8c, 0x54, 0x32, + 0xf2, 0x9a, 0xa1, 0xd6, 0x65, 0x22, 0x70, 0x1d, 0x28, 0x08, 0xe1, 0xea, 0x90, 0xc9, 0xe5, 0x87, + 0x47, 0x8b, 0xb4, 0x20, 0x2f, 0xb8, 0xbe, 0xcd, 0xf2, 0x82, 0x1b, 0xbf, 0x86, 0x76, 0xac, 0xfc, + 0x56, 0x01, 0x7c, 0x9e, 0x0e, 0xe0, 0xbd, 0x6c, 0x2f, 0x5d, 0xbe, 0x37, 0x86, 0xbf, 0x84, 0xce, + 0xdc, 0xfa, 0xff, 0x38, 0x8c, 0x7f, 0xcb, 0xc1, 0xea, 0x5e, 0x14, 0xb8, 0x8e, 0x6d, 0x09, 0xb6, + 0xc7, 0x04, 0xb3, 0x6f, 0x75, 0xbb, 0xdd, 0x83, 0x1a, 0x62, 0x46, 0x89, 0x20, 0x74, 0x7f, 0x54, + 0x91, 0x70, 0xc8, 0xa6, 0x12, 0xbc, 0x69, 0x38, 0x85, 0x21, 0x6e, 0xd0, 0xb2, 0x02, 0x51, 0x72, + 0x82, 0x48, 0xc4, 0xe1, 0x7b, 0xee, 0x14, 0xdb, 0xbf, 0x4a, 0x2b, 0x23, 0x36, 0x3d, 0xf6, 0xdc, + 0x29, 0x31, 0xa0, 0x39, 0x76, 0x3c, 0x73, 0xde, 0x0a, 0x6a, 0x0e, 0xd4, 0xc7, 0x8e, 0xb7, 0xab, + 0xbb, 0xc1, 0x38, 0x82, 0xf2, 0xe1, 0xe4, 0xa3, 0x9a, 0x35, 0xd5, 0x5c, 0x85, 0x74, 0x73, 0x19, + 0x7f, 0xca, 0xc1, 0x9d, 0x2b, 0xa1, 0xd0, 0xe1, 0xff, 0xde, 0x1c, 0x49, 0xbe, 0xe7, 0x1e, 0x8e, + 0x41, 0x24, 0xa6, 0xe1, 0x19, 0xd4, 0x10, 0x40, 0x26, 0x66, 0xf2, 0xc2, 0xac, 0xc9, 0x10, 0xa8, + 0x13, 0x9b, 0x71, 0xbd, 0x16, 0x30, 0x71, 0x2b, 0x69, 0x69, 0xf5, 0xa9, 0x71, 0x7f, 0xff, 0xbe, + 0x00, 0xe5, 0xc3, 0x37, 0x31, 0x10, 0xc7, 0x0b, 0x34, 0x97, 0xb8, 0x40, 0x3f, 0x87, 0x06, 0x0e, + 0x69, 0xd3, 0x3f, 0x3f, 0xe7, 0x4c, 0x20, 0xb0, 0x2c, 0xd2, 0x3a, 0xd2, 0x8e, 0x91, 0x94, 0x18, + 0xb1, 0xf9, 0x14, 0xd4, 0x9e, 0x1d, 0xd5, 0xdc, 0x46, 0xe2, 0xe8, 0x6b, 0x25, 0xd2, 0x82, 0xbc, + 0x7d, 0xae, 0x5f, 0x3b, 0x79, 0xfb, 0x5c, 0x86, 0xd5, 0xe1, 0xe6, 0x00, 0x07, 0x9a, 0x4e, 0x64, + 0xd5, 0xe1, 0x6a, 0xc0, 0xc9, 0x24, 0xab, 0xd2, 0x10, 0x31, 0x00, 0xae, 0xe0, 0xfe, 0x94, 0x93, + 0xfb, 0x00, 0x21, 0x53, 0x57, 0xd7, 0x2c, 0xc3, 0x35, 0x4d, 0x39, 0xe5, 0xe9, 0xa2, 0x2a, 0x5f, + 0x5f, 0x54, 0x95, 0x54, 0x51, 0xad, 0x42, 0x99, 0x0f, 0xad, 0xed, 0xef, 0xbf, 0x40, 0xc4, 0xde, + 0xa0, 0x7a, 0x27, 0x41, 0xbd, 0xd2, 0xc6, 0x3d, 0x2b, 0xe0, 0x43, 0x1f, 0x1d, 0x52, 0x80, 0xbd, + 0x8d, 0x8c, 0xbe, 0xa6, 0x9f, 0x72, 0xb2, 0x03, 0x1d, 0xdb, 0x1f, 0x07, 0x21, 0xe3, 0x12, 0x6f, + 0x9b, 0x62, 0x1a, 0x28, 0x0c, 0xd2, 0xda, 0xbe, 0x33, 0xbb, 0xb9, 0xe7, 0xfc, 0xd3, 0x69, 0xc0, + 0x68, 0xdb, 0x4e, 0x13, 0x8c, 0x3f, 0x17, 0xa0, 0xf1, 0x32, 0x08, 0xdc, 0x69, 0xdc, 0x4f, 0x1b, + 0xa9, 0x09, 0x92, 0xcd, 0xee, 0x1b, 0x05, 0x00, 0x71, 0x7c, 0x6c, 0xc6, 0x1d, 0xdc, 0x58, 0x58, + 0x08, 0x6f, 0x12, 0x0d, 0x7c, 0x05, 0x2a, 0xe5, 0x6f, 0x01, 0x95, 0x7e, 0x08, 0xcd, 0xa4, 0x0e, + 0xde, 0x6d, 0xa2, 0xdd, 0xeb, 0x95, 0xd0, 0x46, 0xe2, 0x38, 0x5f, 0x88, 0x94, 0x4a, 0x0b, 0x91, + 0xd2, 0x02, 0x50, 0x56, 0xf8, 0x28, 0x50, 0x96, 0x18, 0x4a, 0xc5, 0x9b, 0x86, 0x52, 0x06, 0x7a, + 0xd5, 0x3f, 0x04, 0x7a, 0x19, 0x23, 0x68, 0xea, 0xac, 0xdd, 0x16, 0x17, 0xcd, 0x46, 0x75, 0xfe, + 0xa6, 0x51, 0x6d, 0x3c, 0x82, 0xc6, 0xae, 0xcb, 0xac, 0x30, 0x2e, 0x91, 0x55, 0x28, 0x27, 0x1e, + 0x69, 0x35, 0xaa, 0x77, 0xc6, 0x0f, 0xa0, 0xa9, 0xe5, 0x3e, 0xfa, 0x3a, 0xd8, 0x7c, 0x08, 0x30, + 0x7f, 0xfa, 0x4b, 0xe0, 0xf1, 0x8d, 0x1f, 0x8e, 0x2d, 0x57, 0x81, 0x10, 0xf5, 0xcf, 0x44, 0x27, + 0xb7, 0xfd, 0x97, 0x2a, 0xd4, 0xd4, 0xa6, 0xdf, 0x3f, 0x25, 0x3f, 0x49, 0x9d, 0x59, 0xbf, 0xf6, + 0xcf, 0x05, 0xe5, 0x76, 0xef, 0xc1, 0xf5, 0x02, 0x1a, 0x55, 0x2d, 0x91, 0xaf, 0xa1, 0xac, 0x5e, + 0x6e, 0x24, 0x73, 0x1b, 0xa6, 0x1e, 0x8b, 0xbd, 0xcf, 0x16, 0x33, 0x63, 0x35, 0x1b, 0x39, 0xb2, + 0x0f, 0x65, 0xf5, 0x3a, 0xca, 0x2a, 0x4a, 0xbd, 0xcd, 0xb2, 0x8a, 0xd2, 0x0f, 0x2a, 0x63, 0x89, + 0xbc, 0x82, 0x8a, 0x7e, 0xcc, 0x90, 0x8c, 0x68, 0xfa, 0x0d, 0xd5, 0xbb, 0x7f, 0x0d, 0x77, 0xa6, + 0x29, 0x84, 0x4f, 0x17, 0x42, 0x4a, 0xb2, 0x99, 0x09, 0xcb, 0x7b, 0x80, 0x6b, 0xef, 0xc9, 0x07, + 0xc9, 0xce, 0x6c, 0x1e, 0x42, 0x35, 0xe6, 0x93, 0x8c, 0x83, 0x99, 0xe7, 0x58, 0x6f, 0xed, 0x3a, + 0xf6, 0x4c, 0xd9, 0x1e, 0x94, 0x10, 0x6c, 0x90, 0xde, 0x02, 0xa0, 0x17, 0xab, 0xb9, 0xb7, 0x90, + 0x97, 0xc8, 0xcb, 0x11, 0x54, 0x63, 0xd4, 0x92, 0x75, 0x29, 0x83, 0xa5, 0xb2, 0x2e, 0x65, 0xc1, + 0x0e, 0xaa, 0x3b, 0x86, 0x7a, 0xe2, 0xc5, 0x4d, 0x32, 0x25, 0x76, 0xf5, 0x31, 0x7e, 0x63, 0xc2, + 0xcf, 0xa0, 0x9d, 0xb9, 0xdd, 0xc9, 0xc3, 0x4c, 0x68, 0x16, 0xe2, 0xa0, 0xde, 0x17, 0x37, 0x48, + 0xc5, 0x16, 0x9e, 0xe5, 0xc8, 0x0e, 0x94, 0x70, 0x78, 0x64, 0x23, 0x99, 0xbc, 0x07, 0xb2, 0x91, + 0x4c, 0x4d, 0x1b, 0x6c, 0x14, 0xc0, 0x5e, 0xff, 0x91, 0x23, 0x47, 0x6b, 0x46, 0x51, 0x72, 0x5a, + 0x64, 0x15, 0xa5, 0x26, 0x84, 0xb1, 0x44, 0x6c, 0xe8, 0x64, 0xff, 0x7f, 0x24, 0x99, 0x6f, 0xb9, + 0xe6, 0x2f, 0xd3, 0xde, 0xa3, 0x9b, 0xc4, 0x62, 0x23, 0x3b, 0x8f, 0xfe, 0xf1, 0xc7, 0x6a, 0xee, + 0xdb, 0x77, 0x6b, 0xb9, 0xbf, 0xbf, 0x5b, 0xcb, 0xfd, 0xfb, 0xdd, 0x5a, 0xee, 0x77, 0xff, 0x59, + 0x5b, 0x82, 0x8e, 0x1f, 0x5e, 0x6c, 0x09, 0x67, 0x34, 0xd9, 0x1a, 0x4d, 0xf0, 0x0f, 0xda, 0xb3, + 0x32, 0xfe, 0x3c, 0xff, 0x6f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xa4, 0xf5, 0x85, 0x72, 0x2a, 0x16, + 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -2471,6 +2597,8 @@ type ImportSSTClient interface { Apply(ctx context.Context, in *ApplyRequest, opts ...grpc.CallOption) (*ApplyResponse, error) // ClearFiles clear applied file after restore succeed. ClearFiles(ctx context.Context, in *ClearRequest, opts ...grpc.CallOption) (*ClearResponse, error) + // Suspend ingest for data listeners don't support catching import data. + SuspendImportRPC(ctx context.Context, in *SuspendImportRPCRequest, opts ...grpc.CallOption) (*SuspendImportRPCResponse, error) } type importSSTClient struct { @@ -2687,6 +2815,15 @@ func (c *importSSTClient) ClearFiles(ctx context.Context, in *ClearRequest, opts return out, nil } +func (c *importSSTClient) SuspendImportRPC(ctx context.Context, in *SuspendImportRPCRequest, opts ...grpc.CallOption) (*SuspendImportRPCResponse, error) { + out := new(SuspendImportRPCResponse) + err := c.cc.Invoke(ctx, "/import_sstpb.ImportSST/SuspendImportRPC", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + // ImportSSTServer is the server API for ImportSST service. type ImportSSTServer interface { // Switch to normal/import mode. @@ -2712,6 +2849,8 @@ type ImportSSTServer interface { Apply(context.Context, *ApplyRequest) (*ApplyResponse, error) // ClearFiles clear applied file after restore succeed. ClearFiles(context.Context, *ClearRequest) (*ClearResponse, error) + // Suspend ingest for data listeners don't support catching import data. + SuspendImportRPC(context.Context, *SuspendImportRPCRequest) (*SuspendImportRPCResponse, error) } // UnimplementedImportSSTServer can be embedded to have forward compatible implementations. @@ -2754,6 +2893,9 @@ func (*UnimplementedImportSSTServer) Apply(ctx context.Context, req *ApplyReques func (*UnimplementedImportSSTServer) ClearFiles(ctx context.Context, req *ClearRequest) (*ClearResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method ClearFiles not implemented") } +func (*UnimplementedImportSSTServer) SuspendImportRPC(ctx context.Context, req *SuspendImportRPCRequest) (*SuspendImportRPCResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method SuspendImportRPC not implemented") +} func RegisterImportSSTServer(s *grpc.Server, srv ImportSSTServer) { s.RegisterService(&_ImportSST_serviceDesc, srv) @@ -3002,6 +3144,24 @@ func _ImportSST_ClearFiles_Handler(srv interface{}, ctx context.Context, dec fun return interceptor(ctx, in, info, handler) } +func _ImportSST_SuspendImportRPC_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(SuspendImportRPCRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(ImportSSTServer).SuspendImportRPC(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/import_sstpb.ImportSST/SuspendImportRPC", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(ImportSSTServer).SuspendImportRPC(ctx, req.(*SuspendImportRPCRequest)) + } + return interceptor(ctx, in, info, handler) +} + var _ImportSST_serviceDesc = grpc.ServiceDesc{ ServiceName: "import_sstpb.ImportSST", HandlerType: (*ImportSSTServer)(nil), @@ -3038,6 +3198,10 @@ var _ImportSST_serviceDesc = grpc.ServiceDesc{ MethodName: "ClearFiles", Handler: _ImportSST_ClearFiles_Handler, }, + { + MethodName: "SuspendImportRPC", + Handler: _ImportSST_SuspendImportRPC_Handler, + }, }, Streams: []grpc.StreamDesc{ { @@ -3064,6 +3228,92 @@ var _ImportSST_serviceDesc = grpc.ServiceDesc{ Metadata: "import_sstpb.proto", } +func (m *SuspendImportRPCRequest) 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 *SuspendImportRPCRequest) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *SuspendImportRPCRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.XXX_unrecognized != nil { + i -= len(m.XXX_unrecognized) + copy(dAtA[i:], m.XXX_unrecognized) + } + if len(m.Caller) > 0 { + i -= len(m.Caller) + copy(dAtA[i:], m.Caller) + i = encodeVarintImportSstpb(dAtA, i, uint64(len(m.Caller))) + i-- + dAtA[i] = 0x1a + } + if m.DurationInSecs != 0 { + i = encodeVarintImportSstpb(dAtA, i, uint64(m.DurationInSecs)) + i-- + dAtA[i] = 0x10 + } + if m.ShouldSuspendImports { + i-- + if m.ShouldSuspendImports { + dAtA[i] = 1 + } else { + dAtA[i] = 0 + } + i-- + dAtA[i] = 0x8 + } + return len(dAtA) - i, nil +} + +func (m *SuspendImportRPCResponse) 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 *SuspendImportRPCResponse) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *SuspendImportRPCResponse) 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.AlreadySuspended { + i-- + if m.AlreadySuspended { + dAtA[i] = 1 + } else { + dAtA[i] = 0 + } + i-- + dAtA[i] = 0x8 + } + return len(dAtA) - i, nil +} + func (m *SwitchModeRequest) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -4853,6 +5103,43 @@ func encodeVarintImportSstpb(dAtA []byte, offset int, v uint64) int { dAtA[offset] = uint8(v) return base } +func (m *SuspendImportRPCRequest) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.ShouldSuspendImports { + n += 2 + } + if m.DurationInSecs != 0 { + n += 1 + sovImportSstpb(uint64(m.DurationInSecs)) + } + l = len(m.Caller) + if l > 0 { + n += 1 + l + sovImportSstpb(uint64(l)) + } + if m.XXX_unrecognized != nil { + n += len(m.XXX_unrecognized) + } + return n +} + +func (m *SuspendImportRPCResponse) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.AlreadySuspended { + n += 2 + } + if m.XXX_unrecognized != nil { + n += len(m.XXX_unrecognized) + } + return n +} + func (m *SwitchModeRequest) Size() (n int) { if m == nil { return 0 @@ -5652,6 +5939,199 @@ func sovImportSstpb(x uint64) (n int) { func sozImportSstpb(x uint64) (n int) { return sovImportSstpb(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } +func (m *SuspendImportRPCRequest) 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 ErrIntOverflowImportSstpb + } + 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: SuspendImportRPCRequest: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: SuspendImportRPCRequest: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field ShouldSuspendImports", wireType) + } + var v int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowImportSstpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.ShouldSuspendImports = bool(v != 0) + case 2: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field DurationInSecs", wireType) + } + m.DurationInSecs = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowImportSstpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.DurationInSecs |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Caller", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowImportSstpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthImportSstpb + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthImportSstpb + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Caller = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipImportSstpb(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthImportSstpb + } + 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 *SuspendImportRPCResponse) 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 ErrIntOverflowImportSstpb + } + 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: SuspendImportRPCResponse: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: SuspendImportRPCResponse: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field AlreadySuspended", wireType) + } + var v int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowImportSstpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.AlreadySuspended = bool(v != 0) + default: + iNdEx = preIndex + skippy, err := skipImportSstpb(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthImportSstpb + } + 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 *SwitchModeRequest) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 diff --git a/proto/import_sstpb.proto b/proto/import_sstpb.proto index b37932484..1d59b5ff5 100644 --- a/proto/import_sstpb.proto +++ b/proto/import_sstpb.proto @@ -61,6 +61,27 @@ service ImportSST { // ClearFiles clear applied file after restore succeed. rpc ClearFiles(ClearRequest) returns (ClearResponse) {} + + // Suspend ingest for data listeners don't support catching import data. + rpc SuspendImportRPC(SuspendImportRPCRequest) returns (SuspendImportRPCResponse) {} + +} + +message SuspendImportRPCRequest { + // whether to suspend new imports. + bool should_suspend_imports = 1; + + // the duration of import service suspension + // when should_deny_imports is false, + // this won't take effect. + uint64 duration_in_secs = 2; + // The identifier for the caller. + string caller = 3; +} + +message SuspendImportRPCResponse { + // The last state before this RPC. + bool already_suspended = 1; } enum SwitchMode {