From 6b885fa34b246832cacae492bbe859be0b7fd98f Mon Sep 17 00:00:00 2001 From: Thomas van Dam Date: Wed, 11 Dec 2024 21:08:10 +0100 Subject: [PATCH] feat(data-proxy): support amino signing for transactions --- proto/sedachain/data_proxy/v1/tx.proto | 22 ++++-- x/data-proxy/module.go | 2 +- x/data-proxy/types/codec.go | 6 +- x/data-proxy/types/tx.pb.go | 99 ++++++++++++++------------ 4 files changed, 73 insertions(+), 56 deletions(-) diff --git a/proto/sedachain/data_proxy/v1/tx.proto b/proto/sedachain/data_proxy/v1/tx.proto index 85045f8f..c329099d 100644 --- a/proto/sedachain/data_proxy/v1/tx.proto +++ b/proto/sedachain/data_proxy/v1/tx.proto @@ -6,6 +6,7 @@ import "cosmos_proto/cosmos.proto"; import "cosmos/base/v1beta1/coin.proto"; import "cosmos/msg/v1/msg.proto"; import "sedachain/data_proxy/v1/data_proxy.proto"; +import "amino/amino.proto"; option go_package = "github.com/sedaprotocol/seda-chain/x/data-proxy/types"; @@ -28,6 +29,7 @@ service Msg { // All data required for a new data proxy. message MsgRegisterDataProxy { option (cosmos.msg.v1.signer) = "admin_address"; + option (amino.name) = "sedachain/MsgRegisterDataProxy"; // admin_address is the address that can update the proxy config. string admin_address = 1 [ (cosmos_proto.scalar) = "cosmos.AddressString" ]; @@ -37,7 +39,8 @@ message MsgRegisterDataProxy { string payout_address = 2 [ (cosmos_proto.scalar) = "cosmos.AddressString" ]; // fee defines the amount in aseda this data-proxy charges when utilised. - cosmos.base.v1beta1.Coin fee = 3; + cosmos.base.v1beta1.Coin fee = 3 + [ (amino.dont_omitempty) = true, (amino.encoding) = "legacy_coin" ]; // memo defines an optional string which is not used by the protocol. string memo = 4; @@ -58,27 +61,32 @@ message MsgRegisterDataProxyResponse {} // update. message MsgEditDataProxy { option (cosmos.msg.v1.signer) = "sender"; + option (amino.name) = "sedachain/MsgEditDataProxy"; string sender = 1 [ (cosmos_proto.scalar) = "cosmos.AddressString" ]; - string new_payout_address = 2 - [ (cosmos_proto.scalar) = "cosmos.AddressString" ]; + string new_payout_address = 2 [ + (cosmos_proto.scalar) = "cosmos.AddressString", + (amino.dont_omitempty) = false + ]; - string new_memo = 3; + string new_memo = 3 [ (amino.dont_omitempty) = true ]; - cosmos.base.v1beta1.Coin new_fee = 4; + cosmos.base.v1beta1.Coin new_fee = 4 + [ (amino.dont_omitempty) = false, (amino.encoding) = "legacy_coin" ]; // 0 will default to the minimum delay configured in the params - uint32 fee_update_delay = 5; + uint32 fee_update_delay = 5 [ (amino.dont_omitempty) = false ]; // hex encoded bytes as the expected flow is users sending updates from the // browser - string pub_key = 6; + string pub_key = 6 [ (amino.dont_omitempty) = true ]; } // Allow transferring the admin role to a different address. message MsgTransferAdmin { option (cosmos.msg.v1.signer) = "sender"; + option (amino.name) = "sedachain/MsgTransferAdmin"; string sender = 1 [ (cosmos_proto.scalar) = "cosmos.AddressString" ]; diff --git a/x/data-proxy/module.go b/x/data-proxy/module.go index 96c27124..e6496bee 100644 --- a/x/data-proxy/module.go +++ b/x/data-proxy/module.go @@ -53,7 +53,7 @@ func (AppModuleBasic) Name() string { // RegisterLegacyAminoCodec registers the amino codec for the module, which is used to marshal and unmarshal structs to/from []byte in order to persist them in the module's KVStore func (AppModuleBasic) RegisterLegacyAminoCodec(cdc *codec.LegacyAmino) { - types.RegisterCodec(cdc) + types.RegisterLegacyCodec(cdc) } // RegisterInterfaces registers a module's interface types and their concrete implementations as proto.Message diff --git a/x/data-proxy/types/codec.go b/x/data-proxy/types/codec.go index 32df8158..63354f91 100644 --- a/x/data-proxy/types/codec.go +++ b/x/data-proxy/types/codec.go @@ -2,12 +2,16 @@ package types import ( "github.com/cosmos/cosmos-sdk/codec" + "github.com/cosmos/cosmos-sdk/codec/legacy" cdctypes "github.com/cosmos/cosmos-sdk/codec/types" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/msgservice" ) -func RegisterCodec(_ *codec.LegacyAmino) { +func RegisterLegacyCodec(cdc *codec.LegacyAmino) { + legacy.RegisterAminoMsg(cdc, &MsgRegisterDataProxy{}, "sedachain/MsgRegisterDataProxy") + legacy.RegisterAminoMsg(cdc, &MsgEditDataProxy{}, "sedachain/MsgEditDataProxy") + legacy.RegisterAminoMsg(cdc, &MsgTransferAdmin{}, "sedachain/MsgTransferAdmin") } func RegisterInterfaces(registry cdctypes.InterfaceRegistry) { diff --git a/x/data-proxy/types/tx.pb.go b/x/data-proxy/types/tx.pb.go index 357dcda8..e854db01 100644 --- a/x/data-proxy/types/tx.pb.go +++ b/x/data-proxy/types/tx.pb.go @@ -9,6 +9,7 @@ import ( _ "github.com/cosmos/cosmos-proto" types "github.com/cosmos/cosmos-sdk/types" _ "github.com/cosmos/cosmos-sdk/types/msgservice" + _ "github.com/cosmos/cosmos-sdk/types/tx/amino" _ "github.com/cosmos/gogoproto/gogoproto" grpc1 "github.com/cosmos/gogoproto/grpc" proto "github.com/cosmos/gogoproto/proto" @@ -502,53 +503,57 @@ func init() { func init() { proto.RegisterFile("sedachain/data_proxy/v1/tx.proto", fileDescriptor_40160e30cd70b841) } var fileDescriptor_40160e30cd70b841 = []byte{ - // 726 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x95, 0x4d, 0x4f, 0xdb, 0x48, - 0x18, 0xc7, 0x63, 0x92, 0x0d, 0xcb, 0x40, 0x78, 0x19, 0x21, 0xe5, 0x45, 0xc8, 0xa0, 0x9c, 0xb2, - 0xac, 0x62, 0x93, 0xac, 0xd8, 0x03, 0x12, 0xaa, 0xa0, 0x14, 0x55, 0xaa, 0xa2, 0x22, 0xb7, 0xbd, - 0xf4, 0x62, 0x4d, 0xe2, 0x27, 0x8e, 0x5b, 0xec, 0xb1, 0x3c, 0x13, 0x82, 0xaf, 0xfd, 0x04, 0x3d, - 0xf6, 0xdc, 0x6b, 0x2f, 0x1c, 0xfa, 0x21, 0x50, 0x4f, 0xa8, 0xa7, 0x9e, 0xaa, 0x0a, 0x0e, 0xfd, - 0x1a, 0xd5, 0x8c, 0x9d, 0xc4, 0xa6, 0x24, 0x81, 0xde, 0x3c, 0xcf, 0xff, 0x3f, 0xcf, 0xcb, 0xcf, - 0x63, 0x0f, 0xda, 0x62, 0x60, 0x91, 0x4e, 0x8f, 0x38, 0x9e, 0x6e, 0x11, 0x4e, 0x4c, 0x3f, 0xa0, - 0xe7, 0xa1, 0x7e, 0xd6, 0xd0, 0xf9, 0xb9, 0xe6, 0x07, 0x94, 0x53, 0x5c, 0x1c, 0x39, 0xb4, 0xb1, - 0x43, 0x3b, 0x6b, 0x54, 0xd6, 0x6d, 0x6a, 0x53, 0xe9, 0xd1, 0xc5, 0x53, 0x64, 0xaf, 0x94, 0x3b, - 0x94, 0xb9, 0x94, 0x99, 0x91, 0x10, 0x2d, 0x62, 0x49, 0x8d, 0x56, 0x7a, 0x9b, 0x30, 0xd0, 0xcf, - 0x1a, 0x6d, 0xe0, 0xa4, 0xa1, 0x77, 0xa8, 0xe3, 0xc5, 0x7a, 0x31, 0xd6, 0x5d, 0x66, 0x8b, 0x0e, - 0x5c, 0x66, 0xc7, 0x42, 0x6d, 0x52, 0x93, 0x89, 0x86, 0xa4, 0xb3, 0xfa, 0x71, 0x0e, 0xad, 0xb7, - 0x98, 0x6d, 0x80, 0xed, 0x30, 0x0e, 0xc1, 0x11, 0xe1, 0xe4, 0x44, 0xc8, 0x78, 0x1f, 0x15, 0x88, - 0xe5, 0x3a, 0x9e, 0x49, 0x2c, 0x2b, 0x00, 0xc6, 0x4a, 0xca, 0x96, 0x52, 0x5b, 0x38, 0x2c, 0x7d, - 0xfd, 0x5c, 0x5f, 0x8f, 0x9b, 0x3c, 0x88, 0x94, 0x17, 0x3c, 0x70, 0x3c, 0xdb, 0x58, 0x92, 0xf6, - 0x38, 0x86, 0x1f, 0xa1, 0x65, 0x9f, 0x84, 0xb4, 0xcf, 0x47, 0xfb, 0xe7, 0x66, 0xec, 0x2f, 0x44, - 0xfe, 0x61, 0x82, 0x7f, 0x51, 0xb6, 0x0b, 0x50, 0xca, 0x6e, 0x29, 0xb5, 0xc5, 0x66, 0x59, 0x8b, - 0xb7, 0x08, 0x12, 0x5a, 0x4c, 0x42, 0x7b, 0x4c, 0x1d, 0xcf, 0x10, 0x2e, 0x8c, 0x51, 0xce, 0x05, - 0x97, 0x96, 0x72, 0xa2, 0x86, 0x21, 0x9f, 0x71, 0x11, 0xcd, 0xfb, 0xfd, 0xb6, 0xf9, 0x16, 0xc2, - 0xd2, 0x5f, 0x32, 0x9c, 0xf7, 0xfb, 0xed, 0x67, 0x10, 0xe2, 0x0d, 0xb4, 0xc0, 0x1c, 0xdb, 0x23, - 0xbc, 0x1f, 0x40, 0x29, 0x2f, 0xa5, 0x71, 0x60, 0x0f, 0xbf, 0xfb, 0x79, 0xb1, 0x9d, 0x1e, 0xbd, - 0xaa, 0xa2, 0x8d, 0xbb, 0x18, 0x19, 0xc0, 0x7c, 0xea, 0x31, 0xa8, 0x7e, 0x9a, 0x43, 0xab, 0x2d, - 0x66, 0x3f, 0xb1, 0x1c, 0x3e, 0x06, 0xb8, 0x83, 0xf2, 0x0c, 0x3c, 0x0b, 0x82, 0x99, 0xe4, 0x62, - 0x1f, 0x3e, 0x46, 0xd8, 0x83, 0x81, 0xf9, 0x40, 0x6e, 0xab, 0x1e, 0x0c, 0x4e, 0x52, 0xe8, 0xca, - 0xe8, 0x6f, 0x91, 0x47, 0x12, 0xc9, 0xca, 0xf9, 0xe6, 0x3d, 0x18, 0xb4, 0x04, 0x94, 0x26, 0x12, - 0x8f, 0xa6, 0x20, 0x9b, 0x9b, 0x45, 0x36, 0xef, 0xc1, 0xe0, 0x18, 0x00, 0xd7, 0xd0, 0x6a, 0x17, - 0xc0, 0xec, 0xfb, 0x16, 0xe1, 0x60, 0x5a, 0x70, 0x4a, 0x22, 0xa2, 0x05, 0x63, 0xb9, 0x0b, 0xf0, - 0x4a, 0x86, 0x8f, 0x44, 0x34, 0x89, 0x3c, 0x9f, 0x44, 0xbe, 0xb7, 0x28, 0xa0, 0xc6, 0x63, 0x56, - 0x2f, 0x14, 0x49, 0xeb, 0x65, 0x40, 0x3c, 0xd6, 0x85, 0xe0, 0x40, 0xa0, 0xfe, 0x03, 0x5a, 0x47, - 0x68, 0x4d, 0x8c, 0x92, 0x3e, 0xa4, 0xb3, 0x60, 0xad, 0x78, 0x30, 0x38, 0x48, 0x9e, 0xd3, 0x44, - 0xcb, 0xd9, 0xc9, 0x2d, 0x57, 0x50, 0xe9, 0x76, 0xc7, 0xa3, 0x97, 0x7f, 0x2c, 0xb5, 0xd4, 0xbb, - 0x1f, 0x6a, 0x78, 0x1b, 0xad, 0x25, 0xd0, 0xf5, 0xc0, 0xb1, 0x7b, 0x5c, 0x0e, 0x98, 0x35, 0x56, - 0x46, 0xec, 0x9e, 0xca, 0x70, 0xf5, 0x83, 0x82, 0x56, 0x5a, 0xcc, 0x8e, 0x62, 0x27, 0x24, 0x20, - 0x2e, 0xc3, 0xff, 0xa3, 0x05, 0xd2, 0xe7, 0x3d, 0x1a, 0x38, 0x3c, 0x9c, 0x09, 0x66, 0x6c, 0xc5, - 0xfb, 0x28, 0xef, 0xcb, 0x0c, 0x12, 0xc8, 0x62, 0x73, 0x53, 0x9b, 0xf0, 0x4f, 0xd2, 0xa2, 0x42, - 0x87, 0xb9, 0xcb, 0xef, 0x9b, 0x19, 0x23, 0xde, 0xb4, 0xb7, 0x2c, 0x66, 0x1f, 0xa7, 0xab, 0x96, - 0x51, 0xf1, 0x56, 0x67, 0xc3, 0x09, 0x9b, 0x5f, 0xb2, 0x28, 0xdb, 0x62, 0x36, 0x0e, 0xd1, 0xda, - 0xef, 0xff, 0x90, 0xfa, 0xc4, 0xb2, 0x77, 0x7d, 0x4e, 0x95, 0xdd, 0x07, 0xd9, 0x47, 0x90, 0x5d, - 0x54, 0x48, 0x7f, 0x79, 0xff, 0x4c, 0xcb, 0x93, 0xb2, 0x56, 0x1a, 0xf7, 0xb6, 0x26, 0xcb, 0xa5, - 0x8f, 0xee, 0xd4, 0x72, 0x29, 0xeb, 0xf4, 0x72, 0x77, 0x1e, 0x2f, 0xfc, 0x06, 0x2d, 0xa5, 0x8e, - 0x44, 0x6d, 0x5a, 0x8a, 0xa4, 0xb3, 0xb2, 0x73, 0x5f, 0xe7, 0xb0, 0xd6, 0xe1, 0xf3, 0xcb, 0x6b, - 0x55, 0xb9, 0xba, 0x56, 0x95, 0x1f, 0xd7, 0xaa, 0xf2, 0xfe, 0x46, 0xcd, 0x5c, 0xdd, 0xa8, 0x99, - 0x6f, 0x37, 0x6a, 0xe6, 0xf5, 0xae, 0xed, 0xf0, 0x5e, 0xbf, 0xad, 0x75, 0xa8, 0xab, 0x8b, 0xac, - 0xf2, 0xf2, 0xe8, 0xd0, 0x53, 0xb9, 0xa8, 0x47, 0x37, 0xcd, 0xb9, 0xbc, 0x5d, 0xea, 0xd1, 0x5d, - 0xc3, 0x43, 0x1f, 0x58, 0x3b, 0x2f, 0x7d, 0xff, 0xfd, 0x0a, 0x00, 0x00, 0xff, 0xff, 0xdd, 0x2b, - 0x73, 0xaf, 0x35, 0x07, 0x00, 0x00, + // 800 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x95, 0xcd, 0x6e, 0xeb, 0x44, + 0x14, 0xc7, 0xe3, 0x26, 0x37, 0x97, 0x4e, 0x6f, 0xda, 0x66, 0x54, 0x94, 0x34, 0xba, 0xb8, 0x51, + 0x56, 0x21, 0x52, 0xec, 0xa6, 0xa8, 0x2c, 0x2a, 0x55, 0xa8, 0xa1, 0x54, 0xa0, 0x2a, 0xa2, 0x32, + 0xb0, 0x61, 0x63, 0x4d, 0xe2, 0x13, 0xc7, 0x50, 0x7b, 0x2c, 0xcf, 0xa4, 0xa9, 0xb7, 0x2c, 0x59, + 0xb1, 0x44, 0x3c, 0x01, 0xcb, 0x2c, 0x78, 0x88, 0x8a, 0x0d, 0x15, 0x2b, 0x16, 0x08, 0xa1, 0x76, + 0x91, 0x87, 0x60, 0x83, 0x66, 0xec, 0x24, 0x76, 0xc9, 0x47, 0xe9, 0x26, 0xb2, 0xcf, 0xf9, 0x9f, + 0x0f, 0xff, 0xce, 0x99, 0x0c, 0xaa, 0x32, 0xb0, 0x48, 0x6f, 0x40, 0x1c, 0x4f, 0xb7, 0x08, 0x27, + 0xa6, 0x1f, 0xd0, 0xdb, 0x50, 0xbf, 0x69, 0xe9, 0xfc, 0x56, 0xf3, 0x03, 0xca, 0x29, 0x2e, 0xcd, + 0x14, 0xda, 0x5c, 0xa1, 0xdd, 0xb4, 0x2a, 0x7b, 0x36, 0xb5, 0xa9, 0xd4, 0xe8, 0xe2, 0x29, 0x92, + 0x57, 0xf6, 0x7b, 0x94, 0xb9, 0x94, 0x99, 0x91, 0x23, 0x7a, 0x89, 0x5d, 0x6a, 0xf4, 0xa6, 0x77, + 0x09, 0x03, 0xfd, 0xa6, 0xd5, 0x05, 0x4e, 0x5a, 0x7a, 0x8f, 0x3a, 0x5e, 0xec, 0x2f, 0xc5, 0x7e, + 0x97, 0xd9, 0xa2, 0x03, 0x97, 0xd9, 0xb1, 0xa3, 0xbe, 0xac, 0xc9, 0x44, 0x43, 0x91, 0xb2, 0x48, + 0x5c, 0xc7, 0xa3, 0xba, 0xfc, 0x8d, 0x4c, 0xb5, 0x3f, 0x37, 0xd0, 0x5e, 0x87, 0xd9, 0x06, 0xd8, + 0x0e, 0xe3, 0x10, 0x9c, 0x13, 0x4e, 0xae, 0x44, 0x04, 0x3e, 0x45, 0x05, 0x62, 0xb9, 0x8e, 0x67, + 0x12, 0xcb, 0x0a, 0x80, 0xb1, 0xb2, 0x52, 0x55, 0xea, 0x9b, 0xed, 0xf2, 0xef, 0xbf, 0x34, 0xf7, + 0xe2, 0xbe, 0xcf, 0x22, 0xcf, 0x17, 0x3c, 0x70, 0x3c, 0xdb, 0x78, 0x23, 0xe5, 0xb1, 0x0d, 0x7f, + 0x84, 0xb6, 0x7d, 0x12, 0xd2, 0x21, 0x9f, 0xc5, 0x6f, 0xac, 0x89, 0x2f, 0x44, 0xfa, 0x69, 0x82, + 0x36, 0xca, 0xf6, 0x01, 0xca, 0xd9, 0xaa, 0x52, 0xdf, 0x3a, 0xda, 0xd7, 0xe2, 0x10, 0x01, 0x47, + 0x8b, 0xe1, 0x68, 0x1f, 0x53, 0xc7, 0x6b, 0xbf, 0xfb, 0xd3, 0x64, 0xdc, 0xd8, 0xba, 0x06, 0x9b, + 0xf4, 0x42, 0x53, 0xe0, 0xfa, 0x79, 0x32, 0x6e, 0x28, 0x86, 0x08, 0xc6, 0x18, 0xe5, 0x5c, 0x70, + 0x69, 0x39, 0x27, 0x4a, 0x1b, 0xf2, 0x19, 0x97, 0xd0, 0x6b, 0x7f, 0xd8, 0x35, 0xbf, 0x85, 0xb0, + 0xfc, 0x4a, 0x9a, 0xf3, 0xfe, 0xb0, 0x7b, 0x09, 0x21, 0x7e, 0x8b, 0x36, 0x99, 0x63, 0x7b, 0x84, + 0x0f, 0x03, 0x28, 0xe7, 0xa5, 0x6b, 0x6e, 0x38, 0x39, 0xfe, 0x6e, 0x32, 0x6e, 0xa4, 0x89, 0x7c, + 0x3f, 0x19, 0x37, 0xd4, 0x39, 0xfb, 0x45, 0x14, 0x6b, 0x2a, 0x7a, 0xbb, 0xc8, 0x6e, 0x00, 0xf3, + 0xa9, 0xc7, 0xa0, 0xf6, 0xcf, 0x06, 0xda, 0xed, 0x30, 0xfb, 0x13, 0xcb, 0xe1, 0x73, 0xf4, 0x87, + 0x28, 0xcf, 0xc0, 0xb3, 0x20, 0x58, 0xcb, 0x3c, 0xd6, 0xe1, 0x4b, 0x84, 0x3d, 0x18, 0x99, 0x0b, + 0x89, 0xbf, 0xb7, 0x2c, 0x5a, 0x80, 0xca, 0x18, 0xbb, 0x1e, 0x8c, 0xae, 0x52, 0xe4, 0xab, 0xe8, + 0x1d, 0x91, 0x4c, 0x92, 0xcb, 0xca, 0x14, 0xaf, 0x22, 0xa6, 0xaf, 0x3d, 0x18, 0x75, 0x04, 0xc3, + 0xcf, 0x90, 0x78, 0x34, 0xc5, 0x7c, 0x72, 0x2f, 0x9a, 0x4f, 0xc6, 0xc8, 0x7b, 0x30, 0xba, 0x00, + 0xc0, 0x3a, 0xda, 0xed, 0x03, 0x98, 0x43, 0xdf, 0x22, 0x1c, 0x4c, 0x0b, 0xae, 0x49, 0x34, 0x97, + 0x42, 0x54, 0x34, 0x63, 0x6c, 0xf7, 0x01, 0xbe, 0x92, 0xde, 0x73, 0xe1, 0xc4, 0xea, 0x7c, 0x7e, + 0xf9, 0x64, 0x73, 0xf1, 0x18, 0x4f, 0x1a, 0x62, 0x50, 0x31, 0x17, 0x31, 0xa1, 0x4a, 0x6a, 0x42, + 0x29, 0xd0, 0xb5, 0xdf, 0x14, 0x49, 0xff, 0xcb, 0x80, 0x78, 0xac, 0x0f, 0xc1, 0x99, 0x98, 0xee, + 0x0b, 0xe8, 0x9f, 0xa3, 0xa2, 0xc0, 0x91, 0x3e, 0x2e, 0xeb, 0xd6, 0x7d, 0xc7, 0x83, 0xd1, 0x59, + 0xf2, 0xc4, 0x24, 0x16, 0x33, 0x9b, 0x5c, 0xcc, 0x35, 0x5f, 0x94, 0x6a, 0xbe, 0x56, 0x41, 0xe5, + 0xa7, 0xb6, 0xd9, 0xae, 0x5d, 0x48, 0x5f, 0x8a, 0xc0, 0xd4, 0x87, 0x1b, 0xa8, 0x98, 0x18, 0xc3, + 0x00, 0x1c, 0x7b, 0xc0, 0xe5, 0xf7, 0x67, 0x8d, 0x9d, 0xd9, 0x00, 0x3e, 0x95, 0xe6, 0xda, 0x8f, + 0x0a, 0xda, 0xe9, 0x30, 0x3b, 0xb2, 0x5d, 0x91, 0x80, 0xb8, 0x0c, 0x7f, 0x88, 0x36, 0xc9, 0x90, + 0x0f, 0x68, 0xe0, 0xf0, 0x70, 0x2d, 0xb7, 0xb9, 0x14, 0x9f, 0xa2, 0xbc, 0x2f, 0x33, 0x48, 0x5e, + 0x5b, 0x47, 0x07, 0xda, 0x92, 0xff, 0x53, 0x2d, 0x2a, 0xd4, 0xce, 0xdd, 0xfd, 0x75, 0x90, 0x31, + 0xe2, 0xa0, 0x93, 0x6d, 0x81, 0x66, 0x9e, 0xae, 0xb6, 0x8f, 0x4a, 0x4f, 0x3a, 0x9b, 0x7e, 0xe1, + 0xd1, 0xaf, 0x59, 0x94, 0xed, 0x30, 0x1b, 0x87, 0xa8, 0xf8, 0xdf, 0x3f, 0xbb, 0xe6, 0xd2, 0xb2, + 0x8b, 0x4e, 0x6f, 0xe5, 0xf8, 0x7f, 0xc9, 0x67, 0x90, 0x5d, 0x54, 0x48, 0x1f, 0xf4, 0xf7, 0x57, + 0xe5, 0x49, 0x49, 0x2b, 0xad, 0x67, 0x4b, 0x93, 0xe5, 0xd2, 0x9b, 0xbd, 0xb2, 0x5c, 0x4a, 0xba, + 0xba, 0xdc, 0xc2, 0xf5, 0xc2, 0xdf, 0xa0, 0x37, 0xa9, 0x95, 0xa8, 0xaf, 0x4a, 0x91, 0x54, 0x56, + 0x0e, 0x9f, 0xab, 0x9c, 0xd6, 0x6a, 0x7f, 0x7e, 0xf7, 0xa0, 0x2a, 0xf7, 0x0f, 0xaa, 0xf2, 0xf7, + 0x83, 0xaa, 0xfc, 0xf0, 0xa8, 0x66, 0xee, 0x1f, 0xd5, 0xcc, 0x1f, 0x8f, 0x6a, 0xe6, 0xeb, 0x63, + 0xdb, 0xe1, 0x83, 0x61, 0x57, 0xeb, 0x51, 0x57, 0x17, 0x59, 0xe5, 0x2d, 0xd7, 0xa3, 0xd7, 0xf2, + 0xa5, 0x19, 0x9d, 0x9a, 0x5b, 0x79, 0x33, 0x36, 0xa3, 0x7b, 0x92, 0x87, 0x3e, 0xb0, 0x6e, 0x5e, + 0xea, 0x3e, 0xf8, 0x37, 0x00, 0x00, 0xff, 0xff, 0x44, 0x4a, 0x5c, 0x80, 0xf1, 0x07, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used.