diff --git a/cmd/remote-storage/app/server.go b/cmd/remote-storage/app/server.go index 577df153f20..eecda1fb3c4 100644 --- a/cmd/remote-storage/app/server.go +++ b/cmd/remote-storage/app/server.go @@ -38,12 +38,11 @@ type storageFactory interface { CreateSpanReader() (spanstore.Reader, error) CreateSpanWriter() (spanstore.Writer, error) CreateDependencyReader() (dependencystore.Reader, error) - InitArchiveStorage(logger *zap.Logger) (spanstore.Reader, spanstore.Writer) } // NewServer creates and initializes Server. func NewServer(options *Options, storageFactory storageFactory, tm *tenancy.Manager, telset telemetry.Settings) (*Server, error) { - handler, err := createGRPCHandler(storageFactory, telset.Logger) + handler, err := createGRPCHandler(storageFactory) if err != nil { return nil, err } @@ -60,7 +59,7 @@ func NewServer(options *Options, storageFactory storageFactory, tm *tenancy.Mana }, nil } -func createGRPCHandler(f storageFactory, logger *zap.Logger) (*shared.GRPCHandler, error) { +func createGRPCHandler(f storageFactory) (*shared.GRPCHandler, error) { reader, err := f.CreateSpanReader() if err != nil { return nil, err @@ -81,10 +80,6 @@ func createGRPCHandler(f storageFactory, logger *zap.Logger) (*shared.GRPCHandle StreamingSpanWriter: func() spanstore.Writer { return nil }, } - ar, aw := f.InitArchiveStorage(logger) - impl.ArchiveSpanReader = func() spanstore.Reader { return ar } - impl.ArchiveSpanWriter = func() spanstore.Writer { return aw } - handler := shared.NewGRPCHandler(impl) return handler, nil } diff --git a/cmd/remote-storage/app/server_test.go b/cmd/remote-storage/app/server_test.go index 25603dc701d..1b3d430605b 100644 --- a/cmd/remote-storage/app/server_test.go +++ b/cmd/remote-storage/app/server_test.go @@ -160,7 +160,7 @@ func TestCreateGRPCHandler(t *testing.T) { depReader: depReader, } - h, err := createGRPCHandler(f, zap.NewNop()) + h, err := createGRPCHandler(f) require.NoError(t, err) writer.On("WriteSpan", mock.Anything, mock.Anything).Return(errors.New("writer error")) @@ -176,12 +176,6 @@ func TestCreateGRPCHandler(t *testing.T) { _, err = h.GetDependencies(context.Background(), &storage_v1.GetDependenciesRequest{}) require.ErrorContains(t, err, "deps error") - err = h.GetArchiveTrace(nil, nil) - require.ErrorContains(t, err, "not implemented") - - _, err = h.WriteArchiveSpan(context.Background(), nil) - require.ErrorContains(t, err, "not implemented") - err = h.WriteSpanStream(nil) assert.ErrorContains(t, err, "not implemented") } @@ -449,8 +443,6 @@ func validateGRPCServer(t *testing.T, hostPort string) { "jaeger.storage.v1.SpanWriterPlugin", "jaeger.storage.v1.DependenciesReaderPlugin", "jaeger.storage.v1.PluginCapabilities", - "jaeger.storage.v1.ArchiveSpanReaderPlugin", - "jaeger.storage.v1.ArchiveSpanWriterPlugin", "jaeger.storage.v1.StreamingSpanWriterPlugin", "grpc.health.v1.Health", }, diff --git a/plugin/storage/grpc/proto/storage.proto b/plugin/storage/grpc/proto/storage.proto index 3a0298456c2..1ae858faaab 100644 --- a/plugin/storage/grpc/proto/storage.proto +++ b/plugin/storage/grpc/proto/storage.proto @@ -167,11 +167,13 @@ service SpanReaderPlugin { rpc FindTraceIDs(FindTraceIDsRequest) returns (FindTraceIDsResponse); } +// This plugin is deprecated and is not used anymore. service ArchiveSpanWriterPlugin { // spanstore/Writer rpc WriteArchiveSpan(WriteSpanRequest) returns (WriteSpanResponse); } +// This plugin is deprecated and is not used anymore. service ArchiveSpanReaderPlugin { // spanstore/Reader rpc GetArchiveTrace(GetTraceRequest) returns (stream SpansResponseChunk); @@ -188,8 +190,8 @@ message CapabilitiesRequest { } message CapabilitiesResponse { - bool archiveSpanReader = 1; - bool archiveSpanWriter = 2; + bool archiveSpanReader = 1 [deprecated = true]; + bool archiveSpanWriter = 2 [deprecated = true]; bool streamingSpanWriter = 3; } diff --git a/plugin/storage/grpc/shared/grpc_handler.go b/plugin/storage/grpc/shared/grpc_handler.go index 3a2f3e3b681..255b1e6d165 100644 --- a/plugin/storage/grpc/shared/grpc_handler.go +++ b/plugin/storage/grpc/shared/grpc_handler.go @@ -38,9 +38,6 @@ type GRPCHandlerStorageImpl struct { SpanWriter func() spanstore.Writer DependencyReader func() dependencystore.Reader - ArchiveSpanReader func() spanstore.Reader - ArchiveSpanWriter func() spanstore.Writer - StreamingSpanWriter func() spanstore.Writer } @@ -53,16 +50,12 @@ func NewGRPCHandler(impl *GRPCHandlerStorageImpl) *GRPCHandler { func (s *GRPCHandler) Register(ss *grpc.Server, hs *health.Server) error { storage_v1.RegisterSpanReaderPluginServer(ss, s) storage_v1.RegisterSpanWriterPluginServer(ss, s) - storage_v1.RegisterArchiveSpanReaderPluginServer(ss, s) - storage_v1.RegisterArchiveSpanWriterPluginServer(ss, s) storage_v1.RegisterPluginCapabilitiesServer(ss, s) storage_v1.RegisterDependenciesReaderPluginServer(ss, s) storage_v1.RegisterStreamingSpanWriterPluginServer(ss, s) hs.SetServingStatus("jaeger.storage.v1.SpanReaderPlugin", grpc_health_v1.HealthCheckResponse_SERVING) hs.SetServingStatus("jaeger.storage.v1.SpanWriterPlugin", grpc_health_v1.HealthCheckResponse_SERVING) - hs.SetServingStatus("jaeger.storage.v1.ArchiveSpanReaderPlugin", grpc_health_v1.HealthCheckResponse_SERVING) - hs.SetServingStatus("jaeger.storage.v1.ArchiveSpanWriterPlugin", grpc_health_v1.HealthCheckResponse_SERVING) hs.SetServingStatus("jaeger.storage.v1.PluginCapabilities", grpc_health_v1.HealthCheckResponse_SERVING) hs.SetServingStatus("jaeger.storage.v1.DependenciesReaderPlugin", grpc_health_v1.HealthCheckResponse_SERVING) hs.SetServingStatus("jaeger.storage.v1.StreamingSpanWriterPlugin", grpc_health_v1.HealthCheckResponse_SERVING) @@ -244,45 +237,8 @@ func (*GRPCHandler) sendSpans(spans []*model.Span, sendFn func(*storage_v1.Spans func (s *GRPCHandler) Capabilities(context.Context, *storage_v1.CapabilitiesRequest) (*storage_v1.CapabilitiesResponse, error) { return &storage_v1.CapabilitiesResponse{ - ArchiveSpanReader: s.impl.ArchiveSpanReader() != nil, - ArchiveSpanWriter: s.impl.ArchiveSpanWriter() != nil, + ArchiveSpanReader: false, + ArchiveSpanWriter: false, StreamingSpanWriter: s.impl.StreamingSpanWriter() != nil, }, nil } - -func (s *GRPCHandler) GetArchiveTrace(r *storage_v1.GetTraceRequest, stream storage_v1.ArchiveSpanReaderPlugin_GetArchiveTraceServer) error { - reader := s.impl.ArchiveSpanReader() - if reader == nil { - return status.Error(codes.Unimplemented, "not implemented") - } - trace, err := reader.GetTrace(stream.Context(), spanstore.GetTraceParameters{ - TraceID: r.TraceID, - StartTime: r.StartTime, - EndTime: r.EndTime, - }) - if errors.Is(err, spanstore.ErrTraceNotFound) { - return status.Error(codes.NotFound, spanstore.ErrTraceNotFound.Error()) - } - if err != nil { - return err - } - - err = s.sendSpans(trace.Spans, stream.Send) - if err != nil { - return err - } - - return nil -} - -func (s *GRPCHandler) WriteArchiveSpan(ctx context.Context, r *storage_v1.WriteSpanRequest) (*storage_v1.WriteSpanResponse, error) { - writer := s.impl.ArchiveSpanWriter() - if writer == nil { - return nil, status.Error(codes.Unimplemented, "not implemented") - } - err := writer.WriteSpan(ctx, r.Span) - if err != nil { - return nil, err - } - return &storage_v1.WriteSpanResponse{}, nil -} diff --git a/plugin/storage/grpc/shared/grpc_handler_test.go b/plugin/storage/grpc/shared/grpc_handler_test.go index 1c3cc7cc838..77aed2630e3 100644 --- a/plugin/storage/grpc/shared/grpc_handler_test.go +++ b/plugin/storage/grpc/shared/grpc_handler_test.go @@ -76,12 +76,6 @@ func withGRPCServer(fn func(r *grpcServerTest)) { DependencyReader: func() dependencystore.Reader { return mockPlugin.depsReader }, - ArchiveSpanReader: func() spanstore.Reader { - return mockPlugin.spanReader - }, - ArchiveSpanWriter: func() spanstore.Writer { - return mockPlugin.spanWriter - }, StreamingSpanWriter: func() spanstore.Writer { return mockPlugin.streamWriter }, @@ -280,150 +274,11 @@ func TestGRPCServerGetDependencies(t *testing.T) { }) } -func TestGRPCServerGetArchiveTrace(t *testing.T) { - withGRPCServer(func(r *grpcServerTest) { - traceSteam := new(grpcMocks.SpanReaderPlugin_GetTraceServer) - traceSteam.On("Context").Return(context.Background()) - traceSteam.On("Send", &storage_v1.SpansResponseChunk{Spans: mockTraceSpans}). - Return(nil) - - var traceSpans []*model.Span - for i := range mockTraceSpans { - traceSpans = append(traceSpans, &mockTraceSpans[i]) - } - r.impl.spanReader.On("GetTrace", mock.Anything, spanstore.GetTraceParameters{TraceID: mockTraceID}). - Return(&model.Trace{Spans: traceSpans}, nil) - - err := r.server.GetArchiveTrace(&storage_v1.GetTraceRequest{ - TraceID: mockTraceID, - }, traceSteam) - require.NoError(t, err) - }) -} - -func TestGRPCServerGetArchiveTrace_NotFound(t *testing.T) { - withGRPCServer(func(r *grpcServerTest) { - traceSteam := new(grpcMocks.SpanReaderPlugin_GetTraceServer) - traceSteam.On("Context").Return(context.Background()) - - r.impl.spanReader.On("GetTrace", mock.Anything, spanstore.GetTraceParameters{TraceID: mockTraceID}). - Return(nil, spanstore.ErrTraceNotFound) - - err := r.server.GetArchiveTrace(&storage_v1.GetTraceRequest{ - TraceID: mockTraceID, - }, traceSteam) - assert.Equal(t, codes.NotFound, status.Code(err)) - }) -} - -func TestGRPCServerGetArchiveTrace_Error(t *testing.T) { - withGRPCServer(func(r *grpcServerTest) { - traceSteam := new(grpcMocks.SpanReaderPlugin_GetTraceServer) - traceSteam.On("Context").Return(context.Background()) - - r.impl.spanReader.On("GetTrace", mock.Anything, spanstore.GetTraceParameters{TraceID: mockTraceID}). - Return(nil, errors.New("some error")) - - err := r.server.GetArchiveTrace(&storage_v1.GetTraceRequest{ - TraceID: mockTraceID, - }, traceSteam) - require.Error(t, err) - }) -} - -func TestGRPCServerGetArchiveTrace_NoImpl(t *testing.T) { - withGRPCServer(func(r *grpcServerTest) { - r.server.impl.ArchiveSpanReader = func() spanstore.Reader { return nil } - traceSteam := new(grpcMocks.SpanReaderPlugin_GetTraceServer) - - r.impl.spanReader.On("GetTrace", mock.Anything, spanstore.GetTraceParameters{TraceID: mockTraceID}). - Return(nil, errors.New("some error")) - - err := r.server.GetArchiveTrace(&storage_v1.GetTraceRequest{ - TraceID: mockTraceID, - }, traceSteam) - assert.Equal(t, codes.Unimplemented, status.Code(err)) - }) -} - -func TestGRPCServerGetArchiveTrace_StreamError(t *testing.T) { - withGRPCServer(func(r *grpcServerTest) { - traceSteam := new(grpcMocks.SpanReaderPlugin_GetTraceServer) - traceSteam.On("Context").Return(context.Background()) - traceSteam.On("Send", &storage_v1.SpansResponseChunk{Spans: mockTraceSpans}). - Return(errors.New("some error")) - - var traceSpans []*model.Span - for i := range mockTraceSpans { - traceSpans = append(traceSpans, &mockTraceSpans[i]) - } - r.impl.spanReader.On("GetTrace", mock.Anything, spanstore.GetTraceParameters{TraceID: mockTraceID}). - Return(&model.Trace{Spans: traceSpans}, nil) - - err := r.server.GetArchiveTrace(&storage_v1.GetTraceRequest{ - TraceID: mockTraceID, - }, traceSteam) - require.Error(t, err) - }) -} - -func TestGRPCServerWriteArchiveSpan_NoImpl(t *testing.T) { - withGRPCServer(func(r *grpcServerTest) { - r.server.impl.ArchiveSpanWriter = func() spanstore.Writer { return nil } - - _, err := r.server.WriteArchiveSpan(context.Background(), &storage_v1.WriteSpanRequest{ - Span: &mockTraceSpans[0], - }) - assert.Equal(t, codes.Unimplemented, status.Code(err)) - }) -} - -func TestGRPCServerWriteArchiveSpan(t *testing.T) { - withGRPCServer(func(r *grpcServerTest) { - r.impl.spanWriter.On("WriteSpan", mock.Anything, &mockTraceSpans[0]). - Return(nil) - - s, err := r.server.WriteArchiveSpan(context.Background(), &storage_v1.WriteSpanRequest{ - Span: &mockTraceSpans[0], - }) - require.NoError(t, err) - assert.Equal(t, &storage_v1.WriteSpanResponse{}, s) - }) -} - -func TestGRPCServerWriteArchiveSpan_Error(t *testing.T) { - withGRPCServer(func(r *grpcServerTest) { - r.impl.spanWriter.On("WriteSpan", mock.Anything, &mockTraceSpans[0]). - Return(errors.New("some error")) - - _, err := r.server.WriteArchiveSpan(context.Background(), &storage_v1.WriteSpanRequest{ - Span: &mockTraceSpans[0], - }) - require.Error(t, err) - }) -} - func TestGRPCServerCapabilities(t *testing.T) { withGRPCServer(func(r *grpcServerTest) { capabilities, err := r.server.Capabilities(context.Background(), &storage_v1.CapabilitiesRequest{}) require.NoError(t, err) - assert.Equal(t, &storage_v1.CapabilitiesResponse{ArchiveSpanReader: true, ArchiveSpanWriter: true, StreamingSpanWriter: true}, capabilities) - }) -} - -func TestGRPCServerCapabilities_NoArchive(t *testing.T) { - withGRPCServer(func(r *grpcServerTest) { - r.server.impl.ArchiveSpanReader = func() spanstore.Reader { return nil } - r.server.impl.ArchiveSpanWriter = func() spanstore.Writer { return nil } - - capabilities, err := r.server.Capabilities(context.Background(), &storage_v1.CapabilitiesRequest{}) - require.NoError(t, err) - expected := &storage_v1.CapabilitiesResponse{ - ArchiveSpanReader: false, - ArchiveSpanWriter: false, - StreamingSpanWriter: true, - } - assert.Equal(t, expected, capabilities) + assert.Equal(t, &storage_v1.CapabilitiesResponse{ArchiveSpanReader: false, ArchiveSpanWriter: false, StreamingSpanWriter: true}, capabilities) }) } @@ -433,10 +288,7 @@ func TestGRPCServerCapabilities_NoStreamWriter(t *testing.T) { capabilities, err := r.server.Capabilities(context.Background(), &storage_v1.CapabilitiesRequest{}) require.NoError(t, err) - expected := &storage_v1.CapabilitiesResponse{ - ArchiveSpanReader: true, - ArchiveSpanWriter: true, - } + expected := &storage_v1.CapabilitiesResponse{} assert.Equal(t, expected, capabilities) }) } diff --git a/proto-gen/storage_v1/storage.pb.go b/proto-gen/storage_v1/storage.pb.go index a1ddeda72c0..09408d40156 100644 --- a/proto-gen/storage_v1/storage.pb.go +++ b/proto-gen/storage_v1/storage.pb.go @@ -934,8 +934,8 @@ func (m *CapabilitiesRequest) XXX_DiscardUnknown() { var xxx_messageInfo_CapabilitiesRequest proto.InternalMessageInfo type CapabilitiesResponse struct { - ArchiveSpanReader bool `protobuf:"varint,1,opt,name=archiveSpanReader,proto3" json:"archiveSpanReader,omitempty"` - ArchiveSpanWriter bool `protobuf:"varint,2,opt,name=archiveSpanWriter,proto3" json:"archiveSpanWriter,omitempty"` + ArchiveSpanReader bool `protobuf:"varint,1,opt,name=archiveSpanReader,proto3" json:"archiveSpanReader,omitempty"` // Deprecated: Do not use. + ArchiveSpanWriter bool `protobuf:"varint,2,opt,name=archiveSpanWriter,proto3" json:"archiveSpanWriter,omitempty"` // Deprecated: Do not use. StreamingSpanWriter bool `protobuf:"varint,3,opt,name=streamingSpanWriter,proto3" json:"streamingSpanWriter,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` @@ -975,6 +975,7 @@ func (m *CapabilitiesResponse) XXX_DiscardUnknown() { var xxx_messageInfo_CapabilitiesResponse proto.InternalMessageInfo +// Deprecated: Do not use. func (m *CapabilitiesResponse) GetArchiveSpanReader() bool { if m != nil { return m.ArchiveSpanReader @@ -982,6 +983,7 @@ func (m *CapabilitiesResponse) GetArchiveSpanReader() bool { return false } +// Deprecated: Do not use. func (m *CapabilitiesResponse) GetArchiveSpanWriter() bool { if m != nil { return m.ArchiveSpanWriter @@ -1022,78 +1024,79 @@ func init() { func init() { proto.RegisterFile("storage.proto", fileDescriptor_0d2c4ccf1453ffdb) } var fileDescriptor_0d2c4ccf1453ffdb = []byte{ - // 1135 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x57, 0xcd, 0x6f, 0x1b, 0x45, - 0x14, 0x67, 0x63, 0xbb, 0xb1, 0x9f, 0xdd, 0x36, 0x19, 0xbb, 0x74, 0xbb, 0xd0, 0x24, 0x2c, 0x34, - 0x09, 0x08, 0xd6, 0x8d, 0x41, 0x02, 0x41, 0x11, 0x22, 0x1f, 0x35, 0x01, 0x0a, 0x65, 0x13, 0xb5, - 0x12, 0x1f, 0xb5, 0xc6, 0xd9, 0x61, 0x33, 0xc4, 0x3b, 0xeb, 0xee, 0x87, 0x95, 0x08, 0xf5, 0xc6, - 0x1f, 0xc0, 0x91, 0x13, 0x27, 0x24, 0xfe, 0x0f, 0x4e, 0x3d, 0x72, 0xe6, 0x10, 0x50, 0xae, 0xfc, - 0x09, 0x5c, 0xd0, 0xce, 0xcc, 0x6e, 0xf6, 0x4b, 0x49, 0x9a, 0xe6, 0xe6, 0x79, 0xef, 0x37, 0xbf, - 0xf7, 0x39, 0xef, 0xad, 0xe1, 0xb2, 0x1f, 0xb8, 0x1e, 0xb6, 0x89, 0x31, 0xf6, 0xdc, 0xc0, 0x45, - 0xb3, 0x3f, 0x60, 0x62, 0x13, 0xcf, 0x88, 0xa5, 0x93, 0x15, 0xad, 0x63, 0xbb, 0xb6, 0xcb, 0xb5, - 0xdd, 0xe8, 0x97, 0x00, 0x6a, 0xf3, 0xb6, 0xeb, 0xda, 0x23, 0xd2, 0xe5, 0xa7, 0x61, 0xf8, 0x7d, - 0x37, 0xa0, 0x0e, 0xf1, 0x03, 0xec, 0x8c, 0x25, 0x60, 0x2e, 0x0f, 0xb0, 0x42, 0x0f, 0x07, 0xd4, - 0x65, 0x52, 0xdf, 0x74, 0x5c, 0x8b, 0x8c, 0xc4, 0x41, 0xff, 0x55, 0x81, 0x17, 0xfb, 0x24, 0x58, - 0x27, 0x63, 0xc2, 0x2c, 0xc2, 0x76, 0x28, 0xf1, 0x4d, 0xf2, 0x38, 0x24, 0x7e, 0x80, 0xd6, 0x00, - 0xfc, 0x00, 0x7b, 0xc1, 0x20, 0x32, 0xa0, 0x2a, 0x0b, 0xca, 0x72, 0xb3, 0xa7, 0x19, 0x82, 0xdc, - 0x88, 0xc9, 0x8d, 0xed, 0xd8, 0xfa, 0x6a, 0xfd, 0xe9, 0xe1, 0xfc, 0x0b, 0x3f, 0xff, 0x3d, 0xaf, - 0x98, 0x0d, 0x7e, 0x2f, 0xd2, 0xa0, 0x8f, 0xa0, 0x4e, 0x98, 0x25, 0x28, 0xa6, 0x9e, 0x81, 0x62, - 0x9a, 0x30, 0x2b, 0x92, 0xeb, 0x43, 0xb8, 0x5e, 0xf0, 0xcf, 0x1f, 0xbb, 0xcc, 0x27, 0xa8, 0x0f, - 0x2d, 0x2b, 0x25, 0x57, 0x95, 0x85, 0xca, 0x72, 0xb3, 0x77, 0xd3, 0x90, 0x99, 0xc4, 0x63, 0x3a, - 0x98, 0xf4, 0x8c, 0xe4, 0xea, 0xc1, 0xe7, 0x94, 0xed, 0xad, 0x56, 0x23, 0x13, 0x66, 0xe6, 0xa2, - 0xfe, 0x01, 0xcc, 0x3c, 0xf4, 0x68, 0x40, 0xb6, 0xc6, 0x98, 0xc5, 0xd1, 0x2f, 0x41, 0xd5, 0x1f, - 0x63, 0x26, 0xe3, 0x6e, 0xe7, 0x48, 0x39, 0x92, 0x03, 0xf4, 0x36, 0xcc, 0xa6, 0x2e, 0x0b, 0xd7, - 0xf4, 0x0e, 0xa0, 0xb5, 0x91, 0xeb, 0x13, 0xae, 0xf1, 0x24, 0xa7, 0x7e, 0x0d, 0xda, 0x19, 0xa9, - 0x04, 0xff, 0xa7, 0xc0, 0xd5, 0x3e, 0x09, 0xb6, 0x3d, 0xbc, 0x43, 0x62, 0xf3, 0x43, 0xa8, 0x07, - 0xd1, 0x79, 0x40, 0x2d, 0xee, 0x42, 0x6b, 0xb5, 0x1f, 0x39, 0xfe, 0xd7, 0xe1, 0xfc, 0x3b, 0x36, - 0x0d, 0x76, 0xc3, 0xa1, 0xb1, 0xe3, 0x3a, 0x5d, 0xe1, 0x54, 0x04, 0xa4, 0xcc, 0x96, 0xa7, 0xb7, - 0xa8, 0x35, 0xea, 0xf2, 0x12, 0x77, 0x27, 0x2b, 0x06, 0x27, 0xdd, 0x5c, 0x3f, 0x3a, 0x9c, 0x9f, - 0x96, 0x3f, 0xcd, 0x69, 0x4e, 0xbc, 0x69, 0xe5, 0x0a, 0x3c, 0xf5, 0xfc, 0x05, 0xae, 0x9c, 0xa7, - 0xc0, 0x1d, 0x40, 0x7d, 0x12, 0x6c, 0x11, 0x6f, 0x42, 0x77, 0x92, 0xe6, 0xd3, 0x57, 0xa0, 0x9d, - 0x91, 0xca, 0x92, 0x6b, 0x50, 0xf7, 0xa5, 0x8c, 0x97, 0xbb, 0x61, 0x26, 0x67, 0xfd, 0x1e, 0x74, - 0xfa, 0x24, 0xf8, 0x72, 0x4c, 0x44, 0xb7, 0x27, 0x7d, 0xac, 0xc2, 0xb4, 0xc4, 0xf0, 0x4c, 0x36, - 0xcc, 0xf8, 0x88, 0x5e, 0x82, 0x46, 0x54, 0xc2, 0xc1, 0x1e, 0x65, 0x16, 0x8f, 0x3f, 0xa2, 0x1b, - 0x63, 0xf6, 0x19, 0x65, 0x96, 0x7e, 0x07, 0x1a, 0x09, 0x17, 0x42, 0x50, 0x65, 0xd8, 0x89, 0x09, - 0xf8, 0xef, 0x93, 0x6f, 0x3f, 0x81, 0x6b, 0x39, 0x67, 0x64, 0x04, 0x8b, 0x70, 0xc5, 0x8d, 0xa5, - 0x5f, 0x60, 0x27, 0x89, 0x23, 0x27, 0x45, 0x77, 0x00, 0x12, 0x89, 0xaf, 0x4e, 0xf1, 0xd6, 0x7e, - 0xd9, 0x28, 0x0c, 0x09, 0x23, 0x31, 0x61, 0xa6, 0xf0, 0xfa, 0xef, 0x55, 0xe8, 0xf0, 0x7a, 0x7f, - 0x15, 0x12, 0xef, 0xe0, 0x3e, 0xf6, 0xb0, 0x43, 0x02, 0xe2, 0xf9, 0xe8, 0x15, 0x68, 0xc9, 0xe8, - 0x07, 0xa9, 0x80, 0x9a, 0x52, 0x16, 0x99, 0x46, 0xb7, 0x52, 0x1e, 0x0a, 0x90, 0x08, 0xee, 0x72, - 0xc6, 0x43, 0xb4, 0x01, 0xd5, 0x00, 0xdb, 0xbe, 0x5a, 0xe1, 0xae, 0xad, 0x94, 0xb8, 0x56, 0xe6, - 0x80, 0xb1, 0x8d, 0x6d, 0x7f, 0x83, 0x05, 0xde, 0x81, 0xc9, 0xaf, 0xa3, 0x4f, 0xe1, 0xca, 0x71, - 0x13, 0x0e, 0x1c, 0xca, 0xd4, 0xea, 0x33, 0x74, 0x51, 0x2b, 0x69, 0xc4, 0x7b, 0x94, 0xe5, 0xb9, - 0xf0, 0xbe, 0x5a, 0x3b, 0x1f, 0x17, 0xde, 0x47, 0x77, 0xa1, 0x15, 0xcf, 0x4d, 0xee, 0xd5, 0x25, - 0xce, 0x74, 0xa3, 0xc0, 0xb4, 0x2e, 0x41, 0x82, 0xe8, 0x97, 0x88, 0xa8, 0x19, 0x5f, 0x8c, 0x7c, - 0xca, 0xf0, 0xe0, 0x7d, 0x75, 0xfa, 0x3c, 0x3c, 0x78, 0x1f, 0xdd, 0x04, 0x60, 0xa1, 0x33, 0xe0, - 0x6f, 0xd7, 0x57, 0xeb, 0x0b, 0xca, 0x72, 0xcd, 0x6c, 0xb0, 0xd0, 0xe1, 0x49, 0xf6, 0xb5, 0x77, - 0xa1, 0x91, 0x64, 0x16, 0xcd, 0x40, 0x65, 0x8f, 0x1c, 0xc8, 0xda, 0x46, 0x3f, 0x51, 0x07, 0x6a, - 0x13, 0x3c, 0x0a, 0xe3, 0x52, 0x8a, 0xc3, 0xfb, 0x53, 0xef, 0x29, 0xba, 0x09, 0xb3, 0x77, 0x29, - 0xb3, 0x04, 0x4d, 0xfc, 0x64, 0x3e, 0x84, 0xda, 0xe3, 0xa8, 0x6e, 0x72, 0xfa, 0x2d, 0x9d, 0xb1, - 0xb8, 0xa6, 0xb8, 0xa5, 0x6f, 0x00, 0x8a, 0xa6, 0x61, 0xd2, 0xf4, 0x6b, 0xbb, 0x21, 0xdb, 0x43, - 0x5d, 0xa8, 0x45, 0xcf, 0x23, 0x9e, 0xd3, 0x65, 0x23, 0x55, 0x4e, 0x67, 0x81, 0xd3, 0xb7, 0xa1, - 0x9d, 0xb8, 0xb6, 0xb9, 0x7e, 0x51, 0xce, 0x3d, 0x81, 0x4e, 0x96, 0x55, 0x3e, 0x4c, 0x02, 0x8d, - 0x78, 0xe2, 0x0a, 0x17, 0x5b, 0xab, 0x9f, 0x3c, 0xe7, 0xc8, 0xad, 0x27, 0x46, 0xea, 0x72, 0xe6, - 0xfa, 0x7c, 0x07, 0xe0, 0x31, 0x1e, 0xd2, 0x11, 0x0d, 0x8e, 0x97, 0xad, 0xfe, 0x9b, 0x02, 0x9d, - 0xac, 0x5c, 0xba, 0xf5, 0x26, 0xcc, 0x62, 0x6f, 0x67, 0x97, 0x4e, 0xe4, 0x82, 0xc1, 0x16, 0xf1, - 0x78, 0xe4, 0x75, 0xb3, 0xa8, 0xc8, 0xa1, 0xc5, 0x9e, 0xe1, 0x35, 0xcf, 0xa2, 0x85, 0x02, 0xdd, - 0x86, 0xb6, 0x1f, 0x78, 0x04, 0x3b, 0x94, 0xd9, 0x29, 0x7c, 0x85, 0xe3, 0xcb, 0x54, 0xbd, 0x3f, - 0x14, 0x98, 0x39, 0x3e, 0xde, 0x1f, 0x85, 0x36, 0x65, 0xe8, 0x01, 0x34, 0x92, 0x0d, 0x88, 0x5e, - 0x2d, 0x29, 0x47, 0x7e, 0xb9, 0x6a, 0xaf, 0x9d, 0x0c, 0x92, 0xa1, 0x3f, 0x80, 0x1a, 0x5f, 0x97, - 0xe8, 0x56, 0x09, 0xbc, 0xb8, 0x5e, 0xb5, 0xc5, 0xd3, 0x60, 0x82, 0xb7, 0xf7, 0x23, 0xdc, 0xd8, - 0x2a, 0xc6, 0x26, 0x83, 0x79, 0x04, 0x57, 0x13, 0x4f, 0x04, 0xea, 0x02, 0x43, 0x5a, 0x56, 0x7a, - 0xff, 0x56, 0x44, 0x06, 0x45, 0xc1, 0xa4, 0xd1, 0x87, 0x50, 0x8f, 0x3f, 0x00, 0x90, 0x5e, 0x42, - 0x94, 0xfb, 0x3a, 0xd0, 0xca, 0x12, 0x52, 0x7c, 0x71, 0xb7, 0x15, 0xf4, 0x2d, 0x34, 0x53, 0x6b, - 0xb4, 0x34, 0x91, 0xc5, 0xe5, 0x5b, 0x9a, 0xc8, 0xb2, 0x6d, 0x3c, 0x84, 0xcb, 0x99, 0x25, 0x87, - 0x96, 0xca, 0x2f, 0x16, 0x76, 0xb2, 0xb6, 0x7c, 0x3a, 0x50, 0xda, 0xf8, 0x06, 0xe0, 0x78, 0x3e, - 0xa1, 0xb2, 0x2c, 0x17, 0xc6, 0xd7, 0xd9, 0xd3, 0x33, 0x80, 0x56, 0x7a, 0x16, 0xa0, 0xc5, 0x93, - 0xe8, 0x8f, 0x47, 0x90, 0xb6, 0x74, 0x2a, 0x4e, 0xb6, 0xda, 0x3e, 0x5c, 0xff, 0x38, 0xff, 0xec, - 0x64, 0xcd, 0xbf, 0x93, 0x1f, 0x9d, 0x29, 0xfd, 0x05, 0x76, 0x5a, 0xef, 0x20, 0x63, 0x39, 0xd3, - 0x6d, 0x8f, 0xf8, 0xe7, 0xa6, 0xd4, 0x5e, 0x7c, 0xd3, 0xf5, 0x7e, 0x52, 0x40, 0xcd, 0x7e, 0xb0, - 0xa7, 0x8c, 0xef, 0x72, 0xe3, 0x69, 0x35, 0x7a, 0xbd, 0xdc, 0x78, 0xc9, 0x7f, 0x12, 0xed, 0x8d, - 0xb3, 0x40, 0x65, 0x06, 0x42, 0x40, 0xc2, 0x66, 0x7a, 0xae, 0x46, 0x25, 0xcf, 0x9c, 0x4b, 0x87, - 0x46, 0x71, 0x40, 0x97, 0x96, 0xbc, 0x6c, 0x60, 0xaf, 0xaa, 0x4f, 0x8f, 0xe6, 0x94, 0x3f, 0x8f, - 0xe6, 0x94, 0x7f, 0x8e, 0xe6, 0x94, 0xaf, 0x41, 0xc2, 0x07, 0x93, 0x95, 0xe1, 0x25, 0xbe, 0xec, - 0xdf, 0xfe, 0x3f, 0x00, 0x00, 0xff, 0xff, 0xce, 0x76, 0x7d, 0x55, 0xfa, 0x0d, 0x00, 0x00, + // 1142 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x57, 0x4f, 0x73, 0xdb, 0x44, + 0x14, 0x47, 0x89, 0xdd, 0xd8, 0xcf, 0x4e, 0x9b, 0xac, 0x5d, 0xaa, 0x0a, 0x9a, 0x04, 0x41, 0x93, + 0xc0, 0x0c, 0x72, 0x62, 0x98, 0x81, 0x81, 0x32, 0x0c, 0x4e, 0x52, 0x13, 0xa0, 0x50, 0x94, 0x4c, + 0x3b, 0xc3, 0x9f, 0x7a, 0xd6, 0xd1, 0xa2, 0x2c, 0xb1, 0x56, 0xae, 0xfe, 0x78, 0x92, 0x61, 0x7a, + 0xe3, 0x03, 0x70, 0xe4, 0xc4, 0x95, 0x0b, 0x9f, 0x82, 0x53, 0x8f, 0x9c, 0x39, 0x04, 0x26, 0x57, + 0x3e, 0x02, 0x97, 0x8e, 0x76, 0x57, 0xb2, 0x64, 0x69, 0x92, 0x34, 0xcd, 0xcd, 0xfb, 0xf6, 0xf7, + 0x7e, 0xef, 0xef, 0xbe, 0x27, 0xc3, 0xac, 0x1f, 0xb8, 0x1e, 0xb6, 0x89, 0x31, 0xf4, 0xdc, 0xc0, + 0x45, 0xf3, 0x3f, 0x62, 0x62, 0x13, 0xcf, 0x88, 0xa5, 0xa3, 0x75, 0xad, 0x69, 0xbb, 0xb6, 0xcb, + 0x6f, 0x5b, 0xd1, 0x2f, 0x01, 0xd4, 0x16, 0x6d, 0xd7, 0xb5, 0x07, 0xa4, 0xc5, 0x4f, 0xfd, 0xf0, + 0x87, 0x56, 0x40, 0x1d, 0xe2, 0x07, 0xd8, 0x19, 0x4a, 0xc0, 0xc2, 0x24, 0xc0, 0x0a, 0x3d, 0x1c, + 0x50, 0x97, 0xc9, 0xfb, 0x9a, 0xe3, 0x5a, 0x64, 0x20, 0x0e, 0xfa, 0x6f, 0x0a, 0xbc, 0xdc, 0x25, + 0xc1, 0x26, 0x19, 0x12, 0x66, 0x11, 0xb6, 0x47, 0x89, 0x6f, 0x92, 0xc7, 0x21, 0xf1, 0x03, 0xb4, + 0x01, 0xe0, 0x07, 0xd8, 0x0b, 0x7a, 0x91, 0x01, 0x55, 0x59, 0x52, 0x56, 0x6b, 0x6d, 0xcd, 0x10, + 0xe4, 0x46, 0x4c, 0x6e, 0xec, 0xc6, 0xd6, 0x3b, 0x95, 0xa7, 0xc7, 0x8b, 0x2f, 0xfd, 0xf2, 0xcf, + 0xa2, 0x62, 0x56, 0xb9, 0x5e, 0x74, 0x83, 0x3e, 0x86, 0x0a, 0x61, 0x96, 0xa0, 0x98, 0x7a, 0x0e, + 0x8a, 0x19, 0xc2, 0xac, 0x48, 0xae, 0xf7, 0xe1, 0x46, 0xce, 0x3f, 0x7f, 0xe8, 0x32, 0x9f, 0xa0, + 0x2e, 0xd4, 0xad, 0x94, 0x5c, 0x55, 0x96, 0xa6, 0x57, 0x6b, 0xed, 0x5b, 0x86, 0xcc, 0x24, 0x1e, + 0xd2, 0xde, 0xa8, 0x6d, 0x24, 0xaa, 0x47, 0x5f, 0x50, 0x76, 0xd0, 0x29, 0x45, 0x26, 0xcc, 0x8c, + 0xa2, 0xfe, 0x21, 0xcc, 0x3d, 0xf4, 0x68, 0x40, 0x76, 0x86, 0x98, 0xc5, 0xd1, 0xaf, 0x40, 0xc9, + 0x1f, 0x62, 0x26, 0xe3, 0x6e, 0x4c, 0x90, 0x72, 0x24, 0x07, 0xe8, 0x0d, 0x98, 0x4f, 0x29, 0x0b, + 0xd7, 0xf4, 0x26, 0xa0, 0x8d, 0x81, 0xeb, 0x13, 0x7e, 0xe3, 0x49, 0x4e, 0xfd, 0x3a, 0x34, 0x32, + 0x52, 0x09, 0xfe, 0x5f, 0x81, 0x6b, 0x5d, 0x12, 0xec, 0x7a, 0x78, 0x8f, 0xc4, 0xe6, 0xfb, 0x50, + 0x09, 0xa2, 0x73, 0x8f, 0x5a, 0xdc, 0x85, 0x7a, 0xa7, 0x1b, 0x39, 0xfe, 0xf7, 0xf1, 0xe2, 0xbb, + 0x36, 0x0d, 0xf6, 0xc3, 0xbe, 0xb1, 0xe7, 0x3a, 0x2d, 0xe1, 0x54, 0x04, 0xa4, 0xcc, 0x96, 0xa7, + 0xb7, 0xa9, 0x35, 0x68, 0xf1, 0x12, 0xb7, 0x46, 0xeb, 0x06, 0x27, 0xdd, 0xde, 0x3c, 0x39, 0x5e, + 0x9c, 0x91, 0x3f, 0xcd, 0x19, 0x4e, 0xbc, 0x6d, 0x4d, 0x14, 0x78, 0xea, 0xc5, 0x0b, 0x3c, 0x7d, + 0x91, 0x02, 0x37, 0x01, 0x75, 0x49, 0xb0, 0x43, 0xbc, 0x11, 0xdd, 0x4b, 0x9a, 0x4f, 0x5f, 0x87, + 0x46, 0x46, 0x2a, 0x4b, 0xae, 0x41, 0xc5, 0x97, 0x32, 0x5e, 0xee, 0xaa, 0x99, 0x9c, 0xf5, 0x7b, + 0xd0, 0xec, 0x92, 0xe0, 0xab, 0x21, 0x11, 0xdd, 0x9e, 0xf4, 0xb1, 0x0a, 0x33, 0x12, 0xc3, 0x33, + 0x59, 0x35, 0xe3, 0x23, 0x7a, 0x05, 0xaa, 0x51, 0x09, 0x7b, 0x07, 0x94, 0x59, 0x3c, 0xfe, 0x88, + 0x6e, 0x88, 0xd9, 0xe7, 0x94, 0x59, 0xfa, 0x1d, 0xa8, 0x26, 0x5c, 0x08, 0x41, 0x89, 0x61, 0x27, + 0x26, 0xe0, 0xbf, 0x4f, 0xd7, 0x7e, 0x02, 0xd7, 0x27, 0x9c, 0x91, 0x11, 0x2c, 0xc3, 0x55, 0x37, + 0x96, 0x7e, 0x89, 0x9d, 0x24, 0x8e, 0x09, 0x29, 0xba, 0x03, 0x90, 0x48, 0x7c, 0x75, 0x8a, 0xb7, + 0xf6, 0xab, 0x46, 0x6e, 0x48, 0x18, 0x89, 0x09, 0x33, 0x85, 0xd7, 0x7f, 0x2f, 0x41, 0x93, 0xd7, + 0xfb, 0xeb, 0x90, 0x78, 0x47, 0xf7, 0xb1, 0x87, 0x1d, 0x12, 0x10, 0xcf, 0x47, 0xaf, 0x41, 0x5d, + 0x46, 0xdf, 0x4b, 0x05, 0x54, 0x93, 0xb2, 0xc8, 0x34, 0xba, 0x9d, 0xf2, 0x50, 0x80, 0x44, 0x70, + 0xb3, 0x19, 0x0f, 0xd1, 0x16, 0x94, 0x02, 0x6c, 0xfb, 0xea, 0x34, 0x77, 0x6d, 0xbd, 0xc0, 0xb5, + 0x22, 0x07, 0x8c, 0x5d, 0x6c, 0xfb, 0x5b, 0x2c, 0xf0, 0x8e, 0x4c, 0xae, 0x8e, 0x3e, 0x83, 0xab, + 0xe3, 0x26, 0xec, 0x39, 0x94, 0xa9, 0xa5, 0xe7, 0xe8, 0xa2, 0x7a, 0xd2, 0x88, 0xf7, 0x28, 0x9b, + 0xe4, 0xc2, 0x87, 0x6a, 0xf9, 0x62, 0x5c, 0xf8, 0x10, 0xdd, 0x85, 0x7a, 0x3c, 0x37, 0xb9, 0x57, + 0x57, 0x38, 0xd3, 0xcd, 0x1c, 0xd3, 0xa6, 0x04, 0x09, 0xa2, 0x5f, 0x23, 0xa2, 0x5a, 0xac, 0x18, + 0xf9, 0x94, 0xe1, 0xc1, 0x87, 0xea, 0xcc, 0x45, 0x78, 0xf0, 0x21, 0xba, 0x05, 0xc0, 0x42, 0xa7, + 0xc7, 0xdf, 0xae, 0xaf, 0x56, 0x96, 0x94, 0xd5, 0xb2, 0x59, 0x65, 0xa1, 0xc3, 0x93, 0xec, 0x6b, + 0xef, 0x41, 0x35, 0xc9, 0x2c, 0x9a, 0x83, 0xe9, 0x03, 0x72, 0x24, 0x6b, 0x1b, 0xfd, 0x44, 0x4d, + 0x28, 0x8f, 0xf0, 0x20, 0x8c, 0x4b, 0x29, 0x0e, 0x1f, 0x4c, 0xbd, 0xaf, 0xe8, 0x26, 0xcc, 0xdf, + 0xa5, 0xcc, 0x12, 0x34, 0xf1, 0x93, 0xf9, 0x08, 0xca, 0x8f, 0xa3, 0xba, 0xc9, 0xe9, 0xb7, 0x72, + 0xce, 0xe2, 0x9a, 0x42, 0x4b, 0xdf, 0x02, 0x14, 0x4d, 0xc3, 0xa4, 0xe9, 0x37, 0xf6, 0x43, 0x76, + 0x80, 0x5a, 0x50, 0x8e, 0x9e, 0x47, 0x3c, 0xa7, 0x8b, 0x46, 0xaa, 0x9c, 0xce, 0x02, 0xa7, 0xef, + 0x42, 0x23, 0x71, 0x6d, 0x7b, 0xf3, 0xb2, 0x9c, 0x7b, 0x02, 0xcd, 0x2c, 0xab, 0x7c, 0x98, 0x04, + 0xaa, 0xf1, 0xc4, 0x15, 0x2e, 0xd6, 0x3b, 0x9f, 0xbe, 0xe0, 0xc8, 0xad, 0x24, 0x46, 0x2a, 0x72, + 0xe6, 0xfa, 0x7c, 0x07, 0xe0, 0x21, 0xee, 0xd3, 0x01, 0x0d, 0xc6, 0xcb, 0x56, 0xff, 0x43, 0x81, + 0x66, 0x56, 0x2e, 0xdd, 0x5a, 0x83, 0x79, 0xec, 0xed, 0xed, 0xd3, 0x91, 0x5c, 0x30, 0xd8, 0x22, + 0x1e, 0x8f, 0xbc, 0xd2, 0x99, 0x52, 0x15, 0x33, 0x7f, 0x39, 0xa1, 0x21, 0x76, 0x0d, 0xaf, 0x7b, + 0x5e, 0x43, 0x5c, 0xa2, 0x35, 0x68, 0xf8, 0x81, 0x47, 0xb0, 0x43, 0x99, 0x9d, 0xd2, 0x89, 0xc6, + 0x79, 0xc5, 0x2c, 0xba, 0x6a, 0xff, 0xa9, 0xc0, 0xdc, 0xf8, 0x78, 0x7f, 0x10, 0xda, 0x94, 0xa1, + 0x07, 0x50, 0x4d, 0x36, 0x21, 0x7a, 0xbd, 0xa0, 0x2c, 0x93, 0x4b, 0x56, 0x7b, 0xe3, 0x74, 0x90, + 0x4c, 0xc1, 0x03, 0x28, 0xf3, 0xb5, 0x89, 0x6e, 0x17, 0xc0, 0xf3, 0x6b, 0x56, 0x5b, 0x3e, 0x0b, + 0x26, 0x78, 0xdb, 0x3f, 0xc1, 0xcd, 0x9d, 0x7c, 0x6c, 0x32, 0x98, 0x47, 0x70, 0x2d, 0xf1, 0x44, + 0xa0, 0x2e, 0x31, 0xa4, 0x55, 0xa5, 0xfd, 0xdf, 0xb4, 0xc8, 0xa0, 0x28, 0x9a, 0x34, 0xfa, 0x10, + 0x2a, 0xf1, 0x87, 0x00, 0xd2, 0x0b, 0x88, 0x26, 0xbe, 0x12, 0xb4, 0xa2, 0x84, 0xe4, 0x5f, 0xde, + 0x9a, 0x82, 0xbe, 0x83, 0x5a, 0x6a, 0x9d, 0x16, 0x26, 0x32, 0xbf, 0x84, 0x0b, 0x13, 0x59, 0xb4, + 0x95, 0xfb, 0x30, 0x9b, 0x59, 0x76, 0x68, 0xa5, 0x58, 0x31, 0xb7, 0x9b, 0xb5, 0xd5, 0xb3, 0x81, + 0xd2, 0xc6, 0xb7, 0x00, 0xe3, 0x39, 0x85, 0x8a, 0xb2, 0x9c, 0x1b, 0x63, 0xe7, 0x4f, 0x4f, 0x0f, + 0xea, 0xe9, 0x99, 0x80, 0x96, 0x4f, 0xa3, 0x1f, 0x8f, 0x22, 0x6d, 0xe5, 0x4c, 0x9c, 0x6c, 0xb5, + 0x43, 0xb8, 0xf1, 0xc9, 0xe4, 0xb3, 0x93, 0x35, 0xff, 0x5e, 0x7e, 0x7c, 0xa6, 0xee, 0x2f, 0xb1, + 0xd3, 0xda, 0x47, 0x19, 0xcb, 0x99, 0x6e, 0x7b, 0xc4, 0x3f, 0x3b, 0xe5, 0xed, 0xe5, 0x37, 0x5d, + 0xfb, 0x67, 0x05, 0xd4, 0xec, 0x87, 0x7b, 0xca, 0xf8, 0x3e, 0x37, 0x9e, 0xbe, 0x46, 0x6f, 0x16, + 0x1b, 0x2f, 0xf8, 0x6f, 0xa2, 0xbd, 0x75, 0x1e, 0xa8, 0xcc, 0x40, 0x08, 0x48, 0xd8, 0x4c, 0xcf, + 0xd7, 0xa8, 0xe4, 0x99, 0x73, 0xe1, 0xd0, 0xc8, 0x0f, 0xea, 0xc2, 0x92, 0x17, 0x0d, 0xee, 0x8e, + 0xfa, 0xf4, 0x64, 0x41, 0xf9, 0xeb, 0x64, 0x41, 0xf9, 0xf7, 0x64, 0x41, 0xf9, 0x06, 0x24, 0xbc, + 0x37, 0x5a, 0xef, 0x5f, 0xe1, 0x4b, 0xff, 0x9d, 0x67, 0x01, 0x00, 0x00, 0xff, 0xff, 0x6c, 0xd4, + 0x66, 0xf9, 0x02, 0x0e, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used.