diff --git a/pkg/ccl/streamingccl/streamclient/random_stream_client.go b/pkg/ccl/streamingccl/streamclient/random_stream_client.go index 05ed88fdc5fc..07200d56b680 100644 --- a/pkg/ccl/streamingccl/streamclient/random_stream_client.go +++ b/pkg/ccl/streamingccl/streamclient/random_stream_client.go @@ -64,14 +64,30 @@ const ( IngestionTablePrefix = "foo" ) -type interceptFn func(event streamingccl.Event, pa streamingccl.PartitionAddress) +var randomStreamClientSingleton *randomStreamClient + +// GetRandomStreamClientSingletonForTesting returns the singleton instance of +// the client. This is to be used in testing, when interceptors can be +// registered on the client to observe events. +func GetRandomStreamClientSingletonForTesting() Client { + if randomStreamClientSingleton == nil { + randomStreamClientSingleton = &randomStreamClient{} + } + return randomStreamClientSingleton +} + +// InterceptFn is a function that will intercept events emitted by +// an InterceptableStreamClient +type InterceptFn func(event streamingccl.Event, pa streamingccl.PartitionAddress) // InterceptableStreamClient wraps a Client, and provides a method to register // interceptor methods that are run on every streamed Event. type InterceptableStreamClient interface { Client - RegisterInterception(fn interceptFn) + // RegisterInterception is how you can register your interceptor to be called + // from an InterceptableStreamClient. + RegisterInterception(fn InterceptFn) } // randomStreamConfig specifies the variables that controls the rate and type of @@ -168,16 +184,21 @@ var _ InterceptableStreamClient = &randomStreamClient{} // events on a table with an integer key and integer value for the table with // the given ID. func newRandomStreamClient(streamURL *url.URL) (Client, error) { + if randomStreamClientSingleton == nil { + randomStreamClientSingleton = &randomStreamClient{} + + randomStreamClientSingleton.mu.Lock() + randomStreamClientSingleton.mu.tableID = 52 + randomStreamClientSingleton.mu.Unlock() + } + streamConfig, err := parseRandomStreamConfig(streamURL) if err != nil { return nil, err } + randomStreamClientSingleton.config = streamConfig - client := randomStreamClient{config: streamConfig} - client.mu.Lock() - defer client.mu.Unlock() - client.mu.tableID = 52 - return &client, nil + return randomStreamClientSingleton, nil } func (m *randomStreamClient) getNextTableID() int { @@ -393,7 +414,7 @@ func (m *randomStreamClient) makeRandomKey( } // RegisterInterception implements the InterceptableStreamClient interface. -func (m *randomStreamClient) RegisterInterception(fn interceptFn) { +func (m *randomStreamClient) RegisterInterception(fn InterceptFn) { m.mu.Lock() defer m.mu.Unlock() m.mu.interceptors = append(m.mu.interceptors, fn) diff --git a/pkg/ccl/streamingccl/streamingest/BUILD.bazel b/pkg/ccl/streamingccl/streamingest/BUILD.bazel index 2db7a338e39f..7f0adbcb57a0 100644 --- a/pkg/ccl/streamingccl/streamingest/BUILD.bazel +++ b/pkg/ccl/streamingccl/streamingest/BUILD.bazel @@ -85,7 +85,6 @@ go_test( "//pkg/security/securitytest", "//pkg/server", "//pkg/settings/cluster", - "//pkg/sql", "//pkg/sql/execinfra", "//pkg/sql/execinfrapb", "//pkg/sql/sem/tree", diff --git a/pkg/ccl/streamingccl/streamingest/stream_ingestion_frontier_processor_test.go b/pkg/ccl/streamingccl/streamingest/stream_ingestion_frontier_processor_test.go index adc3f367222f..7c0d79358057 100644 --- a/pkg/ccl/streamingccl/streamingest/stream_ingestion_frontier_processor_test.go +++ b/pkg/ccl/streamingccl/streamingest/stream_ingestion_frontier_processor_test.go @@ -154,7 +154,7 @@ func TestStreamIngestionFrontierProcessor(t *testing.T) { }, } { t.Run(tc.name, func(t *testing.T) { - spec.PartitionAddresses = []streamingccl.PartitionAddress{pa1, pa2} + spec.PartitionAddresses = []string{string(pa1), string(pa2)} proc, err := newStreamIngestionDataProcessor(&flowCtx, 0 /* processorID */, spec, &post, out) require.NoError(t, err) sip, ok := proc.(*streamIngestionProcessor) diff --git a/pkg/ccl/streamingccl/streamingest/stream_ingestion_job.go b/pkg/ccl/streamingccl/streamingest/stream_ingestion_job.go index 8bbf83eca36d..5ba3a8e8e398 100644 --- a/pkg/ccl/streamingccl/streamingest/stream_ingestion_job.go +++ b/pkg/ccl/streamingccl/streamingest/stream_ingestion_job.go @@ -81,7 +81,8 @@ func (s *streamIngestionResumer) Resume(resumeCtx context.Context, execCtx inter p := execCtx.(sql.JobExecContext) // Start ingesting KVs from the replication stream. - err := ingest(resumeCtx, p, details.StartTime, details.StreamAddress, s.job.Progress(), s.job.ID()) + streamAddress := streamingccl.StreamAddress(details.StreamAddress) + err := ingest(resumeCtx, p, details.StartTime, streamAddress, s.job.Progress(), s.job.ID()) if err != nil { return err } diff --git a/pkg/ccl/streamingccl/streamingest/stream_ingestion_planning.go b/pkg/ccl/streamingccl/streamingest/stream_ingestion_planning.go index e803eb127bf7..96ec04ac9a1a 100644 --- a/pkg/ccl/streamingccl/streamingest/stream_ingestion_planning.go +++ b/pkg/ccl/streamingccl/streamingest/stream_ingestion_planning.go @@ -113,7 +113,7 @@ func ingestionPlanHook( } streamIngestionDetails := jobspb.StreamIngestionDetails{ - StreamAddress: streamAddress, + StreamAddress: string(streamAddress), Span: roachpb.Span{Key: prefix, EndKey: prefix.PrefixEnd()}, StartTime: startTime, } diff --git a/pkg/ccl/streamingccl/streamingest/stream_ingestion_processor.go b/pkg/ccl/streamingccl/streamingest/stream_ingestion_processor.go index 9b79e030b0e6..abefff5e434c 100644 --- a/pkg/ccl/streamingccl/streamingest/stream_ingestion_processor.go +++ b/pkg/ccl/streamingccl/streamingest/stream_ingestion_processor.go @@ -21,7 +21,6 @@ import ( "github.com/cockroachdb/cockroach/pkg/kv/bulk" "github.com/cockroachdb/cockroach/pkg/roachpb" "github.com/cockroachdb/cockroach/pkg/settings" - "github.com/cockroachdb/cockroach/pkg/sql" "github.com/cockroachdb/cockroach/pkg/sql/execinfra" "github.com/cockroachdb/cockroach/pkg/sql/execinfrapb" "github.com/cockroachdb/cockroach/pkg/sql/rowenc" @@ -138,25 +137,11 @@ func newStreamIngestionDataProcessor( post *execinfrapb.PostProcessSpec, output execinfra.RowReceiver, ) (execinfra.Processor, error) { - streamClient, err := streamclient.NewStreamClient(spec.StreamAddress) + streamClient, err := streamclient.NewStreamClient(streamingccl.StreamAddress(spec.StreamAddress)) if err != nil { return nil, err } - // Check if there are any interceptor methods that need to be registered with - // the stream client. - // These methods are invoked on every emitted Event. - if knobs, ok := flowCtx.Cfg.TestingKnobs.StreamIngestionTestingKnobs.(*sql. - StreamIngestionTestingKnobs); ok { - if knobs.Interceptors != nil { - if interceptable, ok := streamClient.(streamclient.InterceptableStreamClient); ok { - for _, interceptor := range knobs.Interceptors { - interceptable.RegisterInterception(interceptor) - } - } - } - } - sip := &streamIngestionProcessor{ flowCtx: flowCtx, spec: spec, @@ -212,7 +197,8 @@ func (sip *streamIngestionProcessor) Start(ctx context.Context) { // Initialize the event streams. eventChs := make(map[streamingccl.PartitionAddress]chan streamingccl.Event) errChs := make(map[streamingccl.PartitionAddress]chan error) - for _, partitionAddress := range sip.spec.PartitionAddresses { + for _, pa := range sip.spec.PartitionAddresses { + partitionAddress := streamingccl.PartitionAddress(pa) eventCh, errCh, err := sip.client.ConsumePartition(ctx, partitionAddress, sip.spec.StartTime) if err != nil { sip.MoveToDraining(errors.Wrapf(err, "consuming partition %v", partitionAddress)) diff --git a/pkg/ccl/streamingccl/streamingest/stream_ingestion_processor_planning.go b/pkg/ccl/streamingccl/streamingest/stream_ingestion_processor_planning.go index 009b070ac8a9..2d880bda4048 100644 --- a/pkg/ccl/streamingccl/streamingest/stream_ingestion_processor_planning.go +++ b/pkg/ccl/streamingccl/streamingest/stream_ingestion_processor_planning.go @@ -46,14 +46,14 @@ func distStreamIngestionPlanSpecs( spec := &execinfrapb.StreamIngestionDataSpec{ JobID: int64(jobID), StartTime: initialHighWater, - StreamAddress: streamAddress, - PartitionAddresses: make([]streamingccl.PartitionAddress, 0), + StreamAddress: string(streamAddress), + PartitionAddresses: make([]string, 0), } streamIngestionSpecs = append(streamIngestionSpecs, spec) } n := i % len(nodes) streamIngestionSpecs[n].PartitionAddresses = append(streamIngestionSpecs[n].PartitionAddresses, - partition) + string(partition)) partitionKey := roachpb.Key(partition) // We create "fake" spans to uniquely identify the partition. This is used // to keep track of the resolved ts received for a particular partition in diff --git a/pkg/ccl/streamingccl/streamingest/stream_ingestion_processor_test.go b/pkg/ccl/streamingccl/streamingest/stream_ingestion_processor_test.go index fa8e26508369..ea886a64b8c7 100644 --- a/pkg/ccl/streamingccl/streamingest/stream_ingestion_processor_test.go +++ b/pkg/ccl/streamingccl/streamingest/stream_ingestion_processor_test.go @@ -24,7 +24,6 @@ import ( "github.com/cockroachdb/cockroach/pkg/kv" "github.com/cockroachdb/cockroach/pkg/roachpb" "github.com/cockroachdb/cockroach/pkg/settings/cluster" - "github.com/cockroachdb/cockroach/pkg/sql" "github.com/cockroachdb/cockroach/pkg/sql/execinfra" "github.com/cockroachdb/cockroach/pkg/sql/execinfrapb" "github.com/cockroachdb/cockroach/pkg/sql/sem/tree" @@ -131,8 +130,7 @@ func TestStreamIngestionProcessor(t *testing.T) { startTime := hlc.Timestamp{WallTime: timeutil.Now().UnixNano()} partitionAddresses := []streamingccl.PartitionAddress{"partition1", "partition2"} out, err := runStreamIngestionProcessor(ctx, t, registry, kvDB, "randomgen://test/", - partitionAddresses, - startTime, nil /* interceptEvents */, mockClient) + partitionAddresses, startTime, nil /* interceptEvents */, mockClient) require.NoError(t, err) actualRows := make(map[string]struct{}) @@ -308,8 +306,7 @@ func TestRandomClientGeneration(t *testing.T) { streamValidator := newStreamClientValidator() validator := registerValidatorWithClient(streamValidator) out, err := runStreamIngestionProcessor(ctx, t, registry, kvDB, streamAddr, topo.Partitions, - startTime, []func(streamingccl.Event, streamingccl.PartitionAddress){cancelAfterCheckpoints, - validator}, nil /* mockClient */) + startTime, []streamclient.InterceptFn{cancelAfterCheckpoints, validator}, nil /* mockClient */) require.NoError(t, err) partitionSpanToTableID := getPartitionSpanToTableID(t, topo.Partitions) @@ -379,7 +376,7 @@ func runStreamIngestionProcessor( streamAddr string, partitionAddresses []streamingccl.PartitionAddress, startTime hlc.Timestamp, - interceptEvents []func(streamingccl.Event, streamingccl.PartitionAddress), + interceptEvents []streamclient.InterceptFn, mockClient streamclient.Client, ) (*distsqlutils.RowBuffer, error) { st := cluster.MakeTestingClusterSettings() @@ -397,16 +394,17 @@ func runStreamIngestionProcessor( EvalCtx: &evalCtx, DiskMonitor: testDiskMonitor, } - flowCtx.Cfg.TestingKnobs.StreamIngestionTestingKnobs = &sql.StreamIngestionTestingKnobs{ - Interceptors: interceptEvents} out := &distsqlutils.RowBuffer{} post := execinfrapb.PostProcessSpec{} var spec execinfrapb.StreamIngestionDataSpec - spec.StreamAddress = streamingccl.StreamAddress(streamAddr) + spec.StreamAddress = streamAddr - spec.PartitionAddresses = partitionAddresses + spec.PartitionAddresses = make([]string, len(partitionAddresses)) + for i, pa := range partitionAddresses { + spec.PartitionAddresses[i] = string(pa) + } spec.StartTime = startTime processorID := int32(0) proc, err := newStreamIngestionDataProcessor(&flowCtx, processorID, spec, &post, out) @@ -420,6 +418,12 @@ func runStreamIngestionProcessor( sip.client = mockClient } + if interceptable, ok := sip.client.(streamclient.InterceptableStreamClient); ok { + for _, interceptor := range interceptEvents { + interceptable.RegisterInterception(interceptor) + } + } + sip.Run(ctx) // Ensure that all the outputs are properly closed. diff --git a/pkg/ccl/streamingccl/streamingest/stream_ingestion_test.go b/pkg/ccl/streamingccl/streamingest/stream_ingestion_test.go index cac5f4a5be72..718876045ac2 100644 --- a/pkg/ccl/streamingccl/streamingest/stream_ingestion_test.go +++ b/pkg/ccl/streamingccl/streamingest/stream_ingestion_test.go @@ -17,15 +17,13 @@ import ( "github.com/cockroachdb/cockroach/pkg/base" _ "github.com/cockroachdb/cockroach/pkg/ccl/kvccl/kvtenantccl" // To start tenants. - "github.com/cockroachdb/cockroach/pkg/ccl/streamingccl" + "github.com/cockroachdb/cockroach/pkg/ccl/streamingccl/streamclient" _ "github.com/cockroachdb/cockroach/pkg/ccl/streamingccl/streamingutils" // Load the cutover builtin. "github.com/cockroachdb/cockroach/pkg/jobs" "github.com/cockroachdb/cockroach/pkg/jobs/jobspb" "github.com/cockroachdb/cockroach/pkg/keys" "github.com/cockroachdb/cockroach/pkg/kv/kvserver" "github.com/cockroachdb/cockroach/pkg/roachpb" - "github.com/cockroachdb/cockroach/pkg/sql" - "github.com/cockroachdb/cockroach/pkg/sql/execinfra" "github.com/cockroachdb/cockroach/pkg/storage" "github.com/cockroachdb/cockroach/pkg/testutils" "github.com/cockroachdb/cockroach/pkg/testutils/jobutils" @@ -87,22 +85,28 @@ func TestStreamIngestionJobWithRandomClient(t *testing.T) { completeJobAfterCheckpoints := makeCheckpointEventCounter(&mu, threshold, func() { canBeCompletedCh <- struct{}{} }) + + // Register interceptors on the random stream client, which will be used by + // the processors. streamValidator := newStreamClientValidator() registerValidator := registerValidatorWithClient(streamValidator) - knobs := base.TestingKnobs{ - DistSQL: &execinfra.TestingKnobs{StreamIngestionTestingKnobs: &sql.StreamIngestionTestingKnobs{ - Interceptors: []func(event streamingccl.Event, pa streamingccl.PartitionAddress){completeJobAfterCheckpoints, - registerValidator}, - }, - }, + client := streamclient.GetRandomStreamClientSingletonForTesting() + interceptEvents := []streamclient.InterceptFn{ + completeJobAfterCheckpoints, + registerValidator, + } + if interceptable, ok := client.(streamclient.InterceptableStreamClient); ok { + for _, interceptor := range interceptEvents { + interceptable.RegisterInterception(interceptor) + } + } else { + t.Fatal("expected the random stream client to be interceptable") } - serverArgs := base.TestServerArgs{} - serverArgs.Knobs = knobs var receivedRevertRequest chan struct{} var allowResponse chan struct{} var revertRangeTargetTime hlc.Timestamp - params := base.TestClusterArgs{ServerArgs: serverArgs} + params := base.TestClusterArgs{} params.ServerArgs.Knobs.Store = &kvserver.StoreTestingKnobs{ TestingRequestFilter: func(_ context.Context, ba roachpb.BatchRequest) *roachpb.Error { for _, req := range ba.Requests { diff --git a/pkg/jobs/jobspb/BUILD.bazel b/pkg/jobs/jobspb/BUILD.bazel index 62f479d0880d..76693107c055 100644 --- a/pkg/jobs/jobspb/BUILD.bazel +++ b/pkg/jobs/jobspb/BUILD.bazel @@ -42,7 +42,6 @@ go_proto_library( proto = ":jobspb_proto", visibility = ["//visibility:public"], deps = [ - "//pkg/ccl/streamingccl", # keep "//pkg/clusterversion", "//pkg/roachpb", "//pkg/security", # keep diff --git a/pkg/jobs/jobspb/jobs.pb.go b/pkg/jobs/jobspb/jobs.pb.go index eddd1fd7e5ea..92bb3b128462 100644 --- a/pkg/jobs/jobspb/jobs.pb.go +++ b/pkg/jobs/jobspb/jobs.pb.go @@ -14,7 +14,6 @@ import scpb "github.com/cockroachdb/cockroach/pkg/sql/schemachanger/scpb" import hlc "github.com/cockroachdb/cockroach/pkg/util/hlc" import github_com_cockroachdb_cockroach_pkg_roachpb "github.com/cockroachdb/cockroach/pkg/roachpb" -import github_com_cockroachdb_cockroach_pkg_ccl_streamingccl "github.com/cockroachdb/cockroach/pkg/ccl/streamingccl" import github_com_cockroachdb_cockroach_pkg_util_uuid "github.com/cockroachdb/cockroach/pkg/util/uuid" import github_com_cockroachdb_cockroach_pkg_sql_catalog_descpb "github.com/cockroachdb/cockroach/pkg/sql/catalog/descpb" import github_com_cockroachdb_cockroach_pkg_sql_sem_tree "github.com/cockroachdb/cockroach/pkg/sql/sem/tree" @@ -58,7 +57,7 @@ func (x EncryptionMode) String() string { return proto.EnumName(EncryptionMode_name, int32(x)) } func (EncryptionMode) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_jobs_e9f91d70a74c527b, []int{0} + return fileDescriptor_jobs_1765ed052d18ceed, []int{0} } type Status int32 @@ -87,7 +86,7 @@ func (x Status) String() string { return proto.EnumName(Status_name, int32(x)) } func (Status) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_jobs_e9f91d70a74c527b, []int{1} + return fileDescriptor_jobs_1765ed052d18ceed, []int{1} } type Type int32 @@ -142,7 +141,7 @@ var Type_value = map[string]int32{ } func (Type) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_jobs_e9f91d70a74c527b, []int{2} + return fileDescriptor_jobs_1765ed052d18ceed, []int{2} } type EncryptionInfo_Scheme int32 @@ -162,7 +161,7 @@ func (x EncryptionInfo_Scheme) String() string { return proto.EnumName(EncryptionInfo_Scheme_name, int32(x)) } func (EncryptionInfo_Scheme) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_jobs_e9f91d70a74c527b, []int{2, 0} + return fileDescriptor_jobs_1765ed052d18ceed, []int{2, 0} } type SchemaChangeGCProgress_Status int32 @@ -192,7 +191,7 @@ func (x SchemaChangeGCProgress_Status) String() string { return proto.EnumName(SchemaChangeGCProgress_Status_name, int32(x)) } func (SchemaChangeGCProgress_Status) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_jobs_e9f91d70a74c527b, []int{22, 0} + return fileDescriptor_jobs_1765ed052d18ceed, []int{22, 0} } type ResolvedSpan_BoundaryType int32 @@ -230,7 +229,7 @@ func (x ResolvedSpan_BoundaryType) String() string { return proto.EnumName(ResolvedSpan_BoundaryType_name, int32(x)) } func (ResolvedSpan_BoundaryType) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_jobs_e9f91d70a74c527b, []int{25, 0} + return fileDescriptor_jobs_1765ed052d18ceed, []int{25, 0} } type Lease struct { @@ -244,7 +243,7 @@ func (m *Lease) Reset() { *m = Lease{} } func (m *Lease) String() string { return proto.CompactTextString(m) } func (*Lease) ProtoMessage() {} func (*Lease) Descriptor() ([]byte, []int) { - return fileDescriptor_jobs_e9f91d70a74c527b, []int{0} + return fileDescriptor_jobs_1765ed052d18ceed, []int{0} } func (m *Lease) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -285,7 +284,7 @@ func (m *BackupEncryptionOptions) Reset() { *m = BackupEncryptionOptions func (m *BackupEncryptionOptions) String() string { return proto.CompactTextString(m) } func (*BackupEncryptionOptions) ProtoMessage() {} func (*BackupEncryptionOptions) Descriptor() ([]byte, []int) { - return fileDescriptor_jobs_e9f91d70a74c527b, []int{1} + return fileDescriptor_jobs_1765ed052d18ceed, []int{1} } func (m *BackupEncryptionOptions) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -319,7 +318,7 @@ func (m *BackupEncryptionOptions_KMSInfo) Reset() { *m = BackupEncryptio func (m *BackupEncryptionOptions_KMSInfo) String() string { return proto.CompactTextString(m) } func (*BackupEncryptionOptions_KMSInfo) ProtoMessage() {} func (*BackupEncryptionOptions_KMSInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_jobs_e9f91d70a74c527b, []int{1, 0} + return fileDescriptor_jobs_1765ed052d18ceed, []int{1, 0} } func (m *BackupEncryptionOptions_KMSInfo) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -359,7 +358,7 @@ func (m *EncryptionInfo) Reset() { *m = EncryptionInfo{} } func (m *EncryptionInfo) String() string { return proto.CompactTextString(m) } func (*EncryptionInfo) ProtoMessage() {} func (*EncryptionInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_jobs_e9f91d70a74c527b, []int{2} + return fileDescriptor_jobs_1765ed052d18ceed, []int{2} } func (m *EncryptionInfo) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -387,7 +386,7 @@ var xxx_messageInfo_EncryptionInfo proto.InternalMessageInfo type StreamIngestionDetails struct { // StreamAddress locates the stream. It enables the client to find the // addresses of the stream's partitions. - StreamAddress github_com_cockroachdb_cockroach_pkg_ccl_streamingccl.StreamAddress `protobuf:"bytes,1,opt,name=stream_address,json=streamAddress,proto3,casttype=github.com/cockroachdb/cockroach/pkg/ccl/streamingccl.StreamAddress" json:"stream_address,omitempty"` + StreamAddress string `protobuf:"bytes,1,opt,name=stream_address,json=streamAddress,proto3" json:"stream_address,omitempty"` // Span is the keyspan into which this job will ingest KVs. // // The stream should emit all changes for a given span, and no changes outside @@ -402,7 +401,7 @@ func (m *StreamIngestionDetails) Reset() { *m = StreamIngestionDetails{} func (m *StreamIngestionDetails) String() string { return proto.CompactTextString(m) } func (*StreamIngestionDetails) ProtoMessage() {} func (*StreamIngestionDetails) Descriptor() ([]byte, []int) { - return fileDescriptor_jobs_e9f91d70a74c527b, []int{3} + return fileDescriptor_jobs_1765ed052d18ceed, []int{3} } func (m *StreamIngestionDetails) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -439,7 +438,7 @@ func (m *StreamIngestionProgress) Reset() { *m = StreamIngestionProgress func (m *StreamIngestionProgress) String() string { return proto.CompactTextString(m) } func (*StreamIngestionProgress) ProtoMessage() {} func (*StreamIngestionProgress) Descriptor() ([]byte, []int) { - return fileDescriptor_jobs_e9f91d70a74c527b, []int{4} + return fileDescriptor_jobs_1765ed052d18ceed, []int{4} } func (m *StreamIngestionProgress) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -494,7 +493,7 @@ func (m *BackupDetails) Reset() { *m = BackupDetails{} } func (m *BackupDetails) String() string { return proto.CompactTextString(m) } func (*BackupDetails) ProtoMessage() {} func (*BackupDetails) Descriptor() ([]byte, []int) { - return fileDescriptor_jobs_e9f91d70a74c527b, []int{5} + return fileDescriptor_jobs_1765ed052d18ceed, []int{5} } func (m *BackupDetails) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -526,7 +525,7 @@ func (m *BackupProgress) Reset() { *m = BackupProgress{} } func (m *BackupProgress) String() string { return proto.CompactTextString(m) } func (*BackupProgress) ProtoMessage() {} func (*BackupProgress) Descriptor() ([]byte, []int) { - return fileDescriptor_jobs_e9f91d70a74c527b, []int{6} + return fileDescriptor_jobs_1765ed052d18ceed, []int{6} } func (m *BackupProgress) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -594,7 +593,7 @@ func (m *RestoreDetails) Reset() { *m = RestoreDetails{} } func (m *RestoreDetails) String() string { return proto.CompactTextString(m) } func (*RestoreDetails) ProtoMessage() {} func (*RestoreDetails) Descriptor() ([]byte, []int) { - return fileDescriptor_jobs_e9f91d70a74c527b, []int{7} + return fileDescriptor_jobs_1765ed052d18ceed, []int{7} } func (m *RestoreDetails) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -631,7 +630,7 @@ func (m *RestoreDetails_DescriptorRewrite) Reset() { *m = RestoreDetails func (m *RestoreDetails_DescriptorRewrite) String() string { return proto.CompactTextString(m) } func (*RestoreDetails_DescriptorRewrite) ProtoMessage() {} func (*RestoreDetails_DescriptorRewrite) Descriptor() ([]byte, []int) { - return fileDescriptor_jobs_e9f91d70a74c527b, []int{7, 0} + return fileDescriptor_jobs_1765ed052d18ceed, []int{7, 0} } func (m *RestoreDetails_DescriptorRewrite) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -664,7 +663,7 @@ func (m *RestoreDetails_BackupLocalityInfo) Reset() { *m = RestoreDetail func (m *RestoreDetails_BackupLocalityInfo) String() string { return proto.CompactTextString(m) } func (*RestoreDetails_BackupLocalityInfo) ProtoMessage() {} func (*RestoreDetails_BackupLocalityInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_jobs_e9f91d70a74c527b, []int{7, 1} + return fileDescriptor_jobs_1765ed052d18ceed, []int{7, 1} } func (m *RestoreDetails_BackupLocalityInfo) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -697,7 +696,7 @@ func (m *RestoreProgress) Reset() { *m = RestoreProgress{} } func (m *RestoreProgress) String() string { return proto.CompactTextString(m) } func (*RestoreProgress) ProtoMessage() {} func (*RestoreProgress) Descriptor() ([]byte, []int) { - return fileDescriptor_jobs_e9f91d70a74c527b, []int{8} + return fileDescriptor_jobs_1765ed052d18ceed, []int{8} } func (m *RestoreProgress) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -760,7 +759,7 @@ func (m *ImportDetails) Reset() { *m = ImportDetails{} } func (m *ImportDetails) String() string { return proto.CompactTextString(m) } func (*ImportDetails) ProtoMessage() {} func (*ImportDetails) Descriptor() ([]byte, []int) { - return fileDescriptor_jobs_e9f91d70a74c527b, []int{9} + return fileDescriptor_jobs_1765ed052d18ceed, []int{9} } func (m *ImportDetails) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -798,7 +797,7 @@ func (m *ImportDetails_Table) Reset() { *m = ImportDetails_Table{} } func (m *ImportDetails_Table) String() string { return proto.CompactTextString(m) } func (*ImportDetails_Table) ProtoMessage() {} func (*ImportDetails_Table) Descriptor() ([]byte, []int) { - return fileDescriptor_jobs_e9f91d70a74c527b, []int{9, 0} + return fileDescriptor_jobs_1765ed052d18ceed, []int{9, 0} } func (m *ImportDetails_Table) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -831,7 +830,7 @@ func (m *ImportDetails_Schema) Reset() { *m = ImportDetails_Schema{} } func (m *ImportDetails_Schema) String() string { return proto.CompactTextString(m) } func (*ImportDetails_Schema) ProtoMessage() {} func (*ImportDetails_Schema) Descriptor() ([]byte, []int) { - return fileDescriptor_jobs_e9f91d70a74c527b, []int{9, 1} + return fileDescriptor_jobs_1765ed052d18ceed, []int{9, 1} } func (m *ImportDetails_Schema) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -873,7 +872,7 @@ func (m *SequenceValChunk) Reset() { *m = SequenceValChunk{} } func (m *SequenceValChunk) String() string { return proto.CompactTextString(m) } func (*SequenceValChunk) ProtoMessage() {} func (*SequenceValChunk) Descriptor() ([]byte, []int) { - return fileDescriptor_jobs_e9f91d70a74c527b, []int{10} + return fileDescriptor_jobs_1765ed052d18ceed, []int{10} } func (m *SequenceValChunk) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -909,7 +908,7 @@ func (m *SequenceDetails) Reset() { *m = SequenceDetails{} } func (m *SequenceDetails) String() string { return proto.CompactTextString(m) } func (*SequenceDetails) ProtoMessage() {} func (*SequenceDetails) Descriptor() ([]byte, []int) { - return fileDescriptor_jobs_e9f91d70a74c527b, []int{11} + return fileDescriptor_jobs_1765ed052d18ceed, []int{11} } func (m *SequenceDetails) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -944,7 +943,7 @@ func (m *SequenceDetails_SequenceChunks) Reset() { *m = SequenceDetails_ func (m *SequenceDetails_SequenceChunks) String() string { return proto.CompactTextString(m) } func (*SequenceDetails_SequenceChunks) ProtoMessage() {} func (*SequenceDetails_SequenceChunks) Descriptor() ([]byte, []int) { - return fileDescriptor_jobs_e9f91d70a74c527b, []int{11, 0} + return fileDescriptor_jobs_1765ed052d18ceed, []int{11, 0} } func (m *SequenceDetails_SequenceChunks) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -990,7 +989,7 @@ func (m *ImportProgress) Reset() { *m = ImportProgress{} } func (m *ImportProgress) String() string { return proto.CompactTextString(m) } func (*ImportProgress) ProtoMessage() {} func (*ImportProgress) Descriptor() ([]byte, []int) { - return fileDescriptor_jobs_e9f91d70a74c527b, []int{12} + return fileDescriptor_jobs_1765ed052d18ceed, []int{12} } func (m *ImportProgress) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1033,7 +1032,7 @@ func (m *TypeSchemaChangeDetails) Reset() { *m = TypeSchemaChangeDetails func (m *TypeSchemaChangeDetails) String() string { return proto.CompactTextString(m) } func (*TypeSchemaChangeDetails) ProtoMessage() {} func (*TypeSchemaChangeDetails) Descriptor() ([]byte, []int) { - return fileDescriptor_jobs_e9f91d70a74c527b, []int{13} + return fileDescriptor_jobs_1765ed052d18ceed, []int{13} } func (m *TypeSchemaChangeDetails) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1066,7 +1065,7 @@ func (m *TypeSchemaChangeProgress) Reset() { *m = TypeSchemaChangeProgre func (m *TypeSchemaChangeProgress) String() string { return proto.CompactTextString(m) } func (*TypeSchemaChangeProgress) ProtoMessage() {} func (*TypeSchemaChangeProgress) Descriptor() ([]byte, []int) { - return fileDescriptor_jobs_e9f91d70a74c527b, []int{14} + return fileDescriptor_jobs_1765ed052d18ceed, []int{14} } func (m *TypeSchemaChangeProgress) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1100,7 +1099,7 @@ func (m *NewSchemaChangeDetails) Reset() { *m = NewSchemaChangeDetails{} func (m *NewSchemaChangeDetails) String() string { return proto.CompactTextString(m) } func (*NewSchemaChangeDetails) ProtoMessage() {} func (*NewSchemaChangeDetails) Descriptor() ([]byte, []int) { - return fileDescriptor_jobs_e9f91d70a74c527b, []int{15} + return fileDescriptor_jobs_1765ed052d18ceed, []int{15} } func (m *NewSchemaChangeDetails) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1134,7 +1133,7 @@ func (m *NewSchemaChangeProgress) Reset() { *m = NewSchemaChangeProgress func (m *NewSchemaChangeProgress) String() string { return proto.CompactTextString(m) } func (*NewSchemaChangeProgress) ProtoMessage() {} func (*NewSchemaChangeProgress) Descriptor() ([]byte, []int) { - return fileDescriptor_jobs_e9f91d70a74c527b, []int{16} + return fileDescriptor_jobs_1765ed052d18ceed, []int{16} } func (m *NewSchemaChangeProgress) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1167,7 +1166,7 @@ func (m *ResumeSpanList) Reset() { *m = ResumeSpanList{} } func (m *ResumeSpanList) String() string { return proto.CompactTextString(m) } func (*ResumeSpanList) ProtoMessage() {} func (*ResumeSpanList) Descriptor() ([]byte, []int) { - return fileDescriptor_jobs_e9f91d70a74c527b, []int{17} + return fileDescriptor_jobs_1765ed052d18ceed, []int{17} } func (m *ResumeSpanList) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1202,7 +1201,7 @@ func (m *DroppedTableDetails) Reset() { *m = DroppedTableDetails{} } func (m *DroppedTableDetails) String() string { return proto.CompactTextString(m) } func (*DroppedTableDetails) ProtoMessage() {} func (*DroppedTableDetails) Descriptor() ([]byte, []int) { - return fileDescriptor_jobs_e9f91d70a74c527b, []int{18} + return fileDescriptor_jobs_1765ed052d18ceed, []int{18} } func (m *DroppedTableDetails) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1265,7 +1264,7 @@ func (m *SchemaChangeGCDetails) Reset() { *m = SchemaChangeGCDetails{} } func (m *SchemaChangeGCDetails) String() string { return proto.CompactTextString(m) } func (*SchemaChangeGCDetails) ProtoMessage() {} func (*SchemaChangeGCDetails) Descriptor() ([]byte, []int) { - return fileDescriptor_jobs_e9f91d70a74c527b, []int{19} + return fileDescriptor_jobs_1765ed052d18ceed, []int{19} } func (m *SchemaChangeGCDetails) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1299,7 +1298,7 @@ func (m *SchemaChangeGCDetails_DroppedIndex) Reset() { *m = SchemaChange func (m *SchemaChangeGCDetails_DroppedIndex) String() string { return proto.CompactTextString(m) } func (*SchemaChangeGCDetails_DroppedIndex) ProtoMessage() {} func (*SchemaChangeGCDetails_DroppedIndex) Descriptor() ([]byte, []int) { - return fileDescriptor_jobs_e9f91d70a74c527b, []int{19, 0} + return fileDescriptor_jobs_1765ed052d18ceed, []int{19, 0} } func (m *SchemaChangeGCDetails_DroppedIndex) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1333,7 +1332,7 @@ func (m *SchemaChangeGCDetails_DroppedID) Reset() { *m = SchemaChangeGCD func (m *SchemaChangeGCDetails_DroppedID) String() string { return proto.CompactTextString(m) } func (*SchemaChangeGCDetails_DroppedID) ProtoMessage() {} func (*SchemaChangeGCDetails_DroppedID) Descriptor() ([]byte, []int) { - return fileDescriptor_jobs_e9f91d70a74c527b, []int{19, 1} + return fileDescriptor_jobs_1765ed052d18ceed, []int{19, 1} } func (m *SchemaChangeGCDetails_DroppedID) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1367,7 +1366,7 @@ func (m *SchemaChangeGCDetails_DroppedTenant) Reset() { *m = SchemaChang func (m *SchemaChangeGCDetails_DroppedTenant) String() string { return proto.CompactTextString(m) } func (*SchemaChangeGCDetails_DroppedTenant) ProtoMessage() {} func (*SchemaChangeGCDetails_DroppedTenant) Descriptor() ([]byte, []int) { - return fileDescriptor_jobs_e9f91d70a74c527b, []int{19, 2} + return fileDescriptor_jobs_1765ed052d18ceed, []int{19, 2} } func (m *SchemaChangeGCDetails_DroppedTenant) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1431,7 +1430,7 @@ func (m *SchemaChangeDetails) Reset() { *m = SchemaChangeDetails{} } func (m *SchemaChangeDetails) String() string { return proto.CompactTextString(m) } func (*SchemaChangeDetails) ProtoMessage() {} func (*SchemaChangeDetails) Descriptor() ([]byte, []int) { - return fileDescriptor_jobs_e9f91d70a74c527b, []int{20} + return fileDescriptor_jobs_1765ed052d18ceed, []int{20} } func (m *SchemaChangeDetails) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1463,7 +1462,7 @@ func (m *SchemaChangeProgress) Reset() { *m = SchemaChangeProgress{} } func (m *SchemaChangeProgress) String() string { return proto.CompactTextString(m) } func (*SchemaChangeProgress) ProtoMessage() {} func (*SchemaChangeProgress) Descriptor() ([]byte, []int) { - return fileDescriptor_jobs_e9f91d70a74c527b, []int{21} + return fileDescriptor_jobs_1765ed052d18ceed, []int{21} } func (m *SchemaChangeProgress) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1501,7 +1500,7 @@ func (m *SchemaChangeGCProgress) Reset() { *m = SchemaChangeGCProgress{} func (m *SchemaChangeGCProgress) String() string { return proto.CompactTextString(m) } func (*SchemaChangeGCProgress) ProtoMessage() {} func (*SchemaChangeGCProgress) Descriptor() ([]byte, []int) { - return fileDescriptor_jobs_e9f91d70a74c527b, []int{22} + return fileDescriptor_jobs_1765ed052d18ceed, []int{22} } func (m *SchemaChangeGCProgress) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1535,7 +1534,7 @@ func (m *SchemaChangeGCProgress_IndexProgress) Reset() { *m = SchemaChan func (m *SchemaChangeGCProgress_IndexProgress) String() string { return proto.CompactTextString(m) } func (*SchemaChangeGCProgress_IndexProgress) ProtoMessage() {} func (*SchemaChangeGCProgress_IndexProgress) Descriptor() ([]byte, []int) { - return fileDescriptor_jobs_e9f91d70a74c527b, []int{22, 0} + return fileDescriptor_jobs_1765ed052d18ceed, []int{22, 0} } func (m *SchemaChangeGCProgress_IndexProgress) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1569,7 +1568,7 @@ func (m *SchemaChangeGCProgress_TableProgress) Reset() { *m = SchemaChan func (m *SchemaChangeGCProgress_TableProgress) String() string { return proto.CompactTextString(m) } func (*SchemaChangeGCProgress_TableProgress) ProtoMessage() {} func (*SchemaChangeGCProgress_TableProgress) Descriptor() ([]byte, []int) { - return fileDescriptor_jobs_e9f91d70a74c527b, []int{22, 1} + return fileDescriptor_jobs_1765ed052d18ceed, []int{22, 1} } func (m *SchemaChangeGCProgress_TableProgress) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1602,7 +1601,7 @@ func (m *SchemaChangeGCProgress_TenantProgress) Reset() { *m = SchemaCha func (m *SchemaChangeGCProgress_TenantProgress) String() string { return proto.CompactTextString(m) } func (*SchemaChangeGCProgress_TenantProgress) ProtoMessage() {} func (*SchemaChangeGCProgress_TenantProgress) Descriptor() ([]byte, []int) { - return fileDescriptor_jobs_e9f91d70a74c527b, []int{22, 2} + return fileDescriptor_jobs_1765ed052d18ceed, []int{22, 2} } func (m *SchemaChangeGCProgress_TenantProgress) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1635,7 +1634,7 @@ func (m *ChangefeedTarget) Reset() { *m = ChangefeedTarget{} } func (m *ChangefeedTarget) String() string { return proto.CompactTextString(m) } func (*ChangefeedTarget) ProtoMessage() {} func (*ChangefeedTarget) Descriptor() ([]byte, []int) { - return fileDescriptor_jobs_e9f91d70a74c527b, []int{23} + return fileDescriptor_jobs_1765ed052d18ceed, []int{23} } func (m *ChangefeedTarget) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1688,7 +1687,7 @@ func (m *ChangefeedDetails) Reset() { *m = ChangefeedDetails{} } func (m *ChangefeedDetails) String() string { return proto.CompactTextString(m) } func (*ChangefeedDetails) ProtoMessage() {} func (*ChangefeedDetails) Descriptor() ([]byte, []int) { - return fileDescriptor_jobs_e9f91d70a74c527b, []int{24} + return fileDescriptor_jobs_1765ed052d18ceed, []int{24} } func (m *ChangefeedDetails) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1728,7 +1727,7 @@ func (m *ResolvedSpan) Reset() { *m = ResolvedSpan{} } func (m *ResolvedSpan) String() string { return proto.CompactTextString(m) } func (*ResolvedSpan) ProtoMessage() {} func (*ResolvedSpan) Descriptor() ([]byte, []int) { - return fileDescriptor_jobs_e9f91d70a74c527b, []int{25} + return fileDescriptor_jobs_1765ed052d18ceed, []int{25} } func (m *ResolvedSpan) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1761,7 +1760,7 @@ func (m *ResolvedSpans) Reset() { *m = ResolvedSpans{} } func (m *ResolvedSpans) String() string { return proto.CompactTextString(m) } func (*ResolvedSpans) ProtoMessage() {} func (*ResolvedSpans) Descriptor() ([]byte, []int) { - return fileDescriptor_jobs_e9f91d70a74c527b, []int{26} + return fileDescriptor_jobs_1765ed052d18ceed, []int{26} } func (m *ResolvedSpans) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1804,7 +1803,7 @@ func (m *ChangefeedProgress) Reset() { *m = ChangefeedProgress{} } func (m *ChangefeedProgress) String() string { return proto.CompactTextString(m) } func (*ChangefeedProgress) ProtoMessage() {} func (*ChangefeedProgress) Descriptor() ([]byte, []int) { - return fileDescriptor_jobs_e9f91d70a74c527b, []int{27} + return fileDescriptor_jobs_1765ed052d18ceed, []int{27} } func (m *ChangefeedProgress) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1848,7 +1847,7 @@ func (m *CreateStatsDetails) Reset() { *m = CreateStatsDetails{} } func (m *CreateStatsDetails) String() string { return proto.CompactTextString(m) } func (*CreateStatsDetails) ProtoMessage() {} func (*CreateStatsDetails) Descriptor() ([]byte, []int) { - return fileDescriptor_jobs_e9f91d70a74c527b, []int{28} + return fileDescriptor_jobs_1765ed052d18ceed, []int{28} } func (m *CreateStatsDetails) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1889,7 +1888,7 @@ func (m *CreateStatsDetails_ColStat) Reset() { *m = CreateStatsDetails_C func (m *CreateStatsDetails_ColStat) String() string { return proto.CompactTextString(m) } func (*CreateStatsDetails_ColStat) ProtoMessage() {} func (*CreateStatsDetails_ColStat) Descriptor() ([]byte, []int) { - return fileDescriptor_jobs_e9f91d70a74c527b, []int{28, 0} + return fileDescriptor_jobs_1765ed052d18ceed, []int{28, 0} } func (m *CreateStatsDetails_ColStat) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1921,7 +1920,7 @@ func (m *CreateStatsProgress) Reset() { *m = CreateStatsProgress{} } func (m *CreateStatsProgress) String() string { return proto.CompactTextString(m) } func (*CreateStatsProgress) ProtoMessage() {} func (*CreateStatsProgress) Descriptor() ([]byte, []int) { - return fileDescriptor_jobs_e9f91d70a74c527b, []int{29} + return fileDescriptor_jobs_1765ed052d18ceed, []int{29} } func (m *CreateStatsProgress) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1954,7 +1953,7 @@ func (m *MigrationDetails) Reset() { *m = MigrationDetails{} } func (m *MigrationDetails) String() string { return proto.CompactTextString(m) } func (*MigrationDetails) ProtoMessage() {} func (*MigrationDetails) Descriptor() ([]byte, []int) { - return fileDescriptor_jobs_e9f91d70a74c527b, []int{30} + return fileDescriptor_jobs_1765ed052d18ceed, []int{30} } func (m *MigrationDetails) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1986,7 +1985,7 @@ func (m *MigrationProgress) Reset() { *m = MigrationProgress{} } func (m *MigrationProgress) String() string { return proto.CompactTextString(m) } func (*MigrationProgress) ProtoMessage() {} func (*MigrationProgress) Descriptor() ([]byte, []int) { - return fileDescriptor_jobs_e9f91d70a74c527b, []int{31} + return fileDescriptor_jobs_1765ed052d18ceed, []int{31} } func (m *MigrationProgress) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2056,7 +2055,7 @@ func (m *Payload) Reset() { *m = Payload{} } func (m *Payload) String() string { return proto.CompactTextString(m) } func (*Payload) ProtoMessage() {} func (*Payload) Descriptor() ([]byte, []int) { - return fileDescriptor_jobs_e9f91d70a74c527b, []int{32} + return fileDescriptor_jobs_1765ed052d18ceed, []int{32} } func (m *Payload) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2488,7 +2487,7 @@ func (m *Progress) Reset() { *m = Progress{} } func (m *Progress) String() string { return proto.CompactTextString(m) } func (*Progress) ProtoMessage() {} func (*Progress) Descriptor() ([]byte, []int) { - return fileDescriptor_jobs_e9f91d70a74c527b, []int{33} + return fileDescriptor_jobs_1765ed052d18ceed, []int{33} } func (m *Progress) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2984,7 +2983,7 @@ func (m *Job) Reset() { *m = Job{} } func (m *Job) String() string { return proto.CompactTextString(m) } func (*Job) ProtoMessage() {} func (*Job) Descriptor() ([]byte, []int) { - return fileDescriptor_jobs_e9f91d70a74c527b, []int{34} + return fileDescriptor_jobs_1765ed052d18ceed, []int{34} } func (m *Job) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7962,7 +7961,7 @@ func (m *StreamIngestionDetails) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - m.StreamAddress = github_com_cockroachdb_cockroach_pkg_ccl_streamingccl.StreamAddress(dAtA[iNdEx:postIndex]) + m.StreamAddress = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex case 2: if wireType != 2 { @@ -15736,322 +15735,321 @@ var ( ErrIntOverflowJobs = fmt.Errorf("proto: integer overflow") ) -func init() { proto.RegisterFile("jobs/jobspb/jobs.proto", fileDescriptor_jobs_e9f91d70a74c527b) } - -var fileDescriptor_jobs_e9f91d70a74c527b = []byte{ - // 5022 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x5b, 0x4d, 0x6c, 0x23, 0xc9, - 0x75, 0x56, 0x93, 0x14, 0xd9, 0x7c, 0xfc, 0x51, 0xab, 0xa4, 0x99, 0xe1, 0xd2, 0xbb, 0x43, 0x99, - 0xde, 0xdd, 0xf9, 0xb1, 0x97, 0xb2, 0xb5, 0xfe, 0xdb, 0xf1, 0xee, 0xec, 0xf2, 0x4f, 0x12, 0xa9, - 0xd1, 0xcf, 0x34, 0xa5, 0xd9, 0x1f, 0x67, 0xdd, 0x69, 0x76, 0x97, 0xa4, 0x8e, 0xc8, 0x6e, 0x4e, - 0x57, 0x73, 0x66, 0xe4, 0x00, 0x49, 0xe0, 0x20, 0x80, 0x31, 0xa7, 0xe4, 0xe0, 0x1c, 0x92, 0x0c, - 0x10, 0xc0, 0x36, 0x90, 0x43, 0x2e, 0x31, 0x82, 0x24, 0x87, 0xdc, 0x72, 0xd9, 0x43, 0x02, 0xf8, - 0xb8, 0xc8, 0x81, 0x4e, 0xb4, 0x97, 0x1c, 0x83, 0x04, 0x08, 0x8c, 0xb9, 0x24, 0xa8, 0x9f, 0x6e, - 0x36, 0xa9, 0x3f, 0x6a, 0xb4, 0xeb, 0x5c, 0xa4, 0xae, 0x57, 0xaf, 0xbe, 0xaa, 0x7a, 0xf5, 0xea, - 0xbd, 0x57, 0xaf, 0x8a, 0x70, 0xf5, 0x77, 0x9c, 0x36, 0x59, 0xa4, 0x7f, 0x7a, 0x6d, 0xf6, 0xaf, - 0xd4, 0x73, 0x1d, 0xcf, 0x41, 0x2f, 0x19, 0x8e, 0x71, 0xe0, 0x3a, 0xba, 0xb1, 0x5f, 0x22, 0x0f, - 0x3b, 0x25, 0x56, 0xc3, 0xb9, 0xf2, 0x57, 0xb0, 0xeb, 0x3a, 0x2e, 0xe5, 0xe7, 0x1f, 0xbc, 0x45, - 0x7e, 0x7e, 0xcf, 0xd9, 0x73, 0xd8, 0xe7, 0x22, 0xfd, 0x12, 0x54, 0xc4, 0x30, 0x7a, 0xed, 0x45, - 0x53, 0xf7, 0x74, 0x41, 0xcb, 0xf9, 0x34, 0xcb, 0x79, 0x63, 0xd7, 0x71, 0xbb, 0xba, 0xe7, 0x63, - 0x7c, 0x85, 0x3c, 0xec, 0x2c, 0x1a, 0xba, 0xa7, 0x77, 0x9c, 0xbd, 0x45, 0x13, 0x13, 0xa3, 0xd7, - 0x5e, 0x24, 0x9e, 0xdb, 0x37, 0xbc, 0xbe, 0x8b, 0x4d, 0xc1, 0x54, 0x38, 0x81, 0xc9, 0xc3, 0xb6, - 0x6e, 0x7b, 0x3e, 0x7e, 0xdf, 0xb3, 0x3a, 0x8b, 0xfb, 0x1d, 0x63, 0xd1, 0xb3, 0xba, 0x98, 0x78, - 0x7a, 0xb7, 0x27, 0x6a, 0xbe, 0x4c, 0x9b, 0x12, 0x63, 0x1f, 0x77, 0x75, 0x63, 0x5f, 0xb7, 0xf7, - 0xb0, 0xbb, 0xc8, 0xfb, 0x30, 0x7a, 0x6d, 0xc1, 0xf2, 0xaa, 0xd1, 0xe9, 0x13, 0x0f, 0xbb, 0x8f, - 0xb0, 0x4b, 0x2c, 0xc7, 0x5e, 0x14, 0x45, 0x4d, 0x94, 0x39, 0x57, 0xf1, 0xf7, 0x61, 0xfa, 0x1e, - 0xd6, 0x09, 0x46, 0x1f, 0x41, 0xc2, 0x76, 0x4c, 0xac, 0x59, 0x66, 0x4e, 0x5a, 0x90, 0x6e, 0x66, - 0x2a, 0xe5, 0xa3, 0x41, 0x21, 0xbe, 0xe1, 0x98, 0xb8, 0x51, 0x7b, 0x3e, 0x28, 0xbc, 0xb9, 0x67, - 0x79, 0xfb, 0xfd, 0x76, 0xc9, 0x70, 0xba, 0x8b, 0x81, 0x44, 0xcd, 0xf6, 0xf0, 0x7b, 0xb1, 0x77, - 0xb0, 0xb7, 0x28, 0xe4, 0x51, 0xe2, 0xcd, 0xd4, 0x38, 0x45, 0x6c, 0x98, 0x68, 0x1e, 0xa6, 0x71, - 0xcf, 0x31, 0xf6, 0x73, 0x91, 0x05, 0xe9, 0x66, 0x54, 0xe5, 0x85, 0x3b, 0xb1, 0xff, 0xf8, 0xcb, - 0x82, 0x54, 0xfc, 0x79, 0x04, 0xae, 0x55, 0x74, 0xe3, 0xa0, 0xdf, 0xab, 0xdb, 0x86, 0x7b, 0xd8, - 0xf3, 0x2c, 0xc7, 0xde, 0x64, 0x7f, 0x09, 0x52, 0x20, 0x7a, 0x80, 0x0f, 0xd9, 0x78, 0xd2, 0x2a, - 0xfd, 0x44, 0xef, 0x40, 0xac, 0xeb, 0x98, 0x98, 0x01, 0x65, 0x97, 0x6e, 0x95, 0x4e, 0x5d, 0xdc, - 0xd2, 0x10, 0x6d, 0xdd, 0x31, 0xb1, 0xca, 0x9a, 0xa1, 0x36, 0xc8, 0x07, 0x5d, 0xa2, 0x59, 0xf6, - 0xae, 0x93, 0x8b, 0x2e, 0x48, 0x37, 0x53, 0x4b, 0x77, 0xce, 0x80, 0x38, 0x65, 0x58, 0xa5, 0xb5, - 0xf5, 0x56, 0xc3, 0xde, 0x75, 0x2a, 0xa9, 0xa3, 0x41, 0x21, 0x21, 0x0a, 0x6a, 0xe2, 0xa0, 0x4b, - 0xe8, 0x47, 0x7e, 0x13, 0x7c, 0x1a, 0x1d, 0x7f, 0xdf, 0xb5, 0xd8, 0xf8, 0x93, 0x2a, 0xfd, 0x44, - 0x5f, 0x03, 0x84, 0x39, 0x1e, 0x36, 0x35, 0xaa, 0x49, 0x1a, 0x9d, 0x60, 0x84, 0x4d, 0x50, 0x09, - 0x6a, 0x6a, 0xba, 0xa7, 0xaf, 0xe1, 0x43, 0x2e, 0x21, 0x21, 0xa7, 0x3f, 0x88, 0x42, 0x76, 0x38, - 0x14, 0x06, 0xbf, 0x0a, 0x71, 0xa6, 0x02, 0x98, 0xf5, 0x90, 0x5d, 0xfa, 0xfa, 0x44, 0xe2, 0xa0, - 0x4d, 0x4b, 0x2d, 0xd6, 0x4e, 0x15, 0xed, 0x11, 0x82, 0x18, 0xd1, 0x3b, 0x9e, 0x18, 0x08, 0xfb, - 0x46, 0x7f, 0x2e, 0xc1, 0xc2, 0xf8, 0x88, 0x2a, 0x87, 0x6b, 0xeb, 0xad, 0x75, 0x9d, 0xea, 0xd1, - 0x1a, 0x3e, 0x6c, 0xd4, 0x72, 0xd1, 0x85, 0xe8, 0xcd, 0xd4, 0xd2, 0xe6, 0xe4, 0x1d, 0xd7, 0xcf, - 0x41, 0xac, 0xdb, 0x9e, 0x7b, 0xa8, 0x9e, 0xdb, 0x71, 0xbe, 0x05, 0xaf, 0x4d, 0x04, 0x15, 0xd6, - 0xa1, 0x24, 0xd7, 0xa1, 0x79, 0x98, 0x7e, 0xa4, 0x77, 0xfa, 0x58, 0xcc, 0x96, 0x17, 0xee, 0x44, - 0xbe, 0x2b, 0x15, 0xaf, 0x41, 0x9c, 0x0b, 0x06, 0x65, 0x20, 0x59, 0xae, 0xb7, 0x96, 0xbe, 0xf5, - 0xed, 0x95, 0xea, 0xba, 0x32, 0x25, 0x96, 0xe0, 0x7f, 0x25, 0xb8, 0xda, 0xf2, 0x5c, 0xac, 0x77, - 0x1b, 0xf6, 0x1e, 0x26, 0x74, 0x4e, 0x35, 0xec, 0xe9, 0x56, 0x87, 0x20, 0x1b, 0xb2, 0x84, 0xd5, - 0x68, 0xba, 0x69, 0xba, 0x98, 0x10, 0xde, 0x61, 0x65, 0xe5, 0xf9, 0xa0, 0x50, 0x9d, 0x68, 0xeb, - 0x18, 0x46, 0x67, 0x91, 0x43, 0x58, 0xf6, 0x9e, 0x61, 0x74, 0x4a, 0xbc, 0xa7, 0x32, 0x87, 0x53, - 0x33, 0x24, 0x5c, 0x44, 0xdf, 0x80, 0x18, 0xe9, 0xe9, 0x36, 0x9b, 0x42, 0x6a, 0xe9, 0x5a, 0x48, - 0xfe, 0xfe, 0x16, 0x6c, 0xf5, 0x74, 0xbb, 0x12, 0xfb, 0x64, 0x50, 0x98, 0x52, 0x19, 0x2b, 0xaa, - 0x00, 0x10, 0x4f, 0x77, 0x3d, 0x8d, 0xda, 0x12, 0xa1, 0xfd, 0xaf, 0x84, 0x1a, 0x52, 0x5b, 0x53, - 0xda, 0xef, 0x18, 0xa5, 0x6d, 0xdf, 0xd6, 0x88, 0xe6, 0x49, 0xd6, 0x8c, 0x52, 0x8b, 0x3a, 0x5c, - 0x1b, 0x13, 0xc0, 0x96, 0xeb, 0xec, 0xb1, 0x11, 0x2d, 0x43, 0xda, 0xe8, 0x7b, 0xce, 0x23, 0xec, - 0xf2, 0x0e, 0xa4, 0xc9, 0x3b, 0x48, 0x89, 0x86, 0xac, 0x8b, 0x7f, 0x8c, 0x43, 0x86, 0x6f, 0x3c, - 0x5f, 0xb6, 0xa3, 0x03, 0x97, 0x5e, 0x64, 0xe0, 0xe8, 0x2e, 0xc8, 0xd8, 0x36, 0x39, 0x42, 0x64, - 0x72, 0x84, 0x04, 0xb6, 0x4d, 0xd6, 0xfe, 0x25, 0xbe, 0x93, 0xa3, 0x6c, 0x51, 0x13, 0x47, 0x83, - 0x42, 0x74, 0x47, 0x6d, 0xf0, 0x2d, 0xfd, 0x36, 0xe4, 0x4d, 0xdc, 0x73, 0xb1, 0xa1, 0xd3, 0x3d, - 0xdd, 0x66, 0x43, 0xd7, 0xba, 0xba, 0x6d, 0xed, 0x62, 0xe2, 0xe5, 0x62, 0x4c, 0xc7, 0x72, 0x43, - 0x0e, 0x3e, 0xb7, 0x75, 0x51, 0x8f, 0xfe, 0x50, 0x82, 0xb9, 0xbe, 0x6b, 0x11, 0xad, 0x7d, 0xa8, - 0x75, 0x1c, 0x43, 0xef, 0x58, 0xde, 0xa1, 0x76, 0xf0, 0x28, 0x37, 0xcd, 0x36, 0xd6, 0xdd, 0x73, - 0xad, 0x93, 0x10, 0x52, 0x69, 0xc7, 0xb5, 0x48, 0xe5, 0xf0, 0x9e, 0x40, 0x58, 0x7b, 0xc4, 0x94, - 0xbf, 0x32, 0x7f, 0x34, 0x28, 0x28, 0x3b, 0x6a, 0x23, 0x5c, 0xf5, 0x40, 0x55, 0xfa, 0x63, 0xcc, - 0x48, 0x0f, 0xcc, 0x92, 0xe5, 0xd8, 0x9a, 0xc3, 0xed, 0x5c, 0x2e, 0xce, 0x04, 0xb5, 0x74, 0x71, - 0x0b, 0xa9, 0xce, 0xe2, 0x63, 0xb6, 0xfc, 0x4f, 0x24, 0xc8, 0x53, 0x97, 0x83, 0x0d, 0x2a, 0xa6, - 0xc0, 0x9f, 0x69, 0x2e, 0x36, 0x1c, 0xd7, 0xcc, 0x25, 0xa8, 0x9c, 0x2a, 0xad, 0x7f, 0x9d, 0xd4, - 0xd3, 0x30, 0xcf, 0xd8, 0xef, 0x5b, 0x66, 0x69, 0x67, 0xa7, 0x51, 0x3b, 0x1a, 0x14, 0x72, 0x5b, - 0x3e, 0x78, 0xb0, 0x88, 0x2a, 0x83, 0x56, 0x73, 0xbd, 0x53, 0x6a, 0xd0, 0x77, 0x21, 0x6b, 0x38, - 0x9d, 0x0e, 0x36, 0xd8, 0xb4, 0x77, 0xd4, 0x46, 0x4e, 0x66, 0x0b, 0x3c, 0x7b, 0x34, 0x28, 0x64, - 0xaa, 0x41, 0x0d, 0x5d, 0xea, 0x8c, 0x11, 0x2e, 0x22, 0x15, 0x66, 0x42, 0x02, 0x63, 0xfe, 0x24, - 0xc9, 0xa4, 0x75, 0x6b, 0x62, 0x53, 0xa8, 0x66, 0xf1, 0x48, 0x39, 0x5f, 0x85, 0x2b, 0x27, 0xae, - 0xe2, 0x79, 0x26, 0x2c, 0x19, 0x36, 0x61, 0x0a, 0x64, 0xf9, 0xa2, 0xf8, 0x1b, 0xb3, 0xf8, 0x3f, - 0x33, 0x90, 0x55, 0x31, 0xf1, 0x1c, 0x17, 0xfb, 0x3b, 0xea, 0x17, 0x12, 0xcc, 0xd1, 0x78, 0xc3, - 0xb5, 0x7a, 0x9e, 0xe3, 0x6a, 0x2e, 0x7e, 0xec, 0x5a, 0x1e, 0x26, 0xb9, 0x08, 0x53, 0xba, 0xf2, - 0x19, 0x53, 0x18, 0x05, 0x2a, 0xd5, 0x02, 0x10, 0x55, 0x60, 0x70, 0xbd, 0xbb, 0xfb, 0xa3, 0x5f, - 0x15, 0xee, 0x4c, 0xb4, 0x8e, 0xc7, 0x43, 0xa0, 0x52, 0xa3, 0xa6, 0x22, 0xf3, 0x18, 0x30, 0x7a, - 0x19, 0x62, 0x54, 0x6f, 0x99, 0xcb, 0x49, 0x56, 0xe4, 0xa3, 0x41, 0x21, 0x46, 0x35, 0x5b, 0x65, - 0xd4, 0x91, 0x0d, 0x1e, 0x7b, 0x81, 0x0d, 0xbe, 0x02, 0x29, 0x4f, 0x6f, 0x77, 0xb0, 0x46, 0x7b, - 0x26, 0x62, 0xfb, 0xbd, 0x3e, 0x26, 0x09, 0xf2, 0xb0, 0xd3, 0xd6, 0x09, 0x2e, 0x6d, 0x53, 0xce, - 0xd0, 0xdc, 0xc1, 0xf3, 0x09, 0x04, 0x2d, 0x42, 0x8a, 0xda, 0x32, 0xd7, 0x32, 0xb1, 0x66, 0xb6, - 0xd9, 0x1e, 0x4a, 0x56, 0xb2, 0x47, 0x83, 0x02, 0x6c, 0x0a, 0x72, 0xad, 0xa2, 0x82, 0xcf, 0x52, - 0x6b, 0x23, 0x0f, 0xe6, 0x85, 0xd1, 0x08, 0xf6, 0x3f, 0xd3, 0xa7, 0x04, 0x1b, 0xc2, 0xdb, 0x93, - 0x2f, 0x06, 0x5f, 0x77, 0x5f, 0x79, 0x58, 0x84, 0xc2, 0x27, 0x89, 0xda, 0xc7, 0x6a, 0xd0, 0x57, - 0x61, 0xb6, 0xe7, 0xe2, 0x9e, 0xee, 0x62, 0xcd, 0x70, 0xba, 0xbd, 0x0e, 0xf6, 0xb0, 0xc9, 0xb4, - 0x5f, 0x56, 0x15, 0x51, 0x51, 0xf5, 0xe9, 0xe8, 0x35, 0xea, 0xdd, 0x74, 0x8f, 0x06, 0x4e, 0x04, - 0xbb, 0x94, 0x33, 0xc9, 0x38, 0x33, 0x8c, 0xda, 0x10, 0x44, 0xf4, 0x26, 0x5c, 0x19, 0xae, 0x1b, - 0xd1, 0x7a, 0xfd, 0x76, 0xc7, 0x22, 0xfb, 0xd8, 0xcc, 0x01, 0xe3, 0x9e, 0x0f, 0x55, 0x6e, 0xf9, - 0x75, 0xe8, 0x70, 0x44, 0x15, 0x0d, 0x2a, 0x18, 0x7d, 0x0f, 0xe7, 0x52, 0x0b, 0xd2, 0xcd, 0xe9, - 0xca, 0xea, 0xf3, 0x41, 0xa1, 0x36, 0xb1, 0x1e, 0x11, 0xdc, 0x5d, 0xf4, 0x5c, 0x8c, 0x43, 0x6a, - 0x59, 0x15, 0x78, 0x61, 0x8d, 0xf2, 0x69, 0x48, 0x05, 0x18, 0x6e, 0xc1, 0x5c, 0xfa, 0x85, 0xad, - 0x5d, 0x08, 0x05, 0x95, 0x21, 0xc1, 0x43, 0x78, 0x92, 0xcb, 0xb0, 0x05, 0xfc, 0xf2, 0x69, 0x3a, - 0xc4, 0xb8, 0x42, 0xab, 0xe4, 0xb7, 0x43, 0x35, 0x00, 0xef, 0xb0, 0xe7, 0x6b, 0x62, 0x96, 0xa1, - 0xbc, 0x76, 0x1a, 0xca, 0x61, 0x2f, 0xac, 0x88, 0x49, 0x4f, 0x94, 0x09, 0x6a, 0x42, 0x9a, 0x9f, - 0x0f, 0x04, 0xce, 0x0c, 0xc3, 0xb9, 0x71, 0x0a, 0x0e, 0x0b, 0x7b, 0xf4, 0x10, 0x52, 0x8a, 0x04, - 0x14, 0x82, 0xb6, 0x20, 0x4b, 0x63, 0x55, 0xca, 0x29, 0xd0, 0x14, 0x86, 0x76, 0xeb, 0x14, 0xb4, - 0x9a, 0x60, 0x0e, 0xe1, 0x65, 0xcc, 0x10, 0x8d, 0xa0, 0x43, 0xb8, 0x4a, 0x0e, 0x89, 0x87, 0xbb, - 0x1a, 0xdb, 0x3a, 0x44, 0x73, 0xb9, 0x2e, 0x9b, 0xb9, 0x59, 0x86, 0x5c, 0x9d, 0x5c, 0xed, 0x5b, - 0x0c, 0x87, 0x6d, 0x49, 0x22, 0xaa, 0x4c, 0x1e, 0x45, 0xce, 0x93, 0x13, 0xaa, 0xf2, 0xff, 0x2d, - 0xc1, 0xec, 0x31, 0xbb, 0x85, 0xb6, 0x21, 0x12, 0x9c, 0x7c, 0xa8, 0x3b, 0x89, 0xb0, 0x53, 0xcf, - 0x65, 0x6c, 0x58, 0xc4, 0x32, 0xd1, 0x1e, 0x24, 0xe9, 0x4e, 0xb2, 0x3d, 0x7a, 0xac, 0x8a, 0x30, - 0xf0, 0xe6, 0xd1, 0xa0, 0x20, 0x6f, 0x31, 0xe2, 0xa5, 0xbb, 0x90, 0x39, 0x78, 0xc3, 0x44, 0x05, - 0x48, 0x79, 0x8e, 0x86, 0x9f, 0x58, 0xc4, 0xb3, 0xec, 0x3d, 0x16, 0xa7, 0xc8, 0x2a, 0x78, 0x4e, - 0x5d, 0x50, 0xf2, 0x7f, 0x11, 0x01, 0x74, 0xdc, 0x40, 0xa0, 0x7f, 0x90, 0xe0, 0x65, 0x3f, 0xfc, - 0x70, 0x5c, 0x6b, 0xcf, 0xb2, 0xf5, 0xce, 0x48, 0x1c, 0x22, 0xb1, 0xe5, 0xf8, 0xe8, 0x32, 0x56, - 0x48, 0xc4, 0x26, 0x9b, 0x02, 0x7e, 0x3c, 0x46, 0x79, 0x99, 0x3a, 0x6f, 0x1e, 0xa3, 0x1c, 0x63, - 0x79, 0xa0, 0xe6, 0xfa, 0xa7, 0x34, 0xce, 0xaf, 0xc1, 0x2b, 0x67, 0x02, 0x5f, 0xc4, 0x6d, 0xe6, - 0x7f, 0x24, 0xc1, 0xb5, 0x53, 0x9c, 0x59, 0x18, 0x27, 0xc3, 0x71, 0xee, 0x87, 0x71, 0x52, 0x4b, - 0xdf, 0xbb, 0x84, 0xc3, 0x0c, 0x0f, 0x62, 0x05, 0x5e, 0x3a, 0x55, 0x99, 0xcf, 0x9b, 0x8d, 0x1c, - 0x02, 0x6a, 0xc6, 0x64, 0x49, 0x89, 0x14, 0xbf, 0x0e, 0x33, 0x02, 0x22, 0x08, 0xd2, 0x5f, 0x01, - 0xd8, 0xb7, 0xf6, 0xf6, 0xb5, 0xc7, 0xba, 0x87, 0x5d, 0x71, 0xae, 0x4e, 0x52, 0xca, 0xfb, 0x94, - 0x50, 0xfc, 0x33, 0x80, 0x4c, 0xa3, 0xdb, 0x73, 0x5c, 0xcf, 0x8f, 0x14, 0xee, 0x41, 0x9c, 0x6f, - 0x50, 0xa1, 0x08, 0xa5, 0x33, 0xa6, 0x3a, 0xd2, 0x92, 0xfb, 0x48, 0x61, 0xda, 0x04, 0x46, 0xe0, - 0xc2, 0x23, 0x27, 0xba, 0xf0, 0x77, 0x20, 0xce, 0x93, 0x28, 0xe2, 0x70, 0x52, 0x38, 0xe1, 0x54, - 0xd3, 0xd8, 0x5c, 0xb6, 0x3a, 0x78, 0x99, 0xb1, 0xf9, 0xe0, 0xbc, 0x11, 0x7a, 0x1d, 0x64, 0x42, - 0x3c, 0x8d, 0x58, 0x3f, 0xe4, 0x11, 0x40, 0x94, 0x9f, 0xcf, 0x5b, 0xad, 0xed, 0x96, 0xf5, 0x43, - 0xac, 0x26, 0x08, 0xf1, 0xe8, 0x07, 0xca, 0x83, 0xfc, 0x58, 0xef, 0x74, 0x58, 0xa4, 0x30, 0xcd, - 0xf2, 0x11, 0x41, 0x79, 0x74, 0xbf, 0xc6, 0xbf, 0xd8, 0xfd, 0x2a, 0x9c, 0x7e, 0x4f, 0xf7, 0xf6, - 0x59, 0xf4, 0x9b, 0x54, 0x81, 0x93, 0xb6, 0x74, 0x6f, 0x1f, 0xe5, 0x20, 0x41, 0x74, 0xea, 0x7f, - 0x49, 0x4e, 0x5e, 0x88, 0xde, 0x4c, 0xab, 0x7e, 0x11, 0x5d, 0x07, 0x16, 0x3d, 0xf0, 0x22, 0x73, - 0xc4, 0x51, 0x35, 0x44, 0x61, 0x72, 0x38, 0xb0, 0x7a, 0xda, 0xee, 0x01, 0xe1, 0x8e, 0x57, 0xc8, - 0xe1, 0xc0, 0xea, 0x2d, 0xaf, 0x11, 0x35, 0x41, 0x2b, 0x97, 0x0f, 0x08, 0xba, 0x01, 0x33, 0x16, - 0x3b, 0xc5, 0x69, 0xa6, 0xe5, 0x62, 0xc3, 0xeb, 0x1c, 0x32, 0xa7, 0x2b, 0xab, 0x59, 0x4e, 0xae, - 0x09, 0x2a, 0xba, 0x05, 0xca, 0x78, 0xa8, 0xc0, 0x9c, 0xa5, 0xac, 0xce, 0x8c, 0x45, 0x0a, 0x94, - 0x55, 0xd8, 0xf3, 0xa1, 0xf3, 0xcf, 0x70, 0x56, 0x4e, 0x1f, 0xfa, 0xfd, 0x12, 0xcc, 0xf5, 0x74, - 0x97, 0x60, 0xad, 0xdd, 0xb7, 0xcd, 0x0e, 0xd6, 0xb8, 0xbf, 0xc9, 0x65, 0x19, 0xf7, 0x2c, 0xab, - 0xaa, 0xb0, 0x1a, 0xee, 0x9a, 0xce, 0x3b, 0x3f, 0x5c, 0xfd, 0xff, 0x38, 0x3f, 0x6c, 0x42, 0x82, - 0x0f, 0x9b, 0xe4, 0xae, 0xb1, 0xed, 0xb1, 0x38, 0xf1, 0xf6, 0xe0, 0xb3, 0xf2, 0x5d, 0xbf, 0x40, - 0xa1, 0x51, 0x99, 0xf8, 0x0c, 0x09, 0x30, 0xc7, 0xa3, 0x32, 0x51, 0x11, 0x48, 0x30, 0xff, 0xf3, - 0x08, 0x4c, 0xb3, 0x5d, 0x86, 0xee, 0x40, 0x8c, 0x2a, 0x99, 0x38, 0x1b, 0x4f, 0x1a, 0xb5, 0xb2, - 0x36, 0x08, 0x41, 0xcc, 0xd6, 0xbb, 0x38, 0x87, 0x98, 0x0a, 0xb2, 0x6f, 0x74, 0x0d, 0x12, 0x04, - 0x3f, 0xd4, 0x1e, 0xe9, 0x9d, 0xdc, 0x1c, 0xd3, 0xaf, 0x38, 0xc1, 0x0f, 0x1f, 0xe8, 0x1d, 0x74, - 0x05, 0xe2, 0x16, 0xd1, 0x6c, 0xfc, 0x38, 0x37, 0xcf, 0x6d, 0x8e, 0x45, 0x36, 0xf0, 0x63, 0xe6, - 0x7d, 0x74, 0x77, 0x0f, 0x7b, 0x9a, 0xe1, 0x74, 0x48, 0xee, 0x0a, 0xdd, 0xde, 0x34, 0x28, 0xa6, - 0xa4, 0xaa, 0xd3, 0x21, 0xe8, 0x4b, 0x90, 0x7c, 0xac, 0x13, 0x0d, 0x77, 0x7b, 0xde, 0x21, 0x5b, - 0x2a, 0x99, 0x6e, 0x3a, 0x52, 0xa7, 0xe5, 0x66, 0x4c, 0x8e, 0x28, 0xd1, 0x66, 0x4c, 0x8e, 0x2a, - 0xb1, 0x66, 0x4c, 0x8e, 0x29, 0xd3, 0xcd, 0x98, 0x3c, 0xad, 0xc4, 0x9b, 0x31, 0x39, 0xae, 0x24, - 0x9a, 0x31, 0x39, 0xa1, 0xc8, 0xcd, 0x98, 0x2c, 0x2b, 0xc9, 0x66, 0x4c, 0x4e, 0x2a, 0xd0, 0x8c, - 0xc9, 0xa0, 0xa4, 0x9a, 0x31, 0x39, 0xa5, 0xa4, 0x9b, 0x31, 0x39, 0xad, 0x64, 0x9a, 0x31, 0x39, - 0xa3, 0x64, 0x9b, 0x31, 0x39, 0xab, 0xcc, 0x34, 0x63, 0xf2, 0x8c, 0xa2, 0x34, 0x63, 0xb2, 0xa2, - 0xcc, 0x36, 0x63, 0xf2, 0xac, 0x82, 0xf2, 0x75, 0x91, 0xd5, 0xd1, 0xd1, 0xf7, 0x46, 0xe4, 0x34, - 0x71, 0x2c, 0xc4, 0x1a, 0x15, 0x7f, 0x21, 0x81, 0xd2, 0xc2, 0x0f, 0xfb, 0xd8, 0x36, 0xf0, 0x03, - 0xbd, 0x53, 0xdd, 0xef, 0xdb, 0x07, 0xe8, 0x75, 0x98, 0x31, 0xe8, 0x87, 0xc6, 0x33, 0x14, 0x54, - 0x62, 0x12, 0x93, 0x58, 0x86, 0x91, 0x5b, 0x94, 0x4a, 0x05, 0xf7, 0x0a, 0x80, 0xe0, 0xa3, 0xe6, - 0x89, 0xa7, 0x41, 0x93, 0x9c, 0x85, 0xda, 0xa4, 0x31, 0x18, 0xd7, 0x79, 0xcc, 0x6c, 0xe0, 0x08, - 0x8c, 0xea, 0x3c, 0x46, 0x8b, 0x30, 0x6f, 0xe3, 0x27, 0x9e, 0x36, 0xce, 0xcc, 0xec, 0x9d, 0x3a, - 0x4b, 0xeb, 0xaa, 0xe1, 0x06, 0xc5, 0x7f, 0x89, 0xc0, 0x8c, 0x3f, 0x68, 0xdf, 0xa6, 0xef, 0x82, - 0x42, 0x57, 0xd7, 0x32, 0x35, 0xcf, 0xe1, 0x48, 0xbe, 0x75, 0x7f, 0xe7, 0x0c, 0xf5, 0x1d, 0x43, - 0xa1, 0xe5, 0x86, 0xb9, 0xed, 0xb0, 0xee, 0xb8, 0xa3, 0x54, 0x33, 0x24, 0x4c, 0xcb, 0xef, 0x40, - 0xd6, 0x6f, 0xc4, 0x29, 0xa8, 0x0a, 0xf1, 0x91, 0xfe, 0xbe, 0x3a, 0x41, 0x7f, 0xbe, 0xa8, 0x55, - 0xd1, 0x34, 0xff, 0xbb, 0x80, 0x8e, 0xf7, 0x1d, 0x76, 0x8f, 0xd3, 0xdc, 0x3d, 0x6e, 0x8e, 0x3a, - 0xe9, 0xb7, 0x2e, 0x36, 0xb7, 0xd0, 0xb0, 0xc3, 0xc7, 0xeb, 0x7f, 0x8a, 0x40, 0x96, 0x6f, 0xe4, - 0xc0, 0xa7, 0xd2, 0x3d, 0x4b, 0x2d, 0xaf, 0x65, 0xef, 0x69, 0x3d, 0x41, 0x64, 0xf3, 0x8b, 0xa8, - 0x8a, 0x5f, 0x11, 0x30, 0x7f, 0x05, 0x32, 0x2e, 0xd6, 0xcd, 0x21, 0x63, 0x84, 0x31, 0xa6, 0x29, - 0x31, 0x60, 0x7a, 0x0d, 0xb2, 0x2c, 0x36, 0x18, 0x72, 0x45, 0x19, 0x57, 0x86, 0x51, 0x03, 0xb6, - 0x0a, 0x64, 0x48, 0x4f, 0xb7, 0x87, 0x5c, 0x31, 0x26, 0xd4, 0x73, 0x92, 0x81, 0x69, 0xda, 0x26, - 0x1c, 0x10, 0xb8, 0x98, 0xf4, 0xbb, 0x58, 0xeb, 0x39, 0xfc, 0xd4, 0x1b, 0x55, 0x93, 0x9c, 0xb2, - 0xe5, 0x10, 0xb4, 0xc3, 0x54, 0x85, 0xc9, 0x42, 0x33, 0xb9, 0x70, 0x72, 0x71, 0xd6, 0xcb, 0xed, - 0xc9, 0xc5, 0xa9, 0xce, 0x90, 0x51, 0x42, 0xf1, 0x6f, 0x24, 0xb8, 0x46, 0x4f, 0x2e, 0x7c, 0xa7, - 0x55, 0xd9, 0x05, 0x86, 0xaf, 0x9d, 0x3a, 0x24, 0xd8, 0xe9, 0x27, 0x88, 0xc6, 0x57, 0x8f, 0x06, - 0x85, 0x38, 0xe5, 0xbe, 0xb4, 0xfb, 0x8d, 0x53, 0xe0, 0x06, 0x3b, 0xa7, 0x7a, 0xae, 0x6e, 0x13, - 0x8b, 0x9e, 0xd8, 0xe8, 0xb2, 0x75, 0x71, 0xb7, 0x8d, 0x5d, 0xbe, 0x18, 0x69, 0x75, 0x7e, 0xa4, - 0x72, 0x9d, 0xd7, 0x15, 0xf3, 0x90, 0x1b, 0x1f, 0x72, 0x90, 0x62, 0xf9, 0x2d, 0xb8, 0xba, 0x81, - 0x1f, 0x9f, 0x34, 0x9b, 0x0a, 0x24, 0xb8, 0x19, 0xf4, 0x55, 0xfe, 0xe6, 0xb8, 0xd1, 0x09, 0xdf, - 0xe1, 0x94, 0xd8, 0x48, 0xb7, 0x59, 0x03, 0xd5, 0x6f, 0x58, 0xfc, 0x08, 0xae, 0x8d, 0xa1, 0x07, - 0xcb, 0xf7, 0x2e, 0xc4, 0xe9, 0x11, 0x5c, 0x84, 0x67, 0xd9, 0xe3, 0x26, 0xed, 0x38, 0x7a, 0x8b, - 0xf2, 0xab, 0xa2, 0x59, 0x51, 0x65, 0xb9, 0xa1, 0x7e, 0x17, 0x53, 0x0d, 0xb9, 0x67, 0x11, 0x0f, - 0xbd, 0x07, 0x69, 0xa1, 0x11, 0x54, 0x51, 0xfc, 0x61, 0x9f, 0xa3, 0x54, 0x29, 0x37, 0x00, 0x21, - 0xc5, 0xbf, 0x95, 0x60, 0xae, 0xe6, 0x3a, 0xbd, 0x1e, 0x36, 0x85, 0xcb, 0xe1, 0xb2, 0xf0, 0x3d, - 0x8d, 0x14, 0xf2, 0x34, 0x1b, 0x10, 0x69, 0xd4, 0xc4, 0xc9, 0xe8, 0xee, 0x65, 0x0f, 0x5c, 0x8d, - 0x1a, 0x7a, 0x8b, 0x0b, 0xa4, 0x4f, 0x98, 0xfd, 0xcc, 0x1e, 0x3b, 0x7d, 0x8f, 0xa8, 0x29, 0x63, - 0x54, 0x45, 0x83, 0xe2, 0xcf, 0x12, 0x70, 0x25, 0x2c, 0xe4, 0x95, 0xaa, 0x3f, 0xf0, 0x8f, 0x21, - 0x61, 0xd9, 0x26, 0x7e, 0x82, 0x27, 0xb2, 0x93, 0x27, 0x41, 0x94, 0x84, 0x3c, 0x1a, 0x14, 0xc6, - 0x77, 0xfa, 0x02, 0x13, 0x7d, 0x10, 0xc4, 0xd8, 0x3c, 0xff, 0x76, 0xe7, 0x85, 0xd1, 0x6b, 0x63, - 0xf1, 0xf6, 0x48, 0x38, 0xcb, 0x1c, 0xca, 0x17, 0x14, 0xce, 0xb6, 0x60, 0xd6, 0xb2, 0x3d, 0xec, - 0x76, 0xb0, 0xfe, 0x88, 0x46, 0x67, 0xb4, 0x7b, 0x91, 0x86, 0x9b, 0x34, 0x1a, 0x51, 0x42, 0x00, - 0x3c, 0xaa, 0xf9, 0x18, 0xe6, 0xc2, 0xa0, 0xfe, 0x12, 0x9c, 0x9d, 0x9a, 0x63, 0x12, 0x1e, 0xc2, - 0xfa, 0x19, 0xb0, 0x10, 0x50, 0x43, 0x88, 0xfd, 0x01, 0xc4, 0x79, 0xc6, 0x45, 0xe4, 0xb9, 0xef, - 0xbe, 0xa8, 0xd8, 0x79, 0x26, 0x47, 0x15, 0x68, 0xf9, 0x3f, 0x95, 0x20, 0x1d, 0x5e, 0x6e, 0x64, - 0x81, 0xcc, 0xc6, 0xee, 0x9b, 0xb4, 0x68, 0x65, 0x83, 0x06, 0xe4, 0xac, 0x92, 0xad, 0xc1, 0xbb, - 0x2f, 0xbc, 0x06, 0x1c, 0x42, 0xa8, 0x52, 0xc3, 0xa4, 0x71, 0x96, 0xe9, 0x3a, 0xbd, 0xe1, 0x3d, - 0x47, 0x54, 0x95, 0x29, 0x81, 0x06, 0xae, 0xf9, 0xdf, 0x83, 0x64, 0xa0, 0x28, 0xa1, 0x7c, 0x47, - 0xf4, 0x73, 0xcc, 0x77, 0x9c, 0xd9, 0x7f, 0x0d, 0x32, 0x23, 0x12, 0x43, 0x57, 0x83, 0x31, 0xc4, - 0x2a, 0x71, 0x3e, 0x86, 0x73, 0x51, 0x8a, 0xbf, 0x8a, 0xc3, 0xdc, 0x49, 0x96, 0xf6, 0x43, 0x50, - 0x42, 0x76, 0x4b, 0xeb, 0x58, 0xc4, 0x13, 0xfb, 0xe9, 0xd6, 0xd9, 0xc7, 0xf3, 0x90, 0xf1, 0x13, - 0xda, 0x92, 0x75, 0x47, 0x4d, 0xe2, 0xf7, 0x21, 0x6b, 0xf2, 0x81, 0x8b, 0x6c, 0x95, 0xb8, 0xf6, - 0x3c, 0xeb, 0x30, 0x7c, 0x82, 0x01, 0x14, 0xe8, 0x19, 0x33, 0x54, 0x45, 0xd8, 0x05, 0x90, 0x8f, - 0x1e, 0x24, 0xd9, 0x2c, 0x93, 0xed, 0x9e, 0x4c, 0xa5, 0x75, 0x34, 0x28, 0xcc, 0x0a, 0x2c, 0x3f, - 0xab, 0x76, 0xe9, 0x95, 0x9a, 0x35, 0xc7, 0x00, 0x4d, 0xea, 0x75, 0x69, 0x3d, 0xed, 0x78, 0x7a, - 0xe8, 0x75, 0xe9, 0x3e, 0xba, 0xbc, 0xd7, 0xa5, 0x9f, 0x0d, 0x13, 0xfd, 0x91, 0x04, 0xb3, 0x3c, - 0xc5, 0xde, 0xed, 0x7b, 0x3a, 0xbf, 0x37, 0xf1, 0x0f, 0xd9, 0x1f, 0x1e, 0x0d, 0x0a, 0x33, 0x4c, - 0x20, 0xeb, 0xa2, 0x8e, 0x75, 0x5b, 0x79, 0xd1, 0x6e, 0x87, 0x28, 0xe2, 0xe0, 0x19, 0x10, 0x4c, - 0xb4, 0x06, 0x59, 0x9e, 0x31, 0xf0, 0x5f, 0x42, 0xb0, 0xd3, 0x77, 0xa6, 0xf2, 0xea, 0xf3, 0x41, - 0x61, 0xe1, 0x04, 0xcd, 0xe2, 0xc9, 0x86, 0x07, 0x9c, 0x57, 0xcd, 0xec, 0x86, 0x8b, 0xc8, 0x80, - 0x4c, 0xa0, 0x1a, 0x87, 0x3d, 0x71, 0x58, 0xbf, 0xbc, 0x2b, 0x4b, 0xfb, 0x3a, 0x42, 0x31, 0xd1, - 0x1e, 0xcc, 0xf8, 0x9d, 0xf8, 0xc7, 0xcd, 0xe4, 0xe7, 0xd2, 0x8d, 0xaf, 0xd6, 0x7c, 0xd6, 0x44, - 0xe4, 0x8d, 0xae, 0xc2, 0xfc, 0x89, 0x51, 0xce, 0xa7, 0x71, 0xb8, 0x3a, 0x6a, 0x08, 0x83, 0x38, - 0x44, 0x1b, 0xf7, 0x90, 0xef, 0x4e, 0x6c, 0x4c, 0x7d, 0x0c, 0x6e, 0xcc, 0xfc, 0xd2, 0xb8, 0x8f, - 0xfc, 0x78, 0xcc, 0x47, 0xbe, 0x00, 0x3e, 0x53, 0xaf, 0x31, 0x7c, 0xdf, 0x51, 0x7e, 0x10, 0xf8, - 0x02, 0x9e, 0x7a, 0x7a, 0xef, 0x05, 0xe0, 0x59, 0x7b, 0xbf, 0x18, 0x78, 0x83, 0x7f, 0x96, 0x20, - 0x33, 0x32, 0xb3, 0xdf, 0xa4, 0x3b, 0xd8, 0x0a, 0xa2, 0x21, 0xfe, 0x5e, 0xe6, 0xbb, 0x17, 0x9f, - 0xd6, 0x68, 0x90, 0x94, 0xff, 0x7b, 0x09, 0x32, 0x23, 0x82, 0xfc, 0x82, 0x1c, 0xc9, 0xe7, 0x3f, - 0xf2, 0x36, 0x64, 0x47, 0x97, 0x28, 0xd4, 0x87, 0xf4, 0xf9, 0xf4, 0x51, 0xfc, 0x0e, 0xc4, 0x39, - 0x05, 0x21, 0xc8, 0xbe, 0x5f, 0x6e, 0x6c, 0x37, 0x36, 0x56, 0xb4, 0xe5, 0x4d, 0x55, 0x5b, 0xa9, - 0x2a, 0x53, 0x28, 0x0d, 0x72, 0xad, 0x7e, 0xaf, 0x4e, 0x89, 0x8a, 0x84, 0x52, 0x90, 0x60, 0xa5, - 0x7a, 0x4d, 0x89, 0x14, 0x2b, 0xa0, 0x70, 0xec, 0x5d, 0x4c, 0x1d, 0x03, 0x8d, 0xfb, 0x51, 0x09, - 0xe6, 0x58, 0x90, 0xde, 0xa5, 0xf1, 0x1b, 0x75, 0x85, 0x5a, 0x28, 0x7a, 0x9e, 0x0d, 0xaa, 0xa8, - 0x53, 0xdc, 0xd0, 0xbb, 0xb8, 0xf8, 0x77, 0x31, 0x98, 0x1d, 0x82, 0xf8, 0x6e, 0xf1, 0x75, 0x90, - 0x89, 0x65, 0x1f, 0x68, 0xc3, 0xd7, 0x0b, 0x3c, 0x1b, 0x68, 0xd9, 0x07, 0x3b, 0x6a, 0x43, 0x4d, - 0xd0, 0xca, 0x1d, 0xd7, 0x42, 0x4d, 0x88, 0x39, 0x3d, 0xcf, 0x3f, 0x43, 0x7e, 0xfb, 0x0c, 0x51, - 0x1c, 0xeb, 0xa3, 0xb4, 0xd9, 0xf3, 0x44, 0x06, 0x80, 0x61, 0xa0, 0xbf, 0x96, 0x86, 0xa7, 0x1e, - 0x7e, 0x5a, 0x7c, 0xeb, 0x42, 0x78, 0x5c, 0x00, 0xe2, 0x2a, 0xf9, 0x7d, 0xba, 0x51, 0x9f, 0x0f, - 0x0a, 0xb3, 0xe3, 0x02, 0x22, 0x97, 0xbc, 0x63, 0xf6, 0x87, 0x88, 0x9a, 0xfc, 0x76, 0x73, 0x28, - 0x68, 0xe6, 0x10, 0x26, 0xbc, 0x40, 0xce, 0x8c, 0x2c, 0x44, 0x7e, 0x0f, 0xd2, 0xe1, 0xd1, 0x9f, - 0x70, 0x77, 0x50, 0x1e, 0x4d, 0x4b, 0x7c, 0x75, 0x22, 0xc9, 0x88, 0x23, 0x61, 0xe8, 0xae, 0xe0, - 0x3b, 0x90, 0x0c, 0xc4, 0x7e, 0x91, 0x9b, 0x0e, 0x6e, 0xe3, 0x83, 0x9c, 0xdb, 0xb4, 0x12, 0x2f, - 0x0e, 0x22, 0x90, 0x56, 0x31, 0x71, 0x3a, 0x8f, 0xb0, 0x49, 0x63, 0x9e, 0xe0, 0x71, 0x91, 0x34, - 0xf9, 0xe3, 0xa2, 0x32, 0x24, 0x83, 0x94, 0xec, 0x45, 0x1e, 0xd8, 0x0c, 0x5b, 0xa1, 0xbb, 0xf0, - 0xa5, 0xf0, 0x3b, 0x1a, 0xa7, 0x6f, 0x9b, 0xba, 0x7b, 0xa8, 0xb9, 0x58, 0x37, 0xf6, 0xb1, 0x29, - 0xae, 0xb4, 0x5e, 0x0a, 0x3d, 0xa4, 0x11, 0x1c, 0x2a, 0x67, 0x40, 0x1f, 0x42, 0x26, 0x68, 0x44, - 0x7d, 0x31, 0x8b, 0xa0, 0xb2, 0x4b, 0xdf, 0x3c, 0x3b, 0xfa, 0x0b, 0x66, 0x5d, 0xf2, 0xf1, 0xa8, - 0xcf, 0x55, 0xd3, 0xed, 0x50, 0xa9, 0xf8, 0x0e, 0xa4, 0xc3, 0xb5, 0x48, 0x86, 0xd8, 0xc6, 0xe6, - 0x46, 0x9d, 0xef, 0xe9, 0x4a, 0xb9, 0xba, 0xb6, 0xdc, 0xb8, 0x77, 0x4f, 0x91, 0x28, 0xbd, 0xfe, - 0x41, 0x63, 0x5b, 0x89, 0xd0, 0xdd, 0xad, 0xd6, 0x5b, 0xdb, 0x65, 0x75, 0x5b, 0x89, 0x16, 0x31, - 0x64, 0xc2, 0x3d, 0x51, 0x9b, 0x49, 0x43, 0x4c, 0x46, 0x18, 0x39, 0x65, 0xdf, 0x98, 0x70, 0xac, - 0xbe, 0xee, 0xb9, 0x61, 0xd4, 0xe2, 0x8f, 0x23, 0x80, 0x86, 0x2a, 0x13, 0x32, 0xd0, 0xe3, 0x9d, - 0x45, 0x2e, 0xdf, 0x19, 0xfa, 0xc9, 0xd9, 0xe9, 0xf8, 0x28, 0x4b, 0xc7, 0xb3, 0xbd, 0xfb, 0x1b, - 0x4d, 0xc9, 0x8b, 0x10, 0xe6, 0xbf, 0x62, 0x80, 0xaa, 0x2e, 0xd6, 0x3d, 0x4c, 0xed, 0x31, 0x39, - 0x2b, 0x03, 0x51, 0x81, 0x69, 0x7e, 0x5c, 0x8d, 0x5c, 0xe4, 0xb8, 0x2a, 0x84, 0xc2, 0x9b, 0xa2, - 0x1f, 0x40, 0xda, 0x70, 0x3a, 0xfd, 0xae, 0xad, 0xb1, 0x07, 0x11, 0xe2, 0x78, 0xf0, 0xad, 0xb3, - 0xb6, 0xf6, 0xb1, 0xc1, 0x95, 0xaa, 0x4e, 0x87, 0x96, 0x83, 0x37, 0x71, 0x0c, 0x90, 0x71, 0xa0, - 0x97, 0x21, 0x19, 0x98, 0x19, 0xa6, 0xd6, 0x49, 0x75, 0x48, 0x40, 0x4b, 0x30, 0xad, 0x13, 0xcd, - 0xd9, 0x65, 0x91, 0xfb, 0x79, 0xfb, 0x4e, 0x8d, 0xe9, 0x64, 0x73, 0x17, 0xbd, 0x09, 0x99, 0xdd, - 0x87, 0xfc, 0x34, 0xc3, 0xdd, 0x0a, 0x7f, 0xa7, 0x32, 0x73, 0x34, 0x28, 0xa4, 0x96, 0xef, 0xb3, - 0xc9, 0x52, 0xa7, 0xa2, 0xa6, 0x76, 0x1f, 0x06, 0x05, 0x74, 0x1b, 0x66, 0xbb, 0xfa, 0x13, 0x6d, - 0xd7, 0xd5, 0x0d, 0x11, 0xbe, 0x77, 0xb8, 0xad, 0x94, 0xd4, 0x99, 0xae, 0xfe, 0x64, 0x59, 0xd0, - 0x1b, 0x66, 0x07, 0xe7, 0xff, 0x53, 0x82, 0x84, 0x98, 0x11, 0xea, 0x01, 0x08, 0xf1, 0x58, 0x26, - 0x57, 0xf5, 0x4c, 0xe5, 0xfe, 0xd1, 0xa0, 0x90, 0xac, 0x32, 0x6a, 0xa3, 0x46, 0x9e, 0x0f, 0x0a, - 0xef, 0xbd, 0xa8, 0x29, 0xf7, 0x41, 0xd4, 0x24, 0xef, 0xa4, 0x61, 0xb2, 0x34, 0xeb, 0xbe, 0x4e, - 0xb4, 0x7d, 0x8b, 0x78, 0xce, 0x9e, 0xab, 0x77, 0xc5, 0x15, 0x69, 0x7a, 0x5f, 0x27, 0xab, 0x3e, - 0x0d, 0xe5, 0x69, 0x20, 0xf6, 0x88, 0xbf, 0x67, 0xe1, 0xd6, 0x25, 0x28, 0xa3, 0x25, 0xb8, 0x12, - 0x34, 0xd6, 0xe8, 0xa4, 0xdb, 0x7d, 0xe3, 0x00, 0x33, 0xff, 0x48, 0x2d, 0xf9, 0x5c, 0x50, 0xb9, - 0xae, 0x3f, 0xa9, 0xf0, 0xaa, 0xe2, 0x15, 0x98, 0x0b, 0x2d, 0x6b, 0x10, 0x36, 0x63, 0x50, 0xd6, - 0xad, 0x3d, 0x57, 0x0f, 0x3f, 0x17, 0xbd, 0x0f, 0x33, 0x63, 0xcf, 0xb1, 0x85, 0xb1, 0x0d, 0xa7, - 0x07, 0x47, 0xdf, 0x6f, 0x97, 0xaa, 0xbc, 0xe8, 0x1f, 0x44, 0xb2, 0xc6, 0x48, 0xb9, 0x38, 0x07, - 0xb3, 0x41, 0x37, 0x41, 0xdf, 0xbf, 0x4e, 0x43, 0x62, 0x4b, 0x3f, 0xec, 0x38, 0xba, 0x89, 0x16, - 0x20, 0xe5, 0xbf, 0x81, 0xf1, 0xfb, 0x4b, 0xaa, 0x61, 0x12, 0xb2, 0x20, 0xdb, 0x27, 0xd8, 0xa5, - 0xfa, 0xa0, 0xb1, 0xd7, 0xe1, 0xdc, 0x7b, 0x54, 0x2a, 0xcf, 0x07, 0x85, 0xbb, 0x93, 0x2d, 0x0f, - 0x36, 0xfa, 0xae, 0xe5, 0x1d, 0x96, 0x5a, 0xf7, 0xef, 0xed, 0x08, 0x28, 0xba, 0x89, 0x1d, 0x35, - 0xd3, 0x0f, 0x17, 0xc5, 0x8b, 0x22, 0x2a, 0x6a, 0xad, 0x6b, 0x19, 0xae, 0x43, 0xfc, 0xfb, 0x0e, - 0x41, 0x5d, 0x67, 0x44, 0x74, 0x03, 0x66, 0x76, 0x2d, 0x9b, 0x5d, 0x77, 0xf9, 0x7c, 0xfc, 0xaa, - 0x23, 0xeb, 0x93, 0x05, 0xe3, 0x23, 0xc8, 0x86, 0x5e, 0x11, 0x51, 0x35, 0x8b, 0x33, 0x35, 0xdb, - 0x3c, 0x1a, 0x14, 0x32, 0xc3, 0x6d, 0xcb, 0x55, 0xed, 0x32, 0x51, 0x43, 0x66, 0xd8, 0x0d, 0x55, - 0xb4, 0x79, 0x98, 0x66, 0xbf, 0x1d, 0xe0, 0x0f, 0x07, 0x55, 0x5e, 0x40, 0xdf, 0x86, 0xe9, 0x0e, - 0xd6, 0x09, 0x16, 0x6f, 0x02, 0x17, 0xce, 0x30, 0x04, 0xec, 0xf1, 0xbd, 0xca, 0xd9, 0x51, 0x05, - 0xe2, 0xfc, 0x0a, 0x98, 0x5d, 0xdc, 0x1e, 0x4f, 0x16, 0x9f, 0xfa, 0xfc, 0x73, 0x75, 0x4a, 0x15, - 0x2d, 0x51, 0x1d, 0x12, 0xe2, 0x2d, 0x0d, 0xbb, 0xce, 0x3d, 0x37, 0xfd, 0x11, 0x7a, 0x9d, 0xb0, - 0x3a, 0xa5, 0xfa, 0x6d, 0xd1, 0xb6, 0xff, 0x7c, 0x88, 0x7b, 0x14, 0xf1, 0x3a, 0xaa, 0x34, 0x61, - 0x88, 0x3c, 0x04, 0x1c, 0x41, 0xa1, 0x13, 0xb4, 0xd8, 0xed, 0x09, 0xbb, 0x15, 0x3e, 0x7b, 0x82, - 0x23, 0xf7, 0xa5, 0x74, 0x82, 0xbc, 0x25, 0xda, 0x00, 0x30, 0x02, 0x2f, 0xc7, 0xee, 0x8b, 0x53, - 0x4b, 0x5f, 0xbb, 0x48, 0x7c, 0xb9, 0x3a, 0xa5, 0x86, 0x10, 0xd0, 0x7d, 0x48, 0x19, 0xc3, 0x6d, - 0x9b, 0x9b, 0x61, 0x80, 0x6f, 0x5c, 0xc8, 0x76, 0xaf, 0x52, 0x7b, 0x3d, 0xa4, 0x8e, 0xda, 0x6b, - 0x65, 0xdc, 0x5e, 0xd7, 0x21, 0x23, 0x32, 0x55, 0xfc, 0x67, 0x27, 0xe2, 0xc9, 0x53, 0x58, 0x4b, - 0xfc, 0x1f, 0xa6, 0x94, 0xea, 0xb6, 0xe1, 0x98, 0xd8, 0xac, 0xd3, 0xb2, 0x2a, 0x12, 0xf3, 0xac, - 0x40, 0xd0, 0x0a, 0x64, 0x8d, 0x0e, 0xd6, 0xed, 0x7e, 0xcf, 0xc7, 0x41, 0x13, 0xe2, 0x64, 0x44, - 0x3b, 0x01, 0xb4, 0x01, 0x68, 0x97, 0xbd, 0xfb, 0x09, 0x8f, 0x8a, 0x5d, 0xfc, 0x4e, 0x02, 0xa6, - 0xb0, 0xb6, 0xea, 0x70, 0x64, 0xe8, 0x55, 0xc8, 0xd8, 0x8e, 0x6d, 0xe8, 0xb6, 0x81, 0x3b, 0xcc, - 0xb3, 0xf2, 0xbb, 0xe2, 0x51, 0x22, 0xfa, 0x08, 0xb2, 0x64, 0xe4, 0x50, 0x95, 0xbb, 0xc2, 0x7a, - 0xfc, 0xfa, 0x45, 0xd3, 0xb0, 0xab, 0x53, 0xea, 0x18, 0x12, 0xfa, 0x6d, 0x50, 0xbc, 0xb1, 0xbb, - 0x1a, 0x76, 0xeb, 0x7c, 0xf6, 0xf3, 0xbe, 0x53, 0x6e, 0xa4, 0x56, 0xa7, 0xd4, 0x63, 0x68, 0xe8, - 0x63, 0x98, 0x21, 0xa3, 0x0f, 0xe1, 0x73, 0xd7, 0x58, 0x07, 0xdf, 0x38, 0xf3, 0xc2, 0xe1, 0xa4, - 0xdf, 0x0e, 0xac, 0x4e, 0xa9, 0xe3, 0x58, 0x14, 0xde, 0x1e, 0xbd, 0xf2, 0x61, 0xaf, 0x00, 0xce, - 0x86, 0x3f, 0xf9, 0x0a, 0x8a, 0xc2, 0x8f, 0x61, 0xa1, 0x35, 0x48, 0x76, 0x7d, 0x5f, 0x91, 0x7b, - 0xe9, 0xdc, 0x73, 0xc8, 0xb8, 0xfb, 0x5a, 0x9d, 0x52, 0x87, 0xed, 0x2b, 0x49, 0x48, 0x88, 0xab, - 0xc1, 0xe0, 0xde, 0x3e, 0xa1, 0xc8, 0xc5, 0x5f, 0xcb, 0x20, 0x07, 0x31, 0xe8, 0x22, 0xa0, 0x20, - 0x6a, 0x18, 0x3e, 0x37, 0xa5, 0x2e, 0x28, 0xb2, 0x3a, 0xa5, 0xce, 0xfa, 0x75, 0xc3, 0x17, 0xa7, - 0x37, 0x60, 0xa6, 0xeb, 0x98, 0xd6, 0xae, 0x35, 0x34, 0xfc, 0x3c, 0x11, 0x9c, 0xf5, 0xc9, 0xc2, - 0xf0, 0xdf, 0x1d, 0x79, 0xd1, 0x34, 0xc9, 0xaf, 0x1a, 0xe8, 0xe8, 0x83, 0x27, 0x4f, 0xd4, 0x11, - 0xb9, 0x7d, 0x9b, 0xdd, 0x02, 0x8a, 0x64, 0x00, 0x8f, 0xaf, 0x32, 0x82, 0x2a, 0xce, 0xf3, 0xd5, - 0x31, 0xcb, 0x7c, 0xeb, 0x5c, 0xcb, 0xec, 0xcf, 0x7d, 0x55, 0x0a, 0x4c, 0xf3, 0xf2, 0xb8, 0x69, - 0xbe, 0x7d, 0xbe, 0x69, 0x0e, 0xc1, 0x04, 0xb6, 0x79, 0xe7, 0x44, 0xdb, 0xbc, 0x38, 0xe1, 0xc6, - 0x09, 0x21, 0x8e, 0x1a, 0xe7, 0xea, 0x98, 0x71, 0xbe, 0x75, 0xae, 0x71, 0x0e, 0xcf, 0x51, 0x58, - 0xe7, 0xcd, 0x13, 0xac, 0xf3, 0x1b, 0x13, 0x59, 0xe7, 0x10, 0x58, 0xd8, 0x3c, 0xab, 0x27, 0x99, - 0xe7, 0xd2, 0x64, 0xe6, 0x39, 0x04, 0x39, 0x62, 0x9f, 0xbf, 0x7f, 0xcc, 0xf6, 0x28, 0xe7, 0x6f, - 0xde, 0x13, 0x33, 0x40, 0xab, 0xd2, 0x31, 0xe3, 0xa3, 0x9f, 0x60, 0x7c, 0x66, 0x19, 0xfc, 0x9b, - 0x17, 0x30, 0x3e, 0xa1, 0x0e, 0x8e, 0x5b, 0x9f, 0x0f, 0x20, 0x1d, 0xb6, 0x18, 0xec, 0xed, 0xce, - 0xd9, 0xb6, 0xed, 0x94, 0x5f, 0xed, 0x30, 0x1d, 0x08, 0x55, 0xa1, 0x1f, 0x1c, 0x37, 0x3c, 0x73, - 0xe7, 0x82, 0x9f, 0x72, 0x3b, 0xbd, 0x2a, 0x1d, 0xb7, 0x3c, 0xf7, 0xc2, 0x96, 0x67, 0xfe, 0x5c, - 0xdf, 0x7d, 0x2c, 0xa2, 0x5d, 0x95, 0xc2, 0xa6, 0x07, 0x40, 0xf6, 0x1f, 0x3f, 0x84, 0xcc, 0x50, - 0xf1, 0xa7, 0x12, 0x44, 0x9b, 0x4e, 0x1b, 0xbd, 0x12, 0x4a, 0x4d, 0x66, 0xc4, 0x51, 0x74, 0xba, - 0xe9, 0xb4, 0x45, 0x8e, 0xf1, 0xdd, 0x61, 0x6b, 0x71, 0xf8, 0xfb, 0xca, 0x19, 0x43, 0x09, 0x32, - 0xbb, 0x41, 0x23, 0xf4, 0x36, 0x24, 0x7a, 0x3c, 0xb8, 0x16, 0x86, 0xa7, 0x78, 0x56, 0x7b, 0xce, - 0xa9, 0xfa, 0x4d, 0x6e, 0xdf, 0x0a, 0xff, 0x9e, 0x6f, 0xdd, 0x31, 0x31, 0xca, 0x02, 0x6c, 0xe9, - 0x84, 0xf4, 0xf6, 0x5d, 0x9d, 0x60, 0x65, 0x0a, 0x25, 0x20, 0xba, 0xb6, 0xde, 0x52, 0xa4, 0xdb, - 0x1f, 0x84, 0xf3, 0x8a, 0x35, 0xb5, 0xdc, 0xd8, 0x68, 0x6c, 0xac, 0x68, 0x1b, 0xe5, 0xf5, 0x7a, - 0x4b, 0x99, 0x42, 0x39, 0x98, 0x7f, 0xbf, 0xdc, 0xd8, 0x16, 0x89, 0x46, 0xad, 0xb1, 0xb1, 0x5d, - 0x57, 0x1f, 0x94, 0xef, 0x29, 0x12, 0xba, 0x0a, 0x48, 0xdd, 0xac, 0xae, 0xb5, 0x6a, 0x15, 0xad, - 0xba, 0xb9, 0xbe, 0x55, 0xae, 0x6e, 0x37, 0x36, 0x37, 0x94, 0x08, 0x92, 0x21, 0x56, 0xdb, 0xdc, - 0xa8, 0x2b, 0x70, 0xfb, 0x27, 0x31, 0x88, 0xb1, 0x94, 0xc6, 0xab, 0x90, 0xda, 0xd9, 0x68, 0x6d, - 0xd5, 0xab, 0x8d, 0xe5, 0x46, 0xbd, 0xa6, 0x4c, 0xe5, 0xe7, 0x9e, 0x3e, 0x5b, 0x98, 0xa1, 0x55, - 0x3b, 0x36, 0xe9, 0x61, 0x83, 0xd9, 0x5c, 0x94, 0x87, 0x78, 0xa5, 0x5c, 0x5d, 0xdb, 0xd9, 0x52, - 0xa4, 0x7c, 0xf6, 0xe9, 0xb3, 0x05, 0xa0, 0x0c, 0xdc, 0xde, 0xa1, 0x97, 0x79, 0xca, 0x63, 0x53, - 0xad, 0x2b, 0x91, 0xfc, 0xcc, 0xd3, 0x67, 0x0b, 0x29, 0x96, 0x49, 0x11, 0x36, 0xeb, 0x06, 0x64, - 0x5a, 0xd5, 0xd5, 0xfa, 0x7a, 0x59, 0xab, 0xae, 0x96, 0x37, 0x56, 0xea, 0x4a, 0x34, 0x3f, 0xff, - 0xf4, 0xd9, 0x82, 0x32, 0xae, 0xf7, 0xb4, 0x8b, 0xc6, 0xfa, 0xd6, 0xa6, 0xba, 0xad, 0xc4, 0x86, - 0x5d, 0x70, 0x73, 0x83, 0x8a, 0x00, 0xbc, 0xf5, 0x72, 0xbd, 0x5e, 0x53, 0xa6, 0xf3, 0xe8, 0xe9, - 0xb3, 0x85, 0x2c, 0xad, 0x1f, 0x5a, 0x11, 0xf4, 0x1a, 0xa4, 0xab, 0x6a, 0xbd, 0xbc, 0x5d, 0xd7, - 0x5a, 0xdb, 0xe5, 0xed, 0x96, 0x12, 0x1f, 0xce, 0x24, 0x64, 0x19, 0x50, 0x09, 0x66, 0xcb, 0x3b, - 0xdb, 0x9b, 0xda, 0x08, 0x6f, 0x22, 0x7f, 0xed, 0xe9, 0xb3, 0x85, 0x39, 0xca, 0x5b, 0xee, 0x7b, - 0x4e, 0x98, 0xff, 0x6b, 0xa0, 0x8c, 0x8c, 0x5f, 0x5b, 0xa9, 0x2a, 0x72, 0xfe, 0xea, 0xd3, 0x67, - 0x0b, 0x68, 0x7c, 0x0a, 0x2b, 0x55, 0xf4, 0x4d, 0xb8, 0xba, 0xfd, 0xe1, 0x56, 0xbd, 0x56, 0x6f, - 0x55, 0xb5, 0xd1, 0x69, 0x27, 0xf3, 0xb9, 0xa7, 0xcf, 0x16, 0xe6, 0x69, 0x9b, 0x63, 0x53, 0x7f, - 0x03, 0x94, 0xd6, 0xb6, 0x5a, 0x2f, 0xaf, 0x6b, 0x8d, 0x8d, 0x95, 0x7a, 0x8b, 0x2d, 0x16, 0x0c, - 0x87, 0x34, 0xb6, 0x87, 0xe9, 0x14, 0x36, 0xea, 0xef, 0x8f, 0xe1, 0xa7, 0x86, 0xfc, 0x63, 0xdb, - 0x12, 0x2d, 0x40, 0x72, 0xbd, 0xb1, 0xa2, 0x96, 0x19, 0x6e, 0x3a, 0x3f, 0xfb, 0xf4, 0xd9, 0x42, - 0x86, 0xf2, 0x05, 0x9b, 0x2c, 0x2f, 0xff, 0xf8, 0xa7, 0xd7, 0xa7, 0xfe, 0xea, 0x67, 0xd7, 0xa7, - 0x2a, 0x37, 0x3f, 0xf9, 0xf7, 0xeb, 0x53, 0x9f, 0x1c, 0x5d, 0x97, 0x7e, 0x79, 0x74, 0x5d, 0xfa, - 0xf4, 0xe8, 0xba, 0xf4, 0x6f, 0x47, 0xd7, 0xa5, 0x3f, 0xfe, 0xec, 0xfa, 0xd4, 0x2f, 0x3f, 0xbb, - 0x3e, 0xf5, 0xe9, 0x67, 0xd7, 0xa7, 0x3e, 0x8a, 0x73, 0xbd, 0x6e, 0xc7, 0xd9, 0x49, 0xf1, 0xcd, - 0xff, 0x0b, 0x00, 0x00, 0xff, 0xff, 0x3d, 0xf0, 0xd9, 0x09, 0x80, 0x3d, 0x00, 0x00, +func init() { proto.RegisterFile("jobs/jobspb/jobs.proto", fileDescriptor_jobs_1765ed052d18ceed) } + +var fileDescriptor_jobs_1765ed052d18ceed = []byte{ + // 4998 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x5b, 0x4d, 0x70, 0x23, 0xc7, + 0x75, 0xe6, 0x80, 0x20, 0x30, 0x78, 0xf8, 0xe1, 0xb0, 0xc9, 0xdd, 0x85, 0x60, 0x89, 0xa0, 0x61, + 0x49, 0xfb, 0x63, 0x09, 0x94, 0x29, 0x5b, 0x96, 0xd6, 0xd2, 0x4a, 0xf8, 0x23, 0x09, 0x70, 0xf9, + 0xb3, 0x03, 0x72, 0xf5, 0xe3, 0xc8, 0x93, 0xc1, 0x4c, 0x93, 0x9c, 0x10, 0x98, 0xc1, 0x4e, 0x0f, + 0x76, 0x97, 0x4e, 0x55, 0x92, 0x72, 0x2a, 0x55, 0xae, 0x3d, 0x25, 0x07, 0xe7, 0x90, 0x64, 0xab, + 0x52, 0x65, 0xbb, 0x2a, 0x87, 0x5c, 0xe2, 0x4a, 0x39, 0x39, 0xe4, 0x96, 0x8b, 0x0e, 0x49, 0x95, + 0x8f, 0xaa, 0x1c, 0xe0, 0x84, 0xba, 0xe4, 0x98, 0x4a, 0xaa, 0x52, 0xae, 0x3d, 0xa5, 0xfa, 0x67, + 0x06, 0x03, 0xf0, 0x0f, 0x5c, 0x4a, 0xce, 0x85, 0x9c, 0x7e, 0xfd, 0xfa, 0xeb, 0xee, 0xd7, 0xaf, + 0xdf, 0x7b, 0xfd, 0xba, 0x01, 0x57, 0x7f, 0xcf, 0x69, 0x91, 0x45, 0xfa, 0xa7, 0xdb, 0x62, 0xff, + 0x8a, 0x5d, 0xd7, 0xf1, 0x1c, 0xf4, 0x82, 0xe1, 0x18, 0x07, 0xae, 0xa3, 0x1b, 0xfb, 0x45, 0xf2, + 0xa0, 0x5d, 0x64, 0x35, 0x9c, 0x2b, 0x77, 0x05, 0xbb, 0xae, 0xe3, 0x52, 0x7e, 0xfe, 0xc1, 0x5b, + 0xe4, 0xe6, 0xf6, 0x9c, 0x3d, 0x87, 0x7d, 0x2e, 0xd2, 0x2f, 0x41, 0x45, 0x0c, 0xa3, 0xdb, 0x5a, + 0x34, 0x75, 0x4f, 0x17, 0xb4, 0xac, 0x4f, 0xb3, 0x9c, 0xd7, 0x77, 0x1d, 0xb7, 0xa3, 0x7b, 0x3e, + 0xc6, 0x37, 0xc8, 0x83, 0xf6, 0xa2, 0xa1, 0x7b, 0x7a, 0xdb, 0xd9, 0x5b, 0x34, 0x31, 0x31, 0xba, + 0xad, 0x45, 0xe2, 0xb9, 0x3d, 0xc3, 0xeb, 0xb9, 0xd8, 0x14, 0x4c, 0xf9, 0x13, 0x98, 0x3c, 0x6c, + 0xeb, 0xb6, 0xe7, 0xe3, 0xf7, 0x3c, 0xab, 0xbd, 0xb8, 0xdf, 0x36, 0x16, 0x3d, 0xab, 0x83, 0x89, + 0xa7, 0x77, 0xba, 0xa2, 0xe6, 0xeb, 0xb4, 0x29, 0x31, 0xf6, 0x71, 0x47, 0x37, 0xf6, 0x75, 0x7b, + 0x0f, 0xbb, 0x8b, 0xbc, 0x0f, 0xa3, 0xdb, 0x12, 0x2c, 0x2f, 0x1b, 0xed, 0x1e, 0xf1, 0xb0, 0xfb, + 0x10, 0xbb, 0xc4, 0x72, 0xec, 0x45, 0x51, 0xd4, 0x44, 0x99, 0x73, 0x15, 0xfe, 0x10, 0xa6, 0xee, + 0x62, 0x9d, 0x60, 0xf4, 0x09, 0xc4, 0x6d, 0xc7, 0xc4, 0x9a, 0x65, 0x66, 0xa5, 0x05, 0xe9, 0x46, + 0xba, 0x5c, 0x3a, 0xea, 0xe7, 0x63, 0x1b, 0x8e, 0x89, 0xeb, 0xd5, 0x67, 0xfd, 0xfc, 0x9b, 0x7b, + 0x96, 0xb7, 0xdf, 0x6b, 0x15, 0x0d, 0xa7, 0xb3, 0x18, 0x48, 0xd4, 0x6c, 0x0d, 0xbe, 0x17, 0xbb, + 0x07, 0x7b, 0x8b, 0x42, 0x1e, 0x45, 0xde, 0x4c, 0x8d, 0x51, 0xc4, 0xba, 0x89, 0xe6, 0x60, 0x0a, + 0x77, 0x1d, 0x63, 0x3f, 0x1b, 0x59, 0x90, 0x6e, 0x4c, 0xaa, 0xbc, 0x70, 0x3b, 0xfa, 0x9f, 0x7f, + 0x9d, 0x97, 0x0a, 0x3f, 0x8f, 0xc0, 0xb5, 0xb2, 0x6e, 0x1c, 0xf4, 0xba, 0x35, 0xdb, 0x70, 0x0f, + 0xbb, 0x9e, 0xe5, 0xd8, 0x9b, 0xec, 0x2f, 0x41, 0x0a, 0x4c, 0x1e, 0xe0, 0x43, 0x36, 0x9e, 0x94, + 0x4a, 0x3f, 0xd1, 0x7b, 0x10, 0xed, 0x38, 0x26, 0x66, 0x40, 0x99, 0xa5, 0x9b, 0xc5, 0x53, 0x17, + 0xb7, 0x38, 0x40, 0x5b, 0x77, 0x4c, 0xac, 0xb2, 0x66, 0xa8, 0x05, 0xf2, 0x41, 0x87, 0x68, 0x96, + 0xbd, 0xeb, 0x64, 0x27, 0x17, 0xa4, 0x1b, 0xc9, 0xa5, 0xdb, 0x67, 0x40, 0x9c, 0x32, 0xac, 0xe2, + 0xda, 0x7a, 0xb3, 0x6e, 0xef, 0x3a, 0xe5, 0xe4, 0x51, 0x3f, 0x1f, 0x17, 0x05, 0x35, 0x7e, 0xd0, + 0x21, 0xf4, 0x23, 0xb7, 0x09, 0x3e, 0x8d, 0x8e, 0xbf, 0xe7, 0x5a, 0x6c, 0xfc, 0x09, 0x95, 0x7e, + 0xa2, 0xd7, 0x00, 0x61, 0x8e, 0x87, 0x4d, 0x8d, 0x6a, 0x92, 0x46, 0x27, 0x18, 0x61, 0x13, 0x54, + 0x82, 0x9a, 0xaa, 0xee, 0xe9, 0x6b, 0xf8, 0x90, 0x4b, 0x48, 0xc8, 0xe9, 0x8f, 0x26, 0x21, 0x33, + 0x18, 0x0a, 0x83, 0x5f, 0x85, 0x18, 0x53, 0x01, 0xcc, 0x7a, 0xc8, 0x2c, 0xbd, 0x31, 0x96, 0x38, + 0x68, 0xd3, 0x62, 0x93, 0xb5, 0x53, 0x45, 0x7b, 0x84, 0x20, 0x4a, 0xf4, 0xb6, 0x27, 0x06, 0xc2, + 0xbe, 0xd1, 0x5f, 0x4a, 0xb0, 0x30, 0x3a, 0xa2, 0xf2, 0xe1, 0xda, 0x7a, 0x73, 0x5d, 0xa7, 0x7a, + 0xb4, 0x86, 0x0f, 0xeb, 0xd5, 0xec, 0xe4, 0xc2, 0xe4, 0x8d, 0xe4, 0xd2, 0xe6, 0xf8, 0x1d, 0xd7, + 0xce, 0x41, 0xac, 0xd9, 0x9e, 0x7b, 0xa8, 0x9e, 0xdb, 0x71, 0xae, 0x09, 0xaf, 0x8c, 0x05, 0x15, + 0xd6, 0xa1, 0x04, 0xd7, 0xa1, 0x39, 0x98, 0x7a, 0xa8, 0xb7, 0x7b, 0x58, 0xcc, 0x96, 0x17, 0x6e, + 0x47, 0xde, 0x96, 0x0a, 0xd7, 0x20, 0xc6, 0x05, 0x83, 0xd2, 0x90, 0x28, 0xd5, 0x9a, 0x4b, 0xdf, + 0x79, 0x6b, 0xa5, 0xb2, 0xae, 0x4c, 0x88, 0x25, 0xf8, 0xa5, 0x04, 0x57, 0x9b, 0x9e, 0x8b, 0xf5, + 0x4e, 0xdd, 0xde, 0xc3, 0x84, 0xce, 0xa9, 0x8a, 0x3d, 0xdd, 0x6a, 0x13, 0xf4, 0x0a, 0x64, 0x08, + 0xab, 0xd1, 0x74, 0xd3, 0x74, 0x31, 0x21, 0xa2, 0xc3, 0x34, 0xa7, 0x96, 0x38, 0x11, 0x7d, 0x0b, + 0xa2, 0xa4, 0xab, 0xdb, 0xac, 0xe7, 0xe4, 0xd2, 0xb5, 0x90, 0xd8, 0xfc, 0x9d, 0xd3, 0xec, 0xea, + 0x76, 0x39, 0xfa, 0x59, 0x3f, 0x3f, 0xa1, 0x32, 0x56, 0x54, 0x06, 0x20, 0x9e, 0xee, 0x7a, 0x1a, + 0x35, 0x01, 0x42, 0x69, 0x5f, 0x0a, 0x35, 0xa4, 0x26, 0xa2, 0xb8, 0xdf, 0x36, 0x8a, 0xdb, 0xbe, + 0x89, 0x10, 0xcd, 0x13, 0xac, 0x19, 0xa5, 0x16, 0x74, 0xb8, 0x36, 0x32, 0xee, 0x2d, 0xd7, 0xd9, + 0x63, 0x23, 0x5a, 0x86, 0x94, 0xd1, 0xf3, 0x9c, 0x87, 0xd8, 0xe5, 0x1d, 0x48, 0xe3, 0x77, 0x90, + 0x14, 0x0d, 0x59, 0x17, 0xff, 0x14, 0x83, 0x34, 0xdf, 0x2f, 0xbe, 0x48, 0x86, 0x07, 0x2e, 0x3d, + 0xcf, 0xc0, 0xd1, 0x1d, 0x90, 0xb1, 0x6d, 0x72, 0x84, 0xc8, 0xf8, 0x08, 0x71, 0x6c, 0x9b, 0xac, + 0xfd, 0x0b, 0x7c, 0x03, 0x52, 0xa9, 0x25, 0xca, 0xf1, 0xa3, 0x7e, 0x7e, 0x72, 0x47, 0xad, 0xf3, + 0x9d, 0xf8, 0x2e, 0xe4, 0x4c, 0xdc, 0x75, 0xb1, 0xa1, 0xd3, 0xad, 0xd8, 0x62, 0x43, 0xd7, 0x3a, + 0xba, 0x6d, 0xed, 0x62, 0xe2, 0x65, 0xa3, 0x4c, 0x35, 0xb2, 0x03, 0x0e, 0x3e, 0xb7, 0x75, 0x51, + 0x8f, 0xfe, 0x58, 0x82, 0xd9, 0x9e, 0x6b, 0x11, 0xad, 0x75, 0xa8, 0xb5, 0x1d, 0x43, 0x6f, 0x5b, + 0xde, 0xa1, 0x76, 0xf0, 0x30, 0x3b, 0xc5, 0xf6, 0xc3, 0x9d, 0x73, 0x8d, 0x8a, 0x10, 0x52, 0x71, + 0xc7, 0xb5, 0x48, 0xf9, 0xf0, 0xae, 0x40, 0x58, 0x7b, 0xc8, 0x74, 0xb6, 0x3c, 0x77, 0xd4, 0xcf, + 0x2b, 0x3b, 0x6a, 0x3d, 0x5c, 0x75, 0x5f, 0x55, 0x7a, 0x23, 0xcc, 0x48, 0x0f, 0xac, 0x89, 0xe5, + 0xd8, 0x9a, 0xc3, 0xcd, 0x53, 0x36, 0xc6, 0x04, 0xb5, 0x74, 0x71, 0xc3, 0xa6, 0xce, 0xe0, 0x63, + 0x26, 0xf8, 0xcf, 0x24, 0xc8, 0x51, 0x4f, 0x81, 0x0d, 0x2a, 0xa6, 0xc0, 0x0d, 0x69, 0x2e, 0x36, + 0x1c, 0xd7, 0xcc, 0xc6, 0xa9, 0x9c, 0xca, 0xcd, 0x7f, 0x1b, 0xd7, 0x41, 0x30, 0x87, 0xd6, 0xeb, + 0x59, 0x66, 0x71, 0x67, 0xa7, 0x5e, 0x3d, 0xea, 0xe7, 0xb3, 0x5b, 0x3e, 0x78, 0xb0, 0x88, 0x2a, + 0x83, 0x56, 0xb3, 0xdd, 0x53, 0x6a, 0xd0, 0xdb, 0x90, 0x31, 0x9c, 0x76, 0x1b, 0x1b, 0x6c, 0xda, + 0x3b, 0x6a, 0x3d, 0x2b, 0xb3, 0x05, 0x9e, 0x39, 0xea, 0xe7, 0xd3, 0x95, 0xa0, 0x86, 0x2e, 0x75, + 0xda, 0x08, 0x17, 0x91, 0x0a, 0xd3, 0x21, 0x81, 0x31, 0x37, 0x90, 0x60, 0xd2, 0xba, 0x39, 0xb6, + 0x05, 0x53, 0x33, 0x78, 0xa8, 0x9c, 0xab, 0xc0, 0x95, 0x13, 0x57, 0xf1, 0x3c, 0xcb, 0x93, 0x08, + 0x5b, 0x1e, 0x05, 0x32, 0x7c, 0x51, 0xfc, 0x8d, 0x59, 0xf8, 0xdf, 0x69, 0xc8, 0xa8, 0x98, 0x78, + 0x8e, 0x8b, 0xfd, 0x1d, 0xf5, 0x0b, 0x09, 0x66, 0x69, 0x98, 0xe0, 0x5a, 0x5d, 0xcf, 0x71, 0x35, + 0x17, 0x3f, 0x72, 0x2d, 0x0f, 0x93, 0x6c, 0x84, 0x29, 0x5d, 0xe9, 0x8c, 0x29, 0x0c, 0x03, 0x15, + 0xab, 0x01, 0x88, 0x2a, 0x30, 0xb8, 0xde, 0xdd, 0xf9, 0xd1, 0xaf, 0xf3, 0xb7, 0xc7, 0x5a, 0xc7, + 0xe3, 0x91, 0x4b, 0xb1, 0x5e, 0x55, 0x91, 0x79, 0x0c, 0x18, 0xbd, 0x08, 0x51, 0xaa, 0xb7, 0xcc, + 0x53, 0x24, 0xca, 0xf2, 0x51, 0x3f, 0x1f, 0xa5, 0x9a, 0xad, 0x32, 0xea, 0xd0, 0x06, 0x8f, 0x3e, + 0xc7, 0x06, 0x5f, 0x81, 0xa4, 0xa7, 0xb7, 0xda, 0x58, 0xa3, 0x3d, 0x13, 0xb1, 0xfd, 0x5e, 0x1d, + 0x91, 0x04, 0x79, 0xd0, 0x6e, 0xe9, 0x04, 0x17, 0xb7, 0x29, 0x67, 0x68, 0xee, 0xe0, 0xf9, 0x04, + 0x82, 0x16, 0x21, 0x49, 0x6d, 0x99, 0x6b, 0x99, 0x58, 0x33, 0x5b, 0x6c, 0x0f, 0x25, 0xca, 0x99, + 0xa3, 0x7e, 0x1e, 0x36, 0x05, 0xb9, 0x5a, 0x56, 0xc1, 0x67, 0xa9, 0xb6, 0x90, 0x07, 0x73, 0xc2, + 0x68, 0x04, 0xfb, 0x9f, 0xe9, 0x53, 0x9c, 0x0d, 0xe1, 0xdd, 0xf1, 0x17, 0x83, 0xaf, 0xbb, 0xaf, + 0x3c, 0x2c, 0xb0, 0xe0, 0x93, 0x44, 0xad, 0x63, 0x35, 0xe8, 0x9b, 0x30, 0xd3, 0x75, 0x71, 0x57, + 0x77, 0xb1, 0x66, 0x38, 0x9d, 0x6e, 0x1b, 0x7b, 0xd8, 0x64, 0xda, 0x2f, 0xab, 0x8a, 0xa8, 0xa8, + 0xf8, 0x74, 0xee, 0x94, 0x74, 0x8f, 0xc6, 0x3b, 0x04, 0xbb, 0x94, 0x33, 0xc1, 0x38, 0xd3, 0x8c, + 0x5a, 0x17, 0x44, 0xf4, 0x26, 0x5c, 0x19, 0xac, 0x1b, 0xd1, 0xba, 0xbd, 0x56, 0xdb, 0x22, 0xfb, + 0xd8, 0xcc, 0x02, 0xe3, 0x9e, 0x0b, 0x55, 0x6e, 0xf9, 0x75, 0xe8, 0x70, 0x48, 0x15, 0x0d, 0x2a, + 0x18, 0x7d, 0x0f, 0x67, 0x93, 0x0b, 0xd2, 0x8d, 0xa9, 0xf2, 0xea, 0xb3, 0x7e, 0xbe, 0x3a, 0xb6, + 0x1e, 0x11, 0xdc, 0x59, 0xf4, 0x5c, 0x8c, 0x43, 0x6a, 0x59, 0x11, 0x78, 0x61, 0x8d, 0xf2, 0x69, + 0x48, 0x05, 0x18, 0x6c, 0xc1, 0x6c, 0xea, 0xb9, 0xad, 0x5d, 0x08, 0x05, 0x95, 0x20, 0xce, 0x23, + 0x6f, 0x92, 0x4d, 0xb3, 0x05, 0xfc, 0xfa, 0x69, 0x3a, 0xc4, 0xb8, 0x42, 0xab, 0xe4, 0xb7, 0x43, + 0x55, 0x00, 0xef, 0xb0, 0xeb, 0x6b, 0x62, 0x86, 0xa1, 0xbc, 0x72, 0x1a, 0xca, 0x61, 0x37, 0xac, + 0x88, 0x09, 0x4f, 0x94, 0x09, 0x6a, 0x40, 0x8a, 0x87, 0xf5, 0x02, 0x67, 0x9a, 0xe1, 0x5c, 0x3f, + 0x05, 0x87, 0x45, 0x2b, 0x7a, 0x08, 0x29, 0x49, 0x02, 0x0a, 0x41, 0x5b, 0x90, 0xa1, 0x21, 0x26, + 0xe5, 0x14, 0x68, 0x0a, 0x43, 0xbb, 0x79, 0x0a, 0x5a, 0x55, 0x30, 0x87, 0xf0, 0xd2, 0x66, 0x88, + 0x46, 0xd0, 0x21, 0x5c, 0x25, 0x87, 0xc4, 0xc3, 0x1d, 0x8d, 0x6d, 0x1d, 0xa2, 0xb9, 0x5c, 0x97, + 0xcd, 0xec, 0x0c, 0x43, 0xae, 0x8c, 0xaf, 0xf6, 0x4d, 0x86, 0xc3, 0xb6, 0x24, 0x11, 0x55, 0x26, + 0x0f, 0xfe, 0xe6, 0xc8, 0x09, 0x55, 0xb9, 0xff, 0x91, 0x60, 0xe6, 0x98, 0xdd, 0x42, 0xdb, 0x10, + 0x09, 0x0e, 0x2c, 0xd4, 0x9d, 0x44, 0xd8, 0x61, 0xe5, 0x32, 0x36, 0x2c, 0x62, 0x99, 0x68, 0x0f, + 0x12, 0x74, 0x27, 0xd9, 0x1e, 0x3d, 0x0d, 0x45, 0x18, 0x78, 0xe3, 0xa8, 0x9f, 0x97, 0xb7, 0x18, + 0xf1, 0xd2, 0x5d, 0xc8, 0x1c, 0xbc, 0x6e, 0xa2, 0x3c, 0x24, 0x3d, 0x47, 0xc3, 0x8f, 0x2d, 0xe2, + 0x59, 0xf6, 0x1e, 0x8b, 0x53, 0x64, 0x15, 0x3c, 0xa7, 0x26, 0x28, 0xb9, 0xbf, 0x8a, 0x00, 0x3a, + 0x6e, 0x20, 0xd0, 0x3f, 0x4a, 0xf0, 0xa2, 0x1f, 0x7e, 0x38, 0xae, 0xb5, 0x67, 0xd9, 0x7a, 0x7b, + 0x28, 0x0e, 0x91, 0xd8, 0x72, 0x7c, 0x72, 0x19, 0x2b, 0x24, 0x62, 0x93, 0x4d, 0x01, 0x3f, 0x1a, + 0xa3, 0xbc, 0x48, 0x9d, 0x37, 0x8f, 0x51, 0x8e, 0xb1, 0xdc, 0x57, 0xb3, 0xbd, 0x53, 0x1a, 0xe7, + 0xd6, 0xe0, 0xa5, 0x33, 0x81, 0x2f, 0xe2, 0x36, 0x73, 0x3f, 0x92, 0xe0, 0xda, 0x29, 0xce, 0x2c, + 0x8c, 0x93, 0xe6, 0x38, 0xf7, 0xc2, 0x38, 0xc9, 0xa5, 0xef, 0x5d, 0xc2, 0x61, 0x86, 0x07, 0xb1, + 0x02, 0x2f, 0x9c, 0xaa, 0xcc, 0xe7, 0xcd, 0x46, 0x0e, 0x01, 0x35, 0xa2, 0xb2, 0xa4, 0x44, 0x0a, + 0x6f, 0xc0, 0xb4, 0x80, 0x08, 0x82, 0xf4, 0x97, 0x00, 0xf6, 0xad, 0xbd, 0x7d, 0xed, 0x91, 0xee, + 0x61, 0x57, 0x1c, 0x87, 0x13, 0x94, 0xf2, 0x21, 0x25, 0x14, 0xfe, 0x02, 0x20, 0x5d, 0xef, 0x74, + 0x1d, 0xd7, 0xf3, 0x23, 0x85, 0xbb, 0x10, 0xe3, 0x1b, 0x54, 0x28, 0x42, 0xf1, 0x8c, 0xa9, 0x0e, + 0xb5, 0xe4, 0x3e, 0x52, 0x98, 0x36, 0x81, 0x11, 0xb8, 0xf0, 0xc8, 0x89, 0x2e, 0xfc, 0x3d, 0x88, + 0xf1, 0xdc, 0x87, 0x38, 0x9c, 0xe4, 0x4f, 0x38, 0xd5, 0xd4, 0x37, 0x97, 0xad, 0x36, 0x5e, 0x66, + 0x6c, 0x3e, 0x38, 0x6f, 0x84, 0x5e, 0x05, 0x99, 0x10, 0x4f, 0x23, 0xd6, 0x0f, 0x79, 0x04, 0x30, + 0xc9, 0x8f, 0xd5, 0xcd, 0xe6, 0x76, 0xd3, 0xfa, 0x21, 0x56, 0xe3, 0x84, 0x78, 0xf4, 0x03, 0xe5, + 0x40, 0x7e, 0xa4, 0xb7, 0xdb, 0x2c, 0x52, 0x98, 0x62, 0x69, 0x84, 0xa0, 0x3c, 0xbc, 0x5f, 0x63, + 0x5f, 0xed, 0x7e, 0x15, 0x4e, 0xbf, 0xab, 0x7b, 0xfb, 0x2c, 0xfa, 0x4d, 0xa8, 0xc0, 0x49, 0x5b, + 0xba, 0xb7, 0x8f, 0xb2, 0x10, 0x27, 0x3a, 0xf5, 0xbf, 0x24, 0x2b, 0x2f, 0x4c, 0xde, 0x48, 0xa9, + 0x7e, 0x11, 0xcd, 0x03, 0x8b, 0x1e, 0x78, 0x91, 0x39, 0xe2, 0x49, 0x35, 0x44, 0x61, 0x72, 0x38, + 0xb0, 0xba, 0xda, 0xee, 0x01, 0xe1, 0x8e, 0x57, 0xc8, 0xe1, 0xc0, 0xea, 0x2e, 0xaf, 0x11, 0x35, + 0x4e, 0x2b, 0x97, 0x0f, 0x08, 0xba, 0x0e, 0xd3, 0x16, 0x3b, 0xc5, 0x69, 0xa6, 0xe5, 0x62, 0xc3, + 0x6b, 0x1f, 0x32, 0xa7, 0x2b, 0xab, 0x19, 0x4e, 0xae, 0x0a, 0x2a, 0xba, 0x09, 0xca, 0x68, 0xa8, + 0xc0, 0x9c, 0xa5, 0xac, 0x4e, 0x8f, 0x44, 0x0a, 0x94, 0x55, 0xd8, 0xf3, 0x81, 0xf3, 0x4f, 0x73, + 0x56, 0x4e, 0x1f, 0xf8, 0xfd, 0x22, 0xcc, 0x76, 0x75, 0x97, 0x60, 0xad, 0xd5, 0xb3, 0xcd, 0x36, + 0xd6, 0xb8, 0xbf, 0xc9, 0x66, 0x18, 0xf7, 0x0c, 0xab, 0x2a, 0xb3, 0x1a, 0xee, 0x9a, 0xce, 0x3b, + 0x3f, 0x5c, 0xfd, 0xff, 0x38, 0x3f, 0x6c, 0x42, 0x9c, 0x0f, 0x9b, 0x64, 0xaf, 0xb1, 0xed, 0xb1, + 0x38, 0xf6, 0xf6, 0xe0, 0xb3, 0xf2, 0x5d, 0xbf, 0x40, 0xa1, 0x51, 0x99, 0xf8, 0x0c, 0x09, 0x30, + 0xcb, 0xa3, 0x32, 0x51, 0x11, 0x48, 0x30, 0xf7, 0xf3, 0x08, 0x4c, 0xb1, 0x5d, 0x86, 0x6e, 0x43, + 0x94, 0x2a, 0x99, 0x38, 0x1b, 0x8f, 0x1b, 0xb5, 0xb2, 0x36, 0x08, 0x41, 0xd4, 0xd6, 0x3b, 0x38, + 0x8b, 0x98, 0x0a, 0xb2, 0x6f, 0x74, 0x0d, 0xe2, 0x04, 0x3f, 0xd0, 0x1e, 0xea, 0xed, 0xec, 0x2c, + 0xd3, 0xaf, 0x18, 0xc1, 0x0f, 0xee, 0xeb, 0x6d, 0x74, 0x05, 0x62, 0x16, 0xd1, 0x6c, 0xfc, 0x28, + 0x3b, 0xc7, 0x6d, 0x8e, 0x45, 0x36, 0xf0, 0x23, 0xe6, 0x7d, 0x74, 0x77, 0x0f, 0x7b, 0x9a, 0xe1, + 0xb4, 0x49, 0xf6, 0x0a, 0xdd, 0xde, 0x34, 0x28, 0xa6, 0xa4, 0x8a, 0xd3, 0x26, 0xe8, 0x6b, 0x90, + 0x78, 0xa4, 0x13, 0x0d, 0x77, 0xba, 0xde, 0x21, 0x5b, 0x2a, 0x99, 0x6e, 0x3a, 0x52, 0xa3, 0xe5, + 0x46, 0x54, 0x8e, 0x28, 0x93, 0x8d, 0xa8, 0x3c, 0xa9, 0x44, 0x1b, 0x51, 0x39, 0xaa, 0x4c, 0x35, + 0xa2, 0xf2, 0x94, 0x12, 0x6b, 0x44, 0xe5, 0x98, 0x12, 0x6f, 0x44, 0xe5, 0xb8, 0x22, 0x37, 0xa2, + 0xb2, 0xac, 0x24, 0x1a, 0x51, 0x39, 0xa1, 0x40, 0x23, 0x2a, 0x83, 0x92, 0x6c, 0x44, 0xe5, 0xa4, + 0x92, 0x6a, 0x44, 0xe5, 0x94, 0x92, 0x6e, 0x44, 0xe5, 0xb4, 0x92, 0x69, 0x44, 0xe5, 0x8c, 0x32, + 0xdd, 0x88, 0xca, 0xd3, 0x8a, 0xd2, 0x88, 0xca, 0x8a, 0x32, 0xd3, 0x88, 0xca, 0x33, 0x0a, 0xca, + 0xd5, 0x44, 0x32, 0x46, 0x47, 0xdf, 0x1b, 0x92, 0xd3, 0xd8, 0xb1, 0x10, 0x6b, 0x54, 0xf8, 0x85, + 0x04, 0x4a, 0x13, 0x3f, 0xe8, 0x61, 0xdb, 0xc0, 0xf7, 0xf5, 0x76, 0x65, 0xbf, 0x67, 0x1f, 0xa0, + 0x57, 0x61, 0xda, 0xa0, 0x1f, 0x1a, 0xcf, 0x50, 0x50, 0x89, 0x49, 0x4c, 0x62, 0x69, 0x46, 0x6e, + 0x52, 0x2a, 0x15, 0xdc, 0x4b, 0x00, 0x82, 0x8f, 0x9a, 0x27, 0x9e, 0xbd, 0x4c, 0x70, 0x16, 0x6a, + 0x93, 0x46, 0x60, 0x5c, 0xe7, 0x11, 0xb3, 0x81, 0x43, 0x30, 0xaa, 0xf3, 0x08, 0x2d, 0xc2, 0x9c, + 0x8d, 0x1f, 0x7b, 0xda, 0x28, 0x33, 0xb3, 0x77, 0xea, 0x0c, 0xad, 0xab, 0x84, 0x1b, 0x14, 0xfe, + 0x35, 0x02, 0xd3, 0xfe, 0xa0, 0x7d, 0x9b, 0xbe, 0x0b, 0x0a, 0x5d, 0x5d, 0xcb, 0xd4, 0x3c, 0x87, + 0x23, 0xf9, 0xd6, 0xfd, 0xbd, 0x33, 0xd4, 0x77, 0x04, 0x85, 0x96, 0xeb, 0xe6, 0xb6, 0xc3, 0xba, + 0xe3, 0x8e, 0x52, 0x4d, 0x93, 0x30, 0x2d, 0xb7, 0x03, 0x19, 0xbf, 0x11, 0xa7, 0xa0, 0x0a, 0xc4, + 0x86, 0xfa, 0xfb, 0xe6, 0x18, 0xfd, 0xf9, 0xa2, 0x56, 0x45, 0xd3, 0xdc, 0xef, 0x03, 0x3a, 0xde, + 0x77, 0xd8, 0x3d, 0x4e, 0x71, 0xf7, 0xb8, 0x39, 0xec, 0xa4, 0xdf, 0xb9, 0xd8, 0xdc, 0x42, 0xc3, + 0x0e, 0x1f, 0xaf, 0xff, 0x39, 0x02, 0x19, 0xbe, 0x91, 0x03, 0x9f, 0x4a, 0xf7, 0x2c, 0xb5, 0xbc, + 0x96, 0xbd, 0xa7, 0x75, 0x05, 0x91, 0xcd, 0x2f, 0xa2, 0x2a, 0x7e, 0x45, 0xc0, 0xfc, 0x0d, 0x48, + 0xbb, 0x58, 0x37, 0x07, 0x8c, 0x11, 0xc6, 0x98, 0xa2, 0xc4, 0x80, 0xe9, 0x15, 0xc8, 0xb0, 0xd8, + 0x60, 0xc0, 0x35, 0xc9, 0xb8, 0xd2, 0x8c, 0x1a, 0xb0, 0x95, 0x21, 0x4d, 0xba, 0xba, 0x3d, 0xe0, + 0x8a, 0x32, 0xa1, 0x9e, 0x93, 0x0c, 0x4c, 0xd1, 0x36, 0xe1, 0x80, 0xc0, 0xc5, 0xa4, 0xd7, 0xc1, + 0x5a, 0xd7, 0xe1, 0xa7, 0xde, 0x49, 0x35, 0xc1, 0x29, 0x5b, 0x0e, 0x41, 0x3b, 0x4c, 0x55, 0x98, + 0x2c, 0x34, 0x93, 0x0b, 0x27, 0x1b, 0x63, 0xbd, 0xdc, 0x1a, 0x5f, 0x9c, 0xea, 0x34, 0x19, 0x26, + 0x14, 0xfe, 0x4e, 0x82, 0x6b, 0xf4, 0xe4, 0xc2, 0x77, 0x5a, 0x85, 0xdd, 0x3b, 0xf8, 0xda, 0xa9, + 0x43, 0x9c, 0x9d, 0x7e, 0x82, 0x68, 0x7c, 0xf5, 0xa8, 0x9f, 0x8f, 0x51, 0xee, 0x4b, 0xbb, 0xdf, + 0x18, 0x05, 0xae, 0xb3, 0x73, 0xaa, 0xe7, 0xea, 0x36, 0xb1, 0xe8, 0x89, 0x8d, 0x2e, 0x5b, 0x07, + 0x77, 0x5a, 0xd8, 0xe5, 0x8b, 0x91, 0x52, 0xe7, 0x86, 0x2a, 0xd7, 0x79, 0x5d, 0x21, 0x07, 0xd9, + 0xd1, 0x21, 0x07, 0x29, 0x96, 0xdf, 0x81, 0xab, 0x1b, 0xf8, 0xd1, 0x49, 0xb3, 0x29, 0x43, 0x9c, + 0x9b, 0x41, 0x5f, 0xe5, 0x6f, 0x8c, 0x1a, 0x9d, 0xf0, 0xd5, 0x4b, 0x91, 0x8d, 0x74, 0x9b, 0x35, + 0x50, 0xfd, 0x86, 0x85, 0x4f, 0xe0, 0xda, 0x08, 0x7a, 0xb0, 0x7c, 0xef, 0x43, 0x8c, 0x1e, 0xc1, + 0x45, 0x78, 0x96, 0x39, 0x6e, 0xd2, 0x8e, 0xa3, 0x37, 0x29, 0xbf, 0x2a, 0x9a, 0x15, 0x54, 0x96, + 0x1b, 0xea, 0x75, 0x30, 0xd5, 0x90, 0xbb, 0x16, 0xf1, 0xd0, 0x07, 0x90, 0x12, 0x1a, 0x41, 0x15, + 0xc5, 0x1f, 0xf6, 0x39, 0x4a, 0x95, 0x74, 0x03, 0x10, 0x52, 0xf8, 0x7b, 0x09, 0x66, 0xab, 0xae, + 0xd3, 0xed, 0x62, 0x53, 0xb8, 0x1c, 0x2e, 0x0b, 0xdf, 0xd3, 0x48, 0x21, 0x4f, 0xb3, 0x01, 0x91, + 0x7a, 0x55, 0x9c, 0x8c, 0xee, 0x5c, 0xf6, 0xc0, 0x55, 0xaf, 0xa2, 0x77, 0xb8, 0x40, 0x7a, 0x84, + 0xd9, 0xcf, 0xcc, 0xb1, 0xd3, 0xf7, 0x90, 0x9a, 0x32, 0x46, 0x55, 0x34, 0x28, 0xfc, 0x2c, 0x0e, + 0x57, 0xc2, 0x42, 0x5e, 0xa9, 0xf8, 0x03, 0xff, 0x14, 0xe2, 0x96, 0x6d, 0xe2, 0xc7, 0x78, 0x2c, + 0x3b, 0x79, 0x12, 0x44, 0x51, 0xc8, 0xa3, 0x4e, 0x61, 0x7c, 0xa7, 0x2f, 0x30, 0xd1, 0x47, 0x41, + 0x8c, 0xcd, 0xf3, 0x6f, 0xb7, 0x9f, 0x1b, 0xbd, 0x3a, 0x12, 0x6f, 0x0f, 0x85, 0xb3, 0xcc, 0xa1, + 0x7c, 0x45, 0xe1, 0x6c, 0x13, 0x66, 0x2c, 0xdb, 0xc3, 0x6e, 0x1b, 0xeb, 0x0f, 0x69, 0x74, 0x46, + 0xbb, 0x17, 0x69, 0xb8, 0x71, 0xa3, 0x11, 0x25, 0x04, 0xc0, 0xa3, 0x9a, 0x4f, 0x61, 0x36, 0x0c, + 0xea, 0x2f, 0xc1, 0xd9, 0xa9, 0x39, 0x26, 0xe1, 0x01, 0xac, 0x9f, 0x01, 0x0b, 0x01, 0xd5, 0x85, + 0xd8, 0xef, 0x43, 0x8c, 0x67, 0x5c, 0x44, 0x9e, 0xfb, 0xce, 0xf3, 0x8a, 0x9d, 0x67, 0x72, 0x54, + 0x81, 0x96, 0xfb, 0x73, 0x09, 0x52, 0xe1, 0xe5, 0x46, 0x16, 0xc8, 0x6c, 0xec, 0xbe, 0x49, 0x9b, + 0x2c, 0x6f, 0xd0, 0x80, 0x9c, 0x55, 0xb2, 0x35, 0x78, 0xff, 0xb9, 0xd7, 0x80, 0x43, 0x08, 0x55, + 0xaa, 0x9b, 0x34, 0xce, 0x32, 0x5d, 0xa7, 0x3b, 0xb8, 0xe7, 0x98, 0x54, 0x65, 0x4a, 0xa0, 0x81, + 0x6b, 0xee, 0x0f, 0x20, 0x11, 0x28, 0x4a, 0x28, 0xdf, 0x31, 0xf9, 0x25, 0xe6, 0x3b, 0xce, 0xec, + 0xbf, 0x0a, 0xe9, 0x21, 0x89, 0xa1, 0xab, 0xc1, 0x18, 0xa2, 0xe5, 0x18, 0x1f, 0xc3, 0xb9, 0x28, + 0x85, 0x5f, 0xc7, 0x60, 0xf6, 0x24, 0x4b, 0xfb, 0x31, 0x28, 0x21, 0xbb, 0xa5, 0xb5, 0x2d, 0xe2, + 0x89, 0xfd, 0x74, 0xf3, 0xec, 0xe3, 0x79, 0xc8, 0xf8, 0x09, 0x6d, 0xc9, 0xb8, 0xc3, 0x26, 0xf1, + 0xfb, 0x90, 0x31, 0xf9, 0xc0, 0x45, 0xb6, 0x4a, 0xdc, 0x56, 0x9e, 0x75, 0x18, 0x3e, 0xc1, 0x00, + 0x0a, 0xf4, 0xb4, 0x19, 0xaa, 0x22, 0xec, 0x02, 0xc8, 0x47, 0x0f, 0x92, 0x6c, 0x96, 0xc9, 0x76, + 0x4f, 0xba, 0xdc, 0x3c, 0xea, 0xe7, 0x67, 0x04, 0x96, 0x9f, 0x55, 0xbb, 0xf4, 0x4a, 0xcd, 0x98, + 0x23, 0x80, 0x26, 0xf5, 0xba, 0xb4, 0x9e, 0x76, 0x3c, 0x35, 0xf0, 0xba, 0x74, 0x1f, 0x5d, 0xde, + 0xeb, 0xd2, 0xcf, 0xba, 0x89, 0xfe, 0x44, 0x82, 0x19, 0x9e, 0x62, 0xef, 0xf4, 0x3c, 0x9d, 0xdf, + 0x9b, 0xf8, 0x87, 0xec, 0x8f, 0x8f, 0xfa, 0xf9, 0x69, 0x26, 0x90, 0x75, 0x51, 0xc7, 0xba, 0x2d, + 0x3f, 0x6f, 0xb7, 0x03, 0x14, 0x71, 0xf0, 0x0c, 0x08, 0x26, 0x5a, 0x83, 0x0c, 0xcf, 0x18, 0xf8, + 0x0f, 0x18, 0xd8, 0xe9, 0x3b, 0x5d, 0x7e, 0xf9, 0x59, 0x3f, 0xbf, 0x70, 0x82, 0x66, 0xf1, 0x64, + 0xc3, 0x7d, 0xce, 0xab, 0xa6, 0x77, 0xc3, 0x45, 0x64, 0x40, 0x3a, 0x50, 0x8d, 0xc3, 0xae, 0x38, + 0xac, 0x5f, 0xde, 0x95, 0xa5, 0x7c, 0x1d, 0xa1, 0x98, 0x68, 0x0f, 0xa6, 0xfd, 0x4e, 0xfc, 0xe3, + 0x66, 0xe2, 0x4b, 0xe9, 0xc6, 0x57, 0x6b, 0x3e, 0x6b, 0x22, 0xf2, 0x46, 0x57, 0x61, 0xee, 0xc4, + 0x28, 0xe7, 0xf3, 0x18, 0x5c, 0x1d, 0x36, 0x84, 0x41, 0x1c, 0xa2, 0x8d, 0x7a, 0xc8, 0xf7, 0xc7, + 0x36, 0xa6, 0x3e, 0x06, 0x37, 0x66, 0x7e, 0x69, 0xd4, 0x47, 0x7e, 0x3a, 0xe2, 0x23, 0x9f, 0x03, + 0x9f, 0xa9, 0xd7, 0x08, 0xbe, 0xef, 0x28, 0x3f, 0x0a, 0x7c, 0x01, 0x4f, 0x3d, 0x7d, 0xf0, 0x1c, + 0xf0, 0xac, 0xbd, 0x5f, 0x0c, 0xbc, 0xc1, 0xbf, 0x48, 0x90, 0x1e, 0x9a, 0xd9, 0x6f, 0xd3, 0x1d, + 0x6c, 0x05, 0xd1, 0x10, 0x7f, 0xe6, 0xf2, 0xf6, 0xc5, 0xa7, 0x35, 0x1c, 0x24, 0xe5, 0xfe, 0x41, + 0x82, 0xf4, 0x90, 0x20, 0xbf, 0x22, 0x47, 0xf2, 0xe5, 0x8f, 0xbc, 0x05, 0x99, 0xe1, 0x25, 0x0a, + 0xf5, 0x21, 0x7d, 0x39, 0x7d, 0x14, 0xbe, 0x0b, 0x31, 0x4e, 0x41, 0x08, 0x32, 0x1f, 0x96, 0xea, + 0xdb, 0xf5, 0x8d, 0x15, 0x6d, 0x79, 0x53, 0xd5, 0x56, 0x2a, 0xca, 0x04, 0x4a, 0x81, 0x5c, 0xad, + 0xdd, 0xad, 0x51, 0xa2, 0x22, 0xa1, 0x24, 0xc4, 0x59, 0xa9, 0x56, 0x55, 0x22, 0x85, 0x32, 0x28, + 0x1c, 0x7b, 0x17, 0x53, 0xc7, 0x40, 0xe3, 0x7e, 0x54, 0x84, 0x59, 0x16, 0xa4, 0x77, 0x68, 0xfc, + 0x46, 0x5d, 0xa1, 0x16, 0x8a, 0x9e, 0x67, 0x82, 0x2a, 0xea, 0x14, 0x37, 0xf4, 0x0e, 0x2e, 0xfc, + 0x32, 0x0a, 0x33, 0x03, 0x10, 0xdf, 0x2d, 0xbe, 0x0a, 0x32, 0xb1, 0xec, 0x03, 0x6d, 0xf0, 0x7a, + 0x81, 0x67, 0x03, 0x2d, 0xfb, 0x60, 0x47, 0xad, 0xab, 0x71, 0x5a, 0xb9, 0xe3, 0x5a, 0xa8, 0x01, + 0x51, 0xa7, 0xeb, 0xf9, 0x67, 0xc8, 0xb7, 0xce, 0x10, 0xc5, 0xb1, 0x3e, 0x8a, 0x9b, 0x5d, 0x4f, + 0x64, 0x00, 0x18, 0x06, 0xfa, 0x5b, 0x69, 0x70, 0xea, 0xe1, 0xa7, 0xc5, 0x77, 0x2e, 0x84, 0xc7, + 0x05, 0x20, 0xae, 0x92, 0x3f, 0xa4, 0x1b, 0xf5, 0x59, 0x3f, 0x3f, 0x33, 0x2a, 0x20, 0x72, 0xc9, + 0x3b, 0x66, 0x7f, 0x88, 0xa8, 0xc1, 0x6f, 0x37, 0x07, 0x82, 0x66, 0x0e, 0x61, 0xcc, 0x0b, 0xe4, + 0xf4, 0xd0, 0x42, 0xe4, 0xf6, 0x20, 0x15, 0x1e, 0xfd, 0x09, 0x77, 0x07, 0xa5, 0xe1, 0xb4, 0xc4, + 0x37, 0xc7, 0x92, 0x8c, 0x38, 0x12, 0x86, 0xee, 0x0a, 0xbe, 0x0b, 0x89, 0x40, 0xec, 0x17, 0xb9, + 0xe9, 0xe0, 0x36, 0x3e, 0xc8, 0xb9, 0x4d, 0x29, 0xb1, 0x42, 0x3f, 0x02, 0x29, 0x15, 0x13, 0xa7, + 0xfd, 0x10, 0x9b, 0x34, 0xe6, 0x09, 0x1e, 0x17, 0x49, 0xe3, 0x3f, 0x2e, 0x2a, 0x41, 0x22, 0x48, + 0xc9, 0x5e, 0xe4, 0x81, 0xcd, 0xa0, 0x15, 0xba, 0x03, 0x5f, 0x0b, 0xbf, 0xa3, 0x71, 0x7a, 0xb6, + 0xa9, 0xbb, 0x87, 0x9a, 0x8b, 0x75, 0x63, 0x1f, 0x9b, 0xe2, 0x4a, 0xeb, 0x85, 0xd0, 0x43, 0x1a, + 0xc1, 0xa1, 0x72, 0x06, 0xf4, 0x31, 0xa4, 0x83, 0x46, 0xd4, 0x17, 0xb3, 0x08, 0x2a, 0xb3, 0xf4, + 0xed, 0xb3, 0xa3, 0xbf, 0x60, 0xd6, 0x45, 0x1f, 0x8f, 0xfa, 0x5c, 0x35, 0xd5, 0x0a, 0x95, 0x0a, + 0xef, 0x41, 0x2a, 0x5c, 0x8b, 0x64, 0x88, 0x6e, 0x6c, 0x6e, 0xd4, 0xf8, 0x9e, 0x2e, 0x97, 0x2a, + 0x6b, 0xcb, 0xf5, 0xbb, 0x77, 0x15, 0x89, 0xd2, 0x6b, 0x1f, 0xd5, 0xb7, 0x95, 0x08, 0xdd, 0xdd, + 0x6a, 0xad, 0xb9, 0x5d, 0x52, 0xb7, 0x95, 0xc9, 0x02, 0x86, 0x74, 0xb8, 0x27, 0x6a, 0x33, 0x69, + 0x88, 0xc9, 0x08, 0x43, 0xa7, 0xec, 0xeb, 0x63, 0x8e, 0xd5, 0xd7, 0x3d, 0x37, 0x8c, 0x5a, 0xf8, + 0x71, 0x04, 0xd0, 0x40, 0x65, 0x42, 0x06, 0x7a, 0xb4, 0xb3, 0xc8, 0xe5, 0x3b, 0x43, 0x3f, 0x39, + 0x3b, 0x1d, 0x3f, 0xc9, 0xd2, 0xf1, 0x6c, 0xef, 0xfe, 0x56, 0x53, 0xf2, 0x22, 0x84, 0xf9, 0xef, + 0x28, 0xa0, 0x8a, 0x8b, 0x75, 0x0f, 0x53, 0x7b, 0x4c, 0xce, 0xca, 0x40, 0x94, 0x61, 0x8a, 0x1f, + 0x57, 0x23, 0x17, 0x39, 0xae, 0x0a, 0xa1, 0xf0, 0xa6, 0xe8, 0x07, 0x90, 0x32, 0x9c, 0x76, 0xaf, + 0x63, 0x6b, 0xec, 0x41, 0x84, 0x38, 0x1e, 0x7c, 0xe7, 0xac, 0xad, 0x7d, 0x6c, 0x70, 0xc5, 0x8a, + 0xd3, 0xa6, 0xe5, 0xe0, 0x4d, 0x1c, 0x03, 0x64, 0x1c, 0xe8, 0x45, 0x48, 0x04, 0x66, 0x86, 0xa9, + 0x75, 0x42, 0x1d, 0x10, 0xd0, 0x12, 0x4c, 0xe9, 0x44, 0x73, 0x76, 0x59, 0xe4, 0x7e, 0xde, 0xbe, + 0x53, 0xa3, 0x3a, 0xd9, 0xdc, 0x45, 0x6f, 0x42, 0x7a, 0xf7, 0x01, 0x3f, 0xcd, 0x70, 0xb7, 0xc2, + 0xdf, 0xa9, 0x4c, 0x1f, 0xf5, 0xf3, 0xc9, 0xe5, 0x7b, 0x6c, 0xb2, 0xd4, 0xa9, 0xa8, 0xc9, 0xdd, + 0x07, 0x41, 0x01, 0xdd, 0x82, 0x99, 0x8e, 0xfe, 0x58, 0xdb, 0x75, 0x75, 0x43, 0x84, 0xef, 0x6d, + 0x6e, 0x2b, 0x25, 0x75, 0xba, 0xa3, 0x3f, 0x5e, 0x16, 0xf4, 0xba, 0xd9, 0xc6, 0xb9, 0xff, 0x92, + 0x20, 0x2e, 0x66, 0x84, 0xba, 0x00, 0x42, 0x3c, 0x96, 0xc9, 0x55, 0x3d, 0x5d, 0xbe, 0x77, 0xd4, + 0xcf, 0x27, 0x2a, 0x8c, 0x5a, 0xaf, 0x92, 0x67, 0xfd, 0xfc, 0x07, 0xcf, 0x6b, 0xca, 0x7d, 0x10, + 0x35, 0xc1, 0x3b, 0xa9, 0x9b, 0x2c, 0xcd, 0xba, 0xaf, 0x13, 0x6d, 0xdf, 0x22, 0x9e, 0xb3, 0xe7, + 0xea, 0x1d, 0x71, 0x45, 0x9a, 0xda, 0xd7, 0xc9, 0xaa, 0x4f, 0x43, 0x39, 0x1a, 0x88, 0x3d, 0xe4, + 0xef, 0x59, 0xb8, 0x75, 0x09, 0xca, 0x68, 0x09, 0xae, 0x04, 0x8d, 0x35, 0x3a, 0xe9, 0x56, 0xcf, + 0x38, 0xc0, 0xcc, 0x3f, 0x52, 0x4b, 0x3e, 0x1b, 0x54, 0xae, 0xeb, 0x8f, 0xcb, 0xbc, 0xaa, 0x70, + 0x05, 0x66, 0x43, 0xcb, 0x1a, 0x84, 0xcd, 0x18, 0x94, 0x75, 0x6b, 0xcf, 0xd5, 0xc3, 0xaf, 0x3c, + 0xef, 0xc1, 0xf4, 0xc8, 0x2b, 0x6a, 0x61, 0x6c, 0xc3, 0xe9, 0xc1, 0xe1, 0x67, 0xd7, 0xc5, 0x0a, + 0x2f, 0xfa, 0x07, 0x91, 0x8c, 0x31, 0x54, 0x2e, 0xcc, 0xc2, 0x4c, 0xd0, 0x4d, 0xd0, 0xf7, 0x6f, + 0x52, 0x10, 0xdf, 0xd2, 0x0f, 0xdb, 0x8e, 0x6e, 0xa2, 0x05, 0x48, 0xfa, 0x6f, 0x60, 0xfc, 0xfe, + 0x12, 0x6a, 0x98, 0x84, 0x2c, 0xc8, 0xf4, 0x08, 0x76, 0xa9, 0x3e, 0x68, 0xec, 0x51, 0x37, 0xf7, + 0x1e, 0xe5, 0xf2, 0xb3, 0x7e, 0xfe, 0xce, 0x78, 0xcb, 0x83, 0x8d, 0x9e, 0x6b, 0x79, 0x87, 0xc5, + 0xe6, 0xbd, 0xbb, 0x3b, 0x02, 0x8a, 0x6e, 0x62, 0x47, 0x4d, 0xf7, 0xc2, 0x45, 0xf1, 0xa2, 0x88, + 0x8a, 0x5a, 0xeb, 0x58, 0x86, 0xeb, 0x10, 0xff, 0xbe, 0x43, 0x50, 0xd7, 0x19, 0x11, 0x5d, 0x87, + 0xe9, 0x5d, 0xcb, 0x66, 0xd7, 0x5d, 0x3e, 0x1f, 0xbf, 0xea, 0xc8, 0xf8, 0x64, 0xc1, 0xf8, 0x10, + 0x32, 0xa1, 0x57, 0x44, 0x54, 0xcd, 0x62, 0x4c, 0xcd, 0x36, 0x8f, 0xfa, 0xf9, 0xf4, 0x60, 0xdb, + 0x72, 0x55, 0xbb, 0x4c, 0xd4, 0x90, 0x1e, 0x74, 0x43, 0x15, 0x6d, 0x0e, 0xa6, 0xd8, 0x93, 0x7f, + 0xfe, 0x70, 0x50, 0xe5, 0x05, 0xf4, 0x16, 0x4c, 0xb5, 0xb1, 0x4e, 0xb0, 0x78, 0x13, 0xb8, 0x70, + 0x86, 0x21, 0x60, 0x6f, 0xe6, 0x55, 0xce, 0x8e, 0xca, 0x10, 0xe3, 0x57, 0xc0, 0xec, 0xe2, 0xf6, + 0x78, 0xb2, 0xf8, 0xd4, 0xe7, 0x9f, 0xab, 0x13, 0xaa, 0x68, 0x89, 0x6a, 0x10, 0x17, 0x6f, 0x69, + 0xd8, 0x75, 0xee, 0xb9, 0xe9, 0x8f, 0xd0, 0xeb, 0x84, 0xd5, 0x09, 0xd5, 0x6f, 0x8b, 0xb6, 0xfd, + 0xe7, 0x43, 0xdc, 0xa3, 0x88, 0xd7, 0x51, 0xc5, 0x31, 0x43, 0xe4, 0x01, 0xe0, 0x10, 0x0a, 0x9d, + 0xa0, 0xc5, 0x6e, 0x4f, 0xd8, 0xad, 0xf0, 0xd9, 0x13, 0x1c, 0xba, 0x2f, 0xa5, 0x13, 0xe4, 0x2d, + 0xd1, 0x06, 0x80, 0x11, 0x78, 0x39, 0x76, 0x5f, 0x9c, 0x5c, 0x7a, 0xed, 0x22, 0xf1, 0xe5, 0xea, + 0x84, 0x1a, 0x42, 0x40, 0xf7, 0x20, 0x69, 0x0c, 0xb6, 0x6d, 0x76, 0x9a, 0x01, 0xbe, 0x7e, 0x21, + 0xdb, 0xbd, 0x4a, 0xed, 0xf5, 0x80, 0x3a, 0x6c, 0xaf, 0x95, 0x51, 0x7b, 0x5d, 0x83, 0xb4, 0xc8, + 0x54, 0xf1, 0x5f, 0x8b, 0x88, 0x27, 0x4f, 0x61, 0x2d, 0xf1, 0x7f, 0x4f, 0x52, 0xac, 0xd9, 0x86, + 0x63, 0x62, 0xb3, 0x46, 0xcb, 0xaa, 0x48, 0xcc, 0xb3, 0x02, 0x41, 0x2b, 0x90, 0x31, 0xda, 0x58, + 0xb7, 0x7b, 0x5d, 0x1f, 0x07, 0x8d, 0x89, 0x93, 0x16, 0xed, 0x04, 0xd0, 0x06, 0xa0, 0x5d, 0xf6, + 0xee, 0x27, 0x3c, 0x2a, 0x76, 0xf1, 0x3b, 0x0e, 0x98, 0xc2, 0xda, 0xaa, 0x83, 0x91, 0xa1, 0x97, + 0x21, 0x6d, 0x3b, 0xb6, 0xa1, 0xdb, 0x06, 0x6e, 0x33, 0xcf, 0xca, 0xef, 0x8a, 0x87, 0x89, 0xe8, + 0x13, 0xc8, 0x90, 0xa1, 0x43, 0x55, 0xf6, 0x0a, 0xeb, 0xf1, 0x8d, 0x8b, 0xa6, 0x61, 0x57, 0x27, + 0xd4, 0x11, 0x24, 0xf4, 0xbb, 0xa0, 0x78, 0x23, 0x77, 0x35, 0xec, 0xd6, 0xf9, 0xec, 0xe7, 0x7d, + 0xa7, 0xdc, 0x48, 0xad, 0x4e, 0xa8, 0xc7, 0xd0, 0xd0, 0xa7, 0x30, 0x4d, 0x86, 0x1f, 0xc2, 0x67, + 0xaf, 0xb1, 0x0e, 0xbe, 0x75, 0xe6, 0x85, 0xc3, 0x49, 0x4f, 0xfe, 0x57, 0x27, 0xd4, 0x51, 0x2c, + 0x0a, 0x6f, 0x0f, 0x5f, 0xf9, 0xb0, 0x57, 0x00, 0x67, 0xc3, 0x9f, 0x7c, 0x05, 0x45, 0xe1, 0x47, + 0xb0, 0xd0, 0x1a, 0x24, 0x3a, 0xbe, 0xaf, 0xc8, 0xbe, 0x70, 0xee, 0x39, 0x64, 0xd4, 0x7d, 0xad, + 0x4e, 0xa8, 0x83, 0xf6, 0xe5, 0x04, 0xc4, 0xc5, 0xd5, 0x60, 0x70, 0x6f, 0x1f, 0x57, 0xe4, 0xc2, + 0x6f, 0x64, 0x90, 0x83, 0x18, 0x74, 0x11, 0x50, 0x10, 0x35, 0x0c, 0x9e, 0x9b, 0x52, 0x17, 0x14, + 0x59, 0x9d, 0x50, 0x67, 0xfc, 0xba, 0xc1, 0x8b, 0xd3, 0xeb, 0x30, 0xdd, 0x71, 0x4c, 0x6b, 0xd7, + 0x1a, 0x18, 0x7e, 0x9e, 0x08, 0xce, 0xf8, 0x64, 0x61, 0xf8, 0xef, 0x0c, 0xbd, 0x68, 0x1a, 0xe7, + 0x57, 0x0d, 0x74, 0xf4, 0xc1, 0x93, 0x27, 0xea, 0x88, 0xdc, 0x9e, 0xcd, 0x6e, 0x01, 0x45, 0x32, + 0x80, 0xc7, 0x57, 0x69, 0x41, 0x15, 0xe7, 0xf9, 0xca, 0x88, 0x65, 0xbe, 0x79, 0xae, 0x65, 0xf6, + 0xe7, 0xbe, 0x2a, 0x05, 0xa6, 0x79, 0x79, 0xd4, 0x34, 0xdf, 0x3a, 0xdf, 0x34, 0x87, 0x60, 0x02, + 0xdb, 0xbc, 0x73, 0xa2, 0x6d, 0x5e, 0x1c, 0x73, 0xe3, 0x84, 0x10, 0x87, 0x8d, 0x73, 0x65, 0xc4, + 0x38, 0xdf, 0x3c, 0xd7, 0x38, 0x87, 0xe7, 0x28, 0xac, 0xf3, 0xe6, 0x09, 0xd6, 0xf9, 0xf5, 0xb1, + 0xac, 0x73, 0x08, 0x2c, 0x6c, 0x9e, 0xd5, 0x93, 0xcc, 0x73, 0x71, 0x3c, 0xf3, 0x1c, 0x82, 0x1c, + 0xb2, 0xcf, 0xdf, 0x3f, 0x66, 0x7b, 0x94, 0xf3, 0x37, 0xef, 0x89, 0x19, 0xa0, 0x55, 0xe9, 0x98, + 0xf1, 0xd1, 0x4f, 0x30, 0x3e, 0x33, 0x0c, 0xfe, 0xcd, 0x0b, 0x18, 0x9f, 0x50, 0x07, 0xc7, 0xad, + 0xcf, 0x47, 0x90, 0x0a, 0x5b, 0x0c, 0xf6, 0x76, 0xe7, 0x6c, 0xdb, 0x76, 0xca, 0xaf, 0x76, 0x98, + 0x0e, 0x84, 0xaa, 0xd0, 0x0f, 0x8e, 0x1b, 0x9e, 0xd9, 0x73, 0xc1, 0x4f, 0xb9, 0x9d, 0x5e, 0x95, + 0x8e, 0x5b, 0x9e, 0xbb, 0x61, 0xcb, 0x33, 0x77, 0xae, 0xef, 0x3e, 0x16, 0xd1, 0xae, 0x4a, 0x61, + 0xd3, 0x03, 0x20, 0xfb, 0x8f, 0x1f, 0x42, 0x66, 0xa8, 0xf0, 0x53, 0x09, 0x26, 0x1b, 0x4e, 0x0b, + 0xbd, 0x14, 0x4a, 0x4d, 0xa6, 0xc5, 0x51, 0x74, 0xaa, 0xe1, 0xb4, 0x44, 0x8e, 0xf1, 0xfd, 0x41, + 0x6b, 0x71, 0xf8, 0xfb, 0xc6, 0x19, 0x43, 0x09, 0x32, 0xbb, 0x41, 0x23, 0xf4, 0x2e, 0xc4, 0xbb, + 0x3c, 0xb8, 0x16, 0x86, 0xa7, 0x70, 0x56, 0x7b, 0xce, 0xa9, 0xfa, 0x4d, 0x6e, 0xdd, 0x0c, 0xff, + 0x0c, 0x6f, 0xdd, 0x31, 0x31, 0xca, 0x00, 0x6c, 0xe9, 0x84, 0x74, 0xf7, 0x5d, 0x9d, 0x60, 0x65, + 0x02, 0xc5, 0x61, 0x72, 0x6d, 0xbd, 0xa9, 0x48, 0xb7, 0x3e, 0x0a, 0xe7, 0x15, 0xab, 0x6a, 0xa9, + 0xbe, 0x51, 0xdf, 0x58, 0xd1, 0x36, 0x4a, 0xeb, 0xb5, 0xa6, 0x32, 0x81, 0xb2, 0x30, 0xf7, 0x61, + 0xa9, 0xbe, 0x2d, 0x12, 0x8d, 0x5a, 0x7d, 0x63, 0xbb, 0xa6, 0xde, 0x2f, 0xdd, 0x55, 0x24, 0x74, + 0x15, 0x90, 0xba, 0x59, 0x59, 0x6b, 0x56, 0xcb, 0x5a, 0x65, 0x73, 0x7d, 0xab, 0x54, 0xd9, 0xae, + 0x6f, 0x6e, 0x28, 0x11, 0x24, 0x43, 0xb4, 0xba, 0xb9, 0x51, 0x53, 0xe0, 0xd6, 0x4f, 0xa2, 0x10, + 0x65, 0x29, 0x8d, 0x97, 0x21, 0xb9, 0xb3, 0xd1, 0xdc, 0xaa, 0x55, 0xea, 0xcb, 0xf5, 0x5a, 0x55, + 0x99, 0xc8, 0xcd, 0x3e, 0x79, 0xba, 0x30, 0x4d, 0xab, 0x76, 0x6c, 0xd2, 0xc5, 0x06, 0xb3, 0xb9, + 0x28, 0x07, 0xb1, 0x72, 0xa9, 0xb2, 0xb6, 0xb3, 0xa5, 0x48, 0xb9, 0xcc, 0x93, 0xa7, 0x0b, 0x40, + 0x19, 0xb8, 0xbd, 0x43, 0x2f, 0xf2, 0x94, 0xc7, 0xa6, 0x5a, 0x53, 0x22, 0xb9, 0xe9, 0x27, 0x4f, + 0x17, 0x92, 0x2c, 0x93, 0x22, 0x6c, 0xd6, 0x75, 0x48, 0x37, 0x2b, 0xab, 0xb5, 0xf5, 0x92, 0x56, + 0x59, 0x2d, 0x6d, 0xac, 0xd4, 0x94, 0xc9, 0xdc, 0xdc, 0x93, 0xa7, 0x0b, 0xca, 0xa8, 0xde, 0xd3, + 0x2e, 0xea, 0xeb, 0x5b, 0x9b, 0xea, 0xb6, 0x12, 0x1d, 0x74, 0xc1, 0xcd, 0x0d, 0x2a, 0x00, 0xf0, + 0xd6, 0xcb, 0xb5, 0x5a, 0x55, 0x99, 0xca, 0xa1, 0x27, 0x4f, 0x17, 0x32, 0xb4, 0x7e, 0x60, 0x45, + 0xd0, 0x2b, 0x90, 0xaa, 0xa8, 0xb5, 0xd2, 0x76, 0x4d, 0x6b, 0x6e, 0x97, 0xb6, 0x9b, 0x4a, 0x6c, + 0x30, 0x93, 0x90, 0x65, 0x40, 0x45, 0x98, 0x29, 0xed, 0x6c, 0x6f, 0x6a, 0x43, 0xbc, 0xf1, 0xdc, + 0xb5, 0x27, 0x4f, 0x17, 0x66, 0x29, 0x6f, 0xa9, 0xe7, 0x39, 0x61, 0xfe, 0xd7, 0x40, 0x19, 0x1a, + 0xbf, 0xb6, 0x52, 0x51, 0xe4, 0xdc, 0xd5, 0x27, 0x4f, 0x17, 0xd0, 0xe8, 0x14, 0x56, 0x2a, 0xe8, + 0xdb, 0x70, 0x75, 0xfb, 0xe3, 0xad, 0x5a, 0xb5, 0xd6, 0xac, 0x68, 0xc3, 0xd3, 0x4e, 0xe4, 0xb2, + 0x4f, 0x9e, 0x2e, 0xcc, 0xd1, 0x36, 0xc7, 0xa6, 0xfe, 0x3a, 0x28, 0xcd, 0x6d, 0xb5, 0x56, 0x5a, + 0xd7, 0xea, 0x1b, 0x2b, 0xb5, 0x26, 0x5b, 0x2c, 0x18, 0x0c, 0x69, 0x64, 0x0f, 0xd3, 0x29, 0x6c, + 0xd4, 0x3e, 0x1c, 0xc1, 0x4f, 0x0e, 0xf8, 0x47, 0xb6, 0x25, 0x5a, 0x80, 0xc4, 0x7a, 0x7d, 0x45, + 0x2d, 0x31, 0xdc, 0x54, 0x6e, 0xe6, 0xc9, 0xd3, 0x85, 0x34, 0xe5, 0x0b, 0x36, 0x59, 0x4e, 0xfe, + 0xf1, 0x4f, 0xe7, 0x27, 0xfe, 0xe6, 0x67, 0xf3, 0x13, 0xe5, 0x1b, 0x9f, 0xfd, 0xc7, 0xfc, 0xc4, + 0x67, 0x47, 0xf3, 0xd2, 0xaf, 0x8e, 0xe6, 0xa5, 0xcf, 0x8f, 0xe6, 0xa5, 0x7f, 0x3f, 0x9a, 0x97, + 0xfe, 0xf4, 0x8b, 0xf9, 0x89, 0x5f, 0x7d, 0x31, 0x3f, 0xf1, 0xf9, 0x17, 0xf3, 0x13, 0x9f, 0xc4, + 0xb8, 0x5e, 0xb7, 0x62, 0xec, 0xa4, 0xf8, 0xe6, 0xff, 0x05, 0x00, 0x00, 0xff, 0xff, 0xdb, 0x69, + 0x8c, 0xae, 0x37, 0x3d, 0x00, 0x00, } diff --git a/pkg/jobs/jobspb/jobs.proto b/pkg/jobs/jobspb/jobs.proto index c6ba35244886..2273ebf722d1 100644 --- a/pkg/jobs/jobspb/jobs.proto +++ b/pkg/jobs/jobspb/jobs.proto @@ -82,7 +82,7 @@ message EncryptionInfo { message StreamIngestionDetails { // StreamAddress locates the stream. It enables the client to find the // addresses of the stream's partitions. - string stream_address = 1 [(gogoproto.casttype) = "github.com/cockroachdb/cockroach/pkg/ccl/streamingccl.StreamAddress"]; + string stream_address = 1; // Span is the keyspan into which this job will ingest KVs. // // The stream should emit all changes for a given span, and no changes outside diff --git a/pkg/sql/BUILD.bazel b/pkg/sql/BUILD.bazel index 318cfc34894f..f9ec4b08ebd7 100644 --- a/pkg/sql/BUILD.bazel +++ b/pkg/sql/BUILD.bazel @@ -232,7 +232,6 @@ go_library( deps = [ "//pkg/base", "//pkg/build", - "//pkg/ccl/streamingccl", "//pkg/clusterversion", "//pkg/config", "//pkg/config/zonepb", diff --git a/pkg/sql/exec_util.go b/pkg/sql/exec_util.go index b23e425f8c2b..bef57301ce92 100644 --- a/pkg/sql/exec_util.go +++ b/pkg/sql/exec_util.go @@ -24,7 +24,6 @@ import ( "github.com/cockroachdb/apd/v2" "github.com/cockroachdb/cockroach/pkg/base" - "github.com/cockroachdb/cockroach/pkg/ccl/streamingccl" "github.com/cockroachdb/cockroach/pkg/clusterversion" "github.com/cockroachdb/cockroach/pkg/config" "github.com/cockroachdb/cockroach/pkg/config/zonepb" @@ -1011,16 +1010,6 @@ var _ base.ModuleTestingKnobs = &BackupRestoreTestingKnobs{} // ModuleTestingKnobs implements the base.ModuleTestingKnobs interface. func (*BackupRestoreTestingKnobs) ModuleTestingKnobs() {} -// StreamIngestionTestingKnobs contains knobs for stream ingestion behavior. -type StreamIngestionTestingKnobs struct { - Interceptors []func(event streamingccl.Event, pa streamingccl.PartitionAddress) -} - -var _ base.ModuleTestingKnobs = &StreamIngestionTestingKnobs{} - -// ModuleTestingKnobs implements the base.ModuleTestingKnobs interface. -func (*StreamIngestionTestingKnobs) ModuleTestingKnobs() {} - func shouldDistributeGivenRecAndMode( rec distRecommendation, mode sessiondata.DistSQLExecMode, ) bool { diff --git a/pkg/sql/execinfra/server_config.go b/pkg/sql/execinfra/server_config.go index 68ead1dad49b..be9314ff3552 100644 --- a/pkg/sql/execinfra/server_config.go +++ b/pkg/sql/execinfra/server_config.go @@ -235,9 +235,6 @@ type TestingKnobs struct { // BackupRestoreTestingKnobs are backup and restore specific testing knobs. BackupRestoreTestingKnobs base.ModuleTestingKnobs - - // BackupRestoreTestingKnobs are stream ingestion specific testing knobs. - StreamIngestionTestingKnobs base.ModuleTestingKnobs } // MetadataTestLevel represents the types of queries where metadata test diff --git a/pkg/sql/execinfrapb/BUILD.bazel b/pkg/sql/execinfrapb/BUILD.bazel index 24bfaeaee463..855f845b644b 100644 --- a/pkg/sql/execinfrapb/BUILD.bazel +++ b/pkg/sql/execinfrapb/BUILD.bazel @@ -118,7 +118,6 @@ go_proto_library( proto = ":execinfrapb_proto", visibility = ["//visibility:public"], deps = [ - "//pkg/ccl/streamingccl", # keep "//pkg/jobs/jobspb", "//pkg/roachpb", "//pkg/sql/catalog/descpb", diff --git a/pkg/sql/execinfrapb/processors_bulk_io.pb.go b/pkg/sql/execinfrapb/processors_bulk_io.pb.go index f50674253fa0..d37f372c5ce4 100644 --- a/pkg/sql/execinfrapb/processors_bulk_io.pb.go +++ b/pkg/sql/execinfrapb/processors_bulk_io.pb.go @@ -20,7 +20,6 @@ import time "time" import github_com_cockroachdb_cockroach_pkg_sql_catalog_descpb "github.com/cockroachdb/cockroach/pkg/sql/catalog/descpb" import github_com_cockroachdb_cockroach_pkg_jobs_jobspb "github.com/cockroachdb/cockroach/pkg/jobs/jobspb" import github_com_cockroachdb_cockroach_pkg_security "github.com/cockroachdb/cockroach/pkg/security" -import github_com_cockroachdb_cockroach_pkg_ccl_streamingccl "github.com/cockroachdb/cockroach/pkg/ccl/streamingccl" import github_com_gogo_protobuf_sortkeys "github.com/gogo/protobuf/sortkeys" import encoding_binary "encoding/binary" @@ -74,7 +73,7 @@ func (x *FileCompression) UnmarshalJSON(data []byte) error { return nil } func (FileCompression) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_processors_bulk_io_bbe50423da81a297, []int{0} + return fileDescriptor_processors_bulk_io_02d1fe88217cb259, []int{0} } type BackfillerSpec_Type int32 @@ -113,7 +112,7 @@ func (x *BackfillerSpec_Type) UnmarshalJSON(data []byte) error { return nil } func (BackfillerSpec_Type) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_processors_bulk_io_bbe50423da81a297, []int{0, 0} + return fileDescriptor_processors_bulk_io_02d1fe88217cb259, []int{0, 0} } // BackfillerSpec is the specification for a "schema change backfiller". @@ -149,7 +148,7 @@ func (m *BackfillerSpec) Reset() { *m = BackfillerSpec{} } func (m *BackfillerSpec) String() string { return proto.CompactTextString(m) } func (*BackfillerSpec) ProtoMessage() {} func (*BackfillerSpec) Descriptor() ([]byte, []int) { - return fileDescriptor_processors_bulk_io_bbe50423da81a297, []int{0} + return fileDescriptor_processors_bulk_io_02d1fe88217cb259, []int{0} } func (m *BackfillerSpec) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -189,7 +188,7 @@ func (m *JobProgress) Reset() { *m = JobProgress{} } func (m *JobProgress) String() string { return proto.CompactTextString(m) } func (*JobProgress) ProtoMessage() {} func (*JobProgress) Descriptor() ([]byte, []int) { - return fileDescriptor_processors_bulk_io_bbe50423da81a297, []int{1} + return fileDescriptor_processors_bulk_io_02d1fe88217cb259, []int{1} } func (m *JobProgress) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -252,7 +251,7 @@ func (m *ReadImportDataSpec) Reset() { *m = ReadImportDataSpec{} } func (m *ReadImportDataSpec) String() string { return proto.CompactTextString(m) } func (*ReadImportDataSpec) ProtoMessage() {} func (*ReadImportDataSpec) Descriptor() ([]byte, []int) { - return fileDescriptor_processors_bulk_io_bbe50423da81a297, []int{2} + return fileDescriptor_processors_bulk_io_02d1fe88217cb259, []int{2} } func (m *ReadImportDataSpec) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -290,7 +289,7 @@ func (m *ReadImportDataSpec_ImportTable) Reset() { *m = ReadImportDataSp func (m *ReadImportDataSpec_ImportTable) String() string { return proto.CompactTextString(m) } func (*ReadImportDataSpec_ImportTable) ProtoMessage() {} func (*ReadImportDataSpec_ImportTable) Descriptor() ([]byte, []int) { - return fileDescriptor_processors_bulk_io_bbe50423da81a297, []int{2, 0} + return fileDescriptor_processors_bulk_io_02d1fe88217cb259, []int{2, 0} } func (m *ReadImportDataSpec_ImportTable) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -317,12 +316,12 @@ var xxx_messageInfo_ReadImportDataSpec_ImportTable proto.InternalMessageInfo type StreamIngestionDataSpec struct { // PartitionAddresses locate the partitions that produce events to be - // ingested. - PartitionAddresses []github_com_cockroachdb_cockroach_pkg_ccl_streamingccl.PartitionAddress `protobuf:"bytes,1,rep,name=partition_addresses,json=partitionAddresses,customtype=github.com/cockroachdb/cockroach/pkg/ccl/streamingccl.PartitionAddress" json:"partition_addresses"` + // ingested. We don't set the casttype to avoid depending on ccl packages. + PartitionAddresses []string `protobuf:"bytes,1,rep,name=partition_addresses,json=partitionAddresses" json:"partition_addresses,omitempty"` // The processor will ingest events from StartTime onwards. StartTime hlc.Timestamp `protobuf:"bytes,2,opt,name=start_time,json=startTime" json:"start_time"` // StreamAddress locate the stream so that a stream client can be initialized. - StreamAddress github_com_cockroachdb_cockroach_pkg_ccl_streamingccl.StreamAddress `protobuf:"bytes,3,opt,name=stream_address,json=streamAddress,customtype=github.com/cockroachdb/cockroach/pkg/ccl/streamingccl.StreamAddress" json:"stream_address"` + StreamAddress string `protobuf:"bytes,3,opt,name=stream_address,json=streamAddress" json:"stream_address"` // JobID is the job ID of the stream ingestion job. JobID int64 `protobuf:"varint,4,opt,name=job_id,json=jobId" json:"job_id"` } @@ -331,7 +330,7 @@ func (m *StreamIngestionDataSpec) Reset() { *m = StreamIngestionDataSpec func (m *StreamIngestionDataSpec) String() string { return proto.CompactTextString(m) } func (*StreamIngestionDataSpec) ProtoMessage() {} func (*StreamIngestionDataSpec) Descriptor() ([]byte, []int) { - return fileDescriptor_processors_bulk_io_bbe50423da81a297, []int{3} + return fileDescriptor_processors_bulk_io_02d1fe88217cb259, []int{3} } func (m *StreamIngestionDataSpec) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -374,7 +373,7 @@ func (m *StreamIngestionFrontierSpec) Reset() { *m = StreamIngestionFron func (m *StreamIngestionFrontierSpec) String() string { return proto.CompactTextString(m) } func (*StreamIngestionFrontierSpec) ProtoMessage() {} func (*StreamIngestionFrontierSpec) Descriptor() ([]byte, []int) { - return fileDescriptor_processors_bulk_io_bbe50423da81a297, []int{4} + return fileDescriptor_processors_bulk_io_02d1fe88217cb259, []int{4} } func (m *StreamIngestionFrontierSpec) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -420,7 +419,7 @@ func (m *BackupDataSpec) Reset() { *m = BackupDataSpec{} } func (m *BackupDataSpec) String() string { return proto.CompactTextString(m) } func (*BackupDataSpec) ProtoMessage() {} func (*BackupDataSpec) Descriptor() ([]byte, []int) { - return fileDescriptor_processors_bulk_io_bbe50423da81a297, []int{5} + return fileDescriptor_processors_bulk_io_02d1fe88217cb259, []int{5} } func (m *BackupDataSpec) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -459,7 +458,7 @@ func (m *RestoreSpanEntry) Reset() { *m = RestoreSpanEntry{} } func (m *RestoreSpanEntry) String() string { return proto.CompactTextString(m) } func (*RestoreSpanEntry) ProtoMessage() {} func (*RestoreSpanEntry) Descriptor() ([]byte, []int) { - return fileDescriptor_processors_bulk_io_bbe50423da81a297, []int{6} + return fileDescriptor_processors_bulk_io_02d1fe88217cb259, []int{6} } func (m *RestoreSpanEntry) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -497,7 +496,7 @@ func (m *RestoreDataSpec) Reset() { *m = RestoreDataSpec{} } func (m *RestoreDataSpec) String() string { return proto.CompactTextString(m) } func (*RestoreDataSpec) ProtoMessage() {} func (*RestoreDataSpec) Descriptor() ([]byte, []int) { - return fileDescriptor_processors_bulk_io_bbe50423da81a297, []int{7} + return fileDescriptor_processors_bulk_io_02d1fe88217cb259, []int{7} } func (m *RestoreDataSpec) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -531,7 +530,7 @@ func (m *SplitAndScatterSpec) Reset() { *m = SplitAndScatterSpec{} } func (m *SplitAndScatterSpec) String() string { return proto.CompactTextString(m) } func (*SplitAndScatterSpec) ProtoMessage() {} func (*SplitAndScatterSpec) Descriptor() ([]byte, []int) { - return fileDescriptor_processors_bulk_io_bbe50423da81a297, []int{8} + return fileDescriptor_processors_bulk_io_02d1fe88217cb259, []int{8} } func (m *SplitAndScatterSpec) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -564,7 +563,7 @@ func (m *SplitAndScatterSpec_RestoreEntryChunk) Reset() { *m = SplitAndS func (m *SplitAndScatterSpec_RestoreEntryChunk) String() string { return proto.CompactTextString(m) } func (*SplitAndScatterSpec_RestoreEntryChunk) ProtoMessage() {} func (*SplitAndScatterSpec_RestoreEntryChunk) Descriptor() ([]byte, []int) { - return fileDescriptor_processors_bulk_io_bbe50423da81a297, []int{8, 0} + return fileDescriptor_processors_bulk_io_02d1fe88217cb259, []int{8, 0} } func (m *SplitAndScatterSpec_RestoreEntryChunk) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -611,7 +610,7 @@ func (m *CSVWriterSpec) Reset() { *m = CSVWriterSpec{} } func (m *CSVWriterSpec) String() string { return proto.CompactTextString(m) } func (*CSVWriterSpec) ProtoMessage() {} func (*CSVWriterSpec) Descriptor() ([]byte, []int) { - return fileDescriptor_processors_bulk_io_bbe50423da81a297, []int{9} + return fileDescriptor_processors_bulk_io_02d1fe88217cb259, []int{9} } func (m *CSVWriterSpec) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -646,7 +645,7 @@ func (m *BulkRowWriterSpec) Reset() { *m = BulkRowWriterSpec{} } func (m *BulkRowWriterSpec) String() string { return proto.CompactTextString(m) } func (*BulkRowWriterSpec) ProtoMessage() {} func (*BulkRowWriterSpec) Descriptor() ([]byte, []int) { - return fileDescriptor_processors_bulk_io_bbe50423da81a297, []int{10} + return fileDescriptor_processors_bulk_io_02d1fe88217cb259, []int{10} } func (m *BulkRowWriterSpec) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2832,7 +2831,7 @@ func (m *StreamIngestionDataSpec) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - m.PartitionAddresses = append(m.PartitionAddresses, github_com_cockroachdb_cockroach_pkg_ccl_streamingccl.PartitionAddress(dAtA[iNdEx:postIndex])) + m.PartitionAddresses = append(m.PartitionAddresses, string(dAtA[iNdEx:postIndex])) iNdEx = postIndex case 2: if wireType != 2 { @@ -2891,7 +2890,7 @@ func (m *StreamIngestionDataSpec) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - m.StreamAddress = github_com_cockroachdb_cockroach_pkg_ccl_streamingccl.StreamAddress(dAtA[iNdEx:postIndex]) + m.StreamAddress = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex case 4: if wireType != 0 { @@ -4498,129 +4497,126 @@ var ( ) func init() { - proto.RegisterFile("sql/execinfrapb/processors_bulk_io.proto", fileDescriptor_processors_bulk_io_bbe50423da81a297) + proto.RegisterFile("sql/execinfrapb/processors_bulk_io.proto", fileDescriptor_processors_bulk_io_02d1fe88217cb259) } -var fileDescriptor_processors_bulk_io_bbe50423da81a297 = []byte{ - // 1910 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x58, 0x4d, 0x6f, 0xdb, 0xc8, - 0x19, 0x36, 0xf5, 0x65, 0xe9, 0x55, 0xe4, 0xc8, 0x93, 0xfd, 0x60, 0x5d, 0xd4, 0x36, 0xb4, 0x9b, - 0x54, 0x4d, 0x11, 0x09, 0x9b, 0xb4, 0x8b, 0xa0, 0xed, 0x6e, 0x1a, 0xc9, 0xb1, 0x57, 0xf6, 0x6e, - 0xe2, 0x52, 0xb1, 0x03, 0x2c, 0xda, 0x12, 0x14, 0x39, 0x96, 0x27, 0xa2, 0x38, 0xf4, 0xcc, 0xd0, - 0x89, 0x72, 0x69, 0x81, 0x9e, 0x7a, 0xeb, 0x4f, 0xe8, 0xa1, 0x3f, 0xa0, 0x3d, 0xf4, 0x17, 0xf4, - 0x92, 0xe3, 0x1e, 0x17, 0x3d, 0x18, 0xad, 0xf3, 0x27, 0x8a, 0x9c, 0x8a, 0xf9, 0xa0, 0x4c, 0x3b, - 0xb6, 0x63, 0x6f, 0xb0, 0x17, 0x9b, 0x9a, 0x99, 0xe7, 0x99, 0xf7, 0xfb, 0x7d, 0x49, 0x68, 0xf2, - 0xbd, 0xb0, 0x8d, 0x9f, 0x63, 0x9f, 0x44, 0x3b, 0xcc, 0x8b, 0x07, 0xed, 0x98, 0x51, 0x1f, 0x73, - 0x4e, 0x19, 0x77, 0x07, 0x49, 0x38, 0x72, 0x09, 0x6d, 0xc5, 0x8c, 0x0a, 0x8a, 0x6c, 0x9f, 0xfa, - 0x23, 0x46, 0x3d, 0x7f, 0xb7, 0xc5, 0xf7, 0xc2, 0x56, 0x40, 0xb8, 0xe0, 0x7b, 0x21, 0x4b, 0xa2, - 0x85, 0x0f, 0x9e, 0xd2, 0x01, 0x6f, 0xcb, 0x3f, 0xf1, 0x40, 0xfd, 0xd3, 0x88, 0x05, 0x5b, 0x9d, - 0x8e, 0x07, 0x6d, 0x42, 0x6f, 0xed, 0x50, 0x36, 0xf6, 0x44, 0xba, 0xf3, 0x91, 0xbc, 0xd5, 0xf7, - 0x84, 0x17, 0xd2, 0x61, 0x3b, 0xc0, 0xdc, 0x8f, 0x07, 0x6d, 0x2e, 0x58, 0xe2, 0x8b, 0x84, 0xe1, - 0xc0, 0x1c, 0xba, 0x7e, 0x9e, 0x68, 0x1e, 0xc7, 0xe9, 0x2d, 0x89, 0x20, 0x61, 0x7b, 0x37, 0xf4, - 0xdb, 0x82, 0x8c, 0x31, 0x17, 0xde, 0x38, 0x36, 0x3b, 0xef, 0x0d, 0xe9, 0x90, 0xaa, 0xc7, 0xb6, - 0x7c, 0x32, 0xab, 0x28, 0x95, 0x2a, 0xf0, 0x84, 0x67, 0xd6, 0xe6, 0xd3, 0x35, 0x2f, 0x26, 0x7a, - 0xa9, 0xf1, 0xb7, 0x02, 0xcc, 0x75, 0x3c, 0x7f, 0xb4, 0x43, 0xc2, 0x10, 0xb3, 0x7e, 0x8c, 0x7d, - 0xb4, 0x06, 0x05, 0x31, 0x89, 0xb1, 0x6d, 0x2d, 0x5b, 0xcd, 0xb9, 0xdb, 0xb7, 0x5a, 0x67, 0x19, - 0xa4, 0x75, 0x1c, 0xd7, 0x7a, 0x3c, 0x89, 0x71, 0xa7, 0xf0, 0xf2, 0x60, 0x69, 0xc6, 0x51, 0x04, - 0xa8, 0x03, 0x45, 0xe1, 0x0d, 0x42, 0x6c, 0xe7, 0x96, 0xad, 0x66, 0xf5, 0xf6, 0x8d, 0x13, 0x4c, - 0x7c, 0x2f, 0x54, 0xfa, 0x3d, 0x96, 0x67, 0x56, 0x30, 0xf7, 0x19, 0x89, 0x05, 0x65, 0x86, 0x42, - 0x43, 0xd1, 0x03, 0x28, 0xf2, 0xd8, 0x8b, 0xb8, 0x9d, 0x5f, 0xce, 0x37, 0xab, 0xb7, 0x7f, 0x72, - 0xb6, 0x34, 0x8a, 0xc6, 0xc1, 0x5e, 0x20, 0xc5, 0xf1, 0xa2, 0x94, 0x46, 0xa1, 0xd1, 0x27, 0x50, - 0x0e, 0x12, 0xe6, 0x09, 0x42, 0x23, 0xbb, 0xb0, 0x6c, 0x35, 0xf3, 0x9d, 0xf7, 0xe5, 0xf6, 0xeb, - 0x83, 0xa5, 0x9a, 0x34, 0x67, 0x6b, 0xc5, 0x6c, 0x3a, 0xd3, 0x63, 0xe8, 0x23, 0x00, 0x7f, 0x37, - 0x89, 0x46, 0x2e, 0x27, 0x2f, 0xb0, 0x5d, 0x54, 0x20, 0xcd, 0x59, 0x51, 0xeb, 0x7d, 0xf2, 0x02, - 0xa3, 0x7b, 0x50, 0x66, 0xd8, 0x0b, 0xee, 0xf3, 0x47, 0x3b, 0xf6, 0xac, 0xd2, 0xf2, 0x47, 0x19, - 0x09, 0xa5, 0xcb, 0x5a, 0xbb, 0xa1, 0xdf, 0x7a, 0x9c, 0xba, 0xcc, 0x30, 0x4c, 0x41, 0x88, 0xc3, - 0x35, 0x12, 0x05, 0xf8, 0x39, 0xe6, 0xae, 0xa0, 0xee, 0xc0, 0x58, 0xd4, 0x2e, 0x2f, 0xe7, 0x9b, - 0xb5, 0x4e, 0xf7, 0xf5, 0xc1, 0xd2, 0xbd, 0x21, 0x11, 0xbb, 0xc9, 0xa0, 0xe5, 0xd3, 0x71, 0x7b, - 0xca, 0x1c, 0x0c, 0x8e, 0x9e, 0xdb, 0xf1, 0x68, 0xd8, 0x7e, 0x33, 0xd0, 0x5a, 0x3d, 0x49, 0xdb, - 0x5b, 0x71, 0xe6, 0x0d, 0xff, 0x63, 0x9a, 0xfa, 0xab, 0x71, 0x13, 0x0a, 0xd2, 0x59, 0xa8, 0x0a, - 0xb3, 0xbd, 0x68, 0xdf, 0x0b, 0x49, 0x50, 0x9f, 0x41, 0x00, 0xa5, 0x2e, 0x0d, 0x93, 0x71, 0x54, - 0xb7, 0x50, 0x05, 0x8a, 0x0a, 0x5e, 0xcf, 0xad, 0x17, 0xca, 0xa5, 0xfa, 0x6c, 0xe3, 0x1f, 0x16, - 0x54, 0xd7, 0xe9, 0x60, 0x93, 0xd1, 0x21, 0xc3, 0x9c, 0xa3, 0xdf, 0x43, 0xe9, 0x29, 0x1d, 0xb8, - 0x24, 0x50, 0x51, 0x92, 0xef, 0xac, 0x49, 0xb5, 0x0e, 0x0f, 0x96, 0x8a, 0xeb, 0x74, 0xd0, 0x5b, - 0x79, 0x7d, 0xb0, 0xf4, 0xe9, 0x85, 0xc4, 0xce, 0x64, 0x54, 0x4b, 0x21, 0x9d, 0xe2, 0x53, 0x3a, - 0xe8, 0x05, 0xa8, 0x09, 0x57, 0x7c, 0x1a, 0x09, 0x46, 0x06, 0x89, 0xf2, 0x99, 0x8c, 0xa0, 0x9c, - 0x31, 0xde, 0xb1, 0x1d, 0x64, 0x43, 0x81, 0x87, 0x54, 0xd8, 0xf9, 0x65, 0xab, 0x59, 0x4c, 0xc3, - 0x4f, 0xae, 0x34, 0x5e, 0x96, 0x01, 0xc9, 0x78, 0xe8, 0x8d, 0x63, 0xca, 0xc4, 0x8a, 0x27, 0x3c, - 0x15, 0xde, 0xd7, 0xa1, 0xca, 0xbd, 0x71, 0x1c, 0x62, 0xed, 0xd8, 0x5c, 0x06, 0x07, 0x7a, 0x43, - 0x79, 0x76, 0x0d, 0xca, 0xb1, 0xd1, 0xd6, 0x2e, 0x29, 0xcf, 0x5e, 0x3f, 0x3b, 0xf6, 0x32, 0xa6, - 0x49, 0x3d, 0x9c, 0x82, 0xd1, 0x1a, 0xe4, 0x13, 0x46, 0xec, 0x59, 0x15, 0xbf, 0x3f, 0x3f, 0x9b, - 0xe3, 0x4d, 0x51, 0x5b, 0x5b, 0x8c, 0x3c, 0x88, 0x04, 0x9b, 0x38, 0x92, 0x01, 0x7d, 0x06, 0x25, - 0x5d, 0x5e, 0xec, 0xb2, 0x92, 0x67, 0x29, 0xc3, 0x65, 0x12, 0xbb, 0xd5, 0x7b, 0xb4, 0x4a, 0x42, - 0xbc, 0xaa, 0x8e, 0x19, 0x49, 0x0c, 0x08, 0x6d, 0x43, 0x49, 0xa5, 0x14, 0xb7, 0x2b, 0x4a, 0x94, - 0xbb, 0x97, 0x12, 0x45, 0x65, 0x17, 0x57, 0xd2, 0x28, 0x5e, 0xcb, 0x31, 0x6c, 0xe8, 0x1e, 0xfc, - 0x80, 0x8f, 0x48, 0xec, 0x8e, 0x09, 0xe7, 0x24, 0x1a, 0xba, 0x3b, 0x94, 0x61, 0x32, 0x8c, 0xdc, - 0x11, 0x9e, 0x70, 0x1b, 0x96, 0xad, 0x66, 0xd9, 0x08, 0xf2, 0x81, 0x3c, 0xf6, 0x95, 0x3e, 0xb5, - 0xaa, 0x0f, 0x6d, 0xe0, 0x09, 0x47, 0x37, 0xa1, 0xf6, 0xcc, 0x0b, 0x43, 0x99, 0x87, 0x0f, 0xbd, - 0x88, 0x72, 0xbb, 0x9a, 0xc9, 0xb5, 0xe3, 0x5b, 0xe8, 0x36, 0xcc, 0x33, 0x95, 0xe2, 0x9b, 0x1e, - 0xf3, 0xc2, 0x10, 0x87, 0x84, 0x8f, 0xed, 0x5a, 0xc6, 0x85, 0x6f, 0x6e, 0xa3, 0xaf, 0x01, 0x18, - 0xe6, 0xc9, 0x18, 0xbb, 0x31, 0xe5, 0xf6, 0x9c, 0x52, 0xfe, 0x97, 0x97, 0x52, 0xde, 0x51, 0xf0, - 0x4d, 0xaa, 0xf5, 0x77, 0x2a, 0x2c, 0xfd, 0x8d, 0x30, 0x40, 0xc2, 0x31, 0x73, 0x55, 0x31, 0xb5, - 0xaf, 0x2e, 0x5b, 0xcd, 0x4a, 0x67, 0xd5, 0x54, 0x96, 0xcf, 0x2f, 0x96, 0xb9, 0xd8, 0x4f, 0x18, - 0x11, 0x93, 0x56, 0xff, 0x37, 0x5f, 0x6e, 0x71, 0xcc, 0x22, 0x6f, 0x8c, 0x37, 0x25, 0x9b, 0x53, - 0x91, 0xcc, 0xea, 0x71, 0x21, 0x81, 0xaa, 0x16, 0x49, 0xb9, 0x01, 0xfd, 0x1a, 0x0a, 0x32, 0xc9, - 0x55, 0xee, 0x5d, 0xae, 0xae, 0x5a, 0x8e, 0x42, 0xa2, 0x8f, 0x01, 0x84, 0xc7, 0x86, 0x58, 0x74, - 0x69, 0xc8, 0xed, 0xdc, 0x72, 0xbe, 0x59, 0x31, 0xfb, 0x99, 0xf5, 0x05, 0x0e, 0xd5, 0x8c, 0xdf, - 0x51, 0x1d, 0xf2, 0x23, 0x3c, 0x51, 0xb7, 0x56, 0x1c, 0xf9, 0x88, 0x1e, 0x42, 0x71, 0xdf, 0x0b, - 0x93, 0xb4, 0xc2, 0x5f, 0x2e, 0xa4, 0x32, 0x1a, 0x39, 0x9a, 0xe6, 0x17, 0xb9, 0xbb, 0xd6, 0xc2, - 0xa7, 0x50, 0x4e, 0xe3, 0x3e, 0x7b, 0x63, 0x51, 0xdf, 0xf8, 0x5e, 0xf6, 0xc6, 0x4a, 0x16, 0xf7, - 0x2b, 0x98, 0x3b, 0xee, 0xa7, 0xb7, 0xa1, 0xf3, 0x19, 0xf4, 0x7a, 0xa1, 0x6c, 0xa9, 0x62, 0x97, - 0xaf, 0x17, 0xd6, 0x0b, 0xe5, 0x42, 0xbd, 0xb8, 0x5e, 0x28, 0x17, 0xeb, 0xa5, 0xf5, 0x42, 0xf9, - 0x4a, 0xbd, 0xd6, 0xf8, 0x5f, 0x0e, 0x3e, 0xec, 0x0b, 0x86, 0xbd, 0x71, 0x2f, 0x1a, 0x62, 0x2e, - 0x0b, 0xcf, 0xb4, 0x9e, 0xfc, 0x01, 0xae, 0xc5, 0x1e, 0x13, 0x44, 0x2e, 0xba, 0x5e, 0x10, 0xc8, - 0xa4, 0xc7, 0xdc, 0xb6, 0x94, 0x4d, 0x1f, 0xca, 0x58, 0xf8, 0xf7, 0xc1, 0xd2, 0xea, 0x85, 0x62, - 0xc1, 0xf7, 0x43, 0x39, 0x1f, 0x60, 0x6f, 0x4c, 0xa2, 0xa1, 0xef, 0x87, 0xad, 0xcd, 0x94, 0xf8, - 0xbe, 0xe6, 0x75, 0x50, 0x7c, 0x62, 0x05, 0x73, 0xd4, 0x01, 0xe0, 0xc2, 0x63, 0xc2, 0x95, 0x69, - 0x62, 0x3c, 0x71, 0xa1, 0x2e, 0x54, 0x51, 0x30, 0xb9, 0x8a, 0x18, 0xcc, 0xe9, 0x8b, 0x53, 0x0d, - 0x54, 0x3d, 0xad, 0x74, 0x36, 0x8c, 0xfc, 0xdd, 0xef, 0x26, 0xbf, 0xb6, 0x59, 0x2a, 0x7c, 0x8d, - 0x67, 0x7f, 0xa2, 0x8f, 0xa7, 0x3d, 0x44, 0x77, 0xe4, 0xda, 0xb1, 0x1e, 0x62, 0x3a, 0x41, 0xe3, - 0x9f, 0x16, 0xfc, 0xf0, 0x84, 0xe9, 0x57, 0x19, 0x8d, 0x04, 0x31, 0xd3, 0x8a, 0x03, 0xd7, 0x76, - 0xc9, 0x70, 0xd7, 0x7d, 0xe6, 0x09, 0xcc, 0x5c, 0x4f, 0xb8, 0x4a, 0x29, 0x93, 0x1a, 0x17, 0x32, - 0x43, 0x5d, 0xe2, 0x9f, 0x48, 0xf8, 0x7d, 0xd1, 0x97, 0x60, 0xd4, 0x81, 0x9a, 0x60, 0x9e, 0x3f, - 0xc2, 0x81, 0xab, 0x87, 0x8f, 0x9c, 0x2a, 0x1a, 0x1f, 0x9e, 0x52, 0x70, 0x33, 0xa3, 0xc6, 0x15, - 0x83, 0x91, 0x4b, 0xbc, 0xf1, 0xaf, 0x59, 0x3d, 0x58, 0x25, 0xf1, 0x34, 0x52, 0xee, 0xa4, 0xb3, - 0x8c, 0x75, 0x11, 0x3a, 0x33, 0xb9, 0x7c, 0x01, 0x75, 0x12, 0x09, 0x46, 0x83, 0xc4, 0xbf, 0x9c, - 0x38, 0x57, 0x8f, 0x60, 0x4a, 0x22, 0x74, 0x07, 0xaa, 0x01, 0xde, 0xf1, 0x92, 0x50, 0xb8, 0xb2, - 0x21, 0x69, 0x07, 0x23, 0x63, 0x74, 0x58, 0xd1, 0x5b, 0x5b, 0x4e, 0xcf, 0x01, 0x73, 0x6c, 0x8b, - 0x11, 0xf4, 0x27, 0x0b, 0xae, 0x25, 0x8c, 0x70, 0x77, 0x30, 0x71, 0x43, 0xea, 0x7b, 0x21, 0x11, - 0x13, 0x77, 0xb4, 0x6f, 0x17, 0x94, 0x08, 0x9f, 0x9f, 0x3f, 0x1c, 0x1e, 0xe9, 0x2e, 0x5b, 0x19, - 0xef, 0x4c, 0xbe, 0x34, 0x0c, 0x1b, 0xfb, 0xba, 0x93, 0xbc, 0x77, 0x78, 0xb0, 0x54, 0xdf, 0x72, - 0x7a, 0xd9, 0xad, 0x6d, 0xa7, 0x9e, 0x9c, 0x38, 0x8c, 0x1c, 0xa8, 0x8e, 0xf7, 0x7d, 0xdf, 0xdd, - 0x21, 0xa1, 0xc0, 0x4c, 0x0d, 0x63, 0x73, 0xc7, 0x9c, 0x9b, 0xea, 0xff, 0xd5, 0x76, 0xb7, 0xbb, - 0xaa, 0x0e, 0x1d, 0x69, 0x76, 0xb4, 0xe6, 0x80, 0x64, 0xd1, 0xcf, 0xe8, 0x0b, 0x00, 0x1c, 0xf9, - 0x6c, 0x12, 0xab, 0x01, 0x43, 0xb7, 0xf8, 0xe6, 0x29, 0x94, 0xb2, 0xa1, 0x3e, 0x98, 0x1e, 0x7c, - 0xa4, 0xfe, 0x72, 0x27, 0x83, 0x45, 0x8f, 0x60, 0x7e, 0xa0, 0xb4, 0x75, 0x33, 0x79, 0x78, 0x89, - 0x69, 0xf0, 0xaa, 0x46, 0xf7, 0xa7, 0xd9, 0xb8, 0x01, 0x66, 0xc9, 0xc5, 0x51, 0xa0, 0xe9, 0xca, - 0x17, 0xa7, 0xab, 0x69, 0xec, 0x83, 0x28, 0x50, 0x64, 0x5b, 0x50, 0x8a, 0x47, 0x2e, 0x09, 0xd2, - 0xbe, 0x7f, 0xe7, 0xc2, 0x3e, 0xdb, 0x1c, 0xf5, 0x02, 0xd3, 0xf2, 0x2b, 0x32, 0x2f, 0x37, 0x37, - 0x7a, 0x2b, 0xdc, 0x29, 0xc6, 0x72, 0xf9, 0x44, 0xe7, 0x83, 0xef, 0xab, 0xf3, 0x75, 0xe1, 0xfd, - 0x53, 0x43, 0xe7, 0x94, 0x66, 0x74, 0x76, 0x6b, 0xb8, 0x0b, 0x70, 0xa4, 0x4b, 0x16, 0x59, 0x38, - 0x05, 0x59, 0xce, 0x20, 0x1b, 0x7f, 0xb7, 0xa0, 0xee, 0x60, 0x2e, 0x28, 0xc3, 0x32, 0x89, 0x34, - 0xc1, 0x27, 0x50, 0x90, 0x79, 0x68, 0x6a, 0xcc, 0x5b, 0xd2, 0x50, 0x1d, 0x45, 0xf7, 0xa1, 0xb8, - 0x43, 0xe4, 0xec, 0xa5, 0x53, 0xf7, 0xfa, 0x69, 0xa3, 0x9b, 0x6a, 0x87, 0x0e, 0xde, 0x4b, 0x30, - 0x17, 0x2a, 0xea, 0xd2, 0x42, 0xa0, 0x90, 0xe8, 0x06, 0x54, 0xd3, 0x99, 0xb2, 0x17, 0x3c, 0x57, - 0xe9, 0x9b, 0x0e, 0x49, 0xd9, 0x8d, 0xc6, 0x1f, 0xf3, 0x70, 0xd5, 0x88, 0x3c, 0xad, 0x3c, 0xab, - 0x70, 0x85, 0xe9, 0x25, 0x1d, 0x4d, 0x97, 0xa8, 0x8e, 0x55, 0x03, 0x54, 0xb1, 0x74, 0x3c, 0x67, - 0x72, 0xef, 0x90, 0x33, 0x3d, 0x28, 0x31, 0xac, 0x46, 0x44, 0xfd, 0x62, 0xf7, 0xd3, 0xb7, 0x5a, - 0xc4, 0xbc, 0xdf, 0x8d, 0xf0, 0x24, 0x1d, 0x6c, 0x35, 0x81, 0x1c, 0x6c, 0x4d, 0x80, 0xeb, 0xa2, - 0xf4, 0xb3, 0xf3, 0xa6, 0x90, 0x63, 0x76, 0x39, 0x37, 0xc2, 0xdf, 0x21, 0x6a, 0xfe, 0x9a, 0x83, - 0x6b, 0xfd, 0x38, 0x24, 0xe2, 0x7e, 0x14, 0xf4, 0x7d, 0x4f, 0x08, 0xd3, 0xab, 0x7e, 0x07, 0x25, - 0xf5, 0xea, 0x98, 0x76, 0x80, 0x7b, 0x67, 0x4b, 0x7a, 0x0a, 0x3c, 0x95, 0x5e, 0xc9, 0xd3, 0x95, - 0x3c, 0xa9, 0x21, 0x34, 0x69, 0xc6, 0xa6, 0xb9, 0x77, 0xb4, 0xe9, 0x82, 0x0b, 0xf3, 0x6f, 0xdc, - 0x86, 0xd6, 0x61, 0x16, 0xcb, 0x37, 0x2f, 0x9c, 0xca, 0x7f, 0xf3, 0xad, 0x96, 0x9e, 0x26, 0x8d, - 0xe1, 0x4f, 0x09, 0x1a, 0x7f, 0xce, 0x43, 0xad, 0xdb, 0xdf, 0x7e, 0xc2, 0x48, 0x6a, 0x9c, 0x1b, - 0xb2, 0x3d, 0x71, 0x41, 0x22, 0xfd, 0x96, 0xae, 0x12, 0x3b, 0x8d, 0xc1, 0xcc, 0x06, 0xfa, 0x31, - 0x5c, 0x91, 0x95, 0xc2, 0x8d, 0x95, 0x61, 0x74, 0x14, 0x4e, 0x0f, 0xaa, 0x1a, 0xa2, 0x37, 0xd0, - 0x67, 0x30, 0x4b, 0x75, 0xe4, 0xa9, 0x64, 0xa9, 0x9e, 0xda, 0x30, 0xba, 0xfd, 0x6d, 0x13, 0x9e, - 0xa9, 0x84, 0x06, 0x73, 0xf4, 0xfe, 0xcf, 0xe8, 0x33, 0x6e, 0x46, 0x94, 0xec, 0xfb, 0xbf, 0x43, - 0x9f, 0x71, 0xf4, 0x5b, 0x98, 0xf7, 0xe9, 0x38, 0x96, 0xb9, 0x27, 0xc7, 0x3f, 0x9f, 0x06, 0xd8, - 0x37, 0xed, 0xe9, 0x9c, 0x4f, 0x15, 0x32, 0x3d, 0xba, 0x47, 0xb0, 0x74, 0x0e, 0xc9, 0x30, 0x75, - 0x25, 0xd1, 0x89, 0x1a, 0x5b, 0xfa, 0x9e, 0x6a, 0x6c, 0xe3, 0x09, 0xcc, 0x77, 0x92, 0x50, 0x2a, - 0x94, 0x71, 0xc7, 0xf4, 0xe3, 0x8d, 0xf5, 0x9d, 0x3f, 0xde, 0xdc, 0xbc, 0x0e, 0x57, 0x4f, 0xa8, - 0x8a, 0xca, 0x50, 0x78, 0x48, 0x23, 0x5c, 0x9f, 0x91, 0x4f, 0x6b, 0x2f, 0x48, 0x5c, 0xb7, 0x3a, - 0xb7, 0x5e, 0xfe, 0x77, 0x71, 0xe6, 0xe5, 0xe1, 0xa2, 0xf5, 0xcd, 0xe1, 0xa2, 0xf5, 0xed, 0xe1, - 0xa2, 0xf5, 0x9f, 0xc3, 0x45, 0xeb, 0x2f, 0xaf, 0x16, 0x67, 0xbe, 0x79, 0xb5, 0x38, 0xf3, 0xed, - 0xab, 0xc5, 0x99, 0xaf, 0xab, 0x99, 0xef, 0x63, 0xff, 0x0f, 0x00, 0x00, 0xff, 0xff, 0x3d, 0x77, - 0xa1, 0xc8, 0xcc, 0x13, 0x00, 0x00, +var fileDescriptor_processors_bulk_io_02d1fe88217cb259 = []byte{ + // 1869 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x58, 0xcf, 0x52, 0x1b, 0xc9, + 0x19, 0x67, 0xf4, 0x0f, 0xe9, 0x93, 0xc1, 0xa2, 0xf1, 0xee, 0x4e, 0x48, 0x05, 0x28, 0xed, 0xe2, + 0x28, 0xde, 0xb2, 0x54, 0x6b, 0x27, 0x5b, 0xae, 0x24, 0xbb, 0x0e, 0x12, 0x86, 0x15, 0xde, 0xb5, + 0xc9, 0xc8, 0xe0, 0xaa, 0xad, 0x24, 0x53, 0xad, 0x99, 0x46, 0xb4, 0x35, 0x9a, 0x1e, 0xba, 0x7b, + 0xb0, 0xe5, 0x53, 0xaa, 0x72, 0xca, 0x2d, 0x8f, 0x90, 0x43, 0x1e, 0x20, 0x39, 0xe4, 0x09, 0x72, + 0xf1, 0x71, 0x8f, 0x7b, 0xa2, 0xb2, 0xf8, 0x2d, 0x7c, 0x4a, 0x75, 0x4f, 0x8f, 0x18, 0x30, 0x60, + 0x88, 0x6b, 0x2f, 0x62, 0xe8, 0xaf, 0x7f, 0xbf, 0xfe, 0xfa, 0xfb, 0x3f, 0x03, 0x0d, 0xb1, 0x1f, + 0xb4, 0xc8, 0x0b, 0xe2, 0xd1, 0x70, 0x97, 0xe3, 0xa8, 0xdf, 0x8a, 0x38, 0xf3, 0x88, 0x10, 0x8c, + 0x0b, 0xb7, 0x1f, 0x07, 0x43, 0x97, 0xb2, 0x66, 0xc4, 0x99, 0x64, 0xc8, 0xf6, 0x98, 0x37, 0xe4, + 0x0c, 0x7b, 0x7b, 0x4d, 0xb1, 0x1f, 0x34, 0x7d, 0x2a, 0xa4, 0xd8, 0x0f, 0x78, 0x1c, 0x2e, 0x7c, + 0xf8, 0x8c, 0xf5, 0x45, 0x4b, 0xfd, 0x44, 0x7d, 0xfd, 0x27, 0x41, 0x2c, 0xd8, 0x7a, 0x77, 0xd4, + 0x6f, 0x51, 0x76, 0x7b, 0x97, 0xf1, 0x11, 0x96, 0xa9, 0xe4, 0x63, 0x75, 0xaa, 0x87, 0x25, 0x0e, + 0xd8, 0xa0, 0xe5, 0x13, 0xe1, 0x45, 0xfd, 0x96, 0x90, 0x3c, 0xf6, 0x64, 0xcc, 0x89, 0x6f, 0x36, + 0xad, 0x5c, 0xa4, 0x1a, 0x16, 0x24, 0x3d, 0x25, 0x96, 0x34, 0x68, 0xed, 0x05, 0x5e, 0x4b, 0xd2, + 0x11, 0x11, 0x12, 0x8f, 0x22, 0x23, 0xb9, 0x31, 0x60, 0x03, 0xa6, 0x1f, 0x5b, 0xea, 0xc9, 0xac, + 0xa2, 0x54, 0x2b, 0x1f, 0x4b, 0x6c, 0xd6, 0xe6, 0xd2, 0x35, 0x1c, 0xd1, 0x64, 0xa9, 0xfe, 0x8f, + 0x02, 0xcc, 0xb6, 0xb1, 0x37, 0xdc, 0xa5, 0x41, 0x40, 0x78, 0x2f, 0x22, 0x1e, 0xda, 0x80, 0x82, + 0x1c, 0x47, 0xc4, 0xb6, 0x96, 0xad, 0xc6, 0xec, 0x9d, 0xdb, 0xcd, 0xf3, 0x0c, 0xd2, 0x3c, 0x89, + 0x6b, 0x3e, 0x19, 0x47, 0xa4, 0x5d, 0x78, 0x75, 0xb8, 0x34, 0xe5, 0x68, 0x02, 0xd4, 0x86, 0xa2, + 0xc4, 0xfd, 0x80, 0xd8, 0xb9, 0x65, 0xab, 0x51, 0xbd, 0x73, 0xf3, 0x14, 0x93, 0xd8, 0x0f, 0xf4, + 0xfd, 0x9e, 0xa8, 0x3d, 0x6b, 0x44, 0x78, 0x9c, 0x46, 0x92, 0x71, 0x43, 0x91, 0x40, 0xd1, 0x03, + 0x28, 0x8a, 0x08, 0x87, 0xc2, 0xce, 0x2f, 0xe7, 0x1b, 0xd5, 0x3b, 0xbf, 0x38, 0x5f, 0x1b, 0x4d, + 0xe3, 0x10, 0xec, 0x2b, 0x75, 0x70, 0x98, 0xd2, 0x68, 0x34, 0xfa, 0x0c, 0xca, 0x7e, 0xcc, 0xb1, + 0xa4, 0x2c, 0xb4, 0x0b, 0xcb, 0x56, 0x23, 0xdf, 0xfe, 0x40, 0x89, 0xdf, 0x1c, 0x2e, 0xcd, 0x28, + 0x73, 0x36, 0xd7, 0x8c, 0xd0, 0x99, 0x6c, 0x43, 0x1f, 0x03, 0x78, 0x7b, 0x71, 0x38, 0x74, 0x05, + 0x7d, 0x49, 0xec, 0xa2, 0x06, 0x25, 0x9c, 0x15, 0xbd, 0xde, 0xa3, 0x2f, 0x09, 0xba, 0x0f, 0x65, + 0x4e, 0xb0, 0xbf, 0x2a, 0x1e, 0xef, 0xda, 0xd3, 0xfa, 0x96, 0x3f, 0xcb, 0x68, 0xa8, 0x5c, 0xd6, + 0xdc, 0x0b, 0xbc, 0xe6, 0x93, 0xd4, 0x65, 0x86, 0x61, 0x02, 0x42, 0x02, 0xe6, 0x69, 0xe8, 0x93, + 0x17, 0x44, 0xb8, 0x92, 0xb9, 0x7d, 0x63, 0x51, 0xbb, 0xbc, 0x9c, 0x6f, 0xcc, 0xb4, 0x3b, 0x6f, + 0x0e, 0x97, 0xee, 0x0f, 0xa8, 0xdc, 0x8b, 0xfb, 0x4d, 0x8f, 0x8d, 0x5a, 0x13, 0x66, 0xbf, 0x7f, + 0xfc, 0xdc, 0x8a, 0x86, 0x83, 0xd6, 0xdb, 0x81, 0xd6, 0xec, 0x2a, 0xda, 0xee, 0x9a, 0x33, 0x67, + 0xf8, 0x9f, 0xb0, 0xd4, 0x5f, 0xf5, 0x5b, 0x50, 0x50, 0xce, 0x42, 0x55, 0x98, 0xee, 0x86, 0x07, + 0x38, 0xa0, 0x7e, 0x6d, 0x0a, 0x01, 0x94, 0x3a, 0x2c, 0x88, 0x47, 0x61, 0xcd, 0x42, 0x15, 0x28, + 0x6a, 0x78, 0x2d, 0xb7, 0x59, 0x28, 0x97, 0x6a, 0xd3, 0xf5, 0x7f, 0x59, 0x50, 0xdd, 0x64, 0xfd, + 0x2d, 0xce, 0x06, 0x9c, 0x08, 0x81, 0xfe, 0x04, 0xa5, 0x67, 0xac, 0xef, 0x52, 0x5f, 0x47, 0x49, + 0xbe, 0xbd, 0xa1, 0xae, 0x75, 0x74, 0xb8, 0x54, 0xdc, 0x64, 0xfd, 0xee, 0xda, 0x9b, 0xc3, 0xa5, + 0xcf, 0x2f, 0xa5, 0x76, 0x26, 0xa3, 0x9a, 0x1a, 0xe9, 0x14, 0x9f, 0xb1, 0x7e, 0xd7, 0x47, 0x0d, + 0xb8, 0xe6, 0xb1, 0x50, 0x72, 0xda, 0x8f, 0xb5, 0xcf, 0x54, 0x04, 0xe5, 0x8c, 0xf1, 0x4e, 0x48, + 0x90, 0x0d, 0x05, 0x11, 0x30, 0x69, 0xe7, 0x97, 0xad, 0x46, 0x31, 0x0d, 0x3f, 0xb5, 0x52, 0x7f, + 0x55, 0x06, 0xa4, 0xe2, 0xa1, 0x3b, 0x8a, 0x18, 0x97, 0x6b, 0x58, 0x62, 0x1d, 0xde, 0x2b, 0x50, + 0x15, 0x78, 0x14, 0x05, 0x24, 0x71, 0x6c, 0x2e, 0x83, 0x83, 0x44, 0xa0, 0x3d, 0xbb, 0x01, 0xe5, + 0xc8, 0xdc, 0xd6, 0x2e, 0x69, 0xcf, 0xae, 0x9c, 0x1f, 0x7b, 0x19, 0xd3, 0xa4, 0x1e, 0x4e, 0xc1, + 0x68, 0x03, 0xf2, 0x31, 0xa7, 0xf6, 0xb4, 0x8e, 0xdf, 0x5f, 0x9d, 0xcf, 0xf1, 0xb6, 0xaa, 0xcd, + 0x6d, 0x4e, 0x1f, 0x84, 0x92, 0x8f, 0x1d, 0xc5, 0x80, 0xbe, 0x80, 0x52, 0x52, 0x5e, 0xec, 0xb2, + 0xd6, 0x67, 0x29, 0xc3, 0x65, 0x12, 0xbb, 0xd9, 0x7d, 0xbc, 0x4e, 0x03, 0xb2, 0xae, 0xb7, 0x19, + 0x4d, 0x0c, 0x08, 0xed, 0x40, 0x49, 0xa7, 0x94, 0xb0, 0x2b, 0x5a, 0x95, 0x7b, 0x57, 0x52, 0x45, + 0x67, 0x97, 0xd0, 0xda, 0x68, 0x5e, 0xcb, 0x31, 0x6c, 0xe8, 0x3e, 0xfc, 0x44, 0x0c, 0x69, 0xe4, + 0x8e, 0xa8, 0x10, 0x34, 0x1c, 0xb8, 0xbb, 0x8c, 0x13, 0x3a, 0x08, 0xdd, 0x21, 0x19, 0x0b, 0x1b, + 0x96, 0xad, 0x46, 0xd9, 0x28, 0xf2, 0xa1, 0xda, 0xf6, 0x4d, 0xb2, 0x6b, 0x3d, 0xd9, 0xf4, 0x90, + 0x8c, 0x05, 0xba, 0x05, 0x33, 0xcf, 0x71, 0x10, 0xa8, 0x3c, 0x7c, 0x84, 0x43, 0x26, 0xec, 0x6a, + 0x26, 0xd7, 0x4e, 0x8a, 0xd0, 0x1d, 0x98, 0xe3, 0x3a, 0xc5, 0xb7, 0x30, 0xc7, 0x41, 0x40, 0x02, + 0x2a, 0x46, 0xf6, 0x4c, 0xc6, 0x85, 0x6f, 0x8b, 0xd1, 0xb7, 0x00, 0x9c, 0x88, 0x78, 0x44, 0xdc, + 0x88, 0x09, 0x7b, 0x56, 0x5f, 0xfe, 0x37, 0x57, 0xba, 0xbc, 0xa3, 0xe1, 0x5b, 0x2c, 0xb9, 0xbf, + 0x53, 0xe1, 0xe9, 0xff, 0x88, 0x00, 0xc4, 0x82, 0x70, 0x57, 0x17, 0x53, 0xfb, 0xfa, 0xb2, 0xd5, + 0xa8, 0xb4, 0xd7, 0x4d, 0x65, 0xf9, 0xf2, 0x72, 0x99, 0x4b, 0xbc, 0x98, 0x53, 0x39, 0x6e, 0xf6, + 0x7e, 0xff, 0xf5, 0xb6, 0x20, 0x3c, 0xc4, 0x23, 0xb2, 0xa5, 0xd8, 0x9c, 0x8a, 0x62, 0xd6, 0x8f, + 0x0b, 0x31, 0x54, 0x13, 0x95, 0xb4, 0x1b, 0xd0, 0xef, 0xa0, 0xa0, 0x92, 0x5c, 0xe7, 0xde, 0xd5, + 0xea, 0xaa, 0xe5, 0x68, 0x24, 0xfa, 0x04, 0x40, 0x62, 0x3e, 0x20, 0xb2, 0xc3, 0x02, 0x61, 0xe7, + 0x96, 0xf3, 0x8d, 0x8a, 0x91, 0x67, 0xd6, 0x17, 0x04, 0x54, 0x33, 0x7e, 0x47, 0x35, 0xc8, 0x0f, + 0xc9, 0x58, 0x9f, 0x5a, 0x71, 0xd4, 0x23, 0x7a, 0x04, 0xc5, 0x03, 0x1c, 0xc4, 0x69, 0x85, 0xbf, + 0x5a, 0x48, 0x65, 0x6e, 0xe4, 0x24, 0x34, 0xbf, 0xce, 0xdd, 0xb3, 0x16, 0x3e, 0x87, 0x72, 0x1a, + 0xf7, 0xd9, 0x13, 0x8b, 0xc9, 0x89, 0x37, 0xb2, 0x27, 0x56, 0xb2, 0xb8, 0xdf, 0xc2, 0xec, 0x49, + 0x3f, 0xbd, 0x0b, 0x9d, 0xcf, 0xa0, 0x37, 0x0b, 0x65, 0x4b, 0x17, 0xbb, 0x7c, 0xad, 0xb0, 0x59, + 0x28, 0x17, 0x6a, 0xc5, 0xcd, 0x42, 0xb9, 0x58, 0x2b, 0x6d, 0x16, 0xca, 0xd7, 0x6a, 0x33, 0xf5, + 0x1f, 0x2c, 0xf8, 0xa8, 0x27, 0x39, 0xc1, 0xa3, 0x6e, 0x38, 0x20, 0x42, 0x15, 0x9e, 0x49, 0x3d, + 0x69, 0xc1, 0x7c, 0x84, 0xb9, 0xa4, 0x6a, 0xd1, 0xc5, 0xbe, 0xaf, 0x92, 0x9e, 0x08, 0xdb, 0x52, + 0x36, 0x75, 0xd0, 0x44, 0xb4, 0x9a, 0x4a, 0x50, 0x1b, 0x40, 0x48, 0xcc, 0xa5, 0xab, 0xc2, 0xda, + 0x58, 0xee, 0x52, 0x5d, 0xa3, 0xa2, 0x61, 0x6a, 0x15, 0x7d, 0x0a, 0xb3, 0x42, 0xeb, 0x93, 0x9e, + 0xa8, 0xeb, 0x5f, 0x25, 0x4d, 0x9a, 0x44, 0x66, 0x8e, 0x44, 0x9f, 0x4c, 0x8a, 0x75, 0xd2, 0xfa, + 0x66, 0x4e, 0x14, 0x6b, 0x53, 0x72, 0xeb, 0xff, 0xb6, 0xe0, 0xa7, 0xa7, 0xee, 0xb8, 0xce, 0x59, + 0x28, 0xa9, 0x19, 0x0b, 0x1c, 0x98, 0xdf, 0xa3, 0x83, 0x3d, 0xf7, 0x39, 0x96, 0x84, 0xbb, 0x58, + 0xba, 0x5a, 0x1b, 0x13, 0x83, 0x97, 0xd2, 0xbf, 0xa6, 0xf0, 0x4f, 0x15, 0x7c, 0x55, 0xf6, 0x14, + 0x18, 0xb5, 0x61, 0x46, 0x72, 0xec, 0x0d, 0x89, 0xef, 0x26, 0x5d, 0x3e, 0xa7, 0xb3, 0xf3, 0xa3, + 0x33, 0x2a, 0x5b, 0xa6, 0xa7, 0x5f, 0x33, 0x18, 0xb5, 0x24, 0xea, 0xff, 0x99, 0x4e, 0x26, 0x98, + 0x38, 0x9a, 0xb8, 0xe4, 0x6e, 0x3a, 0x34, 0x58, 0x97, 0xa1, 0x33, 0x23, 0xc2, 0x57, 0x50, 0xa3, + 0xa1, 0xe4, 0xcc, 0x8f, 0xbd, 0xab, 0xa9, 0x73, 0xfd, 0x18, 0xa6, 0x35, 0x42, 0x77, 0xa1, 0xea, + 0x93, 0x5d, 0x1c, 0x07, 0xd2, 0x55, 0x95, 0x3f, 0xf1, 0x0c, 0x32, 0x46, 0x87, 0xb5, 0x44, 0xb4, + 0xed, 0x74, 0x1d, 0x30, 0xdb, 0xb6, 0x39, 0x45, 0x7f, 0xb1, 0x60, 0x3e, 0xe6, 0x54, 0xb8, 0xfd, + 0xb1, 0x1b, 0x30, 0x0f, 0x07, 0x54, 0x8e, 0xdd, 0xe1, 0x81, 0x5d, 0xd0, 0x2a, 0x7c, 0x79, 0xf1, + 0x14, 0x76, 0x7c, 0x77, 0xd5, 0x33, 0x44, 0x7b, 0xfc, 0xb5, 0x61, 0x78, 0x78, 0x90, 0x94, 0xec, + 0x1b, 0x47, 0x87, 0x4b, 0xb5, 0x6d, 0xa7, 0x9b, 0x15, 0xed, 0x38, 0xb5, 0xf8, 0xd4, 0x66, 0xe4, + 0x40, 0x75, 0x74, 0xe0, 0x79, 0xee, 0x2e, 0x0d, 0x24, 0xe1, 0x7a, 0xea, 0x99, 0x3d, 0xe1, 0xdc, + 0xf4, 0xfe, 0xdf, 0xec, 0x74, 0x3a, 0xeb, 0x7a, 0xd3, 0xf1, 0xcd, 0x8e, 0xd7, 0x1c, 0x50, 0x2c, + 0xc9, 0x33, 0xfa, 0x0a, 0x80, 0x84, 0x1e, 0x1f, 0x47, 0xba, 0x93, 0x27, 0xbd, 0xb4, 0x71, 0x06, + 0xa5, 0xea, 0x5c, 0x0f, 0x26, 0x1b, 0x1f, 0xeb, 0x5f, 0xe1, 0x64, 0xb0, 0xe8, 0x31, 0xcc, 0xf5, + 0xf5, 0x6d, 0xdd, 0x4c, 0x02, 0x5d, 0x61, 0xec, 0xba, 0x9e, 0xa0, 0x7b, 0x93, 0x34, 0x7a, 0x08, + 0x66, 0xc9, 0x25, 0xa1, 0x9f, 0xd0, 0x95, 0x2f, 0x4f, 0x37, 0x93, 0x60, 0x1f, 0x84, 0xbe, 0x26, + 0xdb, 0x86, 0x52, 0x34, 0x74, 0xa9, 0x9f, 0x36, 0xd8, 0xbb, 0x97, 0xf6, 0xd9, 0xd6, 0xb0, 0xeb, + 0x9b, 0xde, 0x5a, 0x51, 0x79, 0xb9, 0xf5, 0xb0, 0xbb, 0x26, 0x9c, 0x62, 0xa4, 0x96, 0x4f, 0xb5, + 0x18, 0xf8, 0xb1, 0x5a, 0x4c, 0x07, 0x3e, 0x38, 0x33, 0x74, 0xce, 0xa8, 0xfa, 0xe7, 0xd7, 0xe0, + 0x7b, 0x00, 0xc7, 0x77, 0xc9, 0x22, 0x0b, 0x67, 0x20, 0xcb, 0x19, 0x64, 0xfd, 0x9f, 0x16, 0xd4, + 0x1c, 0x22, 0x24, 0xe3, 0x44, 0x25, 0x51, 0x42, 0xf0, 0x19, 0x14, 0x54, 0x1e, 0x9a, 0x1a, 0xf3, + 0x8e, 0x34, 0xd4, 0x5b, 0xd1, 0x2a, 0x14, 0x77, 0xa9, 0x1a, 0x72, 0x92, 0xd4, 0x5d, 0x39, 0x6b, + 0x46, 0xd2, 0x7d, 0xc7, 0x21, 0xfb, 0x31, 0x11, 0x52, 0x47, 0x5d, 0x5a, 0x08, 0x34, 0x12, 0xdd, + 0x84, 0x6a, 0x3a, 0xbc, 0x75, 0xfd, 0x17, 0x3a, 0x7d, 0xd3, 0x69, 0x24, 0x2b, 0xa8, 0xff, 0x39, + 0x0f, 0xd7, 0x8d, 0xca, 0x93, 0xca, 0xb3, 0x0e, 0xd7, 0x78, 0xb2, 0x94, 0x44, 0xd3, 0x15, 0xaa, + 0x63, 0xd5, 0x00, 0x75, 0x2c, 0x9d, 0xcc, 0x99, 0xdc, 0x7b, 0xe4, 0x4c, 0x17, 0x4a, 0x9c, 0xe8, + 0x59, 0x2c, 0x79, 0x83, 0xfa, 0xf4, 0x9d, 0x16, 0x31, 0x2f, 0x52, 0x43, 0x32, 0x4e, 0x27, 0xc8, + 0x84, 0x40, 0x4d, 0x90, 0x26, 0xc0, 0x93, 0xa2, 0xf4, 0xcb, 0x8b, 0xda, 0xfd, 0x09, 0xbb, 0x5c, + 0x18, 0xe1, 0xef, 0x11, 0x35, 0x7f, 0xcf, 0xc1, 0x7c, 0x2f, 0x0a, 0xa8, 0x5c, 0x0d, 0xfd, 0x9e, + 0x87, 0xa5, 0x34, 0xbd, 0xea, 0x8f, 0x50, 0xd2, 0xef, 0x68, 0x69, 0x07, 0xb8, 0x7f, 0xbe, 0xa6, + 0x67, 0xc0, 0x53, 0xed, 0xb5, 0x3e, 0x1d, 0xc5, 0x93, 0x1a, 0x22, 0x21, 0xcd, 0xd8, 0x34, 0xf7, + 0x9e, 0x36, 0x5d, 0x70, 0x61, 0xee, 0xad, 0xd3, 0xd0, 0x26, 0x4c, 0x13, 0xf5, 0x8a, 0x43, 0x52, + 0xfd, 0x6f, 0xbd, 0xd3, 0xd2, 0x93, 0xa4, 0x31, 0xfc, 0x29, 0x41, 0xfd, 0xaf, 0x79, 0x98, 0xe9, + 0xf4, 0x76, 0x9e, 0x72, 0x9a, 0x1a, 0xe7, 0xa6, 0x6a, 0x4f, 0x42, 0xd2, 0x30, 0x79, 0x1d, 0xb6, + 0x32, 0x83, 0x43, 0x56, 0x80, 0x7e, 0x0e, 0xd7, 0x54, 0xa5, 0x70, 0x23, 0x6d, 0x98, 0x24, 0x0a, + 0x27, 0x1b, 0x75, 0x0d, 0x49, 0x04, 0xe8, 0x0b, 0x98, 0x66, 0x49, 0xe4, 0xe9, 0x64, 0xa9, 0x9e, + 0xd9, 0x30, 0x3a, 0xbd, 0x1d, 0x13, 0x9e, 0xa9, 0x86, 0x06, 0x73, 0xfc, 0xa2, 0xcd, 0xd9, 0x73, + 0x61, 0x46, 0x94, 0xec, 0x8b, 0xb6, 0xc3, 0x9e, 0x0b, 0xf4, 0x07, 0x98, 0xf3, 0xd8, 0x28, 0x52, + 0xb9, 0xa7, 0xe6, 0x2c, 0x8f, 0xf9, 0xc4, 0x33, 0xed, 0xe9, 0x82, 0x6f, 0x02, 0x2a, 0x3d, 0x3a, + 0xc7, 0xb0, 0x74, 0x0e, 0xc9, 0x30, 0x75, 0x14, 0xd1, 0xa9, 0x1a, 0x5b, 0xfa, 0x91, 0x6a, 0x6c, + 0xfd, 0x29, 0xcc, 0xb5, 0xe3, 0x40, 0x5d, 0x28, 0xe3, 0x8e, 0xc9, 0x57, 0x12, 0xeb, 0xff, 0xfe, + 0x4a, 0x72, 0x6b, 0x05, 0xae, 0x9f, 0xba, 0x2a, 0x2a, 0x43, 0xe1, 0x11, 0x0b, 0x49, 0x6d, 0x4a, + 0x3d, 0x6d, 0xbc, 0xa4, 0x51, 0xcd, 0x6a, 0xdf, 0x7e, 0xf5, 0xc3, 0xe2, 0xd4, 0xab, 0xa3, 0x45, + 0xeb, 0xbb, 0xa3, 0x45, 0xeb, 0xfb, 0xa3, 0x45, 0xeb, 0xbf, 0x47, 0x8b, 0xd6, 0xdf, 0x5e, 0x2f, + 0x4e, 0x7d, 0xf7, 0x7a, 0x71, 0xea, 0xfb, 0xd7, 0x8b, 0x53, 0xdf, 0x56, 0x33, 0x1f, 0xa2, 0xfe, + 0x17, 0x00, 0x00, 0xff, 0xff, 0xae, 0x70, 0xff, 0xeb, 0x35, 0x13, 0x00, 0x00, } diff --git a/pkg/sql/execinfrapb/processors_bulk_io.proto b/pkg/sql/execinfrapb/processors_bulk_io.proto index 6248a60ce63e..2939f7e9b43a 100644 --- a/pkg/sql/execinfrapb/processors_bulk_io.proto +++ b/pkg/sql/execinfrapb/processors_bulk_io.proto @@ -142,12 +142,12 @@ message ReadImportDataSpec { message StreamIngestionDataSpec { // PartitionAddresses locate the partitions that produce events to be - // ingested. - repeated string partition_addresses = 1 [(gogoproto.customtype) = "github.com/cockroachdb/cockroach/pkg/ccl/streamingccl.PartitionAddress",(gogoproto.nullable) = false]; + // ingested. We don't set the casttype to avoid depending on ccl packages. + repeated string partition_addresses = 1; // The processor will ingest events from StartTime onwards. optional util.hlc.Timestamp start_time = 2 [(gogoproto.nullable) = false]; // StreamAddress locate the stream so that a stream client can be initialized. - optional string stream_address = 3 [(gogoproto.customtype) = "github.com/cockroachdb/cockroach/pkg/ccl/streamingccl.StreamAddress",(gogoproto.nullable) = false]; + optional string stream_address = 3 [(gogoproto.nullable) = false]; // JobID is the job ID of the stream ingestion job. optional int64 job_id = 4 [(gogoproto.nullable) = false, (gogoproto.customname) = "JobID"]; }