diff --git a/proto/poa/params.proto b/proto/poa/params.proto index 44f50a5..253ac94 100644 --- a/proto/poa/params.proto +++ b/proto/poa/params.proto @@ -1,9 +1,7 @@ syntax = "proto3"; package poa; -import "gogoproto/gogo.proto"; - option go_package = "github.com/xrplevm/node/v6/x/poa/types"; // Params defines the parameters for the module. -message Params { option (gogoproto.goproto_stringer) = false; } +message Params {} diff --git a/x/poa/client/cli/query.go b/x/poa/client/cli/query.go deleted file mode 100644 index 36786a9..0000000 --- a/x/poa/client/cli/query.go +++ /dev/null @@ -1,31 +0,0 @@ -package cli - -import ( - "fmt" - // "strings" - - "github.com/spf13/cobra" - - "github.com/cosmos/cosmos-sdk/client" - // "github.com/cosmos/cosmos-sdk/client/flags" - // sdk "github.com/cosmos/cosmos-sdk/types" - - "github.com/xrplevm/node/v6/x/poa/types" -) - -// GetQueryCmd returns the cli query commands for this module -func GetQueryCmd() *cobra.Command { - // Group poa queries under a subcommand - cmd := &cobra.Command{ - Use: types.ModuleName, - Short: fmt.Sprintf("Querying commands for the %s module", types.ModuleName), - DisableFlagParsing: true, - SuggestionsMinimumDistance: 2, - RunE: client.ValidateCmd, - } - - cmd.AddCommand(CmdQueryParams()) - // this line is used by starport scaffolding # 1 - - return cmd -} diff --git a/x/poa/client/cli/query_params.go b/x/poa/client/cli/query_params.go deleted file mode 100644 index 6d5be52..0000000 --- a/x/poa/client/cli/query_params.go +++ /dev/null @@ -1,37 +0,0 @@ -package cli - -import ( - "context" - - "github.com/cosmos/cosmos-sdk/client" - "github.com/cosmos/cosmos-sdk/client/flags" - "github.com/spf13/cobra" - "github.com/xrplevm/node/v6/x/poa/types" -) - -func CmdQueryParams() *cobra.Command { - cmd := &cobra.Command{ - Use: "params", - Short: "shows the parameters of the module", - Args: cobra.NoArgs, - RunE: func(cmd *cobra.Command, _ []string) error { - clientCtx, err := client.GetClientQueryContext(cmd) - if err != nil { - return err - } - - queryClient := types.NewQueryClient(clientCtx) - - res, err := queryClient.Params(context.Background(), &types.QueryParamsRequest{}) - if err != nil { - return err - } - - return clientCtx.PrintProto(res) - }, - } - - flags.AddQueryFlagsToCmd(cmd) - - return cmd -} diff --git a/x/poa/module.go b/x/poa/module.go index 6d73d48..34222a0 100644 --- a/x/poa/module.go +++ b/x/poa/module.go @@ -83,11 +83,6 @@ func (a AppModuleBasic) GetTxCmd() *cobra.Command { return cli.GetTxCmd() } -// GetQueryCmd returns the root query command for the module. The subcommands of this root command are used by end-users to generate new queries to the subset of the state defined by the module -func (AppModuleBasic) GetQueryCmd() *cobra.Command { - return cli.GetQueryCmd() -} - // ---------------------------------------------------------------------------- // AppModule // ---------------------------------------------------------------------------- diff --git a/x/poa/types/genesis.pb.go b/x/poa/types/genesis.pb.go index 3c71aa3..b8659e8 100644 --- a/x/poa/types/genesis.pb.go +++ b/x/poa/types/genesis.pb.go @@ -85,9 +85,9 @@ var fileDescriptor_5c9d5a9eb5268c7b = []byte{ 0x3c, 0x43, 0x10, 0x54, 0x81, 0x93, 0xc3, 0x89, 0x47, 0x72, 0x8c, 0x17, 0x1e, 0xc9, 0x31, 0x3e, 0x78, 0x24, 0xc7, 0x38, 0xe1, 0xb1, 0x1c, 0xc3, 0x85, 0xc7, 0x72, 0x0c, 0x37, 0x1e, 0xcb, 0x31, 0x44, 0xa9, 0xa5, 0x67, 0x96, 0x64, 0x94, 0x26, 0xe9, 0x25, 0xe7, 0xe7, 0xea, 0x57, 0x14, 0x15, - 0xe4, 0xa4, 0x96, 0xe5, 0xea, 0xe7, 0xe5, 0xa7, 0xa4, 0xea, 0x97, 0x99, 0xea, 0x57, 0xe8, 0x83, + 0xe4, 0xa4, 0x96, 0xe5, 0xea, 0xe7, 0xe5, 0xa7, 0xa4, 0xea, 0x97, 0x99, 0xe9, 0x57, 0xe8, 0x83, 0xdc, 0x50, 0x52, 0x59, 0x90, 0x5a, 0x9c, 0xc4, 0x06, 0x76, 0x83, 0x31, 0x20, 0x00, 0x00, 0xff, - 0xff, 0x84, 0xc0, 0x0c, 0xe5, 0xc5, 0x00, 0x00, 0x00, + 0xff, 0x67, 0x42, 0x12, 0x9e, 0xc5, 0x00, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/poa/types/params.go b/x/poa/types/params.go index 357196a..e562ff7 100644 --- a/x/poa/types/params.go +++ b/x/poa/types/params.go @@ -2,7 +2,6 @@ package types import ( paramtypes "github.com/cosmos/cosmos-sdk/x/params/types" - "gopkg.in/yaml.v2" ) var _ paramtypes.ParamSet = (*Params)(nil) @@ -28,12 +27,6 @@ func (p *Params) ParamSetPairs() paramtypes.ParamSetPairs { } // Validate validates the set of params -func (p Params) Validate() error { +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/poa/types/params.pb.go b/x/poa/types/params.pb.go index 23af8b1..40916dc 100644 --- a/x/poa/types/params.pb.go +++ b/x/poa/types/params.pb.go @@ -5,7 +5,6 @@ package types import ( fmt "fmt" - _ "github.com/cosmos/gogoproto/gogoproto" proto "github.com/cosmos/gogoproto/proto" io "io" math "math" @@ -27,8 +26,9 @@ const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package type Params struct { } -func (m *Params) Reset() { *m = Params{} } -func (*Params) ProtoMessage() {} +func (m *Params) Reset() { *m = Params{} } +func (m *Params) String() string { return proto.CompactTextString(m) } +func (*Params) ProtoMessage() {} func (*Params) Descriptor() ([]byte, []int) { return fileDescriptor_bff14b3f5bf0d33e, []int{0} } @@ -66,16 +66,15 @@ func init() { func init() { proto.RegisterFile("poa/params.proto", fileDescriptor_bff14b3f5bf0d33e) } var fileDescriptor_bff14b3f5bf0d33e = []byte{ - // 143 bytes of a gzipped FileDescriptorProto + // 125 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0x28, 0xc8, 0x4f, 0xd4, 0x2f, 0x48, 0x2c, 0x4a, 0xcc, 0x2d, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x62, 0x2e, 0xc8, - 0x4f, 0x94, 0x12, 0x49, 0xcf, 0x4f, 0xcf, 0x07, 0xf3, 0xf5, 0x41, 0x2c, 0x88, 0x94, 0x12, 0x1f, - 0x17, 0x5b, 0x00, 0x58, 0xa9, 0x15, 0xcb, 0x8c, 0x05, 0xf2, 0x0c, 0x4e, 0x0e, 0x27, 0x1e, 0xc9, - 0x31, 0x5e, 0x78, 0x24, 0xc7, 0xf8, 0xe0, 0x91, 0x1c, 0xe3, 0x84, 0xc7, 0x72, 0x0c, 0x17, 0x1e, - 0xcb, 0x31, 0xdc, 0x78, 0x2c, 0xc7, 0x10, 0xa5, 0x96, 0x9e, 0x59, 0x92, 0x51, 0x9a, 0xa4, 0x97, - 0x9c, 0x9f, 0xab, 0x5f, 0x51, 0x54, 0x90, 0x93, 0x5a, 0x96, 0xab, 0x9f, 0x97, 0x9f, 0x92, 0xaa, - 0x5f, 0x66, 0xaa, 0x5f, 0xa1, 0x0f, 0xb2, 0xb3, 0xa4, 0xb2, 0x20, 0xb5, 0x38, 0x89, 0x0d, 0x6c, - 0xb0, 0x31, 0x20, 0x00, 0x00, 0xff, 0xff, 0x9b, 0xf8, 0x69, 0xf3, 0x87, 0x00, 0x00, 0x00, + 0x4f, 0x54, 0xe2, 0xe0, 0x62, 0x0b, 0x00, 0x0b, 0x3a, 0x39, 0x9c, 0x78, 0x24, 0xc7, 0x78, 0xe1, + 0x91, 0x1c, 0xe3, 0x83, 0x47, 0x72, 0x8c, 0x13, 0x1e, 0xcb, 0x31, 0x5c, 0x78, 0x2c, 0xc7, 0x70, + 0xe3, 0xb1, 0x1c, 0x43, 0x94, 0x5a, 0x7a, 0x66, 0x49, 0x46, 0x69, 0x92, 0x5e, 0x72, 0x7e, 0xae, + 0x7e, 0x45, 0x51, 0x41, 0x4e, 0x6a, 0x59, 0xae, 0x7e, 0x5e, 0x7e, 0x4a, 0xaa, 0x7e, 0x99, 0x99, + 0x7e, 0x85, 0x3e, 0xc8, 0xdc, 0x92, 0xca, 0x82, 0xd4, 0xe2, 0x24, 0x36, 0xb0, 0xb9, 0xc6, 0x80, + 0x00, 0x00, 0x00, 0xff, 0xff, 0xfd, 0x64, 0x65, 0xda, 0x6b, 0x00, 0x00, 0x00, } func (m *Params) Marshal() (dAtA []byte, err error) { diff --git a/x/poa/types/query.pb.go b/x/poa/types/query.pb.go index cd673d2..219415e 100644 --- a/x/poa/types/query.pb.go +++ b/x/poa/types/query.pb.go @@ -135,9 +135,9 @@ var fileDescriptor_9a9dd27e9dc4e2f4 = []byte{ 0x6a, 0x45, 0x51, 0x81, 0x3e, 0xc2, 0xf5, 0x4e, 0x0e, 0x27, 0x1e, 0xc9, 0x31, 0x5e, 0x78, 0x24, 0xc7, 0xf8, 0xe0, 0x91, 0x1c, 0xe3, 0x84, 0xc7, 0x72, 0x0c, 0x17, 0x1e, 0xcb, 0x31, 0xdc, 0x78, 0x2c, 0xc7, 0x10, 0xa5, 0x96, 0x9e, 0x59, 0x92, 0x51, 0x9a, 0xa4, 0x97, 0x9c, 0x9f, 0xab, 0x5f, - 0x51, 0x54, 0x90, 0x93, 0x5a, 0x96, 0xab, 0x9f, 0x97, 0x9f, 0x92, 0xaa, 0x5f, 0x66, 0xaa, 0x5f, + 0x51, 0x54, 0x90, 0x93, 0x5a, 0x96, 0xab, 0x9f, 0x97, 0x9f, 0x92, 0xaa, 0x5f, 0x66, 0xa6, 0x5f, 0x01, 0x36, 0xa2, 0xa4, 0xb2, 0x20, 0xb5, 0x38, 0x89, 0x0d, 0x1c, 0x00, 0xc6, 0x80, 0x00, 0x00, - 0x00, 0xff, 0xff, 0x3f, 0x68, 0xe8, 0x58, 0x5e, 0x01, 0x00, 0x00, + 0x00, 0xff, 0xff, 0xdc, 0xea, 0xf6, 0x23, 0x5e, 0x01, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/poa/types/tx.pb.go b/x/poa/types/tx.pb.go index 6c4fcbf..ce3fca4 100644 --- a/x/poa/types/tx.pb.go +++ b/x/poa/types/tx.pb.go @@ -243,35 +243,35 @@ var fileDescriptor_8ac16a0aed23c2e2 = []byte{ // 492 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x93, 0x3f, 0x6f, 0xd3, 0x40, 0x18, 0xc6, 0xed, 0x06, 0x2a, 0xe5, 0x5a, 0x51, 0x6a, 0x45, 0x8a, 0x6b, 0x15, 0xb7, 0x0a, 0x08, - 0x55, 0x95, 0xb8, 0x53, 0x8b, 0x60, 0x60, 0x22, 0x16, 0x30, 0x50, 0x45, 0xaa, 0x8c, 0xc4, 0xc0, - 0x52, 0x9d, 0xe3, 0xe3, 0x6a, 0x35, 0xf6, 0x7b, 0xf2, 0x9d, 0xad, 0x78, 0x43, 0x7c, 0x02, 0xbe, - 0x00, 0x13, 0x0b, 0x63, 0x07, 0x76, 0xd6, 0x8a, 0xa9, 0x62, 0x62, 0x42, 0x28, 0x19, 0xfa, 0x35, - 0x90, 0xff, 0x1c, 0x81, 0x84, 0x4c, 0x5d, 0x12, 0xbf, 0xf7, 0x7b, 0x9f, 0x47, 0xef, 0xfb, 0xf8, - 0x8c, 0xd6, 0x05, 0x50, 0xa2, 0xc6, 0x58, 0xa4, 0xa0, 0xc0, 0x6a, 0x09, 0xa0, 0x4e, 0x87, 0x03, - 0x87, 0xaa, 0x26, 0xe5, 0x53, 0x8d, 0x9c, 0xad, 0x21, 0xc8, 0x18, 0xe4, 0x49, 0x0d, 0xea, 0xa2, - 0x41, 0xdd, 0xba, 0x22, 0xb1, 0xe4, 0x24, 0x3f, 0x28, 0xff, 0x1a, 0x70, 0xaf, 0x01, 0x52, 0xd1, - 0xb3, 0x28, 0x29, 0x61, 0xc0, 0x14, 0x3d, 0xd0, 0xb5, 0x76, 0xe6, 0x00, 0x7c, 0xc4, 0x48, 0x55, - 0x05, 0xd9, 0x5b, 0x42, 0x93, 0xa2, 0x41, 0x9b, 0x34, 0x8e, 0x12, 0x20, 0xd5, 0x6f, 0x7d, 0xd4, - 0xfb, 0xba, 0x82, 0x36, 0x06, 0x92, 0xf7, 0xc3, 0xf0, 0x35, 0x1d, 0x45, 0x21, 0x55, 0x90, 0x5a, - 0x8f, 0x51, 0x9b, 0x66, 0xea, 0x14, 0xd2, 0x48, 0x15, 0xb6, 0xb9, 0x6b, 0xee, 0xb5, 0x3d, 0xfb, - 0xfb, 0x97, 0x07, 0x9d, 0x66, 0xca, 0x7e, 0x18, 0xa6, 0x4c, 0xca, 0x57, 0x2a, 0x8d, 0x12, 0xee, - 0xcf, 0x5a, 0xad, 0x97, 0x68, 0x33, 0xd7, 0x26, 0x27, 0xb4, 0xee, 0xb2, 0x57, 0x2a, 0xfd, 0x9d, - 0x65, 0xfa, 0xcf, 0x57, 0xe7, 0xfb, 0x86, 0x7f, 0xfb, 0x8f, 0xae, 0x81, 0xd6, 0x31, 0x5a, 0x0b, - 0x99, 0x1c, 0xa6, 0x91, 0x50, 0x11, 0x24, 0x76, 0x6b, 0xd7, 0xdc, 0x5b, 0x3b, 0xbc, 0x8b, 0x1b, - 0x0b, 0xbd, 0x71, 0x93, 0x00, 0x7e, 0x36, 0x6b, 0xf5, 0xda, 0x17, 0x3f, 0x77, 0x8c, 0xd2, 0xd6, - 0xf4, 0xff, 0xb6, 0xb0, 0x5e, 0xa0, 0x55, 0x91, 0x05, 0x67, 0xac, 0xb0, 0x6f, 0x54, 0x66, 0x1d, - 0x5c, 0x07, 0x85, 0x75, 0x50, 0xb8, 0x9f, 0x14, 0x9e, 0xfd, 0x6d, 0x36, 0xe8, 0x30, 0x2d, 0x84, - 0x02, 0x7c, 0x9c, 0x05, 0x47, 0xac, 0xf0, 0x1b, 0xf5, 0x93, 0x5b, 0xef, 0xaf, 0xce, 0xf7, 0x67, - 0x5b, 0xf7, 0xb6, 0x50, 0x77, 0x2e, 0x40, 0x9f, 0x49, 0x01, 0x89, 0x64, 0xbd, 0x4f, 0x26, 0xb2, - 0x06, 0x92, 0xfb, 0x2c, 0x86, 0x9c, 0x5d, 0x3f, 0xdf, 0xe7, 0xcb, 0xf3, 0x5d, 0xae, 0x5f, 0x88, - 0x76, 0x61, 0x81, 0x6d, 0xe4, 0x2c, 0x0e, 0xa9, 0x77, 0x38, 0xfc, 0x68, 0xa2, 0xd6, 0x40, 0x72, - 0xcb, 0x43, 0xeb, 0xff, 0x5c, 0x92, 0x0e, 0x16, 0x40, 0xf1, 0xdc, 0xe6, 0xce, 0xf6, 0xff, 0x4e, - 0xb5, 0x97, 0x75, 0x84, 0x36, 0xe6, 0xb3, 0xe8, 0x6a, 0xc1, 0x1c, 0x70, 0x76, 0x96, 0x00, 0x6d, - 0xe6, 0xdc, 0x7c, 0x57, 0xbe, 0x63, 0xef, 0xe9, 0xc5, 0xc4, 0x35, 0x2f, 0x27, 0xae, 0xf9, 0x6b, - 0xe2, 0x9a, 0x1f, 0xa6, 0xae, 0x71, 0x39, 0x75, 0x8d, 0x1f, 0x53, 0xd7, 0x78, 0x73, 0x9f, 0x47, - 0xea, 0x34, 0x0b, 0xf0, 0x10, 0x62, 0x32, 0x4e, 0xc5, 0x88, 0xe5, 0x31, 0x49, 0x20, 0x64, 0x24, - 0x7f, 0x44, 0xc6, 0xa4, 0xfa, 0x50, 0x0b, 0xc1, 0x64, 0xb0, 0x5a, 0x5d, 0x80, 0x87, 0xbf, 0x03, - 0x00, 0x00, 0xff, 0xff, 0x9b, 0x9a, 0xbd, 0x08, 0xbc, 0x03, 0x00, 0x00, + 0x55, 0x95, 0xb8, 0x53, 0x8b, 0xd4, 0x81, 0x89, 0x58, 0xc0, 0x40, 0x15, 0xa9, 0x32, 0x12, 0x03, + 0x4b, 0x75, 0x8e, 0x8f, 0xab, 0xd5, 0xd8, 0xef, 0xc9, 0x77, 0xb6, 0xe2, 0x0d, 0xf1, 0x09, 0xf8, + 0x02, 0x4c, 0x2c, 0x8c, 0x1d, 0xd8, 0x59, 0x2b, 0xa6, 0x8a, 0x89, 0x09, 0xa1, 0x64, 0xe8, 0xd7, + 0x40, 0xfe, 0x73, 0x04, 0x12, 0x32, 0x75, 0x49, 0xfc, 0xde, 0xef, 0x7d, 0x1e, 0xbd, 0xef, 0xe3, + 0x33, 0x5a, 0x17, 0x40, 0x89, 0x1a, 0x63, 0x91, 0x82, 0x02, 0xab, 0x25, 0x80, 0x3a, 0x1d, 0x0e, + 0x1c, 0xaa, 0x9a, 0x94, 0x4f, 0x35, 0x72, 0xb6, 0x86, 0x20, 0x63, 0x90, 0xa7, 0x35, 0xa8, 0x8b, + 0x06, 0x75, 0xeb, 0x8a, 0xc4, 0x92, 0x93, 0xfc, 0xa0, 0xfc, 0x6b, 0xc0, 0x83, 0x06, 0x48, 0x45, + 0xcf, 0xa3, 0xa4, 0x84, 0x01, 0x53, 0xf4, 0x40, 0xd7, 0xda, 0x99, 0x03, 0xf0, 0x11, 0x23, 0x55, + 0x15, 0x64, 0x6f, 0x09, 0x4d, 0x8a, 0x06, 0x6d, 0xd2, 0x38, 0x4a, 0x80, 0x54, 0xbf, 0xf5, 0x51, + 0xef, 0xeb, 0x0a, 0xda, 0x18, 0x48, 0xde, 0x0f, 0xc3, 0xd7, 0x74, 0x14, 0x85, 0x54, 0x41, 0x6a, + 0x1d, 0xa1, 0x36, 0xcd, 0xd4, 0x19, 0xa4, 0x91, 0x2a, 0x6c, 0x73, 0xd7, 0xdc, 0x6b, 0x7b, 0xf6, + 0xf7, 0x2f, 0x8f, 0x3a, 0xcd, 0x94, 0xfd, 0x30, 0x4c, 0x99, 0x94, 0xaf, 0x54, 0x1a, 0x25, 0xdc, + 0x9f, 0xb5, 0x5a, 0x2f, 0xd1, 0x66, 0xae, 0x4d, 0x4e, 0x69, 0xdd, 0x65, 0xaf, 0x54, 0xfa, 0x7b, + 0xcb, 0xf4, 0x9f, 0xaf, 0x2f, 0xf6, 0x0d, 0xff, 0xee, 0x1f, 0x5d, 0x03, 0xad, 0x13, 0xb4, 0x16, + 0x32, 0x39, 0x4c, 0x23, 0xa1, 0x22, 0x48, 0xec, 0xd6, 0xae, 0xb9, 0xb7, 0x76, 0x78, 0x1f, 0x37, + 0x16, 0x7a, 0xe3, 0x26, 0x01, 0xfc, 0x6c, 0xd6, 0xea, 0xb5, 0x2f, 0x7f, 0xee, 0x18, 0xa5, 0xad, + 0xe9, 0xff, 0x6d, 0x61, 0xbd, 0x40, 0xab, 0x22, 0x0b, 0xce, 0x59, 0x61, 0xdf, 0xaa, 0xcc, 0x3a, + 0xb8, 0x0e, 0x0a, 0xeb, 0xa0, 0x70, 0x3f, 0x29, 0x3c, 0xfb, 0xdb, 0x6c, 0xd0, 0x61, 0x5a, 0x08, + 0x05, 0xf8, 0x24, 0x0b, 0x8e, 0x59, 0xe1, 0x37, 0xea, 0x27, 0x77, 0xde, 0x5f, 0x5f, 0xec, 0xcf, + 0xb6, 0xee, 0x6d, 0xa1, 0xee, 0x5c, 0x80, 0x3e, 0x93, 0x02, 0x12, 0xc9, 0x7a, 0x9f, 0x4c, 0x64, + 0x0d, 0x24, 0xf7, 0x59, 0x0c, 0x39, 0xbb, 0x79, 0xbe, 0xcf, 0x97, 0xe7, 0xbb, 0x5c, 0xbf, 0x10, + 0xed, 0xc2, 0x02, 0xdb, 0xc8, 0x59, 0x1c, 0x52, 0xef, 0x70, 0xf8, 0xd1, 0x44, 0xad, 0x81, 0xe4, + 0x96, 0x87, 0xd6, 0xff, 0xb9, 0x24, 0x1d, 0x2c, 0x80, 0xe2, 0xb9, 0xcd, 0x9d, 0xed, 0xff, 0x9d, + 0x6a, 0x2f, 0xeb, 0x18, 0x6d, 0xcc, 0x67, 0xd1, 0xd5, 0x82, 0x39, 0xe0, 0xec, 0x2c, 0x01, 0xda, + 0xcc, 0xb9, 0xfd, 0xae, 0x7c, 0xc7, 0xde, 0xd3, 0xcb, 0x89, 0x6b, 0x5e, 0x4d, 0x5c, 0xf3, 0xd7, + 0xc4, 0x35, 0x3f, 0x4c, 0x5d, 0xe3, 0x6a, 0xea, 0x1a, 0x3f, 0xa6, 0xae, 0xf1, 0xe6, 0x21, 0x8f, + 0xd4, 0x59, 0x16, 0xe0, 0x21, 0xc4, 0x64, 0x9c, 0x8a, 0x11, 0xcb, 0x63, 0x92, 0x40, 0xc8, 0x48, + 0x7e, 0x44, 0xc6, 0xa4, 0xfa, 0x50, 0x0b, 0xc1, 0x64, 0xb0, 0x5a, 0x5d, 0x80, 0xc7, 0xbf, 0x03, + 0x00, 0x00, 0xff, 0xff, 0x78, 0x18, 0xa3, 0x73, 0xbc, 0x03, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used.