From 28f6fbeb8f9bb41090fdb864cf5eb445d4bb5ec0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20C=2E=20Morency?= <1102868+fmorency@users.noreply.github.com> Date: Mon, 23 Sep 2024 13:10:38 -0400 Subject: [PATCH] feat: add amino support (#21) * feat: add amino support * fix: copy paste amino name --- proto/osmosis/tokenfactory/v1beta1/tx.proto | 29 +++-- x/tokenfactory/types/tx.pb.go | 120 ++++++++++---------- 2 files changed, 85 insertions(+), 64 deletions(-) diff --git a/proto/osmosis/tokenfactory/v1beta1/tx.proto b/proto/osmosis/tokenfactory/v1beta1/tx.proto index a7575dd..b9e92c4 100755 --- a/proto/osmosis/tokenfactory/v1beta1/tx.proto +++ b/proto/osmosis/tokenfactory/v1beta1/tx.proto @@ -7,6 +7,7 @@ import "cosmos/bank/v1beta1/bank.proto"; import "osmosis/tokenfactory/v1beta1/params.proto"; import "cosmos/msg/v1/msg.proto"; import "cosmos_proto/cosmos.proto"; +import "amino/amino.proto"; option go_package = "github.com/strangelove-ventures/tokenfactory/x/tokenfactory/types"; @@ -40,6 +41,7 @@ service Msg { // denom does not indicate the current admin. message MsgCreateDenom { option (cosmos.msg.v1.signer) = "sender"; + option (amino.name) = "osmosis/tokenfactory/create-denom"; string sender = 1 [ (gogoproto.moretags) = "yaml:\"sender\"" ]; // subdenom can be up to 44 "alphanumeric" characters long. @@ -57,14 +59,18 @@ message MsgCreateDenomResponse { // more of a token. For now, we only support minting to the sender account message MsgMint { option (cosmos.msg.v1.signer) = "sender"; + option (amino.name) = "osmosis/tokenfactory/mint"; string sender = 1 [ (gogoproto.moretags) = "yaml:\"sender\"" ]; cosmos.base.v1beta1.Coin amount = 2 [ (gogoproto.moretags) = "yaml:\"amount\"", - (gogoproto.nullable) = false + (gogoproto.nullable) = false, + (amino.encoding) = "legacy_coin" + ]; + string mintToAddress = 3 [ + (gogoproto.moretags) = "yaml:\"mint_to_address\"", + (amino.dont_omitempty) = true ]; - string mintToAddress = 3 - [ (gogoproto.moretags) = "yaml:\"mint_to_address\"" ]; } message MsgMintResponse {} @@ -73,14 +79,18 @@ message MsgMintResponse {} // a token. For now, we only support burning from the sender account. message MsgBurn { option (cosmos.msg.v1.signer) = "sender"; + option (amino.name) = "osmosis/tokenfactory/burn"; string sender = 1 [ (gogoproto.moretags) = "yaml:\"sender\"" ]; cosmos.base.v1beta1.Coin amount = 2 [ (gogoproto.moretags) = "yaml:\"amount\"", - (gogoproto.nullable) = false + (gogoproto.nullable) = false, + (amino.encoding) = "legacy_coin" + ]; + string burnFromAddress = 3 [ + (gogoproto.moretags) = "yaml:\"burn_from_address\"", + (amino.dont_omitempty) = true ]; - string burnFromAddress = 3 - [ (gogoproto.moretags) = "yaml:\"burn_from_address\"" ]; } message MsgBurnResponse {} @@ -89,6 +99,7 @@ message MsgBurnResponse {} // adminship of a denom to a new account message MsgChangeAdmin { option (cosmos.msg.v1.signer) = "sender"; + option (amino.name) = "osmosis/tokenfactory/change-admin"; string sender = 1 [ (gogoproto.moretags) = "yaml:\"sender\"" ]; string denom = 2 [ (gogoproto.moretags) = "yaml:\"denom\"" ]; @@ -103,6 +114,7 @@ message MsgChangeAdminResponse {} // the denom's bank metadata message MsgSetDenomMetadata { option (cosmos.msg.v1.signer) = "sender"; + option (amino.name) = "osmosis/tokenfactory/set-denom-metadata"; string sender = 1 [ (gogoproto.moretags) = "yaml:\"sender\"" ]; cosmos.bank.v1beta1.Metadata metadata = 2 [ @@ -117,11 +129,13 @@ message MsgSetDenomMetadataResponse {} message MsgForceTransfer { option (cosmos.msg.v1.signer) = "sender"; + option (amino.name) = "osmosis/tokenfactory/force-transfer"; string sender = 1 [ (gogoproto.moretags) = "yaml:\"sender\"" ]; cosmos.base.v1beta1.Coin amount = 2 [ (gogoproto.moretags) = "yaml:\"amount\"", - (gogoproto.nullable) = false + (gogoproto.nullable) = false, + (amino.encoding) = "legacy_coin" ]; string transferFromAddress = 3 [ (gogoproto.moretags) = "yaml:\"transfer_from_address\"" ]; @@ -136,6 +150,7 @@ message MsgForceTransferResponse {} // Since: cosmos-sdk 0.47 message MsgUpdateParams { option (cosmos.msg.v1.signer) = "authority"; + option (amino.name) = "osmosis/tokenfactory/update-params"; // authority is the address of the governance account. string authority = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; diff --git a/x/tokenfactory/types/tx.pb.go b/x/tokenfactory/types/tx.pb.go index c32714b..bb8f250 100644 --- a/x/tokenfactory/types/tx.pb.go +++ b/x/tokenfactory/types/tx.pb.go @@ -10,6 +10,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" @@ -753,63 +754,68 @@ func init() { } var fileDescriptor_283b6c9a90a846b4 = []byte{ - // 896 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x56, 0x4d, 0x6f, 0xdc, 0x44, - 0x18, 0x8e, 0xdb, 0x74, 0x49, 0x26, 0x4d, 0x93, 0x38, 0xa1, 0xd9, 0x98, 0x74, 0x5d, 0x59, 0x14, - 0xd1, 0x8a, 0xd8, 0xda, 0x02, 0x95, 0xc8, 0x89, 0xb8, 0x28, 0xe2, 0xc0, 0x4a, 0xc8, 0x0d, 0x17, - 0xa8, 0xb4, 0x9a, 0xdd, 0x9d, 0x38, 0x56, 0xea, 0x99, 0x65, 0x66, 0x36, 0xe9, 0xde, 0x2a, 0x7e, - 0x01, 0x7f, 0x00, 0x09, 0xc4, 0x1f, 0xe8, 0x01, 0xf1, 0x1b, 0x7a, 0x41, 0xaa, 0xe0, 0xc2, 0xc9, - 0x42, 0xc9, 0xa1, 0x77, 0xff, 0x02, 0x34, 0x1f, 0xfe, 0xdc, 0x28, 0x9b, 0x3d, 0xe5, 0xb4, 0x6b, - 0xbf, 0xcf, 0xf3, 0xcc, 0xfb, 0xbc, 0xf3, 0xce, 0x3b, 0x06, 0x0f, 0x08, 0x8b, 0x09, 0x8b, 0x98, - 0xc7, 0xc9, 0x31, 0xc2, 0x87, 0xb0, 0xcf, 0x09, 0x1d, 0x7b, 0x27, 0xed, 0x1e, 0xe2, 0xb0, 0xed, - 0xf1, 0x97, 0xee, 0x90, 0x12, 0x4e, 0xcc, 0x6d, 0x0d, 0x73, 0xcb, 0x30, 0x57, 0xc3, 0xac, 0x8d, - 0x90, 0x84, 0x44, 0x02, 0x3d, 0xf1, 0x4f, 0x71, 0xac, 0x56, 0x5f, 0x92, 0xbc, 0x1e, 0x64, 0x28, - 0x57, 0xec, 0x93, 0x08, 0x4f, 0xc4, 0xf1, 0x71, 0x1e, 0x17, 0x0f, 0x3a, 0xfe, 0xf0, 0xd2, 0xd4, - 0x86, 0x90, 0xc2, 0x98, 0x69, 0xe8, 0xa6, 0x96, 0x8a, 0x59, 0xe8, 0x9d, 0xb4, 0xc5, 0x8f, 0x0e, - 0x6c, 0xa9, 0x40, 0x57, 0x25, 0xa7, 0x1e, 0x54, 0xc8, 0x19, 0x83, 0x3b, 0x1d, 0x16, 0x3e, 0xa5, - 0x08, 0x72, 0xf4, 0x15, 0xc2, 0x24, 0x36, 0x1f, 0x82, 0x06, 0x43, 0x78, 0x80, 0x68, 0xd3, 0xb8, - 0x6f, 0x7c, 0xbc, 0xe8, 0xaf, 0xa5, 0x89, 0xbd, 0x3c, 0x86, 0xf1, 0x8b, 0x5d, 0x47, 0xbd, 0x77, - 0x02, 0x0d, 0x30, 0x3d, 0xb0, 0xc0, 0x46, 0xbd, 0x81, 0xa0, 0x35, 0x6f, 0x48, 0xf0, 0x7a, 0x9a, - 0xd8, 0x2b, 0x1a, 0xac, 0x23, 0x4e, 0x90, 0x83, 0x76, 0x97, 0x7e, 0x7a, 0xf7, 0xfa, 0x91, 0x66, - 0x3b, 0xcf, 0xc1, 0xdd, 0xea, 0xd2, 0x01, 0x62, 0x43, 0x82, 0x19, 0x32, 0x7d, 0xb0, 0x82, 0xd1, - 0x69, 0x57, 0x3a, 0xee, 0x2a, 0x79, 0x95, 0x8b, 0x95, 0x26, 0xf6, 0x5d, 0x25, 0x5f, 0x03, 0x38, - 0xc1, 0x32, 0x46, 0xa7, 0x07, 0xe2, 0x85, 0xd4, 0x72, 0xfe, 0x32, 0xc0, 0x7b, 0x1d, 0x16, 0x76, - 0x22, 0xcc, 0x67, 0xb1, 0xf4, 0x35, 0x68, 0xc0, 0x98, 0x8c, 0x30, 0x97, 0x86, 0x96, 0x1e, 0x6f, - 0xb9, 0xba, 0x5c, 0x62, 0xff, 0xb2, 0xad, 0x76, 0x9f, 0x92, 0x08, 0xfb, 0xef, 0xbf, 0x49, 0xec, - 0xb9, 0x42, 0x49, 0xd1, 0x9c, 0x40, 0xf3, 0xcd, 0x2f, 0xc1, 0x72, 0x1c, 0x61, 0x7e, 0x40, 0xf6, - 0x06, 0x03, 0x8a, 0x18, 0x6b, 0xde, 0xac, 0x5b, 0x10, 0xe1, 0x2e, 0x27, 0x5d, 0xa8, 0x00, 0x4e, - 0x50, 0x25, 0x54, 0xab, 0xb5, 0x06, 0x56, 0xb4, 0x9d, 0xac, 0x4c, 0xce, 0x3f, 0xca, 0xa2, 0x3f, - 0xa2, 0xf8, 0x7a, 0x2c, 0xee, 0x83, 0x95, 0xde, 0x88, 0xe2, 0x7d, 0x4a, 0xe2, 0xaa, 0xc9, 0xed, - 0x34, 0xb1, 0x9b, 0x8a, 0x23, 0x00, 0xdd, 0x43, 0x4a, 0xe2, 0xc2, 0x66, 0x9d, 0x74, 0x91, 0x51, - 0x61, 0x2a, 0x37, 0xfa, 0xbb, 0xa1, 0xba, 0xf4, 0x08, 0xe2, 0x10, 0xed, 0x0d, 0xe2, 0x68, 0x26, - 0xbf, 0x1f, 0x81, 0x5b, 0xe5, 0x16, 0x5d, 0x4d, 0x13, 0xfb, 0xb6, 0x42, 0xea, 0xce, 0x51, 0x61, - 0xb3, 0x0d, 0x16, 0x45, 0x53, 0x41, 0xa1, 0xaf, 0x7d, 0x6c, 0xa4, 0x89, 0xbd, 0x5a, 0xf4, 0x9b, - 0x0c, 0x39, 0xc1, 0x02, 0x46, 0xa7, 0x32, 0x8b, 0x6a, 0xe2, 0x4d, 0xd5, 0xcf, 0x45, 0x92, 0x79, - 0xfe, 0xbf, 0x19, 0x60, 0xbd, 0xc3, 0xc2, 0x67, 0x88, 0xcb, 0xde, 0xec, 0x20, 0x0e, 0x07, 0x90, - 0xc3, 0x59, 0x4c, 0x04, 0x60, 0x21, 0xd6, 0x34, 0xbd, 0x6d, 0xf7, 0x8a, 0x6d, 0xc3, 0xc7, 0xf9, - 0xb6, 0x65, 0xda, 0xfe, 0xa6, 0xde, 0x3a, 0x7d, 0x1a, 0x33, 0xb2, 0x13, 0xe4, 0x3a, 0xd5, 0xec, - 0xef, 0x81, 0x0f, 0x2e, 0x48, 0x31, 0xb7, 0xf0, 0xe7, 0x0d, 0xb0, 0xda, 0x61, 0xe1, 0x3e, 0xa1, - 0x7d, 0x74, 0x40, 0x21, 0x66, 0x87, 0x88, 0x5e, 0x4f, 0xd3, 0x05, 0x60, 0x9d, 0xeb, 0x04, 0x26, - 0x1b, 0xef, 0x7e, 0x9a, 0xd8, 0xdb, 0x8a, 0x97, 0x81, 0x6a, 0xcd, 0x77, 0x11, 0xd9, 0xfc, 0x06, - 0xac, 0x65, 0xaf, 0x8b, 0xf3, 0x3a, 0x2f, 0x15, 0x5b, 0x69, 0x62, 0x5b, 0x35, 0xc5, 0xf2, 0x99, - 0x9d, 0x24, 0x56, 0xeb, 0x6a, 0x81, 0x66, 0xbd, 0x6e, 0x79, 0x51, 0x7f, 0x31, 0x64, 0xaf, 0x7f, - 0x37, 0x1c, 0x40, 0x8e, 0xbe, 0x95, 0xa3, 0xdc, 0x7c, 0x02, 0x16, 0xe1, 0x88, 0x1f, 0x11, 0x1a, - 0xf1, 0xb1, 0x2e, 0x6b, 0xf3, 0xef, 0x3f, 0x76, 0x36, 0x74, 0xb9, 0xf4, 0x1a, 0xcf, 0x38, 0x8d, - 0x70, 0x18, 0x14, 0x50, 0xd3, 0x07, 0x0d, 0x75, 0x19, 0xe8, 0x02, 0x7f, 0xe8, 0x5e, 0x76, 0x59, - 0xb9, 0x6a, 0x35, 0x7f, 0x5e, 0xd4, 0x3a, 0xd0, 0xcc, 0xdd, 0x3b, 0x22, 0xf1, 0x42, 0xd3, 0xd9, - 0x02, 0x9b, 0xb5, 0xf4, 0xb2, 0xd4, 0x1f, 0xff, 0xda, 0x00, 0x37, 0x3b, 0x2c, 0x34, 0x7f, 0x04, - 0x4b, 0xe5, 0xcb, 0xe3, 0x93, 0xcb, 0x57, 0xad, 0xce, 0x7b, 0xeb, 0xb3, 0x59, 0xd0, 0xf9, 0xed, - 0xf0, 0x1c, 0xcc, 0xcb, 0xa9, 0xfe, 0x60, 0x2a, 0x5b, 0xc0, 0xac, 0x9d, 0x2b, 0xc1, 0xca, 0xea, - 0x72, 0xa0, 0x4e, 0x57, 0x17, 0xb0, 0x2b, 0xa8, 0x97, 0x27, 0x99, 0x2c, 0x57, 0x69, 0x8a, 0x5d, - 0xa1, 0x5c, 0x05, 0xfa, 0x2a, 0xe5, 0x9a, 0x1c, 0x3e, 0xe6, 0x2b, 0x03, 0xac, 0x4e, 0x4c, 0x9e, - 0xf6, 0x54, 0xa9, 0x3a, 0xc5, 0xfa, 0x62, 0x66, 0x4a, 0x9e, 0xc2, 0x29, 0x58, 0xae, 0x0e, 0x0e, - 0x77, 0xaa, 0x56, 0x05, 0x6f, 0x3d, 0x99, 0x0d, 0x9f, 0x2f, 0xcc, 0xc1, 0xed, 0xca, 0xe1, 0x9a, - 0xbe, 0x5b, 0x65, 0xb8, 0xf5, 0xf9, 0x4c, 0xf0, 0x6c, 0x55, 0xeb, 0xd6, 0xab, 0x77, 0xaf, 0x1f, - 0x19, 0xfe, 0x0f, 0x6f, 0xce, 0x5a, 0xc6, 0xdb, 0xb3, 0x96, 0xf1, 0xdf, 0x59, 0xcb, 0xf8, 0xf9, - 0xbc, 0x35, 0xf7, 0xf6, 0xbc, 0x35, 0xf7, 0xef, 0x79, 0x6b, 0xee, 0xfb, 0xbd, 0x30, 0xe2, 0x47, - 0xa3, 0x9e, 0xdb, 0x27, 0xb1, 0xc7, 0xc4, 0xfc, 0x08, 0xd1, 0x0b, 0x72, 0x82, 0x76, 0x4e, 0x10, - 0xe6, 0x23, 0x8a, 0x6a, 0xdf, 0x7a, 0x2f, 0xab, 0x8f, 0x7c, 0x3c, 0x44, 0xac, 0xd7, 0x90, 0x9f, - 0x6f, 0x9f, 0xfe, 0x1f, 0x00, 0x00, 0xff, 0xff, 0x76, 0x53, 0x10, 0xf8, 0xba, 0x0a, 0x00, 0x00, + // 972 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x56, 0xbf, 0x6f, 0xdb, 0x46, + 0x14, 0x36, 0x1d, 0x47, 0xb5, 0xcf, 0x71, 0x6d, 0xd3, 0x46, 0x2c, 0xb3, 0x89, 0x98, 0x10, 0x75, + 0x51, 0x1b, 0x15, 0x09, 0xa5, 0x4d, 0x80, 0x7a, 0xb3, 0xd2, 0x66, 0x69, 0x05, 0x14, 0x8c, 0x0b, + 0x14, 0x6d, 0x00, 0xe1, 0x24, 0x9d, 0x69, 0xc2, 0xe6, 0x9d, 0x7a, 0x77, 0xb2, 0xa3, 0xcd, 0xe8, + 0xd0, 0xa1, 0x53, 0xe7, 0x2e, 0xed, 0xd8, 0xd1, 0x43, 0xff, 0x84, 0x02, 0x4d, 0xb7, 0xa0, 0x53, + 0x27, 0xa2, 0xb0, 0x07, 0x2f, 0x9d, 0xf4, 0x17, 0x04, 0xf7, 0x43, 0xa4, 0x48, 0x09, 0x96, 0x94, + 0xc9, 0x8b, 0x6d, 0xf2, 0x7d, 0xdf, 0xc7, 0xf7, 0xbe, 0x7b, 0xf7, 0x9e, 0xc1, 0x16, 0x61, 0x11, + 0x61, 0x21, 0xf3, 0x38, 0x39, 0x42, 0xf8, 0x00, 0x36, 0x39, 0xa1, 0x5d, 0xef, 0xa4, 0xd2, 0x40, + 0x1c, 0x56, 0x3c, 0xfe, 0xd2, 0x6d, 0x53, 0xc2, 0x89, 0x79, 0x4f, 0xc3, 0xdc, 0x41, 0x98, 0xab, + 0x61, 0xd6, 0x7a, 0x40, 0x02, 0x22, 0x81, 0x9e, 0xf8, 0x4b, 0x71, 0xac, 0x52, 0x53, 0x92, 0xbc, + 0x06, 0x64, 0x28, 0x51, 0x6c, 0x92, 0x10, 0x0f, 0xc5, 0xf1, 0x51, 0x12, 0x17, 0x0f, 0x3a, 0xbe, + 0x7d, 0x6d, 0x6a, 0x6d, 0x48, 0x61, 0xc4, 0x34, 0x74, 0x43, 0x4b, 0x45, 0x2c, 0xf0, 0x4e, 0x2a, + 0xe2, 0x97, 0x0e, 0x6c, 0xaa, 0x40, 0x5d, 0x25, 0xa7, 0x1e, 0x74, 0x68, 0x15, 0x46, 0x21, 0x26, + 0x9e, 0xfc, 0xa9, 0x5e, 0x39, 0xbf, 0x1a, 0xe0, 0xdd, 0x1a, 0x0b, 0x9e, 0x52, 0x04, 0x39, 0xfa, + 0x0c, 0x61, 0x12, 0x99, 0xdb, 0xa0, 0xc0, 0x10, 0x6e, 0x21, 0x5a, 0x34, 0x1e, 0x18, 0x1f, 0x2e, + 0x54, 0x57, 0x7b, 0xb1, 0xbd, 0xd4, 0x85, 0xd1, 0xf1, 0xae, 0xa3, 0xde, 0x3b, 0xbe, 0x06, 0x98, + 0x1e, 0x98, 0x67, 0x9d, 0x46, 0x4b, 0xd0, 0x8a, 0xb3, 0x12, 0xbc, 0xd6, 0x8b, 0xed, 0x65, 0x0d, + 0xd6, 0x11, 0xc7, 0x4f, 0x40, 0xbb, 0x95, 0x1f, 0xae, 0xce, 0x77, 0x34, 0xfb, 0xa7, 0xab, 0xf3, + 0x9d, 0x87, 0x23, 0x0b, 0x6e, 0xca, 0x6c, 0xca, 0x8a, 0xfd, 0x02, 0xdc, 0xcd, 0x26, 0xe8, 0x23, + 0xd6, 0x26, 0x98, 0x21, 0xb3, 0x0a, 0x96, 0x31, 0x3a, 0xad, 0x4b, 0x6a, 0x5d, 0x25, 0xa1, 0x32, + 0xb6, 0x7a, 0xb1, 0x7d, 0x57, 0x25, 0x91, 0x03, 0x38, 0xfe, 0x12, 0x46, 0xa7, 0xfb, 0xe2, 0x85, + 0xd4, 0x72, 0xce, 0x66, 0xc1, 0x3b, 0x35, 0x16, 0xd4, 0x42, 0xcc, 0xa7, 0x29, 0xfc, 0x1b, 0x50, + 0x80, 0x11, 0xe9, 0x60, 0x2e, 0xcb, 0x5e, 0x7c, 0xb4, 0xe9, 0x6a, 0xa3, 0xc5, 0xc9, 0xf7, 0x9b, + 0xc4, 0x7d, 0x4a, 0x42, 0x5c, 0xdd, 0x7a, 0x15, 0xdb, 0x33, 0xa9, 0x92, 0xa2, 0x39, 0xbf, 0x5c, + 0x9d, 0xef, 0x2c, 0x1e, 0xa3, 0x00, 0x36, 0xbb, 0x75, 0xd1, 0x20, 0xbe, 0xd6, 0x33, 0x3f, 0x07, + 0x4b, 0x51, 0x88, 0xf9, 0x3e, 0xd9, 0x6b, 0xb5, 0x28, 0x62, 0xac, 0x78, 0x4b, 0xe6, 0x62, 0xa7, + 0x25, 0x89, 0x70, 0x9d, 0x93, 0x3a, 0x54, 0x00, 0xe7, 0xf7, 0xab, 0xf3, 0x1d, 0xc3, 0xcf, 0xb2, + 0x76, 0xb7, 0x73, 0x46, 0x6f, 0x8e, 0x34, 0x5a, 0x70, 0x9c, 0x55, 0xb0, 0xac, 0x1d, 0xe8, 0x3b, + 0xeb, 0xfc, 0xa8, 0x5c, 0xa9, 0x76, 0x28, 0xbe, 0x19, 0xae, 0x7c, 0x01, 0x96, 0x1b, 0x1d, 0x8a, + 0x9f, 0x51, 0x12, 0x65, 0x7d, 0x79, 0xd8, 0x8b, 0xed, 0xa2, 0xd2, 0x10, 0x80, 0xfa, 0x01, 0x25, + 0x51, 0xce, 0x99, 0x3c, 0x73, 0x42, 0x6f, 0x04, 0x4b, 0x7b, 0x23, 0x7c, 0x48, 0xbc, 0xf9, 0x5b, + 0xdf, 0x98, 0x43, 0x88, 0x03, 0xb4, 0xd7, 0x8a, 0xc2, 0xa9, 0x2c, 0xfa, 0x00, 0xdc, 0x1e, 0xbc, + 0x2e, 0x2b, 0xbd, 0xd8, 0xbe, 0xa3, 0x90, 0xba, 0x3f, 0x55, 0xd8, 0xac, 0x80, 0x05, 0xd1, 0xba, + 0x50, 0xe8, 0xeb, 0x52, 0xd7, 0x7b, 0xb1, 0xbd, 0x92, 0x76, 0xb5, 0x0c, 0x39, 0xfe, 0x3c, 0x46, + 0xa7, 0x32, 0x8b, 0x49, 0xef, 0x96, 0xcc, 0xbb, 0xac, 0xd8, 0x45, 0x75, 0xb7, 0xd2, 0x52, 0x92, + 0x2a, 0xff, 0x32, 0xc0, 0x5a, 0x8d, 0x05, 0xcf, 0x11, 0x97, 0xf7, 0xa4, 0x86, 0x38, 0x6c, 0x41, + 0x0e, 0xa7, 0x29, 0xd5, 0x07, 0xf3, 0x91, 0xa6, 0xe9, 0x7e, 0xb8, 0x9f, 0xf6, 0x03, 0x3e, 0x4a, + 0xfa, 0xa1, 0xaf, 0x5d, 0xdd, 0xd0, 0x3d, 0xa1, 0xe7, 0x47, 0x9f, 0xec, 0xf8, 0x89, 0xce, 0xdb, + 0xd4, 0x78, 0x1f, 0xbc, 0x37, 0xa2, 0x90, 0xa4, 0xd0, 0xff, 0x67, 0xc1, 0x4a, 0x8d, 0x05, 0xcf, + 0x08, 0x6d, 0xa2, 0x7d, 0x0a, 0x31, 0x3b, 0x40, 0xf4, 0x66, 0xf4, 0xbc, 0x0f, 0xd6, 0xb8, 0x4e, + 0x68, 0xb8, 0xef, 0x1f, 0xf4, 0x62, 0xfb, 0x9e, 0xd2, 0xe9, 0x83, 0xb2, 0xbd, 0xef, 0x8f, 0x22, + 0x9b, 0x5f, 0x82, 0xd5, 0xfe, 0xeb, 0x74, 0xc2, 0xcc, 0x49, 0xc5, 0x52, 0x2f, 0xb6, 0xad, 0x9c, + 0xe2, 0xc0, 0x94, 0xf1, 0x87, 0x89, 0x6f, 0x73, 0x1a, 0x16, 0x28, 0xe6, 0xdd, 0x4e, 0x8e, 0xe2, + 0x4f, 0x43, 0xde, 0xb6, 0xaf, 0xdb, 0x2d, 0xc8, 0xd1, 0x57, 0x72, 0xd9, 0x99, 0x4f, 0xc0, 0x02, + 0xec, 0xf0, 0x43, 0x42, 0x43, 0xde, 0xd5, 0x87, 0x51, 0xfc, 0xe7, 0x8f, 0xf2, 0xba, 0x36, 0x59, + 0x67, 0xf2, 0x9c, 0xd3, 0x10, 0x07, 0x7e, 0x0a, 0x35, 0xab, 0xa0, 0xa0, 0xd6, 0xa5, 0x3e, 0x96, + 0xf7, 0xdd, 0xeb, 0xd6, 0xb9, 0xab, 0xbe, 0x56, 0x9d, 0x13, 0x27, 0xe4, 0x6b, 0xe6, 0xee, 0x63, + 0x51, 0x5e, 0xaa, 0x29, 0x2a, 0x74, 0x46, 0x56, 0xd8, 0x91, 0x19, 0x97, 0x15, 0xcd, 0xd9, 0x04, + 0x1b, 0xb9, 0x2a, 0xfa, 0x15, 0x3e, 0xfa, 0xad, 0x00, 0x6e, 0xd5, 0x58, 0x60, 0x7e, 0x0f, 0x16, + 0x07, 0x37, 0xee, 0x47, 0xd7, 0x27, 0x97, 0x5d, 0x7f, 0xd6, 0x27, 0xd3, 0xa0, 0x93, 0x65, 0xf9, + 0x02, 0xcc, 0xc9, 0x25, 0xb7, 0x35, 0x96, 0x2d, 0x60, 0x56, 0x79, 0x22, 0xd8, 0xa0, 0xba, 0x5c, + 0x16, 0xe3, 0xd5, 0x05, 0x6c, 0x02, 0xf5, 0xc1, 0x91, 0x2b, 0xed, 0x1a, 0x18, 0xb7, 0x13, 0xd8, + 0x95, 0xa2, 0x27, 0xb1, 0x6b, 0x78, 0xfe, 0x99, 0x67, 0x06, 0x58, 0x19, 0x1a, 0x7e, 0x95, 0xb1, + 0x52, 0x79, 0x8a, 0xf5, 0xe9, 0xd4, 0x94, 0x24, 0x85, 0x53, 0xb0, 0x94, 0x9d, 0x4a, 0xee, 0x58, + 0xad, 0x0c, 0xde, 0x7a, 0x32, 0x1d, 0x3e, 0xf9, 0x30, 0x07, 0x77, 0x32, 0x77, 0x70, 0xfc, 0x69, + 0x0d, 0xc2, 0xad, 0xc7, 0x53, 0xc1, 0xfb, 0x5f, 0xb5, 0x6e, 0x9f, 0x89, 0x6d, 0x5d, 0xfd, 0xee, + 0xd5, 0x45, 0xc9, 0x78, 0x7d, 0x51, 0x32, 0xfe, 0xbb, 0x28, 0x19, 0x3f, 0x5f, 0x96, 0x66, 0x5e, + 0x5f, 0x96, 0x66, 0xfe, 0xbd, 0x2c, 0xcd, 0x7c, 0xbb, 0x17, 0x84, 0xfc, 0xb0, 0xd3, 0x70, 0x9b, + 0x24, 0xf2, 0x98, 0x18, 0x46, 0x01, 0x3a, 0x26, 0x27, 0xa8, 0x7c, 0x82, 0x30, 0xef, 0x50, 0x94, + 0xbb, 0x93, 0x2f, 0xb3, 0x8f, 0xbc, 0xdb, 0x46, 0xac, 0x51, 0x90, 0xff, 0xf4, 0x7e, 0xfc, 0x26, + 0x00, 0x00, 0xff, 0xff, 0x23, 0xf6, 0xde, 0xd3, 0x03, 0x0c, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used.