From 94b902b1a4101c4fce5e0fe6b05497210a083159 Mon Sep 17 00:00:00 2001 From: trestinlsd Date: Thu, 11 Apr 2024 11:28:12 +0800 Subject: [PATCH] fix: fix some action errors --- precompiles/avsTask/task_test.go | 5 - proto/exocore/task/v1/query.proto | 2 - proto/exocore/task/v1/tx.proto | 10 +- x/avs_task/module.go | 27 --- x/avs_task/types/genesis.go | 20 -- x/avs_task/types/genesis.pb.go | 323 ------------------------------ x/avs_task/types/genesis_test.go | 41 ---- x/avs_task/types/params.go | 47 ----- x/avs_task/types/params.pb.go | 267 ------------------------ x/avs_task/types/query.pb.go | 44 ++-- x/avs_task/types/tx.pb.go | 69 +++---- 11 files changed, 60 insertions(+), 795 deletions(-) delete mode 100644 x/avs_task/types/genesis.go delete mode 100644 x/avs_task/types/genesis.pb.go delete mode 100644 x/avs_task/types/genesis_test.go delete mode 100644 x/avs_task/types/params.go delete mode 100644 x/avs_task/types/params.pb.go diff --git a/precompiles/avsTask/task_test.go b/precompiles/avsTask/task_test.go index 393227cf8..43d4598bc 100644 --- a/precompiles/avsTask/task_test.go +++ b/precompiles/avsTask/task_test.go @@ -22,11 +22,6 @@ func (s *TaskPrecompileTestSuite) TestIsTransaction() { s.precompile.Methods[task.MethodRegisterAVSTask].Name, true, }, - { - task.MethodRegisterBLSPublicKey, - s.precompile.Methods[task.MethodRegisterBLSPublicKey].Name, - true, - }, { "invalid", "invalid", diff --git a/proto/exocore/task/v1/query.proto b/proto/exocore/task/v1/query.proto index 17a4f5751..a09476dc9 100644 --- a/proto/exocore/task/v1/query.proto +++ b/proto/exocore/task/v1/query.proto @@ -3,9 +3,7 @@ package exocore.task.v1; import "cosmos_proto/cosmos.proto"; import "exocore/task/v1/tx.proto"; -import "gogoproto/gogo.proto"; import "google/api/annotations.proto"; -import "tendermint/crypto/keys.proto"; option go_package = "github.com/ExocoreNetwork/exocore/x/avs_task/types"; diff --git a/proto/exocore/task/v1/tx.proto b/proto/exocore/task/v1/tx.proto index 4af07cfdd..aebbc6b2f 100644 --- a/proto/exocore/task/v1/tx.proto +++ b/proto/exocore/task/v1/tx.proto @@ -9,11 +9,11 @@ import "gogoproto/gogo.proto"; option go_package = "github.com/ExocoreNetwork/exocore/x/avs_task/types"; // TaskContractInfo is the task info. message TaskContractInfo { - string TaskContractAddress = 1; - string Name = 2; - string MetaInfo = 3; - string Status = 4; - string sourceCode = 5; + string task_contract_address = 1; + string name = 2; + string meta_info = 3; + string status = 4; + string source_code = 5; } // RegisterAVSTaskReq is the request to register a new task for avs. diff --git a/x/avs_task/module.go b/x/avs_task/module.go index 384f40dac..77ab6f483 100644 --- a/x/avs_task/module.go +++ b/x/avs_task/module.go @@ -2,9 +2,6 @@ package avs_task import ( "context" - "encoding/json" - "fmt" - "github.com/ExocoreNetwork/exocore/x/avs_task/client/cli" "github.com/ExocoreNetwork/exocore/x/avs_task/keeper" "github.com/ExocoreNetwork/exocore/x/avs_task/types" @@ -100,27 +97,3 @@ func (am AppModule) EndBlock(ctx sdk.Context, req abci.RequestEndBlock) []abci.V //am.keeper.EndBlock(ctx, req) return []abci.ValidatorUpdate{} } - -// DefaultGenesis returns a default GenesisState for the module, marshaled to json.RawMessage. -// The default GenesisState need to be defined by the module developer and is primarily used for -// testing -func (AppModuleBasic) DefaultGenesis(cdc codec.JSONCodec) json.RawMessage { - return cdc.MustMarshalJSON(types.DefaultGenesis()) -} - -// ValidateGenesis used to validate the GenesisState, given in its json.RawMessage form -func (AppModuleBasic) ValidateGenesis( - cdc codec.JSONCodec, - _ client.TxEncodingConfig, - bz json.RawMessage, -) error { - var genState types.GenesisState - if err := cdc.UnmarshalJSON(bz, &genState); err != nil { - return fmt.Errorf( - "failed to unmarshal %s genesis state: %w", - types.ModuleName, - err, - ) - } - return genState.Validate() -} diff --git a/x/avs_task/types/genesis.go b/x/avs_task/types/genesis.go deleted file mode 100644 index f2689b73b..000000000 --- a/x/avs_task/types/genesis.go +++ /dev/null @@ -1,20 +0,0 @@ -package types - -// DefaultIndex is the default global index -const DefaultIndex uint64 = 1 - -// DefaultGenesis returns the default genesis state -func DefaultGenesis() *GenesisState { - return &GenesisState{ - // this line is used by starport scaffolding # genesis/types/default - Params: DefaultParams(), - } -} - -// Validate performs basic genesis state validation returning an error upon any -// failure. -func (gs GenesisState) Validate() error { - // this line is used by starport scaffolding # genesis/types/validate - - return gs.Params.Validate() -} diff --git a/x/avs_task/types/genesis.pb.go b/x/avs_task/types/genesis.pb.go deleted file mode 100644 index ef60b9489..000000000 --- a/x/avs_task/types/genesis.pb.go +++ /dev/null @@ -1,323 +0,0 @@ -// Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: exocore/avs_task/genesis.proto - -package types - -import ( - fmt "fmt" - _ "github.com/cosmos/gogoproto/gogoproto" - proto "github.com/cosmos/gogoproto/proto" - io "io" - math "math" - math_bits "math/bits" -) - -// Reference imports to suppress errors if they are not otherwise used. -var _ = proto.Marshal -var _ = fmt.Errorf -var _ = math.Inf - -// This is a compile-time assertion to ensure that this generated file -// is compatible with the proto package it is being compiled against. -// A compilation error at this line likely means your copy of the -// proto package needs to be updated. -const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package - -// GenesisState defines the avs_task module's genesis state. -type GenesisState struct { - Params Params `protobuf:"bytes,1,opt,name=params,proto3" json:"params"` -} - -func (m *GenesisState) Reset() { *m = GenesisState{} } -func (m *GenesisState) String() string { return proto.CompactTextString(m) } -func (*GenesisState) ProtoMessage() {} -func (*GenesisState) Descriptor() ([]byte, []int) { - return fileDescriptor_e135dd7e592266ea, []int{0} -} -func (m *GenesisState) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) -} -func (m *GenesisState) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - if deterministic { - return xxx_messageInfo_GenesisState.Marshal(b, m, deterministic) - } else { - b = b[:cap(b)] - n, err := m.MarshalToSizedBuffer(b) - if err != nil { - return nil, err - } - return b[:n], nil - } -} -func (m *GenesisState) XXX_Merge(src proto.Message) { - xxx_messageInfo_GenesisState.Merge(m, src) -} -func (m *GenesisState) XXX_Size() int { - return m.Size() -} -func (m *GenesisState) XXX_DiscardUnknown() { - xxx_messageInfo_GenesisState.DiscardUnknown(m) -} - -var xxx_messageInfo_GenesisState proto.InternalMessageInfo - -func (m *GenesisState) GetParams() Params { - if m != nil { - return m.Params - } - return Params{} -} - -func init() { - proto.RegisterType((*GenesisState)(nil), "exocore.avs_task.GenesisState") -} - -func init() { - proto.RegisterFile("exocore/avs_task/genesis.proto", fileDescriptor_e135dd7e592266ea) -} - -var fileDescriptor_e135dd7e592266ea = []byte{ - // 204 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0x49, 0xad, 0xc8, 0x4f, - 0xce, 0x2f, 0x4a, 0xd5, 0x2f, 0x49, 0x2c, 0xce, 0xce, 0x4d, 0xcc, 0x4b, 0x4c, 0x4f, 0x2d, 0x4a, - 0x2c, 0x2b, 0xd6, 0x4f, 0x4f, 0xcd, 0x4b, 0x2d, 0xce, 0x2c, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, - 0x17, 0x12, 0x83, 0xaa, 0xd2, 0x43, 0x55, 0x25, 0x25, 0x92, 0x9e, 0x9f, 0x9e, 0x0f, 0x56, 0xa2, - 0x0f, 0x62, 0x41, 0x54, 0x4b, 0x29, 0xe3, 0x30, 0xb3, 0x20, 0xb1, 0x28, 0x31, 0x17, 0x6a, 0xa4, - 0x92, 0x0f, 0x17, 0x8f, 0x3b, 0xc4, 0x8e, 0xe0, 0x92, 0xc4, 0x92, 0x54, 0x21, 0x1b, 0x2e, 0x36, - 0x88, 0xbc, 0x04, 0xa3, 0x02, 0xa3, 0x06, 0xb7, 0x91, 0x9c, 0x1e, 0x76, 0x3b, 0xf5, 0x02, 0xc0, - 0xaa, 0x9c, 0x58, 0x4e, 0xdc, 0x93, 0x67, 0x08, 0x82, 0xea, 0x71, 0x0a, 0x3a, 0xf1, 0x48, 0x8e, - 0xf1, 0xc2, 0x23, 0x39, 0xc6, 0x07, 0x8f, 0xe4, 0x18, 0x27, 0x3c, 0x96, 0x63, 0xb8, 0xf0, 0x58, - 0x8e, 0xe1, 0xc6, 0x63, 0x39, 0x86, 0x28, 0x8b, 0xf4, 0xcc, 0x92, 0x8c, 0xd2, 0x24, 0xbd, 0xe4, - 0xfc, 0x5c, 0x7d, 0x57, 0x88, 0x89, 0x7e, 0xa9, 0x25, 0xe5, 0xf9, 0x45, 0xd9, 0xfa, 0x30, 0x67, - 0x56, 0xa0, 0x3b, 0xb4, 0xa4, 0xb2, 0x20, 0xb5, 0x38, 0x89, 0x0d, 0xec, 0x50, 0x63, 0x40, 0x00, - 0x00, 0x00, 0xff, 0xff, 0xe6, 0x36, 0x08, 0xc7, 0x23, 0x01, 0x00, 0x00, -} - -func (m *GenesisState) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *GenesisState) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *GenesisState) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - { - size, err := m.Params.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGenesis(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0xa - return len(dAtA) - i, nil -} - -func encodeVarintGenesis(dAtA []byte, offset int, v uint64) int { - offset -= sovGenesis(v) - base := offset - for v >= 1<<7 { - dAtA[offset] = uint8(v&0x7f | 0x80) - v >>= 7 - offset++ - } - dAtA[offset] = uint8(v) - return base -} -func (m *GenesisState) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - l = m.Params.Size() - n += 1 + l + sovGenesis(uint64(l)) - return n -} - -func sovGenesis(x uint64) (n int) { - return (math_bits.Len64(x|1) + 6) / 7 -} -func sozGenesis(x uint64) (n int) { - return sovGenesis(uint64((x << 1) ^ uint64((int64(x) >> 63)))) -} -func (m *GenesisState) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenesis - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: GenesisState: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: GenesisState: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Params", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGenesis - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGenesis - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthGenesis - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.Params.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - default: - iNdEx = preIndex - skippy, err := skipGenesis(dAtA[iNdEx:]) - if err != nil { - return err - } - if (skippy < 0) || (iNdEx+skippy) < 0 { - return ErrInvalidLengthGenesis - } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } - } - - if iNdEx > l { - return io.ErrUnexpectedEOF - } - return nil -} -func skipGenesis(dAtA []byte) (n int, err error) { - l := len(dAtA) - iNdEx := 0 - depth := 0 - for iNdEx < l { - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return 0, ErrIntOverflowGenesis - } - if iNdEx >= l { - return 0, io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= (uint64(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - wireType := int(wire & 0x7) - switch wireType { - case 0: - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return 0, ErrIntOverflowGenesis - } - if iNdEx >= l { - return 0, io.ErrUnexpectedEOF - } - iNdEx++ - if dAtA[iNdEx-1] < 0x80 { - break - } - } - case 1: - iNdEx += 8 - case 2: - var length int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return 0, ErrIntOverflowGenesis - } - if iNdEx >= l { - return 0, io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - length |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if length < 0 { - return 0, ErrInvalidLengthGenesis - } - iNdEx += length - case 3: - depth++ - case 4: - if depth == 0 { - return 0, ErrUnexpectedEndOfGroupGenesis - } - depth-- - case 5: - iNdEx += 4 - default: - return 0, fmt.Errorf("proto: illegal wireType %d", wireType) - } - if iNdEx < 0 { - return 0, ErrInvalidLengthGenesis - } - if depth == 0 { - return iNdEx, nil - } - } - return 0, io.ErrUnexpectedEOF -} - -var ( - ErrInvalidLengthGenesis = fmt.Errorf("proto: negative length found during unmarshaling") - ErrIntOverflowGenesis = fmt.Errorf("proto: integer overflow") - ErrUnexpectedEndOfGroupGenesis = fmt.Errorf("proto: unexpected end of group") -) diff --git a/x/avs_task/types/genesis_test.go b/x/avs_task/types/genesis_test.go deleted file mode 100644 index da1ab5e57..000000000 --- a/x/avs_task/types/genesis_test.go +++ /dev/null @@ -1,41 +0,0 @@ -package types_test - -import ( - "testing" - - "github.com/ExocoreNetwork/exocore/x/avs_task/types" - "github.com/stretchr/testify/require" -) - -func TestGenesisState_Validate(t *testing.T) { - tests := []struct { - desc string - genState *types.GenesisState - valid bool - }{ - { - desc: "default is valid", - genState: types.DefaultGenesis(), - valid: true, - }, - { - desc: "valid genesis state", - genState: &types.GenesisState{ - - // this line is used by starport scaffolding # types/genesis/validField - }, - valid: true, - }, - // this line is used by starport scaffolding # types/genesis/testcase - } - for _, tc := range tests { - t.Run(tc.desc, func(t *testing.T) { - err := tc.genState.Validate() - if tc.valid { - require.NoError(t, err) - } else { - require.Error(t, err) - } - }) - } -} diff --git a/x/avs_task/types/params.go b/x/avs_task/types/params.go deleted file mode 100644 index 52a8a059f..000000000 --- a/x/avs_task/types/params.go +++ /dev/null @@ -1,47 +0,0 @@ -package types - -import ( - - - paramtypes "github.com/cosmos/cosmos-sdk/x/params/types" - "gopkg.in/yaml.v2" -) - -var _ paramtypes.ParamSet = (*Params)(nil) - - - -// ParamKeyTable the param key table for launch module -func ParamKeyTable() paramtypes.KeyTable { - return paramtypes.NewKeyTable().RegisterParamSet(&Params{}) -} - -// NewParams creates a new Params instance -func NewParams( -) Params { - return Params{ - } -} - -// DefaultParams returns a default set of parameters -func DefaultParams() Params { - return NewParams( - ) -} - -// ParamSetPairs get the params.ParamSet -func (p *Params) ParamSetPairs() paramtypes.ParamSetPairs { - return paramtypes.ParamSetPairs{ - } -} - -// Validate validates the set of params -func (p Params) Validate() error { - return nil -} - -// String implements the Stringer interface. -func (p Params) String() string { - out, _ := yaml.Marshal(p) - return string(out) -} diff --git a/x/avs_task/types/params.pb.go b/x/avs_task/types/params.pb.go deleted file mode 100644 index 2a3c7baa9..000000000 --- a/x/avs_task/types/params.pb.go +++ /dev/null @@ -1,267 +0,0 @@ -// Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: exocore/avs_task/params.proto - -package types - -import ( - fmt "fmt" - _ "github.com/cosmos/gogoproto/gogoproto" - proto "github.com/cosmos/gogoproto/proto" - io "io" - math "math" - math_bits "math/bits" -) - -// Reference imports to suppress errors if they are not otherwise used. -var _ = proto.Marshal -var _ = fmt.Errorf -var _ = math.Inf - -// This is a compile-time assertion to ensure that this generated file -// is compatible with the proto package it is being compiled against. -// A compilation error at this line likely means your copy of the -// proto package needs to be updated. -const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package - -// Params defines the parameters for the module. -type Params struct { -} - -func (m *Params) Reset() { *m = Params{} } -func (*Params) ProtoMessage() {} -func (*Params) Descriptor() ([]byte, []int) { - return fileDescriptor_9851cd4b575e9d94, []int{0} -} -func (m *Params) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) -} -func (m *Params) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - if deterministic { - return xxx_messageInfo_Params.Marshal(b, m, deterministic) - } else { - b = b[:cap(b)] - n, err := m.MarshalToSizedBuffer(b) - if err != nil { - return nil, err - } - return b[:n], nil - } -} -func (m *Params) XXX_Merge(src proto.Message) { - xxx_messageInfo_Params.Merge(m, src) -} -func (m *Params) XXX_Size() int { - return m.Size() -} -func (m *Params) XXX_DiscardUnknown() { - xxx_messageInfo_Params.DiscardUnknown(m) -} - -var xxx_messageInfo_Params proto.InternalMessageInfo - -func init() { - proto.RegisterType((*Params)(nil), "exocore.avs_task.Params") -} - -func init() { - proto.RegisterFile("exocore/avs_task/params.proto", fileDescriptor_9851cd4b575e9d94) -} - -var fileDescriptor_9851cd4b575e9d94 = []byte{ - // 162 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0x4e, 0xad, 0xc8, 0x4f, - 0xce, 0x2f, 0x4a, 0xd5, 0x2f, 0x49, 0x2c, 0xce, 0xce, 0x4d, 0xcc, 0x4b, 0x4c, 0x4f, 0x2d, 0x4a, - 0x2c, 0x2b, 0xd6, 0x2f, 0x48, 0x2c, 0x4a, 0xcc, 0x2d, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, - 0x12, 0x83, 0x2a, 0xd2, 0x43, 0x55, 0x24, 0x25, 0x92, 0x9e, 0x9f, 0x9e, 0x0f, 0x56, 0xa2, 0x0f, - 0x62, 0x41, 0x54, 0x2b, 0xf1, 0x71, 0xb1, 0x05, 0x80, 0x75, 0x5b, 0xb1, 0xcc, 0x58, 0x20, 0xcf, - 0xe0, 0x14, 0x74, 0xe2, 0x91, 0x1c, 0xe3, 0x85, 0x47, 0x72, 0x8c, 0x0f, 0x1e, 0xc9, 0x31, 0x4e, - 0x78, 0x2c, 0xc7, 0x70, 0xe1, 0xb1, 0x1c, 0xc3, 0x8d, 0xc7, 0x72, 0x0c, 0x51, 0x16, 0xe9, 0x99, - 0x25, 0x19, 0xa5, 0x49, 0x7a, 0xc9, 0xf9, 0xb9, 0xfa, 0xae, 0x10, 0x2b, 0xfc, 0x52, 0x4b, 0xca, - 0xf3, 0x8b, 0xb2, 0xf5, 0x61, 0xce, 0xaa, 0x40, 0x77, 0x58, 0x49, 0x65, 0x41, 0x6a, 0x71, 0x12, - 0x1b, 0xd8, 0x2a, 0x63, 0x40, 0x00, 0x00, 0x00, 0xff, 0xff, 0xf6, 0xbc, 0x92, 0x25, 0xbf, 0x00, - 0x00, 0x00, -} - -func (m *Params) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *Params) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *Params) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - return len(dAtA) - i, nil -} - -func encodeVarintParams(dAtA []byte, offset int, v uint64) int { - offset -= sovParams(v) - base := offset - for v >= 1<<7 { - dAtA[offset] = uint8(v&0x7f | 0x80) - v >>= 7 - offset++ - } - dAtA[offset] = uint8(v) - return base -} -func (m *Params) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - return n -} - -func sovParams(x uint64) (n int) { - return (math_bits.Len64(x|1) + 6) / 7 -} -func sozParams(x uint64) (n int) { - return sovParams(uint64((x << 1) ^ uint64((int64(x) >> 63)))) -} -func (m *Params) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowParams - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: Params: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: Params: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - default: - iNdEx = preIndex - skippy, err := skipParams(dAtA[iNdEx:]) - if err != nil { - return err - } - if (skippy < 0) || (iNdEx+skippy) < 0 { - return ErrInvalidLengthParams - } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } - } - - if iNdEx > l { - return io.ErrUnexpectedEOF - } - return nil -} -func skipParams(dAtA []byte) (n int, err error) { - l := len(dAtA) - iNdEx := 0 - depth := 0 - for iNdEx < l { - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return 0, ErrIntOverflowParams - } - if iNdEx >= l { - return 0, io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= (uint64(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - wireType := int(wire & 0x7) - switch wireType { - case 0: - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return 0, ErrIntOverflowParams - } - if iNdEx >= l { - return 0, io.ErrUnexpectedEOF - } - iNdEx++ - if dAtA[iNdEx-1] < 0x80 { - break - } - } - case 1: - iNdEx += 8 - case 2: - var length int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return 0, ErrIntOverflowParams - } - if iNdEx >= l { - return 0, io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - length |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if length < 0 { - return 0, ErrInvalidLengthParams - } - iNdEx += length - case 3: - depth++ - case 4: - if depth == 0 { - return 0, ErrUnexpectedEndOfGroupParams - } - depth-- - case 5: - iNdEx += 4 - default: - return 0, fmt.Errorf("proto: illegal wireType %d", wireType) - } - if iNdEx < 0 { - return 0, ErrInvalidLengthParams - } - if depth == 0 { - return iNdEx, nil - } - } - return 0, io.ErrUnexpectedEOF -} - -var ( - ErrInvalidLengthParams = fmt.Errorf("proto: negative length found during unmarshaling") - ErrIntOverflowParams = fmt.Errorf("proto: integer overflow") - ErrUnexpectedEndOfGroupParams = fmt.Errorf("proto: unexpected end of group") -) diff --git a/x/avs_task/types/query.pb.go b/x/avs_task/types/query.pb.go index 30af4a045..f0f9b616a 100644 --- a/x/avs_task/types/query.pb.go +++ b/x/avs_task/types/query.pb.go @@ -6,9 +6,7 @@ package types import ( context "context" fmt "fmt" - _ "github.com/cometbft/cometbft/proto/tendermint/crypto" _ "github.com/cosmos/cosmos-proto" - _ "github.com/cosmos/gogoproto/gogoproto" grpc1 "github.com/cosmos/gogoproto/grpc" proto "github.com/cosmos/gogoproto/proto" _ "google.golang.org/genproto/googleapis/api/annotations" @@ -84,28 +82,26 @@ func init() { func init() { proto.RegisterFile("exocore/task/v1/query.proto", fileDescriptor_76ba8969919da189) } var fileDescriptor_76ba8969919da189 = []byte{ - // 334 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x64, 0x90, 0xc1, 0x4a, 0xc3, 0x30, - 0x18, 0xc7, 0x17, 0x41, 0x71, 0x3d, 0x28, 0x96, 0x1d, 0xe6, 0x1c, 0x45, 0x8b, 0x07, 0x11, 0x6c, - 0xd8, 0xc4, 0x07, 0xd8, 0x44, 0x44, 0x11, 0xc1, 0x4d, 0x3c, 0x78, 0x19, 0x59, 0x1b, 0x63, 0xa9, - 0xcb, 0xd7, 0x25, 0xdf, 0xe6, 0x7a, 0xd5, 0xb3, 0x20, 0xf8, 0x2a, 0x3e, 0x84, 0xc7, 0xa1, 0x17, - 0x8f, 0xb2, 0xf9, 0x20, 0x92, 0xb5, 0x0a, 0xae, 0xb7, 0xf6, 0xfb, 0xfd, 0xf3, 0xfb, 0x92, 0xbf, - 0xb5, 0xc1, 0x47, 0xe0, 0x83, 0xe2, 0x14, 0x99, 0x8e, 0xe8, 0xb0, 0x46, 0xfb, 0x03, 0xae, 0x12, - 0x2f, 0x56, 0x80, 0x60, 0xaf, 0x66, 0xd0, 0x33, 0xd0, 0x1b, 0xd6, 0x2a, 0xeb, 0x3e, 0xe8, 0x1e, - 0xe8, 0xce, 0x0c, 0xd3, 0xf4, 0x27, 0xcd, 0x56, 0xca, 0xf3, 0x22, 0x1c, 0x65, 0xa4, 0x24, 0x40, - 0x40, 0x7a, 0xc2, 0x7c, 0x65, 0xd3, 0xaa, 0x00, 0x10, 0x77, 0x9c, 0xb2, 0x38, 0xa4, 0x4c, 0x4a, - 0x40, 0x86, 0x21, 0xc8, 0x5f, 0x5b, 0x15, 0xb9, 0x0c, 0xb8, 0xea, 0x85, 0x12, 0xa9, 0xaf, 0x92, - 0x18, 0x81, 0x46, 0x3c, 0xc9, 0xa8, 0x7b, 0x6a, 0xad, 0x1d, 0x73, 0x6c, 0x5c, 0xb5, 0x2f, 0x99, - 0x8e, 0x4e, 0xe4, 0x0d, 0xb4, 0x78, 0xdf, 0x3e, 0xb0, 0x8a, 0x66, 0x75, 0x87, 0x05, 0x81, 0x2a, - 0x93, 0x4d, 0xb2, 0x53, 0x6c, 0x96, 0xdf, 0x5f, 0xf7, 0x4a, 0xd9, 0x2d, 0x1b, 0x41, 0xa0, 0xb8, - 0xd6, 0x6d, 0x54, 0xa1, 0x14, 0xad, 0x65, 0x13, 0x35, 0xa3, 0xfa, 0x13, 0xb1, 0x16, 0x2f, 0xcc, - 0x9b, 0xed, 0x47, 0x62, 0xad, 0xfc, 0xd7, 0xda, 0xae, 0x37, 0xd7, 0x80, 0x97, 0xdb, 0x5b, 0xd9, - 0xca, 0x65, 0x0c, 0x3d, 0x04, 0x89, 0x8a, 0xf9, 0x68, 0x52, 0xee, 0xee, 0xc3, 0xc7, 0xf7, 0xcb, - 0xc2, 0xb6, 0xed, 0xd2, 0xf9, 0x92, 0x72, 0xba, 0xe6, 0xd9, 0xdb, 0xc4, 0x21, 0xe3, 0x89, 0x43, - 0xbe, 0x26, 0x0e, 0x79, 0x9e, 0x3a, 0x85, 0xf1, 0xd4, 0x29, 0x7c, 0x4e, 0x9d, 0xc2, 0x75, 0x5d, - 0x84, 0x78, 0x3b, 0xe8, 0x7a, 0x3e, 0xf4, 0xe8, 0x51, 0xea, 0x39, 0xe7, 0x78, 0x0f, 0x2a, 0xfa, - 0xd3, 0x8e, 0x28, 0x1b, 0xea, 0xce, 0x4c, 0x8e, 0x49, 0xcc, 0x75, 0x77, 0x69, 0x56, 0xd8, 0xfe, - 0x4f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x2f, 0x7d, 0x53, 0xb7, 0xe7, 0x01, 0x00, 0x00, + // 303 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x4e, 0xad, 0xc8, 0x4f, + 0xce, 0x2f, 0x4a, 0xd5, 0x2f, 0x49, 0x2c, 0xce, 0xd6, 0x2f, 0x33, 0xd4, 0x2f, 0x2c, 0x4d, 0x2d, + 0xaa, 0xd4, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x87, 0x4a, 0xea, 0x81, 0x24, 0xf5, 0xca, + 0x0c, 0xa5, 0x24, 0x93, 0xf3, 0x8b, 0x73, 0xf3, 0x8b, 0xe3, 0xc1, 0xd2, 0xfa, 0x10, 0x0e, 0x44, + 0xad, 0x94, 0x04, 0xba, 0x41, 0x25, 0x15, 0x50, 0x19, 0x99, 0xf4, 0xfc, 0xfc, 0xf4, 0x9c, 0x54, + 0xfd, 0xc4, 0x82, 0x4c, 0xfd, 0xc4, 0xbc, 0xbc, 0xfc, 0x92, 0xc4, 0x92, 0xcc, 0xfc, 0x3c, 0xa8, + 0x3e, 0x25, 0x2f, 0x2e, 0x41, 0xf7, 0xd4, 0x12, 0xc7, 0xb0, 0xe0, 0x90, 0xc4, 0xe2, 0x6c, 0xcf, + 0xbc, 0xb4, 0xfc, 0xa0, 0xd4, 0x42, 0x21, 0x53, 0x2e, 0x4e, 0x90, 0x31, 0xf1, 0x89, 0x29, 0x29, + 0x45, 0x12, 0x8c, 0x0a, 0x8c, 0x1a, 0x9c, 0x4e, 0x12, 0x97, 0xb6, 0xe8, 0x8a, 0x40, 0x6d, 0x74, + 0x4c, 0x49, 0x29, 0x4a, 0x2d, 0x2e, 0x0e, 0x2e, 0x29, 0xca, 0xcc, 0x4b, 0x0f, 0xe2, 0x00, 0x29, + 0x05, 0x09, 0x19, 0xf5, 0x32, 0x72, 0xb1, 0x06, 0x82, 0xdc, 0x2f, 0xd4, 0xcc, 0xc8, 0xc5, 0x87, + 0x6a, 0xac, 0x90, 0x92, 0x1e, 0x9a, 0x6f, 0xf4, 0x30, 0xec, 0x95, 0x52, 0xc4, 0x50, 0x03, 0x92, + 0x75, 0xce, 0xcf, 0x2b, 0x29, 0x4a, 0x4c, 0x2e, 0x01, 0xa9, 0x52, 0xd2, 0x6a, 0xba, 0xfc, 0x64, + 0x32, 0x93, 0x8a, 0x90, 0x92, 0x3e, 0xba, 0x87, 0x31, 0x8c, 0x73, 0xf2, 0x39, 0xf1, 0x48, 0x8e, + 0xf1, 0xc2, 0x23, 0x39, 0xc6, 0x07, 0x8f, 0xe4, 0x18, 0x27, 0x3c, 0x96, 0x63, 0xb8, 0xf0, 0x58, + 0x8e, 0xe1, 0xc6, 0x63, 0x39, 0x86, 0x28, 0xa3, 0xf4, 0xcc, 0x92, 0x8c, 0xd2, 0x24, 0xbd, 0xe4, + 0xfc, 0x5c, 0x7d, 0x57, 0x88, 0x39, 0x7e, 0xa9, 0x25, 0xe5, 0xf9, 0x45, 0xd9, 0x70, 0x63, 0x2b, + 0xf4, 0x13, 0xcb, 0x8a, 0xe3, 0xc1, 0x86, 0x97, 0x54, 0x16, 0xa4, 0x16, 0x27, 0xb1, 0x81, 0x03, + 0xcc, 0x18, 0x10, 0x00, 0x00, 0xff, 0xff, 0x6b, 0x3c, 0x67, 0x71, 0xb3, 0x01, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/avs_task/types/tx.pb.go b/x/avs_task/types/tx.pb.go index db6213f51..6eddba7b2 100644 --- a/x/avs_task/types/tx.pb.go +++ b/x/avs_task/types/tx.pb.go @@ -33,11 +33,11 @@ const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package // TaskContractInfo is the task info. type TaskContractInfo struct { - TaskContractAddress string `protobuf:"bytes,1,opt,name=TaskContractAddress,proto3" json:"TaskContractAddress,omitempty"` - Name string `protobuf:"bytes,2,opt,name=Name,proto3" json:"Name,omitempty"` - MetaInfo string `protobuf:"bytes,3,opt,name=MetaInfo,proto3" json:"MetaInfo,omitempty"` - Status string `protobuf:"bytes,4,opt,name=Status,proto3" json:"Status,omitempty"` - SourceCode string `protobuf:"bytes,5,opt,name=sourceCode,proto3" json:"sourceCode,omitempty"` + TaskContractAddress string `protobuf:"bytes,1,opt,name=task_contract_address,json=taskContractAddress,proto3" json:"task_contract_address,omitempty"` + Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"` + MetaInfo string `protobuf:"bytes,3,opt,name=meta_info,json=metaInfo,proto3" json:"meta_info,omitempty"` + Status string `protobuf:"bytes,4,opt,name=status,proto3" json:"status,omitempty"` + SourceCode string `protobuf:"bytes,5,opt,name=source_code,json=sourceCode,proto3" json:"source_code,omitempty"` } func (m *TaskContractInfo) Reset() { *m = TaskContractInfo{} } @@ -194,35 +194,36 @@ func init() { func init() { proto.RegisterFile("exocore/task/v1/tx.proto", fileDescriptor_bb9b36cc7c0f3a98) } var fileDescriptor_bb9b36cc7c0f3a98 = []byte{ - // 446 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x52, 0xcf, 0x6a, 0x13, 0x41, - 0x18, 0xdf, 0xb1, 0x69, 0xd1, 0x89, 0x50, 0x1d, 0x8b, 0xdd, 0xae, 0xb0, 0xd5, 0x78, 0x29, 0x81, - 0xee, 0xd8, 0x88, 0x20, 0x7a, 0x6a, 0x8b, 0x82, 0x60, 0x7b, 0xd8, 0x88, 0x07, 0x2f, 0x71, 0xba, - 0x99, 0x8e, 0x61, 0xd9, 0xfd, 0xe2, 0x7c, 0x93, 0x18, 0x6f, 0xe2, 0x49, 0x3c, 0xf9, 0x08, 0x7d, - 0x00, 0x0f, 0x39, 0xf8, 0x04, 0x9e, 0x3c, 0x16, 0x4f, 0x1e, 0x25, 0x39, 0xc4, 0xc7, 0x90, 0x9d, - 0xd9, 0x68, 0xd8, 0x08, 0x5e, 0x96, 0xf9, 0xfd, 0x99, 0x6f, 0x7e, 0xfb, 0xe3, 0xa3, 0xbe, 0x1c, - 0x41, 0x02, 0x5a, 0x72, 0x23, 0x30, 0xe5, 0xc3, 0x3d, 0x6e, 0x46, 0x51, 0x5f, 0x83, 0x01, 0xb6, - 0x5e, 0x2a, 0x51, 0xa1, 0x44, 0xc3, 0xbd, 0xe0, 0xaa, 0xc8, 0x7a, 0x39, 0x70, 0xfb, 0x75, 0x9e, - 0x60, 0x33, 0x01, 0xcc, 0x00, 0x79, 0x86, 0xaa, 0xb8, 0x9b, 0xa1, 0x2a, 0x85, 0x2d, 0x27, 0x74, - 0x2c, 0xe2, 0x0e, 0x94, 0xd2, 0x86, 0x02, 0x05, 0x8e, 0x2f, 0x4e, 0x8e, 0x6d, 0x7c, 0x26, 0xf4, - 0xca, 0x33, 0x81, 0xe9, 0x21, 0xe4, 0x46, 0x8b, 0xc4, 0x3c, 0xc9, 0x4f, 0x81, 0xdd, 0xa1, 0xd7, - 0x16, 0xb9, 0xfd, 0x6e, 0x57, 0x4b, 0x44, 0x9f, 0xdc, 0x24, 0x3b, 0x97, 0xe2, 0x7f, 0x49, 0x8c, - 0xd1, 0xda, 0xb1, 0xc8, 0xa4, 0x7f, 0xc1, 0x5a, 0xec, 0x99, 0x05, 0xf4, 0xe2, 0x91, 0x34, 0xa2, - 0x98, 0xe8, 0xaf, 0x58, 0xfe, 0x0f, 0x66, 0xd7, 0xe9, 0x5a, 0xdb, 0x08, 0x33, 0x40, 0xbf, 0x66, - 0x95, 0x12, 0xb1, 0x90, 0x52, 0x84, 0x81, 0x4e, 0xe4, 0x21, 0x74, 0xa5, 0xbf, 0x6a, 0xb5, 0x05, - 0xa6, 0xf1, 0x95, 0x50, 0x16, 0x4b, 0xd5, 0x43, 0x23, 0xf5, 0xfe, 0xf3, 0x76, 0x11, 0x25, 0x96, - 0xaf, 0xd9, 0x43, 0x7a, 0xf9, 0x54, 0x43, 0xd6, 0x11, 0x8b, 0x49, 0x0f, 0xfc, 0xef, 0x5f, 0x76, - 0x37, 0xca, 0x0e, 0xca, 0xa0, 0x6d, 0xa3, 0x7b, 0xb9, 0x8a, 0xeb, 0x85, 0x7b, 0x9e, 0xfd, 0x1e, - 0xad, 0x15, 0x55, 0xdb, 0xec, 0xf5, 0xd6, 0xad, 0xa8, 0xd2, 0x7f, 0x54, 0xad, 0x27, 0xb6, 0xf6, - 0x07, 0xf7, 0x3f, 0x9c, 0x6d, 0x7b, 0xbf, 0xce, 0xb6, 0xbd, 0xf7, 0xb3, 0x71, 0xb3, 0xfe, 0xf8, - 0xef, 0xc0, 0x8f, 0xb3, 0x71, 0xf3, 0x86, 0x7b, 0x76, 0x17, 0xbb, 0x29, 0xaf, 0xde, 0x6f, 0x6c, - 0xd1, 0xcd, 0xa5, 0x7f, 0xc0, 0x3e, 0xe4, 0x28, 0x5b, 0x39, 0x5d, 0x39, 0x42, 0xc5, 0x5e, 0xd2, - 0xf5, 0x8a, 0x83, 0xdd, 0x5e, 0xca, 0xb5, 0xdc, 0x43, 0xb0, 0xf3, 0x7f, 0x93, 0x7b, 0x28, 0x58, - 0x7d, 0x37, 0x1b, 0x37, 0xc9, 0xc1, 0xd3, 0x6f, 0x93, 0x90, 0x9c, 0x4f, 0x42, 0xf2, 0x73, 0x12, - 0x92, 0x4f, 0xd3, 0xd0, 0x3b, 0x9f, 0x86, 0xde, 0x8f, 0x69, 0xe8, 0xbd, 0x68, 0xa9, 0x9e, 0x79, - 0x35, 0x38, 0x89, 0x12, 0xc8, 0xf8, 0x23, 0x37, 0xf4, 0x58, 0x9a, 0x37, 0xa0, 0x53, 0x3e, 0x5f, - 0xdd, 0x11, 0x17, 0x43, 0xec, 0xd8, 0x05, 0x36, 0x6f, 0xfb, 0x12, 0x4f, 0xd6, 0xec, 0x4e, 0xdd, - 0xfd, 0x1d, 0x00, 0x00, 0xff, 0xff, 0x81, 0x9e, 0x3a, 0xaf, 0xdd, 0x02, 0x00, 0x00, + // 460 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x92, 0x31, 0x6f, 0xd3, 0x40, + 0x14, 0xc7, 0x6d, 0x9a, 0x56, 0xf4, 0x82, 0x54, 0x38, 0x0a, 0x75, 0x53, 0xc9, 0x81, 0xb0, 0x54, + 0x91, 0xea, 0x53, 0x83, 0x90, 0x10, 0x4c, 0x6d, 0x05, 0x12, 0x12, 0x30, 0xb8, 0x88, 0x81, 0xc5, + 0x5c, 0xed, 0x8b, 0xb1, 0x22, 0xdf, 0x0b, 0xf7, 0x2e, 0x21, 0x6c, 0x88, 0x09, 0x31, 0xf1, 0x11, + 0xfa, 0x11, 0x32, 0xf0, 0x09, 0x98, 0x18, 0x2b, 0x26, 0x46, 0x94, 0x0c, 0xe1, 0x63, 0xa0, 0xbb, + 0x73, 0x05, 0x38, 0x43, 0x17, 0xeb, 0xde, 0xfb, 0xfd, 0xdf, 0xbd, 0xff, 0x3d, 0x3f, 0x12, 0x88, + 0x09, 0xa4, 0xa0, 0x04, 0xd3, 0x1c, 0x07, 0x6c, 0xbc, 0xcf, 0xf4, 0x24, 0x1a, 0x2a, 0xd0, 0x40, + 0x37, 0x2a, 0x12, 0x19, 0x12, 0x8d, 0xf7, 0x5b, 0xd7, 0x78, 0x59, 0x48, 0x60, 0xf6, 0xeb, 0x34, + 0xad, 0xad, 0x14, 0xb0, 0x04, 0x64, 0x25, 0xe6, 0xa6, 0xb6, 0xc4, 0xbc, 0x02, 0xdb, 0x0e, 0x24, + 0x36, 0x62, 0x2e, 0xa8, 0xd0, 0x66, 0x0e, 0x39, 0xb8, 0xbc, 0x39, 0xb9, 0x6c, 0x67, 0xea, 0x93, + 0xab, 0x2f, 0x38, 0x0e, 0x8e, 0x40, 0x6a, 0xc5, 0x53, 0xfd, 0x44, 0xf6, 0x81, 0xf6, 0xc8, 0x0d, + 0xd3, 0x3c, 0x49, 0xab, 0x64, 0xc2, 0xb3, 0x4c, 0x09, 0xc4, 0xc0, 0xbf, 0xe5, 0xef, 0xae, 0xc7, + 0xd7, 0xf5, 0x3f, 0x05, 0x07, 0x0e, 0x51, 0x4a, 0x1a, 0x92, 0x97, 0x22, 0xb8, 0x64, 0x25, 0xf6, + 0x4c, 0x77, 0xc8, 0x7a, 0x29, 0x34, 0x4f, 0x0a, 0xd9, 0x87, 0x60, 0xc5, 0x82, 0xcb, 0x26, 0x61, + 0x9b, 0xdc, 0x24, 0x6b, 0xa8, 0xb9, 0x1e, 0x61, 0xd0, 0xb0, 0xa4, 0x8a, 0x68, 0x9b, 0x34, 0x11, + 0x46, 0x2a, 0x15, 0x49, 0x0a, 0x99, 0x08, 0x56, 0x2d, 0x24, 0x2e, 0x75, 0x04, 0x99, 0xe8, 0x7c, + 0xf3, 0x09, 0x8d, 0x45, 0x5e, 0xa0, 0x16, 0xea, 0xe0, 0xe5, 0xb1, 0x71, 0x1f, 0x8b, 0xb7, 0xf4, + 0x21, 0xb9, 0xd2, 0x57, 0x50, 0xfe, 0xef, 0xf5, 0x30, 0xf8, 0xf1, 0x75, 0x6f, 0xb3, 0x9a, 0x43, + 0x65, 0xf5, 0x58, 0xab, 0x42, 0xe6, 0x71, 0xd3, 0xa8, 0xcf, 0xdd, 0xdf, 0x23, 0x0d, 0xf3, 0x28, + 0xeb, 0xbe, 0xd9, 0xbb, 0x1d, 0xd5, 0xfe, 0x41, 0x54, 0x1f, 0x51, 0x6c, 0xe5, 0x0f, 0xee, 0x7f, + 0x3a, 0x6d, 0x7b, 0xbf, 0x4f, 0xdb, 0xde, 0xc7, 0xc5, 0xb4, 0xdb, 0x7c, 0xfc, 0xf7, 0xc2, 0xcf, + 0x8b, 0x69, 0x77, 0xc7, 0xb5, 0xdd, 0xc3, 0x6c, 0xc0, 0xea, 0xf5, 0x9d, 0x6d, 0xb2, 0xb5, 0xf4, + 0x06, 0x1c, 0x82, 0x44, 0xd1, 0x93, 0x64, 0xe5, 0x19, 0xe6, 0xf4, 0x35, 0xd9, 0xa8, 0x29, 0xe8, + 0x9d, 0x25, 0x5f, 0xcb, 0x73, 0x68, 0xed, 0x5e, 0x2c, 0x72, 0x8d, 0x5a, 0xab, 0x1f, 0x16, 0xd3, + 0xae, 0x7f, 0xf8, 0xf4, 0xfb, 0x2c, 0xf4, 0xcf, 0x66, 0xa1, 0xff, 0x6b, 0x16, 0xfa, 0x5f, 0xe6, + 0xa1, 0x77, 0x36, 0x0f, 0xbd, 0x9f, 0xf3, 0xd0, 0x7b, 0xd5, 0xcb, 0x0b, 0xfd, 0x66, 0x74, 0x12, + 0xa5, 0x50, 0xb2, 0x47, 0xee, 0xd2, 0xe7, 0x42, 0xbf, 0x03, 0x35, 0x60, 0xe7, 0xeb, 0x3b, 0x61, + 0x7c, 0x8c, 0x89, 0x5d, 0x62, 0xfd, 0x7e, 0x28, 0xf0, 0x64, 0xcd, 0xee, 0xd5, 0xdd, 0x3f, 0x01, + 0x00, 0x00, 0xff, 0xff, 0xe6, 0x22, 0xb3, 0x1f, 0xe1, 0x02, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used.