From 0b6a4dfcc7b335abf32f93197d0f23654941c86b Mon Sep 17 00:00:00 2001 From: Andrei Ivasko Date: Fri, 13 Aug 2021 18:36:15 +0300 Subject: [PATCH 01/34] draft --- proto/cosmos/auth/v1beta1/auth.proto | 16 +++--- proto/cosmos/auth/v1beta1/query.proto | 2 +- proto/cosmos/authz/v1beta1/event.proto | 11 ++-- proto/cosmos/authz/v1beta1/genesis.proto | 4 +- proto/cosmos/authz/v1beta1/query.proto | 5 +- proto/cosmos/authz/v1beta1/tx.proto | 6 +-- proto/cosmos/bank/v1beta1/bank.proto | 6 +-- proto/cosmos/bank/v1beta1/genesis.proto | 3 +- proto/cosmos/bank/v1beta1/query.proto | 5 +- proto/cosmos/bank/v1beta1/tx.proto | 5 +- proto/cosmos/base/abci/v1beta1/abci.proto | 25 ++++----- .../base/query/v1beta1/pagination.proto | 8 +-- .../base/reflection/v2alpha1/reflection.proto | 2 +- .../base/snapshots/v1beta1/snapshot.proto | 7 +-- .../base/store/v1beta1/commit_info.proto | 5 +- .../cosmos/base/store/v1beta1/snapshot.proto | 5 +- .../base/tendermint/v1beta1/query.proto | 15 +++--- proto/cosmos/base/v1beta1/coin.proto | 1 + .../capability/v1beta1/capability.proto | 4 +- proto/cosmos/capability/v1beta1/genesis.proto | 5 +- proto/cosmos/crisis/v1beta1/tx.proto | 3 +- proto/cosmos/crypto/multisig/keys.proto | 3 +- .../crypto/multisig/v1beta1/multisig.proto | 3 +- .../cosmos/distribution/v1beta1/genesis.proto | 28 +++++----- proto/cosmos/distribution/v1beta1/query.proto | 23 +++++---- proto/cosmos/distribution/v1beta1/tx.proto | 13 ++--- proto/cosmos/evidence/v1beta1/evidence.proto | 7 +-- proto/cosmos/evidence/v1beta1/tx.proto | 2 +- proto/cosmos/feegrant/v1beta1/feegrant.proto | 4 +- proto/cosmos/feegrant/v1beta1/query.proto | 7 +-- proto/cosmos/feegrant/v1beta1/tx.proto | 8 +-- proto/cosmos/gov/v1beta1/genesis.proto | 3 +- proto/cosmos/gov/v1beta1/gov.proto | 11 ++-- proto/cosmos/gov/v1beta1/query.proto | 21 ++++---- proto/cosmos/gov/v1beta1/tx.proto | 16 +++--- proto/cosmos/group/v1beta1/query.proto | 25 ++++----- proto/cosmos/group/v1beta1/tx.proto | 51 +++++++++---------- proto/cosmos/group/v1beta1/types.proto | 30 +++++------ proto/cosmos/mint/v1beta1/mint.proto | 3 +- proto/cosmos/slashing/v1beta1/genesis.proto | 7 +-- proto/cosmos/slashing/v1beta1/query.proto | 3 +- proto/cosmos/slashing/v1beta1/slashing.proto | 11 ++-- proto/cosmos/slashing/v1beta1/tx.proto | 3 +- proto/cosmos/staking/v1beta1/authz.proto | 3 +- proto/cosmos/staking/v1beta1/genesis.proto | 5 +- proto/cosmos/staking/v1beta1/query.proto | 33 ++++++------ proto/cosmos/staking/v1beta1/staking.proto | 39 +++++++------- proto/cosmos/staking/v1beta1/tx.proto | 20 ++++---- proto/cosmos/tx/signing/v1beta1/signing.proto | 4 +- proto/cosmos/tx/v1beta1/tx.proto | 19 +++---- proto/cosmos/upgrade/v1beta1/query.proto | 5 +- proto/cosmos/upgrade/v1beta1/upgrade.proto | 5 +- proto/cosmos/vesting/v1beta1/tx.proto | 7 +-- proto/cosmos/vesting/v1beta1/vesting.proto | 9 ++-- 54 files changed, 309 insertions(+), 265 deletions(-) diff --git a/proto/cosmos/auth/v1beta1/auth.proto b/proto/cosmos/auth/v1beta1/auth.proto index 72e1d9ec285b..40f9978959fc 100644 --- a/proto/cosmos/auth/v1beta1/auth.proto +++ b/proto/cosmos/auth/v1beta1/auth.proto @@ -17,11 +17,11 @@ message BaseAccount { option (cosmos_proto.implements_interface) = "AccountI"; - string address = 1; + string address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; google.protobuf.Any pub_key = 2 [(gogoproto.jsontag) = "public_key,omitempty", (gogoproto.moretags) = "yaml:\"public_key\""]; - uint64 account_number = 3 [(gogoproto.moretags) = "yaml:\"account_number\""]; - uint64 sequence = 4; + uint64 account_number = 3 [(gogoproto.moretags) = "yaml:\"account_number\""], [(cosmos_proto.scalar) = "cosmos.Int"]; + uint64 sequence = 4 [(cosmos_proto.scalar) = "cosmos.Int"]; } // ModuleAccount defines an account for modules that holds coins on a pool. @@ -40,11 +40,11 @@ message Params { option (gogoproto.equal) = true; option (gogoproto.goproto_stringer) = false; - uint64 max_memo_characters = 1 [(gogoproto.moretags) = "yaml:\"max_memo_characters\""]; - uint64 tx_sig_limit = 2 [(gogoproto.moretags) = "yaml:\"tx_sig_limit\""]; - uint64 tx_size_cost_per_byte = 3 [(gogoproto.moretags) = "yaml:\"tx_size_cost_per_byte\""]; + uint64 max_memo_characters = 1 [(cosmos_proto.scalar) = "cosmos.Int"], [(gogoproto.moretags) = "yaml:\"max_memo_characters\""]; + uint64 tx_sig_limit = 2 [(cosmos_proto.scalar) = "cosmos.Int"], [(gogoproto.moretags) = "yaml:\"tx_sig_limit\""]; + uint64 tx_size_cost_per_byte = 3 [(cosmos_proto.scalar) = "cosmos.Int"], [(gogoproto.moretags) = "yaml:\"tx_size_cost_per_byte\""]; uint64 sig_verify_cost_ed25519 = 4 - [(gogoproto.customname) = "SigVerifyCostED25519", (gogoproto.moretags) = "yaml:\"sig_verify_cost_ed25519\""]; + [(cosmos_proto.scalar) = "cosmos.Int"], [(gogoproto.customname) = "SigVerifyCostED25519", (gogoproto.moretags) = "yaml:\"sig_verify_cost_ed25519\""]; uint64 sig_verify_cost_secp256k1 = 5 - [(gogoproto.customname) = "SigVerifyCostSecp256k1", (gogoproto.moretags) = "yaml:\"sig_verify_cost_secp256k1\""]; + [(cosmos_proto.scalar) = "cosmos.Int"], [(gogoproto.customname) = "SigVerifyCostSecp256k1", (gogoproto.moretags) = "yaml:\"sig_verify_cost_secp256k1\""]; } diff --git a/proto/cosmos/auth/v1beta1/query.proto b/proto/cosmos/auth/v1beta1/query.proto index 14bec85a3af5..120ef459d38e 100644 --- a/proto/cosmos/auth/v1beta1/query.proto +++ b/proto/cosmos/auth/v1beta1/query.proto @@ -54,7 +54,7 @@ message QueryAccountRequest { option (gogoproto.goproto_getters) = false; // address defines the address to query for. - string address = 1; + string address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; } // QueryAccountResponse is the response type for the Query/Account RPC method. diff --git a/proto/cosmos/authz/v1beta1/event.proto b/proto/cosmos/authz/v1beta1/event.proto index c77cea3e6a81..1177dba68e6b 100644 --- a/proto/cosmos/authz/v1beta1/event.proto +++ b/proto/cosmos/authz/v1beta1/event.proto @@ -1,6 +1,9 @@ syntax = "proto3"; package cosmos.authz.v1beta1; + + + option go_package = "github.com/cosmos/cosmos-sdk/x/authz"; // EventGrant is emitted on Msg/Grant @@ -8,9 +11,9 @@ message EventGrant { // Msg type URL for which an autorization is granted string msg_type_url = 2; // Granter account address - string granter = 3; + string granter = 3 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // Grantee account address - string grantee = 4; + string grantee = 4 [(cosmos_proto.scalar) = "cosmos.AddressString"]; } // EventRevoke is emitted on Msg/Revoke @@ -18,7 +21,7 @@ message EventRevoke { // Msg type URL for which an autorization is revoked string msg_type_url = 2; // Granter account address - string granter = 3; + string granter = 3 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // Grantee account address - string grantee = 4; + string grantee = 4 [(cosmos_proto.scalar) = "cosmos.AddressString"]; } diff --git a/proto/cosmos/authz/v1beta1/genesis.proto b/proto/cosmos/authz/v1beta1/genesis.proto index 411fd276fb24..504739bc0cce 100644 --- a/proto/cosmos/authz/v1beta1/genesis.proto +++ b/proto/cosmos/authz/v1beta1/genesis.proto @@ -15,8 +15,8 @@ message GenesisState { // GrantAuthorization defines the GenesisState/GrantAuthorization type. message GrantAuthorization { - string granter = 1; - string grantee = 2; + string granter = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; + string grantee = 2 [(cosmos_proto.scalar) = "cosmos.AddressString"]; google.protobuf.Any authorization = 3 [(cosmos_proto.accepts_interface) = "Authorization"]; google.protobuf.Timestamp expiration = 4 [(gogoproto.nullable) = false, (gogoproto.stdtime) = true]; diff --git a/proto/cosmos/authz/v1beta1/query.proto b/proto/cosmos/authz/v1beta1/query.proto index 3b66e03107df..915dc7dec3ba 100644 --- a/proto/cosmos/authz/v1beta1/query.proto +++ b/proto/cosmos/authz/v1beta1/query.proto @@ -4,6 +4,7 @@ package cosmos.authz.v1beta1; import "google/api/annotations.proto"; import "cosmos/base/query/v1beta1/pagination.proto"; import "cosmos/authz/v1beta1/authz.proto"; +import "cosmos_proto/cosmos.proto"; option go_package = "github.com/cosmos/cosmos-sdk/x/authz"; @@ -17,8 +18,8 @@ service Query { // QueryGrantsRequest is the request type for the Query/Grants RPC method. message QueryGrantsRequest { - string granter = 1; - string grantee = 2; + string granter = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; + string grantee = 2 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // Optional, msg_type_url, when set, will query only grants matching given msg type. string msg_type_url = 3; // pagination defines an pagination for the request. diff --git a/proto/cosmos/authz/v1beta1/tx.proto b/proto/cosmos/authz/v1beta1/tx.proto index dd68984e921d..252ac939275d 100644 --- a/proto/cosmos/authz/v1beta1/tx.proto +++ b/proto/cosmos/authz/v1beta1/tx.proto @@ -32,8 +32,8 @@ service Msg { // MsgGrant is a request type for Grant method. It declares authorization to the grantee // on behalf of the granter with the provided expiration time. message MsgGrant { - string granter = 1; - string grantee = 2; + string granter = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; + string grantee = 2 [(cosmos_proto.scalar) = "cosmos.AddressString"]; cosmos.authz.v1beta1.Grant grant = 3 [(gogoproto.nullable) = false]; } @@ -47,7 +47,7 @@ message MsgExecResponse { // authorizations granted to the grantee. Each message should have only // one signer corresponding to the granter of the authorization. message MsgExec { - string grantee = 1; + string grantee = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // Authorization Msg requests to execute. Each msg must implement Authorization interface // The x/authz will try to find a grant matching (msg.signers[0], grantee, MsgTypeURL(msg)) // triple and validate it. diff --git a/proto/cosmos/bank/v1beta1/bank.proto b/proto/cosmos/bank/v1beta1/bank.proto index 22ecf5fda031..8ba8cbb3da46 100644 --- a/proto/cosmos/bank/v1beta1/bank.proto +++ b/proto/cosmos/bank/v1beta1/bank.proto @@ -28,7 +28,7 @@ message Input { option (gogoproto.equal) = false; option (gogoproto.goproto_getters) = false; - string address = 1; + string address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; repeated cosmos.base.v1beta1.Coin coins = 2 [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"]; } @@ -38,7 +38,7 @@ message Output { option (gogoproto.equal) = false; option (gogoproto.goproto_getters) = false; - string address = 1; + string address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; repeated cosmos.base.v1beta1.Coin coins = 2 [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"]; } @@ -68,7 +68,7 @@ message DenomUnit { // 1 denom = 1^exponent base_denom // (e.g. with a base_denom of uatom, one can create a DenomUnit of 'atom' with // exponent = 6, thus: 1 atom = 10^6 uatom). - uint32 exponent = 2; + uint32 exponent = 2 [(cosmos_proto.scalar) = "cosmos.Int"]; // aliases is a list of string aliases for the given denom repeated string aliases = 3; } diff --git a/proto/cosmos/bank/v1beta1/genesis.proto b/proto/cosmos/bank/v1beta1/genesis.proto index 8fd7329a0a5d..17fc88c46b28 100644 --- a/proto/cosmos/bank/v1beta1/genesis.proto +++ b/proto/cosmos/bank/v1beta1/genesis.proto @@ -4,6 +4,7 @@ package cosmos.bank.v1beta1; import "gogoproto/gogo.proto"; import "cosmos/base/v1beta1/coin.proto"; import "cosmos/bank/v1beta1/bank.proto"; +import "cosmos_proto/cosmos.proto"; option go_package = "github.com/cosmos/cosmos-sdk/x/bank/types"; @@ -31,7 +32,7 @@ message Balance { option (gogoproto.goproto_getters) = false; // address is the address of the balance holder. - string address = 1; + string address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // coins defines the different coins this balance holds. repeated cosmos.base.v1beta1.Coin coins = 2 diff --git a/proto/cosmos/bank/v1beta1/query.proto b/proto/cosmos/bank/v1beta1/query.proto index 9ffa9d86fd65..4dc5522d5f5b 100644 --- a/proto/cosmos/bank/v1beta1/query.proto +++ b/proto/cosmos/bank/v1beta1/query.proto @@ -6,6 +6,7 @@ import "gogoproto/gogo.proto"; import "google/api/annotations.proto"; import "cosmos/base/v1beta1/coin.proto"; import "cosmos/bank/v1beta1/bank.proto"; +import "cosmos_proto/cosmos.proto"; option go_package = "github.com/cosmos/cosmos-sdk/x/bank/types"; @@ -60,7 +61,7 @@ message QueryBalanceRequest { option (gogoproto.goproto_getters) = false; // address is the address to query balances for. - string address = 1; + string address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // denom is the coin denom to query balances for. string denom = 2; @@ -78,7 +79,7 @@ message QueryAllBalancesRequest { option (gogoproto.goproto_getters) = false; // address is the address to query balances for. - string address = 1; + string address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // pagination defines an optional pagination for the request. cosmos.base.query.v1beta1.PageRequest pagination = 2; diff --git a/proto/cosmos/bank/v1beta1/tx.proto b/proto/cosmos/bank/v1beta1/tx.proto index 26b2ab41f4c3..be660e8ab7fe 100644 --- a/proto/cosmos/bank/v1beta1/tx.proto +++ b/proto/cosmos/bank/v1beta1/tx.proto @@ -4,6 +4,7 @@ package cosmos.bank.v1beta1; import "gogoproto/gogo.proto"; import "cosmos/base/v1beta1/coin.proto"; import "cosmos/bank/v1beta1/bank.proto"; +import "cosmos_proto/cosmos.proto"; option go_package = "github.com/cosmos/cosmos-sdk/x/bank/types"; @@ -21,8 +22,8 @@ message MsgSend { option (gogoproto.equal) = false; option (gogoproto.goproto_getters) = false; - string from_address = 1 [(gogoproto.moretags) = "yaml:\"from_address\""]; - string to_address = 2 [(gogoproto.moretags) = "yaml:\"to_address\""]; + string from_address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString", (gogoproto.moretags) = "yaml:\"from_address\""]; + string to_address = 2 [(cosmos_proto.scalar) = "cosmos.AddressString", (gogoproto.moretags) = "yaml:\"to_address\""]; repeated cosmos.base.v1beta1.Coin amount = 3 [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"]; } diff --git a/proto/cosmos/base/abci/v1beta1/abci.proto b/proto/cosmos/base/abci/v1beta1/abci.proto index 72da2aacc36e..ff9c184225e8 100644 --- a/proto/cosmos/base/abci/v1beta1/abci.proto +++ b/proto/cosmos/base/abci/v1beta1/abci.proto @@ -4,6 +4,7 @@ package cosmos.base.abci.v1beta1; import "gogoproto/gogo.proto"; import "tendermint/abci/types.proto"; import "google/protobuf/any.proto"; +import "cosmos_proto/cosmos.proto"; option go_package = "github.com/cosmos/cosmos-sdk/types"; option (gogoproto.goproto_stringer_all) = false; @@ -13,13 +14,13 @@ option (gogoproto.goproto_stringer_all) = false; message TxResponse { option (gogoproto.goproto_getters) = false; // The block height - int64 height = 1; + int64 height = 1 [(cosmos_proto.scalar) = "cosmos.Int"]; // The transaction hash. string txhash = 2 [(gogoproto.customname) = "TxHash"]; // Namespace for the Code string codespace = 3; // Response code. - uint32 code = 4; + uint32 code = 4 [(cosmos_proto.scalar) = "cosmos.Int"]; // Result bytes, if any. string data = 5; // The output of the application's logger (raw string). May be @@ -30,9 +31,9 @@ message TxResponse { // Additional information. May be non-deterministic. string info = 8; // Amount of gas requested for transaction. - int64 gas_wanted = 9; + int64 gas_wanted = 9 [(cosmos_proto.scalar) = "cosmos.Int"]; // Amount of gas consumed by transaction. - int64 gas_used = 10; + int64 gas_used = 10 [(cosmos_proto.scalar) = "cosmos.Int"]; // The request transaction bytes. google.protobuf.Any tx = 11; // Time of the previous block. For heights > 1, it's the weighted median of @@ -45,7 +46,7 @@ message TxResponse { message ABCIMessageLog { option (gogoproto.stringer) = true; - uint32 msg_index = 1; + uint32 msg_index = 1 [(cosmos_proto.scalar) = "cosmos.Int"]; string log = 2; // Events contains a slice of Event objects that were emitted during some @@ -72,10 +73,10 @@ message Attribute { // GasInfo defines tx execution gas context. message GasInfo { // GasWanted is the maximum units of work we allow this tx to perform. - uint64 gas_wanted = 1 [(gogoproto.moretags) = "yaml:\"gas_wanted\""]; + uint64 gas_wanted = 1 [(cosmos_proto.scalar) = "cosmos.Int", (gogoproto.moretags) = "yaml:\"gas_wanted\""]; // GasUsed is the amount of gas actually consumed. - uint64 gas_used = 2 [(gogoproto.moretags) = "yaml:\"gas_used\""]; + uint64 gas_used = 2 [(cosmos_proto.scalar) = "cosmos.Int", (gogoproto.moretags) = "yaml:\"gas_used\""]; } // Result is the union of ResponseFormat and ResponseCheckTx. @@ -123,15 +124,15 @@ message SearchTxsResult { option (gogoproto.stringer) = true; // Count of all txs - uint64 total_count = 1 [(gogoproto.moretags) = "yaml:\"total_count\"", (gogoproto.jsontag) = "total_count"]; + uint64 total_count = 1 [(cosmos_proto.scalar) = "cosmos.Int", (gogoproto.moretags) = "yaml:\"total_count\"", (gogoproto.jsontag) = "total_count"]; // Count of txs in current page - uint64 count = 2; + uint64 count = 2 [(cosmos_proto.scalar) = "cosmos.Int"]; // Index of current page, start from 1 - uint64 page_number = 3 [(gogoproto.moretags) = "yaml:\"page_number\"", (gogoproto.jsontag) = "page_number"]; + uint64 page_number = 3 [(cosmos_proto.scalar) = "cosmos.Int", (gogoproto.moretags) = "yaml:\"page_number\"", (gogoproto.jsontag) = "page_number"]; // Count of total pages - uint64 page_total = 4 [(gogoproto.moretags) = "yaml:\"page_total\"", (gogoproto.jsontag) = "page_total"]; + uint64 page_total = 4 [(cosmos_proto.scalar) = "cosmos.Int", (gogoproto.moretags) = "yaml:\"page_total\"", (gogoproto.jsontag) = "page_total"]; // Max count txs per page - uint64 limit = 5; + uint64 limit = 5 [(cosmos_proto.scalar) = "cosmos.Int"]; // List of txs in current page repeated TxResponse txs = 6; } diff --git a/proto/cosmos/base/query/v1beta1/pagination.proto b/proto/cosmos/base/query/v1beta1/pagination.proto index 784c479562a9..227607d2097e 100644 --- a/proto/cosmos/base/query/v1beta1/pagination.proto +++ b/proto/cosmos/base/query/v1beta1/pagination.proto @@ -1,6 +1,8 @@ syntax = "proto3"; package cosmos.base.query.v1beta1; +import "cosmos_proto/cosmos.proto"; + option go_package = "github.com/cosmos/cosmos-sdk/types/query"; // PageRequest is to be embedded in gRPC request messages for efficient @@ -19,11 +21,11 @@ message PageRequest { // offset is a numeric offset that can be used when key is unavailable. // It is less efficient than using key. Only one of offset or key should // be set. - uint64 offset = 2; + uint64 offset = 2 [(cosmos_proto.scalar) = "cosmos.Int"]; // limit is the total number of results to be returned in the result page. // If left empty it will default to a value to be set by each app. - uint64 limit = 3; + uint64 limit = 3 [(cosmos_proto.scalar) = "cosmos.Int"]; // count_total is set to true to indicate that the result set should include // a count of the total number of items available for pagination in UIs. @@ -49,5 +51,5 @@ message PageResponse { // total is total number of results available if PageRequest.count_total // was set, its value is undefined otherwise - uint64 total = 2; + uint64 total = 2 [(cosmos_proto.scalar) = "cosmos.Int"]; } diff --git a/proto/cosmos/base/reflection/v2alpha1/reflection.proto b/proto/cosmos/base/reflection/v2alpha1/reflection.proto index 3e8e94048221..31d9d74eb07c 100644 --- a/proto/cosmos/base/reflection/v2alpha1/reflection.proto +++ b/proto/cosmos/base/reflection/v2alpha1/reflection.proto @@ -47,7 +47,7 @@ message SigningModeDescriptor { // name defines the unique name of the signing mode string name = 1; // number is the unique int32 identifier for the sign_mode enum - int32 number = 2; + int32 number = 2 [(cosmos_proto.scalar) = "cosmos.Int"]; // authn_info_provider_method_fullname defines the fullname of the method to call to get // the metadata required to authenticate using the provided sign_modes string authn_info_provider_method_fullname = 3; diff --git a/proto/cosmos/base/snapshots/v1beta1/snapshot.proto b/proto/cosmos/base/snapshots/v1beta1/snapshot.proto index 9ac5a7c31be4..0dada57540e1 100644 --- a/proto/cosmos/base/snapshots/v1beta1/snapshot.proto +++ b/proto/cosmos/base/snapshots/v1beta1/snapshot.proto @@ -2,14 +2,15 @@ syntax = "proto3"; package cosmos.base.snapshots.v1beta1; import "gogoproto/gogo.proto"; +import "cosmos_proto/cosmos.proto"; option go_package = "github.com/cosmos/cosmos-sdk/snapshots/types"; // Snapshot contains Tendermint state sync snapshot info. message Snapshot { - uint64 height = 1; - uint32 format = 2; - uint32 chunks = 3; + uint64 height = 1 [(cosmos_proto.scalar) = "cosmos.Int"]; + uint32 format = 2 [(cosmos_proto.scalar) = "cosmos.Int"]; + uint32 chunks = 3 [(cosmos_proto.scalar) = "cosmos.Int"]; bytes hash = 4; Metadata metadata = 5 [(gogoproto.nullable) = false]; } diff --git a/proto/cosmos/base/store/v1beta1/commit_info.proto b/proto/cosmos/base/store/v1beta1/commit_info.proto index 98a33d30e754..d05985b31507 100644 --- a/proto/cosmos/base/store/v1beta1/commit_info.proto +++ b/proto/cosmos/base/store/v1beta1/commit_info.proto @@ -2,13 +2,14 @@ syntax = "proto3"; package cosmos.base.store.v1beta1; import "gogoproto/gogo.proto"; +import "cosmos_proto/cosmos.proto"; option go_package = "github.com/cosmos/cosmos-sdk/store/types"; // CommitInfo defines commit information used by the multi-store when committing // a version/height. message CommitInfo { - int64 version = 1; + int64 version = 1 [(cosmos_proto.scalar) = "cosmos.Int"]; repeated StoreInfo store_infos = 2 [(gogoproto.nullable) = false]; } @@ -24,6 +25,6 @@ message StoreInfo { message CommitID { option (gogoproto.goproto_stringer) = false; - int64 version = 1; + int64 version = 1 [(cosmos_proto.scalar) = "cosmos.Int"]; bytes hash = 2; } diff --git a/proto/cosmos/base/store/v1beta1/snapshot.proto b/proto/cosmos/base/store/v1beta1/snapshot.proto index 834855093b24..9e379f7fc975 100644 --- a/proto/cosmos/base/store/v1beta1/snapshot.proto +++ b/proto/cosmos/base/store/v1beta1/snapshot.proto @@ -2,6 +2,7 @@ syntax = "proto3"; package cosmos.base.store.v1beta1; import "gogoproto/gogo.proto"; +import "cosmos_proto/cosmos.proto"; option go_package = "github.com/cosmos/cosmos-sdk/store/types"; @@ -23,6 +24,6 @@ message SnapshotStoreItem { message SnapshotIAVLItem { bytes key = 1; bytes value = 2; - int64 version = 3; - int32 height = 4; + int64 version = 3 [(cosmos_proto.scalar) = "cosmos.Int"]; + int32 height = 4 [(cosmos_proto.scalar) = "cosmos.Int"]; } \ No newline at end of file diff --git a/proto/cosmos/base/tendermint/v1beta1/query.proto b/proto/cosmos/base/tendermint/v1beta1/query.proto index 505d4131d90d..3fad9f995b5e 100644 --- a/proto/cosmos/base/tendermint/v1beta1/query.proto +++ b/proto/cosmos/base/tendermint/v1beta1/query.proto @@ -8,6 +8,7 @@ import "tendermint/p2p/types.proto"; import "tendermint/types/block.proto"; import "tendermint/types/types.proto"; import "cosmos/base/query/v1beta1/pagination.proto"; +import "cosmos_proto/cosmos.proto"; option go_package = "github.com/cosmos/cosmos-sdk/client/grpc/tmservice"; @@ -42,14 +43,14 @@ service Service { // GetValidatorSetByHeightRequest is the request type for the Query/GetValidatorSetByHeight RPC method. message GetValidatorSetByHeightRequest { - int64 height = 1; + int64 height = 1 [(cosmos_proto.scalar) = "cosmos.Int"]; // pagination defines an pagination for the request. cosmos.base.query.v1beta1.PageRequest pagination = 2; } // GetValidatorSetByHeightResponse is the response type for the Query/GetValidatorSetByHeight RPC method. message GetValidatorSetByHeightResponse { - int64 block_height = 1; + int64 block_height = 1 [(cosmos_proto.scalar) = "cosmos.Int"]; repeated Validator validators = 2; // pagination defines an pagination for the response. cosmos.base.query.v1beta1.PageResponse pagination = 3; @@ -63,7 +64,7 @@ message GetLatestValidatorSetRequest { // GetLatestValidatorSetResponse is the response type for the Query/GetValidatorSetByHeight RPC method. message GetLatestValidatorSetResponse { - int64 block_height = 1; + int64 block_height = 1 [(cosmos_proto.scalar) = "cosmos.Int"]; repeated Validator validators = 2; // pagination defines an pagination for the response. cosmos.base.query.v1beta1.PageResponse pagination = 3; @@ -71,15 +72,15 @@ message GetLatestValidatorSetResponse { // Validator is the type for the validator-set. message Validator { - string address = 1; + string address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; google.protobuf.Any pub_key = 2; - int64 voting_power = 3; - int64 proposer_priority = 4; + int64 voting_power = 3 [(cosmos_proto.scalar) = "cosmos.Int"]; + int64 proposer_priority = 4 [(cosmos_proto.scalar) = "cosmos.Int"]; } // GetBlockByHeightRequest is the request type for the Query/GetBlockByHeight RPC method. message GetBlockByHeightRequest { - int64 height = 1; + int64 height = 1 [(cosmos_proto.scalar) = "cosmos.Int"]; } // GetBlockByHeightResponse is the response type for the Query/GetBlockByHeight RPC method. diff --git a/proto/cosmos/base/v1beta1/coin.proto b/proto/cosmos/base/v1beta1/coin.proto index fab75284b7f6..894d1178d67c 100644 --- a/proto/cosmos/base/v1beta1/coin.proto +++ b/proto/cosmos/base/v1beta1/coin.proto @@ -36,5 +36,6 @@ message IntProto { // DecProto defines a Protobuf wrapper around a Dec object. message DecProto { + // TODO should I put [(cosmos_proto.scalar) = "cosmos.Dec"] here? string dec = 1 [(gogoproto.customtype) = "Dec", (gogoproto.nullable) = false]; } diff --git a/proto/cosmos/capability/v1beta1/capability.proto b/proto/cosmos/capability/v1beta1/capability.proto index 1c8332f34163..d1fe901e9513 100644 --- a/proto/cosmos/capability/v1beta1/capability.proto +++ b/proto/cosmos/capability/v1beta1/capability.proto @@ -9,8 +9,8 @@ import "gogoproto/gogo.proto"; // provided to a Capability must be globally unique. message Capability { option (gogoproto.goproto_stringer) = false; - - uint64 index = 1 [(gogoproto.moretags) = "yaml:\"index\""]; + // TODO should I put (cosmos_proto.scalar) = "cosmos.Int" on uint types? + uint64 index = 1 [(cosmos_proto.scalar) = "cosmos.Int", (gogoproto.moretags) = "yaml:\"index\""]; } // Owner defines a single capability owner. An owner is defined by the name of diff --git a/proto/cosmos/capability/v1beta1/genesis.proto b/proto/cosmos/capability/v1beta1/genesis.proto index 05bb0afc4a1f..c7edd2501776 100644 --- a/proto/cosmos/capability/v1beta1/genesis.proto +++ b/proto/cosmos/capability/v1beta1/genesis.proto @@ -3,13 +3,14 @@ package cosmos.capability.v1beta1; import "gogoproto/gogo.proto"; import "cosmos/capability/v1beta1/capability.proto"; +import "cosmos_proto/cosmos.proto"; option go_package = "github.com/cosmos/cosmos-sdk/x/capability/types"; // GenesisOwners defines the capability owners with their corresponding index. message GenesisOwners { // index is the index of the capability owner. - uint64 index = 1; + uint64 index = 1 [(cosmos_proto.scalar) = "cosmos.Int"]; // index_owners are the owners at the given index. CapabilityOwners index_owners = 2 [(gogoproto.nullable) = false, (gogoproto.moretags) = "yaml:\"index_owners\""]; @@ -18,7 +19,7 @@ message GenesisOwners { // GenesisState defines the capability module's genesis state. message GenesisState { // index is the capability global index. - uint64 index = 1; + uint64 index = 1 [(cosmos_proto.scalar) = "cosmos.Int"]; // owners represents a map from index to owners of the capability index // index key is string to allow amino marshalling. diff --git a/proto/cosmos/crisis/v1beta1/tx.proto b/proto/cosmos/crisis/v1beta1/tx.proto index 26457ad6d52a..c48b6fe16353 100644 --- a/proto/cosmos/crisis/v1beta1/tx.proto +++ b/proto/cosmos/crisis/v1beta1/tx.proto @@ -4,6 +4,7 @@ package cosmos.crisis.v1beta1; option go_package = "github.com/cosmos/cosmos-sdk/x/crisis/types"; import "gogoproto/gogo.proto"; +import "cosmos_proto/cosmos.proto"; // Msg defines the bank Msg service. service Msg { @@ -16,7 +17,7 @@ message MsgVerifyInvariant { option (gogoproto.equal) = false; option (gogoproto.goproto_getters) = false; - string sender = 1; + string sender = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; string invariant_module_name = 2 [(gogoproto.moretags) = "yaml:\"invariant_module_name\""]; string invariant_route = 3 [(gogoproto.moretags) = "yaml:\"invariant_route\""]; } diff --git a/proto/cosmos/crypto/multisig/keys.proto b/proto/cosmos/crypto/multisig/keys.proto index f8398e8052ac..1daad6eaaf00 100644 --- a/proto/cosmos/crypto/multisig/keys.proto +++ b/proto/cosmos/crypto/multisig/keys.proto @@ -3,6 +3,7 @@ package cosmos.crypto.multisig; import "gogoproto/gogo.proto"; import "google/protobuf/any.proto"; +import "cosmos_proto/cosmos.proto"; option go_package = "github.com/cosmos/cosmos-sdk/crypto/keys/multisig"; @@ -12,7 +13,7 @@ option go_package = "github.com/cosmos/cosmos-sdk/crypto/keys/multisig"; message LegacyAminoPubKey { option (gogoproto.goproto_getters) = false; - uint32 threshold = 1 [(gogoproto.moretags) = "yaml:\"threshold\""]; + uint32 threshold = 1 [(cosmos_proto.scalar) = "cosmos.Int", (gogoproto.moretags) = "yaml:\"threshold\""]; repeated google.protobuf.Any public_keys = 2 [(gogoproto.customname) = "PubKeys", (gogoproto.moretags) = "yaml:\"pubkeys\""]; } diff --git a/proto/cosmos/crypto/multisig/v1beta1/multisig.proto b/proto/cosmos/crypto/multisig/v1beta1/multisig.proto index bf671f171143..27a17e68840f 100644 --- a/proto/cosmos/crypto/multisig/v1beta1/multisig.proto +++ b/proto/cosmos/crypto/multisig/v1beta1/multisig.proto @@ -2,6 +2,7 @@ syntax = "proto3"; package cosmos.crypto.multisig.v1beta1; import "gogoproto/gogo.proto"; +import "cosmos_proto/cosmos.proto"; option go_package = "github.com/cosmos/cosmos-sdk/crypto/types"; @@ -20,6 +21,6 @@ message MultiSignature { message CompactBitArray { option (gogoproto.goproto_stringer) = false; - uint32 extra_bits_stored = 1; + uint32 extra_bits_stored = 1 [(cosmos_proto.scalar) = "cosmos.Int"]; bytes elems = 2; } diff --git a/proto/cosmos/distribution/v1beta1/genesis.proto b/proto/cosmos/distribution/v1beta1/genesis.proto index c0b17cdf1149..003ed8449caf 100644 --- a/proto/cosmos/distribution/v1beta1/genesis.proto +++ b/proto/cosmos/distribution/v1beta1/genesis.proto @@ -7,6 +7,7 @@ option (gogoproto.equal_all) = true; import "gogoproto/gogo.proto"; import "cosmos/base/v1beta1/coin.proto"; import "cosmos/distribution/v1beta1/distribution.proto"; +import "cosmos_proto/cosmos.proto"; // DelegatorWithdrawInfo is the address for where distributions rewards are // withdrawn to by default this struct is only used at genesis to feed in @@ -16,10 +17,10 @@ message DelegatorWithdrawInfo { option (gogoproto.goproto_getters) = false; // delegator_address is the address of the delegator. - string delegator_address = 1 [(gogoproto.moretags) = "yaml:\"delegator_address\""]; + string delegator_address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString", (gogoproto.moretags) = "yaml:\"delegator_address\""]; // withdraw_address is the address to withdraw the delegation rewards to. - string withdraw_address = 2 [(gogoproto.moretags) = "yaml:\"withdraw_address\""]; + string withdraw_address = 2 [(cosmos_proto.scalar) = "cosmos.AddressString", (gogoproto.moretags) = "yaml:\"withdraw_address\""]; } // ValidatorOutstandingRewardsRecord is used for import/export via genesis json. @@ -28,7 +29,7 @@ message ValidatorOutstandingRewardsRecord { option (gogoproto.goproto_getters) = false; // validator_address is the address of the validator. - string validator_address = 1 [(gogoproto.moretags) = "yaml:\"validator_address\""]; + string validator_address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString", (gogoproto.moretags) = "yaml:\"validator_address\""]; // outstanding_rewards represents the oustanding rewards of a validator. repeated cosmos.base.v1beta1.DecCoin outstanding_rewards = 2 [ @@ -45,7 +46,7 @@ message ValidatorAccumulatedCommissionRecord { option (gogoproto.goproto_getters) = false; // validator_address is the address of the validator. - string validator_address = 1 [(gogoproto.moretags) = "yaml:\"validator_address\""]; + string validator_address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString", (gogoproto.moretags) = "yaml:\"validator_address\""]; // accumulated is the accumulated commission of a validator. ValidatorAccumulatedCommission accumulated = 2 @@ -59,10 +60,10 @@ message ValidatorHistoricalRewardsRecord { option (gogoproto.goproto_getters) = false; // validator_address is the address of the validator. - string validator_address = 1 [(gogoproto.moretags) = "yaml:\"validator_address\""]; + string validator_address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString", (gogoproto.moretags) = "yaml:\"validator_address\""]; // period defines the period the historical rewards apply to. - uint64 period = 2; + uint64 period = 2 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // rewards defines the historical rewards of a validator. ValidatorHistoricalRewards rewards = 3 [(gogoproto.nullable) = false, (gogoproto.moretags) = "yaml:\"rewards\""]; @@ -74,7 +75,7 @@ message ValidatorCurrentRewardsRecord { option (gogoproto.goproto_getters) = false; // validator_address is the address of the validator. - string validator_address = 1 [(gogoproto.moretags) = "yaml:\"validator_address\""]; + string validator_address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString", (gogoproto.moretags) = "yaml:\"validator_address\""]; // rewards defines the current rewards of a validator. ValidatorCurrentRewards rewards = 2 [(gogoproto.nullable) = false, (gogoproto.moretags) = "yaml:\"rewards\""]; @@ -86,10 +87,10 @@ message DelegatorStartingInfoRecord { option (gogoproto.goproto_getters) = false; // delegator_address is the address of the delegator. - string delegator_address = 1 [(gogoproto.moretags) = "yaml:\"delegator_address\""]; + string delegator_address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString", (gogoproto.moretags) = "yaml:\"delegator_address\""]; // validator_address is the address of the validator. - string validator_address = 2 [(gogoproto.moretags) = "yaml:\"validator_address\""]; + string validator_address = 2 [(cosmos_proto.scalar) = "cosmos.AddressString", (gogoproto.moretags) = "yaml:\"validator_address\""]; // starting_info defines the starting info of a delegator. DelegatorStartingInfo starting_info = 3 @@ -102,11 +103,11 @@ message ValidatorSlashEventRecord { option (gogoproto.goproto_getters) = false; // validator_address is the address of the validator. - string validator_address = 1 [(gogoproto.moretags) = "yaml:\"validator_address\""]; + string validator_address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString", (gogoproto.moretags) = "yaml:\"validator_address\""]; // height defines the block height at which the slash event occured. - uint64 height = 2; + uint64 height = 2 [(cosmos_proto.scalar) = "cosmos.Int"]; // period is the period of the slash event. - uint64 period = 3; + uint64 period = 3 [(cosmos_proto.scalar) = "cosmos.Int"]; // validator_slash_event describes the slash event. ValidatorSlashEvent validator_slash_event = 4 [(gogoproto.nullable) = false, (gogoproto.moretags) = "yaml:\"event\""]; } @@ -127,7 +128,8 @@ message GenesisState { [(gogoproto.nullable) = false, (gogoproto.moretags) = "yaml:\"delegator_withdraw_infos\""]; // fee_pool defines the previous proposer at genesis. - string previous_proposer = 4 [(gogoproto.moretags) = "yaml:\"previous_proposer\""]; + // TODO to make sure it's indeed address + string previous_proposer = 4 [(cosmos_proto.scalar) = "cosmos.AddressString", (gogoproto.moretags) = "yaml:\"previous_proposer\""]; // fee_pool defines the outstanding rewards of all validators at genesis. repeated ValidatorOutstandingRewardsRecord outstanding_rewards = 5 diff --git a/proto/cosmos/distribution/v1beta1/query.proto b/proto/cosmos/distribution/v1beta1/query.proto index 2991218d8049..315189303bd6 100644 --- a/proto/cosmos/distribution/v1beta1/query.proto +++ b/proto/cosmos/distribution/v1beta1/query.proto @@ -6,6 +6,7 @@ import "gogoproto/gogo.proto"; import "google/api/annotations.proto"; import "cosmos/base/v1beta1/coin.proto"; import "cosmos/distribution/v1beta1/distribution.proto"; +import "cosmos_proto/cosmos.proto"; option go_package = "github.com/cosmos/cosmos-sdk/x/distribution/types"; @@ -77,7 +78,7 @@ message QueryParamsResponse { // Query/ValidatorOutstandingRewards RPC method. message QueryValidatorOutstandingRewardsRequest { // validator_address defines the validator address to query for. - string validator_address = 1; + string validator_address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; } // QueryValidatorOutstandingRewardsResponse is the response type for the @@ -90,7 +91,7 @@ message QueryValidatorOutstandingRewardsResponse { // Query/ValidatorCommission RPC method message QueryValidatorCommissionRequest { // validator_address defines the validator address to query for. - string validator_address = 1; + string validator_address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; } // QueryValidatorCommissionResponse is the response type for the @@ -107,11 +108,11 @@ message QueryValidatorSlashesRequest { option (gogoproto.goproto_stringer) = true; // validator_address defines the validator address to query for. - string validator_address = 1; + string validator_address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // starting_height defines the optional starting height to query the slashes. - uint64 starting_height = 2; + uint64 starting_height = 2 [(cosmos_proto.scalar) = "cosmos.Int"]; // starting_height defines the optional ending height to query the slashes. - uint64 ending_height = 3; + uint64 ending_height = 3 [(cosmos_proto.scalar) = "cosmos.Int"]; // pagination defines an optional pagination for the request. cosmos.base.query.v1beta1.PageRequest pagination = 4; } @@ -133,9 +134,9 @@ message QueryDelegationRewardsRequest { option (gogoproto.goproto_getters) = false; // delegator_address defines the delegator address to query for. - string delegator_address = 1; + string delegator_address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // validator_address defines the validator address to query for. - string validator_address = 2; + string validator_address = 2 [(cosmos_proto.scalar) = "cosmos.AddressString"]; } // QueryDelegationRewardsResponse is the response type for the @@ -152,7 +153,7 @@ message QueryDelegationTotalRewardsRequest { option (gogoproto.equal) = false; option (gogoproto.goproto_getters) = false; // delegator_address defines the delegator address to query for. - string delegator_address = 1; + string delegator_address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; } // QueryDelegationTotalRewardsResponse is the response type for the @@ -172,7 +173,7 @@ message QueryDelegatorValidatorsRequest { option (gogoproto.goproto_getters) = false; // delegator_address defines the delegator address to query for. - string delegator_address = 1; + string delegator_address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; } // QueryDelegatorValidatorsResponse is the response type for the @@ -192,7 +193,7 @@ message QueryDelegatorWithdrawAddressRequest { option (gogoproto.goproto_getters) = false; // delegator_address defines the delegator address to query for. - string delegator_address = 1; + string delegator_address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; } // QueryDelegatorWithdrawAddressResponse is the response type for the @@ -202,7 +203,7 @@ message QueryDelegatorWithdrawAddressResponse { option (gogoproto.goproto_getters) = false; // withdraw_address defines the delegator address to query for. - string withdraw_address = 1; + string withdraw_address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; } // QueryCommunityPoolRequest is the request type for the Query/CommunityPool RPC diff --git a/proto/cosmos/distribution/v1beta1/tx.proto b/proto/cosmos/distribution/v1beta1/tx.proto index e6ce478bcdc4..92415cb7d06a 100644 --- a/proto/cosmos/distribution/v1beta1/tx.proto +++ b/proto/cosmos/distribution/v1beta1/tx.proto @@ -6,6 +6,7 @@ option (gogoproto.equal_all) = true; import "gogoproto/gogo.proto"; import "cosmos/base/v1beta1/coin.proto"; +import "cosmos_proto/cosmos.proto"; // Msg defines the distribution Msg service. service Msg { @@ -32,8 +33,8 @@ message MsgSetWithdrawAddress { option (gogoproto.equal) = false; option (gogoproto.goproto_getters) = false; - string delegator_address = 1 [(gogoproto.moretags) = "yaml:\"delegator_address\""]; - string withdraw_address = 2 [(gogoproto.moretags) = "yaml:\"withdraw_address\""]; + string delegator_address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString", (gogoproto.moretags) = "yaml:\"delegator_address\""]; + string withdraw_address = 2 [(cosmos_proto.scalar) = "cosmos.AddressString", (gogoproto.moretags) = "yaml:\"withdraw_address\""]; } // MsgSetWithdrawAddressResponse defines the Msg/SetWithdrawAddress response type. @@ -45,8 +46,8 @@ message MsgWithdrawDelegatorReward { option (gogoproto.equal) = false; option (gogoproto.goproto_getters) = false; - string delegator_address = 1 [(gogoproto.moretags) = "yaml:\"delegator_address\""]; - string validator_address = 2 [(gogoproto.moretags) = "yaml:\"validator_address\""]; + string delegator_address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString",(gogoproto.moretags) = "yaml:\"delegator_address\""]; + string validator_address = 2 [(cosmos_proto.scalar) = "cosmos.AddressString",(gogoproto.moretags) = "yaml:\"validator_address\""]; } // MsgWithdrawDelegatorRewardResponse defines the Msg/WithdrawDelegatorReward response type. @@ -58,7 +59,7 @@ message MsgWithdrawValidatorCommission { option (gogoproto.equal) = false; option (gogoproto.goproto_getters) = false; - string validator_address = 1 [(gogoproto.moretags) = "yaml:\"validator_address\""]; + string validator_address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString", (gogoproto.moretags) = "yaml:\"validator_address\""]; } // MsgWithdrawValidatorCommissionResponse defines the Msg/WithdrawValidatorCommission response type. @@ -72,7 +73,7 @@ message MsgFundCommunityPool { repeated cosmos.base.v1beta1.Coin amount = 1 [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"]; - string depositor = 2; + string depositor = 2 [(cosmos_proto.scalar) = "cosmos.AddressString"]; } // MsgFundCommunityPoolResponse defines the Msg/FundCommunityPool response type. diff --git a/proto/cosmos/evidence/v1beta1/evidence.proto b/proto/cosmos/evidence/v1beta1/evidence.proto index 14612c314f01..c5b695e08d0e 100644 --- a/proto/cosmos/evidence/v1beta1/evidence.proto +++ b/proto/cosmos/evidence/v1beta1/evidence.proto @@ -6,6 +6,7 @@ option (gogoproto.equal_all) = true; import "gogoproto/gogo.proto"; import "google/protobuf/timestamp.proto"; +import "cosmos_proto/cosmos.proto"; // Equivocation implements the Evidence interface and defines evidence of double // signing misbehavior. @@ -14,8 +15,8 @@ message Equivocation { option (gogoproto.goproto_getters) = false; option (gogoproto.equal) = false; - int64 height = 1; + int64 height = 1 [(cosmos_proto.scalar) = "cosmos.Int"]; google.protobuf.Timestamp time = 2 [(gogoproto.nullable) = false, (gogoproto.stdtime) = true]; - int64 power = 3; - string consensus_address = 4 [(gogoproto.moretags) = "yaml:\"consensus_address\""]; + int64 power = 3 [(cosmos_proto.scalar) = "cosmos.Int"]; + string consensus_address = 4 [(cosmos_proto.scalar) = "cosmos.AddressString", (gogoproto.moretags) = "yaml:\"consensus_address\""]; } \ No newline at end of file diff --git a/proto/cosmos/evidence/v1beta1/tx.proto b/proto/cosmos/evidence/v1beta1/tx.proto index 38795f25d4e3..4bab1bd4b994 100644 --- a/proto/cosmos/evidence/v1beta1/tx.proto +++ b/proto/cosmos/evidence/v1beta1/tx.proto @@ -21,7 +21,7 @@ message MsgSubmitEvidence { option (gogoproto.equal) = false; option (gogoproto.goproto_getters) = false; - string submitter = 1; + string submitter = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; google.protobuf.Any evidence = 2 [(cosmos_proto.accepts_interface) = "Evidence"]; } diff --git a/proto/cosmos/feegrant/v1beta1/feegrant.proto b/proto/cosmos/feegrant/v1beta1/feegrant.proto index dfd9b7826e75..1a82b01e895d 100644 --- a/proto/cosmos/feegrant/v1beta1/feegrant.proto +++ b/proto/cosmos/feegrant/v1beta1/feegrant.proto @@ -67,10 +67,10 @@ message AllowedMsgAllowance { // Grant is stored in the KVStore to record a grant with full context message Grant { // granter is the address of the user granting an allowance of their funds. - string granter = 1; + string granter = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // grantee is the address of the user being granted an allowance of another user's funds. - string grantee = 2; + string grantee = 2 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // allowance can be any of basic and filtered fee allowance. google.protobuf.Any allowance = 3 [(cosmos_proto.accepts_interface) = "FeeAllowanceI"]; diff --git a/proto/cosmos/feegrant/v1beta1/query.proto b/proto/cosmos/feegrant/v1beta1/query.proto index 00ea598b1c75..657114b80453 100644 --- a/proto/cosmos/feegrant/v1beta1/query.proto +++ b/proto/cosmos/feegrant/v1beta1/query.proto @@ -4,6 +4,7 @@ package cosmos.feegrant.v1beta1; import "cosmos/feegrant/v1beta1/feegrant.proto"; import "cosmos/base/query/v1beta1/pagination.proto"; import "google/api/annotations.proto"; +import "cosmos_proto/cosmos.proto"; option go_package = "github.com/cosmos/cosmos-sdk/x/feegrant"; @@ -24,10 +25,10 @@ service Query { // QueryAllowanceRequest is the request type for the Query/Allowance RPC method. message QueryAllowanceRequest { // granter is the address of the user granting an allowance of their funds. - string granter = 1; + string granter = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // grantee is the address of the user being granted an allowance of another user's funds. - string grantee = 2; + string grantee = 2 [(cosmos_proto.scalar) = "cosmos.AddressString"]; } // QueryAllowanceResponse is the response type for the Query/Allowance RPC method. @@ -38,7 +39,7 @@ message QueryAllowanceResponse { // QueryAllowancesRequest is the request type for the Query/Allowances RPC method. message QueryAllowancesRequest { - string grantee = 1; + string grantee = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // pagination defines an pagination for the request. cosmos.base.query.v1beta1.PageRequest pagination = 2; diff --git a/proto/cosmos/feegrant/v1beta1/tx.proto b/proto/cosmos/feegrant/v1beta1/tx.proto index 66c27a7982c4..69a1a25fc2d9 100644 --- a/proto/cosmos/feegrant/v1beta1/tx.proto +++ b/proto/cosmos/feegrant/v1beta1/tx.proto @@ -23,10 +23,10 @@ service Msg { // of fees from the account of Granter. message MsgGrantAllowance { // granter is the address of the user granting an allowance of their funds. - string granter = 1; + string granter = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // grantee is the address of the user being granted an allowance of another user's funds. - string grantee = 2; + string grantee = 2 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // allowance can be any of basic and filtered fee allowance. google.protobuf.Any allowance = 3 [(cosmos_proto.accepts_interface) = "FeeAllowanceI"]; @@ -38,10 +38,10 @@ message MsgGrantAllowanceResponse {} // MsgRevokeAllowance removes any existing Allowance from Granter to Grantee. message MsgRevokeAllowance { // granter is the address of the user granting an allowance of their funds. - string granter = 1; + string granter = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // grantee is the address of the user being granted an allowance of another user's funds. - string grantee = 2; + string grantee = 2 [(cosmos_proto.scalar) = "cosmos.AddressString"]; } // MsgRevokeAllowanceResponse defines the Msg/RevokeAllowanceResponse response type. diff --git a/proto/cosmos/gov/v1beta1/genesis.proto b/proto/cosmos/gov/v1beta1/genesis.proto index a999500449fa..339bff363f20 100644 --- a/proto/cosmos/gov/v1beta1/genesis.proto +++ b/proto/cosmos/gov/v1beta1/genesis.proto @@ -4,13 +4,14 @@ package cosmos.gov.v1beta1; import "gogoproto/gogo.proto"; import "cosmos/gov/v1beta1/gov.proto"; +import "cosmos_proto/cosmos.proto"; option go_package = "github.com/cosmos/cosmos-sdk/x/gov/types"; // GenesisState defines the gov module's genesis state. message GenesisState { // starting_proposal_id is the ID of the starting proposal. - uint64 starting_proposal_id = 1 [(gogoproto.moretags) = "yaml:\"starting_proposal_id\""]; + uint64 starting_proposal_id = 1 [(cosmos_proto.scalar) = "cosmos.Int", (gogoproto.moretags) = "yaml:\"starting_proposal_id\""]; // deposits defines all the deposits present at genesis. repeated Deposit deposits = 2 [(gogoproto.castrepeated) = "Deposits", (gogoproto.nullable) = false]; // votes defines all the votes present at genesis. diff --git a/proto/cosmos/gov/v1beta1/gov.proto b/proto/cosmos/gov/v1beta1/gov.proto index f040772e8e7f..3ee6e7534975 100644 --- a/proto/cosmos/gov/v1beta1/gov.proto +++ b/proto/cosmos/gov/v1beta1/gov.proto @@ -7,6 +7,7 @@ import "cosmos_proto/cosmos.proto"; import "google/protobuf/timestamp.proto"; import "google/protobuf/any.proto"; import "google/protobuf/duration.proto"; +import "cosmos_proto/cosmos.proto"; option go_package = "github.com/cosmos/cosmos-sdk/x/gov/types"; option (gogoproto.goproto_stringer_all) = false; @@ -56,8 +57,8 @@ message Deposit { option (gogoproto.goproto_getters) = false; option (gogoproto.equal) = false; - uint64 proposal_id = 1 [(gogoproto.moretags) = "yaml:\"proposal_id\""]; - string depositor = 2; + uint64 proposal_id = 1 [(cosmos_proto.scalar) = "cosmos.Int", (gogoproto.moretags) = "yaml:\"proposal_id\""]; + string depositor = 2 [(cosmos_proto.scalar) = "cosmos.AddressString"]; repeated cosmos.base.v1beta1.Coin amount = 3 [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"]; } @@ -66,7 +67,7 @@ message Deposit { message Proposal { option (gogoproto.equal) = true; - uint64 proposal_id = 1 [(gogoproto.jsontag) = "id", (gogoproto.moretags) = "yaml:\"id\""]; + uint64 proposal_id = 1 [(cosmos_proto.scalar) = "cosmos.Int", (gogoproto.jsontag) = "id", (gogoproto.moretags) = "yaml:\"id\""]; google.protobuf.Any content = 2 [(cosmos_proto.accepts_interface) = "Content"]; ProposalStatus status = 3 [(gogoproto.moretags) = "yaml:\"proposal_status\""]; TallyResult final_tally_result = 4 @@ -129,8 +130,8 @@ message Vote { option (gogoproto.goproto_stringer) = false; option (gogoproto.equal) = false; - uint64 proposal_id = 1 [(gogoproto.moretags) = "yaml:\"proposal_id\""]; - string voter = 2; + uint64 proposal_id = 1 [(cosmos_proto.scalar) = "cosmos.Int", (gogoproto.moretags) = "yaml:\"proposal_id\""]; + string voter = 2 (cosmos_proto.scalar) = "cosmos.AddressString"]; // Deprecated: Prefer to use `options` instead. This field is set in queries // if and only if `len(options) == 1` and that option has weight 1. In all // other cases, this field will default to VOTE_OPTION_UNSPECIFIED. diff --git a/proto/cosmos/gov/v1beta1/query.proto b/proto/cosmos/gov/v1beta1/query.proto index da62bdbad16b..42be86b2521f 100644 --- a/proto/cosmos/gov/v1beta1/query.proto +++ b/proto/cosmos/gov/v1beta1/query.proto @@ -5,6 +5,7 @@ import "cosmos/base/query/v1beta1/pagination.proto"; import "gogoproto/gogo.proto"; import "google/api/annotations.proto"; import "cosmos/gov/v1beta1/gov.proto"; +import "cosmos_proto/cosmos.proto"; option go_package = "github.com/cosmos/cosmos-sdk/x/gov/types"; @@ -54,7 +55,7 @@ service Query { // QueryProposalRequest is the request type for the Query/Proposal RPC method. message QueryProposalRequest { // proposal_id defines the unique id of the proposal. - uint64 proposal_id = 1; + uint64 proposal_id = 1 [(cosmos_proto.scalar) = "cosmos.Int"]; } // QueryProposalResponse is the response type for the Query/Proposal RPC method. @@ -71,10 +72,10 @@ message QueryProposalsRequest { ProposalStatus proposal_status = 1; // voter defines the voter address for the proposals. - string voter = 2; + string voter = 2 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // depositor defines the deposit addresses from the proposals. - string depositor = 3; + string depositor = 3 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // pagination defines an optional pagination for the request. cosmos.base.query.v1beta1.PageRequest pagination = 4; @@ -95,10 +96,10 @@ message QueryVoteRequest { option (gogoproto.goproto_getters) = false; // proposal_id defines the unique id of the proposal. - uint64 proposal_id = 1; + uint64 proposal_id = 1 [(cosmos_proto.scalar) = "cosmos.Int"]; // voter defines the oter address for the proposals. - string voter = 2; + string voter = 2 [(cosmos_proto.scalar) = "cosmos.AddressString"]; } // QueryVoteResponse is the response type for the Query/Vote RPC method. @@ -110,7 +111,7 @@ message QueryVoteResponse { // QueryVotesRequest is the request type for the Query/Votes RPC method. message QueryVotesRequest { // proposal_id defines the unique id of the proposal. - uint64 proposal_id = 1; + uint64 proposal_id = 1 [(cosmos_proto.scalar) = "cosmos.Int"]; // pagination defines an optional pagination for the request. cosmos.base.query.v1beta1.PageRequest pagination = 2; @@ -148,10 +149,10 @@ message QueryDepositRequest { option (gogoproto.equal) = false; // proposal_id defines the unique id of the proposal. - uint64 proposal_id = 1; + uint64 proposal_id = 1 [(cosmos_proto.scalar) = "cosmos.Int"]; // depositor defines the deposit addresses from the proposals. - string depositor = 2; + string depositor = 2 [(cosmos_proto.scalar) = "cosmos.AddressString"]; } // QueryDepositResponse is the response type for the Query/Deposit RPC method. @@ -163,7 +164,7 @@ message QueryDepositResponse { // QueryDepositsRequest is the request type for the Query/Deposits RPC method. message QueryDepositsRequest { // proposal_id defines the unique id of the proposal. - uint64 proposal_id = 1; + uint64 proposal_id = 1 [(cosmos_proto.scalar) = "cosmos.Int"]; // pagination defines an optional pagination for the request. cosmos.base.query.v1beta1.PageRequest pagination = 2; @@ -180,7 +181,7 @@ message QueryDepositsResponse { // QueryTallyResultRequest is the request type for the Query/Tally RPC method. message QueryTallyResultRequest { // proposal_id defines the unique id of the proposal. - uint64 proposal_id = 1; + uint64 proposal_id = 1 [(cosmos_proto.scalar) = "cosmos.Int"]; } // QueryTallyResultResponse is the response type for the Query/Tally RPC method. diff --git a/proto/cosmos/gov/v1beta1/tx.proto b/proto/cosmos/gov/v1beta1/tx.proto index ecb1cdfef9eb..aaa43fa27619 100644 --- a/proto/cosmos/gov/v1beta1/tx.proto +++ b/proto/cosmos/gov/v1beta1/tx.proto @@ -38,12 +38,12 @@ message MsgSubmitProposal { (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins", (gogoproto.moretags) = "yaml:\"initial_deposit\"" ]; - string proposer = 3; + string proposer = 3 [(cosmos_proto.scalar) = "cosmos.AddressString"]; } // MsgSubmitProposalResponse defines the Msg/SubmitProposal response type. message MsgSubmitProposalResponse { - uint64 proposal_id = 1 [(gogoproto.jsontag) = "proposal_id", (gogoproto.moretags) = "yaml:\"proposal_id\""]; + uint64 proposal_id = 1 [(cosmos_proto.scalar) = "cosmos.Int", (gogoproto.jsontag) = "proposal_id", (gogoproto.moretags) = "yaml:\"proposal_id\""]; } // MsgVote defines a message to cast a vote. @@ -53,8 +53,8 @@ message MsgVote { option (gogoproto.stringer) = false; option (gogoproto.goproto_getters) = false; - uint64 proposal_id = 1 [(gogoproto.jsontag) = "proposal_id", (gogoproto.moretags) = "yaml:\"proposal_id\""]; - string voter = 2; + uint64 proposal_id = 1 [(cosmos_proto.scalar) = "cosmos.Int", (gogoproto.jsontag) = "proposal_id", (gogoproto.moretags) = "yaml:\"proposal_id\""]; + string voter = 2 [(cosmos_proto.scalar) = "cosmos.AddressString"]; VoteOption option = 3; } @@ -68,8 +68,8 @@ message MsgVoteWeighted { option (gogoproto.stringer) = false; option (gogoproto.goproto_getters) = false; - uint64 proposal_id = 1 [(gogoproto.moretags) = "yaml:\"proposal_id\""]; - string voter = 2; + uint64 proposal_id = 1 [(cosmos_proto.scalar) = "cosmos.Int", (gogoproto.moretags) = "yaml:\"proposal_id\""]; + string voter = 2 [(cosmos_proto.scalar) = "cosmos.AddressString"]; repeated WeightedVoteOption options = 3 [(gogoproto.nullable) = false]; } @@ -83,8 +83,8 @@ message MsgDeposit { option (gogoproto.stringer) = false; option (gogoproto.goproto_getters) = false; - uint64 proposal_id = 1 [(gogoproto.jsontag) = "proposal_id", (gogoproto.moretags) = "yaml:\"proposal_id\""]; - string depositor = 2; + uint64 proposal_id = 1 [(cosmos_proto.scalar) = "cosmos.Int", (gogoproto.jsontag) = "proposal_id", (gogoproto.moretags) = "yaml:\"proposal_id\""]; + string depositor = 2 [(cosmos_proto.scalar) = "cosmos.AddressString"]; repeated cosmos.base.v1beta1.Coin amount = 3 [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"]; } diff --git a/proto/cosmos/group/v1beta1/query.proto b/proto/cosmos/group/v1beta1/query.proto index 1a91eca6674a..21120d853283 100644 --- a/proto/cosmos/group/v1beta1/query.proto +++ b/proto/cosmos/group/v1beta1/query.proto @@ -5,6 +5,7 @@ package cosmos.group.v1beta1; import "cosmos/group/v1beta1/types.proto"; import "gogoproto/gogo.proto"; import "cosmos/base/query/v1beta1/pagination.proto"; +import "cosmos_proto/cosmos.proto"; option go_package = "github.com/cosmos/cosmos-sdk/x/group"; @@ -49,7 +50,7 @@ service Query { message QueryGroupInfoRequest { // group_id is the unique ID of the group. - uint64 group_id = 1; + uint64 group_id = 1 [(cosmos_proto.scalar) = "cosmos.Int"]; } // QueryGroupInfoResponse is the Query/GroupInfo response type. @@ -63,7 +64,7 @@ message QueryGroupInfoResponse { message QueryGroupAccountInfoRequest { // address is the account address of the group account. - string address = 1; + string address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; } // QueryGroupAccountInfoResponse is the Query/GroupAccountInfo response type. @@ -77,7 +78,7 @@ message QueryGroupAccountInfoResponse { message QueryGroupMembersRequest { // group_id is the unique ID of the group. - uint64 group_id = 1; + uint64 group_id = 1 [(cosmos_proto.scalar) = "cosmos.Int"];; // pagination defines an optional pagination for the request. cosmos.base.query.v1beta1.PageRequest pagination = 2; @@ -97,7 +98,7 @@ message QueryGroupMembersResponse { message QueryGroupsByAdminRequest { // admin is the account address of a group's admin. - string admin = 1; + string admin = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // pagination defines an optional pagination for the request. cosmos.base.query.v1beta1.PageRequest pagination = 2; @@ -117,7 +118,7 @@ message QueryGroupsByAdminResponse { message QueryGroupAccountsByGroupRequest { // group_id is the unique ID of the group account's group. - uint64 group_id = 1; + uint64 group_id = 1 [(cosmos_proto.scalar) = "cosmos.Int"]; // pagination defines an optional pagination for the request. cosmos.base.query.v1beta1.PageRequest pagination = 2; @@ -137,7 +138,7 @@ message QueryGroupAccountsByGroupResponse { message QueryGroupAccountsByAdminRequest { // admin is the admin address of the group account. - string admin = 1; + string admin = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // pagination defines an optional pagination for the request. cosmos.base.query.v1beta1.PageRequest pagination = 2; @@ -157,7 +158,7 @@ message QueryGroupAccountsByAdminResponse { message QueryProposalRequest { // proposal_id is the unique ID of a proposal. - uint64 proposal_id = 1; + uint64 proposal_id = 1 [(cosmos_proto.scalar) = "cosmos.Int"]; } // QueryProposalResponse is the Query/Proposal response type. @@ -171,7 +172,7 @@ message QueryProposalResponse { message QueryProposalsByGroupAccountRequest { // address is the group account address related to proposals. - string address = 1; + string address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"];; // pagination defines an optional pagination for the request. cosmos.base.query.v1beta1.PageRequest pagination = 2; @@ -191,10 +192,10 @@ message QueryProposalsByGroupAccountResponse { message QueryVoteByProposalVoterRequest { // proposal_id is the unique ID of a proposal. - uint64 proposal_id = 1; + uint64 proposal_id = 1 [(cosmos_proto.scalar) = "cosmos.Int"]; // voter is a proposal voter account address. - string voter = 2; + string voter = 2 [(cosmos_proto.scalar) = "cosmos.AddressString"]; } // QueryVoteByProposalVoterResponse is the Query/VoteByProposalVoter response type. @@ -208,7 +209,7 @@ message QueryVoteByProposalVoterResponse { message QueryVotesByProposalRequest { // proposal_id is the unique ID of a proposal. - uint64 proposal_id = 1; + uint64 proposal_id = 1 [(cosmos_proto.scalar) = "cosmos.Int"]; // pagination defines an optional pagination for the request. cosmos.base.query.v1beta1.PageRequest pagination = 2; @@ -227,7 +228,7 @@ message QueryVotesByProposalResponse { // QueryVotesByVoterResponse is the Query/VotesByVoter request type. message QueryVotesByVoterRequest { // voter is a proposal voter account address. - string voter = 1; + string voter = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // pagination defines an optional pagination for the request. cosmos.base.query.v1beta1.PageRequest pagination = 2; diff --git a/proto/cosmos/group/v1beta1/tx.proto b/proto/cosmos/group/v1beta1/tx.proto index 5fabeed1321f..93ded280d49e 100644 --- a/proto/cosmos/group/v1beta1/tx.proto +++ b/proto/cosmos/group/v1beta1/tx.proto @@ -55,7 +55,7 @@ service Msg { message MsgCreateGroupRequest { // admin is the account address of the group admin. - string admin = 1; + string admin = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // members defines the group members. repeated Member members = 2 [(gogoproto.nullable) = false]; @@ -68,17 +68,17 @@ message MsgCreateGroupRequest { message MsgCreateGroupResponse { // group_id is the unique ID of the newly created group. - uint64 group_id = 1; + uint64 group_id = 1 [(cosmos_proto.scalar) = "cosmos.Int"]; } // MsgUpdateGroupMembersRequest is the Msg/UpdateGroupMembers request type. message MsgUpdateGroupMembersRequest { // admin is the account address of the group admin. - string admin = 1; + string admin = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // group_id is the unique ID of the group. - uint64 group_id = 2; + uint64 group_id = 2 [(cosmos_proto.scalar) = "cosmos.Int"]; // member_updates is the list of members to update, // set weight to 0 to remove a member. @@ -92,13 +92,13 @@ message MsgUpdateGroupMembersResponse {} message MsgUpdateGroupAdminRequest { // admin is the current account address of the group admin. - string admin = 1; + string admin = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // group_id is the unique ID of the group. - uint64 group_id = 2; + uint64 group_id = 2 [(cosmos_proto.scalar) = "cosmos.Int"]; // new_admin is the group new admin account address. - string new_admin = 3; + string new_admin = 3 [(cosmos_proto.scalar) = "cosmos.AddressString"]; } // MsgUpdateGroupAdminResponse is the Msg/UpdateGroupAdmin response type. @@ -108,10 +108,10 @@ message MsgUpdateGroupAdminResponse {} message MsgUpdateGroupMetadataRequest { // admin is the account address of the group admin. - string admin = 1; + string admin = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // group_id is the unique ID of the group. - uint64 group_id = 2; + uint64 group_id = 2 [(cosmos_proto.scalar) = "cosmos.Int"]; // metadata is the updated group's metadata. bytes metadata = 3; @@ -129,10 +129,10 @@ message MsgCreateGroupAccountRequest { option (gogoproto.goproto_getters) = false; // admin is the account address of the group admin. - string admin = 1; + string admin = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // group_id is the unique ID of the group. - uint64 group_id = 2; + uint64 group_id = 2 [(cosmos_proto.scalar) = "cosmos.Int"]; // metadata is any arbitrary metadata to attached to the group account. bytes metadata = 3; @@ -145,20 +145,20 @@ message MsgCreateGroupAccountRequest { message MsgCreateGroupAccountResponse { // address is the account address of the newly created group account. - string address = 1; + string address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; } // MsgUpdateGroupAccountAdminRequest is the Msg/UpdateGroupAccountAdmin request type. message MsgUpdateGroupAccountAdminRequest { // admin is the account address of the group admin. - string admin = 1; + string admin = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // address is the group account address. - string address = 2; + string address = 2 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // new_admin is the new group account admin. - string new_admin = 3; + string new_admin = 3 [(cosmos_proto.scalar) = "cosmos.AddressString"]; } // MsgUpdateGroupAccountAdminResponse is the Msg/UpdateGroupAccountAdmin response type. @@ -169,10 +169,10 @@ message MsgUpdateGroupAccountDecisionPolicyRequest { option (gogoproto.goproto_getters) = false; // admin is the account address of the group admin. - string admin = 1; + string admin = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // address is the group account address. - string address = 2; + string address = 2 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // decision_policy is the updated group account decision policy. google.protobuf.Any decision_policy = 3 [(cosmos_proto.accepts_interface) = "DecisionPolicy"]; @@ -185,10 +185,10 @@ message MsgUpdateGroupAccountDecisionPolicyResponse {} message MsgUpdateGroupAccountMetadataRequest { // admin is the account address of the group admin. - string admin = 1; + string admin = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // address is the group account address. - string address = 2; + string address = 2 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // metadata is the updated group account metadata. bytes metadata = 3; @@ -220,7 +220,7 @@ message MsgCreateProposalRequest { option (gogoproto.goproto_getters) = false; // address is the group account address. - string address = 1; + string address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // proposers are the account addresses of the proposers. // Proposers signatures will be counted as yes votes. @@ -242,17 +242,16 @@ message MsgCreateProposalRequest { message MsgCreateProposalResponse { // proposal is the unique ID of the proposal. - uint64 proposal_id = 1; + uint64 proposal_id = 1 [(cosmos_proto.scalar) = "cosmos.Int"]; } // MsgVoteRequest is the Msg/Vote request type. message MsgVoteRequest { // proposal is the unique ID of the proposal. - uint64 proposal_id = 1; - + uint64 proposal_id = 1 [(cosmos_proto.scalar) = "cosmos.Int"]; // voter is the voter account address. - string voter = 2; + string voter = 2 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // choice is the voter's choice on the proposal. Choice choice = 3; @@ -272,10 +271,10 @@ message MsgVoteResponse {} message MsgExecRequest { // proposal is the unique ID of the proposal. - uint64 proposal_id = 1; + uint64 proposal_id = 1 [(cosmos_proto.scalar) = "cosmos.Int"]; // signer is the account address used to execute the proposal. - string signer = 2; + string signer = 2 [(cosmos_proto.scalar) = "cosmos.AddressString"]; } // MsgExecResponse is the Msg/Exec request type. diff --git a/proto/cosmos/group/v1beta1/types.proto b/proto/cosmos/group/v1beta1/types.proto index c1a12c99ec21..52992cdb3911 100644 --- a/proto/cosmos/group/v1beta1/types.proto +++ b/proto/cosmos/group/v1beta1/types.proto @@ -15,7 +15,7 @@ import "google/protobuf/any.proto"; message Member { // address is the member's account address. - string address = 1; + string address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // weight is the member's voting weight that should be greater than 0. string weight = 2; @@ -70,10 +70,10 @@ enum Choice { message GroupInfo { // group_id is the unique ID of the group. - uint64 group_id = 1; + uint64 group_id = 1 [(cosmos_proto.scalar) = "cosmos.Int"]; // admin is the account address of the group's admin. - string admin = 2; + string admin = 2 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // metadata is any arbitrary metadata to attached to the group. bytes metadata = 3; @@ -82,7 +82,7 @@ message GroupInfo { // would break existing proposals. Whenever any members weight is changed, // or any member is added or removed this version is incremented and will // cause proposals based on older versions of this group to fail - uint64 version = 4; + uint64 version = 4 [(cosmos_proto.scalar) = "cosmos.Int"]; // total_weight is the sum of the group members' weights. string total_weight = 5; @@ -92,7 +92,7 @@ message GroupInfo { message GroupMember { // group_id is the unique ID of the group. - uint64 group_id = 1; + uint64 group_id = 1 [(cosmos_proto.scalar) = "cosmos.Int"]; // member is the member data. Member member = 2; @@ -104,20 +104,20 @@ message GroupAccountInfo { option (gogoproto.goproto_getters) = false; // address is the group account address. - string address = 1; + string address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // group_id is the unique ID of the group. - uint64 group_id = 2; + uint64 group_id = 2 [(cosmos_proto.scalar) = "cosmos.Int"]; // admin is the account address of the group admin. - string admin = 3; + string admin = 3 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // metadata is any arbitrary metadata to attached to the group account. bytes metadata = 4; // version is used to track changes to a group's GroupAccountInfo structure that // would create a different result on a running proposal. - uint64 version = 5; + uint64 version = 5 [(cosmos_proto.scalar) = "cosmos.Int"]; // decision_policy specifies the group account's decision policy. google.protobuf.Any decision_policy = 6 [(cosmos_proto.accepts_interface) = "DecisionPolicy"]; @@ -135,10 +135,10 @@ message Proposal { option (gogoproto.goproto_getters) = false; // proposal_id is the unique id of the proposal. - uint64 proposal_id = 1; + uint64 proposal_id = 1 [(cosmos_proto.scalar) = "cosmos.Int"]; // address is the group account address. - string address = 2; + string address = 2 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // metadata is any arbitrary metadata to attached to the proposal. bytes metadata = 3; @@ -151,11 +151,11 @@ message Proposal { // group_version tracks the version of the group that this proposal corresponds to. // When group membership is changed, existing proposals from previous group versions will become invalid. - uint64 group_version = 6; + uint64 group_version = 6 [(cosmos_proto.scalar) = "cosmos.Int"]; // group_account_version tracks the version of the group account that this proposal corresponds to. // When a decision policy is changed, existing proposals from previous policy versions will become invalid. - uint64 group_account_version = 7; + uint64 group_account_version = 7 [(cosmos_proto.scalar) = "cosmos.Int"]; // Status defines proposal statuses. enum Status { @@ -256,10 +256,10 @@ message Tally { message Vote { // proposal is the unique ID of the proposal. - uint64 proposal_id = 1; + uint64 proposal_id = 1 [(cosmos_proto.scalar) = "cosmos.Int"];; // voter is the account address of the voter. - string voter = 2; + string voter = 2 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // choice is the voter's choice on the proposal. Choice choice = 3; diff --git a/proto/cosmos/mint/v1beta1/mint.proto b/proto/cosmos/mint/v1beta1/mint.proto index f94d4ae2e8e9..0e6b88e6abec 100644 --- a/proto/cosmos/mint/v1beta1/mint.proto +++ b/proto/cosmos/mint/v1beta1/mint.proto @@ -4,6 +4,7 @@ package cosmos.mint.v1beta1; option go_package = "github.com/cosmos/cosmos-sdk/x/mint/types"; import "gogoproto/gogo.proto"; +import "cosmos_proto/cosmos.proto"; // Minter represents the minting state. message Minter { @@ -49,5 +50,5 @@ message Params { (gogoproto.nullable) = false ]; // expected blocks per year - uint64 blocks_per_year = 6 [(gogoproto.moretags) = "yaml:\"blocks_per_year\""]; + uint64 blocks_per_year = 6 [(cosmos_proto.scalar) = "cosmos.Int", (gogoproto.moretags) = "yaml:\"blocks_per_year\""]; } diff --git a/proto/cosmos/slashing/v1beta1/genesis.proto b/proto/cosmos/slashing/v1beta1/genesis.proto index a7aebcfbad6c..ae1ae5b70698 100644 --- a/proto/cosmos/slashing/v1beta1/genesis.proto +++ b/proto/cosmos/slashing/v1beta1/genesis.proto @@ -5,6 +5,7 @@ option go_package = "github.com/cosmos/cosmos-sdk/x/slashing/types"; import "gogoproto/gogo.proto"; import "cosmos/slashing/v1beta1/slashing.proto"; +import "cosmos_proto/cosmos.proto"; // GenesisState defines the slashing module's genesis state. message GenesisState { @@ -25,7 +26,7 @@ message GenesisState { // SigningInfo stores validator signing info of corresponding address. message SigningInfo { // address is the validator address. - string address = 1; + string address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // validator_signing_info represents the signing info of this validator. ValidatorSigningInfo validator_signing_info = 2 [(gogoproto.nullable) = false, (gogoproto.moretags) = "yaml:\"validator_signing_info\""]; @@ -35,7 +36,7 @@ message SigningInfo { // address. message ValidatorMissedBlocks { // address is the validator address. - string address = 1; + string address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // missed_blocks is an array of missed blocks by the validator. repeated MissedBlock missed_blocks = 2 [(gogoproto.nullable) = false, (gogoproto.moretags) = "yaml:\"missed_blocks\""]; @@ -44,7 +45,7 @@ message ValidatorMissedBlocks { // MissedBlock contains height and missed status as boolean. message MissedBlock { // index is the height at which the block was missed. - int64 index = 1; + int64 index = 1 [(cosmos_proto.scalar) = "cosmos.Int"]; // missed is the missed status. bool missed = 2; } diff --git a/proto/cosmos/slashing/v1beta1/query.proto b/proto/cosmos/slashing/v1beta1/query.proto index 869049a0edfd..f742c1f8ae30 100644 --- a/proto/cosmos/slashing/v1beta1/query.proto +++ b/proto/cosmos/slashing/v1beta1/query.proto @@ -5,6 +5,7 @@ import "cosmos/base/query/v1beta1/pagination.proto"; import "gogoproto/gogo.proto"; import "google/api/annotations.proto"; import "cosmos/slashing/v1beta1/slashing.proto"; +import "cosmos_proto/cosmos.proto"; option go_package = "github.com/cosmos/cosmos-sdk/x/slashing/types"; @@ -38,7 +39,7 @@ message QueryParamsResponse { // method message QuerySigningInfoRequest { // cons_address is the address to query signing info of - string cons_address = 1; + string cons_address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; } // QuerySigningInfoResponse is the response type for the Query/SigningInfo RPC diff --git a/proto/cosmos/slashing/v1beta1/slashing.proto b/proto/cosmos/slashing/v1beta1/slashing.proto index 882a0fb60cb5..26101e3810a1 100644 --- a/proto/cosmos/slashing/v1beta1/slashing.proto +++ b/proto/cosmos/slashing/v1beta1/slashing.proto @@ -7,6 +7,7 @@ option (gogoproto.equal_all) = true; import "gogoproto/gogo.proto"; import "google/protobuf/duration.proto"; import "google/protobuf/timestamp.proto"; +import "cosmos_proto/cosmos.proto"; // ValidatorSigningInfo defines a validator's signing info for monitoring their // liveness activity. @@ -14,13 +15,13 @@ message ValidatorSigningInfo { option (gogoproto.equal) = true; option (gogoproto.goproto_stringer) = false; - string address = 1; + string address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // Height at which validator was first a candidate OR was unjailed - int64 start_height = 2 [(gogoproto.moretags) = "yaml:\"start_height\""]; + int64 start_height = 2 [(cosmos_proto.scalar) = "cosmos.Int", (gogoproto.moretags) = "yaml:\"start_height\""]; // Index which is incremented each time the validator was a bonded // in a block and may have signed a precommit or not. This in conjunction with the // `SignedBlocksWindow` param determines the index in the `MissedBlocksBitArray`. - int64 index_offset = 3 [(gogoproto.moretags) = "yaml:\"index_offset\""]; + int64 index_offset = 3 [(cosmos_proto.scalar) = "cosmos.Int", (gogoproto.moretags) = "yaml:\"index_offset\""]; // Timestamp until which the validator is jailed due to liveness downtime. google.protobuf.Timestamp jailed_until = 4 [(gogoproto.moretags) = "yaml:\"jailed_until\"", (gogoproto.stdtime) = true, (gogoproto.nullable) = false]; @@ -29,12 +30,12 @@ message ValidatorSigningInfo { bool tombstoned = 5; // A counter kept to avoid unnecessary array reads. // Note that `Sum(MissedBlocksBitArray)` always equals `MissedBlocksCounter`. - int64 missed_blocks_counter = 6 [(gogoproto.moretags) = "yaml:\"missed_blocks_counter\""]; + int64 missed_blocks_counter = 6 [(cosmos_proto.scalar) = "cosmos.Int", (gogoproto.moretags) = "yaml:\"missed_blocks_counter\""]; } // Params represents the parameters used for by the slashing module. message Params { - int64 signed_blocks_window = 1 [(gogoproto.moretags) = "yaml:\"signed_blocks_window\""]; + int64 signed_blocks_window = 1 [(cosmos_proto.scalar) = "cosmos.Int", (gogoproto.moretags) = "yaml:\"signed_blocks_window\""]; bytes min_signed_per_window = 2 [ (gogoproto.moretags) = "yaml:\"min_signed_per_window\"", (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Dec", diff --git a/proto/cosmos/slashing/v1beta1/tx.proto b/proto/cosmos/slashing/v1beta1/tx.proto index 4d63370ecca8..bf40016add8f 100644 --- a/proto/cosmos/slashing/v1beta1/tx.proto +++ b/proto/cosmos/slashing/v1beta1/tx.proto @@ -5,6 +5,7 @@ option go_package = "github.com/cosmos/cosmos-sdk/x/slashing/types"; option (gogoproto.equal_all) = true; import "gogoproto/gogo.proto"; +import "cosmos_proto/cosmos.proto"; // Msg defines the slashing Msg service. service Msg { @@ -19,7 +20,7 @@ message MsgUnjail { option (gogoproto.goproto_getters) = false; option (gogoproto.goproto_stringer) = true; - string validator_addr = 1 [(gogoproto.moretags) = "yaml:\"address\"", (gogoproto.jsontag) = "address"]; + string validator_addr = 1 [(cosmos_proto.scalar) = "cosmos.AddressString", (gogoproto.moretags) = "yaml:\"address\"", (gogoproto.jsontag) = "address"]; } // MsgUnjailResponse defines the Msg/Unjail response type diff --git a/proto/cosmos/staking/v1beta1/authz.proto b/proto/cosmos/staking/v1beta1/authz.proto index 6345612f2d18..7adabfb5eb55 100644 --- a/proto/cosmos/staking/v1beta1/authz.proto +++ b/proto/cosmos/staking/v1beta1/authz.proto @@ -24,7 +24,8 @@ message StakeAuthorization { } // Validators defines list of validator addresses. message Validators { - repeated string address = 1; + // TODO how to deal with repeated here? + repeated string address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; } // authorization_type defines one of AuthorizationType. AuthorizationType authorization_type = 4; diff --git a/proto/cosmos/staking/v1beta1/genesis.proto b/proto/cosmos/staking/v1beta1/genesis.proto index d1563dbc5470..1d7fdd854289 100644 --- a/proto/cosmos/staking/v1beta1/genesis.proto +++ b/proto/cosmos/staking/v1beta1/genesis.proto @@ -5,6 +5,7 @@ option go_package = "github.com/cosmos/cosmos-sdk/x/staking/types"; import "gogoproto/gogo.proto"; import "cosmos/staking/v1beta1/staking.proto"; +import "cosmos_proto/cosmos.proto"; // GenesisState defines the staking module's genesis state. message GenesisState { @@ -46,8 +47,8 @@ message LastValidatorPower { option (gogoproto.goproto_getters) = false; // address is the address of the validator. - string address = 1; + string address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // power defines the power of the validator. - int64 power = 2; + int64 power = 2 [(cosmos_proto.scalar) = "cosmos.Int"]; } diff --git a/proto/cosmos/staking/v1beta1/query.proto b/proto/cosmos/staking/v1beta1/query.proto index 4852c5353584..0bd9d6d4d2e6 100644 --- a/proto/cosmos/staking/v1beta1/query.proto +++ b/proto/cosmos/staking/v1beta1/query.proto @@ -5,6 +5,7 @@ import "cosmos/base/query/v1beta1/pagination.proto"; import "gogoproto/gogo.proto"; import "google/api/annotations.proto"; import "cosmos/staking/v1beta1/staking.proto"; +import "cosmos_proto/cosmos.proto"; option go_package = "github.com/cosmos/cosmos-sdk/x/staking/types"; @@ -113,7 +114,7 @@ message QueryValidatorsResponse { // QueryValidatorRequest is response type for the Query/Validator RPC method message QueryValidatorRequest { // validator_addr defines the validator address to query for. - string validator_addr = 1; + string validator_addr = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; } // QueryValidatorResponse is response type for the Query/Validator RPC method @@ -126,7 +127,7 @@ message QueryValidatorResponse { // Query/ValidatorDelegations RPC method message QueryValidatorDelegationsRequest { // validator_addr defines the validator address to query for. - string validator_addr = 1; + string validator_addr = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // pagination defines an optional pagination for the request. cosmos.base.query.v1beta1.PageRequest pagination = 2; @@ -146,7 +147,7 @@ message QueryValidatorDelegationsResponse { // Query/ValidatorUnbondingDelegations RPC method message QueryValidatorUnbondingDelegationsRequest { // validator_addr defines the validator address to query for. - string validator_addr = 1; + string validator_addr = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // pagination defines an optional pagination for the request. cosmos.base.query.v1beta1.PageRequest pagination = 2; @@ -167,10 +168,10 @@ message QueryDelegationRequest { option (gogoproto.goproto_getters) = false; // delegator_addr defines the delegator address to query for. - string delegator_addr = 1; + string delegator_addr = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // validator_addr defines the validator address to query for. - string validator_addr = 2; + string validator_addr = 2 [(cosmos_proto.scalar) = "cosmos.AddressString"]; } // QueryDelegationResponse is response type for the Query/Delegation RPC method. @@ -186,10 +187,10 @@ message QueryUnbondingDelegationRequest { option (gogoproto.goproto_getters) = false; // delegator_addr defines the delegator address to query for. - string delegator_addr = 1; + string delegator_addr = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // validator_addr defines the validator address to query for. - string validator_addr = 2; + string validator_addr = 2 [(cosmos_proto.scalar) = "cosmos.AddressString"]; } // QueryDelegationResponse is response type for the Query/UnbondingDelegation @@ -206,7 +207,7 @@ message QueryDelegatorDelegationsRequest { option (gogoproto.goproto_getters) = false; // delegator_addr defines the delegator address to query for. - string delegator_addr = 1; + string delegator_addr = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // pagination defines an optional pagination for the request. cosmos.base.query.v1beta1.PageRequest pagination = 2; @@ -229,7 +230,7 @@ message QueryDelegatorUnbondingDelegationsRequest { option (gogoproto.goproto_getters) = false; // delegator_addr defines the delegator address to query for. - string delegator_addr = 1; + string delegator_addr = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // pagination defines an optional pagination for the request. cosmos.base.query.v1beta1.PageRequest pagination = 2; @@ -251,13 +252,13 @@ message QueryRedelegationsRequest { option (gogoproto.goproto_getters) = false; // delegator_addr defines the delegator address to query for. - string delegator_addr = 1; + string delegator_addr = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // src_validator_addr defines the validator address to redelegate from. - string src_validator_addr = 2; + string src_validator_addr = 2 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // dst_validator_addr defines the validator address to redelegate to. - string dst_validator_addr = 3; + string dst_validator_addr = 3 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // pagination defines an optional pagination for the request. cosmos.base.query.v1beta1.PageRequest pagination = 4; @@ -279,7 +280,7 @@ message QueryDelegatorValidatorsRequest { option (gogoproto.goproto_getters) = false; // delegator_addr defines the delegator address to query for. - string delegator_addr = 1; + string delegator_addr = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // pagination defines an optional pagination for the request. cosmos.base.query.v1beta1.PageRequest pagination = 2; @@ -302,10 +303,10 @@ message QueryDelegatorValidatorRequest { option (gogoproto.goproto_getters) = false; // delegator_addr defines the delegator address to query for. - string delegator_addr = 1; + string delegator_addr = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // validator_addr defines the validator address to query for. - string validator_addr = 2; + string validator_addr = 2 [(cosmos_proto.scalar) = "cosmos.AddressString"]; } // QueryDelegatorValidatorResponse response type for the @@ -319,7 +320,7 @@ message QueryDelegatorValidatorResponse { // method. message QueryHistoricalInfoRequest { // height defines at which height to query the historical info. - int64 height = 1; + int64 height = 1 [(cosmos_proto.scalar) = "cosmos.Int"]; } // QueryHistoricalInfoResponse is response type for the Query/HistoricalInfo RPC diff --git a/proto/cosmos/staking/v1beta1/staking.proto b/proto/cosmos/staking/v1beta1/staking.proto index 76e9599e2d35..6cbba9b50613 100644 --- a/proto/cosmos/staking/v1beta1/staking.proto +++ b/proto/cosmos/staking/v1beta1/staking.proto @@ -86,7 +86,7 @@ message Validator { option (gogoproto.goproto_getters) = false; // operator_address defines the address of the validator's operator; bech encoded in JSON. - string operator_address = 1 [(gogoproto.moretags) = "yaml:\"operator_address\""]; + string operator_address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString", (gogoproto.moretags) = "yaml:\"operator_address\""]; // consensus_pubkey is the consensus public key of the validator, as a Protobuf Any. google.protobuf.Any consensus_pubkey = 2 [(cosmos_proto.accepts_interface) = "cosmos.crypto.PubKey", (gogoproto.moretags) = "yaml:\"consensus_pubkey\""]; @@ -105,7 +105,7 @@ message Validator { // description defines the description terms for the validator. Description description = 7 [(gogoproto.nullable) = false]; // unbonding_height defines, if unbonding, the height at which this validator has begun unbonding. - int64 unbonding_height = 8 [(gogoproto.moretags) = "yaml:\"unbonding_height\""]; + int64 unbonding_height = 8 [(cosmos_proto.scalar) = "cosmos.Int", (gogoproto.moretags) = "yaml:\"unbonding_height\""]; // unbonding_time defines, if unbonding, the min time for the validator to complete unbonding. google.protobuf.Timestamp unbonding_time = 9 [(gogoproto.nullable) = false, (gogoproto.stdtime) = true, (gogoproto.moretags) = "yaml:\"unbonding_time\""]; @@ -138,6 +138,7 @@ message ValAddresses { option (gogoproto.goproto_stringer) = false; option (gogoproto.stringer) = true; + // TODO should I add AddressString annotation for repeated string? repeated string addresses = 1; } @@ -149,8 +150,8 @@ message DVPair { option (gogoproto.goproto_getters) = false; option (gogoproto.goproto_stringer) = false; - string delegator_address = 1 [(gogoproto.moretags) = "yaml:\"delegator_address\""]; - string validator_address = 2 [(gogoproto.moretags) = "yaml:\"validator_address\""]; + string delegator_address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString", (gogoproto.moretags) = "yaml:\"delegator_address\""]; + string validator_address = 2 [(cosmos_proto.scalar) = "cosmos.AddressString", (gogoproto.moretags) = "yaml:\"validator_address\""]; } // DVPairs defines an array of DVPair objects. @@ -167,9 +168,9 @@ message DVVTriplet { option (gogoproto.goproto_getters) = false; option (gogoproto.goproto_stringer) = false; - string delegator_address = 1 [(gogoproto.moretags) = "yaml:\"delegator_address\""]; - string validator_src_address = 2 [(gogoproto.moretags) = "yaml:\"validator_src_address\""]; - string validator_dst_address = 3 [(gogoproto.moretags) = "yaml:\"validator_dst_address\""]; + string delegator_address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString", (gogoproto.moretags) = "yaml:\"delegator_address\""]; + string validator_src_address = 2 [(cosmos_proto.scalar) = "cosmos.AddressString", (gogoproto.moretags) = "yaml:\"validator_src_address\""]; + string validator_dst_address = 3 [(cosmos_proto.scalar) = "cosmos.AddressString", (gogoproto.moretags) = "yaml:\"validator_dst_address\""]; } // DVVTriplets defines an array of DVVTriplet objects. @@ -186,9 +187,9 @@ message Delegation { option (gogoproto.goproto_stringer) = false; // delegator_address is the bech32-encoded address of the delegator. - string delegator_address = 1 [(gogoproto.moretags) = "yaml:\"delegator_address\""]; + string delegator_address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString", (gogoproto.moretags) = "yaml:\"delegator_address\""]; // validator_address is the bech32-encoded address of the validator. - string validator_address = 2 [(gogoproto.moretags) = "yaml:\"validator_address\""]; + string validator_address = 2 [(cosmos_proto.scalar) = "cosmos.AddressString", (gogoproto.moretags) = "yaml:\"validator_address\""]; // shares define the delegation shares received. string shares = 3 [(gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Dec", (gogoproto.nullable) = false]; } @@ -201,9 +202,9 @@ message UnbondingDelegation { option (gogoproto.goproto_stringer) = false; // delegator_address is the bech32-encoded address of the delegator. - string delegator_address = 1 [(gogoproto.moretags) = "yaml:\"delegator_address\""]; + string delegator_address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString", (gogoproto.moretags) = "yaml:\"delegator_address\""]; // validator_address is the bech32-encoded address of the validator. - string validator_address = 2 [(gogoproto.moretags) = "yaml:\"validator_address\""]; + string validator_address = 2 [(cosmos_proto.scalar) = "cosmos.AddressString", (gogoproto.moretags) = "yaml:\"validator_address\""]; // entries are the unbonding delegation entries. repeated UnbondingDelegationEntry entries = 3 [(gogoproto.nullable) = false]; // unbonding delegation entries } @@ -214,7 +215,7 @@ message UnbondingDelegationEntry { option (gogoproto.goproto_stringer) = false; // creation_height is the height which the unbonding took place. - int64 creation_height = 1 [(gogoproto.moretags) = "yaml:\"creation_height\""]; + int64 creation_height = 1 [(cosmos_proto.scalar) = "cosmos.Int", (gogoproto.moretags) = "yaml:\"creation_height\""]; // completion_time is the unix time for unbonding completion. google.protobuf.Timestamp completion_time = 2 [(gogoproto.nullable) = false, (gogoproto.stdtime) = true, (gogoproto.moretags) = "yaml:\"completion_time\""]; @@ -234,7 +235,7 @@ message RedelegationEntry { option (gogoproto.goproto_stringer) = false; // creation_height defines the height which the redelegation took place. - int64 creation_height = 1 [(gogoproto.moretags) = "yaml:\"creation_height\""]; + int64 creation_height = 1 [(cosmos_proto.scalar) = "cosmos.Int", (gogoproto.moretags) = "yaml:\"creation_height\""]; // completion_time defines the unix time for redelegation completion. google.protobuf.Timestamp completion_time = 2 [(gogoproto.nullable) = false, (gogoproto.stdtime) = true, (gogoproto.moretags) = "yaml:\"completion_time\""]; @@ -257,11 +258,11 @@ message Redelegation { option (gogoproto.goproto_stringer) = false; // delegator_address is the bech32-encoded address of the delegator. - string delegator_address = 1 [(gogoproto.moretags) = "yaml:\"delegator_address\""]; + string delegator_address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString", (gogoproto.moretags) = "yaml:\"delegator_address\""]; // validator_src_address is the validator redelegation source operator address. - string validator_src_address = 2 [(gogoproto.moretags) = "yaml:\"validator_src_address\""]; + string validator_src_address = 2 [(cosmos_proto.scalar) = "cosmos.AddressString", (gogoproto.moretags) = "yaml:\"validator_src_address\""]; // validator_dst_address is the validator redelegation destination operator address. - string validator_dst_address = 3 [(gogoproto.moretags) = "yaml:\"validator_dst_address\""]; + string validator_dst_address = 3 [(cosmos_proto.scalar) = "cosmos.AddressString", (gogoproto.moretags) = "yaml:\"validator_dst_address\""]; // entries are the redelegation entries. repeated RedelegationEntry entries = 4 [(gogoproto.nullable) = false]; // redelegation entries } @@ -275,11 +276,11 @@ message Params { google.protobuf.Duration unbonding_time = 1 [(gogoproto.nullable) = false, (gogoproto.stdduration) = true, (gogoproto.moretags) = "yaml:\"unbonding_time\""]; // max_validators is the maximum number of validators. - uint32 max_validators = 2 [(gogoproto.moretags) = "yaml:\"max_validators\""]; + uint32 max_validators = 2 [(cosmos_proto.scalar) = "cosmos.Int", (gogoproto.moretags) = "yaml:\"max_validators\""]; // max_entries is the max entries for either unbonding delegation or redelegation (per pair/trio). - uint32 max_entries = 3 [(gogoproto.moretags) = "yaml:\"max_entries\""]; + uint32 max_entries = 3 [(cosmos_proto.scalar) = "cosmos.Int", (gogoproto.moretags) = "yaml:\"max_entries\""]; // historical_entries is the number of historical entries to persist. - uint32 historical_entries = 4 [(gogoproto.moretags) = "yaml:\"historical_entries\""]; + uint32 historical_entries = 4 [(cosmos_proto.scalar) = "cosmos.Int", (gogoproto.moretags) = "yaml:\"historical_entries\""]; // bond_denom defines the bondable coin denomination. string bond_denom = 5 [(gogoproto.moretags) = "yaml:\"bond_denom\""]; } diff --git a/proto/cosmos/staking/v1beta1/tx.proto b/proto/cosmos/staking/v1beta1/tx.proto index 7b05d89eea22..6e2dc63e8bfd 100644 --- a/proto/cosmos/staking/v1beta1/tx.proto +++ b/proto/cosmos/staking/v1beta1/tx.proto @@ -44,8 +44,8 @@ message MsgCreateValidator { (gogoproto.moretags) = "yaml:\"min_self_delegation\"", (gogoproto.nullable) = false ]; - string delegator_address = 4 [(gogoproto.moretags) = "yaml:\"delegator_address\""]; - string validator_address = 5 [(gogoproto.moretags) = "yaml:\"validator_address\""]; + string delegator_address = 4 [(cosmos_proto.scalar) = "cosmos.AddressString", (gogoproto.moretags) = "yaml:\"delegator_address\""]; + string validator_address = 5 [(cosmos_proto.scalar) = "cosmos.AddressString", (gogoproto.moretags) = "yaml:\"validator_address\""]; google.protobuf.Any pubkey = 6 [(cosmos_proto.accepts_interface) = "cosmos.crypto.PubKey"]; cosmos.base.v1beta1.Coin value = 7 [(gogoproto.nullable) = false]; } @@ -59,7 +59,7 @@ message MsgEditValidator { option (gogoproto.goproto_getters) = false; Description description = 1 [(gogoproto.nullable) = false]; - string validator_address = 2 [(gogoproto.moretags) = "yaml:\"address\""]; + string validator_address = 2 [(cosmos_proto.scalar) = "cosmos.AddressString", (gogoproto.moretags) = "yaml:\"address\""]; // We pass a reference to the new commission rate and min self delegation as // it's not mandatory to update. If not updated, the deserialized rate will be @@ -84,8 +84,8 @@ message MsgDelegate { option (gogoproto.equal) = false; option (gogoproto.goproto_getters) = false; - string delegator_address = 1 [(gogoproto.moretags) = "yaml:\"delegator_address\""]; - string validator_address = 2 [(gogoproto.moretags) = "yaml:\"validator_address\""]; + string delegator_address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString", (gogoproto.moretags) = "yaml:\"delegator_address\""]; + string validator_address = 2 [(cosmos_proto.scalar) = "cosmos.AddressString", (gogoproto.moretags) = "yaml:\"validator_address\""]; cosmos.base.v1beta1.Coin amount = 3 [(gogoproto.nullable) = false]; } @@ -98,9 +98,9 @@ message MsgBeginRedelegate { option (gogoproto.equal) = false; option (gogoproto.goproto_getters) = false; - string delegator_address = 1 [(gogoproto.moretags) = "yaml:\"delegator_address\""]; - string validator_src_address = 2 [(gogoproto.moretags) = "yaml:\"validator_src_address\""]; - string validator_dst_address = 3 [(gogoproto.moretags) = "yaml:\"validator_dst_address\""]; + string delegator_address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString", (gogoproto.moretags) = "yaml:\"delegator_address\""]; + string validator_src_address = 2 [(cosmos_proto.scalar) = "cosmos.AddressString", (gogoproto.moretags) = "yaml:\"validator_src_address\""]; + string validator_dst_address = 3 [(cosmos_proto.scalar) = "cosmos.AddressString", (gogoproto.moretags) = "yaml:\"validator_dst_address\""]; cosmos.base.v1beta1.Coin amount = 4 [(gogoproto.nullable) = false]; } @@ -115,8 +115,8 @@ message MsgUndelegate { option (gogoproto.equal) = false; option (gogoproto.goproto_getters) = false; - string delegator_address = 1 [(gogoproto.moretags) = "yaml:\"delegator_address\""]; - string validator_address = 2 [(gogoproto.moretags) = "yaml:\"validator_address\""]; + string delegator_address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString", (gogoproto.moretags) = "yaml:\"delegator_address\""]; + string validator_address = 2 [(cosmos_proto.scalar) = "cosmos.AddressString", (gogoproto.moretags) = "yaml:\"validator_address\""]; cosmos.base.v1beta1.Coin amount = 3 [(gogoproto.nullable) = false]; } diff --git a/proto/cosmos/tx/signing/v1beta1/signing.proto b/proto/cosmos/tx/signing/v1beta1/signing.proto index 6a49860c2d54..eac61de6934e 100644 --- a/proto/cosmos/tx/signing/v1beta1/signing.proto +++ b/proto/cosmos/tx/signing/v1beta1/signing.proto @@ -3,6 +3,8 @@ package cosmos.tx.signing.v1beta1; import "cosmos/crypto/multisig/v1beta1/multisig.proto"; import "google/protobuf/any.proto"; +import "cosmos/base/v1beta1/coin.proto"; +import "cosmos_proto/cosmos.proto"; option go_package = "github.com/cosmos/cosmos-sdk/types/tx/signing"; @@ -56,7 +58,7 @@ message SignatureDescriptor { // sequence is the sequence of the account, which describes the // number of committed transactions signed by a given address. It is used to prevent // replay attacks. - uint64 sequence = 3; + uint64 sequence = 3 [(cosmos_proto.scalar) = "cosmos.Int"]; // Data represents signature data message Data { diff --git a/proto/cosmos/tx/v1beta1/tx.proto b/proto/cosmos/tx/v1beta1/tx.proto index 921dae7ebc59..547c91028e90 100644 --- a/proto/cosmos/tx/v1beta1/tx.proto +++ b/proto/cosmos/tx/v1beta1/tx.proto @@ -6,6 +6,7 @@ import "cosmos/crypto/multisig/v1beta1/multisig.proto"; import "cosmos/base/v1beta1/coin.proto"; import "cosmos/tx/signing/v1beta1/signing.proto"; import "google/protobuf/any.proto"; +import "cosmos_proto/cosmos.proto"; option go_package = "github.com/cosmos/cosmos-sdk/types/tx"; @@ -60,7 +61,7 @@ message SignDoc { string chain_id = 3; // account_number is the account number of the account in state - uint64 account_number = 4; + uint64 account_number = 4 [(cosmos_proto.scalar) = "cosmos.Int"]; } // SignDocJSON is the type used for generating sign bytes for @@ -81,7 +82,7 @@ message SignDocJSON { string chain_id = 3; // account_number is the account number of the signing account in state - uint64 account_number = 4; + uint64 account_number = 4 [(cosmos_proto.scalar) = "cosmos.Int"]; // sign_doc_sha256_hash is the SHA-256 hash of SignDoc. It is included here to // reduce the malleability attack surface of SIGN_MODE_DIRECT_JSON vs @@ -112,10 +113,10 @@ message SignDocDirectAux { string chain_id = 3; // account_number is the account number of the account in state. - uint64 account_number = 4; + uint64 account_number = 4 [(cosmos_proto.scalar) = "cosmos.Int"]; // sequence is the sequence number of the signing account. - uint64 sequence = 5; + uint64 sequence = 5 [(cosmos_proto.scalar) = "cosmos.Int"]; // Tip is the optional tip used for meta-transactions. It should be left // empty if the signer is not the tipper for this transaction. @@ -187,7 +188,7 @@ message SignerInfo { // sequence is the sequence of the account, which describes the // number of committed transactions signed by a given address. It is used to // prevent replay attacks. - uint64 sequence = 3; + uint64 sequence = 3 [(cosmos_proto.scalar) = "cosmos.Int"]; } // ModeInfo describes the signing mode of a single or nested multisig signer. @@ -231,17 +232,17 @@ message Fee { // gas_limit is the maximum gas that can be used in transaction processing // before an out of gas error occurs - uint64 gas_limit = 2; + uint64 gas_limit = 2 [(cosmos_proto.scalar) = "cosmos.Int"]; // if unset, the first signer is responsible for paying the fees. If set, the specified account must pay the fees. // the payer must be a tx signer (and thus have signed this field in AuthInfo). // setting this field does *not* change the ordering of required signers for the transaction. - string payer = 3; + string payer = 3 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // if set, the fee payer (either the first signer or the value of the payer field) requests that a fee grant be used // to pay fees instead of the fee payer's own balance. If an appropriate fee grant does not exist or the chain does // not support fee grants, this will fail - string granter = 4; + string granter = 4 [(cosmos_proto.scalar) = "cosmos.AddressString"]; } // Tip is the tip used for meta-transactions. @@ -249,5 +250,5 @@ message Tip { // amount is the amount of the tip repeated cosmos.base.v1beta1.Coin amount = 1; // tipper is the address of the account paying for the tip - string tipper = 2; + string tipper = 2 [(cosmos_proto.scalar) = "cosmos.AddressString"]; } diff --git a/proto/cosmos/upgrade/v1beta1/query.proto b/proto/cosmos/upgrade/v1beta1/query.proto index 0703ef347b83..b48d02801d68 100644 --- a/proto/cosmos/upgrade/v1beta1/query.proto +++ b/proto/cosmos/upgrade/v1beta1/query.proto @@ -4,6 +4,7 @@ package cosmos.upgrade.v1beta1; import "google/protobuf/any.proto"; import "google/api/annotations.proto"; import "cosmos/upgrade/v1beta1/upgrade.proto"; +import "cosmos_proto/cosmos.proto"; option go_package = "github.com/cosmos/cosmos-sdk/x/upgrade/types"; @@ -58,7 +59,7 @@ message QueryAppliedPlanRequest { // method. message QueryAppliedPlanResponse { // height is the block height at which the plan was applied. - int64 height = 1; + int64 height = 1 [(cosmos_proto.scalar) = "cosmos.Int"]; } // QueryUpgradedConsensusStateRequest is the request type for the Query/UpgradedConsensusState @@ -68,7 +69,7 @@ message QueryUpgradedConsensusStateRequest { // last height of the current chain must be sent in request // as this is the height under which next consensus state is stored - int64 last_height = 1; + int64 last_height = 1 [(cosmos_proto.scalar) = "cosmos.Int"]; } // QueryUpgradedConsensusStateResponse is the response type for the Query/UpgradedConsensusState diff --git a/proto/cosmos/upgrade/v1beta1/upgrade.proto b/proto/cosmos/upgrade/v1beta1/upgrade.proto index 4e1d69aaaaca..378010aa3ad2 100644 --- a/proto/cosmos/upgrade/v1beta1/upgrade.proto +++ b/proto/cosmos/upgrade/v1beta1/upgrade.proto @@ -4,6 +4,7 @@ package cosmos.upgrade.v1beta1; import "google/protobuf/any.proto"; import "gogoproto/gogo.proto"; import "google/protobuf/timestamp.proto"; +import "cosmos_proto/cosmos.proto"; option go_package = "github.com/cosmos/cosmos-sdk/x/upgrade/types"; option (gogoproto.goproto_getters_all) = false; @@ -29,7 +30,7 @@ message Plan { // The height at which the upgrade must be performed. // Only used if Time is not set. - int64 height = 3; + int64 height = 3 [(cosmos_proto.scalar) = "cosmos.Int"]; // Any application specific upgrade info to be included on-chain // such as a git commit that validators could automatically upgrade to @@ -72,5 +73,5 @@ message ModuleVersion { string name = 1; // consensus version of the app module - uint64 version = 2; + uint64 version = 2 [(cosmos_proto.scalar) = "cosmos.Int"]; } diff --git a/proto/cosmos/vesting/v1beta1/tx.proto b/proto/cosmos/vesting/v1beta1/tx.proto index c49be802a76e..0132902eee8a 100644 --- a/proto/cosmos/vesting/v1beta1/tx.proto +++ b/proto/cosmos/vesting/v1beta1/tx.proto @@ -3,6 +3,7 @@ package cosmos.vesting.v1beta1; import "gogoproto/gogo.proto"; import "cosmos/base/v1beta1/coin.proto"; +import "cosmos_proto/cosmos.proto"; option go_package = "github.com/cosmos/cosmos-sdk/x/auth/vesting/types"; @@ -18,12 +19,12 @@ service Msg { message MsgCreateVestingAccount { option (gogoproto.equal) = true; - string from_address = 1 [(gogoproto.moretags) = "yaml:\"from_address\""]; - string to_address = 2 [(gogoproto.moretags) = "yaml:\"to_address\""]; + string from_address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString", (gogoproto.moretags) = "yaml:\"from_address\""]; + string to_address = 2 [(cosmos_proto.scalar) = "cosmos.AddressString", (gogoproto.moretags) = "yaml:\"to_address\""]; repeated cosmos.base.v1beta1.Coin amount = 3 [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"]; - int64 end_time = 4 [(gogoproto.moretags) = "yaml:\"end_time\""]; + int64 end_time = 4 [(cosmos_proto.scalar) = "cosmos.Int", (gogoproto.moretags) = "yaml:\"end_time\""]; bool delayed = 5; } diff --git a/proto/cosmos/vesting/v1beta1/vesting.proto b/proto/cosmos/vesting/v1beta1/vesting.proto index 26e786831e4c..e221a3b75af6 100644 --- a/proto/cosmos/vesting/v1beta1/vesting.proto +++ b/proto/cosmos/vesting/v1beta1/vesting.proto @@ -4,6 +4,7 @@ package cosmos.vesting.v1beta1; import "gogoproto/gogo.proto"; import "cosmos/base/v1beta1/coin.proto"; import "cosmos/auth/v1beta1/auth.proto"; +import "cosmos_proto/cosmos.proto"; option go_package = "github.com/cosmos/cosmos-sdk/x/auth/vesting/types"; @@ -29,7 +30,7 @@ message BaseVestingAccount { (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins", (gogoproto.moretags) = "yaml:\"delegated_vesting\"" ]; - int64 end_time = 5 [(gogoproto.moretags) = "yaml:\"end_time\""]; + int64 end_time = 5 [(cosmos_proto.scalar) = "cosmos.Int", (gogoproto.moretags) = "yaml:\"end_time\""]; } // ContinuousVestingAccount implements the VestingAccount interface. It @@ -39,7 +40,7 @@ message ContinuousVestingAccount { option (gogoproto.goproto_stringer) = false; BaseVestingAccount base_vesting_account = 1 [(gogoproto.embed) = true]; - int64 start_time = 2 [(gogoproto.moretags) = "yaml:\"start_time\""]; + int64 start_time = 2 [(cosmos_proto.scalar) = "cosmos.Int", (gogoproto.moretags) = "yaml:\"start_time\""]; } // DelayedVestingAccount implements the VestingAccount interface. It vests all @@ -56,7 +57,7 @@ message DelayedVestingAccount { message Period { option (gogoproto.goproto_stringer) = false; - int64 length = 1; + int64 length = 1 [(cosmos_proto.scalar) = "cosmos.Int"], repeated cosmos.base.v1beta1.Coin amount = 2 [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"]; } @@ -68,7 +69,7 @@ message PeriodicVestingAccount { option (gogoproto.goproto_stringer) = false; BaseVestingAccount base_vesting_account = 1 [(gogoproto.embed) = true]; - int64 start_time = 2 [(gogoproto.moretags) = "yaml:\"start_time\""]; + int64 start_time = 2 [(cosmos_proto.scalar) = "cosmos.Int", (gogoproto.moretags) = "yaml:\"start_time\""]; repeated Period vesting_periods = 3 [(gogoproto.moretags) = "yaml:\"vesting_periods\"", (gogoproto.nullable) = false]; } From 711d58192e3b7dc9db1416e8c647fc24e1b5ab16 Mon Sep 17 00:00:00 2001 From: Andrei Ivasko Date: Fri, 13 Aug 2021 18:43:36 +0300 Subject: [PATCH 02/34] fix auth.proto --- proto/cosmos/auth/v1beta1/auth.proto | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/proto/cosmos/auth/v1beta1/auth.proto b/proto/cosmos/auth/v1beta1/auth.proto index 40f9978959fc..50f8fc23b9ae 100644 --- a/proto/cosmos/auth/v1beta1/auth.proto +++ b/proto/cosmos/auth/v1beta1/auth.proto @@ -20,7 +20,7 @@ message BaseAccount { string address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; google.protobuf.Any pub_key = 2 [(gogoproto.jsontag) = "public_key,omitempty", (gogoproto.moretags) = "yaml:\"public_key\""]; - uint64 account_number = 3 [(gogoproto.moretags) = "yaml:\"account_number\""], [(cosmos_proto.scalar) = "cosmos.Int"]; + uint64 account_number = 3 [(gogoproto.moretags) = "yaml:\"account_number\""], (cosmos_proto.scalar) = "cosmos.Int"]; uint64 sequence = 4 [(cosmos_proto.scalar) = "cosmos.Int"]; } @@ -40,11 +40,11 @@ message Params { option (gogoproto.equal) = true; option (gogoproto.goproto_stringer) = false; - uint64 max_memo_characters = 1 [(cosmos_proto.scalar) = "cosmos.Int"], [(gogoproto.moretags) = "yaml:\"max_memo_characters\""]; - uint64 tx_sig_limit = 2 [(cosmos_proto.scalar) = "cosmos.Int"], [(gogoproto.moretags) = "yaml:\"tx_sig_limit\""]; - uint64 tx_size_cost_per_byte = 3 [(cosmos_proto.scalar) = "cosmos.Int"], [(gogoproto.moretags) = "yaml:\"tx_size_cost_per_byte\""]; + uint64 max_memo_characters = 1 [(cosmos_proto.scalar) = "cosmos.Int"], (gogoproto.moretags) = "yaml:\"max_memo_characters\""]; + uint64 tx_sig_limit = 2 [(cosmos_proto.scalar) = "cosmos.Int"], (gogoproto.moretags) = "yaml:\"tx_sig_limit\""]; + uint64 tx_size_cost_per_byte = 3 [(cosmos_proto.scalar) = "cosmos.Int"], (gogoproto.moretags) = "yaml:\"tx_size_cost_per_byte\""]; uint64 sig_verify_cost_ed25519 = 4 - [(cosmos_proto.scalar) = "cosmos.Int"], [(gogoproto.customname) = "SigVerifyCostED25519", (gogoproto.moretags) = "yaml:\"sig_verify_cost_ed25519\""]; + [(cosmos_proto.scalar) = "cosmos.Int"], (gogoproto.customname) = "SigVerifyCostED25519", (gogoproto.moretags) = "yaml:\"sig_verify_cost_ed25519\""]; uint64 sig_verify_cost_secp256k1 = 5 - [(cosmos_proto.scalar) = "cosmos.Int"], [(gogoproto.customname) = "SigVerifyCostSecp256k1", (gogoproto.moretags) = "yaml:\"sig_verify_cost_secp256k1\""]; + [(cosmos_proto.scalar) = "cosmos.Int"], (gogoproto.customname) = "SigVerifyCostSecp256k1", (gogoproto.moretags) = "yaml:\"sig_verify_cost_secp256k1\""]; } From 6c827893cd69e6d2bff6d23f1b7e06954fc13569 Mon Sep 17 00:00:00 2001 From: Andrei Ivasko Date: Fri, 13 Aug 2021 18:46:02 +0300 Subject: [PATCH 03/34] fix event.proto --- proto/cosmos/authz/v1beta1/event.proto | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/proto/cosmos/authz/v1beta1/event.proto b/proto/cosmos/authz/v1beta1/event.proto index 1177dba68e6b..f763854b38d6 100644 --- a/proto/cosmos/authz/v1beta1/event.proto +++ b/proto/cosmos/authz/v1beta1/event.proto @@ -1,8 +1,7 @@ syntax = "proto3"; package cosmos.authz.v1beta1; - - +import "cosmos_proto/cosmos.proto"; option go_package = "github.com/cosmos/cosmos-sdk/x/authz"; From 2a846b991cde050a4404c17039b74fd0abbac27e Mon Sep 17 00:00:00 2001 From: Andrei Ivasko Date: Fri, 13 Aug 2021 18:53:28 +0300 Subject: [PATCH 04/34] get rid of TODO --- proto/cosmos/base/v1beta1/coin.proto | 1 - proto/cosmos/capability/v1beta1/capability.proto | 1 - proto/cosmos/distribution/v1beta1/genesis.proto | 1 - 3 files changed, 3 deletions(-) diff --git a/proto/cosmos/base/v1beta1/coin.proto b/proto/cosmos/base/v1beta1/coin.proto index 894d1178d67c..fab75284b7f6 100644 --- a/proto/cosmos/base/v1beta1/coin.proto +++ b/proto/cosmos/base/v1beta1/coin.proto @@ -36,6 +36,5 @@ message IntProto { // DecProto defines a Protobuf wrapper around a Dec object. message DecProto { - // TODO should I put [(cosmos_proto.scalar) = "cosmos.Dec"] here? string dec = 1 [(gogoproto.customtype) = "Dec", (gogoproto.nullable) = false]; } diff --git a/proto/cosmos/capability/v1beta1/capability.proto b/proto/cosmos/capability/v1beta1/capability.proto index d1fe901e9513..115b4bea36d5 100644 --- a/proto/cosmos/capability/v1beta1/capability.proto +++ b/proto/cosmos/capability/v1beta1/capability.proto @@ -9,7 +9,6 @@ import "gogoproto/gogo.proto"; // provided to a Capability must be globally unique. message Capability { option (gogoproto.goproto_stringer) = false; - // TODO should I put (cosmos_proto.scalar) = "cosmos.Int" on uint types? uint64 index = 1 [(cosmos_proto.scalar) = "cosmos.Int", (gogoproto.moretags) = "yaml:\"index\""]; } diff --git a/proto/cosmos/distribution/v1beta1/genesis.proto b/proto/cosmos/distribution/v1beta1/genesis.proto index 003ed8449caf..bc17189e5372 100644 --- a/proto/cosmos/distribution/v1beta1/genesis.proto +++ b/proto/cosmos/distribution/v1beta1/genesis.proto @@ -128,7 +128,6 @@ message GenesisState { [(gogoproto.nullable) = false, (gogoproto.moretags) = "yaml:\"delegator_withdraw_infos\""]; // fee_pool defines the previous proposer at genesis. - // TODO to make sure it's indeed address string previous_proposer = 4 [(cosmos_proto.scalar) = "cosmos.AddressString", (gogoproto.moretags) = "yaml:\"previous_proposer\""]; // fee_pool defines the outstanding rewards of all validators at genesis. From e833de086ab186e0cc6c1d721055681200a9c32d Mon Sep 17 00:00:00 2001 From: Andrei Ivasko Date: Fri, 13 Aug 2021 19:14:27 +0300 Subject: [PATCH 05/34] cleanup --- proto/cosmos/gov/v1beta1/gov.proto | 2 +- proto/cosmos/staking/v1beta1/authz.proto | 1 - proto/cosmos/staking/v1beta1/staking.proto | 1 - proto/cosmos/tx/signing/v1beta1/signing.proto | 1 - 4 files changed, 1 insertion(+), 4 deletions(-) diff --git a/proto/cosmos/gov/v1beta1/gov.proto b/proto/cosmos/gov/v1beta1/gov.proto index 3ee6e7534975..ad10da7ac7d5 100644 --- a/proto/cosmos/gov/v1beta1/gov.proto +++ b/proto/cosmos/gov/v1beta1/gov.proto @@ -131,7 +131,7 @@ message Vote { option (gogoproto.equal) = false; uint64 proposal_id = 1 [(cosmos_proto.scalar) = "cosmos.Int", (gogoproto.moretags) = "yaml:\"proposal_id\""]; - string voter = 2 (cosmos_proto.scalar) = "cosmos.AddressString"]; + string voter = 2 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // Deprecated: Prefer to use `options` instead. This field is set in queries // if and only if `len(options) == 1` and that option has weight 1. In all // other cases, this field will default to VOTE_OPTION_UNSPECIFIED. diff --git a/proto/cosmos/staking/v1beta1/authz.proto b/proto/cosmos/staking/v1beta1/authz.proto index 7adabfb5eb55..9d3c09dce35c 100644 --- a/proto/cosmos/staking/v1beta1/authz.proto +++ b/proto/cosmos/staking/v1beta1/authz.proto @@ -24,7 +24,6 @@ message StakeAuthorization { } // Validators defines list of validator addresses. message Validators { - // TODO how to deal with repeated here? repeated string address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; } // authorization_type defines one of AuthorizationType. diff --git a/proto/cosmos/staking/v1beta1/staking.proto b/proto/cosmos/staking/v1beta1/staking.proto index 6cbba9b50613..5306e4f004d4 100644 --- a/proto/cosmos/staking/v1beta1/staking.proto +++ b/proto/cosmos/staking/v1beta1/staking.proto @@ -138,7 +138,6 @@ message ValAddresses { option (gogoproto.goproto_stringer) = false; option (gogoproto.stringer) = true; - // TODO should I add AddressString annotation for repeated string? repeated string addresses = 1; } diff --git a/proto/cosmos/tx/signing/v1beta1/signing.proto b/proto/cosmos/tx/signing/v1beta1/signing.proto index eac61de6934e..39d77c47b687 100644 --- a/proto/cosmos/tx/signing/v1beta1/signing.proto +++ b/proto/cosmos/tx/signing/v1beta1/signing.proto @@ -3,7 +3,6 @@ package cosmos.tx.signing.v1beta1; import "cosmos/crypto/multisig/v1beta1/multisig.proto"; import "google/protobuf/any.proto"; -import "cosmos/base/v1beta1/coin.proto"; import "cosmos_proto/cosmos.proto"; option go_package = "github.com/cosmos/cosmos-sdk/types/tx/signing"; From 22e1baf42241569444a990e14c8836d00bdadcf5 Mon Sep 17 00:00:00 2001 From: Andrei Ivasko Date: Mon, 16 Aug 2021 14:11:46 +0300 Subject: [PATCH 06/34] add scalar field to FieldOptions --- third_party/proto/cosmos_proto/cosmos.proto | 2 ++ 1 file changed, 2 insertions(+) diff --git a/third_party/proto/cosmos_proto/cosmos.proto b/third_party/proto/cosmos_proto/cosmos.proto index 167b170757bc..c017141aa70c 100644 --- a/third_party/proto/cosmos_proto/cosmos.proto +++ b/third_party/proto/cosmos_proto/cosmos.proto @@ -13,4 +13,6 @@ extend google.protobuf.MessageOptions { extend google.protobuf.FieldOptions { string accepts_interface = 93001; + + string scalar = 93002; } From 9264d4f70d29a8a79fd91b1c23ffdcdb63390ed6 Mon Sep 17 00:00:00 2001 From: Andrei Ivasko Date: Mon, 16 Aug 2021 16:56:42 +0300 Subject: [PATCH 07/34] update --- proto/cosmos/auth/v1beta1/auth.proto | 14 ++++++------ proto/cosmos/authz/v1beta1/tx.proto | 4 ++-- proto/cosmos/bank/v1beta1/query.proto | 2 +- proto/cosmos/base/abci/v1beta1/abci.proto | 10 ++++----- .../base/query/v1beta1/pagination.proto | 6 ++--- .../base/snapshots/v1beta1/snapshot.proto | 6 ++--- .../base/store/v1beta1/commit_info.proto | 6 ++--- .../cosmos/base/store/v1beta1/snapshot.proto | 4 ++-- .../base/tendermint/v1beta1/query.proto | 12 +++++----- proto/cosmos/base/v1beta1/coin.proto | 7 +++--- .../capability/v1beta1/capability.proto | 2 +- proto/cosmos/capability/v1beta1/genesis.proto | 5 ++--- proto/cosmos/crypto/multisig/keys.proto | 3 +-- .../crypto/multisig/v1beta1/multisig.proto | 3 +-- .../distribution/v1beta1/distribution.proto | 9 ++++++-- .../cosmos/distribution/v1beta1/genesis.proto | 6 ++--- proto/cosmos/distribution/v1beta1/query.proto | 4 ++-- proto/cosmos/evidence/v1beta1/evidence.proto | 4 ++-- proto/cosmos/gov/v1beta1/genesis.proto | 3 +-- proto/cosmos/gov/v1beta1/gov.proto | 15 +++++++------ proto/cosmos/gov/v1beta1/query.proto | 6 ++--- proto/cosmos/gov/v1beta1/tx.proto | 8 +++---- proto/cosmos/group/v1beta1/query.proto | 14 ++++++------ proto/cosmos/group/v1beta1/tx.proto | 16 +++++++------- proto/cosmos/group/v1beta1/types.proto | 22 ++++++++++--------- proto/cosmos/mint/v1beta1/mint.proto | 14 +++++++++--- proto/cosmos/slashing/v1beta1/genesis.proto | 2 +- proto/cosmos/slashing/v1beta1/slashing.proto | 8 +++---- proto/cosmos/staking/v1beta1/genesis.proto | 2 +- proto/cosmos/staking/v1beta1/query.proto | 2 +- proto/cosmos/staking/v1beta1/staking.proto | 8 ++++--- proto/cosmos/staking/v1beta1/tx.proto | 3 +++ proto/cosmos/tx/signing/v1beta1/signing.proto | 2 +- proto/cosmos/tx/v1beta1/tx.proto | 10 ++++----- proto/cosmos/upgrade/v1beta1/query.proto | 4 ++-- proto/cosmos/upgrade/v1beta1/upgrade.proto | 5 ++--- proto/cosmos/vesting/v1beta1/tx.proto | 2 +- proto/cosmos/vesting/v1beta1/vesting.proto | 8 +++---- 38 files changed, 139 insertions(+), 122 deletions(-) diff --git a/proto/cosmos/auth/v1beta1/auth.proto b/proto/cosmos/auth/v1beta1/auth.proto index 50f8fc23b9ae..2c4bba017c62 100644 --- a/proto/cosmos/auth/v1beta1/auth.proto +++ b/proto/cosmos/auth/v1beta1/auth.proto @@ -20,8 +20,8 @@ message BaseAccount { string address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; google.protobuf.Any pub_key = 2 [(gogoproto.jsontag) = "public_key,omitempty", (gogoproto.moretags) = "yaml:\"public_key\""]; - uint64 account_number = 3 [(gogoproto.moretags) = "yaml:\"account_number\""], (cosmos_proto.scalar) = "cosmos.Int"]; - uint64 sequence = 4 [(cosmos_proto.scalar) = "cosmos.Int"]; + uint64 account_number = 3 [(gogoproto.moretags) = "yaml:\"account_number\""]; + uint64 sequence = 4; } // ModuleAccount defines an account for modules that holds coins on a pool. @@ -40,11 +40,11 @@ message Params { option (gogoproto.equal) = true; option (gogoproto.goproto_stringer) = false; - uint64 max_memo_characters = 1 [(cosmos_proto.scalar) = "cosmos.Int"], (gogoproto.moretags) = "yaml:\"max_memo_characters\""]; - uint64 tx_sig_limit = 2 [(cosmos_proto.scalar) = "cosmos.Int"], (gogoproto.moretags) = "yaml:\"tx_sig_limit\""]; - uint64 tx_size_cost_per_byte = 3 [(cosmos_proto.scalar) = "cosmos.Int"], (gogoproto.moretags) = "yaml:\"tx_size_cost_per_byte\""]; + uint64 max_memo_characters = 1 [(gogoproto.moretags) = "yaml:\"max_memo_characters\""]; + uint64 tx_sig_limit = 2 [(gogoproto.moretags) = "yaml:\"tx_sig_limit\""]; + uint64 tx_size_cost_per_byte = 3 [(gogoproto.moretags) = "yaml:\"tx_size_cost_per_byte\""]; uint64 sig_verify_cost_ed25519 = 4 - [(cosmos_proto.scalar) = "cosmos.Int"], (gogoproto.customname) = "SigVerifyCostED25519", (gogoproto.moretags) = "yaml:\"sig_verify_cost_ed25519\""]; + [(gogoproto.customname) = "SigVerifyCostED25519", (gogoproto.moretags) = "yaml:\"sig_verify_cost_ed25519\""]; uint64 sig_verify_cost_secp256k1 = 5 - [(cosmos_proto.scalar) = "cosmos.Int"], (gogoproto.customname) = "SigVerifyCostSecp256k1", (gogoproto.moretags) = "yaml:\"sig_verify_cost_secp256k1\""]; + [(gogoproto.customname) = "SigVerifyCostSecp256k1", (gogoproto.moretags) = "yaml:\"sig_verify_cost_secp256k1\""]; } diff --git a/proto/cosmos/authz/v1beta1/tx.proto b/proto/cosmos/authz/v1beta1/tx.proto index 252ac939275d..65c0e45caeed 100644 --- a/proto/cosmos/authz/v1beta1/tx.proto +++ b/proto/cosmos/authz/v1beta1/tx.proto @@ -60,8 +60,8 @@ message MsgGrantResponse {} // MsgRevoke revokes any authorization with the provided sdk.Msg type on the // granter's account with that has been granted to the grantee. message MsgRevoke { - string granter = 1; - string grantee = 2; + string granter = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; + string grantee = 2 [(cosmos_proto.scalar) = "cosmos.AddressString"];; string msg_type_url = 3; } diff --git a/proto/cosmos/bank/v1beta1/query.proto b/proto/cosmos/bank/v1beta1/query.proto index 4dc5522d5f5b..f42c93a758ef 100644 --- a/proto/cosmos/bank/v1beta1/query.proto +++ b/proto/cosmos/bank/v1beta1/query.proto @@ -182,7 +182,7 @@ message QueryDenomOwnersRequest { // balance of the denominated token. message DenomOwner { // address defines the address that owns a particular denomination. - string address = 1; + string address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"];; // balance is the balance of the denominated coin for an account. cosmos.base.v1beta1.Coin balance = 2 [(gogoproto.nullable) = false]; diff --git a/proto/cosmos/base/abci/v1beta1/abci.proto b/proto/cosmos/base/abci/v1beta1/abci.proto index ff9c184225e8..189b79658898 100644 --- a/proto/cosmos/base/abci/v1beta1/abci.proto +++ b/proto/cosmos/base/abci/v1beta1/abci.proto @@ -124,15 +124,15 @@ message SearchTxsResult { option (gogoproto.stringer) = true; // Count of all txs - uint64 total_count = 1 [(cosmos_proto.scalar) = "cosmos.Int", (gogoproto.moretags) = "yaml:\"total_count\"", (gogoproto.jsontag) = "total_count"]; + uint64 total_count = 1 [(gogoproto.moretags) = "yaml:\"total_count\"", (gogoproto.jsontag) = "total_count"]; // Count of txs in current page - uint64 count = 2 [(cosmos_proto.scalar) = "cosmos.Int"]; + uint64 count = 2 ; // Index of current page, start from 1 - uint64 page_number = 3 [(cosmos_proto.scalar) = "cosmos.Int", (gogoproto.moretags) = "yaml:\"page_number\"", (gogoproto.jsontag) = "page_number"]; + uint64 page_number = 3 [(gogoproto.moretags) = "yaml:\"page_number\"", (gogoproto.jsontag) = "page_number"]; // Count of total pages - uint64 page_total = 4 [(cosmos_proto.scalar) = "cosmos.Int", (gogoproto.moretags) = "yaml:\"page_total\"", (gogoproto.jsontag) = "page_total"]; + uint64 page_total = 4 [(gogoproto.moretags) = "yaml:\"page_total\"", (gogoproto.jsontag) = "page_total"]; // Max count txs per page - uint64 limit = 5 [(cosmos_proto.scalar) = "cosmos.Int"]; + uint64 limit = 5; // List of txs in current page repeated TxResponse txs = 6; } diff --git a/proto/cosmos/base/query/v1beta1/pagination.proto b/proto/cosmos/base/query/v1beta1/pagination.proto index 227607d2097e..619586a2cfff 100644 --- a/proto/cosmos/base/query/v1beta1/pagination.proto +++ b/proto/cosmos/base/query/v1beta1/pagination.proto @@ -21,11 +21,11 @@ message PageRequest { // offset is a numeric offset that can be used when key is unavailable. // It is less efficient than using key. Only one of offset or key should // be set. - uint64 offset = 2 [(cosmos_proto.scalar) = "cosmos.Int"]; + uint64 offset = 2; // limit is the total number of results to be returned in the result page. // If left empty it will default to a value to be set by each app. - uint64 limit = 3 [(cosmos_proto.scalar) = "cosmos.Int"]; + uint64 limit = 3; // count_total is set to true to indicate that the result set should include // a count of the total number of items available for pagination in UIs. @@ -51,5 +51,5 @@ message PageResponse { // total is total number of results available if PageRequest.count_total // was set, its value is undefined otherwise - uint64 total = 2 [(cosmos_proto.scalar) = "cosmos.Int"]; + uint64 total = 2; } diff --git a/proto/cosmos/base/snapshots/v1beta1/snapshot.proto b/proto/cosmos/base/snapshots/v1beta1/snapshot.proto index 0dada57540e1..3a3ab3f88ffc 100644 --- a/proto/cosmos/base/snapshots/v1beta1/snapshot.proto +++ b/proto/cosmos/base/snapshots/v1beta1/snapshot.proto @@ -8,9 +8,9 @@ option go_package = "github.com/cosmos/cosmos-sdk/snapshots/types"; // Snapshot contains Tendermint state sync snapshot info. message Snapshot { - uint64 height = 1 [(cosmos_proto.scalar) = "cosmos.Int"]; - uint32 format = 2 [(cosmos_proto.scalar) = "cosmos.Int"]; - uint32 chunks = 3 [(cosmos_proto.scalar) = "cosmos.Int"]; + uint64 height = 1; + uint32 format = 2; + uint32 chunks = 3; bytes hash = 4; Metadata metadata = 5 [(gogoproto.nullable) = false]; } diff --git a/proto/cosmos/base/store/v1beta1/commit_info.proto b/proto/cosmos/base/store/v1beta1/commit_info.proto index d05985b31507..d683101aa4e7 100644 --- a/proto/cosmos/base/store/v1beta1/commit_info.proto +++ b/proto/cosmos/base/store/v1beta1/commit_info.proto @@ -9,8 +9,8 @@ option go_package = "github.com/cosmos/cosmos-sdk/store/types"; // CommitInfo defines commit information used by the multi-store when committing // a version/height. message CommitInfo { - int64 version = 1 [(cosmos_proto.scalar) = "cosmos.Int"]; - repeated StoreInfo store_infos = 2 [(gogoproto.nullable) = false]; + int64 version = 1; + repeated StoreInfo store_infos = 2; } // StoreInfo defines store-specific commit information. It contains a reference @@ -25,6 +25,6 @@ message StoreInfo { message CommitID { option (gogoproto.goproto_stringer) = false; - int64 version = 1 [(cosmos_proto.scalar) = "cosmos.Int"]; + int64 version = 1; bytes hash = 2; } diff --git a/proto/cosmos/base/store/v1beta1/snapshot.proto b/proto/cosmos/base/store/v1beta1/snapshot.proto index 9e379f7fc975..9bed8e95b60b 100644 --- a/proto/cosmos/base/store/v1beta1/snapshot.proto +++ b/proto/cosmos/base/store/v1beta1/snapshot.proto @@ -24,6 +24,6 @@ message SnapshotStoreItem { message SnapshotIAVLItem { bytes key = 1; bytes value = 2; - int64 version = 3 [(cosmos_proto.scalar) = "cosmos.Int"]; - int32 height = 4 [(cosmos_proto.scalar) = "cosmos.Int"]; + int64 version = 3; + int32 height = 4; } \ No newline at end of file diff --git a/proto/cosmos/base/tendermint/v1beta1/query.proto b/proto/cosmos/base/tendermint/v1beta1/query.proto index 3fad9f995b5e..631b1aafd0d4 100644 --- a/proto/cosmos/base/tendermint/v1beta1/query.proto +++ b/proto/cosmos/base/tendermint/v1beta1/query.proto @@ -43,14 +43,14 @@ service Service { // GetValidatorSetByHeightRequest is the request type for the Query/GetValidatorSetByHeight RPC method. message GetValidatorSetByHeightRequest { - int64 height = 1 [(cosmos_proto.scalar) = "cosmos.Int"]; + int64 height = 1; // pagination defines an pagination for the request. cosmos.base.query.v1beta1.PageRequest pagination = 2; } // GetValidatorSetByHeightResponse is the response type for the Query/GetValidatorSetByHeight RPC method. message GetValidatorSetByHeightResponse { - int64 block_height = 1 [(cosmos_proto.scalar) = "cosmos.Int"]; + int64 block_height = 1; repeated Validator validators = 2; // pagination defines an pagination for the response. cosmos.base.query.v1beta1.PageResponse pagination = 3; @@ -64,7 +64,7 @@ message GetLatestValidatorSetRequest { // GetLatestValidatorSetResponse is the response type for the Query/GetValidatorSetByHeight RPC method. message GetLatestValidatorSetResponse { - int64 block_height = 1 [(cosmos_proto.scalar) = "cosmos.Int"]; + int64 block_height = 1; repeated Validator validators = 2; // pagination defines an pagination for the response. cosmos.base.query.v1beta1.PageResponse pagination = 3; @@ -74,13 +74,13 @@ message GetLatestValidatorSetResponse { message Validator { string address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; google.protobuf.Any pub_key = 2; - int64 voting_power = 3 [(cosmos_proto.scalar) = "cosmos.Int"]; - int64 proposer_priority = 4 [(cosmos_proto.scalar) = "cosmos.Int"]; + int64 voting_power = 3; + int64 proposer_priority = 4; } // GetBlockByHeightRequest is the request type for the Query/GetBlockByHeight RPC method. message GetBlockByHeightRequest { - int64 height = 1 [(cosmos_proto.scalar) = "cosmos.Int"]; + int64 height = 1; } // GetBlockByHeightResponse is the response type for the Query/GetBlockByHeight RPC method. diff --git a/proto/cosmos/base/v1beta1/coin.proto b/proto/cosmos/base/v1beta1/coin.proto index fab75284b7f6..a9d561229af7 100644 --- a/proto/cosmos/base/v1beta1/coin.proto +++ b/proto/cosmos/base/v1beta1/coin.proto @@ -2,6 +2,7 @@ syntax = "proto3"; package cosmos.base.v1beta1; import "gogoproto/gogo.proto"; +import "cosmos_proto/cosmos.proto"; option go_package = "github.com/cosmos/cosmos-sdk/types"; option (gogoproto.goproto_stringer_all) = false; @@ -26,15 +27,15 @@ message DecCoin { option (gogoproto.equal) = true; string denom = 1; - string amount = 2 [(gogoproto.customtype) = "Dec", (gogoproto.nullable) = false]; + string amount = 2 [(cosmos_proto.scalar) = "cosmos.Dec", (gogoproto.customtype) = "Dec", (gogoproto.nullable) = false]; } // IntProto defines a Protobuf wrapper around an Int object. message IntProto { - string int = 1 [(gogoproto.customtype) = "Int", (gogoproto.nullable) = false]; + string int = 1 [(cosmos_proto.scalar) = "cosmos.Int", (gogoproto.customtype) = "Int", (gogoproto.nullable) = false]; } // DecProto defines a Protobuf wrapper around a Dec object. message DecProto { - string dec = 1 [(gogoproto.customtype) = "Dec", (gogoproto.nullable) = false]; + string dec = 1 [(cosmos_proto.scalar) = "cosmos.Dec", (gogoproto.customtype) = "Dec", (gogoproto.nullable) = false]; } diff --git a/proto/cosmos/capability/v1beta1/capability.proto b/proto/cosmos/capability/v1beta1/capability.proto index 115b4bea36d5..ea5d03f7a791 100644 --- a/proto/cosmos/capability/v1beta1/capability.proto +++ b/proto/cosmos/capability/v1beta1/capability.proto @@ -9,7 +9,7 @@ import "gogoproto/gogo.proto"; // provided to a Capability must be globally unique. message Capability { option (gogoproto.goproto_stringer) = false; - uint64 index = 1 [(cosmos_proto.scalar) = "cosmos.Int", (gogoproto.moretags) = "yaml:\"index\""]; + uint64 index = 1 [(gogoproto.moretags) = "yaml:\"index\""]; } // Owner defines a single capability owner. An owner is defined by the name of diff --git a/proto/cosmos/capability/v1beta1/genesis.proto b/proto/cosmos/capability/v1beta1/genesis.proto index c7edd2501776..05bb0afc4a1f 100644 --- a/proto/cosmos/capability/v1beta1/genesis.proto +++ b/proto/cosmos/capability/v1beta1/genesis.proto @@ -3,14 +3,13 @@ package cosmos.capability.v1beta1; import "gogoproto/gogo.proto"; import "cosmos/capability/v1beta1/capability.proto"; -import "cosmos_proto/cosmos.proto"; option go_package = "github.com/cosmos/cosmos-sdk/x/capability/types"; // GenesisOwners defines the capability owners with their corresponding index. message GenesisOwners { // index is the index of the capability owner. - uint64 index = 1 [(cosmos_proto.scalar) = "cosmos.Int"]; + uint64 index = 1; // index_owners are the owners at the given index. CapabilityOwners index_owners = 2 [(gogoproto.nullable) = false, (gogoproto.moretags) = "yaml:\"index_owners\""]; @@ -19,7 +18,7 @@ message GenesisOwners { // GenesisState defines the capability module's genesis state. message GenesisState { // index is the capability global index. - uint64 index = 1 [(cosmos_proto.scalar) = "cosmos.Int"]; + uint64 index = 1; // owners represents a map from index to owners of the capability index // index key is string to allow amino marshalling. diff --git a/proto/cosmos/crypto/multisig/keys.proto b/proto/cosmos/crypto/multisig/keys.proto index 1daad6eaaf00..f8398e8052ac 100644 --- a/proto/cosmos/crypto/multisig/keys.proto +++ b/proto/cosmos/crypto/multisig/keys.proto @@ -3,7 +3,6 @@ package cosmos.crypto.multisig; import "gogoproto/gogo.proto"; import "google/protobuf/any.proto"; -import "cosmos_proto/cosmos.proto"; option go_package = "github.com/cosmos/cosmos-sdk/crypto/keys/multisig"; @@ -13,7 +12,7 @@ option go_package = "github.com/cosmos/cosmos-sdk/crypto/keys/multisig"; message LegacyAminoPubKey { option (gogoproto.goproto_getters) = false; - uint32 threshold = 1 [(cosmos_proto.scalar) = "cosmos.Int", (gogoproto.moretags) = "yaml:\"threshold\""]; + uint32 threshold = 1 [(gogoproto.moretags) = "yaml:\"threshold\""]; repeated google.protobuf.Any public_keys = 2 [(gogoproto.customname) = "PubKeys", (gogoproto.moretags) = "yaml:\"pubkeys\""]; } diff --git a/proto/cosmos/crypto/multisig/v1beta1/multisig.proto b/proto/cosmos/crypto/multisig/v1beta1/multisig.proto index 27a17e68840f..bf671f171143 100644 --- a/proto/cosmos/crypto/multisig/v1beta1/multisig.proto +++ b/proto/cosmos/crypto/multisig/v1beta1/multisig.proto @@ -2,7 +2,6 @@ syntax = "proto3"; package cosmos.crypto.multisig.v1beta1; import "gogoproto/gogo.proto"; -import "cosmos_proto/cosmos.proto"; option go_package = "github.com/cosmos/cosmos-sdk/crypto/types"; @@ -21,6 +20,6 @@ message MultiSignature { message CompactBitArray { option (gogoproto.goproto_stringer) = false; - uint32 extra_bits_stored = 1 [(cosmos_proto.scalar) = "cosmos.Int"]; + uint32 extra_bits_stored = 1; bytes elems = 2; } diff --git a/proto/cosmos/distribution/v1beta1/distribution.proto b/proto/cosmos/distribution/v1beta1/distribution.proto index ae98ec0b98f2..6f5bf632f399 100644 --- a/proto/cosmos/distribution/v1beta1/distribution.proto +++ b/proto/cosmos/distribution/v1beta1/distribution.proto @@ -6,6 +6,7 @@ option (gogoproto.equal_all) = true; import "gogoproto/gogo.proto"; import "cosmos/base/v1beta1/coin.proto"; +import "cosmos_proto/cosmos.proto"; // Params defines the set of params for the distribution module. message Params { @@ -81,7 +82,7 @@ message ValidatorOutstandingRewards { // for delegations which are withdrawn after a slash has occurred. message ValidatorSlashEvent { uint64 validator_period = 1 [(gogoproto.moretags) = "yaml:\"validator_period\""]; - string fraction = 2 [(gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Dec", (gogoproto.nullable) = false]; + string fraction = 2 [(cosmos_proto.scalar) = "cosmos.Dec", (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Dec", (gogoproto.nullable) = false]; } // ValidatorSlashEvents is a collection of ValidatorSlashEvent messages. @@ -124,6 +125,7 @@ message CommunityPoolSpendProposal { message DelegatorStartingInfo { uint64 previous_period = 1 [(gogoproto.moretags) = "yaml:\"previous_period\""]; string stake = 2 [ + (cosmos_proto.scalar) = "cosmos.Dec", (gogoproto.moretags) = "yaml:\"stake\"", (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Dec", (gogoproto.nullable) = false @@ -137,7 +139,10 @@ message DelegationDelegatorReward { option (gogoproto.goproto_getters) = false; option (gogoproto.goproto_stringer) = true; - string validator_address = 1 [(gogoproto.moretags) = "yaml:\"validator_address\""]; + string validator_address = 1 [ + (cosmos_proto.scalar) = "cosmos.AddressString", + (gogoproto.moretags) = "yaml:\"validator_address\"" + ]; repeated cosmos.base.v1beta1.DecCoin reward = 2 [(gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.DecCoins", (gogoproto.nullable) = false]; diff --git a/proto/cosmos/distribution/v1beta1/genesis.proto b/proto/cosmos/distribution/v1beta1/genesis.proto index bc17189e5372..3c07fabfe5c6 100644 --- a/proto/cosmos/distribution/v1beta1/genesis.proto +++ b/proto/cosmos/distribution/v1beta1/genesis.proto @@ -63,7 +63,7 @@ message ValidatorHistoricalRewardsRecord { string validator_address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString", (gogoproto.moretags) = "yaml:\"validator_address\""]; // period defines the period the historical rewards apply to. - uint64 period = 2 [(cosmos_proto.scalar) = "cosmos.AddressString"]; + uint64 period = 2; // rewards defines the historical rewards of a validator. ValidatorHistoricalRewards rewards = 3 [(gogoproto.nullable) = false, (gogoproto.moretags) = "yaml:\"rewards\""]; @@ -105,9 +105,9 @@ message ValidatorSlashEventRecord { // validator_address is the address of the validator. string validator_address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString", (gogoproto.moretags) = "yaml:\"validator_address\""]; // height defines the block height at which the slash event occured. - uint64 height = 2 [(cosmos_proto.scalar) = "cosmos.Int"]; + uint64 height = 2; // period is the period of the slash event. - uint64 period = 3 [(cosmos_proto.scalar) = "cosmos.Int"]; + uint64 period = 3; // validator_slash_event describes the slash event. ValidatorSlashEvent validator_slash_event = 4 [(gogoproto.nullable) = false, (gogoproto.moretags) = "yaml:\"event\""]; } diff --git a/proto/cosmos/distribution/v1beta1/query.proto b/proto/cosmos/distribution/v1beta1/query.proto index 315189303bd6..a09413fc9904 100644 --- a/proto/cosmos/distribution/v1beta1/query.proto +++ b/proto/cosmos/distribution/v1beta1/query.proto @@ -110,9 +110,9 @@ message QueryValidatorSlashesRequest { // validator_address defines the validator address to query for. string validator_address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // starting_height defines the optional starting height to query the slashes. - uint64 starting_height = 2 [(cosmos_proto.scalar) = "cosmos.Int"]; + uint64 starting_height = 2; // starting_height defines the optional ending height to query the slashes. - uint64 ending_height = 3 [(cosmos_proto.scalar) = "cosmos.Int"]; + uint64 ending_height = 3; // pagination defines an optional pagination for the request. cosmos.base.query.v1beta1.PageRequest pagination = 4; } diff --git a/proto/cosmos/evidence/v1beta1/evidence.proto b/proto/cosmos/evidence/v1beta1/evidence.proto index c5b695e08d0e..cf582bd58860 100644 --- a/proto/cosmos/evidence/v1beta1/evidence.proto +++ b/proto/cosmos/evidence/v1beta1/evidence.proto @@ -15,8 +15,8 @@ message Equivocation { option (gogoproto.goproto_getters) = false; option (gogoproto.equal) = false; - int64 height = 1 [(cosmos_proto.scalar) = "cosmos.Int"]; + int64 height = 1 ; google.protobuf.Timestamp time = 2 [(gogoproto.nullable) = false, (gogoproto.stdtime) = true]; - int64 power = 3 [(cosmos_proto.scalar) = "cosmos.Int"]; + int64 power = 3 ; string consensus_address = 4 [(cosmos_proto.scalar) = "cosmos.AddressString", (gogoproto.moretags) = "yaml:\"consensus_address\""]; } \ No newline at end of file diff --git a/proto/cosmos/gov/v1beta1/genesis.proto b/proto/cosmos/gov/v1beta1/genesis.proto index 339bff363f20..a999500449fa 100644 --- a/proto/cosmos/gov/v1beta1/genesis.proto +++ b/proto/cosmos/gov/v1beta1/genesis.proto @@ -4,14 +4,13 @@ package cosmos.gov.v1beta1; import "gogoproto/gogo.proto"; import "cosmos/gov/v1beta1/gov.proto"; -import "cosmos_proto/cosmos.proto"; option go_package = "github.com/cosmos/cosmos-sdk/x/gov/types"; // GenesisState defines the gov module's genesis state. message GenesisState { // starting_proposal_id is the ID of the starting proposal. - uint64 starting_proposal_id = 1 [(cosmos_proto.scalar) = "cosmos.Int", (gogoproto.moretags) = "yaml:\"starting_proposal_id\""]; + uint64 starting_proposal_id = 1 [(gogoproto.moretags) = "yaml:\"starting_proposal_id\""]; // deposits defines all the deposits present at genesis. repeated Deposit deposits = 2 [(gogoproto.castrepeated) = "Deposits", (gogoproto.nullable) = false]; // votes defines all the votes present at genesis. diff --git a/proto/cosmos/gov/v1beta1/gov.proto b/proto/cosmos/gov/v1beta1/gov.proto index ad10da7ac7d5..91d70472e8cf 100644 --- a/proto/cosmos/gov/v1beta1/gov.proto +++ b/proto/cosmos/gov/v1beta1/gov.proto @@ -3,7 +3,6 @@ package cosmos.gov.v1beta1; import "cosmos/base/v1beta1/coin.proto"; import "gogoproto/gogo.proto"; -import "cosmos_proto/cosmos.proto"; import "google/protobuf/timestamp.proto"; import "google/protobuf/any.proto"; import "google/protobuf/duration.proto"; @@ -34,6 +33,7 @@ enum VoteOption { message WeightedVoteOption { VoteOption option = 1; string weight = 2 [ + (cosmos_proto.scalar) = "cosmos.Dec", (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Dec", (gogoproto.nullable) = false, (gogoproto.moretags) = "yaml:\"weight\"" @@ -57,7 +57,7 @@ message Deposit { option (gogoproto.goproto_getters) = false; option (gogoproto.equal) = false; - uint64 proposal_id = 1 [(cosmos_proto.scalar) = "cosmos.Int", (gogoproto.moretags) = "yaml:\"proposal_id\""]; + uint64 proposal_id = 1 [(gogoproto.moretags) = "yaml:\"proposal_id\""]; string depositor = 2 [(cosmos_proto.scalar) = "cosmos.AddressString"]; repeated cosmos.base.v1beta1.Coin amount = 3 [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"]; @@ -67,7 +67,7 @@ message Deposit { message Proposal { option (gogoproto.equal) = true; - uint64 proposal_id = 1 [(cosmos_proto.scalar) = "cosmos.Int", (gogoproto.jsontag) = "id", (gogoproto.moretags) = "yaml:\"id\""]; + uint64 proposal_id = 1 [(gogoproto.jsontag) = "id", (gogoproto.moretags) = "yaml:\"id\""]; google.protobuf.Any content = 2 [(cosmos_proto.accepts_interface) = "Content"]; ProposalStatus status = 3 [(gogoproto.moretags) = "yaml:\"proposal_status\""]; TallyResult final_tally_result = 4 @@ -114,10 +114,11 @@ enum ProposalStatus { message TallyResult { option (gogoproto.equal) = true; - string yes = 1 [(gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Int", (gogoproto.nullable) = false]; - string abstain = 2 [(gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Int", (gogoproto.nullable) = false]; - string no = 3 [(gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Int", (gogoproto.nullable) = false]; + string yes = 1 [(cosmos_proto.scalar) = "cosmos.Int", (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Int", (gogoproto.nullable) = false]; + string abstain = 2 [(cosmos_proto.scalar) = "cosmos.Int", (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Int", (gogoproto.nullable) = false]; + string no = 3 [(cosmos_proto.scalar) = "cosmos.Int", (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Int", (gogoproto.nullable) = false]; string no_with_veto = 4 [ + (cosmos_proto.scalar) = "cosmos.Int", (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Int", (gogoproto.nullable) = false, (gogoproto.moretags) = "yaml:\"no_with_veto\"" @@ -130,7 +131,7 @@ message Vote { option (gogoproto.goproto_stringer) = false; option (gogoproto.equal) = false; - uint64 proposal_id = 1 [(cosmos_proto.scalar) = "cosmos.Int", (gogoproto.moretags) = "yaml:\"proposal_id\""]; + uint64 proposal_id = 1 [(gogoproto.moretags) = "yaml:\"proposal_id\""]; string voter = 2 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // Deprecated: Prefer to use `options` instead. This field is set in queries // if and only if `len(options) == 1` and that option has weight 1. In all diff --git a/proto/cosmos/gov/v1beta1/query.proto b/proto/cosmos/gov/v1beta1/query.proto index 42be86b2521f..a75e10f51a7a 100644 --- a/proto/cosmos/gov/v1beta1/query.proto +++ b/proto/cosmos/gov/v1beta1/query.proto @@ -55,7 +55,7 @@ service Query { // QueryProposalRequest is the request type for the Query/Proposal RPC method. message QueryProposalRequest { // proposal_id defines the unique id of the proposal. - uint64 proposal_id = 1 [(cosmos_proto.scalar) = "cosmos.Int"]; + uint64 proposal_id = 1; } // QueryProposalResponse is the response type for the Query/Proposal RPC method. @@ -96,7 +96,7 @@ message QueryVoteRequest { option (gogoproto.goproto_getters) = false; // proposal_id defines the unique id of the proposal. - uint64 proposal_id = 1 [(cosmos_proto.scalar) = "cosmos.Int"]; + uint64 proposal_id = 1; // voter defines the oter address for the proposals. string voter = 2 [(cosmos_proto.scalar) = "cosmos.AddressString"]; @@ -111,7 +111,7 @@ message QueryVoteResponse { // QueryVotesRequest is the request type for the Query/Votes RPC method. message QueryVotesRequest { // proposal_id defines the unique id of the proposal. - uint64 proposal_id = 1 [(cosmos_proto.scalar) = "cosmos.Int"]; + uint64 proposal_id = 1; // pagination defines an optional pagination for the request. cosmos.base.query.v1beta1.PageRequest pagination = 2; diff --git a/proto/cosmos/gov/v1beta1/tx.proto b/proto/cosmos/gov/v1beta1/tx.proto index aaa43fa27619..c806e2915e15 100644 --- a/proto/cosmos/gov/v1beta1/tx.proto +++ b/proto/cosmos/gov/v1beta1/tx.proto @@ -43,7 +43,7 @@ message MsgSubmitProposal { // MsgSubmitProposalResponse defines the Msg/SubmitProposal response type. message MsgSubmitProposalResponse { - uint64 proposal_id = 1 [(cosmos_proto.scalar) = "cosmos.Int", (gogoproto.jsontag) = "proposal_id", (gogoproto.moretags) = "yaml:\"proposal_id\""]; + uint64 proposal_id = 1 [(gogoproto.jsontag) = "proposal_id", (gogoproto.moretags) = "yaml:\"proposal_id\""]; } // MsgVote defines a message to cast a vote. @@ -53,7 +53,7 @@ message MsgVote { option (gogoproto.stringer) = false; option (gogoproto.goproto_getters) = false; - uint64 proposal_id = 1 [(cosmos_proto.scalar) = "cosmos.Int", (gogoproto.jsontag) = "proposal_id", (gogoproto.moretags) = "yaml:\"proposal_id\""]; + uint64 proposal_id = 1 [(gogoproto.jsontag) = "proposal_id", (gogoproto.moretags) = "yaml:\"proposal_id\""]; string voter = 2 [(cosmos_proto.scalar) = "cosmos.AddressString"]; VoteOption option = 3; } @@ -68,7 +68,7 @@ message MsgVoteWeighted { option (gogoproto.stringer) = false; option (gogoproto.goproto_getters) = false; - uint64 proposal_id = 1 [(cosmos_proto.scalar) = "cosmos.Int", (gogoproto.moretags) = "yaml:\"proposal_id\""]; + uint64 proposal_id = 1 [(gogoproto.moretags) = "yaml:\"proposal_id\""]; string voter = 2 [(cosmos_proto.scalar) = "cosmos.AddressString"]; repeated WeightedVoteOption options = 3 [(gogoproto.nullable) = false]; } @@ -83,7 +83,7 @@ message MsgDeposit { option (gogoproto.stringer) = false; option (gogoproto.goproto_getters) = false; - uint64 proposal_id = 1 [(cosmos_proto.scalar) = "cosmos.Int", (gogoproto.jsontag) = "proposal_id", (gogoproto.moretags) = "yaml:\"proposal_id\""]; + uint64 proposal_id = 1 [(gogoproto.jsontag) = "proposal_id", (gogoproto.moretags) = "yaml:\"proposal_id\""]; string depositor = 2 [(cosmos_proto.scalar) = "cosmos.AddressString"]; repeated cosmos.base.v1beta1.Coin amount = 3 [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"]; diff --git a/proto/cosmos/group/v1beta1/query.proto b/proto/cosmos/group/v1beta1/query.proto index 21120d853283..35a820c3de3e 100644 --- a/proto/cosmos/group/v1beta1/query.proto +++ b/proto/cosmos/group/v1beta1/query.proto @@ -50,7 +50,7 @@ service Query { message QueryGroupInfoRequest { // group_id is the unique ID of the group. - uint64 group_id = 1 [(cosmos_proto.scalar) = "cosmos.Int"]; + uint64 group_id = 1; } // QueryGroupInfoResponse is the Query/GroupInfo response type. @@ -78,7 +78,7 @@ message QueryGroupAccountInfoResponse { message QueryGroupMembersRequest { // group_id is the unique ID of the group. - uint64 group_id = 1 [(cosmos_proto.scalar) = "cosmos.Int"];; + uint64 group_id = 1; // pagination defines an optional pagination for the request. cosmos.base.query.v1beta1.PageRequest pagination = 2; @@ -118,7 +118,7 @@ message QueryGroupsByAdminResponse { message QueryGroupAccountsByGroupRequest { // group_id is the unique ID of the group account's group. - uint64 group_id = 1 [(cosmos_proto.scalar) = "cosmos.Int"]; + uint64 group_id = 1; // pagination defines an optional pagination for the request. cosmos.base.query.v1beta1.PageRequest pagination = 2; @@ -158,7 +158,7 @@ message QueryGroupAccountsByAdminResponse { message QueryProposalRequest { // proposal_id is the unique ID of a proposal. - uint64 proposal_id = 1 [(cosmos_proto.scalar) = "cosmos.Int"]; + uint64 proposal_id = 1; } // QueryProposalResponse is the Query/Proposal response type. @@ -172,7 +172,7 @@ message QueryProposalResponse { message QueryProposalsByGroupAccountRequest { // address is the group account address related to proposals. - string address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"];; + string address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // pagination defines an optional pagination for the request. cosmos.base.query.v1beta1.PageRequest pagination = 2; @@ -192,7 +192,7 @@ message QueryProposalsByGroupAccountResponse { message QueryVoteByProposalVoterRequest { // proposal_id is the unique ID of a proposal. - uint64 proposal_id = 1 [(cosmos_proto.scalar) = "cosmos.Int"]; + uint64 proposal_id = 1; // voter is a proposal voter account address. string voter = 2 [(cosmos_proto.scalar) = "cosmos.AddressString"]; @@ -209,7 +209,7 @@ message QueryVoteByProposalVoterResponse { message QueryVotesByProposalRequest { // proposal_id is the unique ID of a proposal. - uint64 proposal_id = 1 [(cosmos_proto.scalar) = "cosmos.Int"]; + uint64 proposal_id = 1; // pagination defines an optional pagination for the request. cosmos.base.query.v1beta1.PageRequest pagination = 2; diff --git a/proto/cosmos/group/v1beta1/tx.proto b/proto/cosmos/group/v1beta1/tx.proto index 93ded280d49e..a0c926b855f8 100644 --- a/proto/cosmos/group/v1beta1/tx.proto +++ b/proto/cosmos/group/v1beta1/tx.proto @@ -68,7 +68,7 @@ message MsgCreateGroupRequest { message MsgCreateGroupResponse { // group_id is the unique ID of the newly created group. - uint64 group_id = 1 [(cosmos_proto.scalar) = "cosmos.Int"]; + uint64 group_id = 1; } // MsgUpdateGroupMembersRequest is the Msg/UpdateGroupMembers request type. @@ -78,7 +78,7 @@ message MsgUpdateGroupMembersRequest { string admin = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // group_id is the unique ID of the group. - uint64 group_id = 2 [(cosmos_proto.scalar) = "cosmos.Int"]; + uint64 group_id = 2; // member_updates is the list of members to update, // set weight to 0 to remove a member. @@ -95,7 +95,7 @@ message MsgUpdateGroupAdminRequest { string admin = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // group_id is the unique ID of the group. - uint64 group_id = 2 [(cosmos_proto.scalar) = "cosmos.Int"]; + uint64 group_id = 2; // new_admin is the group new admin account address. string new_admin = 3 [(cosmos_proto.scalar) = "cosmos.AddressString"]; @@ -111,7 +111,7 @@ message MsgUpdateGroupMetadataRequest { string admin = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // group_id is the unique ID of the group. - uint64 group_id = 2 [(cosmos_proto.scalar) = "cosmos.Int"]; + uint64 group_id = 2; // metadata is the updated group's metadata. bytes metadata = 3; @@ -132,7 +132,7 @@ message MsgCreateGroupAccountRequest { string admin = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // group_id is the unique ID of the group. - uint64 group_id = 2 [(cosmos_proto.scalar) = "cosmos.Int"]; + uint64 group_id = 2; // metadata is any arbitrary metadata to attached to the group account. bytes metadata = 3; @@ -242,14 +242,14 @@ message MsgCreateProposalRequest { message MsgCreateProposalResponse { // proposal is the unique ID of the proposal. - uint64 proposal_id = 1 [(cosmos_proto.scalar) = "cosmos.Int"]; + uint64 proposal_id = 1; } // MsgVoteRequest is the Msg/Vote request type. message MsgVoteRequest { // proposal is the unique ID of the proposal. - uint64 proposal_id = 1 [(cosmos_proto.scalar) = "cosmos.Int"]; + uint64 proposal_id = 1; // voter is the voter account address. string voter = 2 [(cosmos_proto.scalar) = "cosmos.AddressString"]; @@ -271,7 +271,7 @@ message MsgVoteResponse {} message MsgExecRequest { // proposal is the unique ID of the proposal. - uint64 proposal_id = 1 [(cosmos_proto.scalar) = "cosmos.Int"]; + uint64 proposal_id = 1; // signer is the account address used to execute the proposal. string signer = 2 [(cosmos_proto.scalar) = "cosmos.AddressString"]; diff --git a/proto/cosmos/group/v1beta1/types.proto b/proto/cosmos/group/v1beta1/types.proto index 52992cdb3911..82d43460dc81 100644 --- a/proto/cosmos/group/v1beta1/types.proto +++ b/proto/cosmos/group/v1beta1/types.proto @@ -9,6 +9,7 @@ import "google/protobuf/duration.proto"; import "google/protobuf/timestamp.proto"; import "cosmos_proto/cosmos.proto"; import "google/protobuf/any.proto"; +import "cosmos_proto/cosmos.proto"; // Member represents a group member with an account address, // non-zero weight and metadata. @@ -70,7 +71,7 @@ enum Choice { message GroupInfo { // group_id is the unique ID of the group. - uint64 group_id = 1 [(cosmos_proto.scalar) = "cosmos.Int"]; + uint64 group_id = 1; // admin is the account address of the group's admin. string admin = 2 [(cosmos_proto.scalar) = "cosmos.AddressString"]; @@ -82,7 +83,7 @@ message GroupInfo { // would break existing proposals. Whenever any members weight is changed, // or any member is added or removed this version is incremented and will // cause proposals based on older versions of this group to fail - uint64 version = 4 [(cosmos_proto.scalar) = "cosmos.Int"]; + uint64 version = 4; // total_weight is the sum of the group members' weights. string total_weight = 5; @@ -92,7 +93,7 @@ message GroupInfo { message GroupMember { // group_id is the unique ID of the group. - uint64 group_id = 1 [(cosmos_proto.scalar) = "cosmos.Int"]; + uint64 group_id = 1; // member is the member data. Member member = 2; @@ -107,7 +108,7 @@ message GroupAccountInfo { string address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // group_id is the unique ID of the group. - uint64 group_id = 2 [(cosmos_proto.scalar) = "cosmos.Int"]; + uint64 group_id = 2 ; // admin is the account address of the group admin. string admin = 3 [(cosmos_proto.scalar) = "cosmos.AddressString"]; @@ -117,7 +118,7 @@ message GroupAccountInfo { // version is used to track changes to a group's GroupAccountInfo structure that // would create a different result on a running proposal. - uint64 version = 5 [(cosmos_proto.scalar) = "cosmos.Int"]; + uint64 version = 5; // decision_policy specifies the group account's decision policy. google.protobuf.Any decision_policy = 6 [(cosmos_proto.accepts_interface) = "DecisionPolicy"]; @@ -135,7 +136,7 @@ message Proposal { option (gogoproto.goproto_getters) = false; // proposal_id is the unique id of the proposal. - uint64 proposal_id = 1 [(cosmos_proto.scalar) = "cosmos.Int"]; + uint64 proposal_id = 1; // address is the group account address. string address = 2 [(cosmos_proto.scalar) = "cosmos.AddressString"]; @@ -144,18 +145,19 @@ message Proposal { bytes metadata = 3; // proposers are the account addresses of the proposers. - repeated string proposers = 4; + // ? + repeated string proposers = 4 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // submitted_at is a timestamp specifying when a proposal was submitted. google.protobuf.Timestamp submitted_at = 5 [(gogoproto.nullable) = false, (gogoproto.stdtime) = true]; // group_version tracks the version of the group that this proposal corresponds to. // When group membership is changed, existing proposals from previous group versions will become invalid. - uint64 group_version = 6 [(cosmos_proto.scalar) = "cosmos.Int"]; + uint64 group_version = 6; // group_account_version tracks the version of the group account that this proposal corresponds to. // When a decision policy is changed, existing proposals from previous policy versions will become invalid. - uint64 group_account_version = 7 [(cosmos_proto.scalar) = "cosmos.Int"]; + uint64 group_account_version = 7; // Status defines proposal statuses. enum Status { @@ -256,7 +258,7 @@ message Tally { message Vote { // proposal is the unique ID of the proposal. - uint64 proposal_id = 1 [(cosmos_proto.scalar) = "cosmos.Int"];; + uint64 proposal_id = 1; // voter is the account address of the voter. string voter = 2 [(cosmos_proto.scalar) = "cosmos.AddressString"]; diff --git a/proto/cosmos/mint/v1beta1/mint.proto b/proto/cosmos/mint/v1beta1/mint.proto index 0e6b88e6abec..36dba0b9410e 100644 --- a/proto/cosmos/mint/v1beta1/mint.proto +++ b/proto/cosmos/mint/v1beta1/mint.proto @@ -9,10 +9,14 @@ import "cosmos_proto/cosmos.proto"; // Minter represents the minting state. message Minter { // current annual inflation rate - string inflation = 1 - [(gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Dec", (gogoproto.nullable) = false]; + string inflation = 1[ + (cosmos_proto.scalar) = "cosmos.Dec", + (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Dec", + (gogoproto.nullable) = false + ]; // current annual expected provisions string annual_provisions = 2 [ + (cosmos_proto.scalar) = "cosmos.Dec", (gogoproto.moretags) = "yaml:\"annual_provisions\"", (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Dec", (gogoproto.nullable) = false @@ -27,28 +31,32 @@ message Params { string mint_denom = 1; // maximum annual change in inflation rate string inflation_rate_change = 2 [ + (cosmos_proto.scalar) = "cosmos.Dec", (gogoproto.moretags) = "yaml:\"inflation_rate_change\"", (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Dec", (gogoproto.nullable) = false ]; // maximum inflation rate string inflation_max = 3 [ + (cosmos_proto.scalar) = "cosmos.Dec", (gogoproto.moretags) = "yaml:\"inflation_max\"", (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Dec", (gogoproto.nullable) = false ]; // minimum inflation rate string inflation_min = 4 [ + (cosmos_proto.scalar) = "cosmos.Dec", (gogoproto.moretags) = "yaml:\"inflation_min\"", (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Dec", (gogoproto.nullable) = false ]; // goal of percent bonded atoms string goal_bonded = 5 [ + (cosmos_proto.scalar) = "cosmos.Dec", (gogoproto.moretags) = "yaml:\"goal_bonded\"", (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Dec", (gogoproto.nullable) = false ]; // expected blocks per year - uint64 blocks_per_year = 6 [(cosmos_proto.scalar) = "cosmos.Int", (gogoproto.moretags) = "yaml:\"blocks_per_year\""]; + uint64 blocks_per_year = 6 [(gogoproto.moretags) = "yaml:\"blocks_per_year\""]; } diff --git a/proto/cosmos/slashing/v1beta1/genesis.proto b/proto/cosmos/slashing/v1beta1/genesis.proto index ae1ae5b70698..66a1b2cae77c 100644 --- a/proto/cosmos/slashing/v1beta1/genesis.proto +++ b/proto/cosmos/slashing/v1beta1/genesis.proto @@ -45,7 +45,7 @@ message ValidatorMissedBlocks { // MissedBlock contains height and missed status as boolean. message MissedBlock { // index is the height at which the block was missed. - int64 index = 1 [(cosmos_proto.scalar) = "cosmos.Int"]; + int64 index = 1; // missed is the missed status. bool missed = 2; } diff --git a/proto/cosmos/slashing/v1beta1/slashing.proto b/proto/cosmos/slashing/v1beta1/slashing.proto index 26101e3810a1..df12e287c7db 100644 --- a/proto/cosmos/slashing/v1beta1/slashing.proto +++ b/proto/cosmos/slashing/v1beta1/slashing.proto @@ -17,11 +17,11 @@ message ValidatorSigningInfo { string address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // Height at which validator was first a candidate OR was unjailed - int64 start_height = 2 [(cosmos_proto.scalar) = "cosmos.Int", (gogoproto.moretags) = "yaml:\"start_height\""]; + int64 start_height = 2 [(gogoproto.moretags) = "yaml:\"start_height\""]; // Index which is incremented each time the validator was a bonded // in a block and may have signed a precommit or not. This in conjunction with the // `SignedBlocksWindow` param determines the index in the `MissedBlocksBitArray`. - int64 index_offset = 3 [(cosmos_proto.scalar) = "cosmos.Int", (gogoproto.moretags) = "yaml:\"index_offset\""]; + int64 index_offset = 3 [(gogoproto.moretags) = "yaml:\"index_offset\""]; // Timestamp until which the validator is jailed due to liveness downtime. google.protobuf.Timestamp jailed_until = 4 [(gogoproto.moretags) = "yaml:\"jailed_until\"", (gogoproto.stdtime) = true, (gogoproto.nullable) = false]; @@ -30,12 +30,12 @@ message ValidatorSigningInfo { bool tombstoned = 5; // A counter kept to avoid unnecessary array reads. // Note that `Sum(MissedBlocksBitArray)` always equals `MissedBlocksCounter`. - int64 missed_blocks_counter = 6 [(cosmos_proto.scalar) = "cosmos.Int", (gogoproto.moretags) = "yaml:\"missed_blocks_counter\""]; + int64 missed_blocks_counter = 6 [(gogoproto.moretags) = "yaml:\"missed_blocks_counter\""]; } // Params represents the parameters used for by the slashing module. message Params { - int64 signed_blocks_window = 1 [(cosmos_proto.scalar) = "cosmos.Int", (gogoproto.moretags) = "yaml:\"signed_blocks_window\""]; + int64 signed_blocks_window = 1 [(gogoproto.moretags) = "yaml:\"signed_blocks_window\""]; bytes min_signed_per_window = 2 [ (gogoproto.moretags) = "yaml:\"min_signed_per_window\"", (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Dec", diff --git a/proto/cosmos/staking/v1beta1/genesis.proto b/proto/cosmos/staking/v1beta1/genesis.proto index 1d7fdd854289..caffcf5343c7 100644 --- a/proto/cosmos/staking/v1beta1/genesis.proto +++ b/proto/cosmos/staking/v1beta1/genesis.proto @@ -50,5 +50,5 @@ message LastValidatorPower { string address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // power defines the power of the validator. - int64 power = 2 [(cosmos_proto.scalar) = "cosmos.Int"]; + int64 power = 2ж } diff --git a/proto/cosmos/staking/v1beta1/query.proto b/proto/cosmos/staking/v1beta1/query.proto index 0bd9d6d4d2e6..c0716402f9b6 100644 --- a/proto/cosmos/staking/v1beta1/query.proto +++ b/proto/cosmos/staking/v1beta1/query.proto @@ -320,7 +320,7 @@ message QueryDelegatorValidatorResponse { // method. message QueryHistoricalInfoRequest { // height defines at which height to query the historical info. - int64 height = 1 [(cosmos_proto.scalar) = "cosmos.Int"]; + int64 height = 1; } // QueryHistoricalInfoResponse is response type for the Query/HistoricalInfo RPC diff --git a/proto/cosmos/staking/v1beta1/staking.proto b/proto/cosmos/staking/v1beta1/staking.proto index 5306e4f004d4..522edb66ae7d 100644 --- a/proto/cosmos/staking/v1beta1/staking.proto +++ b/proto/cosmos/staking/v1beta1/staking.proto @@ -138,7 +138,8 @@ message ValAddresses { option (gogoproto.goproto_stringer) = false; option (gogoproto.stringer) = true; - repeated string addresses = 1; + // ? + repeated string addresses = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; } // DVPair is struct that just has a delegator-validator pair with no other data. @@ -214,18 +215,19 @@ message UnbondingDelegationEntry { option (gogoproto.goproto_stringer) = false; // creation_height is the height which the unbonding took place. - int64 creation_height = 1 [(cosmos_proto.scalar) = "cosmos.Int", (gogoproto.moretags) = "yaml:\"creation_height\""]; + int64 creation_height = 1 [(gogoproto.moretags) = "yaml:\"creation_height\""]; // completion_time is the unix time for unbonding completion. google.protobuf.Timestamp completion_time = 2 [(gogoproto.nullable) = false, (gogoproto.stdtime) = true, (gogoproto.moretags) = "yaml:\"completion_time\""]; // initial_balance defines the tokens initially scheduled to receive at completion. string initial_balance = 3 [ + (cosmos_proto.scalar) = "cosmos.Int", (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Int", (gogoproto.nullable) = false, (gogoproto.moretags) = "yaml:\"initial_balance\"" ]; // balance defines the tokens to receive at completion. - string balance = 4 [(gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Int", (gogoproto.nullable) = false]; + string balance = 4 [(cosmos_proto.scalar) = "cosmos.Int", (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Int", (gogoproto.nullable) = false]; } // RedelegationEntry defines a redelegation object with relevant metadata. diff --git a/proto/cosmos/staking/v1beta1/tx.proto b/proto/cosmos/staking/v1beta1/tx.proto index 6e2dc63e8bfd..c2066a27306c 100644 --- a/proto/cosmos/staking/v1beta1/tx.proto +++ b/proto/cosmos/staking/v1beta1/tx.proto @@ -40,6 +40,7 @@ message MsgCreateValidator { Description description = 1 [(gogoproto.nullable) = false]; CommissionRates commission = 2 [(gogoproto.nullable) = false]; string min_self_delegation = 3 [ + (cosmos_proto.scalar) = "cosmos.Int", (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Int", (gogoproto.moretags) = "yaml:\"min_self_delegation\"", (gogoproto.nullable) = false @@ -66,10 +67,12 @@ message MsgEditValidator { // zero with no way to distinguish if an update was intended. // REF: #2373 string commission_rate = 3 [ + (cosmos_proto.scalar) = "cosmos.Dec", (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Dec", (gogoproto.moretags) = "yaml:\"commission_rate\"" ]; string min_self_delegation = 4 [ + (cosmos_proto.scalar) = "cosmos.Int", (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Int", (gogoproto.moretags) = "yaml:\"min_self_delegation\"" ]; diff --git a/proto/cosmos/tx/signing/v1beta1/signing.proto b/proto/cosmos/tx/signing/v1beta1/signing.proto index 39d77c47b687..e268f6de427c 100644 --- a/proto/cosmos/tx/signing/v1beta1/signing.proto +++ b/proto/cosmos/tx/signing/v1beta1/signing.proto @@ -57,7 +57,7 @@ message SignatureDescriptor { // sequence is the sequence of the account, which describes the // number of committed transactions signed by a given address. It is used to prevent // replay attacks. - uint64 sequence = 3 [(cosmos_proto.scalar) = "cosmos.Int"]; + uint64 sequence = 3; // Data represents signature data message Data { diff --git a/proto/cosmos/tx/v1beta1/tx.proto b/proto/cosmos/tx/v1beta1/tx.proto index 547c91028e90..6ef04b16ce2f 100644 --- a/proto/cosmos/tx/v1beta1/tx.proto +++ b/proto/cosmos/tx/v1beta1/tx.proto @@ -61,7 +61,7 @@ message SignDoc { string chain_id = 3; // account_number is the account number of the account in state - uint64 account_number = 4 [(cosmos_proto.scalar) = "cosmos.Int"]; + uint64 account_number = 4; } // SignDocJSON is the type used for generating sign bytes for @@ -82,7 +82,7 @@ message SignDocJSON { string chain_id = 3; // account_number is the account number of the signing account in state - uint64 account_number = 4 [(cosmos_proto.scalar) = "cosmos.Int"]; + uint64 account_number = 4; // sign_doc_sha256_hash is the SHA-256 hash of SignDoc. It is included here to // reduce the malleability attack surface of SIGN_MODE_DIRECT_JSON vs @@ -113,10 +113,10 @@ message SignDocDirectAux { string chain_id = 3; // account_number is the account number of the account in state. - uint64 account_number = 4 [(cosmos_proto.scalar) = "cosmos.Int"]; + uint64 account_number = 4; // sequence is the sequence number of the signing account. - uint64 sequence = 5 [(cosmos_proto.scalar) = "cosmos.Int"]; + uint64 sequence = 5; // Tip is the optional tip used for meta-transactions. It should be left // empty if the signer is not the tipper for this transaction. @@ -188,7 +188,7 @@ message SignerInfo { // sequence is the sequence of the account, which describes the // number of committed transactions signed by a given address. It is used to // prevent replay attacks. - uint64 sequence = 3 [(cosmos_proto.scalar) = "cosmos.Int"]; + uint64 sequence = 3; } // ModeInfo describes the signing mode of a single or nested multisig signer. diff --git a/proto/cosmos/upgrade/v1beta1/query.proto b/proto/cosmos/upgrade/v1beta1/query.proto index b48d02801d68..9bdbcf929ccf 100644 --- a/proto/cosmos/upgrade/v1beta1/query.proto +++ b/proto/cosmos/upgrade/v1beta1/query.proto @@ -59,7 +59,7 @@ message QueryAppliedPlanRequest { // method. message QueryAppliedPlanResponse { // height is the block height at which the plan was applied. - int64 height = 1 [(cosmos_proto.scalar) = "cosmos.Int"]; + int64 height = 1; } // QueryUpgradedConsensusStateRequest is the request type for the Query/UpgradedConsensusState @@ -69,7 +69,7 @@ message QueryUpgradedConsensusStateRequest { // last height of the current chain must be sent in request // as this is the height under which next consensus state is stored - int64 last_height = 1 [(cosmos_proto.scalar) = "cosmos.Int"]; + int64 last_height = 1; } // QueryUpgradedConsensusStateResponse is the response type for the Query/UpgradedConsensusState diff --git a/proto/cosmos/upgrade/v1beta1/upgrade.proto b/proto/cosmos/upgrade/v1beta1/upgrade.proto index 378010aa3ad2..4e1d69aaaaca 100644 --- a/proto/cosmos/upgrade/v1beta1/upgrade.proto +++ b/proto/cosmos/upgrade/v1beta1/upgrade.proto @@ -4,7 +4,6 @@ package cosmos.upgrade.v1beta1; import "google/protobuf/any.proto"; import "gogoproto/gogo.proto"; import "google/protobuf/timestamp.proto"; -import "cosmos_proto/cosmos.proto"; option go_package = "github.com/cosmos/cosmos-sdk/x/upgrade/types"; option (gogoproto.goproto_getters_all) = false; @@ -30,7 +29,7 @@ message Plan { // The height at which the upgrade must be performed. // Only used if Time is not set. - int64 height = 3 [(cosmos_proto.scalar) = "cosmos.Int"]; + int64 height = 3; // Any application specific upgrade info to be included on-chain // such as a git commit that validators could automatically upgrade to @@ -73,5 +72,5 @@ message ModuleVersion { string name = 1; // consensus version of the app module - uint64 version = 2 [(cosmos_proto.scalar) = "cosmos.Int"]; + uint64 version = 2; } diff --git a/proto/cosmos/vesting/v1beta1/tx.proto b/proto/cosmos/vesting/v1beta1/tx.proto index 0132902eee8a..9c18ed211d1d 100644 --- a/proto/cosmos/vesting/v1beta1/tx.proto +++ b/proto/cosmos/vesting/v1beta1/tx.proto @@ -24,7 +24,7 @@ message MsgCreateVestingAccount { repeated cosmos.base.v1beta1.Coin amount = 3 [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"]; - int64 end_time = 4 [(cosmos_proto.scalar) = "cosmos.Int", (gogoproto.moretags) = "yaml:\"end_time\""]; + int64 end_time = 4 [(gogoproto.moretags) = "yaml:\"end_time\""]; bool delayed = 5; } diff --git a/proto/cosmos/vesting/v1beta1/vesting.proto b/proto/cosmos/vesting/v1beta1/vesting.proto index e221a3b75af6..347046673deb 100644 --- a/proto/cosmos/vesting/v1beta1/vesting.proto +++ b/proto/cosmos/vesting/v1beta1/vesting.proto @@ -30,7 +30,7 @@ message BaseVestingAccount { (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins", (gogoproto.moretags) = "yaml:\"delegated_vesting\"" ]; - int64 end_time = 5 [(cosmos_proto.scalar) = "cosmos.Int", (gogoproto.moretags) = "yaml:\"end_time\""]; + int64 end_time = 5 [(gogoproto.moretags) = "yaml:\"end_time\""]; } // ContinuousVestingAccount implements the VestingAccount interface. It @@ -40,7 +40,7 @@ message ContinuousVestingAccount { option (gogoproto.goproto_stringer) = false; BaseVestingAccount base_vesting_account = 1 [(gogoproto.embed) = true]; - int64 start_time = 2 [(cosmos_proto.scalar) = "cosmos.Int", (gogoproto.moretags) = "yaml:\"start_time\""]; + int64 start_time = 2 [(gogoproto.moretags) = "yaml:\"start_time\""]; } // DelayedVestingAccount implements the VestingAccount interface. It vests all @@ -57,7 +57,7 @@ message DelayedVestingAccount { message Period { option (gogoproto.goproto_stringer) = false; - int64 length = 1 [(cosmos_proto.scalar) = "cosmos.Int"], + int64 length = 1, repeated cosmos.base.v1beta1.Coin amount = 2 [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"]; } @@ -69,7 +69,7 @@ message PeriodicVestingAccount { option (gogoproto.goproto_stringer) = false; BaseVestingAccount base_vesting_account = 1 [(gogoproto.embed) = true]; - int64 start_time = 2 [(cosmos_proto.scalar) = "cosmos.Int", (gogoproto.moretags) = "yaml:\"start_time\""]; + int64 start_time = 2 [(gogoproto.moretags) = "yaml:\"start_time\""]; repeated Period vesting_periods = 3 [(gogoproto.moretags) = "yaml:\"vesting_periods\"", (gogoproto.nullable) = false]; } From b3dfa7ea8d638a45a095726779e7863486d2b775 Mon Sep 17 00:00:00 2001 From: Andrei Ivasko Date: Mon, 16 Aug 2021 16:59:10 +0300 Subject: [PATCH 08/34] fix reflection.proto --- proto/cosmos/base/reflection/v2alpha1/reflection.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proto/cosmos/base/reflection/v2alpha1/reflection.proto b/proto/cosmos/base/reflection/v2alpha1/reflection.proto index 31d9d74eb07c..3e8e94048221 100644 --- a/proto/cosmos/base/reflection/v2alpha1/reflection.proto +++ b/proto/cosmos/base/reflection/v2alpha1/reflection.proto @@ -47,7 +47,7 @@ message SigningModeDescriptor { // name defines the unique name of the signing mode string name = 1; // number is the unique int32 identifier for the sign_mode enum - int32 number = 2 [(cosmos_proto.scalar) = "cosmos.Int"]; + int32 number = 2; // authn_info_provider_method_fullname defines the fullname of the method to call to get // the metadata required to authenticate using the provided sign_modes string authn_info_provider_method_fullname = 3; From d9776f41ebe688d11aff85902f34123c5092cdf7 Mon Sep 17 00:00:00 2001 From: Andrei Ivasko Date: Mon, 16 Aug 2021 17:00:12 +0300 Subject: [PATCH 09/34] fix genesis.proto --- proto/cosmos/staking/v1beta1/genesis.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proto/cosmos/staking/v1beta1/genesis.proto b/proto/cosmos/staking/v1beta1/genesis.proto index caffcf5343c7..d645e4d455e7 100644 --- a/proto/cosmos/staking/v1beta1/genesis.proto +++ b/proto/cosmos/staking/v1beta1/genesis.proto @@ -50,5 +50,5 @@ message LastValidatorPower { string address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // power defines the power of the validator. - int64 power = 2ж + int64 power = 2; } From 1f3e2444786cb032e74968f746a793acbc2e716b Mon Sep 17 00:00:00 2001 From: Andrei Ivasko Date: Mon, 16 Aug 2021 17:01:44 +0300 Subject: [PATCH 10/34] fix vesting.proto --- proto/cosmos/vesting/v1beta1/vesting.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proto/cosmos/vesting/v1beta1/vesting.proto b/proto/cosmos/vesting/v1beta1/vesting.proto index 347046673deb..a125ea40d558 100644 --- a/proto/cosmos/vesting/v1beta1/vesting.proto +++ b/proto/cosmos/vesting/v1beta1/vesting.proto @@ -57,7 +57,7 @@ message DelayedVestingAccount { message Period { option (gogoproto.goproto_stringer) = false; - int64 length = 1, + int64 length = 1; repeated cosmos.base.v1beta1.Coin amount = 2 [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"]; } From 73397e57899ad9e890c16100844e3b835933ac73 Mon Sep 17 00:00:00 2001 From: Andrei Ivasko Date: Tue, 17 Aug 2021 13:55:06 +0300 Subject: [PATCH 11/34] apply reviewer comments --- proto/cosmos/base/query/v1beta1/pagination.proto | 2 -- proto/cosmos/group/v1beta1/types.proto | 2 +- proto/cosmos/tx/v1beta1/tx.proto | 2 +- 3 files changed, 2 insertions(+), 4 deletions(-) diff --git a/proto/cosmos/base/query/v1beta1/pagination.proto b/proto/cosmos/base/query/v1beta1/pagination.proto index 619586a2cfff..784c479562a9 100644 --- a/proto/cosmos/base/query/v1beta1/pagination.proto +++ b/proto/cosmos/base/query/v1beta1/pagination.proto @@ -1,8 +1,6 @@ syntax = "proto3"; package cosmos.base.query.v1beta1; -import "cosmos_proto/cosmos.proto"; - option go_package = "github.com/cosmos/cosmos-sdk/types/query"; // PageRequest is to be embedded in gRPC request messages for efficient diff --git a/proto/cosmos/group/v1beta1/types.proto b/proto/cosmos/group/v1beta1/types.proto index 82d43460dc81..dc05d7b9db35 100644 --- a/proto/cosmos/group/v1beta1/types.proto +++ b/proto/cosmos/group/v1beta1/types.proto @@ -108,7 +108,7 @@ message GroupAccountInfo { string address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // group_id is the unique ID of the group. - uint64 group_id = 2 ; + uint64 group_id = 2; // admin is the account address of the group admin. string admin = 3 [(cosmos_proto.scalar) = "cosmos.AddressString"]; diff --git a/proto/cosmos/tx/v1beta1/tx.proto b/proto/cosmos/tx/v1beta1/tx.proto index 6ef04b16ce2f..dd281a8e5267 100644 --- a/proto/cosmos/tx/v1beta1/tx.proto +++ b/proto/cosmos/tx/v1beta1/tx.proto @@ -232,7 +232,7 @@ message Fee { // gas_limit is the maximum gas that can be used in transaction processing // before an out of gas error occurs - uint64 gas_limit = 2 [(cosmos_proto.scalar) = "cosmos.Int"]; + uint64 gas_limit = 2; // if unset, the first signer is responsible for paying the fees. If set, the specified account must pay the fees. // the payer must be a tx signer (and thus have signed this field in AuthInfo). From 084c2a95172ae83383e3ff7703af13d4e2224b0d Mon Sep 17 00:00:00 2001 From: Andrei Ivasko Date: Tue, 17 Aug 2021 14:45:18 +0300 Subject: [PATCH 12/34] cleanup --- proto/cosmos/base/abci/v1beta1/abci.proto | 15 +++++++-------- .../base/snapshots/v1beta1/snapshot.proto | 1 - .../base/store/v1beta1/commit_info.proto | 1 - .../cosmos/base/store/v1beta1/snapshot.proto | 1 - proto/cosmos/base/v1beta1/coin.proto | 2 +- .../distribution/v1beta1/distribution.proto | 3 +++ proto/cosmos/distribution/v1beta1/tx.proto | 4 ++-- proto/cosmos/gov/v1beta1/query.proto | 6 +++--- proto/cosmos/staking/v1beta1/staking.proto | 19 +++++++++++-------- proto/cosmos/tx/signing/v1beta1/signing.proto | 1 - proto/cosmos/upgrade/v1beta1/query.proto | 1 - proto/cosmos/vesting/v1beta1/vesting.proto | 1 - 12 files changed, 27 insertions(+), 28 deletions(-) diff --git a/proto/cosmos/base/abci/v1beta1/abci.proto b/proto/cosmos/base/abci/v1beta1/abci.proto index 189b79658898..c17fd646a4d8 100644 --- a/proto/cosmos/base/abci/v1beta1/abci.proto +++ b/proto/cosmos/base/abci/v1beta1/abci.proto @@ -4,7 +4,6 @@ package cosmos.base.abci.v1beta1; import "gogoproto/gogo.proto"; import "tendermint/abci/types.proto"; import "google/protobuf/any.proto"; -import "cosmos_proto/cosmos.proto"; option go_package = "github.com/cosmos/cosmos-sdk/types"; option (gogoproto.goproto_stringer_all) = false; @@ -14,13 +13,13 @@ option (gogoproto.goproto_stringer_all) = false; message TxResponse { option (gogoproto.goproto_getters) = false; // The block height - int64 height = 1 [(cosmos_proto.scalar) = "cosmos.Int"]; + int64 height = 1; // The transaction hash. string txhash = 2 [(gogoproto.customname) = "TxHash"]; // Namespace for the Code string codespace = 3; // Response code. - uint32 code = 4 [(cosmos_proto.scalar) = "cosmos.Int"]; + uint32 code = 4; // Result bytes, if any. string data = 5; // The output of the application's logger (raw string). May be @@ -31,9 +30,9 @@ message TxResponse { // Additional information. May be non-deterministic. string info = 8; // Amount of gas requested for transaction. - int64 gas_wanted = 9 [(cosmos_proto.scalar) = "cosmos.Int"]; + int64 gas_wanted = 9; // Amount of gas consumed by transaction. - int64 gas_used = 10 [(cosmos_proto.scalar) = "cosmos.Int"]; + int64 gas_used = 10; // The request transaction bytes. google.protobuf.Any tx = 11; // Time of the previous block. For heights > 1, it's the weighted median of @@ -46,7 +45,7 @@ message TxResponse { message ABCIMessageLog { option (gogoproto.stringer) = true; - uint32 msg_index = 1 [(cosmos_proto.scalar) = "cosmos.Int"]; + uint32 msg_index = 1; string log = 2; // Events contains a slice of Event objects that were emitted during some @@ -73,10 +72,10 @@ message Attribute { // GasInfo defines tx execution gas context. message GasInfo { // GasWanted is the maximum units of work we allow this tx to perform. - uint64 gas_wanted = 1 [(cosmos_proto.scalar) = "cosmos.Int", (gogoproto.moretags) = "yaml:\"gas_wanted\""]; + uint64 gas_wanted = 1 [(gogoproto.moretags) = "yaml:\"gas_wanted\""]; // GasUsed is the amount of gas actually consumed. - uint64 gas_used = 2 [(cosmos_proto.scalar) = "cosmos.Int", (gogoproto.moretags) = "yaml:\"gas_used\""]; + uint64 gas_used = 2 [(gogoproto.moretags) = "yaml:\"gas_used\""]; } // Result is the union of ResponseFormat and ResponseCheckTx. diff --git a/proto/cosmos/base/snapshots/v1beta1/snapshot.proto b/proto/cosmos/base/snapshots/v1beta1/snapshot.proto index 3a3ab3f88ffc..9ac5a7c31be4 100644 --- a/proto/cosmos/base/snapshots/v1beta1/snapshot.proto +++ b/proto/cosmos/base/snapshots/v1beta1/snapshot.proto @@ -2,7 +2,6 @@ syntax = "proto3"; package cosmos.base.snapshots.v1beta1; import "gogoproto/gogo.proto"; -import "cosmos_proto/cosmos.proto"; option go_package = "github.com/cosmos/cosmos-sdk/snapshots/types"; diff --git a/proto/cosmos/base/store/v1beta1/commit_info.proto b/proto/cosmos/base/store/v1beta1/commit_info.proto index d683101aa4e7..7521c3a6ff82 100644 --- a/proto/cosmos/base/store/v1beta1/commit_info.proto +++ b/proto/cosmos/base/store/v1beta1/commit_info.proto @@ -2,7 +2,6 @@ syntax = "proto3"; package cosmos.base.store.v1beta1; import "gogoproto/gogo.proto"; -import "cosmos_proto/cosmos.proto"; option go_package = "github.com/cosmos/cosmos-sdk/store/types"; diff --git a/proto/cosmos/base/store/v1beta1/snapshot.proto b/proto/cosmos/base/store/v1beta1/snapshot.proto index 9bed8e95b60b..834855093b24 100644 --- a/proto/cosmos/base/store/v1beta1/snapshot.proto +++ b/proto/cosmos/base/store/v1beta1/snapshot.proto @@ -2,7 +2,6 @@ syntax = "proto3"; package cosmos.base.store.v1beta1; import "gogoproto/gogo.proto"; -import "cosmos_proto/cosmos.proto"; option go_package = "github.com/cosmos/cosmos-sdk/store/types"; diff --git a/proto/cosmos/base/v1beta1/coin.proto b/proto/cosmos/base/v1beta1/coin.proto index a9d561229af7..79dadf66252f 100644 --- a/proto/cosmos/base/v1beta1/coin.proto +++ b/proto/cosmos/base/v1beta1/coin.proto @@ -16,7 +16,7 @@ message Coin { option (gogoproto.equal) = true; string denom = 1; - string amount = 2 [(gogoproto.customtype) = "Int", (gogoproto.nullable) = false]; + string amount = 2 [(cosmos_proto.scalar) = "cosmos.Int", (gogoproto.customtype) = "Int", (gogoproto.nullable) = false]; } // DecCoin defines a token with a denomination and a decimal amount. diff --git a/proto/cosmos/distribution/v1beta1/distribution.proto b/proto/cosmos/distribution/v1beta1/distribution.proto index 6f5bf632f399..3b005ae63621 100644 --- a/proto/cosmos/distribution/v1beta1/distribution.proto +++ b/proto/cosmos/distribution/v1beta1/distribution.proto @@ -12,16 +12,19 @@ import "cosmos_proto/cosmos.proto"; message Params { option (gogoproto.goproto_stringer) = false; string community_tax = 1 [ + (cosmos_proto.scalar) = "cosmos.Dec", (gogoproto.moretags) = "yaml:\"community_tax\"", (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Dec", (gogoproto.nullable) = false ]; string base_proposer_reward = 2 [ + (cosmos_proto.scalar) = "cosmos.Dec", (gogoproto.moretags) = "yaml:\"base_proposer_reward\"", (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Dec", (gogoproto.nullable) = false ]; string bonus_proposer_reward = 3 [ + (cosmos_proto.scalar) = "cosmos.Dec", (gogoproto.moretags) = "yaml:\"bonus_proposer_reward\"", (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Dec", (gogoproto.nullable) = false diff --git a/proto/cosmos/distribution/v1beta1/tx.proto b/proto/cosmos/distribution/v1beta1/tx.proto index 92415cb7d06a..7bf1bee3fb0c 100644 --- a/proto/cosmos/distribution/v1beta1/tx.proto +++ b/proto/cosmos/distribution/v1beta1/tx.proto @@ -46,8 +46,8 @@ message MsgWithdrawDelegatorReward { option (gogoproto.equal) = false; option (gogoproto.goproto_getters) = false; - string delegator_address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString",(gogoproto.moretags) = "yaml:\"delegator_address\""]; - string validator_address = 2 [(cosmos_proto.scalar) = "cosmos.AddressString",(gogoproto.moretags) = "yaml:\"validator_address\""]; + string delegator_address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString", (gogoproto.moretags) = "yaml:\"delegator_address\""]; + string validator_address = 2 [(cosmos_proto.scalar) = "cosmos.AddressString", (gogoproto.moretags) = "yaml:\"validator_address\""]; } // MsgWithdrawDelegatorRewardResponse defines the Msg/WithdrawDelegatorReward response type. diff --git a/proto/cosmos/gov/v1beta1/query.proto b/proto/cosmos/gov/v1beta1/query.proto index a75e10f51a7a..9757f8273c3f 100644 --- a/proto/cosmos/gov/v1beta1/query.proto +++ b/proto/cosmos/gov/v1beta1/query.proto @@ -149,7 +149,7 @@ message QueryDepositRequest { option (gogoproto.equal) = false; // proposal_id defines the unique id of the proposal. - uint64 proposal_id = 1 [(cosmos_proto.scalar) = "cosmos.Int"]; + uint64 proposal_id = 1; // depositor defines the deposit addresses from the proposals. string depositor = 2 [(cosmos_proto.scalar) = "cosmos.AddressString"]; @@ -164,7 +164,7 @@ message QueryDepositResponse { // QueryDepositsRequest is the request type for the Query/Deposits RPC method. message QueryDepositsRequest { // proposal_id defines the unique id of the proposal. - uint64 proposal_id = 1 [(cosmos_proto.scalar) = "cosmos.Int"]; + uint64 proposal_id = 1; // pagination defines an optional pagination for the request. cosmos.base.query.v1beta1.PageRequest pagination = 2; @@ -181,7 +181,7 @@ message QueryDepositsResponse { // QueryTallyResultRequest is the request type for the Query/Tally RPC method. message QueryTallyResultRequest { // proposal_id defines the unique id of the proposal. - uint64 proposal_id = 1 [(cosmos_proto.scalar) = "cosmos.Int"]; + uint64 proposal_id = 1; } // QueryTallyResultResponse is the response type for the Query/Tally RPC method. diff --git a/proto/cosmos/staking/v1beta1/staking.proto b/proto/cosmos/staking/v1beta1/staking.proto index 522edb66ae7d..c5158c4422b5 100644 --- a/proto/cosmos/staking/v1beta1/staking.proto +++ b/proto/cosmos/staking/v1beta1/staking.proto @@ -105,7 +105,7 @@ message Validator { // description defines the description terms for the validator. Description description = 7 [(gogoproto.nullable) = false]; // unbonding_height defines, if unbonding, the height at which this validator has begun unbonding. - int64 unbonding_height = 8 [(cosmos_proto.scalar) = "cosmos.Int", (gogoproto.moretags) = "yaml:\"unbonding_height\""]; + int64 unbonding_height = 8 [(gogoproto.moretags) = "yaml:\"unbonding_height\""]; // unbonding_time defines, if unbonding, the min time for the validator to complete unbonding. google.protobuf.Timestamp unbonding_time = 9 [(gogoproto.nullable) = false, (gogoproto.stdtime) = true, (gogoproto.moretags) = "yaml:\"unbonding_time\""]; @@ -113,6 +113,7 @@ message Validator { Commission commission = 10 [(gogoproto.nullable) = false]; // min_self_delegation is the validator's self declared minimum self delegation. string min_self_delegation = 11 [ + (cosmos_proto.scalar) = "cosmos.Int", (gogoproto.moretags) = "yaml:\"min_self_delegation\"", (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Int", (gogoproto.nullable) = false @@ -138,7 +139,6 @@ message ValAddresses { option (gogoproto.goproto_stringer) = false; option (gogoproto.stringer) = true; - // ? repeated string addresses = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; } @@ -236,19 +236,20 @@ message RedelegationEntry { option (gogoproto.goproto_stringer) = false; // creation_height defines the height which the redelegation took place. - int64 creation_height = 1 [(cosmos_proto.scalar) = "cosmos.Int", (gogoproto.moretags) = "yaml:\"creation_height\""]; + int64 creation_height = 1 [(gogoproto.moretags) = "yaml:\"creation_height\""]; // completion_time defines the unix time for redelegation completion. google.protobuf.Timestamp completion_time = 2 [(gogoproto.nullable) = false, (gogoproto.stdtime) = true, (gogoproto.moretags) = "yaml:\"completion_time\""]; // initial_balance defines the initial balance when redelegation started. string initial_balance = 3 [ + (cosmos_proto.scalar) = "cosmos.Int", (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Int", (gogoproto.nullable) = false, (gogoproto.moretags) = "yaml:\"initial_balance\"" ]; // shares_dst is the amount of destination-validator shares created by redelegation. string shares_dst = 4 - [(gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Dec", (gogoproto.nullable) = false]; + [(cosmos_proto.scalar) = "cosmos.Dec", (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Dec", (gogoproto.nullable) = false]; } // Redelegation contains the list of a particular delegator's redelegating bonds @@ -277,11 +278,11 @@ message Params { google.protobuf.Duration unbonding_time = 1 [(gogoproto.nullable) = false, (gogoproto.stdduration) = true, (gogoproto.moretags) = "yaml:\"unbonding_time\""]; // max_validators is the maximum number of validators. - uint32 max_validators = 2 [(cosmos_proto.scalar) = "cosmos.Int", (gogoproto.moretags) = "yaml:\"max_validators\""]; + uint32 max_validators = 2 [(gogoproto.moretags) = "yaml:\"max_validators\""]; // max_entries is the max entries for either unbonding delegation or redelegation (per pair/trio). - uint32 max_entries = 3 [(cosmos_proto.scalar) = "cosmos.Int", (gogoproto.moretags) = "yaml:\"max_entries\""]; + uint32 max_entries = 3 [(gogoproto.moretags) = "yaml:\"max_entries\""]; // historical_entries is the number of historical entries to persist. - uint32 historical_entries = 4 [(cosmos_proto.scalar) = "cosmos.Int", (gogoproto.moretags) = "yaml:\"historical_entries\""]; + uint32 historical_entries = 4 [(gogoproto.moretags) = "yaml:\"historical_entries\""]; // bond_denom defines the bondable coin denomination. string bond_denom = 5 [(gogoproto.moretags) = "yaml:\"bond_denom\""]; } @@ -304,7 +305,7 @@ message RedelegationEntryResponse { option (gogoproto.equal) = true; RedelegationEntry redelegation_entry = 1 [(gogoproto.nullable) = false]; - string balance = 4 [(gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Int", (gogoproto.nullable) = false]; + string balance = 4 [(cosmos_proto.scalar) = "cosmos.Int", (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Int", (gogoproto.nullable) = false]; } // RedelegationResponse is equivalent to a Redelegation except that its entries @@ -323,11 +324,13 @@ message Pool { option (gogoproto.description) = true; option (gogoproto.equal) = true; string not_bonded_tokens = 1 [ + (cosmos_proto.scalar) = "cosmos.Int", (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Int", (gogoproto.jsontag) = "not_bonded_tokens", (gogoproto.nullable) = false ]; string bonded_tokens = 2 [ + (cosmos_proto.scalar) = "cosmos.Int", (gogoproto.jsontag) = "bonded_tokens", (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Int", (gogoproto.nullable) = false, diff --git a/proto/cosmos/tx/signing/v1beta1/signing.proto b/proto/cosmos/tx/signing/v1beta1/signing.proto index e268f6de427c..6a49860c2d54 100644 --- a/proto/cosmos/tx/signing/v1beta1/signing.proto +++ b/proto/cosmos/tx/signing/v1beta1/signing.proto @@ -3,7 +3,6 @@ package cosmos.tx.signing.v1beta1; import "cosmos/crypto/multisig/v1beta1/multisig.proto"; import "google/protobuf/any.proto"; -import "cosmos_proto/cosmos.proto"; option go_package = "github.com/cosmos/cosmos-sdk/types/tx/signing"; diff --git a/proto/cosmos/upgrade/v1beta1/query.proto b/proto/cosmos/upgrade/v1beta1/query.proto index 9bdbcf929ccf..0703ef347b83 100644 --- a/proto/cosmos/upgrade/v1beta1/query.proto +++ b/proto/cosmos/upgrade/v1beta1/query.proto @@ -4,7 +4,6 @@ package cosmos.upgrade.v1beta1; import "google/protobuf/any.proto"; import "google/api/annotations.proto"; import "cosmos/upgrade/v1beta1/upgrade.proto"; -import "cosmos_proto/cosmos.proto"; option go_package = "github.com/cosmos/cosmos-sdk/x/upgrade/types"; diff --git a/proto/cosmos/vesting/v1beta1/vesting.proto b/proto/cosmos/vesting/v1beta1/vesting.proto index a125ea40d558..26e786831e4c 100644 --- a/proto/cosmos/vesting/v1beta1/vesting.proto +++ b/proto/cosmos/vesting/v1beta1/vesting.proto @@ -4,7 +4,6 @@ package cosmos.vesting.v1beta1; import "gogoproto/gogo.proto"; import "cosmos/base/v1beta1/coin.proto"; import "cosmos/auth/v1beta1/auth.proto"; -import "cosmos_proto/cosmos.proto"; option go_package = "github.com/cosmos/cosmos-sdk/x/auth/vesting/types"; From e4bd12062e3619c6e82d522dec9e40ca458504e0 Mon Sep 17 00:00:00 2001 From: Andrei Ivasko Date: Tue, 17 Aug 2021 14:58:17 +0300 Subject: [PATCH 13/34] fix staking.proto --- proto/cosmos/staking/v1beta1/staking.proto | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/proto/cosmos/staking/v1beta1/staking.proto b/proto/cosmos/staking/v1beta1/staking.proto index c5158c4422b5..799875721472 100644 --- a/proto/cosmos/staking/v1beta1/staking.proto +++ b/proto/cosmos/staking/v1beta1/staking.proto @@ -28,15 +28,17 @@ message CommissionRates { option (gogoproto.goproto_stringer) = false; // rate is the commission rate charged to delegators, as a fraction. - string rate = 1 [(gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Dec", (gogoproto.nullable) = false]; + string rate = 1 [(cosmos_proto.scalar) = "cosmos.Dec", (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Dec", (gogoproto.nullable) = false]; // max_rate defines the maximum commission rate which validator can ever charge, as a fraction. string max_rate = 2 [ + (cosmos_proto.scalar) = "cosmos.Dec", (gogoproto.moretags) = "yaml:\"max_rate\"", (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Dec", (gogoproto.nullable) = false ]; // max_change_rate defines the maximum daily increase of the validator commission, as a fraction. string max_change_rate = 3 [ + (cosmos_proto.scalar) = "cosmos.Dec", (gogoproto.moretags) = "yaml:\"max_change_rate\"", (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Dec", (gogoproto.nullable) = false @@ -95,9 +97,10 @@ message Validator { // status is the validator status (bonded/unbonding/unbonded). BondStatus status = 4; // tokens define the delegated tokens (incl. self-delegation). - string tokens = 5 [(gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Int", (gogoproto.nullable) = false]; + string tokens = 5 [(cosmos_proto.scalar) = "cosmos.Int", (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Int", (gogoproto.nullable) = false]; // delegator_shares defines total shares issued to a validator's delegators. string delegator_shares = 6 [ + (cosmos_proto.scalar) = "cosmos.Dec", (gogoproto.moretags) = "yaml:\"delegator_shares\"", (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Dec", (gogoproto.nullable) = false @@ -191,7 +194,7 @@ message Delegation { // validator_address is the bech32-encoded address of the validator. string validator_address = 2 [(cosmos_proto.scalar) = "cosmos.AddressString", (gogoproto.moretags) = "yaml:\"validator_address\""]; // shares define the delegation shares received. - string shares = 3 [(gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Dec", (gogoproto.nullable) = false]; + string shares = 3 [(cosmos_proto.scalar) = "cosmos.Dec", (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Dec", (gogoproto.nullable) = false]; } // UnbondingDelegation stores all of a single delegator's unbonding bonds From ca11a3d88272f27149841280e56cd1bdb362bb93 Mon Sep 17 00:00:00 2001 From: Andrei Ivasko Date: Wed, 18 Aug 2021 16:29:55 +0300 Subject: [PATCH 14/34] fix bank.proto --- proto/cosmos/bank/v1beta1/bank.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proto/cosmos/bank/v1beta1/bank.proto b/proto/cosmos/bank/v1beta1/bank.proto index 8ba8cbb3da46..f05a899f0491 100644 --- a/proto/cosmos/bank/v1beta1/bank.proto +++ b/proto/cosmos/bank/v1beta1/bank.proto @@ -68,7 +68,7 @@ message DenomUnit { // 1 denom = 1^exponent base_denom // (e.g. with a base_denom of uatom, one can create a DenomUnit of 'atom' with // exponent = 6, thus: 1 atom = 10^6 uatom). - uint32 exponent = 2 [(cosmos_proto.scalar) = "cosmos.Int"]; + uint32 exponent = 2; // aliases is a list of string aliases for the given denom repeated string aliases = 3; } From d4474dfbf821f63026c1caea3b663f34a8e1a4c1 Mon Sep 17 00:00:00 2001 From: Andrei Ivasko Date: Wed, 18 Aug 2021 16:32:16 +0300 Subject: [PATCH 15/34] fix abci.proto --- proto/cosmos/base/abci/v1beta1/abci.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proto/cosmos/base/abci/v1beta1/abci.proto b/proto/cosmos/base/abci/v1beta1/abci.proto index c17fd646a4d8..72da2aacc36e 100644 --- a/proto/cosmos/base/abci/v1beta1/abci.proto +++ b/proto/cosmos/base/abci/v1beta1/abci.proto @@ -125,7 +125,7 @@ message SearchTxsResult { // Count of all txs uint64 total_count = 1 [(gogoproto.moretags) = "yaml:\"total_count\"", (gogoproto.jsontag) = "total_count"]; // Count of txs in current page - uint64 count = 2 ; + uint64 count = 2; // Index of current page, start from 1 uint64 page_number = 3 [(gogoproto.moretags) = "yaml:\"page_number\"", (gogoproto.jsontag) = "page_number"]; // Count of total pages From 5f47cd4b04e2e148ab89fbb4d237ab4595634c2a Mon Sep 17 00:00:00 2001 From: Andrei Ivasko Date: Wed, 18 Aug 2021 16:33:55 +0300 Subject: [PATCH 16/34] fix commit_info.proto --- proto/cosmos/base/store/v1beta1/commit_info.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proto/cosmos/base/store/v1beta1/commit_info.proto b/proto/cosmos/base/store/v1beta1/commit_info.proto index 7521c3a6ff82..98a33d30e754 100644 --- a/proto/cosmos/base/store/v1beta1/commit_info.proto +++ b/proto/cosmos/base/store/v1beta1/commit_info.proto @@ -9,7 +9,7 @@ option go_package = "github.com/cosmos/cosmos-sdk/store/types"; // a version/height. message CommitInfo { int64 version = 1; - repeated StoreInfo store_infos = 2; + repeated StoreInfo store_infos = 2 [(gogoproto.nullable) = false]; } // StoreInfo defines store-specific commit information. It contains a reference From 0376fe139481362f35911b68280c2dc9ca6915ed Mon Sep 17 00:00:00 2001 From: Andrei Ivasko Date: Wed, 18 Aug 2021 16:35:40 +0300 Subject: [PATCH 17/34] fix capability.proto --- proto/cosmos/capability/v1beta1/capability.proto | 1 + 1 file changed, 1 insertion(+) diff --git a/proto/cosmos/capability/v1beta1/capability.proto b/proto/cosmos/capability/v1beta1/capability.proto index ea5d03f7a791..b76713e1debc 100644 --- a/proto/cosmos/capability/v1beta1/capability.proto +++ b/proto/cosmos/capability/v1beta1/capability.proto @@ -9,6 +9,7 @@ import "gogoproto/gogo.proto"; // provided to a Capability must be globally unique. message Capability { option (gogoproto.goproto_stringer) = false; + uint64 index = 1 [(gogoproto.moretags) = "yaml:\"index\""]; } From 505cdd2e7b7d51fdfebb910ac0ffae6033f989e5 Mon Sep 17 00:00:00 2001 From: Andrei Ivasko Date: Wed, 18 Aug 2021 16:40:35 +0300 Subject: [PATCH 18/34] fix tx.proto --- proto/cosmos/distribution/v1beta1/tx.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proto/cosmos/distribution/v1beta1/tx.proto b/proto/cosmos/distribution/v1beta1/tx.proto index 7bf1bee3fb0c..53d09f7e7e35 100644 --- a/proto/cosmos/distribution/v1beta1/tx.proto +++ b/proto/cosmos/distribution/v1beta1/tx.proto @@ -33,7 +33,7 @@ message MsgSetWithdrawAddress { option (gogoproto.equal) = false; option (gogoproto.goproto_getters) = false; - string delegator_address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString", (gogoproto.moretags) = "yaml:\"delegator_address\""]; + string delegator_address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString", (gogoproto.moretags) = "yaml:\"delegator_address\""]; string withdraw_address = 2 [(cosmos_proto.scalar) = "cosmos.AddressString", (gogoproto.moretags) = "yaml:\"withdraw_address\""]; } From 72326910d0b705c6d3675c5e2f0e6389ccd99ec7 Mon Sep 17 00:00:00 2001 From: Andrei Ivasko Date: Wed, 18 Aug 2021 16:41:41 +0300 Subject: [PATCH 19/34] fix evidence.proto --- proto/cosmos/evidence/v1beta1/evidence.proto | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/proto/cosmos/evidence/v1beta1/evidence.proto b/proto/cosmos/evidence/v1beta1/evidence.proto index cf582bd58860..ea04edc635b7 100644 --- a/proto/cosmos/evidence/v1beta1/evidence.proto +++ b/proto/cosmos/evidence/v1beta1/evidence.proto @@ -15,8 +15,8 @@ message Equivocation { option (gogoproto.goproto_getters) = false; option (gogoproto.equal) = false; - int64 height = 1 ; + int64 height = 1; google.protobuf.Timestamp time = 2 [(gogoproto.nullable) = false, (gogoproto.stdtime) = true]; - int64 power = 3 ; + int64 power = 3; string consensus_address = 4 [(cosmos_proto.scalar) = "cosmos.AddressString", (gogoproto.moretags) = "yaml:\"consensus_address\""]; } \ No newline at end of file From 57dbae510db0695d8d84ff39d7d8029a9007bde4 Mon Sep 17 00:00:00 2001 From: Andrei Ivasko Date: Wed, 18 Aug 2021 16:45:25 +0300 Subject: [PATCH 20/34] fix types.proto --- proto/cosmos/group/v1beta1/types.proto | 1 - 1 file changed, 1 deletion(-) diff --git a/proto/cosmos/group/v1beta1/types.proto b/proto/cosmos/group/v1beta1/types.proto index dc05d7b9db35..7ef8ad43bd06 100644 --- a/proto/cosmos/group/v1beta1/types.proto +++ b/proto/cosmos/group/v1beta1/types.proto @@ -145,7 +145,6 @@ message Proposal { bytes metadata = 3; // proposers are the account addresses of the proposers. - // ? repeated string proposers = 4 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // submitted_at is a timestamp specifying when a proposal was submitted. From 0730f2abd2c520b937478d83ea2a434669ffe38f Mon Sep 17 00:00:00 2001 From: Andrei Ivasko Date: Wed, 18 Aug 2021 16:47:01 +0300 Subject: [PATCH 21/34] fix mint.proto --- proto/cosmos/mint/v1beta1/mint.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proto/cosmos/mint/v1beta1/mint.proto b/proto/cosmos/mint/v1beta1/mint.proto index 36dba0b9410e..97778873f7c8 100644 --- a/proto/cosmos/mint/v1beta1/mint.proto +++ b/proto/cosmos/mint/v1beta1/mint.proto @@ -9,7 +9,7 @@ import "cosmos_proto/cosmos.proto"; // Minter represents the minting state. message Minter { // current annual inflation rate - string inflation = 1[ + string inflation = 1 [ (cosmos_proto.scalar) = "cosmos.Dec", (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Dec", (gogoproto.nullable) = false From 3b4130d5ce476a75b7aba878814afacc19379302 Mon Sep 17 00:00:00 2001 From: Andrei Ivasko Date: Thu, 19 Aug 2021 11:55:01 +0300 Subject: [PATCH 22/34] update go_package in cosmos.proto --- third_party/proto/cosmos_proto/cosmos.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/third_party/proto/cosmos_proto/cosmos.proto b/third_party/proto/cosmos_proto/cosmos.proto index c017141aa70c..3f1baa2c9fcc 100644 --- a/third_party/proto/cosmos_proto/cosmos.proto +++ b/third_party/proto/cosmos_proto/cosmos.proto @@ -3,7 +3,7 @@ package cosmos_proto; import "google/protobuf/descriptor.proto"; -option go_package = "github.com/regen-network/cosmos-proto"; +option go_package = "github.com/cosmos/cosmos-proto"; extend google.protobuf.MessageOptions { string interface_type = 93001; From 0fffd04fae21036860d4faf1c8275773e3369e64 Mon Sep 17 00:00:00 2001 From: Andrei Ivasko Date: Thu, 19 Aug 2021 12:03:32 +0300 Subject: [PATCH 23/34] remove interface_type from MessageOptions in cosmos.proto --- third_party/proto/cosmos_proto/cosmos.proto | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/third_party/proto/cosmos_proto/cosmos.proto b/third_party/proto/cosmos_proto/cosmos.proto index 3f1baa2c9fcc..e6c42c623d57 100644 --- a/third_party/proto/cosmos_proto/cosmos.proto +++ b/third_party/proto/cosmos_proto/cosmos.proto @@ -6,9 +6,7 @@ import "google/protobuf/descriptor.proto"; option go_package = "github.com/cosmos/cosmos-proto"; extend google.protobuf.MessageOptions { - string interface_type = 93001; - - string implements_interface = 93002; + string implements_interface = 93001; } extend google.protobuf.FieldOptions { From 1e668e37de7131cb9fb7e0db5869cbd769bfe588 Mon Sep 17 00:00:00 2001 From: Andrei Ivasko Date: Tue, 24 Aug 2021 19:46:08 +0300 Subject: [PATCH 24/34] restore interface_type in cosmos.proto and include *.pb.go --- client/grpc/tmservice/query.pb.go | 141 +-- go.mod | 1 + go.sum | 3 + scripts/protocgen.sh | 4 +- types/coin.pb.go | 30 +- types/tx/tx.pb.go | 127 +- x/auth/types/auth.pb.go | 89 +- x/auth/types/query.pb.go | 81 +- x/auth/vesting/types/tx.pb.go | 57 +- x/authz/authz.pb.go | 2 +- x/authz/event.pb.go | 27 +- x/authz/genesis.pb.go | 49 +- x/authz/query.pb.go | 53 +- x/authz/tx.pb.go | 68 +- x/bank/types/authz.pb.go | 2 +- x/bank/types/bank.pb.go | 87 +- x/bank/types/genesis.pb.go | 53 +- x/bank/types/query.pb.go | 121 +- x/bank/types/tx.pb.go | 60 +- x/crisis/types/tx.pb.go | 37 +- x/distribution/types/distribution.pb.go | 143 +-- x/distribution/types/genesis.pb.go | 133 +- x/distribution/types/query.pb.go | 141 +-- x/distribution/types/tx.pb.go | 75 +- x/evidence/types/evidence.pb.go | 46 +- x/evidence/types/tx.pb.go | 34 +- x/feegrant/feegrant.pb.go | 77 +- x/feegrant/query.pb.go | 59 +- x/feegrant/tx.pb.go | 37 +- x/gov/types/gov.pb.go | 188 +-- x/gov/types/query.pb.go | 127 +- x/gov/types/tx.pb.go | 89 +- x/group/query.pb.go | 117 +- x/group/tx.pb.go | 130 +- x/group/types.pb.go | 167 +-- x/mint/types/mint.pb.go | 60 +- x/slashing/types/genesis.pb.go | 59 +- x/slashing/types/query.pb.go | 71 +- x/slashing/types/slashing.pb.go | 85 +- x/slashing/types/tx.pb.go | 31 +- x/staking/types/authz.pb.go | 63 +- x/staking/types/genesis.pb.go | 67 +- x/staking/types/query.pb.go | 169 +-- x/staking/types/staking.pb.go | 1468 ++++++++++++----------- x/staking/types/tx.pb.go | 114 +- 45 files changed, 2472 insertions(+), 2370 deletions(-) diff --git a/client/grpc/tmservice/query.pb.go b/client/grpc/tmservice/query.pb.go index 92b24cc3246d..2e02dcf4e451 100644 --- a/client/grpc/tmservice/query.pb.go +++ b/client/grpc/tmservice/query.pb.go @@ -6,6 +6,7 @@ package tmservice import ( context "context" fmt "fmt" + _ "github.com/cosmos/cosmos-proto" types "github.com/cosmos/cosmos-sdk/codec/types" query "github.com/cosmos/cosmos-sdk/types/query" _ "github.com/gogo/protobuf/gogoproto" @@ -874,75 +875,77 @@ func init() { } var fileDescriptor_40c93fb3ef485c5d = []byte{ - // 1081 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x56, 0x4d, 0x6f, 0xdc, 0x44, - 0x18, 0x8e, 0x77, 0xdb, 0x6c, 0xf2, 0x2e, 0x82, 0x64, 0x12, 0x1a, 0xc7, 0x4a, 0xb7, 0x61, 0x0f, - 0x6d, 0x42, 0x88, 0xad, 0xdd, 0xb6, 0x69, 0x0f, 0xa5, 0x88, 0x10, 0x48, 0xa3, 0x96, 0x2a, 0x72, - 0x10, 0x07, 0x84, 0x64, 0x79, 0xd7, 0x13, 0x67, 0x94, 0x5d, 0xcf, 0xd4, 0x33, 0x0e, 0x5a, 0xa1, - 0x0a, 0xc4, 0x89, 0x23, 0x12, 0x7f, 0xa1, 0x07, 0xf8, 0x03, 0x1c, 0x11, 0x47, 0x8e, 0x15, 0x48, - 0xa8, 0xe2, 0x84, 0x12, 0x7e, 0x08, 0xf2, 0xcc, 0x78, 0xd7, 0x6e, 0x92, 0xee, 0x6e, 0x0e, 0x48, - 0x3d, 0x79, 0xe6, 0xfd, 0x9a, 0xe7, 0x79, 0x66, 0xde, 0xf1, 0xc0, 0xbb, 0x6d, 0xca, 0xbb, 0x94, - 0x3b, 0x2d, 0x9f, 0x63, 0x47, 0xe0, 0x28, 0xc0, 0x71, 0x97, 0x44, 0xc2, 0x39, 0x6a, 0xb4, 0xb0, - 0xf0, 0x1b, 0xce, 0x93, 0x04, 0xc7, 0x3d, 0x9b, 0xc5, 0x54, 0x50, 0x54, 0x53, 0xb1, 0x76, 0x1a, - 0x6b, 0x0f, 0x62, 0x6d, 0x1d, 0x6b, 0xcd, 0x87, 0x34, 0xa4, 0x32, 0xd4, 0x49, 0x47, 0x2a, 0xcb, - 0x5a, 0x0c, 0x29, 0x0d, 0x3b, 0xd8, 0x91, 0xb3, 0x56, 0xb2, 0xef, 0xf8, 0x91, 0x2e, 0x68, 0x2d, - 0x69, 0x97, 0xcf, 0x88, 0xe3, 0x47, 0x11, 0x15, 0xbe, 0x20, 0x34, 0xe2, 0xda, 0x6b, 0xe5, 0xe0, - 0xb0, 0x26, 0x73, 0x44, 0x8f, 0xe1, 0xcc, 0xb7, 0x94, 0xf3, 0x49, 0xbb, 0xd3, 0xea, 0xd0, 0xf6, - 0xe1, 0xb9, 0xde, 0x7c, 0x6e, 0x81, 0xb2, 0xe4, 0xd7, 0x67, 0xcb, 0xfc, 0x90, 0x44, 0x12, 0x84, - 0x8a, 0xad, 0x7f, 0x6b, 0x40, 0x6d, 0x1b, 0x8b, 0xcf, 0xfd, 0x0e, 0x09, 0x7c, 0x41, 0xe3, 0x3d, - 0x2c, 0x36, 0x7b, 0x0f, 0x30, 0x09, 0x0f, 0x84, 0x8b, 0x9f, 0x24, 0x98, 0x0b, 0x74, 0x05, 0x26, - 0x0f, 0xa4, 0xc1, 0x34, 0x96, 0x8d, 0x95, 0xb2, 0xab, 0x67, 0xe8, 0x13, 0x80, 0x41, 0x39, 0xb3, - 0xb4, 0x6c, 0xac, 0x54, 0x9b, 0xd7, 0xed, 0xbc, 0x84, 0x4a, 0x5b, 0xbd, 0xb6, 0xbd, 0xeb, 0x87, - 0x58, 0xd7, 0x74, 0x73, 0x99, 0xf5, 0x17, 0x06, 0x5c, 0x3b, 0x17, 0x02, 0x67, 0x34, 0xe2, 0x18, - 0xbd, 0x03, 0x6f, 0x48, 0xfe, 0x5e, 0x01, 0x49, 0x55, 0xda, 0x54, 0x28, 0xda, 0x01, 0x38, 0xca, - 0x4a, 0x70, 0xb3, 0xb4, 0x5c, 0x5e, 0xa9, 0x36, 0x57, 0xed, 0x57, 0xef, 0xa8, 0xdd, 0x5f, 0xd4, - 0xcd, 0x25, 0xa3, 0xed, 0x02, 0xb3, 0xb2, 0x64, 0x76, 0x63, 0x28, 0x33, 0x05, 0xb5, 0x40, 0x6d, - 0x1f, 0x96, 0xb6, 0xb1, 0x78, 0xe4, 0x0b, 0xcc, 0x0b, 0xfc, 0x32, 0x69, 0x8b, 0x12, 0x1a, 0x17, - 0x96, 0xf0, 0x2f, 0x03, 0xae, 0x9e, 0xb3, 0xd0, 0xeb, 0x2d, 0xe0, 0x33, 0x03, 0xa6, 0xfb, 0x4b, - 0x20, 0x13, 0x2a, 0x7e, 0x10, 0xc4, 0x98, 0x73, 0x89, 0x7f, 0xda, 0xcd, 0xa6, 0x68, 0x1d, 0x2a, - 0x2c, 0x69, 0x79, 0x87, 0xb8, 0xa7, 0x0f, 0xe2, 0xbc, 0xad, 0x5a, 0xcf, 0xce, 0xba, 0xd2, 0xfe, - 0x30, 0xea, 0xb9, 0x93, 0x2c, 0x69, 0x3d, 0xc4, 0xbd, 0x54, 0x8d, 0x23, 0x2a, 0x48, 0x14, 0x7a, - 0x8c, 0x7e, 0x85, 0x63, 0x89, 0xb0, 0xec, 0x56, 0x95, 0x6d, 0x37, 0x35, 0xa1, 0x35, 0x98, 0x65, - 0x31, 0x65, 0x94, 0xe3, 0xd8, 0x63, 0x31, 0xa1, 0x31, 0x11, 0x3d, 0xf3, 0x92, 0x8c, 0x9b, 0xc9, - 0x1c, 0xbb, 0xda, 0x5e, 0x6f, 0xc0, 0xc2, 0x36, 0x16, 0x9b, 0xa9, 0x98, 0x23, 0x76, 0x4f, 0xfd, - 0x1b, 0x30, 0x4f, 0xa7, 0xe8, 0xcd, 0xba, 0x05, 0x53, 0x6a, 0xb3, 0x48, 0xa0, 0x0f, 0xc5, 0x62, - 0x5e, 0x7b, 0xd5, 0xeb, 0x32, 0x75, 0x67, 0xcb, 0xad, 0xc8, 0xd0, 0x9d, 0x00, 0xad, 0xc3, 0x65, - 0x39, 0xd4, 0x0a, 0x2c, 0x9c, 0x93, 0xe2, 0xaa, 0xa8, 0xfa, 0x02, 0xbc, 0xdd, 0x3f, 0x32, 0xca, - 0xa1, 0x10, 0xd7, 0x9f, 0xc2, 0x95, 0x97, 0x1d, 0xff, 0x27, 0xae, 0x39, 0x98, 0xdd, 0xc6, 0x62, - 0xaf, 0x17, 0xb5, 0x49, 0x14, 0x66, 0x98, 0x6c, 0x40, 0x79, 0xa3, 0xc6, 0x63, 0x42, 0x85, 0x2b, - 0x93, 0x84, 0x33, 0xe5, 0x66, 0xd3, 0xfa, 0xbc, 0x8c, 0x7f, 0x4c, 0x03, 0xbc, 0x13, 0xed, 0xd3, - 0xac, 0xca, 0x6f, 0x06, 0xcc, 0x15, 0xcc, 0xba, 0xce, 0x43, 0x98, 0x0d, 0xf0, 0xbe, 0x9f, 0x74, - 0x84, 0x17, 0xd1, 0x00, 0x7b, 0x24, 0xda, 0xa7, 0x9a, 0xe0, 0xb5, 0x3c, 0x5a, 0xd6, 0x64, 0xf6, - 0x96, 0x0a, 0xec, 0xd7, 0x78, 0x2b, 0x28, 0x1a, 0xd0, 0x97, 0x30, 0xe7, 0x33, 0xd6, 0x21, 0x6d, - 0x79, 0x82, 0xbd, 0x23, 0x1c, 0xf3, 0xc1, 0xfd, 0xb8, 0x36, 0xb4, 0x9f, 0x54, 0xb8, 0x2c, 0x8d, - 0x72, 0x75, 0xb4, 0xbd, 0xfe, 0x53, 0x09, 0xaa, 0xb9, 0x18, 0x84, 0xe0, 0x52, 0xe4, 0x77, 0xb1, - 0xee, 0x07, 0x39, 0x46, 0x8b, 0x30, 0xe5, 0x33, 0xe6, 0x49, 0x7b, 0x49, 0xf7, 0x09, 0x63, 0x8f, - 0x53, 0x97, 0x09, 0x95, 0x0c, 0x50, 0x59, 0x79, 0xf4, 0x14, 0x5d, 0x05, 0x08, 0x89, 0xf0, 0xda, - 0xb4, 0xdb, 0x25, 0x42, 0x1e, 0xf4, 0x69, 0x77, 0x3a, 0x24, 0xe2, 0x23, 0x69, 0x48, 0xdd, 0xad, - 0x84, 0x74, 0x02, 0x4f, 0xf8, 0x21, 0x37, 0x2f, 0x2b, 0xb7, 0xb4, 0x7c, 0xe6, 0x87, 0x5c, 0x66, - 0xd3, 0x3e, 0xd7, 0x49, 0x9d, 0x4d, 0x35, 0x52, 0xf4, 0x71, 0x96, 0x1d, 0x60, 0xc6, 0xcd, 0x8a, - 0xbc, 0x5a, 0xae, 0x0f, 0x93, 0xe2, 0x53, 0x1a, 0x24, 0x1d, 0xac, 0x57, 0xd9, 0xc2, 0x8c, 0xa3, - 0xf7, 0x00, 0xa9, 0x1c, 0x8f, 0x07, 0x87, 0xfd, 0xd5, 0xa6, 0xe4, 0x6a, 0x33, 0xca, 0xb3, 0x17, - 0x1c, 0x66, 0x52, 0x3d, 0x80, 0x49, 0x55, 0x22, 0x15, 0x89, 0xf9, 0xe2, 0x20, 0x13, 0x29, 0x1d, - 0xe7, 0x95, 0x28, 0x15, 0x95, 0x98, 0x81, 0x32, 0x4f, 0xba, 0x5a, 0x9f, 0x74, 0xd8, 0xfc, 0x7e, - 0x1a, 0x2a, 0x7b, 0x38, 0x3e, 0x22, 0x6d, 0x8c, 0x7e, 0x36, 0xa0, 0x9a, 0x3b, 0x43, 0xa8, 0x39, - 0x8c, 0xc6, 0xe9, 0x73, 0x68, 0xdd, 0x1c, 0x2b, 0x47, 0x1d, 0xd2, 0x7a, 0xe3, 0xbb, 0x3f, 0xff, - 0xfd, 0xb1, 0xb4, 0x86, 0x56, 0x9d, 0x21, 0x2f, 0x9a, 0xfe, 0x11, 0x46, 0xcf, 0x0c, 0x80, 0x41, - 0xdb, 0xa0, 0xc6, 0x08, 0xcb, 0x16, 0xfb, 0xce, 0x6a, 0x8e, 0x93, 0xa2, 0x81, 0x3a, 0x12, 0xe8, - 0x2a, 0xba, 0x31, 0x0c, 0xa8, 0x6e, 0x56, 0xf4, 0x8b, 0x01, 0x6f, 0x16, 0x6f, 0x1c, 0x74, 0x7b, - 0x84, 0x75, 0x4f, 0x5f, 0x5d, 0xd6, 0xc6, 0xb8, 0x69, 0x1a, 0xf2, 0x6d, 0x09, 0xd9, 0x41, 0xeb, - 0xc3, 0x20, 0xcb, 0x2b, 0x8a, 0x3b, 0x1d, 0x59, 0x03, 0xfd, 0x6a, 0xc0, 0xcc, 0xcb, 0x97, 0x38, - 0xba, 0x33, 0x02, 0x86, 0xb3, 0xfe, 0x14, 0xd6, 0xdd, 0xf1, 0x13, 0x35, 0xfc, 0x3b, 0x12, 0x7e, - 0x03, 0x39, 0x23, 0xc2, 0xff, 0x5a, 0xfd, 0x83, 0x9e, 0xa2, 0x3f, 0x8c, 0xdc, 0x4f, 0x20, 0xff, - 0x6e, 0x40, 0xf7, 0x46, 0x56, 0xf2, 0x8c, 0x77, 0x8d, 0xf5, 0xfe, 0x05, 0xb3, 0x35, 0x9f, 0x7b, - 0x92, 0xcf, 0x06, 0xba, 0x35, 0x8c, 0xcf, 0xe0, 0xc9, 0x81, 0x45, 0x7f, 0x57, 0xfe, 0x36, 0xe4, - 0xdf, 0xf8, 0xac, 0xf7, 0x24, 0xba, 0x3f, 0x02, 0xb0, 0x57, 0xbc, 0x85, 0xad, 0x0f, 0x2e, 0x9c, - 0xaf, 0xa9, 0xdd, 0x97, 0xd4, 0xee, 0xa2, 0x8d, 0xf1, 0xa8, 0x65, 0x3b, 0xb6, 0xf9, 0xe8, 0xf7, - 0xe3, 0x9a, 0xf1, 0xfc, 0xb8, 0x66, 0xfc, 0x73, 0x5c, 0x33, 0x7e, 0x38, 0xa9, 0x4d, 0x3c, 0x3f, - 0xa9, 0x4d, 0xbc, 0x38, 0xa9, 0x4d, 0x7c, 0xd1, 0x0c, 0x89, 0x38, 0x48, 0x5a, 0x76, 0x9b, 0x76, - 0xb3, 0xda, 0xea, 0xb3, 0xce, 0x83, 0x43, 0xa7, 0xdd, 0x21, 0x38, 0x12, 0x4e, 0x18, 0xb3, 0xb6, - 0x23, 0xba, 0x5c, 0x5d, 0x66, 0xad, 0x49, 0xf9, 0x3a, 0xba, 0xf9, 0x5f, 0x00, 0x00, 0x00, 0xff, - 0xff, 0x9d, 0x37, 0x87, 0xe4, 0x25, 0x0d, 0x00, 0x00, + // 1106 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x56, 0x4d, 0x6f, 0x1b, 0x45, + 0x18, 0xee, 0xda, 0x6d, 0x9c, 0xbc, 0x46, 0x90, 0x4c, 0x42, 0xe3, 0xac, 0x52, 0x37, 0xf8, 0xd0, + 0x26, 0x84, 0xec, 0xca, 0x6e, 0x9b, 0xf6, 0x50, 0x8a, 0x1a, 0x02, 0x69, 0xd4, 0x52, 0x45, 0x1b, + 0xc4, 0x01, 0x21, 0xad, 0xc6, 0xde, 0xc9, 0x66, 0x14, 0x7b, 0x67, 0xba, 0x33, 0x1b, 0x64, 0xa1, + 0x0a, 0xc4, 0x89, 0x23, 0x12, 0x7f, 0x81, 0x03, 0xdc, 0x11, 0xc7, 0x8a, 0x23, 0xc7, 0xaa, 0x48, + 0xa8, 0xe2, 0x84, 0x12, 0x7e, 0x08, 0xda, 0x99, 0x59, 0x67, 0xb7, 0x49, 0x6a, 0x27, 0x07, 0x24, + 0x4e, 0xbb, 0xf3, 0x7e, 0xcd, 0xf3, 0x3c, 0xf3, 0xce, 0x07, 0xbc, 0xdb, 0x61, 0xa2, 0xc7, 0x84, + 0xdb, 0xc6, 0x82, 0xb8, 0x92, 0x44, 0x01, 0x89, 0x7b, 0x34, 0x92, 0xee, 0x7e, 0xb3, 0x4d, 0x24, + 0x6e, 0xba, 0x4f, 0x12, 0x12, 0xf7, 0x1d, 0x1e, 0x33, 0xc9, 0x50, 0x5d, 0xc7, 0x3a, 0x69, 0xac, + 0x73, 0x14, 0xeb, 0x98, 0x58, 0x7b, 0x26, 0x64, 0x21, 0x53, 0xa1, 0x6e, 0xfa, 0xa7, 0xb3, 0xec, + 0xb9, 0x90, 0xb1, 0xb0, 0x4b, 0x5c, 0x35, 0x6a, 0x27, 0x3b, 0x2e, 0x8e, 0x4c, 0x41, 0x7b, 0xde, + 0xb8, 0x30, 0xa7, 0x2e, 0x8e, 0x22, 0x26, 0xb1, 0xa4, 0x2c, 0x12, 0xc6, 0x6b, 0xe7, 0xe0, 0xf0, + 0x16, 0x77, 0x65, 0x9f, 0x93, 0xcc, 0x37, 0x9f, 0xf3, 0x29, 0xbb, 0xdb, 0xee, 0xb2, 0xce, 0xde, + 0xa9, 0xde, 0x7c, 0x6e, 0x81, 0xb2, 0xe2, 0x37, 0x60, 0xcb, 0x71, 0x48, 0x23, 0x05, 0x22, 0x03, + 0xaf, 0x63, 0x7d, 0xcd, 0xca, 0xf0, 0x57, 0x83, 0xc6, 0x37, 0x16, 0xd4, 0x37, 0x88, 0xfc, 0x0c, + 0x77, 0x69, 0x80, 0x25, 0x8b, 0xb7, 0x89, 0x5c, 0xeb, 0x3f, 0x20, 0x34, 0xdc, 0x95, 0x1e, 0x79, + 0x92, 0x10, 0x21, 0xd1, 0x65, 0x18, 0xdb, 0x55, 0x86, 0x9a, 0xb5, 0x60, 0x2d, 0x96, 0x3d, 0x33, + 0x42, 0x1f, 0x03, 0x1c, 0xcd, 0x54, 0x2b, 0x2d, 0x58, 0x8b, 0xd5, 0xd6, 0x35, 0x27, 0xaf, 0xae, + 0x96, 0xdd, 0xc0, 0x72, 0xb6, 0x70, 0x48, 0x4c, 0x4d, 0x2f, 0x97, 0xd9, 0x78, 0x69, 0xc1, 0xd5, + 0x53, 0x21, 0x08, 0xce, 0x22, 0x41, 0xd0, 0x3b, 0xf0, 0x86, 0x92, 0xc6, 0x2f, 0x20, 0xa9, 0x2a, + 0x9b, 0x0e, 0x45, 0x9b, 0x00, 0xfb, 0x59, 0x09, 0x51, 0x2b, 0x2d, 0x94, 0x17, 0xab, 0xad, 0x25, + 0xe7, 0xf5, 0x8b, 0xed, 0x0c, 0x26, 0xf5, 0x72, 0xc9, 0x68, 0xa3, 0xc0, 0xac, 0xac, 0x98, 0x5d, + 0x1f, 0xca, 0x4c, 0x43, 0x2d, 0x50, 0xdb, 0x81, 0xf9, 0x0d, 0x22, 0x1f, 0x61, 0x49, 0x44, 0x81, + 0x5f, 0x26, 0x6d, 0x51, 0x42, 0xeb, 0xdc, 0x12, 0xfe, 0x69, 0xc1, 0x95, 0x53, 0x26, 0xfa, 0x7f, + 0x0b, 0xf8, 0xcc, 0x82, 0x89, 0xc1, 0x14, 0xa8, 0x05, 0x15, 0x1c, 0x04, 0x31, 0x11, 0x42, 0xe1, + 0x9f, 0x58, 0xab, 0xbd, 0xf8, 0x65, 0x65, 0xc6, 0x94, 0xbd, 0xaf, 0x3d, 0xdb, 0x32, 0xa6, 0x51, + 0xe8, 0x65, 0x81, 0x68, 0x05, 0x2a, 0x3c, 0x69, 0xfb, 0x7b, 0xa4, 0x6f, 0x5a, 0x74, 0xc6, 0xd1, + 0xfb, 0xd5, 0xc9, 0xb6, 0xb2, 0x73, 0x3f, 0xea, 0x7b, 0x63, 0x3c, 0x69, 0x3f, 0x24, 0xfd, 0x54, + 0xa7, 0x7d, 0x26, 0x69, 0x14, 0xfa, 0x9c, 0x7d, 0x49, 0x62, 0x85, 0xbd, 0xec, 0x55, 0xb5, 0x6d, + 0x2b, 0x35, 0xa1, 0x65, 0x98, 0xe2, 0x31, 0xe3, 0x4c, 0x90, 0xd8, 0xe7, 0x31, 0x65, 0x31, 0x95, + 0xfd, 0xda, 0x45, 0x15, 0x37, 0x99, 0x39, 0xb6, 0x8c, 0xbd, 0xd1, 0x84, 0xd9, 0x0d, 0x22, 0xd7, + 0x52, 0x99, 0x47, 0xdc, 0x57, 0x8d, 0xaf, 0xa1, 0x76, 0x3c, 0xc5, 0x2c, 0xe3, 0x4d, 0x18, 0xd7, + 0xcb, 0x48, 0x03, 0xd3, 0x2e, 0x73, 0xf9, 0x55, 0xd1, 0x07, 0x84, 0x4a, 0xdd, 0x5c, 0xf7, 0x2a, + 0x2a, 0x74, 0x33, 0x40, 0x2b, 0x70, 0x49, 0xfd, 0x1a, 0x05, 0x66, 0x4f, 0x49, 0xf1, 0x74, 0x54, + 0x63, 0x16, 0xde, 0x1e, 0x34, 0x93, 0x76, 0x68, 0xc4, 0x8d, 0xa7, 0x70, 0xf9, 0x55, 0xc7, 0x7f, + 0x89, 0x6b, 0x1a, 0xa6, 0x36, 0x88, 0xdc, 0xee, 0x47, 0x9d, 0x74, 0x85, 0x0d, 0x26, 0x07, 0x50, + 0xde, 0x68, 0xf0, 0xd4, 0xa0, 0x22, 0xb4, 0x49, 0xc1, 0x19, 0xf7, 0xb2, 0x61, 0x63, 0x46, 0xc5, + 0x3f, 0x66, 0x01, 0xd9, 0x8c, 0x76, 0x58, 0x56, 0xe5, 0x37, 0x0b, 0xa6, 0x0b, 0x66, 0x53, 0xe7, + 0x21, 0x4c, 0x05, 0x64, 0x07, 0x27, 0x5d, 0xe9, 0x47, 0x2c, 0x20, 0x3e, 0x8d, 0x76, 0x98, 0x21, + 0x78, 0x35, 0x8f, 0x96, 0xb7, 0xb8, 0xb3, 0xae, 0x03, 0x07, 0x35, 0xde, 0x0a, 0x8a, 0x06, 0xf4, + 0x05, 0x4c, 0x63, 0xce, 0xbb, 0xb4, 0xa3, 0x7a, 0xdb, 0xdf, 0x27, 0xb1, 0x38, 0x3a, 0x39, 0x97, + 0x87, 0xee, 0x34, 0x1d, 0xae, 0x4a, 0xa3, 0x5c, 0x1d, 0x63, 0x6f, 0xfc, 0x54, 0x82, 0x6a, 0x2e, + 0x06, 0x21, 0xb8, 0x18, 0xe1, 0x1e, 0xd1, 0x3b, 0xc5, 0x53, 0xff, 0x68, 0x0e, 0xc6, 0x31, 0xe7, + 0xbe, 0xb2, 0x97, 0x94, 0xbd, 0x82, 0x39, 0x7f, 0x9c, 0xba, 0x6a, 0x50, 0xc9, 0x00, 0x95, 0xb5, + 0xc7, 0x0c, 0xd1, 0x15, 0x80, 0x90, 0x4a, 0xbf, 0xc3, 0x7a, 0x3d, 0x2a, 0x55, 0xa3, 0x4f, 0x78, + 0x13, 0x21, 0x95, 0x1f, 0x2a, 0x43, 0xea, 0x6e, 0x27, 0xb4, 0x1b, 0xf8, 0x12, 0x87, 0xa2, 0x76, + 0x49, 0xbb, 0x95, 0xe5, 0x53, 0x1c, 0x0a, 0x95, 0xcd, 0x06, 0x5c, 0xc7, 0x4c, 0x36, 0x33, 0x48, + 0xd1, 0x47, 0x59, 0x76, 0x40, 0xb8, 0xa8, 0x55, 0xd4, 0xa1, 0x73, 0x6d, 0x98, 0x14, 0x9f, 0xb0, + 0x20, 0xe9, 0x12, 0x33, 0xcb, 0x3a, 0xe1, 0x02, 0xbd, 0x07, 0xc8, 0xdc, 0x71, 0x22, 0xd8, 0x1b, + 0xcc, 0x36, 0xae, 0x66, 0x9b, 0xd4, 0x9e, 0xed, 0x60, 0x2f, 0x93, 0xea, 0x01, 0x8c, 0xe9, 0x12, + 0xa9, 0x48, 0x1c, 0xcb, 0xdd, 0x4c, 0xa4, 0xf4, 0x3f, 0xaf, 0x44, 0xa9, 0xa8, 0xc4, 0x24, 0x94, + 0x45, 0xd2, 0x33, 0xfa, 0xa4, 0xbf, 0xad, 0xef, 0x26, 0xa0, 0xb2, 0x4d, 0xe2, 0x7d, 0xda, 0x21, + 0xe8, 0x67, 0x0b, 0xaa, 0xb9, 0x1e, 0x42, 0xad, 0x61, 0x34, 0x8e, 0xf7, 0xa1, 0x7d, 0xe3, 0x4c, + 0x39, 0xba, 0x49, 0x1b, 0xcd, 0x6f, 0xff, 0xf8, 0xe7, 0x87, 0xd2, 0x32, 0x5a, 0x72, 0x87, 0x3c, + 0x83, 0x06, 0x2d, 0x8c, 0x7e, 0xb4, 0x00, 0x8e, 0xb6, 0x0d, 0x6a, 0x8e, 0x30, 0x6d, 0x71, 0xdf, + 0xd9, 0xad, 0xb3, 0xa4, 0x18, 0xa0, 0xae, 0x02, 0xba, 0x84, 0xae, 0x0f, 0x03, 0x6a, 0x36, 0x2b, + 0xfa, 0xd5, 0x82, 0x37, 0x8b, 0x27, 0x0e, 0xba, 0x35, 0xc2, 0xbc, 0xc7, 0x8f, 0x2e, 0x7b, 0xf5, + 0xac, 0x69, 0x06, 0xf2, 0x2d, 0x05, 0xd9, 0x45, 0x2b, 0xc3, 0x20, 0xab, 0x23, 0x4a, 0xb8, 0x5d, + 0x55, 0x03, 0x3d, 0xb3, 0x60, 0xf2, 0xd5, 0x43, 0x1c, 0xdd, 0x1e, 0x01, 0xc3, 0x49, 0x37, 0x85, + 0x7d, 0xe7, 0xec, 0x89, 0x06, 0xfe, 0x6d, 0x05, 0xbf, 0x89, 0xdc, 0x11, 0xe1, 0x7f, 0xa5, 0xef, + 0xa0, 0xa7, 0xe8, 0x85, 0x95, 0xbb, 0x04, 0xf2, 0x2f, 0x0a, 0x74, 0x77, 0x64, 0x25, 0x4f, 0x78, + 0xf1, 0xd8, 0xef, 0x9f, 0x33, 0xdb, 0xf0, 0xb9, 0xab, 0xf8, 0xac, 0xa2, 0x9b, 0xc3, 0xf8, 0x1c, + 0x3d, 0x46, 0x88, 0x1c, 0xac, 0xca, 0x5f, 0x96, 0xba, 0x8d, 0x4f, 0x7a, 0x69, 0xa2, 0x7b, 0x23, + 0x00, 0x7b, 0xcd, 0x2b, 0xd9, 0xfe, 0xe0, 0xdc, 0xf9, 0x86, 0xda, 0x3d, 0x45, 0xed, 0x0e, 0x5a, + 0x3d, 0x1b, 0xb5, 0x6c, 0xc5, 0xd6, 0x1e, 0xfd, 0x7e, 0x50, 0xb7, 0x9e, 0x1f, 0xd4, 0xad, 0xbf, + 0x0f, 0xea, 0xd6, 0xf7, 0x87, 0xf5, 0x0b, 0xcf, 0x0f, 0xeb, 0x17, 0x5e, 0x1e, 0xd6, 0x2f, 0x7c, + 0xde, 0x0a, 0xa9, 0xdc, 0x4d, 0xda, 0x4e, 0x87, 0xf5, 0xb2, 0xda, 0xfa, 0xb3, 0x22, 0x82, 0x3d, + 0xb7, 0xd3, 0xa5, 0x24, 0x92, 0x6e, 0x18, 0xf3, 0x8e, 0x2b, 0x7b, 0x42, 0x1f, 0x66, 0xed, 0x31, + 0xf5, 0x3a, 0xba, 0xf1, 0x6f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x4b, 0xcb, 0x77, 0x6d, 0x5a, 0x0d, + 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/go.mod b/go.mod index 390517f30bc5..c56240d0bbfa 100644 --- a/go.mod +++ b/go.mod @@ -10,6 +10,7 @@ require ( github.com/btcsuite/btcutil v1.0.3-0.20201208143702-a53e38424cce github.com/coinbase/rosetta-sdk-go v0.6.10 github.com/confio/ics23/go v0.6.6 + github.com/cosmos/cosmos-proto v0.0.0-20210720184750-6af320ed3523 github.com/cosmos/go-bip39 v1.0.0 github.com/cosmos/iavl v0.16.0 github.com/cosmos/ledger-cosmos-go v0.11.1 diff --git a/go.sum b/go.sum index ce8eaf4c208c..f97bf79616f3 100644 --- a/go.sum +++ b/go.sum @@ -158,6 +158,8 @@ github.com/coreos/go-systemd v0.0.0-20190321100706-95778dfbb74e/go.mod h1:F5haX7 github.com/coreos/go-systemd/v22 v22.3.2/go.mod h1:Y58oyj3AT4RCenI/lSvhwexgC+NSVTIJ3seZv2GcEnc= github.com/coreos/pkg v0.0.0-20160727233714-3ac0863d7acf/go.mod h1:E3G3o1h8I7cfcXa63jLwjI0eiQQMgzzUDFVpN/nH/eA= github.com/coreos/pkg v0.0.0-20180928190104-399ea9e2e55f/go.mod h1:E3G3o1h8I7cfcXa63jLwjI0eiQQMgzzUDFVpN/nH/eA= +github.com/cosmos/cosmos-proto v0.0.0-20210720184750-6af320ed3523 h1:JyrkE8NX6q+SGRQ8B9wgDeE4ecDPfWAxAdHtPwVRVZg= +github.com/cosmos/cosmos-proto v0.0.0-20210720184750-6af320ed3523/go.mod h1:g2Q3cd94kOBVRAv7ahdtO27yUc4cpNuHGnI40qanl1k= github.com/cosmos/go-bip39 v0.0.0-20180819234021-555e2067c45d/go.mod h1:tSxLoYXyBmiFeKpvmq4dzayMdCjCnu8uqmCysIGBT2Y= github.com/cosmos/go-bip39 v1.0.0 h1:pcomnQdrdH22njcAatO0yWojsUnCO3y2tNoV1cb6hHY= github.com/cosmos/go-bip39 v1.0.0/go.mod h1:RNJv0H/pOIVgxw6KS7QeX2a0Uo0aKUlfhZ4xuwvCdJw= @@ -1191,6 +1193,7 @@ google.golang.org/protobuf v1.25.0/go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlba google.golang.org/protobuf v1.25.1-0.20200805231151-a709e31e5d12/go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlbajtzgsN7c= google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw= google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= +google.golang.org/protobuf v1.27.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= google.golang.org/protobuf v1.27.1 h1:SnqbnDw1V7RiZcXPx5MEeqPv2s79L9i7BJUlG/+RurQ= google.golang.org/protobuf v1.27.1/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw= diff --git a/scripts/protocgen.sh b/scripts/protocgen.sh index 20b8d7020069..fd0a69746911 100755 --- a/scripts/protocgen.sh +++ b/scripts/protocgen.sh @@ -18,7 +18,7 @@ for dir in $proto_dirs; do buf protoc \ -I "proto" \ -I "third_party/proto" \ - --gocosmos_out=plugins=interfacetype+grpc,\ + --gocosmos_out=plugins=grpc,\ Mgoogle/protobuf/any.proto=github.com/cosmos/cosmos-sdk/codec/types:. \ --grpc-gateway_out=logtostderr=true,allow_colon_final_segments=true:. \ $(find "${dir}" -maxdepth 1 -name '*.proto') @@ -35,7 +35,7 @@ buf protoc \ go mod tidy # generate codec/testdata proto code -buf protoc -I "proto" -I "third_party/proto" -I "testutil/testdata" --gocosmos_out=plugins=interfacetype+grpc,\ +buf protoc -I "proto" -I "third_party/proto" -I "testutil/testdata" --gocosmos_out=plugins=grpc,\ Mgoogle/protobuf/any.proto=github.com/cosmos/cosmos-sdk/codec/types:. ./testutil/testdata/*.proto # move proto files to the right places diff --git a/types/coin.pb.go b/types/coin.pb.go index df8d34d4f9d5..4df295645b85 100644 --- a/types/coin.pb.go +++ b/types/coin.pb.go @@ -5,6 +5,7 @@ package types import ( fmt "fmt" + _ "github.com/cosmos/cosmos-proto" _ "github.com/gogo/protobuf/gogoproto" proto "github.com/gogo/protobuf/proto" io "io" @@ -203,24 +204,25 @@ func init() { func init() { proto.RegisterFile("cosmos/base/v1beta1/coin.proto", fileDescriptor_189a96714eafc2df) } var fileDescriptor_189a96714eafc2df = []byte{ - // 261 bytes of a gzipped FileDescriptorProto + // 286 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x4b, 0xce, 0x2f, 0xce, 0xcd, 0x2f, 0xd6, 0x4f, 0x4a, 0x2c, 0x4e, 0xd5, 0x2f, 0x33, 0x4c, 0x4a, 0x2d, 0x49, 0x34, 0xd4, 0x4f, 0xce, 0xcf, 0xcc, 0xd3, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x86, 0xc8, 0xeb, 0x81, 0xe4, 0xf5, 0xa0, 0xf2, 0x52, 0x22, 0xe9, 0xf9, 0xe9, 0xf9, 0x60, 0x79, 0x7d, 0x10, 0x0b, 0xa2, - 0x54, 0xc9, 0x9d, 0x8b, 0xc5, 0x39, 0x3f, 0x33, 0x4f, 0x48, 0x84, 0x8b, 0x35, 0x25, 0x35, 0x2f, - 0x3f, 0x57, 0x82, 0x51, 0x81, 0x51, 0x83, 0x33, 0x08, 0xc2, 0x11, 0x52, 0xe6, 0x62, 0x4b, 0xcc, - 0xcd, 0x2f, 0xcd, 0x2b, 0x91, 0x60, 0x02, 0x09, 0x3b, 0x71, 0x9f, 0xb8, 0x27, 0xcf, 0x70, 0xeb, - 0x9e, 0x3c, 0xb3, 0x67, 0x5e, 0x49, 0x10, 0x54, 0xca, 0x8a, 0xe5, 0xc5, 0x02, 0x79, 0x46, 0x25, - 0x2f, 0x2e, 0x76, 0x97, 0xd4, 0x64, 0x72, 0xcc, 0x72, 0x49, 0x4d, 0x46, 0x33, 0x4b, 0x93, 0x8b, - 0xc3, 0x33, 0xaf, 0x24, 0x00, 0xec, 0x17, 0x59, 0x2e, 0xe6, 0xcc, 0xbc, 0x12, 0x88, 0x51, 0xa8, - 0xf6, 0x83, 0xc4, 0x41, 0x4a, 0x5d, 0x52, 0x93, 0xe1, 0x4a, 0x53, 0x52, 0x93, 0xd1, 0x95, 0x82, - 0x8c, 0x07, 0x89, 0x3b, 0xb9, 0xdc, 0x78, 0x28, 0xc7, 0xd0, 0xf0, 0x48, 0x8e, 0xe1, 0xc4, 0x23, - 0x39, 0xc6, 0x0b, 0x8f, 0xe4, 0x18, 0x1f, 0x3c, 0x92, 0x63, 0x9c, 0xf0, 0x58, 0x8e, 0xe1, 0xc2, - 0x63, 0x39, 0x86, 0x1b, 0x8f, 0xe5, 0x18, 0xa2, 0x94, 0xd2, 0x33, 0x4b, 0x32, 0x4a, 0x93, 0xf4, - 0x92, 0xf3, 0x73, 0xf5, 0xa1, 0x41, 0x0c, 0xa1, 0x74, 0x8b, 0x53, 0xb2, 0xf5, 0x4b, 0x2a, 0x0b, - 0x52, 0x8b, 0x93, 0xd8, 0xc0, 0xe1, 0x66, 0x0c, 0x08, 0x00, 0x00, 0xff, 0xff, 0x57, 0xb3, 0x7a, - 0x93, 0x84, 0x01, 0x00, 0x00, + 0x54, 0x4a, 0x12, 0xa2, 0x34, 0x1e, 0x22, 0x01, 0xd5, 0x07, 0xe6, 0x28, 0x85, 0x72, 0xb1, 0x38, + 0xe7, 0x67, 0xe6, 0x09, 0x89, 0x70, 0xb1, 0xa6, 0xa4, 0xe6, 0xe5, 0xe7, 0x4a, 0x30, 0x2a, 0x30, + 0x6a, 0x70, 0x06, 0x41, 0x38, 0x42, 0x86, 0x5c, 0x6c, 0x89, 0xb9, 0xf9, 0xa5, 0x79, 0x25, 0x12, + 0x4c, 0x20, 0x61, 0x27, 0xc9, 0x13, 0xf7, 0xe4, 0x19, 0x6e, 0xdd, 0x93, 0x67, 0xf6, 0xcc, 0x2b, + 0xb9, 0xb4, 0x45, 0x97, 0x0b, 0x6a, 0x94, 0x67, 0x5e, 0x49, 0x10, 0x54, 0xa1, 0x15, 0xcb, 0x8b, + 0x05, 0xf2, 0x8c, 0x4a, 0x11, 0x5c, 0xec, 0x2e, 0xa9, 0xc9, 0xe4, 0x98, 0xec, 0x92, 0x9a, 0x8c, + 0x64, 0xb2, 0x4b, 0x6a, 0x32, 0x9a, 0xc9, 0xe6, 0x5c, 0x1c, 0x9e, 0x79, 0x25, 0x01, 0xe0, 0x20, + 0xd0, 0xe6, 0x62, 0xce, 0xcc, 0x2b, 0x81, 0x18, 0x8c, 0xcf, 0x6d, 0x20, 0x55, 0x20, 0x8d, 0x2e, + 0xa9, 0xc9, 0x70, 0x8d, 0x29, 0xa9, 0xc9, 0xe8, 0x1a, 0x31, 0xad, 0x06, 0xa9, 0x72, 0x72, 0xb9, + 0xf1, 0x50, 0x8e, 0xa1, 0xe1, 0x91, 0x1c, 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, 0x29, 0xa5, 0x67, 0x96, 0x64, 0x94, 0x26, 0xe9, 0x25, 0xe7, 0xe7, 0x42, 0x43, 0x17, + 0x4a, 0xe9, 0x16, 0xa7, 0x64, 0xeb, 0x97, 0x54, 0x16, 0xa4, 0x16, 0x27, 0xb1, 0x81, 0xc3, 0xdb, + 0x18, 0x10, 0x00, 0x00, 0xff, 0xff, 0x33, 0x9a, 0x20, 0xf6, 0xd7, 0x01, 0x00, 0x00, } func (this *Coin) Equal(that interface{}) bool { diff --git a/types/tx/tx.pb.go b/types/tx/tx.pb.go index 2846d497fbea..881a0f938e98 100644 --- a/types/tx/tx.pb.go +++ b/types/tx/tx.pb.go @@ -5,6 +5,7 @@ package tx import ( fmt "fmt" + _ "github.com/cosmos/cosmos-proto" types "github.com/cosmos/cosmos-sdk/codec/types" types1 "github.com/cosmos/cosmos-sdk/crypto/types" github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" @@ -1020,68 +1021,70 @@ func init() { func init() { proto.RegisterFile("cosmos/tx/v1beta1/tx.proto", fileDescriptor_96d1575ffde80842) } var fileDescriptor_96d1575ffde80842 = []byte{ - // 976 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x56, 0x4f, 0x6f, 0x1b, 0xc5, - 0x1b, 0xf6, 0x66, 0x6d, 0xc7, 0x7e, 0x93, 0xb4, 0xcd, 0x28, 0xaa, 0x1c, 0x47, 0x75, 0xf3, 0xf3, - 0x4f, 0x05, 0x5f, 0xb2, 0xdb, 0xa4, 0x02, 0x0a, 0x42, 0x82, 0xb8, 0xa5, 0x4a, 0x29, 0x6d, 0xd1, - 0x24, 0xa7, 0x5e, 0x56, 0xb3, 0xeb, 0xc9, 0xee, 0xa8, 0xde, 0x99, 0x65, 0x67, 0x16, 0xbc, 0x1f, - 0x02, 0xa9, 0x42, 0x42, 0x5c, 0x39, 0xf3, 0x05, 0xf8, 0x0a, 0x3d, 0xf6, 0xc8, 0x09, 0xaa, 0xe4, - 0xc4, 0x85, 0xaf, 0x00, 0xda, 0xd9, 0xd9, 0x4d, 0x5a, 0x4c, 0x5c, 0x89, 0x8a, 0x93, 0xe7, 0x7d, - 0xe7, 0x79, 0x9f, 0x79, 0xde, 0x3f, 0x3b, 0x63, 0xe8, 0x07, 0x42, 0xc6, 0x42, 0xba, 0x6a, 0xe6, - 0x7e, 0xbd, 0xeb, 0x53, 0x45, 0x76, 0x5d, 0x35, 0x73, 0x92, 0x54, 0x28, 0x81, 0xd6, 0xcb, 0x3d, - 0x47, 0xcd, 0x1c, 0xb3, 0xd7, 0xdf, 0x08, 0x45, 0x28, 0xf4, 0xae, 0x5b, 0xac, 0x4a, 0x60, 0x7f, - 0xc7, 0x90, 0x04, 0x69, 0x9e, 0x28, 0xe1, 0xc6, 0xd9, 0x54, 0x31, 0xc9, 0xc2, 0x9a, 0xb1, 0x72, - 0x18, 0xf8, 0xc0, 0xc0, 0x7d, 0x22, 0x69, 0x8d, 0x09, 0x04, 0xe3, 0x66, 0xff, 0xdd, 0x33, 0x4d, - 0x92, 0x85, 0x9c, 0xf1, 0x33, 0x26, 0x63, 0x1b, 0xe0, 0x66, 0x28, 0x44, 0x38, 0xa5, 0xae, 0xb6, - 0xfc, 0xec, 0xd8, 0x25, 0x3c, 0x2f, 0xb7, 0x86, 0xdf, 0x5a, 0xb0, 0x74, 0x34, 0x43, 0x3b, 0xd0, - 0xf4, 0xc5, 0x24, 0xef, 0x59, 0xdb, 0xd6, 0x68, 0x65, 0x6f, 0xd3, 0xf9, 0x5b, 0x46, 0xce, 0xd1, - 0x6c, 0x2c, 0x26, 0x39, 0xd6, 0x30, 0x74, 0x1b, 0xba, 0x24, 0x53, 0x91, 0xc7, 0xf8, 0xb1, 0xe8, - 0x2d, 0xe9, 0x98, 0xad, 0x39, 0x31, 0xfb, 0x99, 0x8a, 0xee, 0xf3, 0x63, 0x81, 0x3b, 0xc4, 0xac, - 0xd0, 0x00, 0xa0, 0xd0, 0x46, 0x54, 0x96, 0x52, 0xd9, 0xb3, 0xb7, 0xed, 0xd1, 0x2a, 0x3e, 0xe7, - 0x19, 0x72, 0x68, 0x1d, 0xcd, 0x30, 0xf9, 0x06, 0x5d, 0x03, 0x28, 0x8e, 0xf2, 0xfc, 0x5c, 0x51, - 0xa9, 0x75, 0xad, 0xe2, 0x6e, 0xe1, 0x19, 0x17, 0x0e, 0xf4, 0x0e, 0x5c, 0xae, 0x15, 0x18, 0xcc, - 0x92, 0xc6, 0xac, 0x55, 0x47, 0x95, 0xb8, 0x45, 0xe7, 0x7d, 0x67, 0xc1, 0xf2, 0x21, 0x0b, 0xf9, - 0x5d, 0x11, 0xbc, 0xad, 0x23, 0x37, 0xa1, 0x13, 0x44, 0x84, 0x71, 0x8f, 0x4d, 0x7a, 0xf6, 0xb6, - 0x35, 0xea, 0xe2, 0x65, 0x6d, 0xdf, 0x9f, 0xa0, 0x1b, 0x70, 0x89, 0x04, 0x81, 0xc8, 0xb8, 0xf2, - 0x78, 0x16, 0xfb, 0x34, 0xed, 0x35, 0xb7, 0xad, 0x51, 0x13, 0xaf, 0x19, 0xef, 0x23, 0xed, 0x1c, - 0xfe, 0x6e, 0xc1, 0x8a, 0x11, 0xf5, 0xf9, 0xe1, 0xe3, 0x47, 0xff, 0x5d, 0x77, 0xfe, 0xb5, 0x74, - 0xe4, 0xc2, 0x46, 0x51, 0x5d, 0x6f, 0x22, 0x02, 0x4f, 0x46, 0x64, 0xef, 0xbd, 0xf7, 0xbd, 0x88, - 0xc8, 0xa8, 0xd7, 0xd2, 0x95, 0x5a, 0x97, 0x65, 0x56, 0x87, 0x7a, 0xe7, 0x80, 0xc8, 0x68, 0xf8, - 0x87, 0x05, 0x57, 0x4c, 0xae, 0x77, 0x59, 0x4a, 0x03, 0xb5, 0x9f, 0xcd, 0x16, 0x75, 0xe2, 0x16, - 0x40, 0x92, 0xf9, 0x53, 0x16, 0x78, 0x4f, 0x69, 0x6e, 0x32, 0xdc, 0x70, 0xca, 0x21, 0x77, 0xaa, - 0x21, 0x77, 0xf6, 0x79, 0x8e, 0xbb, 0x25, 0xee, 0x01, 0xcd, 0xdf, 0x42, 0x6e, 0x7d, 0xe8, 0x48, - 0xfa, 0x55, 0x46, 0x79, 0x40, 0x75, 0x3e, 0x4d, 0x5c, 0xdb, 0x68, 0x04, 0xb6, 0x62, 0x49, 0xaf, - 0xad, 0xb5, 0x5c, 0x9d, 0xd7, 0x21, 0x96, 0xe0, 0x02, 0x32, 0xfc, 0x7e, 0x09, 0xda, 0x65, 0xbb, - 0xd0, 0x4d, 0xe8, 0xc4, 0x54, 0x4a, 0x12, 0xea, 0x24, 0xed, 0x7f, 0xcc, 0xa2, 0x46, 0x21, 0x04, - 0xcd, 0x98, 0xc6, 0x65, 0x57, 0xbb, 0x58, 0xaf, 0x0b, 0xf5, 0x8a, 0xc5, 0x54, 0x64, 0xca, 0x8b, - 0x28, 0x0b, 0x23, 0xa5, 0xd3, 0x6b, 0xe2, 0x35, 0xe3, 0x3d, 0xd0, 0x4e, 0x34, 0x86, 0x75, 0x3a, - 0x53, 0x94, 0x4b, 0x26, 0xb8, 0x27, 0x12, 0xc5, 0x04, 0x97, 0xbd, 0x3f, 0x97, 0x2f, 0x38, 0xf6, - 0x4a, 0x8d, 0x7f, 0x5c, 0xc2, 0xd1, 0x13, 0x18, 0x70, 0xc1, 0xbd, 0x20, 0x65, 0x8a, 0x05, 0x64, - 0xea, 0xcd, 0x21, 0xbc, 0x7c, 0x01, 0xe1, 0x16, 0x17, 0xfc, 0x8e, 0x89, 0xfd, 0xec, 0x35, 0xee, - 0xe1, 0x8f, 0x16, 0x74, 0xaa, 0x91, 0x44, 0x9f, 0xc2, 0x6a, 0x31, 0x2a, 0x34, 0xd5, 0x43, 0x5c, - 0x55, 0xe7, 0xda, 0x9c, 0xba, 0x1e, 0x6a, 0x98, 0x9e, 0xe3, 0x15, 0x59, 0xaf, 0x65, 0xd1, 0x90, - 0x63, 0x4a, 0xcd, 0x70, 0xcc, 0x6b, 0xc8, 0x3d, 0x4a, 0x71, 0x01, 0xa9, 0x5a, 0x67, 0x2f, 0x6e, - 0xdd, 0x0f, 0x16, 0xc0, 0xd9, 0x79, 0xaf, 0x8d, 0xa1, 0xf5, 0x66, 0x63, 0x78, 0x1b, 0xba, 0xb1, - 0x98, 0xd0, 0x45, 0x1f, 0xe7, 0x43, 0x31, 0xa1, 0xe5, 0xc7, 0x19, 0x9b, 0xd5, 0x2b, 0xe3, 0x67, - 0xbf, 0x3a, 0x7e, 0xc3, 0x97, 0x4b, 0xd0, 0xa9, 0x42, 0xd0, 0xc7, 0xd0, 0x96, 0x8c, 0x87, 0x53, - 0x6a, 0x34, 0x0d, 0x2f, 0xe0, 0x77, 0x0e, 0x35, 0xf2, 0xa0, 0x81, 0x4d, 0x0c, 0xfa, 0x10, 0x5a, - 0xfa, 0x1d, 0x32, 0xe2, 0xfe, 0x77, 0x51, 0xf0, 0xc3, 0x02, 0x78, 0xd0, 0xc0, 0x65, 0x44, 0x7f, - 0x1f, 0xda, 0x25, 0x1d, 0xfa, 0x00, 0x9a, 0x85, 0x6e, 0x2d, 0xe0, 0xd2, 0xde, 0xff, 0xcf, 0x71, - 0x54, 0x2f, 0xd3, 0xf9, 0xfe, 0x15, 0x7c, 0x58, 0x07, 0xf4, 0x9f, 0x59, 0xd0, 0xd2, 0xac, 0xe8, - 0x01, 0x74, 0x7c, 0xa6, 0x48, 0x9a, 0x92, 0xaa, 0xb6, 0x6e, 0x45, 0x53, 0xbe, 0x9f, 0x4e, 0xfd, - 0x5c, 0x56, 0x5c, 0x77, 0x44, 0x9c, 0x90, 0x40, 0x8d, 0x99, 0xda, 0x2f, 0xc2, 0x70, 0x4d, 0x80, - 0x3e, 0x02, 0xa8, 0xab, 0x5e, 0x5c, 0xdb, 0xf6, 0xa2, 0xb2, 0x77, 0xab, 0xb2, 0xcb, 0x71, 0x0b, - 0x6c, 0x99, 0xc5, 0xc3, 0x9f, 0x2d, 0xb0, 0xef, 0x51, 0x8a, 0x02, 0x68, 0x93, 0xb8, 0xb8, 0x15, - 0xcc, 0x50, 0xd6, 0xd7, 0x71, 0xf1, 0x4c, 0x9f, 0x93, 0xc2, 0xf8, 0xf8, 0xe6, 0xf3, 0x5f, 0xaf, - 0x37, 0x7e, 0xfa, 0xed, 0xfa, 0x28, 0x64, 0x2a, 0xca, 0x7c, 0x27, 0x10, 0xb1, 0x5b, 0xfd, 0x05, - 0xd0, 0x3f, 0x3b, 0x72, 0xf2, 0xd4, 0x55, 0x79, 0x42, 0xa5, 0x0e, 0x90, 0xd8, 0x50, 0xa3, 0x2d, - 0xe8, 0x86, 0x44, 0x7a, 0x53, 0x16, 0x33, 0xa5, 0x1b, 0xd1, 0xc4, 0x9d, 0x90, 0xc8, 0x2f, 0x0a, - 0x1b, 0x6d, 0x40, 0x2b, 0x21, 0x39, 0x4d, 0xcd, 0x35, 0x56, 0x1a, 0xa8, 0x07, 0xcb, 0x61, 0x4a, - 0xb8, 0x32, 0xb7, 0x57, 0x17, 0x57, 0xe6, 0xf0, 0x4b, 0xb0, 0x8f, 0x58, 0x82, 0x76, 0xdf, 0x58, - 0x78, 0x2d, 0xe3, 0x2a, 0xb4, 0x15, 0x4b, 0x12, 0x9a, 0x9a, 0x0b, 0xc7, 0x58, 0xe3, 0x4f, 0x9e, - 0x9f, 0x0c, 0xac, 0x17, 0x27, 0x03, 0xeb, 0xe5, 0xc9, 0xc0, 0x7a, 0x76, 0x3a, 0x68, 0xbc, 0x38, - 0x1d, 0x34, 0x7e, 0x39, 0x1d, 0x34, 0x9e, 0xdc, 0x58, 0x9c, 0xaa, 0xab, 0x66, 0x7e, 0x5b, 0x7f, - 0x1e, 0xb7, 0xfe, 0x0a, 0x00, 0x00, 0xff, 0xff, 0xfa, 0xf9, 0x59, 0x1a, 0x57, 0x09, 0x00, 0x00, + // 1004 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x56, 0x4f, 0x6f, 0x1b, 0x45, + 0x14, 0xf7, 0x66, 0x6d, 0xc7, 0x7e, 0x49, 0xda, 0x66, 0x14, 0x21, 0xc7, 0x51, 0xdd, 0x60, 0x54, + 0xf0, 0x25, 0xbb, 0x49, 0x2a, 0xa0, 0x20, 0x24, 0xb0, 0x5b, 0xaa, 0x94, 0xd2, 0x56, 0x1a, 0xe7, + 0xd4, 0xcb, 0x6a, 0xbc, 0x9e, 0xac, 0x87, 0x7a, 0x67, 0x96, 0x9d, 0x59, 0xf0, 0x7e, 0x08, 0xa4, + 0x0a, 0x09, 0x71, 0xe5, 0xcc, 0x99, 0x0f, 0xd1, 0x63, 0xc5, 0x89, 0x13, 0x54, 0xc9, 0x09, 0x21, + 0xf1, 0x15, 0x40, 0x3b, 0x3b, 0xbb, 0x49, 0x8b, 0xb1, 0x2b, 0x51, 0x71, 0xf2, 0xcc, 0x9b, 0xdf, + 0xfb, 0xbd, 0xdf, 0xfb, 0xb3, 0x33, 0x86, 0xb6, 0x2f, 0x64, 0x28, 0xa4, 0xab, 0x66, 0xee, 0x57, + 0x07, 0x23, 0xaa, 0xc8, 0x81, 0xab, 0x66, 0x4e, 0x14, 0x0b, 0x25, 0xd0, 0x66, 0x7e, 0xe6, 0xa8, + 0x99, 0x63, 0xce, 0xda, 0x5b, 0x81, 0x08, 0x84, 0x3e, 0x75, 0xb3, 0x55, 0x0e, 0x6c, 0xef, 0x19, + 0x12, 0x3f, 0x4e, 0x23, 0x25, 0xdc, 0x30, 0x99, 0x2a, 0x26, 0x59, 0x50, 0x32, 0x16, 0x06, 0x03, + 0xef, 0x18, 0xf8, 0x88, 0x48, 0x5a, 0x62, 0x7c, 0xc1, 0xb8, 0x39, 0x7f, 0xe7, 0x5c, 0x93, 0x64, + 0x01, 0x67, 0xfc, 0x9c, 0xc9, 0xec, 0x0d, 0x70, 0x3b, 0x10, 0x22, 0x98, 0x52, 0x57, 0xef, 0x46, + 0xc9, 0x89, 0x4b, 0x78, 0x5a, 0x1c, 0xe5, 0x1c, 0x5e, 0xae, 0xd5, 0x24, 0xa2, 0x37, 0xdd, 0x6f, + 0x2c, 0x58, 0x39, 0x9e, 0xa1, 0x3d, 0xa8, 0x8e, 0xc4, 0x38, 0x6d, 0x59, 0xbb, 0x56, 0x6f, 0xed, + 0x70, 0xdb, 0xf9, 0x47, 0xb2, 0xce, 0xf1, 0x6c, 0x20, 0xc6, 0x29, 0xd6, 0x30, 0x74, 0x13, 0x9a, + 0x24, 0x51, 0x13, 0x8f, 0xf1, 0x13, 0xd1, 0x5a, 0xd1, 0x3e, 0x3b, 0x73, 0x7c, 0xfa, 0x89, 0x9a, + 0xdc, 0xe5, 0x27, 0x02, 0x37, 0x88, 0x59, 0xa1, 0x0e, 0x40, 0x26, 0x9b, 0xa8, 0x24, 0xa6, 0xb2, + 0x65, 0xef, 0xda, 0xbd, 0x75, 0x7c, 0xc1, 0xd2, 0xe5, 0x50, 0x3b, 0x9e, 0x61, 0xf2, 0x35, 0xba, + 0x0a, 0x90, 0x85, 0xf2, 0x46, 0xa9, 0xa2, 0x52, 0xeb, 0x5a, 0xc7, 0xcd, 0xcc, 0x32, 0xc8, 0x0c, + 0xe8, 0x6d, 0xb8, 0x5c, 0x2a, 0x30, 0x98, 0x15, 0x8d, 0xd9, 0x28, 0x42, 0xe5, 0xb8, 0x65, 0xf1, + 0xbe, 0xb5, 0x60, 0x75, 0xc8, 0x02, 0x7e, 0x5b, 0xf8, 0xaf, 0x2b, 0xe4, 0x36, 0x34, 0xfc, 0x09, + 0x61, 0xdc, 0x63, 0xe3, 0x96, 0xbd, 0x6b, 0xf5, 0x9a, 0x78, 0x55, 0xef, 0xef, 0x8e, 0xd1, 0x75, + 0xb8, 0x44, 0x7c, 0x5f, 0x24, 0x5c, 0x79, 0x3c, 0x09, 0x47, 0x34, 0x6e, 0x55, 0x77, 0xad, 0x5e, + 0x15, 0x6f, 0x18, 0xeb, 0x03, 0x6d, 0xec, 0xfe, 0x6e, 0xc1, 0x9a, 0x11, 0xf5, 0xd9, 0xf0, 0xe1, + 0x83, 0xff, 0xaf, 0x3b, 0xff, 0x59, 0x3a, 0x72, 0x61, 0x2b, 0xab, 0xae, 0x37, 0x16, 0xbe, 0x27, + 0x27, 0xe4, 0xf0, 0xdd, 0xf7, 0xbc, 0x09, 0x91, 0x93, 0x56, 0x4d, 0x57, 0x6a, 0x53, 0xe6, 0x59, + 0x0d, 0xf5, 0xc9, 0x11, 0x91, 0x93, 0xee, 0x9f, 0x16, 0x5c, 0x31, 0xb9, 0xde, 0x66, 0x31, 0xf5, + 0x55, 0x3f, 0x99, 0x2d, 0xeb, 0xc4, 0x0d, 0x80, 0x28, 0x19, 0x4d, 0x99, 0xef, 0x3d, 0xa6, 0xa9, + 0xc9, 0x70, 0xcb, 0xc9, 0xe7, 0xdf, 0x29, 0xe6, 0xdf, 0xe9, 0xf3, 0x14, 0x37, 0x73, 0xdc, 0x3d, + 0x9a, 0xbe, 0x86, 0xdc, 0xda, 0xd0, 0x90, 0xf4, 0xcb, 0x84, 0x72, 0x9f, 0xea, 0x7c, 0xaa, 0xb8, + 0xdc, 0xa3, 0x1e, 0xd8, 0x8a, 0x45, 0xad, 0xba, 0xd6, 0xf2, 0xc6, 0xbc, 0x0e, 0xb1, 0x08, 0x67, + 0x90, 0xee, 0x77, 0x2b, 0x50, 0xcf, 0xdb, 0x85, 0xf6, 0xa1, 0x11, 0x52, 0x29, 0x49, 0xa0, 0x93, + 0xb4, 0xff, 0x35, 0x8b, 0x12, 0x85, 0x10, 0x54, 0x43, 0x1a, 0xe6, 0x5d, 0x6d, 0x62, 0xbd, 0xce, + 0xd4, 0x2b, 0x16, 0x52, 0x91, 0x28, 0x6f, 0x42, 0x59, 0x30, 0x51, 0x3a, 0xbd, 0x2a, 0xde, 0x30, + 0xd6, 0x23, 0x6d, 0x44, 0x03, 0xd8, 0xa4, 0x33, 0x45, 0xb9, 0x64, 0x82, 0x7b, 0x22, 0x52, 0x4c, + 0x70, 0xd9, 0xfa, 0x6b, 0x75, 0x41, 0xd8, 0x2b, 0x25, 0xfe, 0x61, 0x0e, 0x47, 0x8f, 0xa0, 0xc3, + 0x05, 0xf7, 0xfc, 0x98, 0x29, 0xe6, 0x93, 0xa9, 0x37, 0x87, 0xf0, 0xf2, 0x02, 0xc2, 0x1d, 0x2e, + 0xf8, 0x2d, 0xe3, 0xfb, 0xe9, 0x4b, 0xdc, 0xdd, 0x1f, 0x2c, 0x68, 0x14, 0x23, 0x89, 0x3e, 0x81, + 0xf5, 0x6c, 0x54, 0x68, 0xac, 0x87, 0xb8, 0xa8, 0xce, 0xd5, 0x39, 0x75, 0x1d, 0x6a, 0x98, 0x9e, + 0xe3, 0x35, 0x59, 0xae, 0x65, 0xd6, 0x90, 0x13, 0x4a, 0xcd, 0x70, 0xcc, 0x6b, 0xc8, 0x1d, 0x4a, + 0x71, 0x06, 0x29, 0x5a, 0x67, 0x2f, 0x6f, 0xdd, 0xf7, 0x16, 0xc0, 0x79, 0xbc, 0x97, 0xc6, 0xd0, + 0x7a, 0xb5, 0x31, 0xbc, 0x09, 0xcd, 0x50, 0x8c, 0xe9, 0xb2, 0x8f, 0xf3, 0xbe, 0x18, 0xd3, 0xfc, + 0xe3, 0x0c, 0xcd, 0xea, 0x85, 0xf1, 0xb3, 0x5f, 0x1c, 0xbf, 0xee, 0xf3, 0x15, 0x68, 0x14, 0x2e, + 0xe8, 0x23, 0xa8, 0x4b, 0xc6, 0x83, 0x29, 0x35, 0x9a, 0xba, 0x0b, 0xf8, 0x9d, 0xa1, 0x46, 0x1e, + 0x55, 0xb0, 0xf1, 0x41, 0x1f, 0x40, 0x4d, 0x3f, 0x51, 0x46, 0xdc, 0x9b, 0x8b, 0x9c, 0xef, 0x67, + 0xc0, 0xa3, 0x0a, 0xce, 0x3d, 0xda, 0x7d, 0xa8, 0xe7, 0x74, 0xe8, 0x7d, 0xa8, 0x66, 0xba, 0xb5, + 0x80, 0x4b, 0x87, 0x6f, 0x5d, 0xe0, 0x28, 0x1e, 0xad, 0x8b, 0xfd, 0xcb, 0xf8, 0xb0, 0x76, 0x68, + 0x3f, 0xb1, 0xa0, 0xa6, 0x59, 0xd1, 0x3d, 0x68, 0x8c, 0x98, 0x22, 0x71, 0x4c, 0x8a, 0xda, 0xba, + 0x05, 0x4d, 0xfe, 0xb4, 0x3a, 0xe5, 0x4b, 0x5a, 0x70, 0xdd, 0x12, 0x61, 0x44, 0x7c, 0x35, 0x60, + 0xaa, 0x9f, 0xb9, 0xe1, 0x92, 0x00, 0x7d, 0x08, 0x50, 0x56, 0x3d, 0xbb, 0xb6, 0xed, 0x65, 0x65, + 0x6f, 0x16, 0x65, 0x97, 0x83, 0x1a, 0xd8, 0x32, 0x09, 0xbb, 0x7f, 0x58, 0x60, 0xdf, 0xa1, 0x14, + 0xf9, 0x50, 0x27, 0x61, 0x76, 0x2b, 0x98, 0xa1, 0x2c, 0xaf, 0xe3, 0xec, 0x05, 0xbf, 0x20, 0x85, + 0xf1, 0xc1, 0xfe, 0xd3, 0x5f, 0xaf, 0x55, 0x7e, 0xfc, 0xed, 0x5a, 0x2f, 0x60, 0x6a, 0x92, 0x8c, + 0x1c, 0x5f, 0x84, 0x6e, 0xf1, 0xef, 0x40, 0xff, 0xec, 0xc9, 0xf1, 0x63, 0x57, 0xa5, 0x11, 0x95, + 0xda, 0x41, 0x62, 0x43, 0x8d, 0x76, 0xa0, 0x19, 0x10, 0xe9, 0x4d, 0x59, 0xc8, 0x94, 0x6e, 0x44, + 0x15, 0x37, 0x02, 0x22, 0x3f, 0xcf, 0xf6, 0xc8, 0x81, 0x5a, 0x44, 0x52, 0x1a, 0xe7, 0xd7, 0xd8, + 0xa0, 0xf5, 0xf3, 0x4f, 0x7b, 0x5b, 0x46, 0x43, 0x7f, 0x3c, 0x8e, 0xa9, 0x94, 0x43, 0x15, 0x33, + 0x1e, 0xe0, 0x1c, 0x86, 0x0e, 0x61, 0x35, 0x88, 0x09, 0x57, 0xe6, 0x5e, 0x5b, 0xe4, 0x51, 0x00, + 0xbb, 0x5f, 0x80, 0x7d, 0xcc, 0x22, 0x74, 0xf0, 0xca, 0xc9, 0x96, 0xd2, 0xf7, 0xa1, 0xae, 0x58, + 0x14, 0xd1, 0x38, 0xbf, 0xa4, 0x16, 0x04, 0x33, 0xb8, 0xc1, 0xc7, 0x4f, 0x4f, 0x3b, 0xd6, 0xb3, + 0xd3, 0x8e, 0xf5, 0xfc, 0xb4, 0x63, 0x3d, 0x39, 0xeb, 0x54, 0x9e, 0x9d, 0x75, 0x2a, 0xbf, 0x9c, + 0x75, 0x2a, 0x8f, 0xae, 0x2f, 0x2f, 0x9c, 0xab, 0x66, 0xa3, 0xba, 0xfe, 0xd8, 0x6e, 0xfc, 0x1d, + 0x00, 0x00, 0xff, 0xff, 0x2e, 0xeb, 0x69, 0xc0, 0xc0, 0x09, 0x00, 0x00, } func (m *Tx) Marshal() (dAtA []byte, err error) { diff --git a/x/auth/types/auth.pb.go b/x/auth/types/auth.pb.go index fa52ac5a8b90..3f56347fbd76 100644 --- a/x/auth/types/auth.pb.go +++ b/x/auth/types/auth.pb.go @@ -5,10 +5,10 @@ package types import ( fmt "fmt" + _ "github.com/cosmos/cosmos-proto" types "github.com/cosmos/cosmos-sdk/codec/types" _ "github.com/gogo/protobuf/gogoproto" proto "github.com/gogo/protobuf/proto" - _ "github.com/regen-network/cosmos-proto" io "io" math "math" math_bits "math/bits" @@ -191,49 +191,50 @@ func init() { func init() { proto.RegisterFile("cosmos/auth/v1beta1/auth.proto", fileDescriptor_7e1f7e915d020d2d) } var fileDescriptor_7e1f7e915d020d2d = []byte{ - // 674 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x74, 0x54, 0x4d, 0x4f, 0xdb, 0x4a, - 0x14, 0x8d, 0x5f, 0xf2, 0xf8, 0x98, 0x00, 0x12, 0x26, 0x80, 0x93, 0xf7, 0x64, 0x5b, 0x5e, 0xe5, - 0x49, 0x2f, 0x8e, 0x92, 0x8a, 0x4a, 0x64, 0x51, 0x15, 0xd3, 0x2e, 0x50, 0x0b, 0x42, 0x46, 0xea, - 0xa2, 0xaa, 0xe4, 0x8e, 0x9d, 0xc1, 0x58, 0x64, 0x32, 0xc6, 0x33, 0x46, 0x31, 0xbf, 0xa0, 0xcb, - 0x2e, 0xbb, 0xe4, 0x47, 0xf0, 0x0f, 0xba, 0xe9, 0x12, 0xb1, 0xea, 0xca, 0xad, 0xc2, 0xa6, 0xea, - 0x32, 0xfb, 0x4a, 0x95, 0x67, 0x9c, 0x90, 0xa0, 0x74, 0x95, 0xb9, 0xe7, 0x9c, 0x7b, 0xee, 0x9d, - 0x7b, 0xe3, 0x01, 0xaa, 0x47, 0x28, 0x26, 0xb4, 0x09, 0x63, 0x76, 0xd6, 0xbc, 0x6c, 0xb9, 0x88, - 0xc1, 0x16, 0x0f, 0xcc, 0x30, 0x22, 0x8c, 0xc8, 0x1b, 0x82, 0x37, 0x39, 0x94, 0xf3, 0xb5, 0xaa, - 0x00, 0x1d, 0x2e, 0x69, 0xe6, 0x0a, 0x1e, 0xd4, 0x2a, 0x3e, 0xf1, 0x89, 0xc0, 0xb3, 0x53, 0x8e, - 0x56, 0x7d, 0x42, 0xfc, 0x1e, 0x6a, 0xf2, 0xc8, 0x8d, 0x4f, 0x9b, 0xb0, 0x9f, 0x08, 0xca, 0xf8, - 0x25, 0x81, 0xb2, 0x05, 0x29, 0xda, 0xf3, 0x3c, 0x12, 0xf7, 0x99, 0xac, 0x80, 0x45, 0xd8, 0xed, - 0x46, 0x88, 0x52, 0x45, 0xd2, 0xa5, 0xfa, 0xb2, 0x3d, 0x0e, 0xe5, 0x77, 0x60, 0x31, 0x8c, 0x5d, - 0xe7, 0x1c, 0x25, 0xca, 0x5f, 0xba, 0x54, 0x2f, 0xb7, 0x2b, 0xa6, 0xb0, 0x35, 0xc7, 0xb6, 0xe6, - 0x5e, 0x3f, 0xb1, 0x1a, 0x3f, 0x53, 0xad, 0x12, 0xc6, 0x6e, 0x2f, 0xf0, 0x32, 0xed, 0xff, 0x04, - 0x07, 0x0c, 0xe1, 0x90, 0x25, 0xa3, 0x54, 0x5b, 0x4f, 0x20, 0xee, 0x75, 0x8c, 0x07, 0xd6, 0xb0, - 0x17, 0xc2, 0xd8, 0x7d, 0x85, 0x12, 0xf9, 0x39, 0x58, 0x83, 0xa2, 0x05, 0xa7, 0x1f, 0x63, 0x17, - 0x45, 0x4a, 0x51, 0x97, 0xea, 0x25, 0xab, 0x3a, 0x4a, 0xb5, 0x4d, 0x91, 0x36, 0xcb, 0x1b, 0xf6, - 0x6a, 0x0e, 0x1c, 0xf1, 0x58, 0xae, 0x81, 0x25, 0x8a, 0x2e, 0x62, 0xd4, 0xf7, 0x90, 0x52, 0xca, - 0x72, 0xed, 0x49, 0xdc, 0x51, 0x3e, 0x5c, 0x6b, 0x85, 0x4f, 0xd7, 0x5a, 0xe1, 0xc7, 0xb5, 0x56, - 0xb8, 0xbb, 0x69, 0x2c, 0xe5, 0xd7, 0x3d, 0x30, 0x3e, 0x4b, 0x60, 0xf5, 0x90, 0x74, 0xe3, 0xde, - 0x64, 0x02, 0xef, 0xc1, 0x8a, 0x0b, 0x29, 0x72, 0x72, 0x77, 0x3e, 0x86, 0x72, 0x5b, 0x37, 0xe7, - 0x6c, 0xc2, 0x9c, 0x9a, 0x9c, 0xf5, 0xcf, 0x6d, 0xaa, 0x49, 0xa3, 0x54, 0xdb, 0x10, 0xdd, 0x4e, - 0x7b, 0x18, 0x76, 0xd9, 0x9d, 0x9a, 0xb1, 0x0c, 0x4a, 0x7d, 0x88, 0x11, 0x1f, 0xe3, 0xb2, 0xcd, - 0xcf, 0xb2, 0x0e, 0xca, 0x21, 0x8a, 0x70, 0x40, 0x69, 0x40, 0xfa, 0x54, 0x29, 0xea, 0xc5, 0xfa, - 0xb2, 0x3d, 0x0d, 0x75, 0x6a, 0xe3, 0x3b, 0xdc, 0xdd, 0x34, 0xd6, 0x66, 0x5a, 0x3e, 0x30, 0xbe, - 0x15, 0xc1, 0xc2, 0x31, 0x8c, 0x20, 0xa6, 0xf2, 0x11, 0xd8, 0xc0, 0x70, 0xe0, 0x60, 0x84, 0x89, - 0xe3, 0x9d, 0xc1, 0x08, 0x7a, 0x0c, 0x45, 0x62, 0x99, 0x25, 0x4b, 0x1d, 0xa5, 0x5a, 0x4d, 0xf4, - 0x37, 0x47, 0x64, 0xd8, 0xeb, 0x18, 0x0e, 0x0e, 0x11, 0x26, 0xfb, 0x13, 0x4c, 0xde, 0x05, 0x2b, - 0x6c, 0xe0, 0xd0, 0xc0, 0x77, 0x7a, 0x01, 0x0e, 0x18, 0x6f, 0xba, 0x64, 0x6d, 0x3f, 0x5c, 0x74, - 0x9a, 0x35, 0x6c, 0xc0, 0x06, 0x27, 0x81, 0xff, 0x3a, 0x0b, 0x64, 0x1b, 0x6c, 0x72, 0xf2, 0x0a, - 0x39, 0x1e, 0xa1, 0xcc, 0x09, 0x51, 0xe4, 0xb8, 0x09, 0x43, 0xf9, 0x6a, 0xf5, 0x51, 0xaa, 0xfd, - 0x3b, 0xe5, 0xf1, 0x58, 0x66, 0xd8, 0xeb, 0x99, 0xd9, 0x15, 0xda, 0x27, 0x94, 0x1d, 0xa3, 0xc8, - 0x4a, 0x18, 0x92, 0x2f, 0xc0, 0x76, 0x56, 0xed, 0x12, 0x45, 0xc1, 0x69, 0x22, 0xf4, 0xa8, 0xdb, - 0xde, 0xd9, 0x69, 0xed, 0x8a, 0xa5, 0x5b, 0x9d, 0x61, 0xaa, 0x55, 0x4e, 0x02, 0xff, 0x0d, 0x57, - 0x64, 0xa9, 0x2f, 0x5f, 0x70, 0x7e, 0x94, 0x6a, 0xaa, 0xa8, 0xf6, 0x07, 0x03, 0xc3, 0xae, 0xd0, - 0x99, 0x3c, 0x01, 0xcb, 0x09, 0xa8, 0x3e, 0xce, 0xa0, 0xc8, 0x0b, 0xdb, 0x3b, 0x4f, 0xcf, 0x5b, - 0xca, 0xdf, 0xbc, 0xe8, 0xb3, 0x61, 0xaa, 0x6d, 0xcd, 0x14, 0x3d, 0x19, 0x2b, 0x46, 0xa9, 0xa6, - 0xcf, 0x2f, 0x3b, 0x31, 0x31, 0xec, 0x2d, 0x3a, 0x37, 0xb7, 0xb3, 0x94, 0xff, 0x67, 0x25, 0x6b, - 0xff, 0xcb, 0x50, 0x95, 0x6e, 0x87, 0xaa, 0xf4, 0x7d, 0xa8, 0x4a, 0x1f, 0xef, 0xd5, 0xc2, 0xed, - 0xbd, 0x5a, 0xf8, 0x7a, 0xaf, 0x16, 0xde, 0xfe, 0xe7, 0x07, 0xec, 0x2c, 0x76, 0x4d, 0x8f, 0xe0, - 0xfc, 0x2d, 0xc8, 0x7f, 0x1a, 0xb4, 0x7b, 0xde, 0x1c, 0x88, 0xa7, 0x85, 0x25, 0x21, 0xa2, 0xee, - 0x02, 0xff, 0x52, 0x9f, 0xfc, 0x0e, 0x00, 0x00, 0xff, 0xff, 0x49, 0x90, 0x16, 0xd9, 0x76, 0x04, + // 690 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x74, 0x54, 0x4f, 0x4f, 0xdb, 0x48, + 0x14, 0x8f, 0x49, 0x96, 0x3f, 0x13, 0x40, 0xc2, 0x04, 0x70, 0xb2, 0x2b, 0xdb, 0xf2, 0x29, 0x2b, + 0x6d, 0x1c, 0x25, 0x2b, 0x56, 0x22, 0x87, 0xd5, 0x62, 0x76, 0x0f, 0x68, 0x0b, 0x42, 0x8e, 0xd4, + 0x43, 0x55, 0xc9, 0x1d, 0x3b, 0x83, 0xb1, 0xc8, 0x78, 0x8c, 0x67, 0x8c, 0x62, 0x3e, 0x41, 0x8f, + 0xbd, 0xb5, 0x47, 0x3e, 0x04, 0xdf, 0xa0, 0x97, 0x1e, 0x11, 0xa7, 0x9e, 0xdc, 0x2a, 0x5c, 0xaa, + 0x1e, 0xf3, 0x09, 0xaa, 0xcc, 0x38, 0x21, 0x41, 0xe9, 0x29, 0xf3, 0x7e, 0xbf, 0xdf, 0x7b, 0xbf, + 0x37, 0xef, 0xc5, 0x03, 0x54, 0x8f, 0x50, 0x4c, 0x68, 0x13, 0x26, 0xec, 0xa2, 0x79, 0xdd, 0x72, + 0x11, 0x83, 0x2d, 0x1e, 0x98, 0x51, 0x4c, 0x18, 0x91, 0xb7, 0x05, 0x6f, 0x72, 0x28, 0xe7, 0x6b, + 0x55, 0x01, 0x3a, 0x5c, 0xd2, 0xcc, 0x15, 0x3c, 0xa8, 0x55, 0x7c, 0xe2, 0x13, 0x81, 0x8f, 0x4f, + 0x39, 0x5a, 0xf5, 0x09, 0xf1, 0xfb, 0xa8, 0xc9, 0x23, 0x37, 0x39, 0x6f, 0xc2, 0x30, 0x15, 0x94, + 0xf1, 0x7e, 0x09, 0x94, 0x2d, 0x48, 0xd1, 0xa1, 0xe7, 0x91, 0x24, 0x64, 0x72, 0x1b, 0xac, 0xc0, + 0x5e, 0x2f, 0x46, 0x94, 0x2a, 0x92, 0x2e, 0xd5, 0xd7, 0x2c, 0xe5, 0xe1, 0xae, 0x51, 0xc9, 0x3d, + 0x0e, 0x05, 0xd3, 0x65, 0x71, 0x10, 0xfa, 0xf6, 0x44, 0x28, 0xbf, 0x06, 0x2b, 0x51, 0xe2, 0x3a, + 0x97, 0x28, 0x55, 0x96, 0x74, 0xa9, 0x5e, 0x6e, 0x57, 0x4c, 0x61, 0x68, 0x4e, 0x0c, 0xcd, 0xc3, + 0x30, 0xb5, 0x1a, 0xdf, 0x33, 0xad, 0x12, 0x25, 0x6e, 0x3f, 0xf0, 0xc6, 0xda, 0x3f, 0x08, 0x0e, + 0x18, 0xc2, 0x11, 0x4b, 0x47, 0x99, 0xb6, 0x95, 0x42, 0xdc, 0xef, 0x18, 0x4f, 0xac, 0x61, 0x2f, + 0x47, 0x89, 0xfb, 0x3f, 0x4a, 0xe5, 0x7f, 0xc0, 0x26, 0x14, 0xcd, 0x39, 0x61, 0x82, 0x5d, 0x14, + 0x2b, 0x45, 0x5d, 0xaa, 0x97, 0xac, 0xea, 0x28, 0xd3, 0x76, 0x44, 0xda, 0x3c, 0x6f, 0xd8, 0x1b, + 0x39, 0x70, 0xca, 0x63, 0xb9, 0x06, 0x56, 0x29, 0xba, 0x4a, 0x50, 0xe8, 0x21, 0xa5, 0x34, 0xce, + 0xb5, 0xa7, 0x71, 0x47, 0x79, 0x7b, 0xab, 0x15, 0x3e, 0xdc, 0x6a, 0x85, 0x6f, 0xb7, 0x5a, 0xe1, + 0xe1, 0xae, 0xb1, 0x9a, 0x0f, 0xe2, 0xd8, 0xf8, 0x28, 0x81, 0x8d, 0x13, 0xd2, 0x4b, 0xfa, 0xd3, + 0xd9, 0xbc, 0x01, 0xeb, 0x2e, 0xa4, 0xc8, 0xc9, 0xab, 0xf3, 0x01, 0x95, 0xdb, 0xba, 0xb9, 0x60, + 0x47, 0xe6, 0xcc, 0x4c, 0xad, 0x5f, 0xef, 0x33, 0x4d, 0x1a, 0x65, 0xda, 0xb6, 0xe8, 0x76, 0xb6, + 0x86, 0x61, 0x97, 0xdd, 0x99, 0xe9, 0xcb, 0xa0, 0x14, 0x42, 0x8c, 0xf8, 0x18, 0xd7, 0x6c, 0x7e, + 0x96, 0x75, 0x50, 0x8e, 0x50, 0x8c, 0x03, 0x4a, 0x03, 0x12, 0x52, 0xa5, 0xa8, 0x17, 0xeb, 0x6b, + 0xf6, 0x2c, 0xd4, 0xa9, 0x4d, 0xee, 0xf0, 0x70, 0xd7, 0xd8, 0x9c, 0x6b, 0xf9, 0xd8, 0xf8, 0x52, + 0x04, 0xcb, 0x67, 0x30, 0x86, 0x98, 0xca, 0xa7, 0x60, 0x1b, 0xc3, 0x81, 0x83, 0x11, 0x26, 0x8e, + 0x77, 0x01, 0x63, 0xe8, 0x31, 0x14, 0x8b, 0x35, 0x97, 0x2c, 0x75, 0x94, 0x69, 0x35, 0xd1, 0xdf, + 0x02, 0x91, 0x61, 0x6f, 0x61, 0x38, 0x38, 0x41, 0x98, 0x1c, 0x4d, 0x31, 0xf9, 0x00, 0xac, 0xb3, + 0x81, 0x43, 0x03, 0xdf, 0xe9, 0x07, 0x38, 0x60, 0xbc, 0xe9, 0x92, 0xb5, 0xf7, 0x74, 0xd1, 0x59, + 0xd6, 0xb0, 0x01, 0x1b, 0x74, 0x03, 0xff, 0xc5, 0x38, 0x90, 0x6d, 0xb0, 0xc3, 0xc9, 0x1b, 0xe4, + 0x78, 0x84, 0x32, 0x27, 0x42, 0xb1, 0xe3, 0xa6, 0x0c, 0xe5, 0xab, 0xd5, 0x47, 0x99, 0xf6, 0xdb, + 0x4c, 0x8d, 0xe7, 0x32, 0xc3, 0xde, 0x1a, 0x17, 0xbb, 0x41, 0x47, 0x84, 0xb2, 0x33, 0x14, 0x5b, + 0x29, 0x43, 0xf2, 0x15, 0xd8, 0x1b, 0xbb, 0x5d, 0xa3, 0x38, 0x38, 0x4f, 0x85, 0x1e, 0xf5, 0xda, + 0xfb, 0xfb, 0xad, 0x03, 0xb1, 0x74, 0xab, 0x33, 0xcc, 0xb4, 0x4a, 0x37, 0xf0, 0x5f, 0x72, 0xc5, + 0x38, 0xf5, 0xbf, 0x7f, 0x39, 0x3f, 0xca, 0x34, 0x55, 0xb8, 0xfd, 0xa4, 0x80, 0x61, 0x57, 0xe8, + 0x5c, 0x9e, 0x80, 0xe5, 0x14, 0x54, 0x9f, 0x67, 0x50, 0xe4, 0x45, 0xed, 0xfd, 0xbf, 0x2e, 0x5b, + 0xca, 0x2f, 0xdc, 0xf4, 0xef, 0x61, 0xa6, 0xed, 0xce, 0x99, 0x76, 0x27, 0x8a, 0x51, 0xa6, 0xe9, + 0x8b, 0x6d, 0xa7, 0x45, 0x0c, 0x7b, 0x97, 0x2e, 0xcc, 0xed, 0xac, 0xe6, 0xff, 0x59, 0xc9, 0x3a, + 0xfa, 0x34, 0x54, 0xa5, 0xfb, 0xa1, 0x2a, 0x7d, 0x1d, 0xaa, 0xd2, 0xbb, 0x47, 0xb5, 0x70, 0xff, + 0xa8, 0x16, 0x3e, 0x3f, 0xaa, 0x85, 0x57, 0xbf, 0xfb, 0x01, 0xbb, 0x48, 0x5c, 0xd3, 0x23, 0x38, + 0x7f, 0x25, 0xf2, 0x9f, 0x06, 0xed, 0x5d, 0x36, 0x07, 0xe2, 0xd1, 0x61, 0x69, 0x84, 0xa8, 0xbb, + 0xcc, 0xbf, 0xd4, 0x3f, 0x7f, 0x04, 0x00, 0x00, 0xff, 0xff, 0x05, 0x3c, 0xd4, 0x17, 0x90, 0x04, 0x00, 0x00, } diff --git a/x/auth/types/query.pb.go b/x/auth/types/query.pb.go index c3712a26cf79..66e2a3433f68 100644 --- a/x/auth/types/query.pb.go +++ b/x/auth/types/query.pb.go @@ -6,12 +6,12 @@ package types import ( context "context" fmt "fmt" + _ "github.com/cosmos/cosmos-proto" types "github.com/cosmos/cosmos-sdk/codec/types" query "github.com/cosmos/cosmos-sdk/types/query" _ "github.com/gogo/protobuf/gogoproto" grpc1 "github.com/gogo/protobuf/grpc" proto "github.com/gogo/protobuf/proto" - _ "github.com/regen-network/cosmos-proto" _ "google.golang.org/genproto/googleapis/api/annotations" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" @@ -397,45 +397,46 @@ func init() { func init() { proto.RegisterFile("cosmos/auth/v1beta1/query.proto", fileDescriptor_c451370b3929a27c) } var fileDescriptor_c451370b3929a27c = []byte{ - // 602 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x93, 0x4f, 0x6b, 0x13, 0x41, - 0x18, 0xc6, 0x77, 0x6b, 0x6d, 0xeb, 0x54, 0x3c, 0x4c, 0x23, 0xc4, 0x4d, 0xbb, 0x29, 0xab, 0x36, - 0x49, 0x31, 0x33, 0x36, 0x9e, 0x2a, 0x22, 0x34, 0x8a, 0xe2, 0x41, 0x88, 0xc1, 0x93, 0x07, 0xcb, - 0x24, 0x19, 0xb7, 0xc1, 0x66, 0x67, 0x9b, 0xd9, 0x15, 0x83, 0x08, 0xe2, 0xa9, 0x37, 0x05, 0xbf, - 0x40, 0xfc, 0x0e, 0xfd, 0x10, 0xa5, 0x5e, 0x0a, 0x5e, 0x3c, 0x89, 0x24, 0x1e, 0xfc, 0x18, 0x92, - 0x99, 0x77, 0x62, 0xb6, 0x6c, 0x4d, 0x4e, 0xd9, 0x99, 0x79, 0x9f, 0xf7, 0xf9, 0xbd, 0x7f, 0x82, - 0xf2, 0x4d, 0x21, 0x3b, 0x42, 0x52, 0x16, 0x47, 0x7b, 0xf4, 0xcd, 0x56, 0x83, 0x47, 0x6c, 0x8b, - 0x1e, 0xc4, 0xbc, 0xdb, 0x23, 0x61, 0x57, 0x44, 0x02, 0xaf, 0xe8, 0x00, 0x32, 0x0a, 0x20, 0x10, - 0xe0, 0x6c, 0x82, 0xaa, 0xc1, 0x24, 0xd7, 0xd1, 0x63, 0x6d, 0xc8, 0xfc, 0x76, 0xc0, 0xa2, 0xb6, - 0x08, 0x74, 0x02, 0x27, 0xe3, 0x0b, 0x5f, 0xa8, 0x4f, 0x3a, 0xfa, 0x82, 0xdb, 0x6b, 0xbe, 0x10, - 0xfe, 0x3e, 0xa7, 0xea, 0xd4, 0x88, 0x5f, 0x51, 0x16, 0x80, 0xa3, 0xb3, 0x0a, 0x4f, 0x2c, 0x6c, - 0x53, 0x16, 0x04, 0x22, 0x52, 0xd9, 0x24, 0xbc, 0xba, 0x69, 0xc0, 0x0a, 0x0e, 0x12, 0xeb, 0xf7, - 0x5d, 0xed, 0x08, 0xf0, 0xea, 0xe0, 0xbd, 0x44, 0x99, 0x67, 0x23, 0xd6, 0x9d, 0x66, 0x53, 0xc4, - 0x41, 0x24, 0xeb, 0xfc, 0x20, 0xe6, 0x32, 0xc2, 0x8f, 0x10, 0xfa, 0x47, 0x9d, 0xb5, 0xd7, 0xed, - 0xe2, 0x72, 0x65, 0x83, 0x80, 0x74, 0x54, 0x22, 0xd1, 0x0d, 0x01, 0x37, 0x52, 0x63, 0x3e, 0x07, - 0x6d, 0x7d, 0x42, 0xe9, 0xf5, 0x6d, 0x74, 0xf5, 0x8c, 0x81, 0x0c, 0x45, 0x20, 0x39, 0xbe, 0x8f, - 0x96, 0x18, 0xdc, 0x65, 0xed, 0xf5, 0x0b, 0xc5, 0xe5, 0x4a, 0x86, 0xe8, 0x2a, 0x89, 0x69, 0x00, - 0xd9, 0x09, 0x7a, 0xd5, 0xcb, 0x27, 0x47, 0xe5, 0x25, 0x50, 0x3f, 0xa9, 0x8f, 0x35, 0xf8, 0x71, - 0x82, 0x70, 0x4e, 0x11, 0x16, 0xa6, 0x12, 0x6a, 0xf3, 0x04, 0xe2, 0x36, 0x5a, 0x99, 0x24, 0x34, - 0x1d, 0xc8, 0xa2, 0x45, 0xd6, 0x6a, 0x75, 0xb9, 0x94, 0xaa, 0xfc, 0x4b, 0x75, 0x73, 0xbc, 0xbb, - 0x74, 0xd8, 0xcf, 0x5b, 0x7f, 0xfa, 0x79, 0xcb, 0x7b, 0x9e, 0xec, 0xde, 0xb8, 0xb6, 0x7b, 0x68, - 0x11, 0x38, 0xa1, 0x75, 0xb3, 0x94, 0x66, 0x24, 0x5e, 0x06, 0x61, 0x95, 0xb5, 0xc6, 0xba, 0xac, - 0x63, 0x26, 0xe2, 0xd5, 0x00, 0xd3, 0xdc, 0x82, 0xd5, 0x36, 0x5a, 0x08, 0xd5, 0x0d, 0x38, 0xe5, - 0x48, 0xca, 0x72, 0x12, 0x2d, 0xaa, 0xce, 0x1f, 0xff, 0xcc, 0x5b, 0x75, 0x10, 0x78, 0xab, 0xc8, - 0x51, 0x19, 0x9f, 0x8a, 0x56, 0xbc, 0xcf, 0xcf, 0x6c, 0x80, 0xd7, 0x44, 0xb9, 0xd4, 0x57, 0xf0, - 0x7d, 0x38, 0xe3, 0xf8, 0xf0, 0xc9, 0x51, 0xf9, 0x4a, 0x22, 0xc7, 0xc4, 0x10, 0x2b, 0xdf, 0xe6, - 0xd1, 0x45, 0xe5, 0x82, 0x0f, 0x6d, 0x64, 0x5a, 0x21, 0x71, 0x29, 0xb5, 0x88, 0xb4, 0x45, 0x75, - 0x36, 0x67, 0x09, 0xd5, 0xcc, 0xde, 0xcd, 0x8f, 0xdf, 0x7f, 0x7f, 0x99, 0xcb, 0xe3, 0x35, 0x9a, - 0xfa, 0x87, 0x31, 0xee, 0x9f, 0x6c, 0xb4, 0x08, 0x5a, 0x5c, 0x9c, 0x9a, 0xde, 0x80, 0x94, 0x66, - 0x88, 0x04, 0x0e, 0xaa, 0x38, 0x4a, 0xb8, 0xf0, 0x5f, 0x0e, 0xfa, 0x0e, 0x16, 0xee, 0x3d, 0xfe, - 0x60, 0xa3, 0x05, 0x3d, 0x42, 0x5c, 0x38, 0xdf, 0x26, 0xb1, 0x2f, 0x4e, 0x71, 0x7a, 0x20, 0xe0, - 0x5c, 0x57, 0x38, 0x6b, 0x38, 0x97, 0x8a, 0xa3, 0x97, 0x05, 0x7f, 0xb5, 0x51, 0x72, 0x8c, 0x12, - 0xd3, 0xf3, 0x1d, 0x52, 0x57, 0xca, 0xb9, 0x3d, 0xbb, 0x00, 0xd0, 0x6e, 0x29, 0xb4, 0x0d, 0x7c, - 0x23, 0x15, 0xad, 0xa3, 0x44, 0xbb, 0xa6, 0x61, 0xd5, 0x07, 0xc7, 0x03, 0xd7, 0x3e, 0x1d, 0xb8, - 0xf6, 0xaf, 0x81, 0x6b, 0x7f, 0x1e, 0xba, 0xd6, 0xe9, 0xd0, 0xb5, 0x7e, 0x0c, 0x5d, 0xeb, 0x45, - 0xc9, 0x6f, 0x47, 0x7b, 0x71, 0x83, 0x34, 0x45, 0xc7, 0x64, 0xd2, 0x3f, 0x65, 0xd9, 0x7a, 0x4d, - 0xdf, 0xea, 0xb4, 0x51, 0x2f, 0xe4, 0xb2, 0xb1, 0xa0, 0xd6, 0xf7, 0xce, 0xdf, 0x00, 0x00, 0x00, - 0xff, 0xff, 0xc0, 0xd9, 0x5e, 0x89, 0x06, 0x06, 0x00, 0x00, + // 617 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x93, 0x4f, 0x6f, 0x12, 0x41, + 0x18, 0xc6, 0x77, 0x6b, 0x6d, 0x71, 0x6a, 0x3c, 0x4c, 0x31, 0xc1, 0xa5, 0x5d, 0x9a, 0x55, 0x0b, + 0x34, 0x32, 0x63, 0xf1, 0xa4, 0x31, 0x26, 0xa0, 0xd1, 0x78, 0x30, 0x41, 0xea, 0xc9, 0x83, 0xcd, + 0x00, 0xeb, 0x96, 0x58, 0x76, 0xb6, 0xcc, 0xae, 0x91, 0x18, 0x13, 0xe3, 0xa9, 0x37, 0x4d, 0xfc, + 0x02, 0xf8, 0x1d, 0xf8, 0x10, 0x4d, 0xbd, 0x34, 0x7a, 0xf1, 0x64, 0x0c, 0x78, 0xf0, 0x63, 0x18, + 0x66, 0xde, 0x41, 0xb6, 0xd9, 0x0a, 0x27, 0x76, 0x66, 0xde, 0xe7, 0x7d, 0x7e, 0xef, 0x1f, 0x50, + 0xae, 0xc9, 0x45, 0x87, 0x0b, 0xca, 0xa2, 0x70, 0x8f, 0xbe, 0xde, 0x6e, 0xb8, 0x21, 0xdb, 0xa6, + 0x07, 0x91, 0xdb, 0xed, 0x91, 0xa0, 0xcb, 0x43, 0x8e, 0x57, 0x55, 0x00, 0x19, 0x07, 0x10, 0x08, + 0xb0, 0xb6, 0x40, 0xd5, 0x60, 0xc2, 0x55, 0xd1, 0x13, 0x6d, 0xc0, 0xbc, 0xb6, 0xcf, 0xc2, 0x36, + 0xf7, 0x55, 0x02, 0x2b, 0xed, 0x71, 0x8f, 0xcb, 0x4f, 0x3a, 0xfe, 0x82, 0xdb, 0x2b, 0x1e, 0xe7, + 0xde, 0xbe, 0x4b, 0xe5, 0xa9, 0x11, 0xbd, 0xa4, 0xcc, 0x07, 0x47, 0x6b, 0x0d, 0x9e, 0x58, 0xd0, + 0xa6, 0xcc, 0xf7, 0x79, 0x28, 0xb3, 0x09, 0x78, 0xb5, 0x93, 0x80, 0x25, 0x1c, 0x24, 0x56, 0xef, + 0xbb, 0xca, 0x11, 0xe0, 0xe5, 0xc1, 0x79, 0x81, 0xd2, 0x4f, 0xc7, 0xac, 0x95, 0x66, 0x93, 0x47, + 0x7e, 0x28, 0xea, 0xee, 0x41, 0xe4, 0x8a, 0x10, 0x3f, 0x44, 0xe8, 0x1f, 0x75, 0xc6, 0xdc, 0x30, + 0x0b, 0x2b, 0xe5, 0x4d, 0x02, 0xd2, 0x71, 0x89, 0x44, 0x35, 0x04, 0xdc, 0x48, 0x8d, 0x79, 0x2e, + 0x68, 0xeb, 0x53, 0x4a, 0xa7, 0x6f, 0xa2, 0xcb, 0xa7, 0x0c, 0x44, 0xc0, 0x7d, 0xe1, 0xe2, 0x7b, + 0x28, 0xc5, 0xe0, 0x2e, 0x63, 0x6e, 0x9c, 0x2b, 0xac, 0x94, 0xd3, 0x44, 0x55, 0x49, 0x74, 0x03, + 0x48, 0xc5, 0xef, 0x55, 0x2f, 0x1e, 0x0f, 0x4a, 0x29, 0x50, 0x3f, 0xae, 0x4f, 0x34, 0xf8, 0x51, + 0x8c, 0x70, 0x41, 0x12, 0xe6, 0x67, 0x12, 0x2a, 0xf3, 0x18, 0xe2, 0x0e, 0x5a, 0x9d, 0x26, 0xd4, + 0x1d, 0x28, 0xa3, 0x65, 0xd6, 0x6a, 0x75, 0x5d, 0x21, 0x64, 0xf9, 0x17, 0xaa, 0x99, 0x6f, 0x83, + 0x52, 0x1a, 0xf2, 0x57, 0xd4, 0xcb, 0x4e, 0xd8, 0x6d, 0xfb, 0x5e, 0x5d, 0x07, 0xde, 0x49, 0x1d, + 0xf6, 0x73, 0xc6, 0x9f, 0x7e, 0xce, 0x70, 0x9e, 0xc5, 0xfb, 0x3a, 0xa9, 0xfa, 0x2e, 0x5a, 0x86, + 0x0a, 0xa0, 0xa9, 0xf3, 0x14, 0xad, 0x25, 0x4e, 0x1a, 0x61, 0x99, 0xb5, 0xc6, 0xba, 0xac, 0xa3, + 0x67, 0xe5, 0xd4, 0xa0, 0x00, 0x7d, 0x0b, 0x56, 0xb7, 0xd1, 0x52, 0x20, 0x6f, 0xc0, 0x29, 0x4b, + 0x12, 0xd6, 0x96, 0x28, 0x51, 0x75, 0xf1, 0xe8, 0x67, 0xce, 0xa8, 0x83, 0xc0, 0x59, 0x43, 0x96, + 0xcc, 0xf8, 0x84, 0xb7, 0xa2, 0x7d, 0xf7, 0xd4, 0x6e, 0x38, 0x4d, 0x94, 0x4d, 0x7c, 0x05, 0xdf, + 0x07, 0x73, 0x0e, 0x16, 0x1f, 0x0f, 0x4a, 0x97, 0x62, 0x39, 0xa6, 0xc6, 0x5b, 0xfe, 0xba, 0x88, + 0xce, 0x4b, 0x17, 0x7c, 0x68, 0x22, 0xdd, 0x0a, 0x81, 0x8b, 0x89, 0x45, 0x24, 0xad, 0xb0, 0xb5, + 0x35, 0x4f, 0xa8, 0x62, 0x76, 0xae, 0x7f, 0xf8, 0xfe, 0xfb, 0xf3, 0x42, 0x0e, 0xaf, 0xd3, 0xc4, + 0xbf, 0x92, 0x76, 0xff, 0x68, 0xa2, 0x65, 0xd0, 0xe2, 0xc2, 0xcc, 0xf4, 0x1a, 0xa4, 0x38, 0x47, + 0x24, 0x70, 0x50, 0xc9, 0x51, 0xc4, 0xf9, 0xff, 0x72, 0xd0, 0xb7, 0xb0, 0x70, 0xef, 0xf0, 0x7b, + 0x13, 0x2d, 0xa9, 0x11, 0xe2, 0xfc, 0xd9, 0x36, 0xb1, 0x7d, 0xb1, 0x0a, 0xb3, 0x03, 0x01, 0xe7, + 0xaa, 0xc4, 0x59, 0xc7, 0xd9, 0x44, 0x1c, 0xb5, 0x2c, 0xf8, 0x8b, 0x89, 0xe2, 0x63, 0x14, 0x98, + 0x9e, 0xed, 0x90, 0xb8, 0x52, 0xd6, 0xcd, 0xf9, 0x05, 0x80, 0x76, 0x43, 0xa2, 0x6d, 0xe2, 0x6b, + 0x89, 0x68, 0x1d, 0x29, 0xda, 0xd5, 0x0d, 0xab, 0xde, 0x3f, 0x1a, 0xda, 0xe6, 0xc9, 0xd0, 0x36, + 0x7f, 0x0d, 0x6d, 0xf3, 0xd3, 0xc8, 0x36, 0x4e, 0x46, 0xb6, 0xf1, 0x63, 0x64, 0x1b, 0xcf, 0x8b, + 0x5e, 0x3b, 0xdc, 0x8b, 0x1a, 0xa4, 0xc9, 0x3b, 0x3a, 0x93, 0xfa, 0x29, 0x89, 0xd6, 0x2b, 0xfa, + 0x46, 0xa5, 0x0d, 0x7b, 0x81, 0x2b, 0x1a, 0x4b, 0x72, 0x7d, 0x6f, 0xfd, 0x0d, 0x00, 0x00, 0xff, + 0xff, 0xf7, 0x29, 0xbb, 0x35, 0x20, 0x06, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/auth/vesting/types/tx.pb.go b/x/auth/vesting/types/tx.pb.go index d07a154dd326..f2761370b475 100644 --- a/x/auth/vesting/types/tx.pb.go +++ b/x/auth/vesting/types/tx.pb.go @@ -6,6 +6,7 @@ package types import ( context "context" fmt "fmt" + _ "github.com/cosmos/cosmos-proto" github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" types "github.com/cosmos/cosmos-sdk/types" _ "github.com/gogo/protobuf/gogoproto" @@ -153,33 +154,35 @@ func init() { func init() { proto.RegisterFile("cosmos/vesting/v1beta1/tx.proto", fileDescriptor_5338ca97811f9792) } var fileDescriptor_5338ca97811f9792 = []byte{ - // 410 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x52, 0xbd, 0xae, 0xd3, 0x30, - 0x14, 0x8e, 0x6f, 0x2e, 0xf7, 0xc7, 0x17, 0x09, 0x91, 0x16, 0x1a, 0x3a, 0xc4, 0x21, 0x53, 0x16, - 0x6c, 0x5a, 0x90, 0x90, 0xba, 0x35, 0x1d, 0x51, 0x97, 0x08, 0x31, 0xb0, 0x54, 0x4e, 0x62, 0xd2, - 0x88, 0x26, 0xae, 0x62, 0xb7, 0x6a, 0x37, 0x46, 0x46, 0x1e, 0x81, 0x99, 0xa7, 0x60, 0xec, 0xd8, - 0x91, 0x29, 0xa0, 0x76, 0x61, 0xee, 0x13, 0xa0, 0xc4, 0x49, 0x61, 0x68, 0x91, 0x98, 0xec, 0xa3, - 0xef, 0xc7, 0xe7, 0x7c, 0x3e, 0x10, 0x85, 0x5c, 0xa4, 0x5c, 0x90, 0x25, 0x13, 0x32, 0xc9, 0x62, - 0xb2, 0xec, 0x05, 0x4c, 0xd2, 0x1e, 0x91, 0x2b, 0x3c, 0xcf, 0xb9, 0xe4, 0xc6, 0x63, 0x45, 0xc0, - 0x35, 0x01, 0xd7, 0x84, 0x6e, 0x3b, 0xe6, 0x31, 0xaf, 0x28, 0xa4, 0xbc, 0x29, 0x76, 0xd7, 0xaa, - 0xed, 0x02, 0x2a, 0xd8, 0xd1, 0x2b, 0xe4, 0x49, 0xa6, 0x70, 0xe7, 0xdb, 0x05, 0xec, 0x8c, 0x45, - 0x3c, 0xca, 0x19, 0x95, 0xec, 0xad, 0xb2, 0x1c, 0x86, 0x21, 0x5f, 0x64, 0xd2, 0x18, 0xc0, 0xfb, - 0xef, 0x73, 0x9e, 0x4e, 0x68, 0x14, 0xe5, 0x4c, 0x08, 0x13, 0xd8, 0xc0, 0xbd, 0xf5, 0x3a, 0x87, - 0x02, 0xb5, 0xd6, 0x34, 0x9d, 0x0d, 0x9c, 0xbf, 0x51, 0xc7, 0xbf, 0x2b, 0xcb, 0xa1, 0xaa, 0x8c, - 0x97, 0x10, 0x4a, 0x7e, 0x54, 0x5e, 0x54, 0xca, 0x47, 0x87, 0x02, 0x3d, 0x54, 0xca, 0x3f, 0x98, - 0xe3, 0xdf, 0x4a, 0xde, 0xa8, 0x42, 0x78, 0x45, 0xd3, 0xf2, 0x6d, 0x53, 0xb7, 0x75, 0xf7, 0xae, - 0xff, 0x04, 0xd7, 0xc3, 0x96, 0xed, 0x37, 0x93, 0xe2, 0x11, 0x4f, 0x32, 0xef, 0xf9, 0xa6, 0x40, - 0xda, 0xd7, 0x1f, 0xc8, 0x8d, 0x13, 0x39, 0x5d, 0x04, 0x38, 0xe4, 0x29, 0xa9, 0x67, 0x55, 0xc7, - 0x33, 0x11, 0x7d, 0x20, 0x72, 0x3d, 0x67, 0xa2, 0x12, 0x08, 0xbf, 0xb6, 0x36, 0x30, 0xbc, 0x61, - 0x59, 0x34, 0x91, 0x49, 0xca, 0xcc, 0x4b, 0x1b, 0xb8, 0xba, 0xd7, 0x3a, 0x14, 0xe8, 0x81, 0x6a, - 0xac, 0x41, 0x1c, 0xff, 0x9a, 0x65, 0xd1, 0x9b, 0x24, 0x65, 0x86, 0x09, 0xaf, 0x23, 0x36, 0xa3, - 0x6b, 0x16, 0x99, 0xf7, 0x6c, 0xe0, 0xde, 0xf8, 0x4d, 0x39, 0xb8, 0xfc, 0xf5, 0x05, 0x01, 0xe7, - 0x29, 0x44, 0x67, 0x12, 0xf4, 0x99, 0x98, 0xf3, 0x4c, 0xb0, 0xfe, 0x27, 0x00, 0xf5, 0xb1, 0x88, - 0x8d, 0x8f, 0x00, 0xb6, 0x4f, 0x46, 0x4d, 0xf0, 0xe9, 0x5f, 0xc5, 0x67, 0x9c, 0xbb, 0xaf, 0xfe, - 0x53, 0xd0, 0xb4, 0xe2, 0xbd, 0xde, 0xec, 0x2c, 0xb0, 0xdd, 0x59, 0xe0, 0xe7, 0xce, 0x02, 0x9f, - 0xf7, 0x96, 0xb6, 0xdd, 0x5b, 0xda, 0xf7, 0xbd, 0xa5, 0xbd, 0xeb, 0xfd, 0x33, 0xc9, 0x15, 0xa1, - 0x0b, 0x39, 0x3d, 0xae, 0x65, 0x15, 0x6c, 0x70, 0x55, 0x2d, 0xd1, 0x8b, 0xdf, 0x01, 0x00, 0x00, - 0xff, 0xff, 0xe7, 0x28, 0xaf, 0xe5, 0xb5, 0x02, 0x00, 0x00, + // 434 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x92, 0x3f, 0x6f, 0xd3, 0x40, + 0x18, 0xc6, 0x7d, 0x75, 0xe9, 0x9f, 0x2b, 0x12, 0xc2, 0x8d, 0xc0, 0xcd, 0xe0, 0x33, 0x9e, 0xbc, + 0xe4, 0x8e, 0x94, 0x01, 0xa9, 0x5b, 0xdd, 0x11, 0xba, 0x18, 0xc4, 0xc0, 0x12, 0x9d, 0xed, 0xc3, + 0xb5, 0xa8, 0xef, 0x22, 0xdf, 0xa5, 0x6a, 0x36, 0x46, 0x46, 0x3e, 0x02, 0x33, 0x33, 0x1f, 0x22, + 0x63, 0xc4, 0xc4, 0x64, 0x50, 0xb2, 0x30, 0xa2, 0x7c, 0x02, 0x64, 0xdf, 0x39, 0x30, 0x24, 0x48, + 0x9d, 0xec, 0xbb, 0xe7, 0x79, 0x7e, 0x7e, 0xf5, 0xf8, 0x85, 0x28, 0x15, 0xb2, 0x14, 0x92, 0xdc, + 0x30, 0xa9, 0x0a, 0x9e, 0x93, 0x9b, 0x61, 0xc2, 0x14, 0x1d, 0x12, 0x75, 0x8b, 0xc7, 0x95, 0x50, + 0xc2, 0x79, 0xa4, 0x0d, 0xd8, 0x18, 0xb0, 0x31, 0xf4, 0x7b, 0xb9, 0xc8, 0x45, 0x6b, 0x21, 0xcd, + 0x9b, 0x76, 0xf7, 0x3d, 0x83, 0x4b, 0xa8, 0x64, 0x6b, 0x56, 0x2a, 0x0a, 0x6e, 0xf4, 0x13, 0xad, + 0x8f, 0x74, 0xd0, 0xa0, 0xdb, 0x43, 0xf0, 0x7b, 0x07, 0x3e, 0xbe, 0x94, 0xf9, 0x45, 0xc5, 0xa8, + 0x62, 0x6f, 0xf4, 0xd7, 0xce, 0xd3, 0x54, 0x4c, 0xb8, 0x72, 0x62, 0x78, 0xff, 0x5d, 0x25, 0xca, + 0x11, 0xcd, 0xb2, 0x8a, 0x49, 0xe9, 0x02, 0x1f, 0x84, 0x87, 0x11, 0x59, 0xd5, 0xe8, 0x78, 0x4a, + 0xcb, 0xeb, 0xb3, 0xe0, 0x5f, 0x35, 0xf8, 0xf6, 0x75, 0xd0, 0x33, 0xe8, 0x73, 0x7d, 0xf5, 0x4a, + 0x55, 0x05, 0xcf, 0xe3, 0xa3, 0xc6, 0x66, 0xae, 0x9c, 0x97, 0x10, 0x2a, 0xb1, 0x26, 0xee, 0xb4, + 0xc4, 0xc1, 0xaa, 0x46, 0x0f, 0x35, 0xf1, 0xaf, 0xb6, 0x9d, 0x77, 0xa8, 0x44, 0x47, 0x4b, 0xe1, + 0x1e, 0x2d, 0x9b, 0x59, 0x5d, 0xdb, 0xb7, 0xc3, 0xa3, 0xd3, 0x13, 0x6c, 0x12, 0x4d, 0x13, 0x5d, + 0x69, 0xf8, 0x42, 0x14, 0x3c, 0x7a, 0x3a, 0xab, 0x91, 0xf5, 0xe5, 0x07, 0x0a, 0xf3, 0x42, 0x5d, + 0x4d, 0x12, 0x9c, 0x8a, 0xd2, 0x34, 0x61, 0x1e, 0x03, 0x99, 0xbd, 0x27, 0x6a, 0x3a, 0x66, 0xb2, + 0x0d, 0xc8, 0xd8, 0xa0, 0x1d, 0x0c, 0x0f, 0x18, 0xcf, 0x46, 0xaa, 0x28, 0x99, 0xbb, 0xeb, 0x83, + 0xd0, 0x8e, 0x8e, 0x57, 0x35, 0x7a, 0xa0, 0x07, 0xee, 0x94, 0x20, 0xde, 0x67, 0x3c, 0x7b, 0x5d, + 0x94, 0xcc, 0x71, 0xe1, 0x7e, 0xc6, 0xae, 0xe9, 0x94, 0x65, 0xee, 0x3d, 0x1f, 0x84, 0x07, 0x71, + 0x77, 0x3c, 0xdb, 0xfd, 0xf5, 0x19, 0x81, 0xe0, 0x09, 0x44, 0x5b, 0x1a, 0x8f, 0x99, 0x1c, 0x0b, + 0x2e, 0xd9, 0xe9, 0x47, 0x00, 0xed, 0x4b, 0x99, 0x3b, 0x1f, 0x00, 0xec, 0x6d, 0xfc, 0x35, 0x04, + 0x6f, 0x5e, 0x10, 0xbc, 0x85, 0xdc, 0x7f, 0x7e, 0xc7, 0x40, 0x37, 0x4a, 0xf4, 0x62, 0xb6, 0xf0, + 0xc0, 0x7c, 0xe1, 0x81, 0x9f, 0x0b, 0x0f, 0x7c, 0x5a, 0x7a, 0xd6, 0x7c, 0xe9, 0x59, 0xdf, 0x97, + 0x9e, 0xf5, 0x76, 0xf8, 0xdf, 0x26, 0x6f, 0x09, 0x9d, 0xa8, 0xab, 0xf5, 0x86, 0xb7, 0xc5, 0x26, + 0x7b, 0xed, 0xd2, 0x3d, 0xfb, 0x13, 0x00, 0x00, 0xff, 0xff, 0x93, 0xb3, 0x24, 0x8f, 0x00, 0x03, + 0x00, 0x00, } func (this *MsgCreateVestingAccount) Equal(that interface{}) bool { diff --git a/x/authz/authz.pb.go b/x/authz/authz.pb.go index 34fe197e01db..91d5b339a6a0 100644 --- a/x/authz/authz.pb.go +++ b/x/authz/authz.pb.go @@ -5,11 +5,11 @@ package authz import ( fmt "fmt" + _ "github.com/cosmos/cosmos-proto" types "github.com/cosmos/cosmos-sdk/codec/types" _ "github.com/gogo/protobuf/gogoproto" proto "github.com/gogo/protobuf/proto" github_com_gogo_protobuf_types "github.com/gogo/protobuf/types" - _ "github.com/regen-network/cosmos-proto" _ "google.golang.org/protobuf/types/known/timestamppb" io "io" math "math" diff --git a/x/authz/event.pb.go b/x/authz/event.pb.go index 4737782814c8..2d62ca07ffb6 100644 --- a/x/authz/event.pb.go +++ b/x/authz/event.pb.go @@ -5,6 +5,7 @@ package authz import ( fmt "fmt" + _ "github.com/cosmos/cosmos-proto" proto "github.com/gogo/protobuf/proto" io "io" math "math" @@ -158,21 +159,23 @@ func init() { func init() { proto.RegisterFile("cosmos/authz/v1beta1/event.proto", fileDescriptor_1f88cbc71a8baf1f) } var fileDescriptor_1f88cbc71a8baf1f = []byte{ - // 210 bytes of a gzipped FileDescriptorProto + // 245 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0x48, 0xce, 0x2f, 0xce, 0xcd, 0x2f, 0xd6, 0x4f, 0x2c, 0x2d, 0xc9, 0xa8, 0xd2, 0x2f, 0x33, 0x4c, 0x4a, 0x2d, 0x49, 0x34, 0xd4, 0x4f, 0x2d, 0x4b, 0xcd, 0x2b, 0xd1, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x81, 0xa8, - 0xd0, 0x03, 0xab, 0xd0, 0x83, 0xaa, 0x50, 0x4a, 0xe2, 0xe2, 0x72, 0x05, 0x29, 0x72, 0x2f, 0x4a, - 0xcc, 0x2b, 0x11, 0x52, 0xe0, 0xe2, 0xc9, 0x2d, 0x4e, 0x8f, 0x2f, 0xa9, 0x2c, 0x48, 0x8d, 0x2f, - 0x2d, 0xca, 0x91, 0x60, 0x52, 0x60, 0xd4, 0xe0, 0x0c, 0xe2, 0xca, 0x2d, 0x4e, 0x0f, 0xa9, 0x2c, - 0x48, 0x0d, 0x2d, 0xca, 0x11, 0x92, 0xe0, 0x62, 0x4f, 0x07, 0x29, 0x4d, 0x2d, 0x92, 0x60, 0x06, - 0x4b, 0xc2, 0xb8, 0x08, 0x99, 0x54, 0x09, 0x16, 0x64, 0x99, 0x54, 0xa5, 0x64, 0x2e, 0x6e, 0xb0, - 0x1d, 0x41, 0xa9, 0x65, 0xf9, 0xd9, 0xa9, 0xb4, 0xb1, 0xc4, 0xc9, 0xee, 0xc4, 0x23, 0x39, 0xc6, - 0x0b, 0x8f, 0xe4, 0x18, 0x1f, 0x3c, 0x92, 0x63, 0x9c, 0xf0, 0x58, 0x8e, 0xe1, 0xc2, 0x63, 0x39, - 0x86, 0x1b, 0x8f, 0xe5, 0x18, 0xa2, 0x54, 0xd2, 0x33, 0x4b, 0x32, 0x4a, 0x93, 0xf4, 0x92, 0xf3, - 0x73, 0xf5, 0xa1, 0xa1, 0x04, 0xa1, 0x74, 0x8b, 0x53, 0xb2, 0xf5, 0x2b, 0x20, 0x41, 0x96, 0xc4, - 0x06, 0x0e, 0x25, 0x63, 0x40, 0x00, 0x00, 0x00, 0xff, 0xff, 0x98, 0xf0, 0x6c, 0x35, 0x49, 0x01, - 0x00, 0x00, + 0xd0, 0x03, 0xab, 0xd0, 0x83, 0xaa, 0x90, 0x92, 0x84, 0x88, 0xc6, 0x83, 0xd5, 0xe8, 0x43, 0x95, + 0x80, 0x39, 0x4a, 0xd3, 0x18, 0xb9, 0xb8, 0x5c, 0x41, 0x06, 0xb8, 0x17, 0x25, 0xe6, 0x95, 0x08, + 0x29, 0x70, 0xf1, 0xe4, 0x16, 0xa7, 0xc7, 0x97, 0x54, 0x16, 0xa4, 0xc6, 0x97, 0x16, 0xe5, 0x48, + 0x30, 0x29, 0x30, 0x6a, 0x70, 0x06, 0x71, 0xe5, 0x16, 0xa7, 0x87, 0x54, 0x16, 0xa4, 0x86, 0x16, + 0xe5, 0x08, 0x19, 0x71, 0xb1, 0xa7, 0x83, 0x94, 0xa6, 0x16, 0x49, 0x30, 0x83, 0x24, 0x9d, 0x24, + 0x2e, 0x6d, 0xd1, 0x85, 0x59, 0xeb, 0x98, 0x92, 0x52, 0x94, 0x5a, 0x5c, 0x1c, 0x5c, 0x52, 0x94, + 0x99, 0x97, 0x1e, 0x04, 0x53, 0x88, 0xd0, 0x93, 0x2a, 0xc1, 0x42, 0x9c, 0x9e, 0x54, 0xa5, 0xe9, + 0x8c, 0x5c, 0xdc, 0x60, 0x87, 0x05, 0xa5, 0x96, 0xe5, 0x67, 0xa7, 0x0e, 0x1e, 0x97, 0x39, 0xd9, + 0x9d, 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, 0x4a, 0x7a, 0x66, 0x49, 0x46, + 0x69, 0x92, 0x5e, 0x72, 0x7e, 0x2e, 0x34, 0x94, 0xa1, 0x94, 0x6e, 0x71, 0x4a, 0xb6, 0x7e, 0x05, + 0x24, 0xde, 0x92, 0xd8, 0xc0, 0x21, 0x6f, 0x0c, 0x08, 0x00, 0x00, 0xff, 0xff, 0x5b, 0x74, 0xc2, + 0x29, 0xce, 0x01, 0x00, 0x00, } func (m *EventGrant) Marshal() (dAtA []byte, err error) { diff --git a/x/authz/genesis.pb.go b/x/authz/genesis.pb.go index eb6b63d4c72b..a2ec29b5a98d 100644 --- a/x/authz/genesis.pb.go +++ b/x/authz/genesis.pb.go @@ -5,11 +5,11 @@ package authz import ( fmt "fmt" + _ "github.com/cosmos/cosmos-proto" types "github.com/cosmos/cosmos-sdk/codec/types" _ "github.com/gogo/protobuf/gogoproto" proto "github.com/gogo/protobuf/proto" github_com_gogo_protobuf_types "github.com/gogo/protobuf/types" - _ "github.com/regen-network/cosmos-proto" _ "google.golang.org/protobuf/types/known/timestamppb" io "io" math "math" @@ -153,29 +153,30 @@ func init() { } var fileDescriptor_4c2fbb971da7c892 = []byte{ - // 337 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x6c, 0x52, 0xbb, 0x6e, 0xc2, 0x30, - 0x14, 0x8d, 0x0b, 0xea, 0xc3, 0x94, 0xa1, 0x11, 0x43, 0xca, 0x60, 0x10, 0xea, 0x90, 0x05, 0x5b, - 0xd0, 0xbd, 0x12, 0x51, 0x25, 0xa6, 0x2e, 0x94, 0xa9, 0x4b, 0xe5, 0x80, 0x6b, 0xac, 0x36, 0x31, - 0x8a, 0x4d, 0x05, 0x7c, 0x05, 0x1f, 0xd3, 0x8f, 0x40, 0x9d, 0x18, 0xbb, 0xf4, 0x21, 0xf8, 0x91, - 0x2a, 0x76, 0xa2, 0xf2, 0xe8, 0x94, 0x7b, 0x73, 0xce, 0x3d, 0xe7, 0xf8, 0xda, 0xb0, 0x31, 0x90, - 0x2a, 0x92, 0x8a, 0xd0, 0x89, 0x1e, 0xcd, 0xc9, 0x6b, 0x2b, 0x64, 0x9a, 0xb6, 0x08, 0x67, 0x31, - 0x53, 0x42, 0xe1, 0x71, 0x22, 0xb5, 0x74, 0x2b, 0x96, 0x83, 0x0d, 0x07, 0x67, 0x9c, 0x6a, 0x8d, - 0x4b, 0xc9, 0x5f, 0x18, 0x31, 0x9c, 0x70, 0xf2, 0x44, 0xb4, 0x88, 0x98, 0xd2, 0x34, 0x1a, 0xdb, - 0xb1, 0xea, 0xe5, 0x3e, 0x81, 0xc6, 0xb3, 0x0c, 0xaa, 0x70, 0xc9, 0xa5, 0x29, 0x49, 0x5a, 0xe5, - 0x03, 0xd6, 0xe7, 0xd1, 0x02, 0x99, 0xa9, 0x69, 0x1a, 0x43, 0x78, 0xde, 0xb5, 0x99, 0xee, 0x35, - 0xd5, 0xcc, 0xed, 0xc3, 0x72, 0x9a, 0x46, 0x26, 0x62, 0x4e, 0xb5, 0x90, 0xb1, 0x07, 0xea, 0x05, - 0xbf, 0xd4, 0xf6, 0xf1, 0x7f, 0x51, 0x71, 0x37, 0xa1, 0xb1, 0xee, 0x6c, 0xf3, 0x83, 0xe2, 0xf2, - 0xab, 0xe6, 0xf4, 0x76, 0x45, 0x1a, 0x9f, 0x00, 0xba, 0x87, 0x5c, 0xd7, 0x83, 0x27, 0x3c, 0xfd, - 0xcb, 0x12, 0x0f, 0xd4, 0x81, 0x7f, 0xd6, 0xcb, 0xdb, 0x3f, 0x84, 0x79, 0x47, 0xdb, 0x08, 0x73, - 0xef, 0xf6, 0x03, 0x16, 0xea, 0xc0, 0x2f, 0xb5, 0x2b, 0xd8, 0x2e, 0x05, 0xe7, 0x4b, 0xc1, 0x9d, - 0x78, 0x16, 0x5c, 0xbc, 0xbf, 0x35, 0xcb, 0x3b, 0x9e, 0x7b, 0xc9, 0xdc, 0x5b, 0x08, 0xd9, 0x74, - 0x2c, 0x12, 0xab, 0x55, 0x34, 0x5a, 0xd5, 0x03, 0xad, 0x7e, 0x7e, 0x03, 0xc1, 0x69, 0x7a, 0xbc, - 0xc5, 0x77, 0x0d, 0xf4, 0xb6, 0xe6, 0x82, 0x9b, 0xe5, 0x1a, 0x81, 0xd5, 0x1a, 0x81, 0x9f, 0x35, - 0x02, 0x8b, 0x0d, 0x72, 0x56, 0x1b, 0xe4, 0x7c, 0x6c, 0x90, 0xf3, 0x70, 0xc5, 0x85, 0x1e, 0x4d, - 0x42, 0x3c, 0x90, 0x51, 0xb6, 0xf8, 0xec, 0xd3, 0x54, 0xc3, 0x67, 0x32, 0xb5, 0xcf, 0x23, 0x3c, - 0x36, 0x4e, 0xd7, 0xbf, 0x01, 0x00, 0x00, 0xff, 0xff, 0x7c, 0xdb, 0x6c, 0xcb, 0x35, 0x02, 0x00, - 0x00, + // 358 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x92, 0xbd, 0x6e, 0xea, 0x30, + 0x1c, 0xc5, 0x63, 0x40, 0xf7, 0xc3, 0x5c, 0x86, 0x1b, 0x31, 0xa4, 0x0c, 0x01, 0xa1, 0x0e, 0x59, + 0xb0, 0x05, 0xdd, 0x2b, 0x11, 0x55, 0x62, 0xea, 0x02, 0x4c, 0x5d, 0x2a, 0x87, 0xb8, 0xc6, 0x6a, + 0x13, 0x23, 0xdb, 0x54, 0xc0, 0x53, 0xd0, 0x77, 0xe1, 0x21, 0x50, 0x27, 0xd4, 0xa9, 0x53, 0x5b, + 0xc1, 0x8b, 0x54, 0x89, 0x13, 0x95, 0x8f, 0x0e, 0x9d, 0xe2, 0xc4, 0xbf, 0x73, 0xfe, 0xc7, 0xc7, + 0x81, 0xcd, 0x91, 0x50, 0x91, 0x50, 0x98, 0x4c, 0xf5, 0x78, 0x81, 0x1f, 0xdb, 0x01, 0xd5, 0xa4, + 0x8d, 0x19, 0x8d, 0xa9, 0xe2, 0x0a, 0x4d, 0xa4, 0xd0, 0xc2, 0xae, 0x1a, 0x06, 0xa5, 0x0c, 0xca, + 0x98, 0x5a, 0x9d, 0x09, 0xc1, 0x1e, 0x28, 0x4e, 0x99, 0x60, 0x7a, 0x87, 0x35, 0x8f, 0xa8, 0xd2, + 0x24, 0x9a, 0x18, 0x59, 0xed, 0xec, 0x18, 0x20, 0xf1, 0x3c, 0xdb, 0xaa, 0x32, 0xc1, 0x44, 0xba, + 0xc4, 0xc9, 0x2a, 0x17, 0x98, 0x39, 0xb7, 0x66, 0x23, 0x1b, 0x9a, 0xbe, 0x34, 0x43, 0xf8, 0xaf, + 0x67, 0x32, 0x0d, 0x34, 0xd1, 0xd4, 0x1e, 0xc2, 0x4a, 0x92, 0x46, 0x48, 0xbe, 0x20, 0x9a, 0x8b, + 0xd8, 0x01, 0x8d, 0xa2, 0x57, 0xee, 0x78, 0xe8, 0xbb, 0xa8, 0xa8, 0x27, 0x49, 0xac, 0xbb, 0xfb, + 0xbc, 0x5f, 0x5a, 0xbf, 0xd5, 0xad, 0xfe, 0xa1, 0x49, 0xf3, 0xa9, 0x00, 0xed, 0x53, 0xd6, 0xee, + 0xc0, 0xdf, 0x2c, 0xf9, 0x4a, 0xa5, 0x03, 0x1a, 0xc0, 0xfb, 0xeb, 0x3b, 0x2f, 0xab, 0x56, 0x5e, + 0x4a, 0x37, 0x0c, 0x25, 0x55, 0x6a, 0xa0, 0x25, 0x8f, 0x59, 0x3f, 0x07, 0xbf, 0x34, 0xd4, 0x29, + 0xfc, 0x4c, 0x43, 0xed, 0xeb, 0xe3, 0x43, 0x15, 0x1b, 0xc0, 0x2b, 0x77, 0xaa, 0xc8, 0x14, 0x89, + 0xf2, 0x22, 0x51, 0x37, 0x9e, 0xfb, 0xff, 0x9f, 0x57, 0xad, 0xca, 0x41, 0xce, 0xa3, 0xd3, 0xd8, + 0x57, 0x10, 0xd2, 0xd9, 0x84, 0x4b, 0xe3, 0x55, 0x4a, 0xbd, 0x6a, 0x27, 0x5e, 0xc3, 0xfc, 0xd6, + 0xfc, 0x3f, 0x49, 0x25, 0xcb, 0xf7, 0x3a, 0xe8, 0xef, 0xe9, 0xfc, 0xcb, 0xf5, 0xd6, 0x05, 0x9b, + 0xad, 0x0b, 0x3e, 0xb6, 0x2e, 0x58, 0xee, 0x5c, 0x6b, 0xb3, 0x73, 0xad, 0xd7, 0x9d, 0x6b, 0xdd, + 0x9c, 0x33, 0xae, 0xc7, 0xd3, 0x00, 0x8d, 0x44, 0x94, 0x5d, 0x56, 0xf6, 0x68, 0xa9, 0xf0, 0x1e, + 0xcf, 0xcc, 0x2f, 0x15, 0xfc, 0x4a, 0x27, 0x5d, 0x7c, 0x06, 0x00, 0x00, 0xff, 0xff, 0x6e, 0xaf, + 0x1e, 0x75, 0x69, 0x02, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/authz/query.pb.go b/x/authz/query.pb.go index 3e332ef64453..dd625cf055ed 100644 --- a/x/authz/query.pb.go +++ b/x/authz/query.pb.go @@ -6,6 +6,7 @@ package authz import ( context "context" fmt "fmt" + _ "github.com/cosmos/cosmos-proto" query "github.com/cosmos/cosmos-sdk/types/query" grpc1 "github.com/gogo/protobuf/grpc" proto "github.com/gogo/protobuf/proto" @@ -163,31 +164,33 @@ func init() { func init() { proto.RegisterFile("cosmos/authz/v1beta1/query.proto", fileDescriptor_376d714ffdeb1545) } var fileDescriptor_376d714ffdeb1545 = []byte{ - // 381 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x92, 0x41, 0x4f, 0xf2, 0x30, - 0x18, 0xc7, 0x29, 0xbc, 0x2f, 0xc6, 0xe2, 0xa9, 0x7a, 0x58, 0x90, 0x2c, 0x0b, 0x21, 0x3a, 0x4d, - 0xec, 0x02, 0xdc, 0x3d, 0x78, 0x90, 0xab, 0x2e, 0x7a, 0xf1, 0x42, 0x3a, 0x6c, 0xca, 0x22, 0x5b, - 0xc7, 0xda, 0x19, 0xf1, 0xa8, 0x67, 0x13, 0x13, 0xbe, 0x89, 0x9f, 0xc2, 0x23, 0x89, 0x17, 0x8f, - 0x06, 0xfc, 0x20, 0x86, 0xb6, 0x08, 0xc4, 0x25, 0x7a, 0x5a, 0xb6, 0xe7, 0xf7, 0xfc, 0x9f, 0x5f, - 0x9f, 0x15, 0x3a, 0x3d, 0x2e, 0x22, 0x2e, 0x3c, 0x92, 0xc9, 0xfe, 0xbd, 0x77, 0xdb, 0x0c, 0xa8, - 0x24, 0x4d, 0x6f, 0x98, 0xd1, 0x74, 0x84, 0x93, 0x94, 0x4b, 0x8e, 0x76, 0x34, 0x81, 0x15, 0x81, - 0x0d, 0x51, 0xad, 0x31, 0xce, 0xd9, 0x80, 0x7a, 0x24, 0x09, 0x3d, 0x12, 0xc7, 0x5c, 0x12, 0x19, - 0xf2, 0x58, 0xe8, 0x9e, 0xea, 0xa1, 0x49, 0x0d, 0x88, 0xa0, 0x3a, 0xec, 0x3b, 0x3a, 0x21, 0x2c, - 0x8c, 0x15, 0x6c, 0xd8, 0x7c, 0x03, 0x3d, 0x4d, 0x11, 0xf5, 0x17, 0x00, 0xd1, 0xf9, 0x3c, 0xa4, - 0x93, 0x92, 0x58, 0x0a, 0x9f, 0x0e, 0x33, 0x2a, 0x24, 0xb2, 0xe0, 0x06, 0x9b, 0x7f, 0xa0, 0xa9, - 0x05, 0x1c, 0xe0, 0x6e, 0xfa, 0x8b, 0xd7, 0x65, 0x85, 0x5a, 0xc5, 0xd5, 0x0a, 0x45, 0x0e, 0xdc, - 0x8a, 0x04, 0xeb, 0xca, 0x51, 0x42, 0xbb, 0x59, 0x3a, 0xb0, 0x4a, 0xaa, 0x0c, 0x23, 0xc1, 0x2e, - 0x46, 0x09, 0xbd, 0x4c, 0x07, 0xe8, 0x14, 0xc2, 0xa5, 0xa2, 0xf5, 0xcf, 0x01, 0x6e, 0xa5, 0xb5, - 0x87, 0xcd, 0x0e, 0xe6, 0xe7, 0xc1, 0x7a, 0x39, 0x46, 0x14, 0x9f, 0x11, 0x46, 0x8d, 0x91, 0xbf, - 0xd2, 0x59, 0x1f, 0x03, 0xb8, 0xbd, 0x26, 0x2d, 0x12, 0x1e, 0x0b, 0x8a, 0xda, 0xb0, 0xac, 0x64, - 0x84, 0x05, 0x9c, 0x92, 0x5b, 0x69, 0xed, 0xe2, 0xbc, 0xfd, 0x62, 0xd5, 0xe5, 0x1b, 0x14, 0x75, - 0xd6, 0xa4, 0x8a, 0x4a, 0x6a, 0xff, 0x57, 0x29, 0x3d, 0x71, 0xd5, 0xaa, 0xf5, 0x04, 0xe0, 0x7f, - 0x65, 0x85, 0x1e, 0x01, 0x2c, 0x6b, 0x35, 0xe4, 0xe6, 0x2b, 0xfc, 0x5c, 0x79, 0xf5, 0xe0, 0x0f, - 0xa4, 0x9e, 0x5a, 0x6f, 0x3c, 0xbc, 0x7d, 0x8e, 0x8b, 0x36, 0xaa, 0x79, 0xb9, 0xff, 0x57, 0x1f, - 0xec, 0xe4, 0xf8, 0x75, 0x6a, 0x83, 0xc9, 0xd4, 0x06, 0x1f, 0x53, 0x1b, 0x3c, 0xcf, 0xec, 0xc2, - 0x64, 0x66, 0x17, 0xde, 0x67, 0x76, 0xe1, 0xaa, 0xc1, 0x42, 0xd9, 0xcf, 0x02, 0xdc, 0xe3, 0xd1, - 0x22, 0x41, 0x3f, 0x8e, 0xc4, 0xf5, 0x8d, 0x77, 0xa7, 0xe3, 0x82, 0xb2, 0xba, 0x21, 0xed, 0xaf, - 0x00, 0x00, 0x00, 0xff, 0xff, 0xf2, 0x52, 0x9e, 0x65, 0xc7, 0x02, 0x00, 0x00, + // 410 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x92, 0x41, 0xef, 0xd2, 0x30, + 0x18, 0xc6, 0x29, 0x7f, 0xc5, 0x58, 0x3c, 0x55, 0x0f, 0x13, 0xc9, 0xb2, 0x10, 0xa2, 0xd3, 0x84, + 0x36, 0x8c, 0xbb, 0x89, 0x1c, 0xe4, 0xaa, 0x53, 0x2f, 0x5e, 0x48, 0x07, 0x4d, 0x59, 0x64, 0xeb, + 0x68, 0x3b, 0x23, 0x1e, 0xf5, 0x6c, 0x62, 0xc2, 0x57, 0xf1, 0x43, 0x78, 0x24, 0x7a, 0xf1, 0x68, + 0xc0, 0xf8, 0x39, 0xcc, 0xda, 0x22, 0x10, 0x97, 0xc8, 0x69, 0xe9, 0xf2, 0x3c, 0xcf, 0xfb, 0x7b, + 0xda, 0x17, 0x06, 0x33, 0xa1, 0x32, 0xa1, 0x08, 0x2d, 0xf5, 0xe2, 0x3d, 0x79, 0x3b, 0x4c, 0x98, + 0xa6, 0x43, 0xb2, 0x2a, 0x99, 0x5c, 0xe3, 0x42, 0x0a, 0x2d, 0xd0, 0x1d, 0xab, 0xc0, 0x46, 0x81, + 0x9d, 0xa2, 0xd3, 0xe5, 0x42, 0xf0, 0x25, 0x23, 0xb4, 0x48, 0x09, 0xcd, 0x73, 0xa1, 0xa9, 0x4e, + 0x45, 0xae, 0xac, 0xa7, 0xf3, 0xc8, 0xa5, 0x26, 0x54, 0x31, 0x1b, 0xf6, 0x37, 0xba, 0xa0, 0x3c, + 0xcd, 0x8d, 0xd8, 0x69, 0xeb, 0x09, 0xec, 0x34, 0xab, 0xb8, 0x6b, 0x15, 0x53, 0x73, 0x22, 0x0e, + 0xc7, 0x1c, 0x7a, 0xbf, 0x01, 0x44, 0xcf, 0xab, 0xfc, 0x89, 0xa4, 0xb9, 0x56, 0x31, 0x5b, 0x95, + 0x4c, 0x69, 0x14, 0xc1, 0x1b, 0xbc, 0xfa, 0xc1, 0xa4, 0x07, 0x02, 0x10, 0xde, 0x1c, 0x7b, 0xdf, + 0xbe, 0x0c, 0x0e, 0x45, 0x9e, 0xcc, 0xe7, 0x92, 0x29, 0xf5, 0x42, 0xcb, 0x34, 0xe7, 0xf1, 0x41, + 0x78, 0xf4, 0x30, 0xaf, 0x79, 0x99, 0x87, 0xa1, 0x00, 0xde, 0xca, 0x14, 0x9f, 0xea, 0x75, 0xc1, + 0xa6, 0xa5, 0x5c, 0x7a, 0x57, 0x95, 0x31, 0x86, 0x99, 0xe2, 0x2f, 0xd7, 0x05, 0x7b, 0x25, 0x97, + 0xe8, 0x29, 0x84, 0xc7, 0xc6, 0xde, 0xb5, 0x00, 0x84, 0xed, 0xe8, 0x3e, 0x76, 0xa9, 0xd5, 0xf5, + 0x60, 0x7b, 0xd7, 0xae, 0x37, 0x7e, 0x46, 0x39, 0x73, 0x2d, 0xe2, 0x13, 0x67, 0x6f, 0x03, 0xe0, + 0xed, 0xb3, 0xa2, 0xaa, 0x10, 0xb9, 0x62, 0x68, 0x04, 0x5b, 0x06, 0x46, 0x79, 0x20, 0xb8, 0x0a, + 0xdb, 0xd1, 0x3d, 0x5c, 0xf7, 0x5c, 0xd8, 0xb8, 0x62, 0x27, 0x45, 0x93, 0x33, 0xa8, 0xa6, 0x81, + 0x7a, 0xf0, 0x5f, 0x28, 0x3b, 0xf1, 0x94, 0x2a, 0xfa, 0x04, 0xe0, 0x75, 0x43, 0x85, 0x3e, 0x02, + 0xd8, 0xb2, 0x68, 0x28, 0xac, 0x47, 0xf8, 0xf7, 0x99, 0x3a, 0x0f, 0x2f, 0x50, 0xda, 0xa9, 0xbd, + 0xfe, 0x87, 0xef, 0xbf, 0x36, 0x4d, 0x1f, 0x75, 0x49, 0xed, 0xba, 0xd8, 0x62, 0xe3, 0xc7, 0x5f, + 0x77, 0x3e, 0xd8, 0xee, 0x7c, 0xf0, 0x73, 0xe7, 0x83, 0xcf, 0x7b, 0xbf, 0xb1, 0xdd, 0xfb, 0x8d, + 0x1f, 0x7b, 0xbf, 0xf1, 0xba, 0xcf, 0x53, 0xbd, 0x28, 0x13, 0x3c, 0x13, 0xd9, 0x21, 0xc1, 0x7e, + 0x06, 0x6a, 0xfe, 0x86, 0xbc, 0xb3, 0x71, 0x49, 0xcb, 0x6c, 0xd5, 0xe8, 0x4f, 0x00, 0x00, 0x00, + 0xff, 0xff, 0xb6, 0x08, 0x74, 0x8e, 0x16, 0x03, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/authz/tx.pb.go b/x/authz/tx.pb.go index 9f75a1936185..3bab5a68d6f9 100644 --- a/x/authz/tx.pb.go +++ b/x/authz/tx.pb.go @@ -6,12 +6,12 @@ package authz import ( context "context" fmt "fmt" + _ "github.com/cosmos/cosmos-proto" types "github.com/cosmos/cosmos-sdk/codec/types" _ "github.com/cosmos/cosmos-sdk/types" _ "github.com/gogo/protobuf/gogoproto" grpc1 "github.com/gogo/protobuf/grpc" proto "github.com/gogo/protobuf/proto" - _ "github.com/regen-network/cosmos-proto" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" @@ -282,38 +282,40 @@ func init() { func init() { proto.RegisterFile("cosmos/authz/v1beta1/tx.proto", fileDescriptor_3ceddab7d8589ad1) } var fileDescriptor_3ceddab7d8589ad1 = []byte{ - // 487 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x93, 0xcf, 0x6e, 0xd3, 0x40, - 0x10, 0xc6, 0xb3, 0x4d, 0xda, 0x92, 0x6d, 0x25, 0xc0, 0xe4, 0xe0, 0x1a, 0xea, 0x58, 0xe6, 0x5f, - 0x24, 0xe8, 0x5a, 0x0d, 0x07, 0xce, 0x8d, 0x84, 0x90, 0x10, 0x16, 0x92, 0x05, 0x17, 0x2e, 0xd1, - 0x3a, 0x5d, 0x36, 0x56, 0x62, 0xaf, 0xe5, 0x59, 0x97, 0xa4, 0x4f, 0xc1, 0xc3, 0xf0, 0x10, 0x11, - 0xa7, 0x1e, 0x39, 0x21, 0x48, 0x5e, 0x82, 0x23, 0xf2, 0xee, 0x3a, 0x14, 0x94, 0x16, 0x89, 0x53, - 0x76, 0xe6, 0xfb, 0x65, 0xe6, 0xf3, 0xe7, 0x35, 0x3e, 0x1c, 0x09, 0x48, 0x05, 0x04, 0xb4, 0x94, - 0xe3, 0xf3, 0xe0, 0xec, 0x38, 0x66, 0x92, 0x1e, 0x07, 0x72, 0x46, 0xf2, 0x42, 0x48, 0x61, 0x75, - 0xb4, 0x4c, 0x94, 0x4c, 0x8c, 0xec, 0x1c, 0xe8, 0xee, 0x50, 0x31, 0x81, 0x41, 0x54, 0xe1, 0x74, - 0xb8, 0xe0, 0x42, 0xf7, 0xab, 0x93, 0xe9, 0x76, 0xb9, 0x10, 0x7c, 0xca, 0x02, 0x55, 0xc5, 0xe5, - 0x87, 0x40, 0x26, 0x29, 0x03, 0x49, 0xd3, 0xdc, 0x00, 0x07, 0x7f, 0x03, 0x34, 0x9b, 0x1b, 0xe9, - 0xbe, 0x71, 0x18, 0x53, 0x60, 0x01, 0x8d, 0x47, 0xc9, 0xda, 0x65, 0x55, 0x18, 0xc8, 0xdb, 0xf8, - 0x18, 0xda, 0xb5, 0x22, 0xfc, 0x8f, 0xf8, 0x46, 0x08, 0xfc, 0x65, 0x41, 0x33, 0x69, 0xd9, 0x78, - 0x97, 0x57, 0x07, 0x56, 0xd8, 0xc8, 0x43, 0xbd, 0x76, 0x54, 0x97, 0xbf, 0x15, 0x66, 0x6f, 0x5d, - 0x56, 0x98, 0xf5, 0x1c, 0x6f, 0xab, 0xa3, 0xdd, 0xf4, 0x50, 0x6f, 0xaf, 0x7f, 0x97, 0x6c, 0x4a, - 0x86, 0xa8, 0xf9, 0x83, 0xd6, 0xe2, 0x5b, 0xb7, 0x11, 0x69, 0xde, 0x7f, 0x82, 0x6f, 0x86, 0xc0, - 0x5f, 0xcc, 0xd8, 0x28, 0x62, 0x90, 0x8b, 0x0c, 0x58, 0xb5, 0xa5, 0x60, 0x50, 0x4e, 0x25, 0xd8, - 0xc8, 0x6b, 0xf6, 0xf6, 0xa3, 0xba, 0xf4, 0x05, 0xde, 0x35, 0xf0, 0x65, 0x2b, 0xe8, 0x4f, 0x2b, - 0xaf, 0x70, 0x2b, 0x05, 0x0e, 0xf6, 0x96, 0xd7, 0xec, 0xed, 0xf5, 0x3b, 0x44, 0x67, 0x47, 0xea, - 0xec, 0xc8, 0x49, 0x36, 0x1f, 0x78, 0x5f, 0x3e, 0x1f, 0xdd, 0x83, 0xd3, 0x09, 0x09, 0x81, 0x3f, - 0xf5, 0xb4, 0xc9, 0x93, 0x52, 0x8e, 0x45, 0x91, 0x9c, 0x53, 0x99, 0x88, 0x2c, 0x52, 0x33, 0x7c, - 0x0b, 0xdf, 0xaa, 0x63, 0xa9, 0xed, 0xf9, 0x14, 0xb7, 0x43, 0xe0, 0x11, 0x3b, 0x13, 0x13, 0xf6, - 0x5f, 0x59, 0x79, 0x78, 0x3f, 0x05, 0x3e, 0x94, 0xf3, 0x9c, 0x0d, 0xcb, 0x62, 0xaa, 0x22, 0x6b, - 0x47, 0x38, 0x05, 0xfe, 0x76, 0x9e, 0xb3, 0x77, 0xc5, 0xd4, 0xbf, 0x83, 0x6f, 0xaf, 0x57, 0xd4, - 0x7b, 0xfb, 0x3f, 0x11, 0x6e, 0x86, 0xc0, 0xad, 0x37, 0x78, 0x5b, 0xbf, 0x27, 0x77, 0x73, 0xc8, - 0xb5, 0x61, 0xe7, 0xd1, 0xf5, 0xfa, 0x3a, 0xef, 0xd7, 0xb8, 0xa5, 0x22, 0x3d, 0xbc, 0x92, 0xaf, - 0x64, 0xe7, 0xe1, 0xb5, 0xf2, 0x7a, 0x5a, 0x84, 0x77, 0x4c, 0x36, 0xdd, 0x2b, 0xff, 0xa0, 0x01, - 0xe7, 0xf1, 0x3f, 0x80, 0x7a, 0xe6, 0x60, 0xb0, 0xf8, 0xe1, 0x36, 0x16, 0x4b, 0x17, 0x5d, 0x2c, - 0x5d, 0xf4, 0x7d, 0xe9, 0xa2, 0x4f, 0x2b, 0xb7, 0x71, 0xb1, 0x72, 0x1b, 0x5f, 0x57, 0x6e, 0xe3, - 0xfd, 0x03, 0x9e, 0xc8, 0x71, 0x19, 0x93, 0x91, 0x48, 0xcd, 0xd7, 0x66, 0x7e, 0x8e, 0xe0, 0x74, - 0x12, 0xcc, 0xf4, 0x3d, 0x8f, 0x77, 0xd4, 0x05, 0x78, 0xf6, 0x2b, 0x00, 0x00, 0xff, 0xff, 0xe3, - 0x02, 0xf3, 0xbe, 0xd3, 0x03, 0x00, 0x00, + // 517 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x93, 0xcf, 0x6e, 0xd3, 0x4c, + 0x14, 0xc5, 0x33, 0x4d, 0xda, 0x7c, 0x99, 0x56, 0xfa, 0xc0, 0x64, 0xe1, 0x06, 0xea, 0x58, 0xe6, + 0x5f, 0x24, 0xc8, 0x58, 0x0d, 0x0b, 0xd6, 0xb1, 0x84, 0x90, 0x10, 0x16, 0x92, 0x81, 0x0d, 0x9b, + 0xc8, 0x4e, 0x86, 0x89, 0x95, 0xd8, 0x63, 0xf9, 0x8e, 0xab, 0xa4, 0x6f, 0xc0, 0x8e, 0x0d, 0x4f, + 0xc1, 0xb6, 0x0f, 0x11, 0xb1, 0xaa, 0x58, 0xb1, 0x42, 0x90, 0xbc, 0x04, 0x4b, 0x94, 0x99, 0x71, + 0x40, 0x28, 0x2d, 0x5d, 0xb1, 0xf2, 0xdc, 0x39, 0xbf, 0x19, 0x9d, 0x7b, 0x8f, 0x07, 0x1f, 0x0d, + 0x39, 0x24, 0x1c, 0xdc, 0xb0, 0x10, 0xe3, 0x53, 0xf7, 0xe4, 0x38, 0xa2, 0x22, 0x3c, 0x76, 0xc5, + 0x8c, 0x64, 0x39, 0x17, 0xdc, 0x68, 0x2a, 0x99, 0x48, 0x99, 0x68, 0xb9, 0x75, 0xa8, 0x76, 0x07, + 0x92, 0x71, 0x35, 0x22, 0x8b, 0x56, 0x93, 0x71, 0xc6, 0xd5, 0xfe, 0x7a, 0xa5, 0x77, 0xdb, 0x8c, + 0x73, 0x36, 0xa5, 0xae, 0xac, 0xa2, 0xe2, 0xad, 0x2b, 0xe2, 0x84, 0x82, 0x08, 0x93, 0x4c, 0x03, + 0x87, 0x7f, 0x02, 0x61, 0x3a, 0xd7, 0xd2, 0x6d, 0xed, 0x30, 0x0a, 0x81, 0xba, 0x61, 0x34, 0x8c, + 0x37, 0x2e, 0xd7, 0x85, 0x86, 0xec, 0xad, 0x6d, 0x28, 0xd7, 0x92, 0x70, 0x3e, 0x22, 0xfc, 0x9f, + 0x0f, 0xec, 0x69, 0x1e, 0xa6, 0xc2, 0xe8, 0xe1, 0x3a, 0x5b, 0x2f, 0x68, 0x6e, 0x22, 0x1b, 0x75, + 0x1a, 0x9e, 0xf9, 0xf9, 0xac, 0x5b, 0xf6, 0xda, 0x1f, 0x8d, 0x72, 0x0a, 0xf0, 0x52, 0xe4, 0x71, + 0xca, 0x82, 0x12, 0xfc, 0x75, 0x86, 0x9a, 0x3b, 0x57, 0x3b, 0x43, 0x8d, 0xc7, 0x78, 0x57, 0x2e, + 0xcd, 0xaa, 0x8d, 0x3a, 0xfb, 0xbd, 0x9b, 0x64, 0xdb, 0x38, 0x89, 0xf4, 0xe4, 0xd5, 0x16, 0x5f, + 0xdb, 0x95, 0x40, 0xf1, 0xce, 0x03, 0xfc, 0xbf, 0x0f, 0xec, 0xc9, 0x8c, 0x0e, 0x03, 0x0a, 0x19, + 0x4f, 0x81, 0x1a, 0x26, 0xae, 0xe7, 0x14, 0x8a, 0xa9, 0x00, 0x13, 0xd9, 0xd5, 0xce, 0x41, 0x50, + 0x96, 0xce, 0x3b, 0x84, 0xeb, 0x9a, 0xfe, 0xdd, 0x25, 0xba, 0xaa, 0xcb, 0x67, 0xb8, 0x96, 0x00, + 0x03, 0x73, 0xc7, 0xae, 0x76, 0xf6, 0x7b, 0x4d, 0xa2, 0xb2, 0x20, 0x65, 0x16, 0xa4, 0x9f, 0xce, + 0x3d, 0xfb, 0xd3, 0x59, 0xf7, 0x16, 0x8c, 0x26, 0xc4, 0x07, 0xf6, 0xd0, 0x56, 0xfe, 0xfb, 0x85, + 0x18, 0xf3, 0x3c, 0x3e, 0x0d, 0x45, 0xcc, 0xd3, 0x40, 0xde, 0xe1, 0x18, 0xf8, 0x5a, 0x39, 0xe5, + 0xd2, 0xb9, 0xf3, 0x01, 0xe1, 0x86, 0x0f, 0x2c, 0xa0, 0x27, 0x7c, 0x42, 0xff, 0xd9, 0xec, 0x6d, + 0x7c, 0x90, 0x00, 0x1b, 0x88, 0x79, 0x46, 0x07, 0x45, 0x3e, 0x95, 0x11, 0x34, 0x02, 0x9c, 0x00, + 0x7b, 0x35, 0xcf, 0xe8, 0xeb, 0x7c, 0xea, 0xdc, 0xc0, 0xd7, 0x37, 0xb6, 0x4a, 0xb3, 0xbd, 0x1f, + 0x08, 0x57, 0x7d, 0x60, 0xc6, 0x0b, 0xbc, 0xab, 0xfe, 0x15, 0x6b, 0x7b, 0x68, 0x65, 0x97, 0xad, + 0x7b, 0x97, 0xeb, 0x9b, 0xfc, 0x9e, 0xe3, 0x9a, 0x4c, 0xe8, 0xe8, 0x42, 0x7e, 0x2d, 0xb7, 0xee, + 0x5e, 0x2a, 0x6f, 0x6e, 0x0b, 0xf0, 0x9e, 0x9e, 0x67, 0xfb, 0xc2, 0x03, 0x0a, 0x68, 0xdd, 0xff, + 0x0b, 0x50, 0xde, 0xe9, 0x79, 0x8b, 0xef, 0x56, 0x65, 0xb1, 0xb4, 0xd0, 0xf9, 0xd2, 0x42, 0xdf, + 0x96, 0x16, 0x7a, 0xbf, 0xb2, 0x2a, 0xe7, 0x2b, 0xab, 0xf2, 0x65, 0x65, 0x55, 0xde, 0xdc, 0x61, + 0xb1, 0x18, 0x17, 0x11, 0x19, 0xf2, 0x44, 0x3f, 0x79, 0xfd, 0xe9, 0xc2, 0x68, 0xe2, 0xce, 0xd4, + 0x63, 0x8b, 0xf6, 0xe4, 0x5f, 0xf3, 0xe8, 0x67, 0x00, 0x00, 0x00, 0xff, 0xff, 0x76, 0x05, 0x3d, + 0x79, 0x58, 0x04, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/bank/types/authz.pb.go b/x/bank/types/authz.pb.go index 92444cb98e91..a8a642f35929 100644 --- a/x/bank/types/authz.pb.go +++ b/x/bank/types/authz.pb.go @@ -5,11 +5,11 @@ package types import ( fmt "fmt" + _ "github.com/cosmos/cosmos-proto" github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" types "github.com/cosmos/cosmos-sdk/types" _ "github.com/gogo/protobuf/gogoproto" proto "github.com/gogo/protobuf/proto" - _ "github.com/regen-network/cosmos-proto" io "io" math "math" math_bits "math/bits" diff --git a/x/bank/types/bank.pb.go b/x/bank/types/bank.pb.go index 623b8b626f4e..49e8a6b05fd5 100644 --- a/x/bank/types/bank.pb.go +++ b/x/bank/types/bank.pb.go @@ -5,11 +5,11 @@ package types import ( fmt "fmt" + _ "github.com/cosmos/cosmos-proto" github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" types "github.com/cosmos/cosmos-sdk/types" _ "github.com/gogo/protobuf/gogoproto" proto "github.com/gogo/protobuf/proto" - _ "github.com/regen-network/cosmos-proto" io "io" math "math" math_bits "math/bits" @@ -445,48 +445,49 @@ func init() { func init() { proto.RegisterFile("cosmos/bank/v1beta1/bank.proto", fileDescriptor_dd052eee12edf988) } var fileDescriptor_dd052eee12edf988 = []byte{ - // 644 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x54, 0xc1, 0x6b, 0x13, 0x4f, - 0x14, 0xce, 0x34, 0x4d, 0xb2, 0x9d, 0xfc, 0x7e, 0x97, 0xb1, 0xc8, 0xb6, 0xe0, 0x6e, 0x5c, 0x50, - 0x52, 0xb1, 0x49, 0xab, 0x9e, 0x82, 0x20, 0xa4, 0x8a, 0x46, 0x10, 0x65, 0x4b, 0x11, 0xf4, 0x10, - 0x26, 0x99, 0x69, 0x32, 0x74, 0x77, 0x66, 0xd9, 0x99, 0x2d, 0xcd, 0x7f, 0x20, 0x1e, 0xd4, 0xa3, - 0xc7, 0x9e, 0x3d, 0x0b, 0xfe, 0x0b, 0x3d, 0x16, 0xbd, 0x78, 0x8a, 0x92, 0x5e, 0x3c, 0xf7, 0x2f, - 0x90, 0x99, 0xd9, 0xa4, 0x29, 0x54, 0xf1, 0xe0, 0xc1, 0x53, 0xde, 0xf7, 0xde, 0xf7, 0xbe, 0xf7, - 0xf1, 0xe6, 0x6d, 0xa0, 0xd7, 0x17, 0x32, 0x16, 0xb2, 0xd9, 0xc3, 0x7c, 0xaf, 0xb9, 0xbf, 0xd9, - 0xa3, 0x0a, 0x6f, 0x1a, 0xd0, 0x48, 0x52, 0xa1, 0x04, 0xba, 0x64, 0xeb, 0x0d, 0x93, 0xca, 0xeb, - 0xab, 0xcb, 0x03, 0x31, 0x10, 0xa6, 0xde, 0xd4, 0x91, 0xa5, 0xae, 0xae, 0x58, 0x6a, 0xd7, 0x16, - 0xf2, 0x3e, 0x5b, 0x3a, 0x9b, 0x22, 0xe9, 0x6c, 0x4a, 0x5f, 0x30, 0x6e, 0xeb, 0xc1, 0x17, 0x00, - 0xcb, 0xcf, 0x70, 0x8a, 0x63, 0x89, 0x76, 0xe1, 0x7f, 0x92, 0x72, 0xd2, 0xa5, 0x1c, 0xf7, 0x22, - 0x4a, 0x5c, 0x50, 0x2b, 0xd6, 0xab, 0xb7, 0x6a, 0x8d, 0x0b, 0x7c, 0x34, 0xb6, 0x29, 0x27, 0x0f, - 0x2c, 0xaf, 0x7d, 0xf5, 0x74, 0xec, 0x5f, 0x19, 0xe1, 0x38, 0x6a, 0x05, 0xf3, 0xfd, 0x37, 0x45, - 0xcc, 0x14, 0x8d, 0x13, 0x35, 0x0a, 0xc2, 0xaa, 0x3c, 0xe3, 0xa3, 0x97, 0x70, 0x99, 0xd0, 0x5d, - 0x9c, 0x45, 0xaa, 0x7b, 0x6e, 0xde, 0x42, 0x0d, 0xd4, 0x9d, 0xf6, 0xda, 0xe9, 0xd8, 0xbf, 0x66, - 0xd5, 0x2e, 0x62, 0xcd, 0xab, 0xa2, 0x9c, 0x30, 0x67, 0xa6, 0xb5, 0xf8, 0xfe, 0xd0, 0x2f, 0x04, - 0x0f, 0x61, 0x75, 0x2e, 0x89, 0x96, 0x61, 0x89, 0x50, 0x2e, 0x62, 0x17, 0xd4, 0x40, 0x7d, 0x29, - 0xb4, 0x00, 0xb9, 0xb0, 0x72, 0x6e, 0x74, 0x38, 0x85, 0x2d, 0x47, 0x8b, 0xfc, 0x38, 0xf4, 0x41, - 0xf0, 0x06, 0xc0, 0x52, 0x87, 0x27, 0x99, 0xd2, 0x6c, 0x4c, 0x48, 0x4a, 0xa5, 0xcc, 0x55, 0xa6, - 0x10, 0x61, 0x58, 0xd2, 0x0b, 0x95, 0xee, 0x82, 0x59, 0xd8, 0xca, 0xd9, 0xc2, 0x24, 0x9d, 0x2d, - 0x6c, 0x4b, 0x30, 0xde, 0xde, 0x38, 0x1a, 0xfb, 0x85, 0x0f, 0xdf, 0xfc, 0xfa, 0x80, 0xa9, 0x61, - 0xd6, 0x6b, 0xf4, 0x45, 0x9c, 0xbf, 0x56, 0xfe, 0xb3, 0x2e, 0xc9, 0x5e, 0x53, 0x8d, 0x12, 0x2a, - 0x4d, 0x83, 0x0c, 0xad, 0x72, 0xcb, 0x79, 0x65, 0x0d, 0x15, 0x82, 0xb7, 0x00, 0x96, 0x9f, 0x66, - 0xea, 0x1f, 0x72, 0xf4, 0x09, 0xc0, 0xf2, 0x76, 0x96, 0x24, 0xd1, 0x48, 0xcf, 0x55, 0x42, 0xe1, - 0x28, 0x3f, 0x9d, 0xbf, 0x3b, 0xd7, 0x28, 0xb7, 0x1e, 0xe7, 0x73, 0xc1, 0xe7, 0x8f, 0xeb, 0x77, - 0x6f, 0xfc, 0xb6, 0xfb, 0xc0, 0x7e, 0x5a, 0x31, 0x1b, 0xa4, 0x58, 0x31, 0xc1, 0x65, 0x73, 0x7f, - 0xe3, 0xce, 0x46, 0xc3, 0x7a, 0xed, 0xb8, 0x20, 0x78, 0x0e, 0x97, 0xee, 0xeb, 0x4b, 0xd8, 0xe1, - 0x4c, 0xfd, 0xe2, 0x46, 0x56, 0xa1, 0x43, 0x0f, 0x12, 0xc1, 0x29, 0x57, 0xe6, 0x48, 0xfe, 0x0f, - 0x67, 0xd8, 0xec, 0x3f, 0x62, 0x58, 0x52, 0xe9, 0x16, 0x6b, 0x45, 0xb3, 0x7f, 0x0b, 0x83, 0xd7, - 0x0b, 0xd0, 0x79, 0x42, 0x15, 0x26, 0x58, 0x61, 0x54, 0x83, 0x55, 0x42, 0x65, 0x3f, 0x65, 0x89, - 0x36, 0x91, 0xcb, 0xcf, 0xa7, 0xd0, 0x3d, 0xcd, 0xe0, 0x22, 0xee, 0x66, 0x9c, 0xa9, 0xe9, 0xa3, - 0x79, 0x17, 0x7e, 0x77, 0x33, 0xbf, 0x21, 0x24, 0xd3, 0x50, 0x22, 0x04, 0x17, 0xf5, 0x8a, 0xdd, - 0xa2, 0xd1, 0x36, 0xb1, 0x76, 0x47, 0x98, 0x4c, 0x22, 0x3c, 0x72, 0x17, 0xed, 0x75, 0xe4, 0x50, - 0xb3, 0x39, 0x8e, 0xa9, 0x5b, 0xb2, 0x6c, 0x1d, 0xa3, 0xcb, 0xb0, 0x2c, 0x47, 0x71, 0x4f, 0x44, - 0x6e, 0xd9, 0x64, 0x73, 0x84, 0x56, 0x60, 0x31, 0x4b, 0x99, 0x5b, 0xd1, 0xc9, 0x76, 0x65, 0x32, - 0xf6, 0x8b, 0x3b, 0x61, 0x27, 0xd4, 0x39, 0x74, 0x1d, 0x3a, 0x59, 0xca, 0xba, 0x43, 0x2c, 0x87, - 0xae, 0x63, 0xea, 0xd5, 0xc9, 0xd8, 0xaf, 0xec, 0x84, 0x9d, 0x47, 0x58, 0x0e, 0xc3, 0x4a, 0x96, - 0x32, 0x1d, 0xb4, 0xb7, 0x8e, 0x26, 0x1e, 0x38, 0x9e, 0x78, 0xe0, 0xfb, 0xc4, 0x03, 0xef, 0x4e, - 0xbc, 0xc2, 0xf1, 0x89, 0x57, 0xf8, 0x7a, 0xe2, 0x15, 0x5e, 0xac, 0xfd, 0xc9, 0xf3, 0x99, 0x1b, - 0xe8, 0x95, 0xcd, 0xbf, 0xd5, 0xed, 0x9f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x6c, 0xba, 0x6c, 0x6b, - 0x35, 0x05, 0x00, 0x00, + // 663 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x54, 0xc1, 0x6b, 0x13, 0x4f, + 0x14, 0xce, 0x34, 0x4d, 0xb2, 0x9d, 0xfc, 0x7e, 0x97, 0x31, 0xc8, 0xb6, 0xe0, 0x6e, 0x5c, 0x50, + 0x52, 0xb1, 0x49, 0x5b, 0x3d, 0x05, 0x41, 0x4c, 0x15, 0x8d, 0x20, 0xca, 0x96, 0x22, 0xe8, 0x21, + 0x4c, 0xb2, 0xd3, 0x64, 0xe8, 0xee, 0xcc, 0xb2, 0x33, 0x5b, 0x9a, 0xff, 0x40, 0x3c, 0x79, 0xf4, + 0xd8, 0xa3, 0x7a, 0x2e, 0xf8, 0x2f, 0xf4, 0x58, 0xea, 0xc5, 0x53, 0x94, 0xf4, 0xe2, 0xb9, 0x7f, + 0x81, 0xcc, 0xcc, 0x26, 0x4d, 0x21, 0x8a, 0x07, 0x2f, 0x9e, 0xf2, 0xde, 0xfb, 0xbe, 0xf7, 0xbd, + 0x8f, 0x37, 0x6f, 0x03, 0x9d, 0x1e, 0x17, 0x11, 0x17, 0x8d, 0x2e, 0x66, 0x7b, 0x8d, 0xfd, 0x8d, + 0x2e, 0x91, 0x78, 0x43, 0x27, 0xf5, 0x38, 0xe1, 0x92, 0xa3, 0x2b, 0x06, 0xaf, 0xeb, 0x52, 0x86, + 0xaf, 0x54, 0xfa, 0xbc, 0xcf, 0x35, 0xde, 0x50, 0x91, 0xa1, 0xae, 0x2c, 0x1b, 0x6a, 0xc7, 0x00, + 0x59, 0x9f, 0x81, 0x2e, 0xa6, 0x08, 0x32, 0x9d, 0xd2, 0xe3, 0x94, 0x19, 0xdc, 0xfb, 0x02, 0x60, + 0xf1, 0x05, 0x4e, 0x70, 0x24, 0xd0, 0x2e, 0xfc, 0x4f, 0x10, 0x16, 0x74, 0x08, 0xc3, 0xdd, 0x90, + 0x04, 0x36, 0xa8, 0xe6, 0x6b, 0xe5, 0xcd, 0x6a, 0x7d, 0x8e, 0x8f, 0xfa, 0x36, 0x61, 0xc1, 0x23, + 0xc3, 0x6b, 0x5d, 0x3f, 0x1f, 0xb9, 0xd7, 0x86, 0x38, 0x0a, 0x9b, 0xde, 0x6c, 0xff, 0x6d, 0x1e, + 0x51, 0x49, 0xa2, 0x58, 0x0e, 0x3d, 0xbf, 0x2c, 0x2e, 0xf8, 0xe8, 0x35, 0xac, 0x04, 0x64, 0x17, + 0xa7, 0xa1, 0xec, 0x5c, 0x9a, 0xb7, 0x50, 0x05, 0x35, 0xab, 0xb5, 0x7a, 0x3e, 0x72, 0x6f, 0x18, + 0xb5, 0x79, 0xac, 0x59, 0x55, 0x94, 0x11, 0x66, 0xcc, 0x34, 0x17, 0xdf, 0x1f, 0xba, 0x39, 0xef, + 0x31, 0x2c, 0xcf, 0x14, 0x51, 0x05, 0x16, 0x02, 0xc2, 0x78, 0x64, 0x83, 0x2a, 0xa8, 0x2d, 0xf9, + 0x26, 0x41, 0x36, 0x2c, 0x5d, 0x1a, 0xed, 0x4f, 0xd2, 0xa6, 0xa5, 0x44, 0x7e, 0x1c, 0xba, 0xc0, + 0xfb, 0x00, 0x60, 0xa1, 0xcd, 0xe2, 0x54, 0xa2, 0x4d, 0x58, 0xc2, 0x41, 0x90, 0x10, 0x21, 0x8c, + 0x4a, 0xcb, 0x3e, 0x3d, 0x5a, 0xab, 0x64, 0xbb, 0x79, 0x60, 0x90, 0x6d, 0x99, 0x50, 0xd6, 0xf7, + 0x27, 0x44, 0x84, 0x61, 0x41, 0xad, 0x5a, 0xd8, 0x0b, 0x7a, 0x95, 0xcb, 0x17, 0xab, 0x14, 0x64, + 0xba, 0xca, 0x2d, 0x4e, 0x59, 0x6b, 0xfd, 0x78, 0xe4, 0xe6, 0x3e, 0x7d, 0x73, 0x6b, 0x7d, 0x2a, + 0x07, 0x69, 0xb7, 0xde, 0xe3, 0x51, 0xf6, 0x8e, 0xd9, 0xcf, 0x9a, 0x08, 0xf6, 0x1a, 0x72, 0x18, + 0x13, 0xa1, 0x1b, 0x84, 0x6f, 0x94, 0x9b, 0xd6, 0x1b, 0x63, 0x35, 0xe7, 0x7d, 0x04, 0xb0, 0xf8, + 0x3c, 0x95, 0xff, 0x84, 0xd7, 0xcf, 0x00, 0x16, 0xb7, 0xd3, 0x38, 0x0e, 0x87, 0x6a, 0xae, 0xe4, + 0x12, 0x87, 0xd9, 0xb9, 0xfd, 0xdd, 0xb9, 0x5a, 0xb9, 0xf9, 0x34, 0x9b, 0x0b, 0x4e, 0x8f, 0xd6, + 0xee, 0xdd, 0xfa, 0x6d, 0xf7, 0x81, 0xf9, 0x1c, 0x23, 0xda, 0x4f, 0xb0, 0xa4, 0x9c, 0x89, 0xc6, + 0xfe, 0xfa, 0xdd, 0xf5, 0xba, 0xf1, 0xda, 0xb6, 0x81, 0xf7, 0x12, 0x2e, 0x3d, 0x54, 0xd7, 0xb3, + 0xc3, 0xa8, 0xfc, 0xc5, 0x5d, 0xad, 0x40, 0x8b, 0x1c, 0xc4, 0x9c, 0x11, 0x26, 0xf5, 0x61, 0xfd, + 0xef, 0x4f, 0x73, 0x75, 0x73, 0x38, 0xa4, 0x58, 0x10, 0x61, 0xe7, 0xab, 0xf9, 0xda, 0x92, 0x3f, + 0x49, 0xbd, 0xb7, 0x0b, 0xd0, 0x7a, 0x46, 0x24, 0x0e, 0xb0, 0xc4, 0xa8, 0x0a, 0xcb, 0x01, 0x11, + 0xbd, 0x84, 0xc6, 0xca, 0x44, 0x26, 0x3f, 0x5b, 0x42, 0xf7, 0x15, 0x83, 0xf1, 0xa8, 0x93, 0x32, + 0x2a, 0x27, 0x8f, 0xe6, 0xcc, 0xfd, 0x56, 0xa7, 0x7e, 0x7d, 0x18, 0x4c, 0x42, 0x81, 0x10, 0x5c, + 0x54, 0x2b, 0xb6, 0xf3, 0x5a, 0x5b, 0xc7, 0xca, 0x5d, 0x40, 0x45, 0x1c, 0xe2, 0xa1, 0xbd, 0xa8, + 0xcb, 0x93, 0x54, 0xb1, 0x19, 0x8e, 0x88, 0x5d, 0x30, 0x6c, 0x15, 0xa3, 0xab, 0xb0, 0x28, 0x86, + 0x51, 0x97, 0x87, 0x76, 0x51, 0x57, 0xb3, 0x0c, 0x2d, 0xc3, 0x7c, 0x9a, 0x50, 0xbb, 0xa4, 0x2f, + 0xaf, 0x34, 0x1e, 0xb9, 0xf9, 0x1d, 0xbf, 0xed, 0xab, 0x1a, 0xba, 0x09, 0xad, 0x34, 0xa1, 0x9d, + 0x01, 0x16, 0x03, 0xdb, 0xd2, 0x78, 0x79, 0x3c, 0x72, 0x4b, 0x3b, 0x7e, 0xfb, 0x09, 0x16, 0x03, + 0xbf, 0x94, 0x26, 0x54, 0x05, 0xad, 0xad, 0xe3, 0xb1, 0x03, 0x4e, 0xc6, 0x0e, 0xf8, 0x3e, 0x76, + 0xc0, 0xbb, 0x33, 0x27, 0x77, 0x72, 0xe6, 0xe4, 0xbe, 0x9e, 0x39, 0xb9, 0x57, 0xab, 0x7f, 0xf2, + 0x7c, 0xfa, 0x06, 0xba, 0x45, 0xfd, 0x0f, 0x77, 0xe7, 0x67, 0x00, 0x00, 0x00, 0xff, 0xff, 0xd9, + 0x99, 0xc6, 0x9a, 0x69, 0x05, 0x00, 0x00, } func (this *SendEnabled) Equal(that interface{}) bool { diff --git a/x/bank/types/genesis.pb.go b/x/bank/types/genesis.pb.go index 4e4724f34a7d..99de438ed718 100644 --- a/x/bank/types/genesis.pb.go +++ b/x/bank/types/genesis.pb.go @@ -5,6 +5,7 @@ package types import ( fmt "fmt" + _ "github.com/cosmos/cosmos-proto" github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" types "github.com/cosmos/cosmos-sdk/types" _ "github.com/gogo/protobuf/gogoproto" @@ -149,31 +150,33 @@ func init() { func init() { proto.RegisterFile("cosmos/bank/v1beta1/genesis.proto", fileDescriptor_8f007de11b420c6e) } var fileDescriptor_8f007de11b420c6e = []byte{ - // 383 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x92, 0x3f, 0x4f, 0xc2, 0x40, - 0x18, 0x87, 0x5b, 0x40, 0xc0, 0x43, 0x1d, 0xaa, 0x26, 0x15, 0xa5, 0xc5, 0x4e, 0x38, 0xd8, 0x0a, - 0x4e, 0x32, 0x38, 0x94, 0xc1, 0xc9, 0xc4, 0xd4, 0xcd, 0xc5, 0x5c, 0xdb, 0x4b, 0x6d, 0xa0, 0xbd, - 0x86, 0x3b, 0x8c, 0x7c, 0x03, 0x47, 0x3e, 0x02, 0xb3, 0x9f, 0x84, 0x91, 0xc4, 0xc5, 0x09, 0x0d, - 0x2c, 0xce, 0x7e, 0x02, 0xd3, 0xbb, 0xa3, 0x6a, 0x24, 0x4e, 0x4e, 0xfd, 0xf3, 0xfe, 0x9e, 0xe7, - 0xbd, 0xf7, 0xee, 0xc0, 0xa1, 0x87, 0x49, 0x84, 0x89, 0xe5, 0xc2, 0xb8, 0x6b, 0xdd, 0x37, 0x5d, - 0x44, 0x61, 0xd3, 0x0a, 0x50, 0x8c, 0x48, 0x48, 0xcc, 0xa4, 0x8f, 0x29, 0x56, 0xb6, 0x79, 0xc4, - 0x4c, 0x23, 0xa6, 0x88, 0x54, 0x77, 0x02, 0x1c, 0x60, 0x56, 0xb7, 0xd2, 0x37, 0x1e, 0xad, 0x6a, - 0x99, 0x8d, 0xa0, 0xcc, 0xe6, 0xe1, 0x30, 0xfe, 0x55, 0xff, 0xd6, 0x8d, 0x79, 0x59, 0xdd, 0x78, - 0xce, 0x81, 0x8d, 0x0b, 0xde, 0xfc, 0x9a, 0x42, 0x8a, 0x94, 0x33, 0x50, 0x4c, 0x60, 0x1f, 0x46, - 0x44, 0x95, 0xeb, 0x72, 0xa3, 0xd2, 0xda, 0x37, 0x57, 0x2c, 0xc6, 0xbc, 0x62, 0x11, 0xbb, 0x30, - 0x99, 0xe9, 0x92, 0x23, 0x00, 0xe5, 0x1c, 0x94, 0x5d, 0xd8, 0x83, 0xb1, 0x87, 0x88, 0x9a, 0xab, - 0xe7, 0x1b, 0x95, 0xd6, 0xc1, 0x4a, 0xd8, 0xe6, 0x21, 0x41, 0x67, 0x8c, 0xe2, 0x81, 0x22, 0x19, - 0x24, 0x49, 0x6f, 0xa8, 0xe6, 0x19, 0xbd, 0xf7, 0x45, 0x13, 0x94, 0xd1, 0x1d, 0x1c, 0xc6, 0xf6, - 0x49, 0x8a, 0x3e, 0xbd, 0xea, 0x8d, 0x20, 0xa4, 0x77, 0x03, 0xd7, 0xf4, 0x70, 0x64, 0x89, 0x49, - 0xf9, 0xe3, 0x98, 0xf8, 0x5d, 0x8b, 0x0e, 0x13, 0x44, 0x18, 0x40, 0x1c, 0xa1, 0x56, 0x3c, 0xb0, - 0xe5, 0xa3, 0x18, 0x47, 0xb7, 0x11, 0xa2, 0xd0, 0x87, 0x14, 0xaa, 0x05, 0xd6, 0xac, 0xb6, 0x72, - 0xa9, 0x97, 0x22, 0x64, 0xd7, 0xd2, 0x86, 0x1f, 0x33, 0x7d, 0x77, 0x08, 0xa3, 0x5e, 0xdb, 0xf8, - 0xa9, 0x30, 0x9c, 0x4d, 0xf6, 0x63, 0x99, 0x36, 0x46, 0x32, 0x28, 0x89, 0x29, 0x15, 0x15, 0x94, - 0xa0, 0xef, 0xf7, 0x11, 0xe1, 0x3b, 0xba, 0xee, 0x2c, 0x3f, 0x15, 0x08, 0xd6, 0xd2, 0x93, 0x5a, - 0x6e, 0xd6, 0xbf, 0x8e, 0xcb, 0xcd, 0xed, 0xf2, 0xe3, 0x58, 0x97, 0xde, 0xc7, 0xba, 0x64, 0x77, - 0x26, 0x73, 0x4d, 0x9e, 0xce, 0x35, 0xf9, 0x6d, 0xae, 0xc9, 0xa3, 0x85, 0x26, 0x4d, 0x17, 0x9a, - 0xf4, 0xb2, 0xd0, 0xa4, 0x9b, 0xa3, 0x3f, 0xa5, 0x0f, 0xfc, 0xea, 0x30, 0xb7, 0x5b, 0x64, 0x97, - 0xe6, 0xf4, 0x33, 0x00, 0x00, 0xff, 0xff, 0x15, 0x28, 0xf0, 0x44, 0xc4, 0x02, 0x00, 0x00, + // 412 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x92, 0xb1, 0x6e, 0xda, 0x40, + 0x1c, 0xc6, 0x6d, 0xa0, 0x40, 0x8f, 0xb6, 0x83, 0x4b, 0x25, 0x43, 0x8b, 0x4d, 0x3d, 0xd1, 0x01, + 0xbb, 0xd0, 0xa9, 0x0c, 0x95, 0x6a, 0x86, 0x4e, 0x95, 0x2a, 0xb3, 0x75, 0x41, 0x67, 0xfb, 0xe4, + 0x58, 0x60, 0x9f, 0xe5, 0x3b, 0xa2, 0xf0, 0x06, 0x19, 0xf3, 0x08, 0xcc, 0xcc, 0x79, 0x08, 0x46, + 0x94, 0x2c, 0x99, 0x48, 0x04, 0x4b, 0xe6, 0x3c, 0x41, 0xe4, 0xbb, 0xc3, 0x49, 0x14, 0x94, 0x29, + 0x13, 0xd8, 0xdf, 0xf7, 0xfd, 0xbe, 0xff, 0xfd, 0x7d, 0xe0, 0xab, 0x87, 0x49, 0x84, 0x89, 0xe5, + 0xc2, 0x78, 0x62, 0x1d, 0xf7, 0x5c, 0x44, 0x61, 0xcf, 0x0a, 0x50, 0x8c, 0x48, 0x48, 0xcc, 0x24, + 0xc5, 0x14, 0x2b, 0x1f, 0xb9, 0xc5, 0xcc, 0x2c, 0xa6, 0xb0, 0x34, 0xeb, 0x01, 0x0e, 0x30, 0xd3, + 0xad, 0xec, 0x1f, 0xb7, 0x36, 0xb5, 0x9c, 0x46, 0x50, 0x4e, 0xf3, 0x70, 0x18, 0x3f, 0xd3, 0x1f, + 0xb5, 0x31, 0x2e, 0xd7, 0x1b, 0x5c, 0x1f, 0x73, 0xb0, 0xe8, 0x65, 0x0f, 0xc6, 0x65, 0x01, 0xbc, + 0xfb, 0xc3, 0xe7, 0x1a, 0x51, 0x48, 0x91, 0xf2, 0x13, 0x94, 0x13, 0x98, 0xc2, 0x88, 0xa8, 0x72, + 0x5b, 0xee, 0xd4, 0xfa, 0x9f, 0xcd, 0x03, 0x73, 0x9a, 0xff, 0x98, 0xc5, 0x2e, 0xad, 0x36, 0xba, + 0xe4, 0x88, 0x80, 0xf2, 0x0b, 0x54, 0x5d, 0x38, 0x85, 0xb1, 0x87, 0x88, 0x5a, 0x68, 0x17, 0x3b, + 0xb5, 0xfe, 0x97, 0x83, 0x61, 0x9b, 0x9b, 0x44, 0x3a, 0xcf, 0x28, 0x1e, 0x28, 0x93, 0x59, 0x92, + 0x4c, 0xe7, 0x6a, 0x91, 0xa5, 0x1b, 0x0f, 0x69, 0x82, 0xf2, 0xf4, 0x10, 0x87, 0xb1, 0xfd, 0x3d, + 0x8b, 0x2e, 0xaf, 0xf5, 0x4e, 0x10, 0xd2, 0xa3, 0x99, 0x6b, 0x7a, 0x38, 0x12, 0xe7, 0x12, 0x3f, + 0x5d, 0xe2, 0x4f, 0x2c, 0x3a, 0x4f, 0x10, 0x61, 0x01, 0xe2, 0x08, 0xb4, 0xe2, 0x81, 0x0f, 0x3e, + 0x8a, 0x71, 0x34, 0x8e, 0x10, 0x85, 0x3e, 0xa4, 0x50, 0x2d, 0xb1, 0xb2, 0xd6, 0xc1, 0x51, 0xff, + 0x0a, 0x93, 0xdd, 0xca, 0x0a, 0xef, 0x36, 0xfa, 0xa7, 0x39, 0x8c, 0xa6, 0x03, 0xe3, 0x29, 0xc2, + 0x70, 0xde, 0xb3, 0x17, 0x7b, 0xb7, 0xb1, 0x94, 0x41, 0x45, 0x9c, 0x52, 0xe9, 0x83, 0x0a, 0xf4, + 0xfd, 0x14, 0x11, 0xbe, 0xd1, 0xb7, 0xb6, 0x7a, 0x71, 0xde, 0xad, 0x8b, 0xb2, 0xdf, 0x5c, 0x19, + 0xd1, 0x34, 0x8c, 0x03, 0x67, 0x6f, 0x54, 0x20, 0x78, 0x93, 0x7d, 0xde, 0xfd, 0x1a, 0x5f, 0x75, + 0x11, 0x9c, 0x3c, 0xa8, 0x9e, 0x2e, 0x74, 0xe9, 0x76, 0xa1, 0x4b, 0xf6, 0x70, 0xb5, 0xd5, 0xe4, + 0xf5, 0x56, 0x93, 0x6f, 0xb6, 0x9a, 0x7c, 0xb6, 0xd3, 0xa4, 0xf5, 0x4e, 0x93, 0xae, 0x76, 0x9a, + 0xf4, 0xff, 0xdb, 0x8b, 0xd0, 0x13, 0x7e, 0xdf, 0x18, 0xdb, 0x2d, 0xb3, 0xeb, 0xf4, 0xe3, 0x3e, + 0x00, 0x00, 0xff, 0xff, 0x6c, 0x8e, 0xec, 0xbb, 0xf9, 0x02, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/bank/types/query.pb.go b/x/bank/types/query.pb.go index 3b4fd4654756..36018d4df0fd 100644 --- a/x/bank/types/query.pb.go +++ b/x/bank/types/query.pb.go @@ -6,6 +6,7 @@ package types import ( context "context" fmt "fmt" + _ "github.com/cosmos/cosmos-proto" github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" types "github.com/cosmos/cosmos-sdk/types" query "github.com/cosmos/cosmos-sdk/types/query" @@ -872,65 +873,67 @@ func init() { func init() { proto.RegisterFile("cosmos/bank/v1beta1/query.proto", fileDescriptor_9c6fc1939682df13) } var fileDescriptor_9c6fc1939682df13 = []byte{ - // 917 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x57, 0x4f, 0x4f, 0x3b, 0x45, - 0x18, 0xee, 0xa0, 0x94, 0xf2, 0x56, 0x3d, 0x0c, 0x35, 0x96, 0x45, 0x5a, 0xb3, 0x28, 0xb4, 0x50, - 0x76, 0x29, 0x98, 0x10, 0xbc, 0x18, 0x8a, 0xd1, 0x83, 0x31, 0xd4, 0xea, 0xc9, 0xc4, 0x90, 0x69, - 0xbb, 0xae, 0x0d, 0xed, 0xce, 0xd2, 0xd9, 0x8a, 0x84, 0x90, 0x18, 0x13, 0x13, 0x4f, 0x6a, 0xe2, - 0xc1, 0x83, 0x31, 0xc1, 0x8b, 0x46, 0x3f, 0x09, 0x07, 0x0f, 0x44, 0x2f, 0x9e, 0xd4, 0x80, 0x07, - 0x3f, 0x86, 0xe9, 0xfc, 0xd9, 0xee, 0xb6, 0xdb, 0xed, 0x1e, 0xfa, 0x3b, 0xd1, 0x9d, 0x7d, 0xff, - 0x3c, 0xcf, 0x33, 0x33, 0xef, 0xb3, 0x40, 0xb1, 0x45, 0x59, 0x8f, 0x32, 0xb3, 0x49, 0x9c, 0x73, - 0xf3, 0x93, 0x6a, 0xd3, 0xf2, 0x48, 0xd5, 0xbc, 0x18, 0x58, 0xfd, 0x2b, 0xc3, 0xed, 0x53, 0x8f, - 0xe2, 0x15, 0x11, 0x60, 0x0c, 0x03, 0x0c, 0x19, 0xa0, 0x6d, 0xfb, 0x59, 0xcc, 0x12, 0xd1, 0x7e, - 0xae, 0x4b, 0xec, 0x8e, 0x43, 0xbc, 0x0e, 0x75, 0x44, 0x01, 0x2d, 0x67, 0x53, 0x9b, 0xf2, 0x9f, - 0xe6, 0xf0, 0x97, 0x5c, 0x7d, 0xd1, 0xa6, 0xd4, 0xee, 0x5a, 0x26, 0x71, 0x3b, 0x26, 0x71, 0x1c, - 0xea, 0xf1, 0x14, 0x26, 0xdf, 0x16, 0x82, 0xf5, 0x55, 0xe5, 0x16, 0xed, 0x38, 0x13, 0xef, 0x03, - 0xa8, 0x39, 0x42, 0xfe, 0x5e, 0x3f, 0x85, 0x95, 0x77, 0x87, 0xa8, 0x6a, 0xa4, 0x4b, 0x9c, 0x96, - 0xd5, 0xb0, 0x2e, 0x06, 0x16, 0xf3, 0x70, 0x1e, 0x96, 0x48, 0xbb, 0xdd, 0xb7, 0x18, 0xcb, 0xa3, - 0x97, 0x50, 0x69, 0xb9, 0xa1, 0x1e, 0x71, 0x0e, 0x16, 0xdb, 0x96, 0x43, 0x7b, 0xf9, 0x05, 0xbe, - 0x2e, 0x1e, 0x5e, 0xcb, 0x7c, 0x79, 0x5b, 0x4c, 0xfd, 0x77, 0x5b, 0x4c, 0xe9, 0x6f, 0x43, 0x2e, - 0x5c, 0x90, 0xb9, 0xd4, 0x61, 0x16, 0x3e, 0x80, 0xa5, 0xa6, 0x58, 0xe2, 0x15, 0xb3, 0xfb, 0xab, - 0x86, 0xaf, 0x17, 0xb3, 0x94, 0x5e, 0xc6, 0x09, 0xed, 0x38, 0x0d, 0x15, 0xa9, 0x7f, 0x81, 0xe0, - 0x05, 0x5e, 0xed, 0xb8, 0xdb, 0x95, 0x05, 0xd9, 0x6c, 0x88, 0x6f, 0x02, 0x8c, 0xb4, 0xe5, 0x38, - 0xb3, 0xfb, 0x9b, 0xa1, 0x6e, 0x62, 0xdb, 0x54, 0xcf, 0x3a, 0xb1, 0x15, 0xf1, 0x46, 0x20, 0x33, - 0x40, 0xea, 0x37, 0x04, 0xf9, 0x49, 0x1c, 0x92, 0x99, 0x0d, 0x19, 0x89, 0x77, 0x88, 0xe4, 0xa9, - 0x58, 0x6a, 0xb5, 0xbd, 0xbb, 0xbf, 0x8a, 0xa9, 0x5f, 0xff, 0x2e, 0x96, 0xec, 0x8e, 0xf7, 0xf1, - 0xa0, 0x69, 0xb4, 0x68, 0xcf, 0x94, 0x5b, 0x24, 0xfe, 0xec, 0xb2, 0xf6, 0xb9, 0xe9, 0x5d, 0xb9, - 0x16, 0xe3, 0x09, 0xac, 0xe1, 0x17, 0xc7, 0x6f, 0x45, 0xf0, 0xda, 0x9a, 0xc9, 0x4b, 0xa0, 0x0c, - 0x12, 0xd3, 0xcf, 0xa5, 0xaa, 0xef, 0x53, 0x8f, 0x74, 0xdf, 0x1b, 0xb8, 0x6e, 0xf7, 0x4a, 0xa9, - 0x1a, 0xd6, 0x0e, 0xcd, 0x41, 0xbb, 0x3b, 0xa5, 0x5d, 0xa8, 0x9b, 0xd4, 0xae, 0x05, 0x69, 0xc6, - 0x57, 0x9e, 0x84, 0x72, 0xb2, 0xf4, 0xfc, 0x74, 0xab, 0xc8, 0xb3, 0x2d, 0x48, 0x9c, 0x7e, 0xa4, - 0x44, 0xf3, 0xef, 0x04, 0x0a, 0xdc, 0x09, 0xbd, 0x0e, 0xcf, 0x8f, 0x45, 0x4b, 0xd2, 0x87, 0x90, - 0x26, 0x3d, 0x3a, 0x70, 0xbc, 0x99, 0x37, 0xa1, 0xf6, 0xf4, 0x90, 0x74, 0x43, 0x86, 0xeb, 0x39, - 0xc0, 0xbc, 0x62, 0x9d, 0xf4, 0x49, 0x4f, 0x5d, 0x04, 0xbd, 0x2e, 0xaf, 0xb0, 0x5a, 0x95, 0x5d, - 0x8e, 0x20, 0xed, 0xf2, 0x15, 0xd9, 0x65, 0xcd, 0x88, 0x98, 0x4f, 0x86, 0x48, 0x52, 0x7d, 0x44, - 0x82, 0xde, 0x06, 0x8d, 0x57, 0x7c, 0x63, 0xc8, 0x83, 0xbd, 0x63, 0x79, 0xa4, 0x4d, 0x3c, 0x32, - 0xe7, 0x23, 0xa2, 0xff, 0x82, 0x60, 0x2d, 0xb2, 0x8d, 0x24, 0x70, 0x0c, 0xcb, 0x3d, 0xb9, 0xa6, - 0x2e, 0xd6, 0x7a, 0x24, 0x07, 0x95, 0x29, 0x59, 0x8c, 0xb2, 0xe6, 0xb7, 0xf3, 0x55, 0x58, 0x1d, - 0x41, 0x1d, 0x17, 0x24, 0x7a, 0xfb, 0x3f, 0x0c, 0x8a, 0x38, 0x41, 0xee, 0x75, 0xc8, 0x28, 0x98, - 0x52, 0xc2, 0x44, 0xdc, 0xfc, 0x24, 0xfd, 0x52, 0xde, 0x61, 0x5e, 0xfe, 0xf4, 0xd2, 0xb1, 0xfa, - 0x2c, 0x16, 0xcf, 0xbc, 0xa6, 0xa2, 0x4e, 0x00, 0x46, 0x3d, 0x63, 0xa6, 0xf0, 0xd1, 0x68, 0xe0, - 0x2f, 0x24, 0x3b, 0xe6, 0xfe, 0xd8, 0xff, 0x59, 0x8d, 0x8c, 0x10, 0x39, 0xa9, 0x5c, 0x0d, 0x9e, - 0xe1, 0x84, 0xce, 0x28, 0x5f, 0x97, 0x27, 0xa3, 0x18, 0xa9, 0xde, 0x28, 0xbf, 0x91, 0x6d, 0x8f, - 0x6a, 0xcd, 0xed, 0x5c, 0xec, 0xff, 0xbe, 0x0c, 0x8b, 0x1c, 0x29, 0xfe, 0x0e, 0xc1, 0x92, 0xb4, - 0x06, 0x5c, 0x8a, 0x04, 0x13, 0xe1, 0xb3, 0x5a, 0x39, 0x41, 0xa4, 0x68, 0xab, 0x1f, 0x7e, 0xfe, - 0xc7, 0xbf, 0xdf, 0x2e, 0x54, 0xb1, 0x69, 0x46, 0x5b, 0xba, 0x30, 0x09, 0xf3, 0x5a, 0xea, 0x7f, - 0x63, 0x5e, 0x73, 0xc6, 0x37, 0xf8, 0x7b, 0x04, 0xd9, 0x80, 0x6f, 0xe1, 0xca, 0xf4, 0x9e, 0x93, - 0x36, 0xab, 0xed, 0x26, 0x8c, 0x96, 0x28, 0x4d, 0x8e, 0xb2, 0x8c, 0xb7, 0x12, 0xa2, 0xc4, 0x5f, - 0x23, 0xc8, 0x06, 0x9c, 0x21, 0x0e, 0xdd, 0xa4, 0x5d, 0xc5, 0xa1, 0x8b, 0xb0, 0x1b, 0x7d, 0x83, - 0xa3, 0x5b, 0xc7, 0x6b, 0x91, 0xe8, 0xa4, 0x5d, 0x7c, 0x85, 0x20, 0xa3, 0x66, 0x36, 0x8e, 0xd9, - 0xa0, 0x31, 0x17, 0xd0, 0xb6, 0x93, 0x84, 0x4a, 0x20, 0x3b, 0x1c, 0xc8, 0x2b, 0x78, 0x23, 0x06, - 0x88, 0xbf, 0x81, 0x9f, 0x21, 0x48, 0x8b, 0x39, 0x8d, 0xb7, 0xa6, 0xf7, 0x08, 0x99, 0x82, 0x56, - 0x9a, 0x1d, 0x98, 0x48, 0x13, 0xe1, 0x08, 0xf8, 0x27, 0x04, 0xcf, 0x86, 0x06, 0x19, 0x36, 0xa6, - 0x37, 0x88, 0x1a, 0x92, 0x9a, 0x99, 0x38, 0x5e, 0xe2, 0x7a, 0x95, 0xe3, 0x32, 0x70, 0x25, 0x12, - 0x17, 0x97, 0x86, 0x9d, 0xa9, 0x71, 0xe8, 0x6b, 0xf5, 0x23, 0x82, 0xe7, 0xc2, 0x7e, 0x82, 0x67, - 0x75, 0x1e, 0x37, 0x38, 0x6d, 0x2f, 0x79, 0x82, 0xc4, 0x5a, 0xe1, 0x58, 0x37, 0xf1, 0xcb, 0x49, - 0xb0, 0xe2, 0x1f, 0x10, 0x64, 0x03, 0x93, 0x2d, 0xee, 0xc8, 0x4f, 0x4e, 0xf7, 0xb8, 0x23, 0x1f, - 0x31, 0x2e, 0xf5, 0x2a, 0x87, 0xb6, 0x83, 0xcb, 0xd3, 0xa1, 0xc9, 0x49, 0xaa, 0x34, 0xac, 0x9d, - 0xdc, 0x3d, 0x14, 0xd0, 0xfd, 0x43, 0x01, 0xfd, 0xf3, 0x50, 0x40, 0xdf, 0x3c, 0x16, 0x52, 0xf7, - 0x8f, 0x85, 0xd4, 0x9f, 0x8f, 0x85, 0xd4, 0x07, 0xe5, 0xd8, 0x6f, 0xaf, 0x4f, 0x45, 0x6d, 0xfe, - 0x09, 0xd6, 0x4c, 0xf3, 0xff, 0x2f, 0x0e, 0xfe, 0x0f, 0x00, 0x00, 0xff, 0xff, 0x75, 0x2d, 0x5e, - 0xd9, 0x37, 0x0d, 0x00, 0x00, + // 949 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x57, 0xcf, 0x6f, 0x1b, 0x45, + 0x14, 0xf6, 0x04, 0xea, 0x24, 0xcf, 0xc0, 0x61, 0x6a, 0x44, 0xb2, 0xa1, 0x36, 0xda, 0x42, 0x93, + 0xb4, 0xc9, 0x6e, 0xed, 0x22, 0x55, 0xe5, 0x82, 0xe2, 0x22, 0x38, 0x20, 0x54, 0xb3, 0xe5, 0x84, + 0x84, 0xa2, 0xb1, 0xbd, 0x2c, 0xab, 0xd8, 0x3b, 0x5b, 0xcf, 0x9a, 0x12, 0x45, 0x95, 0x10, 0x27, + 0x4e, 0x80, 0xc4, 0x81, 0x03, 0x42, 0x94, 0x0b, 0x08, 0xce, 0xfc, 0x11, 0x39, 0x70, 0xa8, 0xca, + 0x85, 0x13, 0xa0, 0x84, 0x03, 0x7f, 0x06, 0xf2, 0xcc, 0x9b, 0xf5, 0xae, 0xbd, 0x5e, 0xaf, 0xc0, + 0x9c, 0xbc, 0x3b, 0xf3, 0x7e, 0x7c, 0xdf, 0x37, 0xf3, 0xde, 0x5b, 0x43, 0xbd, 0xcb, 0xc5, 0x80, + 0x0b, 0xbb, 0xc3, 0x82, 0x23, 0xfb, 0xc3, 0x46, 0xc7, 0x8d, 0x58, 0xc3, 0xbe, 0x37, 0x72, 0x87, + 0xc7, 0x56, 0x38, 0xe4, 0x11, 0xa7, 0x17, 0x95, 0x81, 0x35, 0x36, 0xb0, 0xd0, 0xc0, 0xb8, 0x1a, + 0x7b, 0x09, 0x57, 0x59, 0xc7, 0xbe, 0x21, 0xf3, 0xfc, 0x80, 0x45, 0x3e, 0x0f, 0x54, 0x00, 0xa3, + 0xea, 0x71, 0x8f, 0xcb, 0x47, 0x7b, 0xfc, 0x84, 0xab, 0xcf, 0x7b, 0x9c, 0x7b, 0x7d, 0xd7, 0x66, + 0xa1, 0x6f, 0xb3, 0x20, 0xe0, 0x91, 0x74, 0x11, 0xb8, 0x5b, 0x4b, 0xc6, 0xd7, 0x91, 0xbb, 0xdc, + 0x0f, 0x66, 0xf6, 0x13, 0xa8, 0x25, 0x42, 0xb5, 0xbf, 0xa9, 0xf6, 0x0f, 0x55, 0x5a, 0x64, 0x20, + 0x5f, 0x4c, 0x1f, 0x2e, 0xbe, 0x3d, 0x06, 0xdc, 0x62, 0x7d, 0x16, 0x74, 0x5d, 0xc7, 0xbd, 0x37, + 0x72, 0x45, 0x44, 0x9b, 0xb0, 0xca, 0x7a, 0xbd, 0xa1, 0x2b, 0xc4, 0x06, 0x79, 0x81, 0xec, 0xac, + 0xb7, 0x36, 0x1e, 0xff, 0xbc, 0x5f, 0x45, 0xcf, 0x03, 0xb5, 0x73, 0x37, 0x1a, 0xfa, 0x81, 0xe7, + 0x68, 0x43, 0x5a, 0x85, 0x0b, 0x3d, 0x37, 0xe0, 0x83, 0x8d, 0x95, 0xb1, 0x87, 0xa3, 0x5e, 0x5e, + 0x59, 0xfb, 0xf4, 0x61, 0xbd, 0xf4, 0xf7, 0xc3, 0x7a, 0xc9, 0x7c, 0x13, 0xaa, 0xe9, 0x54, 0x22, + 0xe4, 0x81, 0x70, 0xe9, 0x0d, 0x58, 0xed, 0xa8, 0x25, 0x99, 0xab, 0xd2, 0xdc, 0xb4, 0x62, 0x91, + 0x85, 0xab, 0x45, 0xb6, 0x6e, 0x73, 0x3f, 0x70, 0xb4, 0xa5, 0xf9, 0x2d, 0x81, 0xe7, 0x64, 0xb4, + 0x83, 0x7e, 0x1f, 0x03, 0x8a, 0xff, 0x02, 0xfe, 0x75, 0x80, 0xc9, 0x51, 0x49, 0x06, 0x95, 0xe6, + 0x95, 0x14, 0x0e, 0x75, 0x0b, 0x34, 0x9a, 0x36, 0xf3, 0xb4, 0x58, 0x4e, 0xc2, 0x33, 0x41, 0xf7, + 0x17, 0x02, 0x1b, 0xb3, 0x08, 0x91, 0xb3, 0x07, 0x6b, 0xc8, 0x64, 0x8c, 0xf1, 0x89, 0x5c, 0xd2, + 0xad, 0xeb, 0xa7, 0xbf, 0xd7, 0x4b, 0x3f, 0xfd, 0x51, 0xdf, 0xf1, 0xfc, 0xe8, 0x83, 0x51, 0xc7, + 0xea, 0xf2, 0x01, 0x1e, 0x22, 0xfe, 0xec, 0x8b, 0xde, 0x91, 0x1d, 0x1d, 0x87, 0xae, 0x90, 0x0e, + 0xc2, 0x89, 0x83, 0xd3, 0x37, 0x32, 0x78, 0x6d, 0x2f, 0xe4, 0xa5, 0x50, 0x26, 0x89, 0x99, 0x47, + 0xa8, 0xf7, 0x3b, 0x3c, 0x62, 0xfd, 0xbb, 0xa3, 0x30, 0xec, 0x1f, 0x6b, 0xbd, 0xd3, 0xda, 0x91, + 0x25, 0x68, 0x77, 0xaa, 0xb5, 0x4b, 0x65, 0x43, 0xed, 0xba, 0x50, 0x16, 0x72, 0xe5, 0xff, 0x50, + 0x0e, 0x43, 0x2f, 0x4f, 0xb7, 0x3d, 0xbc, 0xf5, 0x8a, 0xc4, 0x9d, 0xf7, 0xb5, 0x68, 0x71, 0xb5, + 0x90, 0x44, 0xb5, 0x98, 0x6d, 0x78, 0x76, 0xca, 0x1a, 0x49, 0xdf, 0x84, 0x32, 0x1b, 0xf0, 0x51, + 0x10, 0x2d, 0xac, 0x91, 0xd6, 0x93, 0x63, 0xd2, 0x0e, 0x9a, 0x9b, 0x55, 0xa0, 0x32, 0x62, 0x9b, + 0x0d, 0xd9, 0x40, 0x97, 0x88, 0xd9, 0xc6, 0xb2, 0xd7, 0xab, 0x98, 0xe5, 0x16, 0x94, 0x43, 0xb9, + 0x82, 0x59, 0xb6, 0xac, 0x8c, 0x76, 0x67, 0x29, 0x27, 0x9d, 0x47, 0x39, 0x98, 0x3d, 0x30, 0x64, + 0xc4, 0xd7, 0xc6, 0x3c, 0xc4, 0x5b, 0x6e, 0xc4, 0x7a, 0x2c, 0x62, 0x4b, 0xbe, 0x22, 0xe6, 0x8f, + 0x04, 0xb6, 0x32, 0xd3, 0x20, 0x81, 0x03, 0x58, 0x1f, 0xe0, 0x9a, 0x2e, 0xac, 0x4b, 0x99, 0x1c, + 0xb4, 0x27, 0xb2, 0x98, 0x78, 0x2d, 0xef, 0xe4, 0x1b, 0xb0, 0x39, 0x81, 0x3a, 0x2d, 0x48, 0xf6, + 0xf1, 0xbf, 0x97, 0x14, 0x71, 0x86, 0xdc, 0xab, 0xb0, 0xa6, 0x61, 0xa2, 0x84, 0x85, 0xb8, 0xc5, + 0x4e, 0xe6, 0x7d, 0xac, 0x61, 0x19, 0xfe, 0xce, 0xfd, 0xc0, 0x1d, 0x8a, 0x5c, 0x3c, 0xcb, 0xea, + 0x8a, 0xe6, 0x09, 0xc0, 0x24, 0xe7, 0xbf, 0xea, 0xcf, 0xb7, 0x26, 0x43, 0x62, 0xa5, 0x58, 0x01, + 0xc4, 0xa3, 0xe2, 0x07, 0xdd, 0x4c, 0x52, 0xb4, 0x51, 0xd3, 0x16, 0x3c, 0x25, 0xa9, 0x1e, 0x72, + 0xb9, 0x8e, 0x77, 0xa6, 0x9e, 0xa9, 0xeb, 0xc4, 0xdf, 0xa9, 0xf4, 0x26, 0xb1, 0x96, 0x76, 0x63, + 0x9a, 0x8f, 0xd7, 0xe1, 0x82, 0x44, 0x4a, 0xbf, 0x22, 0xb0, 0x8a, 0x43, 0x83, 0xee, 0x64, 0x82, + 0xc9, 0x98, 0xda, 0xc6, 0x6e, 0x01, 0x4b, 0x95, 0xd6, 0xbc, 0xf9, 0xc9, 0xaf, 0x7f, 0x7d, 0xb9, + 0xd2, 0xa0, 0xb6, 0x9d, 0xfd, 0xed, 0xa0, 0xc6, 0x87, 0x7d, 0x82, 0xfa, 0x3f, 0xb0, 0x4f, 0x24, + 0xe3, 0x07, 0xf4, 0x6b, 0x02, 0x95, 0xc4, 0x44, 0xa3, 0x7b, 0xf3, 0x73, 0xce, 0x8e, 0x66, 0x63, + 0xbf, 0xa0, 0x35, 0xa2, 0xb4, 0x25, 0xca, 0x5d, 0xba, 0x5d, 0x10, 0x25, 0xfd, 0x9c, 0x40, 0x25, + 0x31, 0x33, 0xf2, 0xd0, 0xcd, 0x0e, 0xb2, 0x3c, 0x74, 0x19, 0x83, 0xc8, 0xbc, 0x2c, 0xd1, 0x5d, + 0xa2, 0x5b, 0x99, 0xe8, 0x70, 0x90, 0x7c, 0x46, 0x60, 0x4d, 0x77, 0x73, 0x9a, 0x73, 0x40, 0x53, + 0xf3, 0xc1, 0xb8, 0x5a, 0xc4, 0x14, 0x81, 0x5c, 0x93, 0x40, 0x5e, 0xa2, 0x97, 0x73, 0x80, 0xc4, + 0x07, 0xf8, 0x31, 0x81, 0xb2, 0xea, 0xe0, 0x74, 0x7b, 0x7e, 0x8e, 0xd4, 0xb8, 0x30, 0x76, 0x16, + 0x1b, 0x16, 0xd2, 0x44, 0xcd, 0x0a, 0xfa, 0x3d, 0x81, 0xa7, 0x53, 0x2d, 0x8e, 0x5a, 0xf3, 0x13, + 0x64, 0xb5, 0x4f, 0xc3, 0x2e, 0x6c, 0x8f, 0xb8, 0x5e, 0x96, 0xb8, 0x2c, 0xba, 0x97, 0x89, 0x4b, + 0x4a, 0x23, 0x0e, 0x75, 0xa3, 0x8c, 0xb5, 0xfa, 0x8e, 0xc0, 0x33, 0xe9, 0x49, 0x43, 0x17, 0x65, + 0x9e, 0x1e, 0x7d, 0xc6, 0xf5, 0xe2, 0x0e, 0x88, 0x75, 0x4f, 0x62, 0xbd, 0x42, 0x5f, 0x2c, 0x82, + 0x95, 0x7e, 0x43, 0xa0, 0x92, 0xe8, 0x6c, 0x79, 0x57, 0x7e, 0xb6, 0xef, 0xe7, 0x5d, 0xf9, 0x8c, + 0x76, 0x69, 0x36, 0x24, 0xb4, 0x6b, 0x74, 0x77, 0x3e, 0x34, 0xec, 0xa4, 0x5a, 0xc3, 0xd6, 0xed, + 0xd3, 0xb3, 0x1a, 0x79, 0x74, 0x56, 0x23, 0x7f, 0x9e, 0xd5, 0xc8, 0x17, 0xe7, 0xb5, 0xd2, 0xa3, + 0xf3, 0x5a, 0xe9, 0xb7, 0xf3, 0x5a, 0xe9, 0xdd, 0xdd, 0xdc, 0xaf, 0xb2, 0x8f, 0x54, 0x6c, 0xf9, + 0x71, 0xd6, 0x29, 0xcb, 0x7f, 0x2b, 0x37, 0xfe, 0x09, 0x00, 0x00, 0xff, 0xff, 0x11, 0x1b, 0xa0, + 0xde, 0xa0, 0x0d, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/bank/types/tx.pb.go b/x/bank/types/tx.pb.go index 6dd52c4b64d8..f9e6a6aabd61 100644 --- a/x/bank/types/tx.pb.go +++ b/x/bank/types/tx.pb.go @@ -6,6 +6,7 @@ package types import ( context "context" fmt "fmt" + _ "github.com/cosmos/cosmos-proto" github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" types "github.com/cosmos/cosmos-sdk/types" _ "github.com/gogo/protobuf/gogoproto" @@ -207,35 +208,36 @@ func init() { func init() { proto.RegisterFile("cosmos/bank/v1beta1/tx.proto", fileDescriptor_1d8cb1613481f5b7) } var fileDescriptor_1d8cb1613481f5b7 = []byte{ - // 436 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x92, 0x3f, 0xef, 0xd2, 0x40, - 0x1c, 0xc6, 0x7b, 0x3f, 0x08, 0x3f, 0x39, 0x48, 0x0c, 0x05, 0x15, 0x2b, 0x69, 0xb1, 0x71, 0x80, - 0xc1, 0xab, 0xa0, 0x83, 0xa9, 0x93, 0x65, 0xd2, 0xa4, 0x31, 0xa9, 0x93, 0x2e, 0xa6, 0x7f, 0xce, - 0xda, 0x40, 0x7b, 0x0d, 0x77, 0x35, 0xf0, 0x0e, 0x4c, 0x5c, 0x7c, 0x09, 0xcc, 0xc6, 0x17, 0xc2, - 0xc8, 0xe8, 0x84, 0x06, 0x16, 0xe3, 0xc8, 0x2b, 0x30, 0xbd, 0xfe, 0x81, 0x44, 0xc4, 0xa9, 0xbd, - 0x3c, 0xdf, 0xcf, 0xd3, 0xe7, 0xe9, 0xf7, 0x60, 0xcf, 0x25, 0x34, 0x24, 0x54, 0x73, 0xec, 0x68, - 0xaa, 0x7d, 0x1c, 0x39, 0x98, 0xd9, 0x23, 0x8d, 0x2d, 0x50, 0x3c, 0x27, 0x8c, 0x88, 0xed, 0x4c, - 0x45, 0xa9, 0x8a, 0x72, 0x55, 0xea, 0xf8, 0xc4, 0x27, 0x5c, 0xd7, 0xd2, 0xb7, 0x6c, 0x54, 0x92, - 0x4b, 0x23, 0x8a, 0x4b, 0x23, 0x97, 0x04, 0xd1, 0x5f, 0xfa, 0xc9, 0x87, 0xb8, 0x2f, 0xd7, 0xd5, - 0xdf, 0x00, 0x5e, 0x9b, 0xd4, 0x7f, 0x8d, 0x23, 0x4f, 0xd4, 0x61, 0xf3, 0xfd, 0x9c, 0x84, 0xef, - 0x6c, 0xcf, 0x9b, 0x63, 0x4a, 0xbb, 0xa0, 0x0f, 0x06, 0x75, 0xe3, 0xce, 0x61, 0xab, 0xb4, 0x97, - 0x76, 0x38, 0xd3, 0xd5, 0x53, 0x55, 0xb5, 0x1a, 0xe9, 0xf1, 0x79, 0x76, 0x12, 0x9f, 0x40, 0xc8, - 0x48, 0x49, 0x5e, 0x71, 0xf2, 0xd6, 0x61, 0xab, 0xb4, 0x32, 0xf2, 0xa8, 0xa9, 0x56, 0x9d, 0x91, - 0x82, 0x72, 0x61, 0xcd, 0x0e, 0x49, 0x12, 0xb1, 0x6e, 0xa5, 0x5f, 0x19, 0x34, 0xc6, 0x77, 0x51, - 0xd9, 0x9c, 0xe2, 0xa2, 0x39, 0x9a, 0x90, 0x20, 0x32, 0x1e, 0xad, 0xb7, 0x8a, 0xf0, 0xf5, 0x87, - 0x32, 0xf0, 0x03, 0xf6, 0x21, 0x71, 0x90, 0x4b, 0x42, 0x2d, 0xef, 0x96, 0x3d, 0x1e, 0x52, 0x6f, - 0xaa, 0xb1, 0x65, 0x8c, 0x29, 0x07, 0xa8, 0x95, 0x5b, 0xeb, 0x37, 0x3e, 0xad, 0x14, 0xe1, 0xd7, - 0x4a, 0x11, 0xd4, 0x16, 0xbc, 0x99, 0x77, 0xb5, 0x30, 0x8d, 0x49, 0x44, 0xb1, 0xfa, 0x19, 0xc0, - 0xa6, 0x49, 0x7d, 0x33, 0x99, 0xb1, 0x80, 0xff, 0x84, 0xa7, 0xb0, 0x16, 0x44, 0x71, 0xc2, 0xd2, - 0xfa, 0x69, 0x24, 0x09, 0x9d, 0x59, 0x06, 0x7a, 0x91, 0x8e, 0x18, 0xd5, 0x34, 0x93, 0x95, 0xcf, - 0x8b, 0xcf, 0xe0, 0x35, 0x49, 0x18, 0x47, 0xaf, 0x38, 0x7a, 0xef, 0x2c, 0xfa, 0x8a, 0xcf, 0xe4, - 0x6c, 0x41, 0xe8, 0x55, 0x1e, 0xf0, 0x36, 0xec, 0x9c, 0x86, 0x29, 0x52, 0x8e, 0xbf, 0x01, 0x58, - 0x31, 0xa9, 0x2f, 0xbe, 0x84, 0x55, 0x1e, 0xb2, 0x77, 0xd6, 0x39, 0xef, 0x26, 0x3d, 0xb8, 0xa4, - 0x16, 0x9e, 0xe2, 0x1b, 0x58, 0x3f, 0xb6, 0xbe, 0xff, 0x2f, 0xa4, 0x1c, 0x91, 0x86, 0xff, 0x1d, - 0x29, 0xac, 0x8d, 0xc9, 0x7a, 0x27, 0x83, 0xcd, 0x4e, 0x06, 0x3f, 0x77, 0x32, 0xf8, 0xb2, 0x97, - 0x85, 0xcd, 0x5e, 0x16, 0xbe, 0xef, 0x65, 0xe1, 0xed, 0xf0, 0xe2, 0xf6, 0x16, 0xd9, 0x35, 0xe5, - 0x4b, 0x74, 0x6a, 0xfc, 0x82, 0x3e, 0xfe, 0x13, 0x00, 0x00, 0xff, 0xff, 0x78, 0xdc, 0x7c, 0x0b, - 0x2b, 0x03, 0x00, 0x00, + // 463 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x92, 0xbf, 0x6f, 0xd3, 0x40, + 0x1c, 0xc5, 0xed, 0x24, 0x4a, 0xc9, 0xb5, 0x12, 0xaa, 0x1b, 0xa1, 0xd6, 0x54, 0x76, 0xb1, 0x18, + 0xd2, 0x21, 0x67, 0x5a, 0x16, 0x14, 0x26, 0xdc, 0x09, 0x84, 0x85, 0xe4, 0x4e, 0xb0, 0x54, 0xfe, + 0x71, 0x18, 0xab, 0xf5, 0x9d, 0xe5, 0x3b, 0xa3, 0xe6, 0x3f, 0x40, 0x62, 0x61, 0x66, 0xca, 0x8c, + 0x18, 0xf9, 0x23, 0x32, 0x46, 0x4c, 0x4c, 0x01, 0x25, 0x0b, 0x73, 0xfe, 0x02, 0xe4, 0xbb, 0xb3, + 0x13, 0x89, 0x24, 0x9d, 0x12, 0xdf, 0x7b, 0xef, 0x73, 0xef, 0xbe, 0x77, 0xe0, 0x38, 0x24, 0x34, + 0x25, 0xd4, 0x0e, 0x7c, 0x7c, 0x6d, 0x7f, 0x3c, 0x0b, 0x10, 0xf3, 0xcf, 0x6c, 0x76, 0x0b, 0xb3, + 0x9c, 0x30, 0xa2, 0x1d, 0x08, 0x15, 0x96, 0x2a, 0x94, 0xaa, 0xde, 0x8d, 0x49, 0x4c, 0xb8, 0x6e, + 0x97, 0xff, 0x84, 0x55, 0x37, 0x6a, 0x10, 0x45, 0x35, 0x28, 0x24, 0x09, 0xfe, 0x4f, 0x5f, 0xd9, + 0x88, 0x73, 0x85, 0x7e, 0x24, 0xf4, 0x2b, 0x01, 0x96, 0xfb, 0xf2, 0x0f, 0xeb, 0x6b, 0x03, 0xec, + 0xb8, 0x34, 0xbe, 0x44, 0x38, 0xd2, 0x3c, 0xb0, 0xf7, 0x3e, 0x27, 0xe9, 0x95, 0x1f, 0x45, 0x39, + 0xa2, 0xf4, 0x50, 0x3d, 0x51, 0x7b, 0x1d, 0xc7, 0x5e, 0x4c, 0xcd, 0x83, 0xa1, 0x9f, 0xde, 0x0c, + 0xac, 0x55, 0xd5, 0xfa, 0xf9, 0xa3, 0xdf, 0x95, 0xa8, 0x17, 0x62, 0xe9, 0x92, 0xe5, 0x09, 0x8e, + 0xbd, 0xdd, 0xd2, 0x26, 0x97, 0xb4, 0xd7, 0x00, 0x30, 0x52, 0x13, 0x1b, 0x9c, 0xd8, 0x5f, 0x4c, + 0xcd, 0x7d, 0x41, 0x5c, 0x6a, 0x9b, 0x79, 0x1d, 0x46, 0x2a, 0x5a, 0x08, 0xda, 0x7e, 0x4a, 0x0a, + 0xcc, 0x0e, 0x9b, 0x27, 0xcd, 0xde, 0xee, 0xf9, 0x11, 0xac, 0x87, 0x48, 0x51, 0x35, 0x44, 0x78, + 0x41, 0x12, 0xec, 0x3c, 0x19, 0x4f, 0x4d, 0xe5, 0xdb, 0x6f, 0xb3, 0x17, 0x27, 0xec, 0x43, 0x11, + 0xc0, 0x90, 0xa4, 0xf2, 0xe4, 0xf2, 0xa7, 0x4f, 0xa3, 0x6b, 0x9b, 0x0d, 0x33, 0x44, 0x79, 0x80, + 0x7a, 0x12, 0x3d, 0xb8, 0xf7, 0x69, 0x64, 0x2a, 0x7f, 0x47, 0xa6, 0x62, 0xed, 0x83, 0xfb, 0x72, + 0x36, 0x1e, 0xa2, 0x19, 0xc1, 0x14, 0x59, 0x9f, 0x55, 0xb0, 0xe7, 0xd2, 0xd8, 0x2d, 0x6e, 0x58, + 0xc2, 0x87, 0xf6, 0x0c, 0xb4, 0x13, 0x9c, 0x15, 0xac, 0x1c, 0x57, 0x59, 0x49, 0x87, 0x6b, 0xee, + 0x15, 0xbe, 0x2c, 0x2d, 0x4e, 0xab, 0xec, 0xe4, 0x49, 0xbf, 0xf6, 0x1c, 0xec, 0x90, 0x82, 0xf1, + 0x68, 0x83, 0x47, 0x1f, 0xae, 0x8d, 0xbe, 0xe1, 0x1e, 0x99, 0xad, 0x12, 0x83, 0x16, 0x2f, 0xf8, + 0x00, 0x74, 0x57, 0xcb, 0x54, 0x2d, 0xcf, 0xbf, 0xab, 0xa0, 0xe9, 0xd2, 0x58, 0x7b, 0x05, 0x5a, + 0xbc, 0xe4, 0xf1, 0x5a, 0xb2, 0x3c, 0x9b, 0xfe, 0x78, 0x9b, 0x5a, 0x31, 0xb5, 0xb7, 0xa0, 0xb3, + 0x3c, 0xf5, 0xa3, 0x4d, 0x91, 0xda, 0xa2, 0x9f, 0xde, 0x69, 0xa9, 0xd0, 0xce, 0xc5, 0x78, 0x66, + 0xa8, 0x93, 0x99, 0xa1, 0xfe, 0x99, 0x19, 0xea, 0x97, 0xb9, 0xa1, 0x4c, 0xe6, 0x86, 0xf2, 0x6b, + 0x6e, 0x28, 0xef, 0x4e, 0xb7, 0xde, 0xde, 0xad, 0x78, 0xf1, 0xfc, 0x12, 0x83, 0x36, 0x7f, 0xd0, + 0x4f, 0xff, 0x05, 0x00, 0x00, 0xff, 0xff, 0xd4, 0x0b, 0x98, 0xec, 0x76, 0x03, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/crisis/types/tx.pb.go b/x/crisis/types/tx.pb.go index f84c4adbf106..7671e1c7f290 100644 --- a/x/crisis/types/tx.pb.go +++ b/x/crisis/types/tx.pb.go @@ -6,6 +6,7 @@ package types import ( context "context" fmt "fmt" + _ "github.com/cosmos/cosmos-proto" _ "github.com/gogo/protobuf/gogoproto" grpc1 "github.com/gogo/protobuf/grpc" proto "github.com/gogo/protobuf/proto" @@ -113,27 +114,29 @@ func init() { func init() { proto.RegisterFile("cosmos/crisis/v1beta1/tx.proto", fileDescriptor_61276163172fe867) } var fileDescriptor_61276163172fe867 = []byte{ - // 318 bytes of a gzipped FileDescriptorProto + // 349 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x4b, 0xce, 0x2f, 0xce, 0xcd, 0x2f, 0xd6, 0x4f, 0x2e, 0xca, 0x2c, 0xce, 0x2c, 0xd6, 0x2f, 0x33, 0x4c, 0x4a, 0x2d, 0x49, 0x34, 0xd4, 0x2f, 0xa9, 0xd0, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x85, 0xc8, 0xeb, 0x41, 0xe4, 0xf5, 0xa0, 0xf2, 0x52, 0x22, 0xe9, 0xf9, 0xe9, 0xf9, 0x60, 0x15, 0xfa, 0x20, 0x16, 0x44, - 0xb1, 0xd2, 0x45, 0x46, 0x2e, 0x21, 0xdf, 0xe2, 0xf4, 0xb0, 0xd4, 0xa2, 0xcc, 0xb4, 0x4a, 0xcf, - 0xbc, 0xb2, 0xc4, 0xa2, 0xcc, 0xc4, 0xbc, 0x12, 0x21, 0x31, 0x2e, 0xb6, 0xe2, 0xd4, 0xbc, 0x94, - 0xd4, 0x22, 0x09, 0x46, 0x05, 0x46, 0x0d, 0xce, 0x20, 0x28, 0x4f, 0x28, 0x84, 0x4b, 0x34, 0x13, - 0xa6, 0x28, 0x3e, 0x37, 0x3f, 0xa5, 0x34, 0x27, 0x35, 0x3e, 0x2f, 0x31, 0x37, 0x55, 0x82, 0x09, - 0xa4, 0xcc, 0x49, 0xe1, 0xd3, 0x3d, 0x79, 0x99, 0xca, 0xc4, 0xdc, 0x1c, 0x2b, 0x25, 0xac, 0xca, - 0x94, 0x82, 0x84, 0xe1, 0xe2, 0xbe, 0x60, 0x61, 0xbf, 0xc4, 0xdc, 0x54, 0x21, 0x67, 0x2e, 0x7e, - 0x84, 0xf2, 0xa2, 0xfc, 0xd2, 0x92, 0x54, 0x09, 0x66, 0xb0, 0x79, 0x52, 0x9f, 0xee, 0xc9, 0x8b, - 0xa1, 0x9b, 0x07, 0x56, 0xa0, 0x14, 0xc4, 0x07, 0x17, 0x09, 0x02, 0x09, 0x58, 0x71, 0x74, 0x2c, - 0x90, 0x67, 0x78, 0xb1, 0x40, 0x9e, 0x41, 0x49, 0x86, 0x4b, 0x0a, 0xd3, 0x4b, 0x41, 0xa9, 0xc5, - 0x05, 0xf9, 0x79, 0xc5, 0xa9, 0x46, 0x65, 0x5c, 0xcc, 0xbe, 0xc5, 0xe9, 0x42, 0xf9, 0x5c, 0xfc, - 0xe8, 0x9e, 0xd6, 0xd4, 0xc3, 0x1a, 0x72, 0x7a, 0x98, 0x86, 0x49, 0x19, 0x12, 0xad, 0x14, 0x66, - 0xaf, 0x93, 0xeb, 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, 0x69, 0xa7, 0x67, - 0x96, 0x64, 0x94, 0x26, 0xe9, 0x25, 0xe7, 0xe7, 0xea, 0xc3, 0xe2, 0x16, 0x4c, 0xe9, 0x16, 0xa7, - 0x64, 0xeb, 0x57, 0xc0, 0x22, 0xba, 0xa4, 0xb2, 0x20, 0xb5, 0x38, 0x89, 0x0d, 0x1c, 0x6f, 0xc6, - 0x80, 0x00, 0x00, 0x00, 0xff, 0xff, 0x9c, 0x60, 0x68, 0x5a, 0x06, 0x02, 0x00, 0x00, + 0xb1, 0x94, 0x24, 0x44, 0x71, 0x3c, 0x44, 0x02, 0xaa, 0x13, 0xcc, 0x51, 0x7a, 0xcd, 0xc8, 0x25, + 0xe4, 0x5b, 0x9c, 0x1e, 0x96, 0x5a, 0x94, 0x99, 0x56, 0xe9, 0x99, 0x57, 0x96, 0x58, 0x94, 0x99, + 0x98, 0x57, 0x22, 0x64, 0xc0, 0xc5, 0x56, 0x9c, 0x9a, 0x97, 0x92, 0x5a, 0x24, 0xc1, 0xa8, 0xc0, + 0xa8, 0xc1, 0xe9, 0x24, 0x71, 0x69, 0x8b, 0xae, 0x08, 0x54, 0xa3, 0x63, 0x4a, 0x4a, 0x51, 0x6a, + 0x71, 0x71, 0x70, 0x49, 0x51, 0x66, 0x5e, 0x7a, 0x10, 0x54, 0x9d, 0x50, 0x08, 0x97, 0x68, 0x26, + 0x4c, 0x7b, 0x7c, 0x6e, 0x7e, 0x4a, 0x69, 0x4e, 0x6a, 0x7c, 0x5e, 0x62, 0x6e, 0xaa, 0x04, 0x13, + 0xd8, 0x00, 0x85, 0x4f, 0xf7, 0xe4, 0x65, 0x2a, 0x13, 0x73, 0x73, 0xac, 0x94, 0xb0, 0x2a, 0x53, + 0x0a, 0x12, 0x86, 0x8b, 0xfb, 0x82, 0x85, 0xfd, 0x12, 0x73, 0x53, 0x85, 0x9c, 0xb9, 0xf8, 0x11, + 0xca, 0x8b, 0xf2, 0x4b, 0x4b, 0x52, 0x25, 0x98, 0xc1, 0xe6, 0x49, 0x7d, 0xba, 0x27, 0x2f, 0x86, + 0x6e, 0x1e, 0x58, 0x81, 0x52, 0x10, 0x1f, 0x5c, 0x24, 0x08, 0x24, 0x60, 0xc5, 0xd1, 0xb1, 0x40, + 0x9e, 0xe1, 0xc5, 0x02, 0x79, 0x06, 0x25, 0x19, 0x2e, 0x29, 0x4c, 0xcf, 0x06, 0xa5, 0x16, 0x17, + 0xe4, 0xe7, 0x15, 0xa7, 0x1a, 0x95, 0x71, 0x31, 0xfb, 0x16, 0xa7, 0x0b, 0xe5, 0x73, 0xf1, 0xa3, + 0x07, 0x87, 0xa6, 0x1e, 0xd6, 0xe0, 0xd6, 0xc3, 0x34, 0x4c, 0xca, 0x90, 0x68, 0xa5, 0x30, 0x7b, + 0x9d, 0x5c, 0x4f, 0x3c, 0x92, 0x63, 0xbc, 0xf0, 0x48, 0x8e, 0xf1, 0xc1, 0x23, 0x39, 0xc6, 0x09, + 0x8f, 0xe5, 0x18, 0x2e, 0x3c, 0x96, 0x63, 0xb8, 0xf1, 0x58, 0x8e, 0x21, 0x4a, 0x3b, 0x3d, 0xb3, + 0x24, 0xa3, 0x34, 0x49, 0x2f, 0x39, 0x3f, 0x57, 0x1f, 0x96, 0x20, 0xc0, 0x94, 0x6e, 0x71, 0x4a, + 0xb6, 0x7e, 0x05, 0x2c, 0x75, 0x94, 0x54, 0x16, 0xa4, 0x16, 0x27, 0xb1, 0x81, 0x63, 0xd4, 0x18, + 0x10, 0x00, 0x00, 0xff, 0xff, 0x68, 0x71, 0x76, 0xe3, 0x3b, 0x02, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/distribution/types/distribution.pb.go b/x/distribution/types/distribution.pb.go index 2657160a6ea0..063ecca4b64d 100644 --- a/x/distribution/types/distribution.pb.go +++ b/x/distribution/types/distribution.pb.go @@ -5,6 +5,7 @@ package types import ( fmt "fmt" + _ "github.com/cosmos/cosmos-proto" github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" types "github.com/cosmos/cosmos-sdk/types" _ "github.com/gogo/protobuf/gogoproto" @@ -625,76 +626,78 @@ func init() { } var fileDescriptor_cd78a31ea281a992 = []byte{ - // 1102 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x56, 0xcf, 0x6f, 0x1b, 0x45, - 0x14, 0xf6, 0x24, 0x8e, 0x93, 0x4e, 0xf3, 0xab, 0x13, 0x27, 0x71, 0x93, 0xe0, 0x8d, 0x46, 0x6a, - 0x15, 0x04, 0x75, 0x9a, 0xf6, 0x82, 0x72, 0x40, 0x8a, 0x9d, 0x44, 0x14, 0x01, 0x8d, 0xb6, 0x01, - 0x24, 0x2e, 0xd6, 0x78, 0x77, 0x62, 0x8f, 0x62, 0xef, 0x2c, 0x33, 0x63, 0x27, 0x39, 0x20, 0x24, - 0x4e, 0x5c, 0x10, 0x20, 0x2e, 0x1c, 0x00, 0xe5, 0xc8, 0xaf, 0x3f, 0xa4, 0xc7, 0xde, 0x40, 0x20, - 0x2d, 0x28, 0x11, 0x12, 0xe2, 0xe8, 0x1b, 0x37, 0xb4, 0x3b, 0xb3, 0xbb, 0xb6, 0x6b, 0xaa, 0xb8, - 0x52, 0x4f, 0xf6, 0x7e, 0xf3, 0xe6, 0xbd, 0xef, 0xbd, 0xf7, 0xed, 0x7b, 0x0b, 0x4b, 0x0e, 0x97, - 0x2d, 0x2e, 0x37, 0x5d, 0x26, 0x95, 0x60, 0xb5, 0xb6, 0x62, 0xdc, 0xdb, 0xec, 0x6c, 0xd5, 0xa8, - 0x22, 0x5b, 0x7d, 0x60, 0xc9, 0x17, 0x5c, 0x71, 0xb4, 0xaa, 0xed, 0x4b, 0x7d, 0x47, 0xc6, 0x7e, - 0x25, 0x5f, 0xe7, 0x75, 0x1e, 0xd9, 0x6d, 0x86, 0xff, 0xf4, 0x95, 0x95, 0xa2, 0x09, 0x51, 0x23, - 0x92, 0x26, 0xae, 0x1d, 0xce, 0x8c, 0x4b, 0xfc, 0xcb, 0x38, 0xcc, 0x1d, 0x10, 0x41, 0x5a, 0x12, - 0x1d, 0xc3, 0x19, 0x87, 0xb7, 0x5a, 0x6d, 0x8f, 0xa9, 0xb3, 0xaa, 0x22, 0xa7, 0x05, 0xb0, 0x0e, - 0x36, 0xae, 0x95, 0xf7, 0x1f, 0x07, 0x56, 0xe6, 0xb7, 0xc0, 0xba, 0x5d, 0x67, 0xaa, 0xd1, 0xae, - 0x95, 0x1c, 0xde, 0xda, 0x34, 0x4e, 0xf5, 0xcf, 0x1d, 0xe9, 0x1e, 0x6f, 0xaa, 0x33, 0x9f, 0xca, - 0xd2, 0x2e, 0x75, 0xba, 0x81, 0x95, 0x3f, 0x23, 0xad, 0xe6, 0x36, 0xee, 0x73, 0x86, 0xed, 0xe9, - 0xe4, 0xf9, 0x90, 0x9c, 0xa2, 0x8f, 0x61, 0x3e, 0xa4, 0x54, 0xf5, 0x05, 0xf7, 0xb9, 0xa4, 0xa2, - 0x2a, 0xe8, 0x09, 0x11, 0x6e, 0x61, 0x2c, 0x8a, 0xf9, 0xf6, 0xc8, 0x31, 0x57, 0x75, 0xcc, 0x61, - 0x3e, 0xb1, 0x8d, 0x42, 0xf8, 0xc0, 0xa0, 0x76, 0x04, 0xa2, 0x4f, 0x00, 0x5c, 0xac, 0x71, 0xaf, - 0x2d, 0x9f, 0xa2, 0x30, 0x1e, 0x51, 0x78, 0x67, 0x64, 0x0a, 0x6b, 0x86, 0xc2, 0x30, 0xa7, 0xd8, - 0x5e, 0x88, 0xf0, 0x01, 0x12, 0x87, 0x70, 0xf1, 0x84, 0xa9, 0x86, 0x2b, 0xc8, 0x49, 0x95, 0xb8, - 0xae, 0xa8, 0x52, 0x8f, 0xd4, 0x9a, 0xd4, 0x2d, 0x64, 0xd7, 0xc1, 0xc6, 0x54, 0x79, 0x3d, 0xf5, - 0x3a, 0xd4, 0x0c, 0xdb, 0x0b, 0x31, 0xbe, 0xe3, 0xba, 0x62, 0x4f, 0xa3, 0xdb, 0xd9, 0xaf, 0xcf, - 0xad, 0x0c, 0xfe, 0x7c, 0x0c, 0xae, 0xbc, 0x47, 0x9a, 0xcc, 0x25, 0x8a, 0x8b, 0x37, 0x98, 0x54, - 0x5c, 0x30, 0x87, 0x34, 0x75, 0x64, 0x89, 0x7e, 0x02, 0x70, 0xd9, 0x69, 0xb7, 0xda, 0x4d, 0xa2, - 0x58, 0x87, 0x1a, 0x9a, 0x55, 0x41, 0x14, 0xe3, 0x05, 0xb0, 0x3e, 0xbe, 0x71, 0xfd, 0xde, 0x9a, - 0x91, 0x67, 0x29, 0xac, 0x5e, 0x2c, 0xb3, 0x30, 0xd7, 0x0a, 0x67, 0x5e, 0xf9, 0xdd, 0xb0, 0x3e, - 0xdd, 0xc0, 0x2a, 0x9a, 0x66, 0x0f, 0x77, 0x85, 0x7f, 0xfc, 0xc3, 0x7a, 0xe5, 0x6a, 0x15, 0x0c, - 0xbd, 0x4a, 0x7b, 0x31, 0x75, 0xa4, 0x99, 0xda, 0xa1, 0x1b, 0x54, 0x81, 0x73, 0x82, 0x1e, 0x51, - 0x41, 0x3d, 0x87, 0x56, 0x1d, 0xde, 0xf6, 0x54, 0xa4, 0x94, 0x99, 0xf2, 0x4a, 0x37, 0xb0, 0x96, - 0x34, 0x85, 0x01, 0x03, 0x6c, 0xcf, 0x26, 0x48, 0x25, 0x02, 0xbe, 0x03, 0x70, 0x39, 0xa9, 0x48, - 0xa5, 0x2d, 0x04, 0xf5, 0x54, 0x5c, 0x8e, 0x63, 0x38, 0xa9, 0x79, 0xcb, 0x2b, 0x65, 0x7f, 0x3f, - 0xcc, 0x7e, 0xd4, 0xdc, 0xe2, 0x08, 0x68, 0x09, 0xe6, 0x7c, 0x2a, 0x18, 0xd7, 0x72, 0xcf, 0xda, - 0xe6, 0x09, 0x7f, 0x05, 0x60, 0x31, 0x21, 0xb8, 0xe3, 0x98, 0x52, 0x50, 0xb7, 0xc2, 0x5b, 0x2d, - 0x26, 0x25, 0xe3, 0x1e, 0xfa, 0x10, 0x42, 0x27, 0x79, 0x7a, 0x71, 0x54, 0x7b, 0x82, 0xe0, 0x6f, - 0x00, 0x5c, 0x4d, 0x58, 0x3d, 0x6c, 0x2b, 0xa9, 0x88, 0xe7, 0x32, 0xaf, 0x1e, 0x97, 0xee, 0xa3, - 0xd1, 0x4a, 0xb7, 0x67, 0x84, 0x33, 0x1b, 0x77, 0x2d, 0xba, 0x8a, 0x9f, 0xb7, 0x98, 0xf8, 0x07, - 0x00, 0x17, 0x12, 0x7a, 0x8f, 0x9a, 0x44, 0x36, 0xf6, 0x3a, 0xd4, 0x53, 0x68, 0x1f, 0xce, 0x77, - 0x62, 0xb8, 0x6a, 0xca, 0x1d, 0x4e, 0xb4, 0x6c, 0x79, 0xb5, 0x1b, 0x58, 0xcb, 0x3a, 0xfa, 0xa0, - 0x05, 0xb6, 0xe7, 0x12, 0xe8, 0x20, 0x42, 0xd0, 0x9b, 0x70, 0xea, 0x48, 0x10, 0x27, 0x9c, 0xb5, - 0x66, 0x3a, 0x95, 0x46, 0x1b, 0x0d, 0x76, 0x72, 0x1f, 0xff, 0x0c, 0x60, 0x7e, 0x08, 0x57, 0x89, - 0x3e, 0x03, 0x70, 0x29, 0xe5, 0x22, 0xc3, 0x93, 0x2a, 0x8d, 0x8e, 0x4c, 0x4d, 0xef, 0x96, 0x9e, - 0x31, 0xfb, 0x4b, 0x43, 0x7c, 0x96, 0x6f, 0x99, 0x3a, 0xbf, 0x34, 0x98, 0x69, 0xaf, 0x77, 0x6c, - 0xe7, 0x3b, 0x43, 0xf8, 0x98, 0x11, 0xf2, 0x2d, 0x80, 0x93, 0xfb, 0x94, 0x1e, 0x70, 0xde, 0x44, - 0x5f, 0x02, 0x38, 0x9b, 0x4e, 0x74, 0x9f, 0xf3, 0xe6, 0x95, 0xba, 0xfd, 0x96, 0x61, 0xb1, 0x38, - 0xb8, 0x13, 0x42, 0x0f, 0x23, 0x37, 0x3d, 0x5d, 0x50, 0x21, 0x27, 0xfc, 0x17, 0x80, 0x2b, 0x95, - 0x5e, 0xe4, 0x91, 0x4f, 0x3d, 0x57, 0xcf, 0x58, 0xd2, 0x44, 0x79, 0x38, 0xa1, 0x98, 0x6a, 0x52, - 0xbd, 0xc8, 0x6c, 0xfd, 0x80, 0xd6, 0xe1, 0x75, 0x97, 0x4a, 0x47, 0x30, 0x3f, 0x6d, 0xa9, 0xdd, - 0x0b, 0xa1, 0x35, 0x78, 0x4d, 0x50, 0x87, 0xf9, 0x8c, 0x7a, 0x4a, 0x6f, 0x03, 0x3b, 0x05, 0x90, - 0x03, 0x73, 0xa4, 0x15, 0x4d, 0xa0, 0x6c, 0x94, 0xff, 0xcd, 0xa1, 0xf9, 0x47, 0xc9, 0xdf, 0x35, - 0xaf, 0xde, 0xc6, 0x15, 0x72, 0xd4, 0x09, 0x1a, 0xd7, 0xdb, 0xd3, 0x9f, 0x9e, 0x5b, 0x99, 0xb0, - 0x07, 0x7f, 0x87, 0x7d, 0xf8, 0x17, 0xc0, 0xc5, 0x5d, 0xda, 0xa4, 0xf5, 0xa8, 0x4d, 0x8a, 0x08, - 0xc5, 0xbc, 0xfa, 0x03, 0xef, 0x28, 0x9a, 0x8b, 0xbe, 0xa0, 0x1d, 0xc6, 0xc3, 0x95, 0xd3, 0xab, - 0xf1, 0x9e, 0xb9, 0x38, 0x60, 0x80, 0xed, 0xd9, 0x18, 0x31, 0x0a, 0x3f, 0x84, 0x13, 0x52, 0x91, - 0x63, 0x6a, 0xe4, 0xfd, 0xfa, 0xc8, 0x9b, 0x6f, 0x5a, 0x07, 0x8a, 0x9c, 0x60, 0x5b, 0x3b, 0x43, - 0x7b, 0x30, 0xd7, 0xa0, 0xac, 0xde, 0xd0, 0x25, 0xcc, 0x96, 0xef, 0xfc, 0x13, 0x58, 0x73, 0x8e, - 0xa0, 0xe1, 0x3c, 0xf7, 0xaa, 0xfa, 0x28, 0x25, 0x39, 0x70, 0x80, 0x6d, 0x73, 0x19, 0xff, 0x0e, - 0xe0, 0x4d, 0x93, 0x3b, 0xe3, 0x5e, 0x52, 0x05, 0xb3, 0x40, 0x1f, 0xc0, 0x1b, 0xa9, 0xb0, 0xc3, - 0xd5, 0x48, 0xa5, 0x34, 0xdf, 0x2d, 0x6b, 0xdd, 0xc0, 0x2a, 0x0c, 0x6a, 0xdf, 0x98, 0x60, 0x3b, - 0x9d, 0x0d, 0x3b, 0x1a, 0x42, 0x0c, 0xe6, 0x92, 0x6f, 0x90, 0x17, 0x34, 0x55, 0x4d, 0x80, 0xed, - 0x29, 0xd3, 0x5d, 0x80, 0xcf, 0xc7, 0xe0, 0xad, 0xff, 0x57, 0xf0, 0xfb, 0x4c, 0x35, 0x76, 0xa9, - 0xcf, 0x25, 0x53, 0xe8, 0x76, 0x9f, 0x98, 0xcb, 0xf3, 0x69, 0xd9, 0x23, 0x18, 0xc7, 0xf2, 0x7e, - 0x6d, 0x88, 0xbc, 0xcb, 0x4b, 0xdd, 0xc0, 0x42, 0xda, 0xba, 0xe7, 0x10, 0xf7, 0xcb, 0xfe, 0xde, - 0x53, 0xb2, 0x2f, 0xe7, 0xbb, 0x81, 0x35, 0x1f, 0xcf, 0x69, 0x73, 0x84, 0x7b, 0x5f, 0x86, 0x97, - 0x7b, 0x5e, 0x86, 0xf0, 0xc2, 0x8d, 0x6e, 0x60, 0xcd, 0xe8, 0x0b, 0x1a, 0xc7, 0xb1, 0xa4, 0xd1, - 0xab, 0x70, 0xd2, 0xd5, 0xb9, 0x14, 0x26, 0x22, 0x5b, 0x94, 0x2e, 0x01, 0x73, 0x80, 0xed, 0xd8, - 0x24, 0x2d, 0x51, 0xf9, 0xe1, 0xf7, 0x17, 0x45, 0xf0, 0xf8, 0xa2, 0x08, 0x9e, 0x5c, 0x14, 0xc1, - 0x9f, 0x17, 0x45, 0xf0, 0xc5, 0x65, 0x31, 0xf3, 0xe4, 0xb2, 0x98, 0xf9, 0xf5, 0xb2, 0x98, 0xf9, - 0x60, 0xeb, 0x99, 0xf5, 0x3f, 0xed, 0xff, 0xb4, 0x8e, 0xda, 0x51, 0xcb, 0x45, 0x5f, 0xbe, 0xf7, - 0xff, 0x0b, 0x00, 0x00, 0xff, 0xff, 0x45, 0x1d, 0xb8, 0x42, 0x7e, 0x0b, 0x00, 0x00, + // 1135 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x56, 0xcd, 0x6f, 0x1b, 0x45, + 0x14, 0xf7, 0xa6, 0x8e, 0x93, 0x4e, 0xf3, 0xd5, 0x89, 0x93, 0x38, 0x4e, 0xf0, 0x46, 0x23, 0xb5, + 0x0a, 0x82, 0x38, 0x4d, 0xcb, 0x01, 0x45, 0x5c, 0x62, 0x27, 0x15, 0x48, 0x95, 0x1a, 0x6d, 0xc2, + 0x87, 0x00, 0xc9, 0x1a, 0xef, 0x4e, 0xec, 0x51, 0xec, 0x1d, 0x33, 0x33, 0x76, 0x92, 0x03, 0x17, + 0x2e, 0x70, 0x41, 0x14, 0x71, 0xe1, 0x00, 0x28, 0x47, 0x04, 0x1c, 0x91, 0xf8, 0x17, 0x7a, 0xac, + 0x38, 0x21, 0x0e, 0x06, 0x25, 0x42, 0x42, 0x1c, 0xcd, 0x3f, 0x80, 0x66, 0x67, 0x76, 0xd7, 0xde, + 0x9a, 0x2a, 0xae, 0xd4, 0x93, 0xbd, 0xef, 0xbd, 0xf9, 0xbd, 0xdf, 0x7b, 0xf3, 0x3e, 0x06, 0x14, + 0x5d, 0x26, 0x9a, 0x4c, 0x6c, 0x7a, 0x54, 0x48, 0x4e, 0xab, 0x6d, 0x49, 0x99, 0xbf, 0xd9, 0xd9, + 0xaa, 0x12, 0x89, 0xb7, 0x06, 0x84, 0xc5, 0x16, 0x67, 0x92, 0xc1, 0x15, 0x6d, 0x5f, 0x1c, 0x50, + 0x19, 0xfb, 0x7c, 0xb6, 0xc6, 0x6a, 0x2c, 0xb0, 0xdb, 0x54, 0xff, 0xf4, 0x91, 0x7c, 0xc1, 0xb8, + 0xa8, 0x62, 0x41, 0x22, 0x68, 0x97, 0x51, 0x03, 0x99, 0x5f, 0xd6, 0xfa, 0x8a, 0x3e, 0x68, 0xf0, + 0x83, 0x0f, 0xf4, 0x49, 0x1a, 0x64, 0xf6, 0x31, 0xc7, 0x4d, 0x01, 0xcf, 0xc0, 0xb4, 0xcb, 0x9a, + 0xcd, 0xb6, 0x4f, 0xe5, 0x59, 0x45, 0xe2, 0xd3, 0x9c, 0xb5, 0x66, 0xad, 0x5f, 0x2f, 0x1d, 0x3e, + 0xee, 0xda, 0xa9, 0xdf, 0xbb, 0xf6, 0xed, 0x1a, 0x95, 0xf5, 0x76, 0xb5, 0xe8, 0xb2, 0xa6, 0x81, + 0x30, 0x3f, 0x1b, 0xc2, 0x3b, 0xde, 0x94, 0x67, 0x2d, 0x22, 0x8a, 0xbb, 0xc4, 0xed, 0x75, 0xed, + 0xec, 0x19, 0x6e, 0x36, 0xb6, 0xd1, 0x00, 0x18, 0xfa, 0xf5, 0xe7, 0x0d, 0x60, 0x3c, 0xef, 0x12, + 0xd7, 0x99, 0x8a, 0xb4, 0x87, 0xf8, 0x14, 0x7e, 0x6e, 0x81, 0xac, 0x22, 0xaf, 0x18, 0xb6, 0x98, + 0x20, 0xbc, 0xc2, 0xc9, 0x09, 0xe6, 0x5e, 0x6e, 0x2c, 0xa0, 0xf0, 0xc1, 0xc8, 0x14, 0x56, 0x34, + 0x85, 0x61, 0x98, 0x49, 0x26, 0x50, 0x19, 0xed, 0x1b, 0x1b, 0x27, 0x30, 0x81, 0x8f, 0x2c, 0xb0, + 0x50, 0x65, 0x7e, 0x5b, 0x3c, 0x45, 0xe8, 0x5a, 0x40, 0xe8, 0xc3, 0x91, 0x09, 0xad, 0x1a, 0x42, + 0xc3, 0x40, 0x93, 0x8c, 0xe6, 0x03, 0xab, 0x04, 0xa5, 0x43, 0xb0, 0x70, 0x42, 0x65, 0xdd, 0xe3, + 0xf8, 0xa4, 0x82, 0x3d, 0x8f, 0x57, 0x88, 0x8f, 0xab, 0x0d, 0xe2, 0xe5, 0xd2, 0x6b, 0xd6, 0xfa, + 0x64, 0x69, 0x2d, 0xf6, 0x31, 0xd4, 0x0c, 0x39, 0xf3, 0xa1, 0x7c, 0xc7, 0xf3, 0xf8, 0x9e, 0x96, + 0x6e, 0xa7, 0xbf, 0x3e, 0xb7, 0x53, 0xe8, 0x8b, 0x31, 0x90, 0x7f, 0x07, 0x37, 0xa8, 0x87, 0x25, + 0xe3, 0x6f, 0x52, 0x21, 0x19, 0xa7, 0x2e, 0x6e, 0x68, 0xcf, 0x02, 0xfe, 0x68, 0x81, 0x25, 0xb7, + 0xdd, 0x6c, 0x37, 0xb0, 0xa4, 0x1d, 0x62, 0x48, 0x57, 0x38, 0x96, 0x94, 0xe5, 0xac, 0xb5, 0x6b, + 0xeb, 0x37, 0xee, 0xae, 0x9a, 0x22, 0x2f, 0xaa, 0x5c, 0x86, 0xc5, 0xaa, 0x62, 0x29, 0x33, 0xea, + 0x97, 0xde, 0x56, 0xd9, 0xea, 0x75, 0xed, 0x82, 0xa9, 0x8b, 0xe1, 0x50, 0xe8, 0x87, 0x3f, 0xec, + 0x57, 0xae, 0x96, 0x4f, 0x85, 0x2a, 0x9c, 0x85, 0x18, 0x48, 0x33, 0x75, 0x14, 0x0c, 0x2c, 0x83, + 0x59, 0x4e, 0x8e, 0x08, 0x27, 0xbe, 0x4b, 0x2a, 0x2e, 0x6b, 0xfb, 0x32, 0xa8, 0xa2, 0xe9, 0x52, + 0xbe, 0xd7, 0xb5, 0x17, 0x35, 0x85, 0x84, 0x01, 0x72, 0x66, 0x22, 0x49, 0x39, 0x10, 0x7c, 0x67, + 0x81, 0xa5, 0x28, 0x23, 0xe5, 0x36, 0xe7, 0xc4, 0x97, 0x61, 0x3a, 0x8e, 0xc1, 0x84, 0xe6, 0x2d, + 0xae, 0x14, 0xfd, 0x3d, 0x15, 0xfd, 0xa8, 0xb1, 0x85, 0x1e, 0xe0, 0x22, 0xc8, 0xb4, 0x08, 0xa7, + 0x4c, 0xb7, 0x42, 0xda, 0x31, 0x5f, 0xe8, 0x2b, 0x0b, 0x14, 0x22, 0x82, 0x3b, 0xae, 0x49, 0x05, + 0xf1, 0xca, 0xac, 0xd9, 0xa4, 0x42, 0x50, 0xe6, 0xc3, 0x8f, 0x00, 0x70, 0xa3, 0xaf, 0x17, 0x47, + 0xb5, 0xcf, 0x09, 0xfa, 0xc6, 0x02, 0x2b, 0x11, 0xab, 0x87, 0x6d, 0x29, 0x24, 0xf6, 0x3d, 0xea, + 0xd7, 0xc2, 0xd4, 0x7d, 0x3c, 0x5a, 0xea, 0xf6, 0x4c, 0xe1, 0xcc, 0x84, 0xb7, 0x16, 0x1c, 0x45, + 0xcf, 0x9b, 0x4c, 0xf4, 0x8b, 0x05, 0xe6, 0x23, 0x7a, 0x07, 0x0d, 0x2c, 0xea, 0x7b, 0x1d, 0xe2, + 0x4b, 0x78, 0x1f, 0xcc, 0x75, 0x42, 0x71, 0xc5, 0xa4, 0x5b, 0x0d, 0xbf, 0x74, 0x69, 0xa5, 0xd7, + 0xb5, 0x97, 0xb4, 0xf7, 0xa4, 0x05, 0x72, 0x66, 0x23, 0xd1, 0x7e, 0x20, 0x81, 0xef, 0x81, 0xc9, + 0x23, 0x8e, 0x5d, 0x35, 0xb1, 0xcd, 0xe4, 0x7a, 0x63, 0xb4, 0x41, 0x91, 0x18, 0x04, 0x11, 0x1a, + 0xfa, 0xc9, 0x02, 0xd9, 0x21, 0xcc, 0x85, 0x9a, 0x9c, 0x8b, 0x31, 0x33, 0xa1, 0x34, 0x15, 0x12, + 0xa8, 0x4c, 0x86, 0xef, 0x14, 0x9f, 0xb1, 0x4f, 0x8a, 0x43, 0x30, 0x4b, 0xb7, 0x4c, 0xd6, 0x5f, + 0x4a, 0xc6, 0xdd, 0x8f, 0x8e, 0x9c, 0x6c, 0x67, 0x08, 0x1f, 0x33, 0x50, 0xbe, 0xb5, 0xc0, 0xc4, + 0x7d, 0x42, 0xf6, 0x19, 0x6b, 0xc0, 0x2f, 0x2d, 0x30, 0x13, 0xaf, 0x82, 0x16, 0x63, 0x8d, 0x2b, + 0xdd, 0xfd, 0x03, 0xc3, 0x62, 0x21, 0xb9, 0x4c, 0x14, 0xc2, 0xc8, 0x25, 0x10, 0x6f, 0x36, 0xc5, + 0x09, 0xfd, 0x65, 0x81, 0x7c, 0xb9, 0x5f, 0x72, 0xd0, 0x22, 0xbe, 0xa7, 0x27, 0x2e, 0x6e, 0xc0, + 0x2c, 0x18, 0x97, 0x54, 0x36, 0x88, 0xde, 0x80, 0x8e, 0xfe, 0x80, 0x6b, 0xe0, 0x86, 0x47, 0x84, + 0xcb, 0x69, 0x2b, 0xbe, 0x60, 0xa7, 0x5f, 0x04, 0x57, 0xc1, 0x75, 0x4e, 0x5c, 0xda, 0xa2, 0xc4, + 0x97, 0x7a, 0x53, 0x38, 0xb1, 0x00, 0xba, 0x20, 0x83, 0x9b, 0xc1, 0x3c, 0x4a, 0x07, 0xf1, 0x2f, + 0x0f, 0x8d, 0x3f, 0x08, 0xfe, 0x8e, 0x69, 0xc4, 0xf5, 0x2b, 0xc4, 0xa8, 0x03, 0x34, 0xd0, 0xdb, + 0x53, 0x9f, 0x9d, 0xdb, 0x29, 0x75, 0x07, 0x7f, 0xab, 0x7b, 0xf8, 0x74, 0x0c, 0x2c, 0xec, 0x92, + 0x06, 0xa9, 0x05, 0xd7, 0x24, 0x31, 0x97, 0xd4, 0xaf, 0xbd, 0xe5, 0x1f, 0x05, 0x53, 0xb2, 0xc5, + 0x49, 0x87, 0x32, 0xb5, 0x8e, 0xfa, 0x2b, 0xbe, 0x6f, 0x4a, 0x26, 0x0c, 0x90, 0x33, 0x13, 0x4a, + 0x4c, 0xbd, 0x57, 0xc1, 0xb8, 0x90, 0xf8, 0x98, 0x98, 0x62, 0x7f, 0x30, 0xf2, 0x56, 0x9c, 0xd2, + 0x8e, 0x02, 0x90, 0xe4, 0x16, 0xd4, 0xd0, 0x70, 0x0f, 0x64, 0xea, 0x84, 0xd6, 0xea, 0x3a, 0xa1, + 0xe9, 0xd2, 0xc6, 0x3f, 0x5d, 0x7b, 0xd6, 0xe5, 0x44, 0xcd, 0x7a, 0xbf, 0xa2, 0x55, 0x31, 0xe5, + 0x84, 0x02, 0x39, 0xe6, 0x30, 0xfa, 0xd7, 0x02, 0xcb, 0x26, 0x13, 0x94, 0xf9, 0x51, 0x4e, 0xcc, + 0x72, 0xc5, 0xe0, 0x66, 0x5c, 0xe6, 0x6a, 0x6d, 0x12, 0x21, 0xcc, 0xf3, 0xe7, 0xb5, 0x5e, 0xd7, + 0xce, 0x25, 0x3b, 0xc1, 0x98, 0x28, 0xca, 0x59, 0x43, 0x79, 0x47, 0x8b, 0x0e, 0x24, 0x57, 0xf3, + 0x2e, 0x9e, 0x27, 0x46, 0x0e, 0x29, 0xc8, 0x44, 0x6f, 0x9a, 0x17, 0x34, 0x89, 0x8d, 0x83, 0xed, + 0x49, 0x53, 0x03, 0x16, 0x3a, 0x1f, 0x03, 0xb7, 0xfe, 0xbf, 0xce, 0xdf, 0xa5, 0xb2, 0xbe, 0x4b, + 0x5a, 0x4c, 0x50, 0x09, 0x6f, 0x0f, 0x94, 0x7c, 0x69, 0x2e, 0xbe, 0x9c, 0x40, 0x8c, 0xc2, 0x26, + 0x78, 0x7d, 0x48, 0x13, 0x94, 0x16, 0x7b, 0x5d, 0x1b, 0x6a, 0xeb, 0x3e, 0x25, 0x1a, 0x6c, 0x8e, + 0xbb, 0x4f, 0x35, 0x47, 0x29, 0xdb, 0xeb, 0xda, 0x73, 0xe1, 0x6c, 0x37, 0x2a, 0xd4, 0xdf, 0x32, + 0x2f, 0xf7, 0xb5, 0x8c, 0x3a, 0x70, 0xb3, 0xd7, 0xb5, 0xa7, 0xf5, 0x01, 0x2d, 0x47, 0x61, 0xe1, + 0xc3, 0x57, 0xc1, 0x84, 0xa7, 0x63, 0xc9, 0x8d, 0x07, 0xb6, 0x30, 0x5e, 0x1c, 0x46, 0x81, 0x9c, + 0xd0, 0x24, 0x4e, 0x51, 0xe9, 0xe1, 0xf7, 0x17, 0x05, 0xeb, 0xf1, 0x45, 0xc1, 0x7a, 0x72, 0x51, + 0xb0, 0xfe, 0xbc, 0x28, 0x58, 0x8f, 0x2e, 0x0b, 0xa9, 0x27, 0x97, 0x85, 0xd4, 0x6f, 0x97, 0x85, + 0xd4, 0xfb, 0x5b, 0xcf, 0xcc, 0xff, 0xe9, 0xe0, 0xa3, 0x3e, 0xb8, 0x8e, 0x6a, 0x26, 0x78, 0x58, + 0xdf, 0xfb, 0x2f, 0x00, 0x00, 0xff, 0xff, 0xd2, 0xb7, 0xb2, 0x68, 0xf8, 0x0b, 0x00, 0x00, } func (this *Params) Equal(that interface{}) bool { diff --git a/x/distribution/types/genesis.pb.go b/x/distribution/types/genesis.pb.go index 5c94d4359ffa..6f9451fe6bb2 100644 --- a/x/distribution/types/genesis.pb.go +++ b/x/distribution/types/genesis.pb.go @@ -5,6 +5,7 @@ package types import ( fmt "fmt" + _ "github.com/cosmos/cosmos-proto" github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" types "github.com/cosmos/cosmos-sdk/types" _ "github.com/gogo/protobuf/gogoproto" @@ -397,71 +398,73 @@ func init() { } var fileDescriptor_76eed0f9489db580 = []byte{ - // 1024 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x57, 0xcd, 0x6f, 0x1b, 0x45, - 0x1c, 0xf5, 0x3a, 0x25, 0x49, 0x27, 0x29, 0x0d, 0xdb, 0x7c, 0xb8, 0x4e, 0xea, 0x4d, 0xa7, 0x45, - 0x04, 0x55, 0xac, 0x9b, 0x80, 0x00, 0x05, 0x81, 0x94, 0x4d, 0x29, 0xf4, 0xd4, 0x30, 0x91, 0x00, - 0x71, 0xb1, 0xd6, 0xbb, 0x63, 0x7b, 0x84, 0xbd, 0x63, 0xcd, 0x8c, 0x1d, 0xc2, 0x3f, 0x00, 0x47, - 0x24, 0xc4, 0xa9, 0x1c, 0x72, 0x44, 0x88, 0x63, 0xef, 0x5c, 0x7b, 0xec, 0x91, 0x03, 0x0a, 0x28, - 0xb9, 0x70, 0xce, 0x81, 0x03, 0x27, 0xb4, 0x33, 0xb3, 0x5f, 0xf6, 0xda, 0x38, 0xa1, 0x39, 0x25, - 0x1e, 0xff, 0xf6, 0xbd, 0xf7, 0x7b, 0xf3, 0xfb, 0x58, 0x83, 0xd7, 0x3d, 0xca, 0x3b, 0x94, 0x57, - 0x7d, 0xc2, 0x05, 0x23, 0xf5, 0x9e, 0x20, 0x34, 0xa8, 0xf6, 0x37, 0xeb, 0x58, 0xb8, 0x9b, 0xd5, - 0x26, 0x0e, 0x30, 0x27, 0xdc, 0xee, 0x32, 0x2a, 0xa8, 0xb9, 0xaa, 0x42, 0xed, 0x74, 0xa8, 0xad, - 0x43, 0xcb, 0x8b, 0x4d, 0xda, 0xa4, 0x32, 0xae, 0x1a, 0xfe, 0xa7, 0x1e, 0x29, 0x57, 0x34, 0x7a, - 0xdd, 0xe5, 0x38, 0x46, 0xf5, 0x28, 0x09, 0xf4, 0xf7, 0xf6, 0x38, 0xf6, 0x0c, 0x8f, 0x8c, 0x87, - 0x4f, 0x0d, 0xb0, 0xf4, 0x00, 0xb7, 0x71, 0xd3, 0x15, 0x94, 0x7d, 0x46, 0x44, 0xcb, 0x67, 0xee, - 0xc1, 0xa3, 0xa0, 0x41, 0xcd, 0x47, 0xe0, 0x15, 0x3f, 0xfa, 0xa2, 0xe6, 0xfa, 0x3e, 0xc3, 0x9c, - 0x97, 0x8c, 0x75, 0x63, 0xe3, 0xaa, 0xb3, 0x76, 0x76, 0x6c, 0x95, 0x0e, 0xdd, 0x4e, 0x7b, 0x1b, - 0x0e, 0x85, 0x40, 0xb4, 0x10, 0x9f, 0xed, 0xa8, 0x23, 0xf3, 0x21, 0x58, 0x38, 0xd0, 0xd0, 0x31, - 0x52, 0x51, 0x22, 0xad, 0x9e, 0x1d, 0x5b, 0x2b, 0x0a, 0x69, 0x30, 0x02, 0xa2, 0xeb, 0xd1, 0x91, - 0xc6, 0xd9, 0x9e, 0xfd, 0xf6, 0xc8, 0x2a, 0xfc, 0x75, 0x64, 0x15, 0xe0, 0x93, 0x22, 0xb8, 0xfd, - 0xa9, 0xdb, 0x26, 0x7e, 0x48, 0xf3, 0xb8, 0x27, 0xb8, 0x70, 0x03, 0x9f, 0x04, 0x4d, 0x84, 0x0f, - 0x5c, 0xe6, 0x73, 0x84, 0x3d, 0xca, 0xfc, 0x30, 0x85, 0x7e, 0x14, 0x34, 0x3a, 0x85, 0xa1, 0x10, - 0x88, 0x16, 0xe2, 0xb3, 0x28, 0x85, 0x23, 0x03, 0xdc, 0xa0, 0x09, 0x4f, 0x8d, 0x29, 0xa2, 0x52, - 0x71, 0x7d, 0x6a, 0x63, 0x6e, 0x6b, 0x4d, 0xdb, 0x6e, 0x87, 0xd7, 0x12, 0xdd, 0xa0, 0xfd, 0x00, - 0x7b, 0xbb, 0x94, 0x04, 0xce, 0x27, 0xcf, 0x8e, 0xad, 0xc2, 0xd9, 0xb1, 0x55, 0x56, 0x7c, 0x39, - 0x30, 0xf0, 0xe7, 0x3f, 0xac, 0x7b, 0x4d, 0x22, 0x5a, 0xbd, 0xba, 0xed, 0xd1, 0x4e, 0x55, 0x5f, - 0xa2, 0xfa, 0xf3, 0x06, 0xf7, 0xbf, 0xac, 0x8a, 0xc3, 0x2e, 0xe6, 0x11, 0x22, 0x47, 0x26, 0x1d, - 0xca, 0x39, 0xe5, 0xce, 0xdf, 0x06, 0xb8, 0x1b, 0xbb, 0xb3, 0xe3, 0x79, 0xbd, 0x4e, 0xaf, 0xed, - 0x0a, 0xec, 0xef, 0xd2, 0x4e, 0x87, 0x70, 0x4e, 0x68, 0xf0, 0xe2, 0x0d, 0x3a, 0x04, 0x73, 0x6e, - 0xc2, 0x24, 0xaf, 0x77, 0x6e, 0xeb, 0x3d, 0x7b, 0x4c, 0x85, 0xdb, 0xe3, 0x25, 0x3a, 0x65, 0x6d, - 0x9b, 0xa9, 0x54, 0xa4, 0xd0, 0x21, 0x4a, 0x73, 0xa5, 0x12, 0xff, 0xc7, 0x00, 0xeb, 0x31, 0xea, - 0xc7, 0x84, 0x0b, 0xca, 0x88, 0xe7, 0xb6, 0x2f, 0xad, 0x2a, 0x96, 0xc1, 0x74, 0x17, 0x33, 0x42, - 0x55, 0xbe, 0x57, 0x90, 0xfe, 0x64, 0x12, 0x30, 0x13, 0x15, 0xc8, 0x94, 0x34, 0xe2, 0x9d, 0xc9, - 0x8c, 0x18, 0x92, 0xec, 0x2c, 0x6b, 0x13, 0x5e, 0x56, 0xaa, 0xa2, 0x7a, 0x41, 0x11, 0x7e, 0x2a, - 0xf9, 0xdf, 0x0d, 0x70, 0x2b, 0x46, 0xda, 0xed, 0x31, 0x86, 0x03, 0x71, 0x69, 0x99, 0x37, 0x92, - 0x0c, 0xd5, 0x55, 0xbf, 0x35, 0x59, 0x86, 0x59, 0x5d, 0xe7, 0x49, 0xef, 0x69, 0x11, 0xac, 0xc6, - 0x93, 0x6a, 0x5f, 0xb8, 0x4c, 0x90, 0xa0, 0x19, 0x4e, 0xaa, 0x24, 0xb9, 0x17, 0x35, 0xaf, 0x72, - 0x7d, 0x2a, 0x5e, 0xc8, 0xa7, 0x1e, 0xb8, 0xc6, 0xb5, 0xd6, 0x1a, 0x09, 0x1a, 0x54, 0xd7, 0xc3, - 0xd6, 0x58, 0xb7, 0x72, 0xd3, 0x74, 0xd6, 0xb4, 0x57, 0x8b, 0x8a, 0x3e, 0x03, 0x0b, 0xd1, 0x3c, - 0x4f, 0xc5, 0xa6, 0x6c, 0xfb, 0xb1, 0x08, 0x6e, 0xc6, 0xee, 0xef, 0xb7, 0x5d, 0xde, 0xfa, 0xb0, - 0x2f, 0x2f, 0xe0, 0x12, 0x7a, 0xa1, 0x85, 0x49, 0xb3, 0x25, 0xa2, 0x5e, 0x50, 0x9f, 0x52, 0x3d, - 0x32, 0x95, 0xe9, 0x91, 0xaf, 0xc1, 0x52, 0x82, 0xcb, 0x43, 0x61, 0x35, 0x1c, 0x2a, 0x2b, 0x5d, - 0x91, 0x0e, 0xdd, 0x9f, 0xac, 0x9e, 0x92, 0x8c, 0x9c, 0x45, 0xed, 0xcf, 0xbc, 0x12, 0x2d, 0xc1, - 0x20, 0xba, 0xd1, 0x1f, 0x0e, 0x4d, 0xd9, 0xf3, 0xcd, 0x1c, 0x98, 0xff, 0x48, 0x2d, 0xe5, 0x7d, - 0xe1, 0x0a, 0x6c, 0x22, 0x30, 0xdd, 0x75, 0x99, 0xdb, 0x51, 0x36, 0xcc, 0x6d, 0xdd, 0x19, 0xab, - 0x63, 0x4f, 0x86, 0x3a, 0x4b, 0x9a, 0xfa, 0x9a, 0xa2, 0x56, 0x00, 0x10, 0x69, 0x24, 0xf3, 0x73, - 0x30, 0xdb, 0xc0, 0xb8, 0xd6, 0xa5, 0xb4, 0xad, 0xbb, 0xe5, 0xee, 0x58, 0xd4, 0x87, 0x18, 0xef, - 0x51, 0xda, 0x76, 0x56, 0x34, 0xec, 0x75, 0x05, 0x1b, 0x61, 0x40, 0x34, 0xd3, 0x50, 0x11, 0xe6, - 0x0f, 0x06, 0x28, 0x25, 0x25, 0x1d, 0xaf, 0xd0, 0xb0, 0x24, 0xc2, 0xd1, 0x33, 0x35, 0x79, 0xa9, - 0xa5, 0x77, 0xbf, 0xf3, 0x9a, 0x26, 0xb6, 0x06, 0x9b, 0x26, 0xcb, 0x00, 0xd1, 0xb2, 0x9f, 0xf7, - 0xbc, 0xec, 0xa0, 0x2e, 0xc3, 0x7d, 0x42, 0x7b, 0xbc, 0xd6, 0x65, 0xb4, 0x4b, 0x39, 0x66, 0xf2, - 0x62, 0x33, 0x75, 0x35, 0x14, 0x02, 0xd1, 0x42, 0x74, 0xb6, 0xa7, 0x8f, 0xcc, 0xef, 0x47, 0x6c, - 0xde, 0x97, 0x64, 0x76, 0x1f, 0x4c, 0x56, 0x26, 0xa3, 0x5e, 0x11, 0x1c, 0xf8, 0xdf, 0xbb, 0x39, - 0x6f, 0xd9, 0x9a, 0xbf, 0x1a, 0xe0, 0x76, 0xaa, 0x2d, 0x92, 0x6d, 0x54, 0xf3, 0xe2, 0x0d, 0xc6, - 0x4b, 0xd3, 0x52, 0xe3, 0xce, 0xff, 0xd8, 0x82, 0x5a, 0xe6, 0x7d, 0x2d, 0x73, 0x63, 0xa8, 0x21, - 0xf3, 0x99, 0x21, 0xb2, 0xfa, 0x63, 0x71, 0xb9, 0xf9, 0x8b, 0x01, 0xd6, 0x12, 0x9c, 0x56, 0xbc, - 0x79, 0x62, 0x83, 0x67, 0xa4, 0xf8, 0xf7, 0x2f, 0xb8, 0xb9, 0xb4, 0xf0, 0x7b, 0x5a, 0xf8, 0x9d, - 0x41, 0xe1, 0xc3, 0x84, 0x10, 0x95, 0xfb, 0x23, 0xe1, 0xc2, 0x17, 0xb0, 0x9b, 0xc9, 0xd3, 0x9e, - 0x5a, 0x23, 0xb1, 0xd6, 0x59, 0xa9, 0x75, 0xfb, 0x22, 0x3b, 0x48, 0x0b, 0xdd, 0xd0, 0x42, 0xd7, - 0x07, 0x85, 0x0e, 0x50, 0x41, 0xb4, 0xd2, 0xcf, 0x07, 0x32, 0x9f, 0x64, 0x9a, 0x31, 0x33, 0x9f, - 0x79, 0xe9, 0xaa, 0x54, 0xf8, 0xee, 0xf9, 0xe7, 0xbe, 0xd6, 0x37, 0xb2, 0x25, 0xb3, 0x3c, 0xe9, - 0x96, 0x4c, 0xa3, 0xf0, 0xb0, 0x8f, 0x96, 0x73, 0x07, 0x2e, 0x2f, 0x01, 0xa9, 0xed, 0xed, 0xf3, - 0x4e, 0x5c, 0xad, 0xec, 0x55, 0xad, 0xec, 0xd6, 0xa0, 0x73, 0x69, 0x0e, 0x88, 0x16, 0x73, 0x06, - 0x71, 0x6a, 0xbf, 0x3b, 0x8f, 0x7f, 0x3a, 0xa9, 0x18, 0xcf, 0x4e, 0x2a, 0xc6, 0xf3, 0x93, 0x8a, - 0xf1, 0xe7, 0x49, 0xc5, 0xf8, 0xee, 0xb4, 0x52, 0x78, 0x7e, 0x5a, 0x29, 0xfc, 0x76, 0x5a, 0x29, - 0x7c, 0xb1, 0x39, 0xf6, 0xed, 0xf8, 0xab, 0xec, 0xef, 0x1d, 0xf9, 0xb2, 0x5c, 0x9f, 0x96, 0xbf, - 0x70, 0xde, 0xfc, 0x37, 0x00, 0x00, 0xff, 0xff, 0xa8, 0xee, 0xfe, 0x4a, 0x91, 0x0d, 0x00, 0x00, + // 1048 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x57, 0xcf, 0x6f, 0x1b, 0x45, + 0x14, 0xf6, 0x3a, 0x25, 0x49, 0xc7, 0x29, 0x2d, 0x5b, 0x27, 0x71, 0xdc, 0xd4, 0x9b, 0x6e, 0x8b, + 0x08, 0xaa, 0xba, 0x6e, 0xd2, 0x0a, 0x50, 0x10, 0x48, 0xd9, 0x94, 0x5f, 0xa7, 0x86, 0x8d, 0x04, + 0x88, 0x03, 0xd6, 0x78, 0x77, 0x6c, 0x8f, 0xb0, 0x77, 0xac, 0x99, 0xb1, 0x43, 0xf8, 0x0b, 0x38, + 0x21, 0x04, 0xe2, 0xc4, 0x81, 0x1c, 0x11, 0xe2, 0x46, 0xef, 0x5c, 0x7b, 0xac, 0x38, 0x71, 0x0a, + 0x28, 0xe9, 0x81, 0x73, 0xc4, 0x1f, 0x80, 0x76, 0x66, 0xf6, 0x97, 0xbd, 0x5e, 0x9c, 0x02, 0x39, + 0x25, 0xbb, 0x7e, 0xf3, 0x7d, 0xdf, 0xfb, 0xe6, 0xbd, 0x99, 0xb7, 0xe0, 0x65, 0x97, 0xb0, 0x1e, + 0x61, 0x75, 0x0f, 0x33, 0x4e, 0x71, 0x73, 0xc0, 0x31, 0xf1, 0xeb, 0xc3, 0x8d, 0x26, 0xe2, 0x70, + 0xa3, 0xde, 0x46, 0x3e, 0x62, 0x98, 0x59, 0x7d, 0x4a, 0x38, 0xd1, 0xaf, 0xc9, 0x50, 0x2b, 0x19, + 0x6a, 0xa9, 0xd0, 0x6a, 0xb9, 0x4d, 0xda, 0x44, 0xc4, 0xd5, 0x83, 0xff, 0xe4, 0x92, 0x6a, 0x4d, + 0xa1, 0x37, 0x21, 0x43, 0x11, 0xaa, 0x4b, 0xb0, 0xaf, 0x7e, 0xb7, 0xf2, 0xd8, 0x53, 0x3c, 0x32, + 0x7e, 0x45, 0xc6, 0x37, 0x24, 0x91, 0xd2, 0x23, 0x1e, 0xcc, 0xa7, 0x1a, 0x58, 0x7c, 0x80, 0xba, + 0xa8, 0x0d, 0x39, 0xa1, 0x1f, 0x62, 0xde, 0xf1, 0x28, 0xdc, 0x7f, 0xcf, 0x6f, 0x11, 0x1d, 0x82, + 0x17, 0xbc, 0xf0, 0x87, 0x06, 0xf4, 0x3c, 0x8a, 0x18, 0xab, 0x68, 0x6b, 0xda, 0xfa, 0x45, 0xfb, + 0xfe, 0xe9, 0x91, 0x51, 0x39, 0x80, 0xbd, 0xee, 0x96, 0x39, 0x16, 0x62, 0xfe, 0xfa, 0xe8, 0x4e, + 0x59, 0x51, 0x6c, 0xcb, 0x57, 0x7b, 0x9c, 0x62, 0xbf, 0xed, 0x5c, 0x89, 0x62, 0xd5, 0x7b, 0xfd, + 0x13, 0x70, 0x65, 0x5f, 0x51, 0x46, 0x0c, 0x45, 0xc1, 0x70, 0xef, 0xf4, 0xc8, 0x58, 0x96, 0x0c, + 0xa3, 0x11, 0x93, 0x09, 0x2e, 0x87, 0xa1, 0xea, 0xf5, 0xd6, 0xfc, 0x17, 0x87, 0x46, 0xe1, 0xcf, + 0x43, 0xa3, 0x60, 0xfe, 0x5c, 0x04, 0x37, 0x3e, 0x80, 0x5d, 0xec, 0x05, 0xf4, 0x0f, 0x07, 0x9c, + 0x71, 0xe8, 0x7b, 0xc1, 0x1a, 0xb4, 0x0f, 0xa9, 0xc7, 0x1c, 0xe4, 0x12, 0xea, 0x05, 0x29, 0x0f, + 0xc3, 0xa0, 0xc9, 0x29, 0x8f, 0x85, 0xe4, 0xa4, 0x1c, 0xc5, 0x86, 0x29, 0x1f, 0x6a, 0xe0, 0x2a, + 0x89, 0xf9, 0x1b, 0x54, 0x0a, 0xa8, 0x14, 0xd7, 0x66, 0xd6, 0x4b, 0x9b, 0xab, 0x6a, 0x67, 0xad, + 0x60, 0xe7, 0xc3, 0x22, 0xb1, 0x1e, 0x20, 0x77, 0x87, 0x60, 0xdf, 0x7e, 0xff, 0xf1, 0x91, 0x51, + 0x38, 0x3d, 0x32, 0xaa, 0x52, 0x47, 0x06, 0x8c, 0xf9, 0xe3, 0xef, 0xc6, 0xed, 0x36, 0xe6, 0x9d, + 0x41, 0xd3, 0x72, 0x49, 0x4f, 0x6d, 0xb5, 0xfa, 0x73, 0x87, 0x79, 0x9f, 0xd6, 0xf9, 0x41, 0x1f, + 0xb1, 0x10, 0x91, 0x39, 0x3a, 0x19, 0xf3, 0x22, 0xe1, 0xda, 0x97, 0x45, 0x70, 0x2b, 0x72, 0x6d, + 0xdb, 0x75, 0x07, 0xbd, 0x41, 0x17, 0x72, 0xe4, 0xed, 0x90, 0x5e, 0x0f, 0x33, 0x86, 0x89, 0x7f, + 0x7e, 0xc6, 0x1d, 0x80, 0x12, 0x8c, 0x15, 0x88, 0x32, 0x29, 0x6d, 0xbe, 0x6e, 0xe5, 0x34, 0x97, + 0x95, 0x2f, 0xdd, 0xae, 0x2a, 0x3b, 0x75, 0xa9, 0x2e, 0x81, 0x6e, 0x3a, 0x49, 0xae, 0x84, 0x21, + 0x5f, 0x17, 0xc1, 0x5a, 0x84, 0xfa, 0x2e, 0x66, 0x9c, 0x50, 0xec, 0xc2, 0xee, 0xb9, 0x57, 0xd1, + 0x12, 0x98, 0xed, 0x23, 0x8a, 0x89, 0xf4, 0xe1, 0x82, 0xa3, 0x9e, 0x74, 0x0c, 0xe6, 0xc2, 0x82, + 0x9a, 0x11, 0x06, 0xbd, 0x3a, 0x9d, 0x41, 0x63, 0xa9, 0xd8, 0x4b, 0xca, 0x9c, 0xe7, 0xa5, 0xda, + 0xb0, 0xbe, 0x9c, 0x10, 0x3f, 0x61, 0xca, 0x5f, 0x1a, 0xb8, 0x1e, 0x21, 0xed, 0x0c, 0x28, 0x45, + 0x3e, 0x3f, 0x77, 0x47, 0x5a, 0x71, 0xe6, 0xb2, 0x34, 0xee, 0x4f, 0x97, 0x79, 0x5a, 0xef, 0x59, + 0xd2, 0x7e, 0x5a, 0x04, 0xd7, 0xa2, 0x93, 0x73, 0x8f, 0x43, 0xca, 0xb1, 0xdf, 0x0e, 0x4e, 0xce, + 0x38, 0xe9, 0xff, 0xfb, 0xfc, 0xcc, 0xf4, 0xb5, 0xf8, 0x9f, 0xfa, 0x3a, 0x00, 0x97, 0x98, 0xca, + 0xad, 0x81, 0xfd, 0x16, 0x51, 0x75, 0xb5, 0x99, 0xeb, 0x6e, 0xa6, 0x2d, 0xf6, 0xaa, 0xf2, 0xb6, + 0x2c, 0x65, 0xa5, 0x60, 0x4d, 0x67, 0x81, 0x25, 0x62, 0x13, 0x36, 0x3f, 0x2a, 0x82, 0x95, 0x68, + 0xb7, 0xf6, 0xba, 0x90, 0x75, 0xde, 0x1a, 0x8a, 0x0d, 0x3b, 0xc7, 0x5e, 0xeb, 0x20, 0xdc, 0xee, + 0xf0, 0xb0, 0xd7, 0xe4, 0x53, 0xa2, 0x07, 0x67, 0x52, 0x3d, 0xf8, 0x39, 0x58, 0x8c, 0xf9, 0x58, + 0x20, 0xb8, 0x81, 0x02, 0xc5, 0x95, 0x0b, 0xc2, 0xb9, 0xbb, 0xd3, 0xd5, 0x65, 0x9c, 0xa9, 0x5d, + 0x56, 0xbe, 0x2d, 0xc8, 0x64, 0x04, 0x98, 0xe9, 0x5c, 0x1d, 0x8e, 0x87, 0x26, 0x6c, 0xfb, 0xbe, + 0x04, 0x16, 0xde, 0x91, 0x73, 0xc8, 0x1e, 0x87, 0x1c, 0xe9, 0x0e, 0x98, 0xed, 0x43, 0x0a, 0x7b, + 0xd2, 0x9e, 0xd2, 0xe6, 0xcd, 0x5c, 0x1d, 0xbb, 0x22, 0xd4, 0x5e, 0x54, 0xd4, 0x97, 0x24, 0xb5, + 0x04, 0x30, 0x1d, 0x85, 0xa4, 0x7f, 0x04, 0xe6, 0x5b, 0x08, 0x35, 0xfa, 0x84, 0x74, 0x55, 0xd7, + 0xdd, 0xca, 0x45, 0x7d, 0x1b, 0xa1, 0x5d, 0x42, 0xba, 0xf6, 0xb2, 0x82, 0xbd, 0x2c, 0x61, 0x43, + 0x0c, 0xd3, 0x99, 0x6b, 0xc9, 0x08, 0xfd, 0x5b, 0x0d, 0x54, 0xe2, 0xd6, 0x88, 0x46, 0x80, 0xa0, + 0x54, 0x82, 0xa3, 0x6d, 0x66, 0xfa, 0x12, 0x4c, 0xce, 0x34, 0xf6, 0x4b, 0x8a, 0xd8, 0x18, 0x6d, + 0xbe, 0x34, 0x83, 0xe9, 0x2c, 0x79, 0x59, 0xeb, 0x45, 0xc7, 0xf5, 0x29, 0x1a, 0x62, 0x32, 0x10, + 0xd3, 0x54, 0x9f, 0x30, 0x44, 0xc5, 0xc6, 0xa6, 0xea, 0x6d, 0x2c, 0x24, 0xa7, 0xde, 0xc2, 0xd8, + 0x5d, 0x15, 0xaa, 0x7f, 0x33, 0x61, 0x42, 0x78, 0x4e, 0x64, 0xfd, 0xe6, 0x74, 0xe5, 0x33, 0x69, + 0xc4, 0xb1, 0xcd, 0x7f, 0x9e, 0x21, 0xb2, 0x86, 0x02, 0xfd, 0x17, 0x0d, 0xdc, 0x48, 0xb4, 0x51, + 0x7c, 0x3b, 0x36, 0xdc, 0xe8, 0x46, 0x65, 0x95, 0x59, 0xa1, 0x71, 0xfb, 0x5f, 0xdc, 0xca, 0x4a, + 0xe6, 0x5d, 0x25, 0x73, 0x7d, 0xac, 0x81, 0xb3, 0x99, 0x4d, 0xc7, 0x18, 0xe6, 0xe2, 0x32, 0xfd, + 0x27, 0x0d, 0xac, 0xc6, 0x38, 0x9d, 0xe8, 0xc6, 0x8b, 0x0c, 0x9e, 0x13, 0xe2, 0xdf, 0x78, 0xc6, + 0x1b, 0x53, 0x09, 0xbf, 0xad, 0x84, 0xdf, 0x1c, 0x15, 0x3e, 0x4e, 0x68, 0x3a, 0xd5, 0xe1, 0x44, + 0xb8, 0x60, 0x50, 0x5c, 0x89, 0x57, 0xbb, 0xf2, 0x9a, 0x8a, 0xb4, 0xce, 0x0b, 0xad, 0x5b, 0xcf, + 0x72, 0xc7, 0x29, 0xa1, 0xeb, 0x4a, 0xe8, 0xda, 0xa8, 0xd0, 0x11, 0x2a, 0xd3, 0x59, 0x1e, 0x66, + 0x03, 0xe9, 0xdf, 0xa5, 0x9a, 0x34, 0x75, 0x9e, 0xb3, 0xca, 0x45, 0xa1, 0xf0, 0xb5, 0xb3, 0xdf, + 0x13, 0x4a, 0xdf, 0xc4, 0x56, 0x4d, 0xf3, 0x24, 0x5b, 0x35, 0x89, 0xc2, 0x82, 0x3e, 0x5a, 0xca, + 0x3c, 0x88, 0x59, 0x05, 0x08, 0x6d, 0xaf, 0x9c, 0xf5, 0x24, 0x56, 0xca, 0x5e, 0x54, 0xca, 0xae, + 0x8f, 0x3a, 0x97, 0xe4, 0x30, 0x9d, 0x72, 0xc6, 0x01, 0x9d, 0x98, 0x1f, 0xec, 0x87, 0x3f, 0x1c, + 0xd7, 0xb4, 0xc7, 0xc7, 0x35, 0xed, 0xc9, 0x71, 0x4d, 0xfb, 0xe3, 0xb8, 0xa6, 0x7d, 0x75, 0x52, + 0x2b, 0x3c, 0x39, 0xa9, 0x15, 0x7e, 0x3b, 0xa9, 0x15, 0x3e, 0xde, 0xc8, 0x9d, 0xe2, 0x3f, 0x4b, + 0x7f, 0xfa, 0x89, 0xa1, 0xbe, 0x39, 0x2b, 0xbe, 0xe8, 0xee, 0xfd, 0x1d, 0x00, 0x00, 0xff, 0xff, + 0x35, 0x86, 0xdd, 0xee, 0x9c, 0x0e, 0x00, 0x00, } func (m *DelegatorWithdrawInfo) Marshal() (dAtA []byte, err error) { diff --git a/x/distribution/types/query.pb.go b/x/distribution/types/query.pb.go index 47acd5e73c52..b6a794bfbf45 100644 --- a/x/distribution/types/query.pb.go +++ b/x/distribution/types/query.pb.go @@ -6,6 +6,7 @@ package types import ( context "context" fmt "fmt" + _ "github.com/cosmos/cosmos-proto" github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" types "github.com/cosmos/cosmos-sdk/types" query "github.com/cosmos/cosmos-sdk/types/query" @@ -864,76 +865,78 @@ func init() { } var fileDescriptor_5efd02cbc06efdc9 = []byte{ - // 1101 bytes of a gzipped FileDescriptorProto + // 1129 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x98, 0xcf, 0x6f, 0x1b, 0x45, - 0x14, 0xc7, 0x3d, 0x6e, 0xda, 0xd2, 0x57, 0x4a, 0xd2, 0x69, 0x85, 0xcc, 0x26, 0xd8, 0xd1, 0x86, - 0x92, 0x40, 0x54, 0x6f, 0x93, 0x48, 0x05, 0x5a, 0x10, 0xe4, 0x57, 0xa9, 0xd4, 0x2a, 0x4d, 0x4d, - 0x95, 0x84, 0x5f, 0x8a, 0x26, 0xde, 0xd1, 0x7a, 0x55, 0x7b, 0xc7, 0xdd, 0x19, 0x27, 0x44, 0x55, - 0x2f, 0x04, 0x24, 0x2e, 0x48, 0x48, 0x5c, 0x7a, 0xcc, 0x99, 0x3b, 0x17, 0xfe, 0x82, 0x1e, 0x2b, - 0x21, 0xa1, 0x9e, 0x00, 0x25, 0x08, 0x55, 0x42, 0x9c, 0xb9, 0x22, 0xcf, 0xcc, 0xda, 0xbb, 0xf6, - 0x7a, 0xfd, 0x4b, 0x3d, 0xc5, 0x7a, 0x3b, 0xef, 0x3b, 0xef, 0xf3, 0x66, 0xde, 0xbc, 0xa7, 0xc0, - 0x74, 0x91, 0xf1, 0x0a, 0xe3, 0x96, 0xed, 0x72, 0xe1, 0xbb, 0x3b, 0x35, 0xe1, 0x32, 0xcf, 0xda, - 0x9d, 0xdb, 0xa1, 0x82, 0xcc, 0x59, 0x0f, 0x6a, 0xd4, 0xdf, 0xcf, 0x57, 0x7d, 0x26, 0x18, 0x1e, - 0x57, 0x0b, 0xf3, 0xe1, 0x85, 0x79, 0xbd, 0xd0, 0x78, 0x5b, 0xab, 0xec, 0x10, 0x4e, 0x95, 0x57, - 0x43, 0xa3, 0x4a, 0x1c, 0xd7, 0x23, 0x72, 0xb5, 0x14, 0x32, 0x2e, 0x3a, 0xcc, 0x61, 0xf2, 0xa7, - 0x55, 0xff, 0xa5, 0xad, 0x13, 0x0e, 0x63, 0x4e, 0x99, 0x5a, 0xa4, 0xea, 0x5a, 0xc4, 0xf3, 0x98, - 0x90, 0x2e, 0x5c, 0x7f, 0xcd, 0x86, 0xf5, 0x03, 0xe5, 0x22, 0x73, 0x03, 0xcd, 0x7c, 0x12, 0x45, - 0x24, 0x62, 0xb9, 0xde, 0xbc, 0x08, 0xf8, 0x6e, 0x3d, 0xca, 0x75, 0xe2, 0x93, 0x0a, 0x2f, 0xd0, - 0x07, 0x35, 0xca, 0x85, 0xb9, 0x05, 0x17, 0x22, 0x56, 0x5e, 0x65, 0x1e, 0xa7, 0x78, 0x11, 0x4e, - 0x55, 0xa5, 0x25, 0x83, 0x26, 0xd1, 0xcc, 0xd9, 0xf9, 0xa9, 0x7c, 0x42, 0x2a, 0xf2, 0xca, 0x79, - 0x69, 0xe4, 0xc9, 0xef, 0xb9, 0x54, 0x41, 0x3b, 0x9a, 0x1b, 0x30, 0x2d, 0x95, 0x37, 0x48, 0xd9, - 0xb5, 0x89, 0x60, 0xfe, 0x9d, 0x9a, 0xe0, 0x82, 0x78, 0xb6, 0xeb, 0x39, 0x05, 0xba, 0x47, 0x7c, - 0x3b, 0x08, 0x02, 0xcf, 0xc2, 0xf9, 0xdd, 0x60, 0xd5, 0x36, 0xb1, 0x6d, 0x9f, 0x72, 0xb5, 0xf1, - 0x99, 0xc2, 0x58, 0xe3, 0xc3, 0xa2, 0xb2, 0x9b, 0xdf, 0x20, 0x98, 0xe9, 0x2e, 0xac, 0x39, 0xb6, - 0xe0, 0xb4, 0xaf, 0x4c, 0x1a, 0xe4, 0xdd, 0x44, 0x90, 0x04, 0x49, 0x4d, 0x17, 0xc8, 0x99, 0x6b, - 0x90, 0x8b, 0x46, 0xb1, 0xcc, 0x2a, 0x15, 0x97, 0x73, 0x97, 0x79, 0x03, 0x61, 0x7d, 0x8b, 0x60, - 0xb2, 0xb3, 0xa0, 0xc6, 0x21, 0x00, 0xc5, 0x86, 0x55, 0x13, 0x5d, 0xef, 0x8d, 0x68, 0xb1, 0x58, - 0xac, 0x55, 0x6a, 0x65, 0x22, 0xa8, 0xdd, 0x14, 0xd6, 0x50, 0x21, 0x51, 0xf3, 0x1f, 0x04, 0x13, - 0xd1, 0x38, 0x3e, 0x29, 0x13, 0x5e, 0xa2, 0x03, 0x1d, 0x16, 0x9e, 0x86, 0x51, 0x2e, 0x88, 0x2f, - 0x5c, 0xcf, 0xd9, 0x2e, 0x51, 0xd7, 0x29, 0x89, 0x4c, 0x7a, 0x12, 0xcd, 0x8c, 0x14, 0x5e, 0x09, - 0xcc, 0x37, 0xa5, 0x15, 0x4f, 0xc1, 0x39, 0x2a, 0xd3, 0x1d, 0x2c, 0x3b, 0x21, 0x97, 0xbd, 0xac, - 0x8c, 0x7a, 0xd1, 0x0d, 0x80, 0x66, 0x69, 0x65, 0x46, 0x24, 0xfe, 0x9b, 0x01, 0x7e, 0xbd, 0x4e, - 0xf2, 0xaa, 0x7a, 0x9b, 0xf7, 0xd2, 0xa1, 0x3a, 0xec, 0x42, 0xc8, 0xf3, 0xda, 0x4b, 0xdf, 0x1d, - 0xe6, 0x52, 0x8f, 0x0f, 0x73, 0xc8, 0xfc, 0x05, 0xc1, 0xeb, 0x1d, 0x68, 0x75, 0xca, 0xd7, 0xe1, - 0x34, 0x57, 0xa6, 0x0c, 0x9a, 0x3c, 0x31, 0x73, 0x76, 0xfe, 0x4a, 0x6f, 0xf9, 0x96, 0x3a, 0xab, - 0xbb, 0xd4, 0x13, 0xc1, 0xcd, 0xd1, 0x32, 0xf8, 0xe3, 0x08, 0x45, 0x5a, 0x52, 0x4c, 0x77, 0xa5, - 0x50, 0xe1, 0x84, 0x31, 0xcc, 0x83, 0x20, 0xf8, 0x15, 0x5a, 0xa6, 0x8e, 0xb4, 0xb5, 0x17, 0x96, - 0xad, 0xbe, 0xb5, 0x9f, 0x55, 0xe3, 0x43, 0x70, 0x56, 0xb1, 0x07, 0x9b, 0x8e, 0x3f, 0x58, 0x95, - 0xc2, 0xe7, 0x87, 0xb9, 0x94, 0xf9, 0x3d, 0x82, 0x6c, 0xa7, 0x28, 0x74, 0x0e, 0xef, 0x87, 0xab, - 0xb0, 0x9e, 0xc3, 0x89, 0x08, 0x6e, 0x00, 0xba, 0x42, 0x8b, 0xcb, 0xcc, 0xf5, 0x96, 0x16, 0xea, - 0xf9, 0xfa, 0xe9, 0x8f, 0xdc, 0xac, 0xe3, 0x8a, 0x52, 0x6d, 0x27, 0x5f, 0x64, 0x15, 0x4b, 0x3f, - 0x76, 0xea, 0xcf, 0x65, 0x6e, 0xdf, 0xb7, 0xc4, 0x7e, 0x95, 0xf2, 0xc0, 0x87, 0x37, 0x0b, 0xf3, - 0x73, 0x30, 0x5b, 0xc2, 0xb9, 0xc7, 0x04, 0x29, 0x0f, 0x91, 0x99, 0x10, 0xec, 0xdf, 0x08, 0xa6, - 0x12, 0xd5, 0x35, 0xf1, 0x46, 0x2b, 0xf1, 0xd5, 0xc4, 0x5b, 0xd3, 0x54, 0x5b, 0x09, 0xf6, 0x56, - 0x8a, 0x2d, 0xaf, 0x0e, 0x76, 0xe0, 0xa4, 0xa8, 0xef, 0x97, 0x49, 0xbf, 0xa8, 0x3c, 0x2a, 0x7d, - 0x73, 0x4b, 0x3f, 0x6f, 0x8d, 0x78, 0x1a, 0x17, 0x7b, 0xd8, 0x14, 0xde, 0xd6, 0xef, 0x5c, 0xac, - 0xb2, 0x4e, 0x5f, 0x16, 0xa0, 0x71, 0xe3, 0x54, 0x06, 0xcf, 0x14, 0x42, 0x96, 0x90, 0xda, 0x97, - 0xf0, 0x46, 0x54, 0x6d, 0xd3, 0x15, 0x25, 0xdb, 0x27, 0x7b, 0x7a, 0xe3, 0x21, 0x83, 0xfd, 0x02, - 0x2e, 0x75, 0x91, 0xd7, 0x11, 0xbf, 0x05, 0x63, 0x7b, 0xfa, 0x53, 0x8b, 0xfc, 0xe8, 0x5e, 0xd4, - 0x25, 0xa4, 0x3e, 0x0e, 0xaf, 0x49, 0xf5, 0xfa, 0x83, 0x5c, 0xf3, 0x5c, 0xb1, 0xbf, 0xce, 0x58, - 0x39, 0xe8, 0xcc, 0x07, 0x08, 0x8c, 0xb8, 0xaf, 0x7a, 0x43, 0x0a, 0x23, 0x55, 0xc6, 0xca, 0x2f, - 0xae, 0xa0, 0xa4, 0xfc, 0xfc, 0xb3, 0x51, 0x38, 0x29, 0xa3, 0xc0, 0x8f, 0x11, 0x9c, 0x52, 0x8d, - 0x1e, 0x5b, 0x89, 0x97, 0xb9, 0x7d, 0xca, 0x30, 0xae, 0xf4, 0xee, 0xa0, 0xf0, 0xcc, 0xd9, 0xaf, - 0x7f, 0xfd, 0xeb, 0xc7, 0xf4, 0x25, 0x3c, 0x65, 0x25, 0x8d, 0x39, 0x6a, 0xd4, 0xc0, 0x07, 0x69, - 0x18, 0x4f, 0x68, 0xdd, 0x78, 0xa5, 0xfb, 0xf6, 0xdd, 0xa7, 0x14, 0x63, 0x75, 0x48, 0x15, 0x4d, - 0xb6, 0x29, 0xc9, 0xee, 0xe2, 0x3b, 0x89, 0x64, 0xcd, 0xcb, 0x6e, 0x3d, 0x6c, 0x7b, 0x95, 0x1f, - 0x59, 0xac, 0xa9, 0xbf, 0x1d, 0xbc, 0x0d, 0x47, 0x08, 0x2e, 0xc4, 0x0c, 0x0f, 0xf8, 0xfd, 0x3e, - 0xe2, 0x6e, 0x1b, 0x62, 0x8c, 0x0f, 0x06, 0xf4, 0xd6, 0xb4, 0x6b, 0x92, 0xf6, 0x26, 0xbe, 0x31, - 0x0c, 0x6d, 0x73, 0x3c, 0xc1, 0xbf, 0x21, 0x18, 0x6b, 0xed, 0xd5, 0xf8, 0xbd, 0x3e, 0x62, 0x8c, - 0x4e, 0x33, 0xc6, 0xb5, 0x41, 0x5c, 0x35, 0xdb, 0x2d, 0xc9, 0xb6, 0x8a, 0x97, 0x87, 0x61, 0x0b, - 0xa6, 0x82, 0x7f, 0x11, 0x9c, 0x6f, 0xeb, 0xa0, 0xb8, 0x87, 0xf0, 0x3a, 0x35, 0x7f, 0xe3, 0xfa, - 0x40, 0xbe, 0x9a, 0x6d, 0x5b, 0xb2, 0x7d, 0x8a, 0x37, 0x13, 0xd9, 0x1a, 0x2f, 0x27, 0xb7, 0x1e, - 0xb6, 0x3d, 0xaf, 0x8f, 0x2c, 0x7d, 0x33, 0xe3, 0xb8, 0xf1, 0x73, 0x04, 0xaf, 0xc6, 0x37, 0x51, - 0xfc, 0x61, 0x3f, 0x81, 0xc7, 0x34, 0x77, 0xe3, 0xa3, 0xc1, 0x05, 0xfa, 0x3a, 0xda, 0xde, 0xf0, - 0x65, 0x61, 0xc6, 0x74, 0xbb, 0x5e, 0x0a, 0xb3, 0x73, 0xfb, 0xed, 0xa5, 0x30, 0x13, 0x5a, 0x6c, - 0x8f, 0x85, 0xd9, 0x85, 0xb0, 0x79, 0xb7, 0xf1, 0x7f, 0x08, 0x32, 0x9d, 0xba, 0x24, 0x5e, 0xec, - 0x23, 0xd6, 0xf8, 0x06, 0x6e, 0x2c, 0x0d, 0x23, 0xa1, 0x99, 0xef, 0x49, 0xe6, 0x35, 0x7c, 0x7b, - 0x18, 0xe6, 0xd6, 0x36, 0x8f, 0x7f, 0x46, 0x70, 0x2e, 0xd2, 0xa3, 0xf1, 0xd5, 0xee, 0xb1, 0xc6, - 0xb5, 0x7c, 0xe3, 0x9d, 0xbe, 0xfd, 0x34, 0xd8, 0x82, 0x04, 0xbb, 0x8c, 0x67, 0x13, 0xc1, 0x8a, - 0x81, 0xef, 0x76, 0xbd, 0xb5, 0x2f, 0xdd, 0x7a, 0x72, 0x94, 0x45, 0x4f, 0x8f, 0xb2, 0xe8, 0xcf, - 0xa3, 0x2c, 0xfa, 0xe1, 0x38, 0x9b, 0x7a, 0x7a, 0x9c, 0x4d, 0x3d, 0x3b, 0xce, 0xa6, 0x3e, 0x9b, - 0x4b, 0x9c, 0x13, 0xbe, 0x8a, 0xaa, 0xcb, 0xb1, 0x61, 0xe7, 0x94, 0xfc, 0x27, 0xc3, 0xc2, 0xff, - 0x01, 0x00, 0x00, 0xff, 0xff, 0x68, 0x0b, 0x91, 0xae, 0x5c, 0x11, 0x00, 0x00, + 0x14, 0xc7, 0x3d, 0x6e, 0x9a, 0xd2, 0x57, 0x4a, 0xd2, 0x69, 0x84, 0xdc, 0x4d, 0xb0, 0xa3, 0x0d, + 0x25, 0x11, 0x51, 0xbc, 0x4d, 0x22, 0x15, 0x68, 0x41, 0x90, 0x5f, 0xa5, 0x52, 0xab, 0x36, 0x75, + 0xab, 0xa6, 0x70, 0xb1, 0xd6, 0xde, 0xd1, 0x7a, 0x55, 0x7b, 0xc7, 0xdd, 0x19, 0xc7, 0x44, 0x55, + 0x2f, 0x94, 0x4a, 0x5c, 0x90, 0x90, 0xb8, 0xf4, 0x98, 0x33, 0x67, 0x10, 0x12, 0x7f, 0x41, 0x8f, + 0x15, 0x48, 0xa8, 0x27, 0x40, 0x09, 0x42, 0xbd, 0x70, 0xe6, 0x5a, 0x79, 0x66, 0xd6, 0xde, 0xb5, + 0xd7, 0x6b, 0x3b, 0xae, 0x4f, 0x75, 0x67, 0xe7, 0x7d, 0xdf, 0xfb, 0xbc, 0x99, 0x37, 0xef, 0x29, + 0x30, 0x5f, 0xa4, 0xac, 0x42, 0x99, 0x61, 0x39, 0x8c, 0x7b, 0x4e, 0xa1, 0xc6, 0x1d, 0xea, 0x1a, + 0xbb, 0xcb, 0x05, 0xc2, 0xcd, 0x65, 0xe3, 0x41, 0x8d, 0x78, 0x7b, 0xd9, 0xaa, 0x47, 0x39, 0xc5, + 0xd3, 0x72, 0x63, 0x36, 0xb8, 0x31, 0xab, 0x36, 0x6a, 0xef, 0x2b, 0x95, 0x82, 0xc9, 0x88, 0xb4, + 0x6a, 0x6a, 0x54, 0x4d, 0xdb, 0x71, 0x4d, 0xb1, 0x5b, 0x08, 0x69, 0x53, 0x36, 0xb5, 0xa9, 0xf8, + 0x69, 0x34, 0x7e, 0xa9, 0xd5, 0x19, 0x9b, 0x52, 0xbb, 0x4c, 0x0c, 0xb3, 0xea, 0x18, 0xa6, 0xeb, + 0x52, 0x2e, 0x4c, 0x98, 0xfa, 0x9a, 0x0e, 0xea, 0xfb, 0xca, 0x45, 0xea, 0xf8, 0x9a, 0xd9, 0x38, + 0x8a, 0x50, 0xc4, 0x72, 0xff, 0x39, 0xb9, 0x3f, 0x2f, 0xc3, 0x50, 0x64, 0xe2, 0x3f, 0xfa, 0x14, + 0xe0, 0x5b, 0x0d, 0x80, 0x6d, 0xd3, 0x33, 0x2b, 0x2c, 0x47, 0x1e, 0xd4, 0x08, 0xe3, 0xfa, 0x3d, + 0x38, 0x1b, 0x5a, 0x65, 0x55, 0xea, 0x32, 0x82, 0xd7, 0x60, 0xbc, 0x2a, 0x56, 0x52, 0x68, 0x16, + 0x2d, 0x9c, 0x5a, 0x99, 0xcb, 0xc6, 0x64, 0x29, 0x2b, 0x8d, 0xd7, 0xc7, 0x9e, 0xfd, 0x99, 0x49, + 0xe4, 0x94, 0xa1, 0x5e, 0x85, 0x79, 0xa1, 0x7c, 0xd7, 0x2c, 0x3b, 0x96, 0xc9, 0xa9, 0x77, 0xb3, + 0xc6, 0x19, 0x37, 0x5d, 0xcb, 0x71, 0xed, 0x1c, 0xa9, 0x9b, 0x9e, 0xe5, 0x07, 0x81, 0xb7, 0xe0, + 0xcc, 0xae, 0xbf, 0x2b, 0x6f, 0x5a, 0x96, 0x47, 0x98, 0x74, 0x7c, 0x72, 0x3d, 0xf5, 0xdb, 0x4f, + 0x4b, 0x53, 0xca, 0xf7, 0x9a, 0xfc, 0x72, 0x9b, 0x7b, 0x0d, 0x89, 0xc9, 0xa6, 0x89, 0x5a, 0xd7, + 0xbf, 0x41, 0xb0, 0xd0, 0xdb, 0xa5, 0x22, 0xbc, 0x07, 0x27, 0x3c, 0xb9, 0xa4, 0x10, 0x3f, 0x8c, + 0x45, 0x8c, 0x91, 0x54, 0xdc, 0xbe, 0x9c, 0x5e, 0x82, 0x4c, 0x38, 0x8a, 0x0d, 0x5a, 0xa9, 0x38, + 0x8c, 0x39, 0xd4, 0x7d, 0xcd, 0xc0, 0x4f, 0x10, 0xcc, 0x76, 0x77, 0xa5, 0x40, 0x4d, 0x80, 0x62, + 0x73, 0x55, 0xb1, 0x5e, 0xee, 0x8f, 0x75, 0xad, 0x58, 0xac, 0x55, 0x6a, 0x65, 0x93, 0x13, 0xab, + 0x25, 0xac, 0x70, 0x03, 0xa2, 0xfa, 0x93, 0x24, 0xcc, 0x84, 0xe3, 0xb8, 0x5d, 0x36, 0x59, 0x89, + 0xbc, 0xe6, 0x03, 0xc6, 0xf3, 0x30, 0xc1, 0xb8, 0xe9, 0x71, 0xc7, 0xb5, 0xf3, 0x25, 0xe2, 0xd8, + 0x25, 0x9e, 0x4a, 0xce, 0xa2, 0x85, 0xb1, 0xdc, 0x5b, 0xfe, 0xf2, 0x55, 0xb1, 0x8a, 0xe7, 0xe0, + 0x34, 0x11, 0x47, 0xe4, 0x6f, 0x3b, 0x26, 0xb6, 0xbd, 0x29, 0x17, 0xd5, 0xa6, 0x2b, 0x00, 0xad, + 0x1a, 0x4e, 0x8d, 0x89, 0xc4, 0xbc, 0xe7, 0x27, 0xa6, 0x51, 0x90, 0x59, 0xf9, 0x4c, 0xb4, 0x6e, + 0xb9, 0x4d, 0x14, 0x50, 0x2e, 0x60, 0x79, 0xe9, 0x8d, 0x6f, 0xf7, 0x33, 0x89, 0xa7, 0xfb, 0x19, + 0xa4, 0xff, 0x8a, 0xe0, 0x9d, 0x2e, 0x79, 0x50, 0x87, 0xb1, 0x0d, 0x27, 0x98, 0x5c, 0x4a, 0xa1, + 0xd9, 0x63, 0x0b, 0xa7, 0x56, 0x2e, 0xf4, 0x77, 0x12, 0x42, 0x67, 0x6b, 0x97, 0xb8, 0xdc, 0xbf, + 0x6d, 0x4a, 0x06, 0x7f, 0x1e, 0xa2, 0x48, 0x0a, 0x8a, 0xf9, 0x9e, 0x14, 0x32, 0x9c, 0x20, 0x86, + 0xfe, 0x8b, 0x1f, 0xfc, 0x26, 0x29, 0x13, 0x5b, 0xac, 0x75, 0x96, 0xa9, 0x25, 0xbf, 0x0d, 0x72, + 0x8a, 0x4d, 0x13, 0xff, 0x14, 0x23, 0x2f, 0x43, 0x72, 0xd0, 0xcb, 0x20, 0xd3, 0xfe, 0x72, 0x3f, + 0x93, 0xd0, 0xbf, 0x43, 0x90, 0xee, 0x16, 0xb9, 0xca, 0xfb, 0xfd, 0x60, 0xb5, 0x37, 0xf2, 0x3e, + 0x13, 0x4a, 0x91, 0x9f, 0x9c, 0x4d, 0x52, 0xdc, 0xa0, 0x8e, 0xbb, 0xbe, 0xda, 0xc8, 0xf1, 0x8f, + 0x7f, 0x65, 0x16, 0x6d, 0x87, 0x97, 0x6a, 0x85, 0x6c, 0x91, 0x56, 0xd4, 0x63, 0xaa, 0xfe, 0x59, + 0x62, 0xd6, 0x7d, 0x83, 0xef, 0x55, 0x09, 0xf3, 0x6d, 0x58, 0xeb, 0x01, 0xa8, 0x81, 0xde, 0x16, + 0xce, 0x1d, 0xca, 0xcd, 0xf2, 0x48, 0xb2, 0x19, 0x48, 0xc3, 0xbf, 0x08, 0xe6, 0x62, 0xfd, 0xaa, + 0x5c, 0xdc, 0x6d, 0xcf, 0xc5, 0xc5, 0xd8, 0x3b, 0xd8, 0x52, 0xdb, 0xf4, 0x7d, 0x4b, 0xc5, 0xb6, + 0x77, 0x0f, 0xdb, 0x70, 0x9c, 0x37, 0xfc, 0xa5, 0x92, 0xa3, 0xca, 0xb0, 0xd4, 0xd7, 0x3d, 0xf5, + 0xc0, 0x36, 0xe3, 0x69, 0x96, 0xc9, 0xe8, 0x92, 0x7b, 0x5d, 0xbd, 0xb4, 0x91, 0x3e, 0x55, 0x62, + 0xd3, 0x00, 0xcd, 0x5b, 0x2a, 0x73, 0x7b, 0x32, 0x17, 0x58, 0x09, 0xa8, 0xd5, 0xe1, 0xdd, 0xb0, + 0xda, 0x8e, 0xc3, 0x4b, 0x96, 0x67, 0xd6, 0x95, 0xe3, 0x91, 0x61, 0xec, 0xc2, 0xf9, 0x1e, 0x8e, + 0x15, 0xcb, 0x06, 0x4c, 0xd6, 0xd5, 0xa7, 0xbe, 0x1d, 0x4f, 0xd4, 0xc3, 0x62, 0x01, 0xbf, 0xd3, + 0x70, 0x4e, 0xf8, 0x6d, 0xb4, 0x91, 0x9a, 0xeb, 0xf0, 0xbd, 0x6d, 0x4a, 0xcb, 0xfe, 0x0c, 0xf2, + 0x18, 0x81, 0x16, 0xf5, 0x55, 0x85, 0x42, 0x60, 0xac, 0x4a, 0x69, 0x79, 0x74, 0x85, 0x2b, 0xe4, + 0x57, 0x5e, 0x4c, 0xc0, 0x71, 0x11, 0x05, 0x7e, 0x8a, 0x60, 0x5c, 0x8e, 0x34, 0xd8, 0x88, 0x2d, + 0x8d, 0xce, 0x79, 0x4a, 0xbb, 0xd0, 0xbf, 0x81, 0xc4, 0xd3, 0x17, 0xbf, 0xfe, 0xfd, 0x9f, 0x1f, + 0x92, 0xe7, 0xf1, 0x9c, 0x11, 0x37, 0xeb, 0xc9, 0xa1, 0x0a, 0x3f, 0x4e, 0xc2, 0x74, 0xcc, 0x28, + 0x82, 0x37, 0x7b, 0xbb, 0xef, 0x3d, 0x8f, 0x69, 0x5b, 0x43, 0xaa, 0x28, 0xb2, 0x1d, 0x41, 0x76, + 0x0b, 0xdf, 0x8c, 0x25, 0x6b, 0x15, 0x88, 0xf1, 0xb0, 0xa3, 0x2f, 0x3c, 0x32, 0x68, 0x4b, 0x3f, + 0xef, 0xbf, 0x34, 0x07, 0x08, 0xce, 0x46, 0x8c, 0x3c, 0xf8, 0xe3, 0x01, 0xe2, 0xee, 0x18, 0xca, + 0xb4, 0x4f, 0x8e, 0x68, 0xad, 0x68, 0x6f, 0x08, 0xda, 0xab, 0xf8, 0xca, 0x30, 0xb4, 0xad, 0xa1, + 0x0a, 0xff, 0x81, 0x60, 0xb2, 0x7d, 0x8e, 0xc0, 0x1f, 0x0d, 0x10, 0x63, 0x78, 0x06, 0xd3, 0x2e, + 0x1d, 0xc5, 0x54, 0xb1, 0x5d, 0x13, 0x6c, 0x5b, 0x78, 0x63, 0x18, 0x36, 0x7f, 0x62, 0xf9, 0x0f, + 0xc1, 0x99, 0x8e, 0x4e, 0x8d, 0xfb, 0x08, 0xaf, 0xdb, 0x60, 0xa2, 0x5d, 0x3e, 0x92, 0xad, 0x62, + 0xcb, 0x0b, 0xb6, 0x2f, 0xf0, 0x4e, 0x2c, 0x5b, 0xf3, 0x4d, 0x65, 0xc6, 0xc3, 0x8e, 0x27, 0xf9, + 0x91, 0xa1, 0x6e, 0x66, 0x14, 0x37, 0x7e, 0x89, 0xe0, 0xed, 0xe8, 0x96, 0x8c, 0x3f, 0x1d, 0x24, + 0xf0, 0x88, 0x21, 0x42, 0xfb, 0xec, 0xe8, 0x02, 0x03, 0x1d, 0x6d, 0x7f, 0xf8, 0xa2, 0x30, 0x23, + 0x3a, 0x64, 0x3f, 0x85, 0xd9, 0xbd, 0x99, 0xf7, 0x53, 0x98, 0x31, 0x6d, 0xb9, 0xcf, 0xc2, 0xec, + 0x41, 0xd8, 0xba, 0xdb, 0xf8, 0x7f, 0x04, 0xa9, 0x6e, 0xfd, 0x13, 0xaf, 0x0d, 0x10, 0x6b, 0x74, + 0xd3, 0xd7, 0xd6, 0x87, 0x91, 0x50, 0xcc, 0x77, 0x04, 0xf3, 0x0d, 0x7c, 0x7d, 0x18, 0xe6, 0xf6, + 0x01, 0x00, 0xff, 0x8c, 0xe0, 0x74, 0xa8, 0x47, 0xe3, 0x8b, 0xbd, 0x63, 0x8d, 0x6a, 0xf9, 0xda, + 0x07, 0x03, 0xdb, 0x29, 0xb0, 0x55, 0x01, 0xb6, 0x84, 0x17, 0x63, 0xc1, 0x8a, 0xbe, 0x6d, 0xbe, + 0xd1, 0xda, 0xd7, 0xaf, 0x3d, 0x3b, 0x48, 0xa3, 0xe7, 0x07, 0x69, 0xf4, 0xf7, 0x41, 0x1a, 0x7d, + 0x7f, 0x98, 0x4e, 0x3c, 0x3f, 0x4c, 0x27, 0x5e, 0x1c, 0xa6, 0x13, 0x5f, 0x2e, 0xc7, 0xce, 0x09, + 0x5f, 0x85, 0xd5, 0xc5, 0xd8, 0x50, 0x18, 0x17, 0x7f, 0x4e, 0x59, 0x7d, 0x15, 0x00, 0x00, 0xff, + 0xff, 0xc6, 0xc9, 0xca, 0xd1, 0x61, 0x12, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/distribution/types/tx.pb.go b/x/distribution/types/tx.pb.go index 55cfce4e78f4..2d91bcbfb04b 100644 --- a/x/distribution/types/tx.pb.go +++ b/x/distribution/types/tx.pb.go @@ -6,6 +6,7 @@ package types import ( context "context" fmt "fmt" + _ "github.com/cosmos/cosmos-proto" github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" types "github.com/cosmos/cosmos-sdk/types" _ "github.com/gogo/protobuf/gogoproto" @@ -355,42 +356,44 @@ func init() { } var fileDescriptor_ed4f433d965e58ca = []byte{ - // 558 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x95, 0x3f, 0x6f, 0xd3, 0x40, - 0x18, 0xc6, 0x7d, 0x2d, 0xaa, 0xe8, 0x31, 0x90, 0x58, 0x45, 0x0d, 0x4e, 0x38, 0x57, 0x56, 0x85, - 0xb2, 0x60, 0x93, 0x30, 0x20, 0xc2, 0x80, 0x48, 0x50, 0xa5, 0x0e, 0x11, 0xc8, 0x48, 0x20, 0xb1, - 0x20, 0x3b, 0x77, 0x72, 0x4f, 0xc4, 0xbe, 0xc8, 0x77, 0x6e, 0x9a, 0x11, 0x89, 0x81, 0x11, 0x89, - 0x0f, 0x40, 0x25, 0x16, 0xc4, 0xcc, 0xc8, 0x07, 0xc8, 0xd8, 0x91, 0x29, 0xa0, 0x64, 0x61, 0xee, - 0x27, 0x40, 0xf1, 0x3f, 0x92, 0xda, 0x49, 0x29, 0xe9, 0x94, 0xe8, 0xbd, 0xe7, 0xf9, 0xf9, 0x79, - 0x95, 0xe7, 0x62, 0xb8, 0xdb, 0x61, 0xdc, 0x65, 0xdc, 0xc0, 0x94, 0x0b, 0x9f, 0xda, 0x81, 0xa0, - 0xcc, 0x33, 0x0e, 0x6b, 0x36, 0x11, 0x56, 0xcd, 0x10, 0x47, 0x7a, 0xcf, 0x67, 0x82, 0xc9, 0xe5, - 0x48, 0xa5, 0xcf, 0xaa, 0xf4, 0x58, 0xa5, 0x6c, 0x39, 0xcc, 0x61, 0xa1, 0xce, 0x98, 0x7e, 0x8b, - 0x2c, 0x0a, 0x8a, 0xc1, 0xb6, 0xc5, 0x49, 0x0a, 0xec, 0x30, 0xea, 0x45, 0xe7, 0xda, 0x37, 0x00, - 0x6f, 0xb4, 0xb9, 0xf3, 0x9c, 0x88, 0x97, 0x54, 0x1c, 0x60, 0xdf, 0xea, 0x3f, 0xc6, 0xd8, 0x27, - 0x9c, 0xcb, 0xfb, 0xb0, 0x88, 0x49, 0x97, 0x38, 0x96, 0x60, 0xfe, 0x6b, 0x2b, 0x1a, 0x96, 0xc0, - 0x0e, 0xa8, 0x6e, 0x36, 0x2b, 0xa7, 0x23, 0xb5, 0x34, 0xb0, 0xdc, 0x6e, 0x43, 0xcb, 0x48, 0x34, - 0xb3, 0x90, 0xce, 0x12, 0xd4, 0x1e, 0x2c, 0xf4, 0x63, 0x7a, 0x4a, 0x5a, 0x0b, 0x49, 0xe5, 0xd3, - 0x91, 0xba, 0x1d, 0x91, 0xce, 0x2a, 0x34, 0xf3, 0x7a, 0x7f, 0x3e, 0x52, 0xe3, 0xea, 0xfb, 0x63, - 0x55, 0xfa, 0x7d, 0xac, 0x4a, 0x9a, 0x0a, 0x6f, 0xe5, 0xa6, 0x36, 0x09, 0xef, 0x31, 0x8f, 0x13, - 0xed, 0x3b, 0x80, 0x4a, 0x9b, 0x3b, 0xc9, 0xf1, 0x93, 0x24, 0x92, 0x49, 0xfa, 0x96, 0x8f, 0x2f, - 0x73, 0xb9, 0x7d, 0x58, 0x3c, 0xb4, 0xba, 0x14, 0xcf, 0xa1, 0xd6, 0xce, 0xa2, 0x32, 0x12, 0xcd, - 0x2c, 0xa4, 0xb3, 0xec, 0x7e, 0xbb, 0x50, 0x5b, 0x9c, 0x3e, 0x5d, 0x32, 0x80, 0x68, 0x46, 0xf5, - 0x22, 0xc1, 0xb5, 0x98, 0xeb, 0x52, 0xce, 0x29, 0xf3, 0xf2, 0xc3, 0x81, 0x15, 0xc3, 0x55, 0xe1, - 0xed, 0xe5, 0x8f, 0x4d, 0x03, 0x7e, 0x06, 0x70, 0xab, 0xcd, 0x9d, 0xbd, 0xc0, 0xc3, 0xd3, 0xd3, - 0xc0, 0xa3, 0x62, 0xf0, 0x8c, 0xb1, 0xae, 0xdc, 0x81, 0x1b, 0x96, 0xcb, 0x02, 0x4f, 0x94, 0xc0, - 0xce, 0x7a, 0xf5, 0x5a, 0xfd, 0xa6, 0x1e, 0x57, 0x7b, 0xda, 0xd3, 0xa4, 0xd2, 0x7a, 0x8b, 0x51, - 0xaf, 0x79, 0x77, 0x38, 0x52, 0xa5, 0xaf, 0x3f, 0xd5, 0xaa, 0x43, 0xc5, 0x41, 0x60, 0xeb, 0x1d, - 0xe6, 0x1a, 0x71, 0xa9, 0xa3, 0x8f, 0x3b, 0x1c, 0xbf, 0x31, 0xc4, 0xa0, 0x47, 0x78, 0x68, 0xe0, - 0x66, 0x8c, 0x96, 0x2b, 0x70, 0x13, 0x93, 0x1e, 0xe3, 0x54, 0x30, 0x3f, 0xfa, 0x45, 0xcc, 0xbf, - 0x83, 0x99, 0x7d, 0x10, 0xac, 0xe4, 0x85, 0x4c, 0xb6, 0xa8, 0x0f, 0xaf, 0xc0, 0xf5, 0x36, 0x77, - 0xe4, 0x77, 0x00, 0xca, 0x39, 0x17, 0xa5, 0xae, 0x2f, 0xb9, 0x96, 0x7a, 0x6e, 0x4d, 0x95, 0xc6, - 0xc5, 0x3d, 0x49, 0x1c, 0xf9, 0x23, 0x80, 0xdb, 0x8b, 0x7a, 0x7d, 0xff, 0x3c, 0xee, 0x02, 0xa3, - 0xf2, 0xe8, 0x3f, 0x8d, 0x69, 0xaa, 0x4f, 0x00, 0x96, 0x97, 0x35, 0xf1, 0xe1, 0xbf, 0x3e, 0x20, - 0xc7, 0xac, 0xb4, 0x56, 0x30, 0xa7, 0x09, 0xdf, 0x02, 0x58, 0xcc, 0x36, 0xb1, 0x76, 0x1e, 0x3a, - 0x63, 0x51, 0x1e, 0x5c, 0xd8, 0x92, 0x64, 0x68, 0x3e, 0xfd, 0x32, 0x46, 0x60, 0x38, 0x46, 0xe0, - 0x64, 0x8c, 0xc0, 0xaf, 0x31, 0x02, 0x1f, 0x26, 0x48, 0x3a, 0x99, 0x20, 0xe9, 0xc7, 0x04, 0x49, - 0xaf, 0x6a, 0x4b, 0x2b, 0x7e, 0x34, 0xff, 0x76, 0x08, 0x1b, 0x6f, 0x6f, 0x84, 0x7f, 0xe3, 0xf7, - 0xfe, 0x04, 0x00, 0x00, 0xff, 0xff, 0xd2, 0x18, 0x71, 0xb0, 0x41, 0x06, 0x00, 0x00, + // 584 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x55, 0x3f, 0x6f, 0xd3, 0x40, + 0x14, 0xf7, 0xb5, 0xa8, 0xa2, 0xc7, 0x40, 0x63, 0x05, 0x35, 0x75, 0xe1, 0x5c, 0x59, 0x15, 0xca, + 0x52, 0x87, 0xa4, 0x08, 0x44, 0x18, 0x10, 0x09, 0x62, 0x8b, 0x40, 0xa9, 0x04, 0x12, 0x03, 0xd5, + 0x25, 0x77, 0x72, 0x4f, 0xc4, 0xbe, 0xc8, 0x77, 0x69, 0x9a, 0x11, 0x89, 0x81, 0x05, 0x09, 0x89, + 0x0f, 0x40, 0x47, 0xc4, 0xcc, 0xca, 0x9e, 0xb1, 0x62, 0x62, 0x0a, 0x28, 0x61, 0x60, 0x60, 0xea, + 0x27, 0x40, 0xb1, 0xcf, 0x26, 0x69, 0x1c, 0x97, 0x82, 0x60, 0xf2, 0x9f, 0xf7, 0xfb, 0xf7, 0xce, + 0xf7, 0x7c, 0x70, 0xb3, 0xc9, 0x85, 0xcb, 0x45, 0x81, 0x30, 0x21, 0x7d, 0xd6, 0xe8, 0x48, 0xc6, + 0xbd, 0xc2, 0x7e, 0xb1, 0x41, 0x25, 0x2e, 0x16, 0xe4, 0x81, 0xdd, 0xf6, 0xb9, 0xe4, 0xfa, 0x7a, + 0x88, 0xb2, 0x27, 0x51, 0xb6, 0x42, 0x19, 0x59, 0x87, 0x3b, 0x3c, 0xc0, 0x15, 0xc6, 0x77, 0x21, + 0xc5, 0x40, 0x4a, 0xb8, 0x81, 0x05, 0x8d, 0x05, 0x9b, 0x9c, 0x79, 0xaa, 0xbe, 0x16, 0xd6, 0x77, + 0x43, 0xa2, 0xd2, 0x0f, 0x1e, 0xac, 0x6f, 0x00, 0x5e, 0xaa, 0x09, 0x67, 0x87, 0xca, 0xc7, 0x4c, + 0xee, 0x11, 0x1f, 0x77, 0xef, 0x12, 0xe2, 0x53, 0x21, 0x74, 0x0c, 0x33, 0x84, 0xb6, 0xa8, 0x83, + 0x25, 0xf7, 0x77, 0x71, 0xf8, 0x32, 0x07, 0x36, 0x40, 0x7e, 0xb9, 0x72, 0xfd, 0x78, 0x60, 0xe6, + 0x7a, 0xd8, 0x6d, 0x95, 0xad, 0x19, 0x88, 0xf5, 0xe9, 0xc3, 0x56, 0x56, 0x59, 0x28, 0xa9, 0x1d, + 0xe9, 0x33, 0xcf, 0xa9, 0xaf, 0xc4, 0xd8, 0xc8, 0xe2, 0x29, 0x5c, 0xe9, 0x2a, 0xd7, 0xd8, 0x61, + 0x21, 0x70, 0xd8, 0x3e, 0x1e, 0x98, 0xab, 0xa1, 0xc3, 0x49, 0xc4, 0x7c, 0x83, 0x8b, 0xdd, 0xe9, + 0x16, 0xca, 0xe7, 0x5f, 0x1e, 0x9a, 0xda, 0xf7, 0x43, 0x53, 0xb3, 0x4c, 0x78, 0x25, 0xb1, 0xcb, + 0x3a, 0x15, 0x6d, 0xee, 0x09, 0x6a, 0xfd, 0x00, 0xd0, 0xa8, 0x09, 0x27, 0x2a, 0xdf, 0x8b, 0xa2, + 0xd6, 0x69, 0x17, 0xfb, 0xe4, 0x7f, 0x2c, 0x06, 0x86, 0x99, 0x7d, 0xdc, 0x62, 0x64, 0xca, 0x62, + 0xe1, 0xa4, 0xc5, 0x0c, 0x24, 0xc5, 0x22, 0xc6, 0xce, 0xae, 0xc7, 0x26, 0xb4, 0xe6, 0x77, 0x1b, + 0x2f, 0xca, 0x2b, 0x00, 0xd1, 0x04, 0xec, 0x51, 0xa4, 0x57, 0xe5, 0xae, 0xcb, 0x84, 0x60, 0xdc, + 0x4b, 0x4e, 0x0d, 0xfe, 0x51, 0xea, 0x3c, 0xbc, 0x9a, 0x1e, 0x27, 0x4e, 0xfe, 0x11, 0xc0, 0x6c, + 0x4d, 0x38, 0xf7, 0x3b, 0x1e, 0x19, 0x57, 0x3b, 0x1e, 0x93, 0xbd, 0x87, 0x9c, 0xb7, 0xf4, 0x26, + 0x5c, 0xc2, 0x2e, 0xef, 0x78, 0x32, 0x07, 0x36, 0x16, 0xf3, 0x17, 0x4a, 0x6b, 0xb6, 0x4a, 0x31, + 0x9e, 0x9d, 0x68, 0xcc, 0xec, 0x2a, 0x67, 0x5e, 0xe5, 0x5a, 0x7f, 0x60, 0x6a, 0xef, 0xbf, 0x98, + 0x79, 0x87, 0xc9, 0xbd, 0x4e, 0xc3, 0x6e, 0x72, 0x57, 0xcd, 0x8e, 0xba, 0x6c, 0x09, 0xf2, 0xac, + 0x20, 0x7b, 0x6d, 0x2a, 0x02, 0x82, 0xa8, 0x2b, 0x69, 0xfd, 0x06, 0x5c, 0x26, 0xb4, 0xcd, 0x05, + 0x93, 0xdc, 0x57, 0x9f, 0x30, 0x37, 0xb7, 0xe1, 0x5f, 0xd0, 0x89, 0x4e, 0x11, 0xbc, 0x9c, 0x14, + 0x3f, 0xea, 0xaf, 0xd4, 0x3f, 0x07, 0x17, 0x6b, 0xc2, 0xd1, 0x5f, 0x00, 0xa8, 0x27, 0xcc, 0x6e, + 0xc9, 0x4e, 0xf9, 0x89, 0xd8, 0x89, 0x93, 0x60, 0x94, 0xcf, 0xce, 0x89, 0xe2, 0xe8, 0x6f, 0x00, + 0x5c, 0x9d, 0x37, 0x3a, 0x37, 0x4f, 0xd3, 0x9d, 0x43, 0x34, 0xee, 0xfc, 0x21, 0x31, 0x4e, 0xf5, + 0x16, 0xc0, 0xf5, 0xb4, 0xbd, 0x7b, 0xfb, 0x77, 0x0d, 0x12, 0xc8, 0x46, 0xf5, 0x2f, 0xc8, 0x71, + 0xc2, 0xe7, 0x00, 0x66, 0x66, 0xf7, 0x68, 0xf1, 0x34, 0xe9, 0x19, 0x8a, 0x71, 0xeb, 0xcc, 0x94, + 0x28, 0x43, 0xe5, 0xc1, 0xbb, 0x21, 0x02, 0xfd, 0x21, 0x02, 0x47, 0x43, 0x04, 0xbe, 0x0e, 0x11, + 0x78, 0x3d, 0x42, 0xda, 0xd1, 0x08, 0x69, 0x9f, 0x47, 0x48, 0x7b, 0x52, 0x4c, 0xdd, 0xfc, 0x07, + 0xd3, 0x67, 0x59, 0x30, 0x0b, 0x8d, 0xa5, 0xe0, 0x64, 0xd9, 0xfe, 0x19, 0x00, 0x00, 0xff, 0xff, + 0x75, 0x69, 0x34, 0x71, 0xef, 0x06, 0x00, 0x00, } func (this *MsgSetWithdrawAddressResponse) Equal(that interface{}) bool { diff --git a/x/evidence/types/evidence.pb.go b/x/evidence/types/evidence.pb.go index 116d6362d5c7..6f3d617ebe1a 100644 --- a/x/evidence/types/evidence.pb.go +++ b/x/evidence/types/evidence.pb.go @@ -5,6 +5,7 @@ package types import ( fmt "fmt" + _ "github.com/cosmos/cosmos-proto" _ "github.com/gogo/protobuf/gogoproto" proto "github.com/gogo/protobuf/proto" github_com_gogo_protobuf_types "github.com/gogo/protobuf/types" @@ -77,28 +78,29 @@ func init() { } var fileDescriptor_dd143e71a177f0dd = []byte{ - // 324 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x64, 0x90, 0x3f, 0x4f, 0x02, 0x31, - 0x18, 0xc6, 0x5b, 0x41, 0xa2, 0x27, 0x83, 0x5e, 0x88, 0x5e, 0x88, 0x69, 0x09, 0x83, 0x61, 0xe1, - 0x1a, 0x74, 0x31, 0x6c, 0x92, 0x38, 0x18, 0x37, 0xe2, 0xe4, 0x62, 0xee, 0x4f, 0x2d, 0x8d, 0xdc, - 0xbd, 0x27, 0xed, 0xa1, 0x7c, 0x03, 0x47, 0x46, 0x47, 0x46, 0x3f, 0x0a, 0x9b, 0x8c, 0x4e, 0x68, - 0x8e, 0xc5, 0xd9, 0x4f, 0x60, 0xb8, 0x02, 0x0e, 0x4e, 0xed, 0xf3, 0xe4, 0xf7, 0xfe, 0x92, 0xf7, - 0xb5, 0x4e, 0x02, 0x50, 0x11, 0x28, 0xc6, 0x87, 0x32, 0xe4, 0x71, 0xc0, 0xd9, 0xb0, 0xe5, 0x73, - 0xed, 0xb5, 0x36, 0x85, 0x9b, 0x0c, 0x40, 0x83, 0x7d, 0x64, 0x38, 0x77, 0x53, 0xaf, 0xb8, 0x6a, - 0x45, 0x80, 0x80, 0x9c, 0x61, 0xcb, 0x9f, 0xc1, 0xab, 0x54, 0x00, 0x88, 0x3e, 0x67, 0x79, 0xf2, - 0xd3, 0x7b, 0xa6, 0x65, 0xc4, 0x95, 0xf6, 0xa2, 0xc4, 0x00, 0xf5, 0x77, 0x6c, 0x95, 0x2f, 0x1f, - 0x53, 0x39, 0x84, 0xc0, 0xd3, 0x12, 0x62, 0xfb, 0xd0, 0x2a, 0xf5, 0xb8, 0x14, 0x3d, 0xed, 0xe0, - 0x1a, 0x6e, 0x14, 0xba, 0xab, 0x64, 0x9f, 0x5b, 0xc5, 0xe5, 0xac, 0xb3, 0x55, 0xc3, 0x8d, 0xbd, - 0xd3, 0xaa, 0x6b, 0xc4, 0xee, 0x5a, 0xec, 0xde, 0xac, 0xc5, 0x9d, 0x9d, 0xe9, 0x9c, 0xa2, 0xf1, - 0x27, 0xc5, 0xdd, 0x7c, 0xc2, 0xae, 0x58, 0xdb, 0x09, 0x3c, 0xf1, 0x81, 0x53, 0xc8, 0x85, 0x26, - 0xd8, 0x57, 0xd6, 0x41, 0x00, 0xb1, 0xe2, 0xb1, 0x4a, 0xd5, 0x9d, 0x17, 0x86, 0x03, 0xae, 0x94, - 0x53, 0xac, 0xe1, 0xc6, 0x6e, 0xe7, 0xf8, 0x67, 0x4e, 0x9d, 0x91, 0x17, 0xf5, 0xdb, 0xf5, 0x7f, - 0x48, 0xbd, 0xbb, 0xbf, 0xe9, 0x2e, 0x4c, 0xd5, 0x2e, 0xbf, 0x4c, 0x28, 0x7a, 0x9d, 0x50, 0xf4, - 0x3d, 0xa1, 0xa8, 0x73, 0xfd, 0x96, 0x11, 0x3c, 0xcd, 0x08, 0x9e, 0x65, 0x04, 0x7f, 0x65, 0x04, - 0x8f, 0x17, 0x04, 0xcd, 0x16, 0x04, 0x7d, 0x2c, 0x08, 0xba, 0x6d, 0x0a, 0xa9, 0x7b, 0xa9, 0xef, - 0x06, 0x10, 0xb1, 0xd5, 0xc9, 0xcd, 0xd3, 0x54, 0xe1, 0x03, 0x7b, 0xfe, 0xbb, 0xbf, 0x1e, 0x25, - 0x5c, 0xf9, 0xa5, 0x7c, 0xbf, 0xb3, 0xdf, 0x00, 0x00, 0x00, 0xff, 0xff, 0x61, 0x33, 0x3a, 0x69, - 0x9f, 0x01, 0x00, 0x00, + // 346 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x64, 0x91, 0x3f, 0x4f, 0x02, 0x31, + 0x18, 0xc6, 0x5b, 0x41, 0xa2, 0x27, 0x83, 0x5e, 0x88, 0x9e, 0x0c, 0x2d, 0x61, 0x30, 0x2c, 0xdc, + 0x05, 0x75, 0x30, 0x6c, 0x92, 0x38, 0xb9, 0xa1, 0x93, 0x0b, 0xb9, 0x3f, 0xb5, 0x34, 0x72, 0xd7, + 0xf3, 0xda, 0x43, 0xf9, 0x06, 0x8e, 0x8c, 0x8e, 0x8c, 0x7e, 0x00, 0x3f, 0x04, 0x23, 0x71, 0x72, + 0x42, 0x73, 0x0c, 0x3a, 0xfb, 0x09, 0x0c, 0xd7, 0x82, 0x83, 0x53, 0xfb, 0x3c, 0xf9, 0xbd, 0xcf, + 0x93, 0xb7, 0x35, 0x8e, 0x7c, 0x2e, 0x42, 0x2e, 0x1c, 0x32, 0x64, 0x01, 0x89, 0x7c, 0xe2, 0x0c, + 0x5b, 0x1e, 0x91, 0x6e, 0x6b, 0x6d, 0xd8, 0x71, 0xc2, 0x25, 0x37, 0x0f, 0x14, 0x67, 0xaf, 0x6d, + 0xcd, 0x55, 0x2b, 0x94, 0x53, 0x9e, 0x33, 0xce, 0xf2, 0xa6, 0xf0, 0x2a, 0xa6, 0x9c, 0xd3, 0x01, + 0x71, 0x72, 0xe5, 0xa5, 0xb7, 0x8e, 0x64, 0x21, 0x11, 0xd2, 0x0d, 0x63, 0x0d, 0x1c, 0xaa, 0xbc, + 0x9e, 0x9a, 0xd4, 0xe1, 0xb9, 0xa8, 0x7f, 0x41, 0xa3, 0x7c, 0x71, 0x9f, 0xb2, 0x21, 0xf7, 0x5d, + 0xc9, 0x78, 0x64, 0xee, 0x1b, 0xa5, 0x3e, 0x61, 0xb4, 0x2f, 0x2d, 0x58, 0x83, 0x8d, 0x42, 0x57, + 0x2b, 0xf3, 0xcc, 0x28, 0x2e, 0x63, 0xad, 0x8d, 0x1a, 0x6c, 0xec, 0x1c, 0x57, 0x6d, 0xd5, 0x69, + 0xaf, 0x3a, 0xed, 0xeb, 0x55, 0x67, 0x67, 0x6b, 0x3a, 0xc7, 0x60, 0xfc, 0x81, 0x61, 0x37, 0x9f, + 0x30, 0x2b, 0xc6, 0x66, 0xcc, 0x1f, 0x48, 0x62, 0x15, 0xf2, 0x40, 0x25, 0x4c, 0xd7, 0xd8, 0xf3, + 0x79, 0x24, 0x48, 0x24, 0x52, 0xd1, 0x73, 0x83, 0x20, 0x21, 0x42, 0x58, 0xc5, 0x1a, 0x6c, 0x6c, + 0x77, 0x4e, 0x7f, 0xe6, 0xd8, 0x1a, 0xb9, 0xe1, 0xa0, 0x5d, 0xff, 0x87, 0xd4, 0xdf, 0x5e, 0x9b, + 0x15, 0xbd, 0xc1, 0xb9, 0xb2, 0xae, 0x64, 0xc2, 0x22, 0xda, 0xdd, 0x5d, 0xb3, 0xda, 0x6f, 0x97, + 0x9f, 0x26, 0x18, 0x3c, 0x4f, 0x30, 0xf8, 0x9e, 0x60, 0xd0, 0xb9, 0x7c, 0xc9, 0x10, 0x9c, 0x66, + 0x08, 0xce, 0x32, 0x04, 0x3f, 0x33, 0x04, 0xc7, 0x0b, 0x04, 0x66, 0x0b, 0x04, 0xde, 0x17, 0x08, + 0xdc, 0x34, 0x29, 0x93, 0xfd, 0xd4, 0xb3, 0x7d, 0x1e, 0xea, 0x07, 0xd2, 0x47, 0x53, 0x04, 0x77, + 0xce, 0xe3, 0xdf, 0x97, 0xc9, 0x51, 0x4c, 0x84, 0x57, 0xca, 0xf7, 0x3e, 0xf9, 0x0d, 0x00, 0x00, + 0xff, 0xff, 0xca, 0x0b, 0xf0, 0x75, 0xd2, 0x01, 0x00, 0x00, } func (m *Equivocation) Marshal() (dAtA []byte, err error) { diff --git a/x/evidence/types/tx.pb.go b/x/evidence/types/tx.pb.go index 0cce8d2cbb4a..edf7bf3c1cb0 100644 --- a/x/evidence/types/tx.pb.go +++ b/x/evidence/types/tx.pb.go @@ -7,11 +7,11 @@ import ( bytes "bytes" context "context" fmt "fmt" + _ "github.com/cosmos/cosmos-proto" types "github.com/cosmos/cosmos-sdk/codec/types" _ "github.com/gogo/protobuf/gogoproto" grpc1 "github.com/gogo/protobuf/grpc" proto "github.com/gogo/protobuf/proto" - _ "github.com/regen-network/cosmos-proto" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" @@ -125,27 +125,29 @@ func init() { func init() { proto.RegisterFile("cosmos/evidence/v1beta1/tx.proto", fileDescriptor_3e3242cb23c956e0) } var fileDescriptor_3e3242cb23c956e0 = []byte{ - // 316 bytes of a gzipped FileDescriptorProto + // 339 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0x48, 0xce, 0x2f, 0xce, 0xcd, 0x2f, 0xd6, 0x4f, 0x2d, 0xcb, 0x4c, 0x49, 0xcd, 0x4b, 0x4e, 0xd5, 0x2f, 0x33, 0x4c, 0x4a, 0x2d, 0x49, 0x34, 0xd4, 0x2f, 0xa9, 0xd0, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x87, 0xa8, 0xd0, 0x83, 0xa9, 0xd0, 0x83, 0xaa, 0x90, 0x12, 0x49, 0xcf, 0x4f, 0xcf, 0x07, 0xab, 0xd1, 0x07, 0xb1, 0x20, 0xca, 0xa5, 0x24, 0xd3, 0xf3, 0xf3, 0xd3, 0x73, 0x52, 0xf5, 0xc1, 0xbc, 0xa4, 0xd2, 0x34, 0xfd, 0xc4, 0xbc, 0x4a, 0x98, 0x14, 0xc4, 0xa4, 0x78, 0x88, 0x1e, 0xa8, 0xb1, 0x60, 0x8e, - 0x52, 0x35, 0x97, 0xa0, 0x6f, 0x71, 0x7a, 0x70, 0x69, 0x52, 0x6e, 0x66, 0x89, 0x2b, 0xd4, 0x22, - 0x21, 0x19, 0x2e, 0xce, 0x62, 0xb0, 0x48, 0x49, 0x6a, 0x91, 0x04, 0xa3, 0x02, 0xa3, 0x06, 0x67, - 0x10, 0x42, 0x40, 0xc8, 0x8e, 0x8b, 0x03, 0xe6, 0x24, 0x09, 0x26, 0x05, 0x46, 0x0d, 0x6e, 0x23, - 0x11, 0x3d, 0x88, 0xdd, 0x7a, 0x30, 0xbb, 0xf5, 0x1c, 0xf3, 0x2a, 0x9d, 0x78, 0x4e, 0x6d, 0xd1, - 0xe5, 0x80, 0x99, 0x19, 0x04, 0xd7, 0x63, 0xc5, 0xd1, 0xb1, 0x40, 0x9e, 0xe1, 0xc5, 0x02, 0x79, - 0x06, 0x25, 0x7d, 0x2e, 0x49, 0x0c, 0xcb, 0x83, 0x52, 0x8b, 0x0b, 0xf2, 0xf3, 0x8a, 0x53, 0x85, - 0x84, 0xb8, 0x58, 0x32, 0x12, 0x8b, 0x33, 0x24, 0x58, 0x14, 0x18, 0x35, 0x78, 0x82, 0xc0, 0x6c, - 0xa3, 0x72, 0x2e, 0x66, 0xdf, 0xe2, 0x74, 0xa1, 0x02, 0x2e, 0x3e, 0x34, 0x17, 0x6b, 0xe9, 0xe1, - 0x08, 0x2c, 0x3d, 0x0c, 0x0b, 0xa4, 0x8c, 0x88, 0x57, 0x0b, 0x73, 0x8c, 0x93, 0xf7, 0x8a, 0x47, - 0x72, 0x8c, 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, 0x9b, 0x9e, 0x59, - 0x92, 0x51, 0x9a, 0xa4, 0x97, 0x9c, 0x9f, 0x0b, 0x0d, 0x5d, 0x28, 0xa5, 0x5b, 0x9c, 0x92, 0xad, - 0x5f, 0x81, 0x88, 0xe3, 0x92, 0xca, 0x82, 0xd4, 0xe2, 0x24, 0x36, 0x70, 0x30, 0x19, 0x03, 0x02, - 0x00, 0x00, 0xff, 0xff, 0xa7, 0x78, 0xdf, 0xa8, 0x03, 0x02, 0x00, 0x00, + 0xd2, 0x54, 0x46, 0x2e, 0x41, 0xdf, 0xe2, 0xf4, 0xe0, 0xd2, 0xa4, 0xdc, 0xcc, 0x12, 0x57, 0xa8, + 0x4d, 0x42, 0x66, 0x5c, 0x9c, 0xc5, 0x60, 0x91, 0x92, 0xd4, 0x22, 0x09, 0x46, 0x05, 0x46, 0x0d, + 0x4e, 0x27, 0x89, 0x4b, 0x5b, 0x74, 0x45, 0xa0, 0x5a, 0x1d, 0x53, 0x52, 0x8a, 0x52, 0x8b, 0x8b, + 0x83, 0x4b, 0x8a, 0x32, 0xf3, 0xd2, 0x83, 0x10, 0x4a, 0x85, 0xec, 0xb8, 0x38, 0x60, 0xae, 0x95, + 0x60, 0x52, 0x60, 0xd4, 0xe0, 0x36, 0x12, 0xd1, 0x83, 0x38, 0x4b, 0x0f, 0xe6, 0x2c, 0x3d, 0xc7, + 0xbc, 0x4a, 0x27, 0x9e, 0x53, 0x5b, 0x74, 0x39, 0x60, 0xb6, 0x05, 0xc1, 0xf5, 0x58, 0x71, 0x74, + 0x2c, 0x90, 0x67, 0x78, 0xb1, 0x40, 0x9e, 0x41, 0x49, 0x9f, 0x4b, 0x12, 0xc3, 0x59, 0x41, 0xa9, + 0xc5, 0x05, 0xf9, 0x79, 0xc5, 0xa9, 0x42, 0x42, 0x5c, 0x2c, 0x19, 0x89, 0xc5, 0x19, 0x12, 0x2c, + 0x0a, 0x8c, 0x1a, 0x3c, 0x41, 0x60, 0xb6, 0x51, 0x39, 0x17, 0xb3, 0x6f, 0x71, 0xba, 0x50, 0x01, + 0x17, 0x1f, 0x9a, 0x5f, 0xb4, 0xf4, 0x70, 0x84, 0xa3, 0x1e, 0x86, 0x05, 0x52, 0x46, 0xc4, 0xab, + 0x85, 0x39, 0xc6, 0xc9, 0x7b, 0xc5, 0x23, 0x39, 0xc6, 0x13, 0x8f, 0xe4, 0x18, 0x2f, 0x3c, 0x92, + 0x63, 0x7c, 0xf0, 0x48, 0x8e, 0x71, 0xc2, 0x63, 0x39, 0x86, 0x0b, 0x8f, 0xe5, 0x18, 0x6e, 0x3c, + 0x96, 0x63, 0x88, 0xd2, 0x4d, 0xcf, 0x2c, 0xc9, 0x28, 0x4d, 0xd2, 0x4b, 0xce, 0xcf, 0x85, 0x06, + 0x3c, 0x94, 0xd2, 0x2d, 0x4e, 0xc9, 0xd6, 0xaf, 0x40, 0x44, 0x7f, 0x49, 0x65, 0x41, 0x6a, 0x71, + 0x12, 0x1b, 0x38, 0x98, 0x8c, 0x01, 0x01, 0x00, 0x00, 0xff, 0xff, 0x6b, 0x1e, 0x8f, 0x12, 0x1e, + 0x02, 0x00, 0x00, } func (this *MsgSubmitEvidenceResponse) Equal(that interface{}) bool { diff --git a/x/feegrant/feegrant.pb.go b/x/feegrant/feegrant.pb.go index a76572321924..3f181a89eaed 100644 --- a/x/feegrant/feegrant.pb.go +++ b/x/feegrant/feegrant.pb.go @@ -5,13 +5,13 @@ package feegrant import ( fmt "fmt" + _ "github.com/cosmos/cosmos-proto" types1 "github.com/cosmos/cosmos-sdk/codec/types" github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" types "github.com/cosmos/cosmos-sdk/types" _ "github.com/gogo/protobuf/gogoproto" proto "github.com/gogo/protobuf/proto" github_com_gogo_protobuf_types "github.com/gogo/protobuf/types" - _ "github.com/regen-network/cosmos-proto" _ "google.golang.org/protobuf/types/known/durationpb" _ "google.golang.org/protobuf/types/known/timestamppb" io "io" @@ -294,43 +294,44 @@ func init() { } var fileDescriptor_7279582900c30aea = []byte{ - // 562 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x54, 0x3f, 0x6f, 0xd3, 0x40, - 0x14, 0x8f, 0x9b, 0xa4, 0x90, 0x0b, 0x94, 0xc6, 0x14, 0xe1, 0x64, 0x70, 0xa2, 0x0e, 0x34, 0x0c, - 0xb5, 0x69, 0xd9, 0xca, 0x42, 0x1c, 0xa0, 0x42, 0xa2, 0x12, 0x32, 0x4c, 0x2c, 0xd1, 0xd9, 0x79, - 0x35, 0x27, 0x6c, 0x9f, 0xe5, 0xbb, 0x40, 0xb3, 0x32, 0x31, 0x76, 0x64, 0x42, 0xcc, 0xcc, 0x7c, - 0x88, 0x8a, 0xa9, 0x82, 0x85, 0x89, 0xa2, 0xe4, 0x8b, 0x20, 0xdf, 0x9d, 0x9d, 0x90, 0xf0, 0x47, - 0xaa, 0x3a, 0xc5, 0x77, 0xef, 0xfd, 0xfe, 0xbd, 0x77, 0x0a, 0xba, 0xe5, 0x53, 0x16, 0x51, 0x66, - 0x1f, 0x02, 0x04, 0x29, 0x8e, 0xb9, 0xfd, 0x7a, 0xc7, 0x03, 0x8e, 0x77, 0x8a, 0x0b, 0x2b, 0x49, - 0x29, 0xa7, 0xfa, 0x4d, 0xd9, 0x67, 0x15, 0xd7, 0xaa, 0xaf, 0xb5, 0x11, 0xd0, 0x80, 0x8a, 0x1e, - 0x3b, 0xfb, 0x92, 0xed, 0xad, 0x66, 0x40, 0x69, 0x10, 0x82, 0x2d, 0x4e, 0xde, 0xe8, 0xd0, 0xc6, - 0xf1, 0x38, 0x2f, 0x49, 0xa6, 0x81, 0xc4, 0x28, 0x5a, 0x59, 0x32, 0x95, 0x19, 0x0f, 0x33, 0x28, - 0x8c, 0xf8, 0x94, 0xc4, 0xaa, 0xde, 0x5e, 0x64, 0xe5, 0x24, 0x02, 0xc6, 0x71, 0x94, 0xe4, 0x04, - 0x8b, 0x0d, 0xc3, 0x51, 0x8a, 0x39, 0xa1, 0x8a, 0x60, 0xf3, 0x9b, 0x86, 0xd6, 0x1c, 0xcc, 0x88, - 0xdf, 0x0b, 0x43, 0xfa, 0x06, 0xc7, 0x3e, 0xe8, 0x21, 0xaa, 0xb3, 0x04, 0xe2, 0xe1, 0x20, 0x24, - 0x11, 0xe1, 0x86, 0xd6, 0x29, 0x77, 0xeb, 0xbb, 0x4d, 0x4b, 0xf9, 0xca, 0x9c, 0xe4, 0x51, 0xad, - 0x3e, 0x25, 0xb1, 0x73, 0xe7, 0xe4, 0x47, 0xbb, 0xf4, 0xe9, 0xac, 0xdd, 0x0d, 0x08, 0x7f, 0x39, - 0xf2, 0x2c, 0x9f, 0x46, 0x2a, 0x84, 0xfa, 0xd9, 0x66, 0xc3, 0x57, 0x36, 0x1f, 0x27, 0xc0, 0x04, - 0x80, 0xb9, 0x48, 0xf0, 0x3f, 0xc9, 0xe8, 0xf5, 0xfb, 0x08, 0xc1, 0x51, 0x42, 0xa4, 0x29, 0x63, - 0xa5, 0xa3, 0x75, 0xeb, 0xbb, 0x2d, 0x4b, 0xba, 0xb6, 0x72, 0xd7, 0xd6, 0xf3, 0x3c, 0x96, 0x53, - 0x39, 0x3e, 0x6b, 0x6b, 0xee, 0x1c, 0x66, 0xaf, 0xf1, 0xf5, 0xf3, 0xf6, 0xd5, 0x47, 0x00, 0x45, - 0x82, 0xc7, 0x9b, 0xd3, 0x32, 0x6a, 0x3c, 0x85, 0x94, 0xd0, 0xe1, 0x7c, 0xb0, 0x3e, 0xaa, 0x7a, - 0x59, 0x54, 0x43, 0x13, 0x2a, 0x5b, 0xd6, 0x5f, 0x36, 0x68, 0xfd, 0x3e, 0x10, 0xa7, 0x92, 0x05, - 0x74, 0x25, 0x56, 0xbf, 0x87, 0x56, 0x13, 0xc1, 0xac, 0xbc, 0x36, 0x97, 0xbc, 0x3e, 0x50, 0x13, - 0x76, 0x2e, 0x67, 0xb8, 0xf7, 0x99, 0x5d, 0x05, 0xd1, 0xc7, 0x48, 0x97, 0x5f, 0x83, 0xf9, 0x09, - 0x97, 0x2f, 0x7e, 0xc2, 0xeb, 0x52, 0xe6, 0xd9, 0x6c, 0xce, 0x23, 0xa4, 0xee, 0x06, 0x3e, 0x8e, - 0xa5, 0xbc, 0x51, 0xb9, 0x78, 0xe1, 0x35, 0x29, 0xd2, 0xc7, 0xb1, 0xd0, 0xd6, 0xf7, 0xd1, 0x15, - 0x25, 0x9b, 0x02, 0x03, 0x6e, 0x54, 0xff, 0xbb, 0x60, 0x31, 0x35, 0xb1, 0xe4, 0xba, 0x44, 0xba, - 0x19, 0xf0, 0x4f, 0x5b, 0xfe, 0xa0, 0xa1, 0xeb, 0xe2, 0x08, 0xc3, 0x03, 0x16, 0xcc, 0xf6, 0xfc, - 0x10, 0xd5, 0x70, 0x7e, 0x50, 0xbb, 0xde, 0x58, 0x12, 0xec, 0xc5, 0x63, 0xa7, 0xf1, 0x65, 0x91, - 0xd3, 0x9d, 0x21, 0xf5, 0xdb, 0x68, 0x1d, 0x4b, 0xf6, 0x41, 0x04, 0x8c, 0xe1, 0x00, 0x98, 0xb1, - 0xd2, 0x29, 0x77, 0x6b, 0xee, 0x35, 0x75, 0x7f, 0xa0, 0xae, 0xf7, 0x6e, 0xbc, 0xfb, 0xd8, 0x2e, - 0x2d, 0x1b, 0x7c, 0xab, 0xa1, 0xea, 0x7e, 0xf6, 0xb2, 0x74, 0x03, 0x5d, 0x12, 0x4f, 0x0c, 0x52, - 0x61, 0xa8, 0xe6, 0xe6, 0xc7, 0x59, 0x05, 0xc4, 0x83, 0x2a, 0x2a, 0x0b, 0x31, 0xca, 0xe7, 0x8d, - 0xe1, 0xf4, 0x4e, 0x26, 0xa6, 0x76, 0x3a, 0x31, 0xb5, 0x9f, 0x13, 0x53, 0x3b, 0x9e, 0x9a, 0xa5, - 0xd3, 0xa9, 0x59, 0xfa, 0x3e, 0x35, 0x4b, 0x2f, 0xb6, 0xfe, 0xb9, 0xd5, 0xa3, 0xe2, 0x0f, 0xcf, - 0x5b, 0x15, 0x72, 0x77, 0x7f, 0x05, 0x00, 0x00, 0xff, 0xff, 0xd0, 0x08, 0x9a, 0x3d, 0x1b, 0x05, - 0x00, 0x00, + // 582 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x54, 0xbf, 0x6f, 0xd3, 0x4e, + 0x14, 0x8f, 0x9b, 0xb6, 0xdf, 0x6f, 0x2e, 0x50, 0x1a, 0x13, 0x84, 0x93, 0xc1, 0x89, 0x3a, 0xd0, + 0x30, 0xc4, 0xa6, 0x61, 0x2b, 0x0b, 0x71, 0x80, 0x0a, 0x89, 0x4a, 0xc8, 0x65, 0x62, 0x89, 0xce, + 0xf6, 0xab, 0x39, 0x11, 0xfb, 0x2c, 0xdf, 0x05, 0x9a, 0xff, 0x80, 0xb1, 0x23, 0x13, 0x62, 0x66, + 0xae, 0xf8, 0x1b, 0x2a, 0xa6, 0xaa, 0x2c, 0x4c, 0x14, 0x25, 0xff, 0x08, 0xf2, 0xdd, 0x39, 0x09, + 0x09, 0xbf, 0x84, 0x3a, 0xc5, 0xf7, 0xee, 0x7d, 0x7e, 0xbd, 0x77, 0x0a, 0xba, 0xe5, 0x53, 0x16, + 0x51, 0x66, 0x1f, 0x02, 0x84, 0x29, 0x8e, 0xb9, 0xfd, 0x6a, 0xc7, 0x03, 0x8e, 0x77, 0xa6, 0x05, + 0x2b, 0x49, 0x29, 0xa7, 0xfa, 0x4d, 0xd9, 0x67, 0x4d, 0xcb, 0xaa, 0xaf, 0x5e, 0x0d, 0x69, 0x48, + 0x45, 0x8f, 0x9d, 0x7d, 0xc9, 0xf6, 0x7a, 0x2d, 0xa4, 0x34, 0x1c, 0x80, 0x2d, 0x4e, 0xde, 0xf0, + 0xd0, 0xc6, 0xf1, 0x28, 0xbf, 0x92, 0x4c, 0x7d, 0x89, 0x51, 0xb4, 0xf2, 0xca, 0x54, 0x66, 0x3c, + 0xcc, 0x60, 0x6a, 0xc4, 0xa7, 0x24, 0x56, 0xf7, 0x8d, 0x45, 0x56, 0x4e, 0x22, 0x60, 0x1c, 0x47, + 0x49, 0x4e, 0xb0, 0xd8, 0x10, 0x0c, 0x53, 0xcc, 0x09, 0x55, 0x04, 0x5b, 0x9f, 0x35, 0xb4, 0xe1, + 0x60, 0x46, 0xfc, 0xee, 0x60, 0x40, 0x5f, 0xe3, 0xd8, 0x07, 0x7d, 0x80, 0xca, 0x2c, 0x81, 0x38, + 0xe8, 0x0f, 0x48, 0x44, 0xb8, 0xa1, 0x35, 0x8b, 0xad, 0x72, 0xa7, 0x66, 0x29, 0x5f, 0x99, 0x93, + 0x3c, 0xaa, 0xd5, 0xa3, 0x24, 0x76, 0xee, 0x9c, 0x7e, 0x6d, 0x14, 0x3e, 0x5c, 0x34, 0x5a, 0x21, + 0xe1, 0x2f, 0x86, 0x9e, 0xe5, 0xd3, 0x48, 0x85, 0x50, 0x3f, 0x6d, 0x16, 0xbc, 0xb4, 0xf9, 0x28, + 0x01, 0x26, 0x00, 0xcc, 0x45, 0x82, 0xff, 0x49, 0x46, 0xaf, 0xdf, 0x47, 0x08, 0x8e, 0x12, 0x22, + 0x4d, 0x19, 0x2b, 0x4d, 0xad, 0x55, 0xee, 0xd4, 0x2d, 0xe9, 0xda, 0xca, 0x5d, 0x5b, 0xcf, 0xf2, + 0x58, 0xce, 0xea, 0xf1, 0x45, 0x43, 0x73, 0xe7, 0x30, 0xbb, 0x95, 0xf3, 0x93, 0xf6, 0xd5, 0x47, + 0x00, 0xd3, 0x04, 0x8f, 0xb7, 0x26, 0x45, 0x54, 0x79, 0x0a, 0x29, 0xa1, 0xc1, 0x7c, 0xb0, 0x1e, + 0x5a, 0xf3, 0xb2, 0xa8, 0x86, 0x26, 0x54, 0xb6, 0xad, 0x5f, 0x6c, 0xd0, 0xfa, 0x71, 0x20, 0xce, + 0x6a, 0x16, 0xd0, 0x95, 0x58, 0xfd, 0x1e, 0x5a, 0x4f, 0x04, 0xb3, 0xf2, 0x5a, 0x5b, 0xf2, 0xfa, + 0x40, 0x4d, 0xd8, 0xf9, 0x3f, 0xc3, 0xbd, 0xcd, 0xec, 0x2a, 0x88, 0x3e, 0x42, 0xba, 0xfc, 0xea, + 0xcf, 0x4f, 0xb8, 0x78, 0xf9, 0x13, 0xde, 0x94, 0x32, 0x07, 0xb3, 0x39, 0x0f, 0x91, 0xaa, 0xf5, + 0x7d, 0x1c, 0x4b, 0x79, 0x63, 0xf5, 0xf2, 0x85, 0x37, 0xa4, 0x48, 0x0f, 0xc7, 0x42, 0x5b, 0xdf, + 0x43, 0x57, 0x94, 0x6c, 0x0a, 0x0c, 0xb8, 0xb1, 0xf6, 0xc7, 0x05, 0x8b, 0xa9, 0x89, 0x25, 0x97, + 0x25, 0xd2, 0xcd, 0x80, 0x3f, 0xdb, 0xf2, 0x3b, 0x0d, 0x5d, 0x17, 0x47, 0x08, 0xf6, 0x59, 0x38, + 0xdb, 0xf3, 0x43, 0x54, 0xc2, 0xf9, 0x41, 0xed, 0xba, 0xba, 0x24, 0xd8, 0x8d, 0x47, 0x4e, 0xe5, + 0xd3, 0x22, 0xa7, 0x3b, 0x43, 0xea, 0xb7, 0xd1, 0x26, 0x96, 0xec, 0xfd, 0x08, 0x18, 0xc3, 0x21, + 0x30, 0x63, 0xa5, 0x59, 0x6c, 0x95, 0xdc, 0x6b, 0xaa, 0xbe, 0xaf, 0xca, 0xbb, 0x37, 0xde, 0xbc, + 0x6f, 0x14, 0x96, 0x0d, 0x7e, 0xd4, 0xd0, 0xda, 0x5e, 0xf6, 0xb2, 0xf4, 0x0e, 0xfa, 0x4f, 0x3c, + 0x31, 0x48, 0x85, 0xa1, 0x92, 0x63, 0x9c, 0x9f, 0xb4, 0xab, 0x6a, 0xee, 0xdd, 0x20, 0x48, 0x81, + 0xb1, 0x03, 0x9e, 0x92, 0x38, 0x74, 0xf3, 0xc6, 0x19, 0x06, 0xc4, 0x53, 0xfb, 0x0b, 0xcc, 0x42, + 0xf4, 0xe2, 0xbf, 0x46, 0x77, 0xba, 0xa7, 0x63, 0x53, 0x3b, 0x1b, 0x9b, 0xda, 0xb7, 0xb1, 0xa9, + 0x1d, 0x4f, 0xcc, 0xc2, 0xd9, 0xc4, 0x2c, 0x7c, 0x99, 0x98, 0x85, 0xe7, 0xdb, 0xbf, 0x7d, 0x09, + 0x47, 0xd3, 0x3f, 0x49, 0x6f, 0x5d, 0xc8, 0xdd, 0xfd, 0x1e, 0x00, 0x00, 0xff, 0xff, 0x33, 0x7c, + 0x25, 0xca, 0x4f, 0x05, 0x00, 0x00, } func (m *BasicAllowance) Marshal() (dAtA []byte, err error) { diff --git a/x/feegrant/query.pb.go b/x/feegrant/query.pb.go index 94368d66649b..c5e7ff342a94 100644 --- a/x/feegrant/query.pb.go +++ b/x/feegrant/query.pb.go @@ -6,6 +6,7 @@ package feegrant import ( context "context" fmt "fmt" + _ "github.com/cosmos/cosmos-proto" query "github.com/cosmos/cosmos-sdk/types/query" grpc1 "github.com/gogo/protobuf/grpc" proto "github.com/gogo/protobuf/proto" @@ -251,34 +252,36 @@ func init() { } var fileDescriptor_59efc303945de53f = []byte{ - // 430 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0x4e, 0xce, 0x2f, 0xce, - 0xcd, 0x2f, 0xd6, 0x4f, 0x4b, 0x4d, 0x4d, 0x2f, 0x4a, 0xcc, 0x2b, 0xd1, 0x2f, 0x33, 0x4c, 0x4a, - 0x2d, 0x49, 0x34, 0xd4, 0x2f, 0x2c, 0x4d, 0x2d, 0xaa, 0xd4, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, - 0x12, 0x87, 0x28, 0xd2, 0x83, 0x29, 0xd2, 0x83, 0x2a, 0x92, 0x52, 0xc3, 0xa5, 0x1b, 0xae, 0x12, - 0x6c, 0x80, 0x94, 0x16, 0x54, 0x5d, 0x52, 0x62, 0x71, 0x2a, 0xc4, 0x64, 0xb8, 0xca, 0x82, 0xc4, - 0xf4, 0xcc, 0xbc, 0xc4, 0x92, 0xcc, 0xfc, 0x3c, 0xa8, 0x5a, 0x99, 0xf4, 0xfc, 0xfc, 0xf4, 0x9c, - 0x54, 0xfd, 0xc4, 0x82, 0x4c, 0xfd, 0xc4, 0xbc, 0xbc, 0xfc, 0x12, 0xb0, 0x64, 0x31, 0x44, 0x56, - 0xc9, 0x9b, 0x4b, 0x34, 0x10, 0xa4, 0xdf, 0x31, 0x27, 0x27, 0xbf, 0x3c, 0x31, 0x2f, 0x39, 0x35, - 0x28, 0xb5, 0xb0, 0x34, 0xb5, 0xb8, 0x44, 0x48, 0x82, 0x8b, 0x1d, 0x6c, 0x63, 0x6a, 0x91, 0x04, - 0xa3, 0x02, 0xa3, 0x06, 0x67, 0x10, 0x8c, 0x8b, 0x90, 0x49, 0x95, 0x60, 0x42, 0x96, 0x49, 0x55, - 0x0a, 0xe3, 0x12, 0x43, 0x37, 0xac, 0xb8, 0x20, 0x3f, 0xaf, 0x38, 0x55, 0xc8, 0x86, 0x8b, 0x33, - 0x11, 0x26, 0x08, 0x36, 0x8f, 0xdb, 0x48, 0x4e, 0x0f, 0x47, 0x28, 0xe8, 0xb9, 0x83, 0x78, 0x41, - 0x08, 0x0d, 0x4a, 0x55, 0xe8, 0xe6, 0x16, 0x63, 0xb8, 0x32, 0x15, 0xd5, 0x95, 0xa9, 0x42, 0x6e, - 0x5c, 0x5c, 0x88, 0xa0, 0x00, 0x3b, 0x94, 0xdb, 0x48, 0x0d, 0x66, 0x25, 0x28, 0xdc, 0xf4, 0x20, - 0x31, 0x02, 0xb3, 0x34, 0x20, 0x31, 0x1d, 0xe6, 0xf7, 0x20, 0x24, 0x9d, 0x4a, 0x8b, 0x18, 0xb9, - 0xc4, 0x31, 0x2c, 0x87, 0xfa, 0xca, 0x8e, 0x8b, 0x0b, 0xee, 0xc8, 0x62, 0x09, 0x46, 0x05, 0x66, - 0x22, 0xbc, 0x85, 0xa4, 0x43, 0xc8, 0x1d, 0x8b, 0x1b, 0xd5, 0x09, 0xba, 0x11, 0x62, 0x39, 0xb2, - 0x23, 0x8d, 0xee, 0x33, 0x71, 0xb1, 0x82, 0x1d, 0x29, 0xb4, 0x86, 0x91, 0x8b, 0x13, 0xee, 0x52, - 0x21, 0x3d, 0x9c, 0x8e, 0xc1, 0x1a, 0xe9, 0x52, 0xfa, 0x44, 0xab, 0x87, 0x38, 0x42, 0xc9, 0xae, - 0xe9, 0xf2, 0x93, 0xc9, 0x4c, 0x16, 0x42, 0x66, 0xfa, 0xb8, 0x52, 0x2e, 0xdc, 0xbb, 0xfa, 0xd5, - 0xd0, 0x04, 0x54, 0x0b, 0x63, 0xa5, 0xd6, 0x0a, 0x2d, 0x63, 0xe4, 0xe2, 0x42, 0x04, 0xac, 0x10, - 0xb1, 0xf6, 0xc3, 0xe2, 0x5f, 0xca, 0x80, 0x78, 0x0d, 0x50, 0x17, 0x9b, 0x82, 0x5d, 0xac, 0x2f, - 0xa4, 0x4b, 0xd8, 0xc5, 0xc5, 0x08, 0x87, 0x3a, 0x39, 0x9e, 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, 0x7a, 0x7a, 0x66, 0x49, 0x46, 0x69, 0x92, 0x5e, 0x72, 0x7e, 0x2e, 0xcc, - 0x48, 0x08, 0xa5, 0x5b, 0x9c, 0x92, 0xad, 0x5f, 0x01, 0x37, 0x3f, 0x89, 0x0d, 0x9c, 0xe3, 0x8c, - 0x01, 0x01, 0x00, 0x00, 0xff, 0xff, 0x19, 0x08, 0xf0, 0xae, 0x23, 0x04, 0x00, 0x00, + // 461 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x93, 0x4f, 0x8b, 0x13, 0x31, + 0x18, 0xc6, 0x9b, 0x8a, 0x4a, 0xb3, 0xb7, 0xa0, 0xee, 0x38, 0xc8, 0xb0, 0x8c, 0xb0, 0x2b, 0x42, + 0x13, 0x77, 0x44, 0xf1, 0x20, 0x0b, 0xdd, 0x83, 0x7b, 0xd5, 0x11, 0x3c, 0x78, 0x91, 0x4c, 0xfb, + 0x3a, 0x0e, 0x76, 0x93, 0xd9, 0x49, 0xea, 0x1f, 0x64, 0x11, 0xfc, 0x04, 0x82, 0x7e, 0x02, 0x0f, + 0x9e, 0x3c, 0xfa, 0x21, 0x3c, 0x2e, 0x7a, 0xf1, 0xa6, 0xb4, 0x7e, 0x10, 0x69, 0x26, 0x99, 0x29, + 0x6d, 0x87, 0xce, 0xa9, 0xcd, 0xe4, 0x79, 0x9e, 0xfc, 0xde, 0x37, 0x6f, 0xf0, 0xf5, 0xa1, 0x54, + 0xc7, 0x52, 0xb1, 0xe7, 0x00, 0x69, 0xc1, 0x85, 0x66, 0xaf, 0xf6, 0x13, 0xd0, 0x7c, 0x9f, 0x9d, + 0x4c, 0xa0, 0x78, 0x4b, 0xf3, 0x42, 0x6a, 0x49, 0xb6, 0x4b, 0x11, 0x75, 0x22, 0x6a, 0x45, 0xfe, + 0x6e, 0x93, 0xbb, 0x52, 0x9a, 0x00, 0xff, 0xa6, 0xd5, 0x25, 0x5c, 0x41, 0x99, 0x5c, 0x29, 0x73, + 0x9e, 0x66, 0x82, 0xeb, 0x4c, 0x0a, 0xab, 0xbd, 0x96, 0x4a, 0x99, 0x8e, 0x81, 0xf1, 0x3c, 0x63, + 0x5c, 0x08, 0xa9, 0xcd, 0xa6, 0xb2, 0xbb, 0x57, 0xcb, 0xa4, 0x67, 0x66, 0xc5, 0x2c, 0x97, 0x59, + 0x84, 0xef, 0xf1, 0xe5, 0x47, 0xf3, 0xe8, 0xc1, 0x78, 0x2c, 0x5f, 0x73, 0x31, 0x84, 0x18, 0x4e, + 0x26, 0xa0, 0x34, 0x89, 0xf0, 0x45, 0x03, 0x03, 0x85, 0x87, 0x76, 0xd0, 0x8d, 0xde, 0xa1, 0xf7, + 0xf3, 0x7b, 0xff, 0x92, 0xf5, 0x0e, 0x46, 0xa3, 0x02, 0x94, 0x7a, 0xac, 0x8b, 0x4c, 0xa4, 0xb1, + 0x13, 0xd6, 0x1e, 0xf0, 0xba, 0xed, 0x3c, 0x10, 0x3e, 0xc1, 0x57, 0x96, 0x01, 0x54, 0x2e, 0x85, + 0x02, 0x72, 0x1f, 0xf7, 0xb8, 0xfb, 0x68, 0x18, 0xb6, 0xa2, 0x80, 0x36, 0x34, 0x95, 0x1e, 0xcd, + 0x57, 0x71, 0x6d, 0x08, 0x3f, 0xa3, 0xe5, 0x60, 0xb5, 0x52, 0x1a, 0xb4, 0x2d, 0x0d, 0xc8, 0x03, + 0x8c, 0xeb, 0xa6, 0x9b, 0xea, 0xb6, 0xa2, 0x5d, 0x47, 0x33, 0xbf, 0x21, 0x5a, 0xde, 0xbd, 0xe3, + 0x79, 0xc8, 0x53, 0xd7, 0xca, 0x78, 0xc1, 0x19, 0x7e, 0x41, 0x78, 0x7b, 0x05, 0xcb, 0x16, 0x7c, + 0x80, 0x71, 0xc5, 0xaf, 0x3c, 0xb4, 0x73, 0xae, 0x45, 0xc5, 0x0b, 0x0e, 0x72, 0xb4, 0x86, 0x71, + 0x6f, 0x23, 0x63, 0x79, 0xf8, 0x22, 0x64, 0xf4, 0xa7, 0x8b, 0xcf, 0x1b, 0x48, 0xf2, 0x0d, 0xe1, + 0x5e, 0x45, 0x4a, 0x68, 0x23, 0xcc, 0xda, 0x19, 0xf2, 0x59, 0x6b, 0x7d, 0x09, 0x11, 0x1e, 0x7c, + 0xf8, 0xf5, 0xef, 0x53, 0xf7, 0x1e, 0xb9, 0xcb, 0x9a, 0xde, 0x48, 0x55, 0x2e, 0x7b, 0x67, 0xa7, + 0xee, 0xd4, 0xfd, 0x83, 0x53, 0xf2, 0x15, 0x61, 0x5c, 0x37, 0x96, 0xb4, 0x3d, 0xdf, 0x4d, 0x86, + 0x7f, 0xab, 0xbd, 0xc1, 0x12, 0xdf, 0x31, 0xc4, 0x8c, 0xf4, 0x37, 0x13, 0xab, 0x1a, 0xf4, 0x70, + 0xf0, 0x63, 0x1a, 0xa0, 0xb3, 0x69, 0x80, 0xfe, 0x4e, 0x03, 0xf4, 0x71, 0x16, 0x74, 0xce, 0x66, + 0x41, 0xe7, 0xf7, 0x2c, 0xe8, 0x3c, 0xdd, 0x4b, 0x33, 0xfd, 0x62, 0x92, 0xd0, 0xa1, 0x3c, 0x76, + 0x91, 0xe5, 0x4f, 0x5f, 0x8d, 0x5e, 0xb2, 0x37, 0x55, 0x7e, 0x72, 0xc1, 0x3c, 0xe0, 0xdb, 0xff, + 0x03, 0x00, 0x00, 0xff, 0xff, 0x15, 0x17, 0x19, 0x54, 0x8d, 0x04, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/feegrant/tx.pb.go b/x/feegrant/tx.pb.go index 2a40a7ad49b4..41ed8b17fba9 100644 --- a/x/feegrant/tx.pb.go +++ b/x/feegrant/tx.pb.go @@ -6,11 +6,11 @@ package feegrant import ( context "context" fmt "fmt" + _ "github.com/cosmos/cosmos-proto" types "github.com/cosmos/cosmos-sdk/codec/types" _ "github.com/gogo/protobuf/gogoproto" grpc1 "github.com/gogo/protobuf/grpc" proto "github.com/gogo/protobuf/proto" - _ "github.com/regen-network/cosmos-proto" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" @@ -234,29 +234,30 @@ func init() { func init() { proto.RegisterFile("cosmos/feegrant/v1beta1/tx.proto", fileDescriptor_dd44ad7946dad783) } var fileDescriptor_dd44ad7946dad783 = []byte{ - // 339 bytes of a gzipped FileDescriptorProto + // 361 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0x48, 0xce, 0x2f, 0xce, 0xcd, 0x2f, 0xd6, 0x4f, 0x4b, 0x4d, 0x4d, 0x2f, 0x4a, 0xcc, 0x2b, 0xd1, 0x2f, 0x33, 0x4c, 0x4a, 0x2d, 0x49, 0x34, 0xd4, 0x2f, 0xa9, 0xd0, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x87, 0xa8, 0xd0, 0x83, 0xa9, 0xd0, 0x83, 0xaa, 0x90, 0x12, 0x49, 0xcf, 0x4f, 0xcf, 0x07, 0xab, 0xd1, 0x07, 0xb1, 0x20, 0xca, 0xa5, 0x24, 0xd3, 0xf3, 0xf3, 0xd3, 0x73, 0x52, 0xf5, 0xc1, 0xbc, 0xa4, 0xd2, 0x34, 0xfd, 0xc4, 0xbc, 0x4a, 0x98, 0x14, 0xc4, 0xa4, 0x78, 0x88, 0x1e, 0xa8, 0xb1, 0x60, 0x8e, - 0x52, 0x1f, 0x23, 0x97, 0xa0, 0x6f, 0x71, 0xba, 0x3b, 0xc8, 0x02, 0xc7, 0x9c, 0x9c, 0xfc, 0xf2, - 0xc4, 0xbc, 0xe4, 0x54, 0x21, 0x09, 0x2e, 0x76, 0xb0, 0x95, 0xa9, 0x45, 0x12, 0x8c, 0x0a, 0x8c, - 0x1a, 0x9c, 0x41, 0x30, 0x2e, 0x42, 0x26, 0x55, 0x82, 0x09, 0x59, 0x26, 0x55, 0xc8, 0x95, 0x8b, - 0x33, 0x11, 0x66, 0x80, 0x04, 0xb3, 0x02, 0xa3, 0x06, 0xb7, 0x91, 0x88, 0x1e, 0xc4, 0x4d, 0x7a, - 0x30, 0x37, 0xe9, 0x39, 0xe6, 0x55, 0x3a, 0x09, 0x9e, 0xda, 0xa2, 0xcb, 0xeb, 0x96, 0x9a, 0x0a, - 0xb7, 0xce, 0x33, 0x08, 0xa1, 0x53, 0x49, 0x9a, 0x4b, 0x12, 0xc3, 0x3d, 0x41, 0xa9, 0xc5, 0x05, - 0xf9, 0x79, 0xc5, 0xa9, 0x4a, 0x1e, 0x5c, 0x42, 0xbe, 0xc5, 0xe9, 0x41, 0xa9, 0x65, 0xf9, 0xd9, - 0xa9, 0x14, 0xb9, 0x56, 0x49, 0x86, 0x4b, 0x0a, 0xd3, 0x24, 0x98, 0x3d, 0x46, 0x6f, 0x18, 0xb9, - 0x98, 0x7d, 0x8b, 0xd3, 0x85, 0x0a, 0xb8, 0xf8, 0xd0, 0x42, 0x46, 0x4b, 0x0f, 0x47, 0xac, 0xe8, - 0x61, 0xb8, 0x5a, 0xca, 0x88, 0x78, 0xb5, 0x30, 0x9b, 0x85, 0x8a, 0xb9, 0xf8, 0xd1, 0xbd, 0xa7, - 0x8d, 0xcf, 0x18, 0x34, 0xc5, 0x52, 0xc6, 0x24, 0x28, 0x86, 0x59, 0xea, 0xe4, 0x78, 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, 0xea, 0xe9, 0x99, 0x25, 0x19, 0xa5, 0x49, 0x7a, - 0xc9, 0xf9, 0xb9, 0xd0, 0x74, 0x03, 0xa5, 0x74, 0x8b, 0x53, 0xb2, 0xf5, 0x2b, 0xe0, 0xa9, 0x37, - 0x89, 0x0d, 0x1c, 0xc5, 0xc6, 0x80, 0x00, 0x00, 0x00, 0xff, 0xff, 0x60, 0x47, 0xc8, 0xf2, 0xd7, - 0x02, 0x00, 0x00, + 0xd2, 0x21, 0x46, 0x2e, 0x41, 0xdf, 0xe2, 0x74, 0x77, 0x90, 0x05, 0x8e, 0x39, 0x39, 0xf9, 0xe5, + 0x89, 0x79, 0xc9, 0xa9, 0x42, 0x46, 0x5c, 0xec, 0x60, 0x2b, 0x53, 0x8b, 0x24, 0x18, 0x15, 0x18, + 0x35, 0x38, 0x9d, 0x24, 0x2e, 0x6d, 0xd1, 0x15, 0x81, 0x6a, 0x74, 0x4c, 0x49, 0x29, 0x4a, 0x2d, + 0x2e, 0x0e, 0x2e, 0x29, 0xca, 0xcc, 0x4b, 0x0f, 0x82, 0x29, 0x44, 0xe8, 0x49, 0x95, 0x60, 0x22, + 0x4e, 0x4f, 0xaa, 0x90, 0x2b, 0x17, 0x67, 0x22, 0xcc, 0x52, 0x09, 0x66, 0x05, 0x46, 0x0d, 0x6e, + 0x23, 0x11, 0x3d, 0x88, 0x3f, 0xf4, 0x60, 0xfe, 0xd0, 0x73, 0xcc, 0xab, 0x74, 0x12, 0x3c, 0xb5, + 0x45, 0x97, 0xd7, 0x2d, 0x35, 0x15, 0xee, 0x44, 0xcf, 0x20, 0x84, 0x4e, 0x25, 0x69, 0x2e, 0x49, + 0x0c, 0x3f, 0x04, 0xa5, 0x16, 0x17, 0xe4, 0xe7, 0x15, 0xa7, 0x2a, 0xd5, 0x70, 0x09, 0xf9, 0x16, + 0xa7, 0x07, 0xa5, 0x96, 0xe5, 0x67, 0xa7, 0xd2, 0xdd, 0x87, 0x4a, 0x32, 0x5c, 0x52, 0x98, 0xb6, + 0xc3, 0xdc, 0x66, 0xf4, 0x86, 0x91, 0x8b, 0xd9, 0xb7, 0x38, 0x5d, 0xa8, 0x80, 0x8b, 0x0f, 0x2d, + 0x06, 0xb4, 0xf4, 0x70, 0xc4, 0xbe, 0x1e, 0x86, 0x4f, 0xa5, 0x8c, 0x88, 0x57, 0x0b, 0xb3, 0x59, + 0xa8, 0x98, 0x8b, 0x1f, 0x3d, 0x48, 0xb4, 0xf1, 0x19, 0x83, 0xa6, 0x58, 0xca, 0x98, 0x04, 0xc5, + 0x30, 0x4b, 0x9d, 0x1c, 0x4f, 0x3c, 0x92, 0x63, 0xbc, 0xf0, 0x48, 0x8e, 0xf1, 0xc1, 0x23, 0x39, + 0xc6, 0x09, 0x8f, 0xe5, 0x18, 0x2e, 0x3c, 0x96, 0x63, 0xb8, 0xf1, 0x58, 0x8e, 0x21, 0x4a, 0x3d, + 0x3d, 0xb3, 0x24, 0xa3, 0x34, 0x49, 0x2f, 0x39, 0x3f, 0x17, 0x9a, 0x3e, 0xa1, 0x94, 0x6e, 0x71, + 0x4a, 0xb6, 0x7e, 0x05, 0x3c, 0x97, 0x24, 0xb1, 0x81, 0x93, 0x85, 0x31, 0x20, 0x00, 0x00, 0xff, + 0xff, 0xa8, 0x2c, 0xa7, 0x12, 0x3f, 0x03, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/gov/types/gov.pb.go b/x/gov/types/gov.pb.go index b13f51469975..2b1abb3831d1 100644 --- a/x/gov/types/gov.pb.go +++ b/x/gov/types/gov.pb.go @@ -5,13 +5,13 @@ package types import ( fmt "fmt" + _ "github.com/cosmos/cosmos-proto" types1 "github.com/cosmos/cosmos-sdk/codec/types" github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" types "github.com/cosmos/cosmos-sdk/types" _ "github.com/gogo/protobuf/gogoproto" proto "github.com/gogo/protobuf/proto" github_com_gogo_protobuf_types "github.com/gogo/protobuf/types" - _ "github.com/regen-network/cosmos-proto" _ "google.golang.org/protobuf/types/known/durationpb" _ "google.golang.org/protobuf/types/known/timestamppb" io "io" @@ -507,98 +507,100 @@ func init() { func init() { proto.RegisterFile("cosmos/gov/v1beta1/gov.proto", fileDescriptor_6e82113c1a9a4b7c) } var fileDescriptor_6e82113c1a9a4b7c = []byte{ - // 1454 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x57, 0x51, 0x68, 0xdb, 0x56, - 0x17, 0xb6, 0x6c, 0xc7, 0x89, 0xaf, 0x9d, 0x44, 0xbd, 0x49, 0x13, 0xc7, 0x7f, 0x7f, 0xc9, 0xbf, - 0xfe, 0x9f, 0x12, 0x4a, 0xeb, 0xb4, 0xf9, 0xc7, 0xc6, 0x52, 0xd8, 0x66, 0xc5, 0xca, 0xea, 0x51, - 0x6c, 0x23, 0xab, 0x0e, 0xed, 0x1e, 0x84, 0x62, 0xdf, 0x3a, 0xda, 0x2c, 0x5d, 0xcf, 0xba, 0x4e, - 0x13, 0xf6, 0xb2, 0xc7, 0xe2, 0xc1, 0xe8, 0x63, 0x61, 0x18, 0x0a, 0x63, 0x2f, 0x7b, 0xde, 0xf3, - 0x9e, 0xc3, 0x18, 0xac, 0xec, 0xa9, 0x6c, 0xe0, 0xae, 0x09, 0x8c, 0x92, 0xc7, 0x3c, 0xec, 0x79, - 0x48, 0xf7, 0x2a, 0x96, 0xed, 0xb0, 0xd4, 0x7b, 0x8a, 0x74, 0xee, 0xf9, 0xbe, 0x73, 0xce, 0xe7, - 0x73, 0xce, 0x55, 0xc0, 0x95, 0x1a, 0x76, 0x2c, 0xec, 0xac, 0x35, 0xf0, 0xde, 0xda, 0xde, 0xad, - 0x1d, 0x44, 0x8c, 0x5b, 0xee, 0x73, 0xb6, 0xd5, 0xc6, 0x04, 0x43, 0x48, 0x4f, 0xb3, 0xae, 0x85, - 0x9d, 0xa6, 0x05, 0x86, 0xd8, 0x31, 0x1c, 0x74, 0x06, 0xa9, 0x61, 0xd3, 0xa6, 0x98, 0xf4, 0x62, - 0x03, 0x37, 0xb0, 0xf7, 0xb8, 0xe6, 0x3e, 0x31, 0xeb, 0x0a, 0x45, 0xe9, 0xf4, 0x80, 0xd1, 0xd2, - 0x23, 0xb1, 0x81, 0x71, 0xa3, 0x89, 0xd6, 0xbc, 0xb7, 0x9d, 0xce, 0xc3, 0x35, 0x62, 0x5a, 0xc8, - 0x21, 0x86, 0xd5, 0xf2, 0xb1, 0xa3, 0x0e, 0x86, 0x7d, 0xc0, 0x8e, 0x84, 0xd1, 0xa3, 0x7a, 0xa7, - 0x6d, 0x10, 0x13, 0xb3, 0x64, 0xa4, 0x6f, 0x39, 0x00, 0xb7, 0x91, 0xd9, 0xd8, 0x25, 0xa8, 0x5e, - 0xc5, 0x04, 0x95, 0x5a, 0xee, 0x21, 0x7c, 0x1b, 0xc4, 0xb0, 0xf7, 0x94, 0xe2, 0x32, 0xdc, 0xea, - 0xdc, 0xba, 0x90, 0x1d, 0x2f, 0x34, 0x3b, 0xf0, 0x57, 0x99, 0x37, 0xdc, 0x06, 0xb1, 0x47, 0x1e, - 0x5b, 0x2a, 0x9c, 0xe1, 0x56, 0xe3, 0xf2, 0xfb, 0x87, 0x7d, 0x31, 0xf4, 0x6b, 0x5f, 0xbc, 0xda, - 0x30, 0xc9, 0x6e, 0x67, 0x27, 0x5b, 0xc3, 0x16, 0xab, 0x8d, 0xfd, 0xb9, 0xe1, 0xd4, 0x3f, 0x5d, - 0x23, 0x07, 0x2d, 0xe4, 0x64, 0xf3, 0xa8, 0x76, 0xda, 0x17, 0x67, 0x0f, 0x0c, 0xab, 0xb9, 0x21, - 0x51, 0x16, 0x49, 0x65, 0x74, 0xd2, 0x36, 0x48, 0x6a, 0x68, 0x9f, 0x94, 0xdb, 0xb8, 0x85, 0x1d, - 0xa3, 0x09, 0x17, 0xc1, 0x14, 0x31, 0x49, 0x13, 0x79, 0xf9, 0xc5, 0x55, 0xfa, 0x02, 0x33, 0x20, - 0x51, 0x47, 0x4e, 0xad, 0x6d, 0xd2, 0xdc, 0xbd, 0x1c, 0xd4, 0xa0, 0x69, 0x63, 0xfe, 0xf5, 0x33, - 0x91, 0xfb, 0xe5, 0xfb, 0x1b, 0xd3, 0x9b, 0xd8, 0x26, 0xc8, 0x26, 0xd2, 0xcf, 0x1c, 0x98, 0xce, - 0xa3, 0x16, 0x76, 0x4c, 0x02, 0xdf, 0x01, 0x89, 0x16, 0x0b, 0xa0, 0x9b, 0x75, 0x8f, 0x3a, 0x2a, - 0x2f, 0x9d, 0xf6, 0x45, 0x48, 0x93, 0x0a, 0x1c, 0x4a, 0x2a, 0xf0, 0xdf, 0x0a, 0x75, 0x78, 0x05, - 0xc4, 0xeb, 0x94, 0x03, 0xb7, 0x59, 0xd4, 0x81, 0x01, 0xd6, 0x40, 0xcc, 0xb0, 0x70, 0xc7, 0x26, - 0xa9, 0x48, 0x26, 0xb2, 0x9a, 0x58, 0x5f, 0xf1, 0xc5, 0x74, 0x3b, 0xe4, 0x4c, 0xcd, 0x4d, 0x6c, - 0xda, 0xf2, 0x4d, 0x57, 0xaf, 0xef, 0x5e, 0x8a, 0xab, 0x6f, 0xa0, 0x97, 0x0b, 0x70, 0x54, 0x46, - 0xbd, 0x31, 0xf3, 0xf8, 0x99, 0x18, 0x7a, 0xfd, 0x4c, 0x0c, 0x49, 0x7f, 0xc6, 0xc0, 0xcc, 0x99, - 0x4e, 0x6f, 0x9d, 0x57, 0xd2, 0xc2, 0x49, 0x5f, 0x0c, 0x9b, 0xf5, 0xd3, 0xbe, 0x18, 0xa7, 0x85, - 0x8d, 0xd6, 0x73, 0x1b, 0x4c, 0xd7, 0xa8, 0x3e, 0x5e, 0x35, 0x89, 0xf5, 0xc5, 0x2c, 0xed, 0xa3, - 0xac, 0xdf, 0x47, 0xd9, 0x9c, 0x7d, 0x20, 0x27, 0x7e, 0x1c, 0x08, 0xa9, 0xfa, 0x08, 0x58, 0x05, - 0x31, 0x87, 0x18, 0xa4, 0xe3, 0xa4, 0x22, 0x5e, 0xef, 0x48, 0xe7, 0xf5, 0x8e, 0x9f, 0x60, 0xc5, - 0xf3, 0x94, 0xd3, 0xa7, 0x7d, 0x71, 0x69, 0x44, 0x64, 0x4a, 0x22, 0xa9, 0x8c, 0x0d, 0xb6, 0x00, - 0x7c, 0x68, 0xda, 0x46, 0x53, 0x27, 0x46, 0xb3, 0x79, 0xa0, 0xb7, 0x91, 0xd3, 0x69, 0x92, 0x54, - 0xd4, 0xcb, 0x4f, 0x3c, 0x2f, 0x86, 0xe6, 0xfa, 0xa9, 0x9e, 0x9b, 0xfc, 0x1f, 0x57, 0xd8, 0xd3, - 0xbe, 0xb8, 0x42, 0x83, 0x8c, 0x13, 0x49, 0x2a, 0xef, 0x19, 0x03, 0x20, 0xf8, 0x31, 0x48, 0x38, - 0x9d, 0x1d, 0xcb, 0x24, 0xba, 0x3b, 0x71, 0xa9, 0x29, 0x2f, 0x54, 0x7a, 0x4c, 0x0a, 0xcd, 0x1f, - 0x47, 0x59, 0x60, 0x51, 0x58, 0xbf, 0x04, 0xc0, 0xd2, 0x93, 0x97, 0x22, 0xa7, 0x02, 0x6a, 0x71, - 0x01, 0xd0, 0x04, 0x3c, 0x6b, 0x11, 0x1d, 0xd9, 0x75, 0x1a, 0x21, 0x76, 0x61, 0x84, 0xff, 0xb2, - 0x08, 0xcb, 0x34, 0xc2, 0x28, 0x03, 0x0d, 0x33, 0xc7, 0xcc, 0x8a, 0x5d, 0xf7, 0x42, 0x3d, 0xe6, - 0xc0, 0x2c, 0xc1, 0xc4, 0x68, 0xea, 0xec, 0x20, 0x35, 0x7d, 0x51, 0x23, 0xde, 0x61, 0x71, 0x16, - 0x69, 0x9c, 0x21, 0xb4, 0x34, 0x51, 0x83, 0x26, 0x3d, 0xac, 0x3f, 0x62, 0x4d, 0x70, 0x69, 0x0f, - 0x13, 0xd3, 0x6e, 0xb8, 0x3f, 0x6f, 0x9b, 0x09, 0x3b, 0x73, 0x61, 0xd9, 0xff, 0x63, 0xe9, 0xa4, - 0x68, 0x3a, 0x63, 0x14, 0xb4, 0xee, 0x79, 0x6a, 0xaf, 0xb8, 0x66, 0xaf, 0xf0, 0x87, 0x80, 0x99, - 0x06, 0x12, 0xc7, 0x2f, 0x8c, 0x25, 0xb1, 0x58, 0x4b, 0x43, 0xb1, 0x86, 0x15, 0x9e, 0xa5, 0x56, - 0x26, 0xf0, 0x46, 0xd4, 0xdd, 0x2a, 0xd2, 0x61, 0x18, 0x24, 0x82, 0xed, 0xf3, 0x01, 0x88, 0x1c, - 0x20, 0x87, 0x6e, 0x28, 0x39, 0x3b, 0xc1, 0x26, 0x2c, 0xd8, 0x44, 0x75, 0xa1, 0xf0, 0x0e, 0x98, - 0x36, 0x76, 0x1c, 0x62, 0x98, 0x6c, 0x97, 0x4d, 0xcc, 0xe2, 0xc3, 0xe1, 0x7b, 0x20, 0x6c, 0x63, - 0x6f, 0x20, 0x27, 0x27, 0x09, 0xdb, 0x18, 0x36, 0x40, 0xd2, 0xc6, 0xfa, 0x23, 0x93, 0xec, 0xea, - 0x7b, 0x88, 0x60, 0x6f, 0xec, 0xe2, 0xb2, 0x32, 0x19, 0xd3, 0x69, 0x5f, 0x5c, 0xa0, 0xa2, 0x06, - 0xb9, 0x24, 0x15, 0xd8, 0x78, 0xdb, 0x24, 0xbb, 0x55, 0x44, 0x30, 0x93, 0xf2, 0x98, 0x03, 0x51, - 0xf7, 0x7a, 0xf9, 0xe7, 0x2b, 0x79, 0x11, 0x4c, 0xed, 0x61, 0x82, 0xfc, 0x75, 0x4c, 0x5f, 0xe0, - 0xc6, 0xd9, 0xbd, 0x16, 0x79, 0x93, 0x7b, 0x4d, 0x0e, 0xa7, 0xb8, 0xb3, 0xbb, 0x6d, 0x0b, 0x4c, - 0xd3, 0x27, 0x27, 0x15, 0xf5, 0xc6, 0xe7, 0xea, 0x79, 0xe0, 0xf1, 0xcb, 0x54, 0x8e, 0xba, 0x2a, - 0xa9, 0x3e, 0x78, 0x63, 0xe6, 0xa9, 0xbf, 0xa9, 0x7f, 0x08, 0x83, 0x59, 0x36, 0x18, 0x65, 0xa3, - 0x6d, 0x58, 0x0e, 0xfc, 0x9a, 0x03, 0x09, 0xcb, 0xb4, 0xcf, 0xe6, 0x94, 0xbb, 0x68, 0x4e, 0x75, - 0x97, 0xfb, 0xa4, 0x2f, 0x5e, 0x0e, 0xa0, 0xae, 0x63, 0xcb, 0x24, 0xc8, 0x6a, 0x91, 0x83, 0x81, - 0x4e, 0x81, 0xe3, 0xc9, 0xc6, 0x17, 0x58, 0xa6, 0xed, 0x0f, 0xef, 0x57, 0x1c, 0x80, 0x96, 0xb1, - 0xef, 0x13, 0xe9, 0x2d, 0xd4, 0x36, 0x71, 0x9d, 0x5d, 0x11, 0x2b, 0x63, 0x23, 0x95, 0x67, 0x9f, - 0x1a, 0xb4, 0x4d, 0x4e, 0xfa, 0xe2, 0x95, 0x71, 0xf0, 0x50, 0xae, 0x6c, 0x39, 0x8f, 0x7b, 0x49, - 0x4f, 0xdd, 0xa1, 0xe3, 0x2d, 0x63, 0xdf, 0x97, 0x8b, 0x9a, 0xbf, 0xe4, 0x40, 0xb2, 0xea, 0x4d, - 0x22, 0xd3, 0xef, 0x73, 0xc0, 0x26, 0xd3, 0xcf, 0x8d, 0xbb, 0x28, 0xb7, 0xdb, 0x2c, 0xb7, 0xe5, - 0x21, 0xdc, 0x50, 0x5a, 0x8b, 0x43, 0x8b, 0x20, 0x98, 0x51, 0x92, 0xda, 0x58, 0x36, 0xbf, 0xf9, - 0xf3, 0xcf, 0x92, 0x79, 0x00, 0x62, 0x9f, 0x75, 0x70, 0xbb, 0x63, 0x79, 0x59, 0x24, 0x65, 0x79, - 0xb2, 0x8f, 0xa1, 0x93, 0xbe, 0xc8, 0x53, 0xfc, 0x20, 0x1b, 0x95, 0x31, 0xc2, 0x1a, 0x88, 0x93, - 0xdd, 0x36, 0x72, 0x76, 0x71, 0x93, 0xfe, 0x00, 0xc9, 0x89, 0x86, 0x91, 0xd2, 0x2f, 0x9c, 0x51, - 0x04, 0x22, 0x0c, 0x78, 0x61, 0x97, 0x03, 0x73, 0xee, 0x84, 0xea, 0x83, 0x50, 0x11, 0x2f, 0x54, - 0x6d, 0xe2, 0x50, 0xa9, 0x61, 0x9e, 0x21, 0x7d, 0x2f, 0x33, 0x7d, 0x87, 0x3c, 0x24, 0x75, 0xd6, - 0x35, 0x68, 0xfe, 0xfb, 0xb5, 0x3f, 0x38, 0x00, 0x02, 0x5f, 0xa8, 0xd7, 0xc1, 0x72, 0xb5, 0xa4, - 0x29, 0x7a, 0xa9, 0xac, 0x15, 0x4a, 0x45, 0xfd, 0x5e, 0xb1, 0x52, 0x56, 0x36, 0x0b, 0x5b, 0x05, - 0x25, 0xcf, 0x87, 0xd2, 0xf3, 0xdd, 0x5e, 0x26, 0x41, 0x1d, 0x15, 0x37, 0x08, 0x94, 0xc0, 0x7c, - 0xd0, 0xfb, 0xbe, 0x52, 0xe1, 0xb9, 0xf4, 0x6c, 0xb7, 0x97, 0x89, 0x53, 0xaf, 0xfb, 0xc8, 0x81, - 0xd7, 0xc0, 0x42, 0xd0, 0x27, 0x27, 0x57, 0xb4, 0x5c, 0xa1, 0xc8, 0x87, 0xd3, 0x97, 0xba, 0xbd, - 0xcc, 0x2c, 0xf5, 0xcb, 0xb1, 0x75, 0x9a, 0x01, 0x73, 0x41, 0xdf, 0x62, 0x89, 0x8f, 0xa4, 0x93, - 0xdd, 0x5e, 0x66, 0x86, 0xba, 0x15, 0x31, 0x5c, 0x07, 0xa9, 0x61, 0x0f, 0x7d, 0xbb, 0xa0, 0xdd, - 0xd1, 0xab, 0x8a, 0x56, 0xe2, 0xa3, 0xe9, 0xc5, 0x6e, 0x2f, 0xc3, 0xfb, 0xbe, 0xfe, 0xee, 0x4b, - 0x47, 0x1f, 0x7f, 0x23, 0x84, 0xae, 0xfd, 0x14, 0x06, 0x73, 0xc3, 0x9f, 0x47, 0x30, 0x0b, 0xfe, - 0x55, 0x56, 0x4b, 0xe5, 0x52, 0x25, 0x77, 0x57, 0xaf, 0x68, 0x39, 0xed, 0x5e, 0x65, 0xa4, 0x60, - 0xaf, 0x14, 0xea, 0x5c, 0x34, 0x9b, 0xf0, 0x36, 0x10, 0x46, 0xfd, 0xf3, 0x4a, 0xb9, 0x54, 0x29, - 0x68, 0x7a, 0x59, 0x51, 0x0b, 0xa5, 0x3c, 0xcf, 0xa5, 0x97, 0xbb, 0xbd, 0xcc, 0x02, 0x85, 0x0c, - 0x0d, 0x15, 0x7c, 0x17, 0xfc, 0x7b, 0x14, 0x5c, 0x2d, 0x69, 0x85, 0xe2, 0x87, 0x3e, 0x36, 0x9c, - 0x5e, 0xea, 0xf6, 0x32, 0x90, 0x62, 0xab, 0x81, 0x09, 0x80, 0xd7, 0xc1, 0xd2, 0x28, 0xb4, 0x9c, - 0xab, 0x54, 0x94, 0x3c, 0x1f, 0x49, 0xf3, 0xdd, 0x5e, 0x26, 0x49, 0x31, 0x65, 0xc3, 0x71, 0x50, - 0x1d, 0xde, 0x04, 0xa9, 0x51, 0x6f, 0x55, 0xf9, 0x48, 0xd9, 0xd4, 0x94, 0x3c, 0x1f, 0x4d, 0xc3, - 0x6e, 0x2f, 0x33, 0x47, 0xfd, 0x55, 0xf4, 0x09, 0xaa, 0x11, 0x74, 0x2e, 0xff, 0x56, 0xae, 0x70, - 0x57, 0xc9, 0xf3, 0x53, 0x41, 0xfe, 0x2d, 0xc3, 0x6c, 0xa2, 0x3a, 0x95, 0x53, 0x2e, 0x1e, 0xbe, - 0x12, 0x42, 0x2f, 0x5e, 0x09, 0xa1, 0x2f, 0x8e, 0x84, 0xd0, 0xe1, 0x91, 0xc0, 0x3d, 0x3f, 0x12, - 0xb8, 0xdf, 0x8f, 0x04, 0xee, 0xc9, 0xb1, 0x10, 0x7a, 0x7e, 0x2c, 0x84, 0x5e, 0x1c, 0x0b, 0xa1, - 0x07, 0x7f, 0xbf, 0x10, 0xf7, 0xbd, 0x7f, 0xff, 0xbc, 0x7e, 0xde, 0x89, 0x79, 0x3b, 0xe4, 0xff, - 0x7f, 0x05, 0x00, 0x00, 0xff, 0xff, 0x14, 0xb4, 0xf2, 0xfe, 0x19, 0x0e, 0x00, 0x00, + // 1488 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x57, 0x31, 0x6c, 0xdb, 0x46, + 0x17, 0x16, 0x25, 0x59, 0xb6, 0x4e, 0xb2, 0xcd, 0x9c, 0x1d, 0x5b, 0xd6, 0x9f, 0x9f, 0x54, 0xd9, + 0x22, 0x30, 0x82, 0x58, 0x4e, 0xdc, 0x22, 0x45, 0x9d, 0x2e, 0xa2, 0x45, 0x37, 0x2a, 0x52, 0x49, + 0xa0, 0x14, 0x19, 0x49, 0x07, 0x82, 0x16, 0x2f, 0x32, 0x5b, 0x91, 0xa7, 0x8a, 0x27, 0xc7, 0x46, + 0x97, 0x8c, 0x81, 0x0a, 0x14, 0x19, 0x03, 0x14, 0x02, 0x02, 0x74, 0xeb, 0xda, 0xcc, 0x9d, 0x83, + 0xa2, 0x43, 0x90, 0x29, 0x68, 0x01, 0xa5, 0x71, 0x80, 0x22, 0xcd, 0xe8, 0xa1, 0x5b, 0x81, 0x82, + 0xbc, 0xa3, 0x45, 0x49, 0x46, 0x1d, 0x37, 0x93, 0xc9, 0x77, 0xdf, 0xfb, 0xbe, 0x77, 0x9f, 0xee, + 0xbd, 0xa3, 0xc1, 0xb9, 0x3a, 0x76, 0x2c, 0xec, 0xac, 0x36, 0xf0, 0xee, 0xea, 0xee, 0xe5, 0x6d, + 0x44, 0xf4, 0xcb, 0xee, 0x73, 0xb6, 0xd5, 0xc6, 0x04, 0x43, 0x48, 0x57, 0xb3, 0x6e, 0x84, 0xad, + 0xa6, 0x05, 0x96, 0xb1, 0xad, 0x3b, 0xe8, 0x28, 0xa5, 0x8e, 0x4d, 0x9b, 0xe6, 0xa4, 0xe7, 0x1b, + 0xb8, 0x81, 0xbd, 0xc7, 0x55, 0xf7, 0x89, 0x45, 0xc5, 0x06, 0xc6, 0x8d, 0x26, 0x5a, 0xf5, 0xde, + 0xb6, 0x3b, 0xb7, 0x57, 0x89, 0x69, 0x21, 0x87, 0xe8, 0x56, 0x8b, 0x01, 0x96, 0x46, 0x01, 0xba, + 0xbd, 0xcf, 0x96, 0x84, 0xd1, 0x25, 0xa3, 0xd3, 0xd6, 0x89, 0x89, 0x7d, 0xc5, 0x25, 0x5a, 0x91, + 0x46, 0x45, 0x59, 0xc9, 0xde, 0x8b, 0xf4, 0x23, 0x07, 0xe0, 0x16, 0x32, 0x1b, 0x3b, 0x04, 0x19, + 0x35, 0x4c, 0x50, 0xa9, 0xe5, 0xe6, 0xc1, 0x2b, 0x20, 0x86, 0xbd, 0xa7, 0x14, 0x97, 0xe1, 0x96, + 0x67, 0xd6, 0x84, 0xec, 0xf8, 0x46, 0xb3, 0x03, 0xbc, 0xca, 0xd0, 0x10, 0x81, 0xd8, 0x1d, 0x8f, + 0x2d, 0x15, 0xce, 0x70, 0xcb, 0x71, 0xf9, 0xb3, 0xc7, 0x7d, 0x31, 0xf4, 0x6b, 0x5f, 0x3c, 0xdf, + 0x30, 0xc9, 0x4e, 0x67, 0x3b, 0x5b, 0xc7, 0x16, 0xd3, 0x67, 0x7f, 0x56, 0x1c, 0xe3, 0xcb, 0x55, + 0xb2, 0xdf, 0x42, 0x4e, 0x36, 0x8f, 0xea, 0x87, 0x7d, 0x71, 0x7a, 0x5f, 0xb7, 0x9a, 0xeb, 0x12, + 0x65, 0x91, 0x9e, 0x3e, 0x5a, 0x01, 0x4c, 0x39, 0x8f, 0xea, 0x2a, 0x23, 0x97, 0xb6, 0x40, 0xb2, + 0x8a, 0xf6, 0x48, 0xb9, 0x8d, 0x5b, 0xd8, 0xd1, 0x9b, 0x70, 0x1e, 0x4c, 0x10, 0x93, 0x34, 0x91, + 0x57, 0x6d, 0x5c, 0xa5, 0x2f, 0x30, 0x03, 0x12, 0x06, 0x72, 0xea, 0x6d, 0x93, 0xee, 0xc4, 0xab, + 0x48, 0x0d, 0x86, 0xd6, 0x67, 0x5f, 0x3d, 0x14, 0xb9, 0xa7, 0x8f, 0x56, 0x26, 0x37, 0xb0, 0x4d, + 0x90, 0x4d, 0xa4, 0x3f, 0x39, 0x30, 0x99, 0x47, 0x2d, 0xec, 0x98, 0x04, 0x7e, 0x08, 0x12, 0x2d, + 0x26, 0xa0, 0x99, 0x86, 0x47, 0x1d, 0x95, 0x17, 0x0e, 0xfb, 0x22, 0xa4, 0x25, 0x06, 0x16, 0x25, + 0x15, 0xf8, 0x6f, 0x05, 0x03, 0x5e, 0x01, 0x71, 0x83, 0x72, 0xe0, 0x36, 0xf3, 0x21, 0xf5, 0xf4, + 0xd1, 0xca, 0x3c, 0xdb, 0x48, 0xce, 0x30, 0xda, 0xc8, 0x71, 0x2a, 0xa4, 0x6d, 0xda, 0x0d, 0x75, + 0x00, 0x85, 0x75, 0x10, 0xd3, 0x2d, 0xdc, 0xb1, 0x49, 0x2a, 0x92, 0x89, 0x2c, 0x27, 0xd6, 0x96, + 0x7c, 0xd3, 0xdd, 0x93, 0x74, 0xe4, 0xfa, 0x06, 0x36, 0x6d, 0xf9, 0x92, 0xeb, 0xeb, 0x0f, 0xcf, + 0xc5, 0xe5, 0x37, 0xf0, 0xd5, 0x4d, 0x70, 0x54, 0x46, 0xbd, 0x3e, 0x75, 0xef, 0xa1, 0x18, 0x7a, + 0xf5, 0x50, 0x0c, 0x49, 0x7f, 0xc5, 0xc0, 0xd4, 0x91, 0x83, 0x1f, 0x1c, 0xb7, 0xd9, 0xb9, 0xd7, + 0x7d, 0x31, 0x6c, 0x1a, 0x87, 0x7d, 0x31, 0x4e, 0xb7, 0x3c, 0xba, 0xd3, 0xab, 0x60, 0xb2, 0x4e, + 0x9d, 0xf3, 0xf6, 0x99, 0x58, 0x9b, 0xcf, 0xd2, 0xa3, 0x98, 0xf5, 0x8f, 0x62, 0x36, 0x67, 0xef, + 0xcb, 0x89, 0x9f, 0x07, 0x16, 0xab, 0x7e, 0x06, 0xac, 0x81, 0x98, 0x43, 0x74, 0xd2, 0x71, 0x52, + 0x11, 0xef, 0x8c, 0x49, 0xc7, 0x9d, 0x31, 0xbf, 0xc0, 0x8a, 0x87, 0x94, 0xd3, 0x87, 0x7d, 0x71, + 0x61, 0xc4, 0x7e, 0x4a, 0x22, 0xa9, 0x8c, 0x0d, 0xb6, 0x00, 0xbc, 0x6d, 0xda, 0x7a, 0x53, 0x23, + 0x7a, 0xb3, 0xb9, 0xaf, 0xb5, 0x91, 0xd3, 0x69, 0x92, 0x54, 0xd4, 0xab, 0x4f, 0x3c, 0x4e, 0xa3, + 0xea, 0xe2, 0x54, 0x0f, 0x26, 0xbf, 0xe3, 0x1a, 0x7b, 0xd8, 0x17, 0x97, 0xa8, 0xc8, 0x38, 0x91, + 0xa4, 0xf2, 0x5e, 0x30, 0x90, 0x04, 0x3f, 0x07, 0x09, 0xa7, 0xb3, 0x6d, 0x99, 0x44, 0x73, 0x9b, + 0x36, 0x35, 0xe1, 0x49, 0xa5, 0xc7, 0xac, 0xa8, 0xfa, 0x1d, 0x2d, 0x0b, 0x4c, 0x85, 0x9d, 0xa4, + 0x40, 0xb2, 0x74, 0xff, 0xb9, 0xc8, 0xa9, 0x80, 0x46, 0xdc, 0x04, 0x68, 0x02, 0x9e, 0x1d, 0x11, + 0x0d, 0xd9, 0x06, 0x55, 0x88, 0x9d, 0xa8, 0xf0, 0x2e, 0x53, 0x58, 0xa4, 0x0a, 0xa3, 0x0c, 0x54, + 0x66, 0x86, 0x85, 0x15, 0xdb, 0xf0, 0xa4, 0xee, 0x71, 0x60, 0x9a, 0x60, 0xa2, 0x37, 0x35, 0xb6, + 0x90, 0x9a, 0x3c, 0xe9, 0x20, 0x5e, 0x63, 0x3a, 0xf3, 0x54, 0x67, 0x28, 0x5b, 0x3a, 0xd5, 0x01, + 0x4d, 0x7a, 0xb9, 0x7e, 0xf3, 0x35, 0xc1, 0x99, 0x5d, 0x4c, 0x4c, 0xbb, 0xe1, 0xfe, 0xbc, 0x6d, + 0x66, 0xec, 0xd4, 0x89, 0xdb, 0x7e, 0x8f, 0x95, 0x93, 0xa2, 0xe5, 0x8c, 0x51, 0xd0, 0x7d, 0xcf, + 0xd2, 0x78, 0xc5, 0x0d, 0x7b, 0x1b, 0xbf, 0x0d, 0x58, 0x68, 0x60, 0x71, 0xfc, 0x44, 0x2d, 0x89, + 0x69, 0x2d, 0x0c, 0x69, 0x0d, 0x3b, 0x3c, 0x4d, 0xa3, 0xcc, 0xe0, 0xf5, 0xa8, 0x3b, 0x6f, 0xa4, + 0xbb, 0x11, 0x90, 0x08, 0x1e, 0x9f, 0x22, 0x88, 0xec, 0x23, 0x87, 0xce, 0x2e, 0xf9, 0xe3, 0x53, + 0x4c, 0xcc, 0x82, 0x4d, 0x02, 0x03, 0xb2, 0x60, 0x13, 0xd5, 0x25, 0x82, 0x35, 0x30, 0xa9, 0x6f, + 0x3b, 0x44, 0x37, 0xd9, 0xcc, 0x7b, 0x4b, 0x4e, 0x9f, 0x0c, 0x5e, 0x07, 0x61, 0x1b, 0x7b, 0xcd, + 0xfa, 0xb6, 0x94, 0x61, 0x1b, 0xc3, 0x0e, 0x48, 0xda, 0x58, 0xbb, 0x63, 0x92, 0x1d, 0x6d, 0x17, + 0x11, 0xec, 0x35, 0x68, 0x5c, 0xae, 0x9c, 0x8e, 0xf7, 0xb0, 0x2f, 0xce, 0x51, 0xfb, 0x83, 0x5c, + 0xd2, 0x88, 0x1c, 0xb0, 0xf1, 0x96, 0x49, 0x76, 0x6a, 0x88, 0x60, 0xf6, 0x13, 0xfc, 0xcd, 0x81, + 0xa8, 0x7b, 0x7d, 0xfd, 0xf7, 0x21, 0x9f, 0x05, 0x13, 0xbb, 0x98, 0xa0, 0x93, 0x07, 0x3c, 0x85, + 0xc1, 0xf5, 0xa3, 0x1b, 0x35, 0xf2, 0x26, 0x37, 0xaa, 0x1c, 0x4e, 0x71, 0x47, 0xb7, 0xea, 0x26, + 0x98, 0xa4, 0x4f, 0x4e, 0x2a, 0xea, 0x35, 0xe4, 0xf9, 0xe3, 0x92, 0xc7, 0xaf, 0x71, 0x39, 0xea, + 0xba, 0xa9, 0xfa, 0xc9, 0xeb, 0x53, 0x0f, 0xfc, 0xd9, 0xff, 0x53, 0x18, 0x4c, 0xb3, 0x56, 0x2b, + 0xeb, 0x6d, 0xdd, 0x72, 0xe0, 0x77, 0x1c, 0x48, 0x58, 0xa6, 0x7d, 0xd4, 0xf9, 0xdc, 0x49, 0x9d, + 0xaf, 0xb9, 0xdc, 0xaf, 0xfb, 0xe2, 0xd9, 0x40, 0xd6, 0x45, 0x6c, 0x99, 0x04, 0x59, 0x2d, 0xb2, + 0x3f, 0x70, 0x30, 0xb0, 0x7c, 0xba, 0x81, 0x00, 0x2c, 0xd3, 0xf6, 0xc7, 0xc1, 0xb7, 0x1c, 0x80, + 0x96, 0xbe, 0xe7, 0x13, 0x69, 0x2d, 0xd4, 0x36, 0xb1, 0xc1, 0x2e, 0x9d, 0xa5, 0xb1, 0x26, 0xcd, + 0xb3, 0xef, 0x1f, 0x59, 0x61, 0x45, 0x9e, 0x1b, 0x4f, 0x1e, 0xaa, 0x95, 0x8d, 0xfb, 0x71, 0x94, + 0xf4, 0xc0, 0x6d, 0x63, 0xde, 0xd2, 0xf7, 0x7c, 0xbb, 0x68, 0xf8, 0x1b, 0x0e, 0x24, 0x6b, 0x5e, + 0x6f, 0x33, 0xff, 0xbe, 0x06, 0xac, 0xd7, 0xfd, 0xda, 0xb8, 0x93, 0x6a, 0xbb, 0xca, 0x6a, 0x5b, + 0x1c, 0xca, 0x1b, 0x2a, 0x6b, 0x7e, 0x68, 0xb4, 0x04, 0x2b, 0x4a, 0xd2, 0x18, 0xab, 0xe6, 0xb7, + 0x30, 0x9b, 0x28, 0xac, 0x98, 0x5b, 0x20, 0xf6, 0x55, 0x07, 0xb7, 0x3b, 0x96, 0x57, 0x45, 0x52, + 0x96, 0x4f, 0xf7, 0x19, 0xf6, 0xba, 0x2f, 0xf2, 0x34, 0x7f, 0x50, 0x8d, 0xca, 0x18, 0x61, 0x1d, + 0xc4, 0xc9, 0x4e, 0x1b, 0x39, 0x3b, 0xb8, 0x49, 0x7f, 0x80, 0x24, 0x75, 0xf9, 0x54, 0xf4, 0x73, + 0x47, 0x14, 0x01, 0x85, 0x01, 0x2f, 0xec, 0x72, 0x60, 0xc6, 0xed, 0x64, 0x6d, 0x20, 0x15, 0xf1, + 0xa4, 0xea, 0xa7, 0x96, 0x4a, 0x0d, 0xf3, 0x0c, 0xf9, 0x7b, 0x96, 0xf9, 0x3b, 0x84, 0x90, 0xd4, + 0x69, 0x37, 0x50, 0xf5, 0xdf, 0x2f, 0xfc, 0xc1, 0x01, 0x10, 0xf8, 0x36, 0xbe, 0x08, 0x16, 0x6b, + 0xa5, 0xaa, 0xa2, 0x95, 0xca, 0xd5, 0x42, 0xa9, 0xa8, 0xdd, 0x28, 0x56, 0xca, 0xca, 0x46, 0x61, + 0xb3, 0xa0, 0xe4, 0xf9, 0x50, 0x7a, 0xb6, 0xdb, 0xcb, 0x24, 0x28, 0x50, 0x71, 0x45, 0xa0, 0x04, + 0x66, 0x83, 0xe8, 0x9b, 0x4a, 0x85, 0xe7, 0xd2, 0xd3, 0xdd, 0x5e, 0x26, 0x4e, 0x51, 0x37, 0x91, + 0x03, 0x2f, 0x80, 0xb9, 0x20, 0x26, 0x27, 0x57, 0xaa, 0xb9, 0x42, 0x91, 0x0f, 0xa7, 0xcf, 0x74, + 0x7b, 0x99, 0x69, 0x8a, 0xcb, 0xb1, 0x21, 0x9c, 0x01, 0x33, 0x41, 0x6c, 0xb1, 0xc4, 0x47, 0xd2, + 0xc9, 0x6e, 0x2f, 0x33, 0x45, 0x61, 0x45, 0x0c, 0xd7, 0x40, 0x6a, 0x18, 0xa1, 0x6d, 0x15, 0xaa, + 0xd7, 0xb4, 0x9a, 0x52, 0x2d, 0xf1, 0xd1, 0xf4, 0x7c, 0xb7, 0x97, 0xe1, 0x7d, 0xac, 0x3f, 0x15, + 0xd3, 0xd1, 0x7b, 0xdf, 0x0b, 0xa1, 0x0b, 0xbf, 0x84, 0xc1, 0xcc, 0xf0, 0x07, 0x17, 0xcc, 0x82, + 0xff, 0x95, 0xd5, 0x52, 0xb9, 0x54, 0xc9, 0x5d, 0xd7, 0x2a, 0xd5, 0x5c, 0xf5, 0x46, 0x65, 0x64, + 0xc3, 0xde, 0x56, 0x28, 0xb8, 0x68, 0x36, 0xe1, 0x55, 0x20, 0x8c, 0xe2, 0xf3, 0x4a, 0xb9, 0x54, + 0x29, 0x54, 0xb5, 0xb2, 0xa2, 0x16, 0x4a, 0x79, 0x9e, 0x4b, 0x2f, 0x76, 0x7b, 0x99, 0x39, 0x9a, + 0x32, 0xd4, 0x54, 0xf0, 0x23, 0xf0, 0xff, 0xd1, 0xe4, 0x5a, 0xa9, 0x5a, 0x28, 0x7e, 0xe2, 0xe7, + 0x86, 0xd3, 0x0b, 0xdd, 0x5e, 0x06, 0xd2, 0xdc, 0x5a, 0xa0, 0x03, 0xe0, 0x45, 0xb0, 0x30, 0x9a, + 0x5a, 0xce, 0x55, 0x2a, 0x4a, 0x9e, 0x8f, 0xa4, 0xf9, 0x6e, 0x2f, 0x93, 0xa4, 0x39, 0x65, 0xdd, + 0x71, 0x90, 0x01, 0x2f, 0x81, 0xd4, 0x28, 0x5a, 0x55, 0x3e, 0x55, 0x36, 0xaa, 0x4a, 0x9e, 0x8f, + 0xa6, 0x61, 0xb7, 0x97, 0x99, 0xa1, 0x78, 0x15, 0x7d, 0x81, 0xea, 0x04, 0x1d, 0xcb, 0xbf, 0x99, + 0x2b, 0x5c, 0x57, 0xf2, 0xfc, 0x44, 0x90, 0x7f, 0x53, 0x37, 0x9b, 0xc8, 0xa0, 0x76, 0xca, 0xc5, + 0xc7, 0x2f, 0x84, 0xd0, 0xb3, 0x17, 0x42, 0xe8, 0xee, 0x81, 0x10, 0x7a, 0x7c, 0x20, 0x70, 0x4f, + 0x0e, 0x04, 0xee, 0xf7, 0x03, 0x81, 0xbb, 0xff, 0x52, 0x08, 0x3d, 0x79, 0x29, 0x84, 0x9e, 0xbd, + 0x14, 0x42, 0xb7, 0xfe, 0x7d, 0x20, 0xee, 0x79, 0xff, 0x78, 0x7a, 0xe7, 0x79, 0x3b, 0xe6, 0xcd, + 0x90, 0xf7, 0xff, 0x09, 0x00, 0x00, 0xff, 0xff, 0x41, 0x15, 0xd6, 0xd0, 0x93, 0x0e, 0x00, 0x00, } func (this *TextProposal) Equal(that interface{}) bool { diff --git a/x/gov/types/query.pb.go b/x/gov/types/query.pb.go index 4ca1f33ae5f4..3edf14389cf5 100644 --- a/x/gov/types/query.pb.go +++ b/x/gov/types/query.pb.go @@ -6,6 +6,7 @@ package types import ( context "context" fmt "fmt" + _ "github.com/cosmos/cosmos-proto" query "github.com/cosmos/cosmos-sdk/types/query" _ "github.com/gogo/protobuf/gogoproto" grpc1 "github.com/gogo/protobuf/grpc" @@ -839,68 +840,70 @@ func init() { func init() { proto.RegisterFile("cosmos/gov/v1beta1/query.proto", fileDescriptor_e35c0d133e91c0a2) } var fileDescriptor_e35c0d133e91c0a2 = []byte{ - // 963 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x57, 0x41, 0x6f, 0x1b, 0x55, - 0x10, 0xf6, 0x4b, 0x9c, 0xd6, 0x9e, 0xb4, 0x01, 0x86, 0x00, 0xd6, 0x12, 0xec, 0xb0, 0xa2, 0xad, - 0x49, 0xa9, 0x97, 0x24, 0x05, 0xd4, 0x16, 0x50, 0x89, 0x50, 0x5b, 0x54, 0x09, 0x15, 0xa7, 0x02, - 0x89, 0x03, 0xd1, 0xa6, 0x5e, 0x2d, 0x2b, 0x1c, 0xbf, 0xad, 0xdf, 0xb3, 0x45, 0x14, 0x22, 0x24, - 0x4e, 0x20, 0x2e, 0xa0, 0x22, 0x6e, 0x88, 0x4a, 0x95, 0xf8, 0x2d, 0x3d, 0x56, 0x82, 0x03, 0x27, - 0x84, 0x12, 0x0e, 0x88, 0xdf, 0xc0, 0x01, 0xed, 0x7b, 0xf3, 0xd6, 0xbb, 0xce, 0x3a, 0xbb, 0x29, - 0x55, 0x4f, 0xb1, 0xe7, 0x7d, 0x33, 0xf3, 0x7d, 0x33, 0xf3, 0xe6, 0xc5, 0x50, 0xbf, 0xc5, 0xc5, - 0x16, 0x17, 0x8e, 0xcf, 0x87, 0xce, 0x70, 0x79, 0xd3, 0x93, 0xee, 0xb2, 0x73, 0x7b, 0xe0, 0xf5, - 0xb7, 0x5b, 0x61, 0x9f, 0x4b, 0x8e, 0xa8, 0xcf, 0x5b, 0x3e, 0x1f, 0xb6, 0xe8, 0xdc, 0x5a, 0x22, - 0x9f, 0x4d, 0x57, 0x78, 0x1a, 0x1c, 0xbb, 0x86, 0xae, 0x1f, 0xf4, 0x5c, 0x19, 0xf0, 0x9e, 0xf6, - 0xb7, 0xe6, 0x7d, 0xee, 0x73, 0xf5, 0xd1, 0x89, 0x3e, 0x91, 0x75, 0xc1, 0xe7, 0xdc, 0xef, 0x7a, - 0x8e, 0x1b, 0x06, 0x8e, 0xdb, 0xeb, 0x71, 0xa9, 0x5c, 0x84, 0x39, 0xcd, 0xe0, 0x14, 0xe5, 0x57, - 0xa7, 0xf6, 0x1b, 0x30, 0xff, 0x41, 0x94, 0xf3, 0x46, 0x9f, 0x87, 0x5c, 0xb8, 0xdd, 0xb6, 0x77, - 0x7b, 0xe0, 0x09, 0x89, 0x0d, 0x98, 0x0d, 0xc9, 0xb4, 0x11, 0x74, 0x6a, 0x6c, 0x91, 0x35, 0xcb, - 0x6d, 0x30, 0xa6, 0xf7, 0x3a, 0xf6, 0x47, 0xf0, 0xcc, 0x98, 0xa3, 0x08, 0x79, 0x4f, 0x78, 0xf8, - 0x36, 0x54, 0x0c, 0x4c, 0xb9, 0xcd, 0xae, 0x2c, 0xb4, 0x0e, 0xca, 0x6e, 0x19, 0xbf, 0xb5, 0xf2, - 0xfd, 0x3f, 0x1a, 0xa5, 0x76, 0xec, 0x63, 0xff, 0xc3, 0xc6, 0x22, 0x0b, 0xc3, 0xe9, 0x3a, 0x3c, - 0x11, 0x73, 0x12, 0xd2, 0x95, 0x03, 0xa1, 0x12, 0xcc, 0xad, 0xd8, 0x87, 0x25, 0x58, 0x57, 0xc8, - 0xf6, 0x5c, 0x98, 0xfa, 0x8e, 0xf3, 0x30, 0x33, 0xe4, 0xd2, 0xeb, 0xd7, 0xa6, 0x16, 0x59, 0xb3, - 0xda, 0xd6, 0x5f, 0x70, 0x01, 0xaa, 0x1d, 0x2f, 0xe4, 0x22, 0x90, 0xbc, 0x5f, 0x9b, 0x56, 0x27, - 0x23, 0x03, 0x5e, 0x01, 0x18, 0xb5, 0xa4, 0x56, 0x56, 0xe2, 0x4e, 0x9b, 0xdc, 0x51, 0xff, 0x5a, - 0xba, 0xd9, 0x31, 0x05, 0xd7, 0xf7, 0x88, 0x7c, 0x3b, 0xe1, 0x79, 0xb1, 0xf2, 0xf5, 0xdd, 0x46, - 0xe9, 0xef, 0xbb, 0x8d, 0x92, 0x7d, 0x8f, 0xc1, 0xb3, 0xe3, 0x62, 0xa9, 0x8e, 0x97, 0xa1, 0x6a, - 0x28, 0x47, 0x3a, 0xa7, 0x0b, 0x16, 0x72, 0xe4, 0x84, 0x57, 0x53, 0x74, 0xa7, 0x14, 0xdd, 0x33, - 0xb9, 0x74, 0x75, 0xfa, 0x24, 0x5f, 0x7b, 0x1d, 0x9e, 0x54, 0x24, 0x3f, 0xe4, 0xd2, 0x2b, 0x3a, - 0x20, 0xd9, 0x05, 0x4e, 0x48, 0xbf, 0x0a, 0x4f, 0x25, 0x82, 0x92, 0xe8, 0x15, 0x28, 0x47, 0x38, - 0x1a, 0x9c, 0x5a, 0x96, 0xde, 0x08, 0x4f, 0x5a, 0x15, 0xd6, 0xfe, 0x22, 0x11, 0x48, 0x14, 0xa6, - 0x77, 0x25, 0xa3, 0x38, 0x0f, 0xd1, 0x4b, 0xfb, 0x0e, 0x03, 0x4c, 0xa6, 0x27, 0x21, 0xe7, 0xb5, - 0x7a, 0xd3, 0xb9, 0x3c, 0x25, 0x1a, 0xfc, 0xe8, 0x3a, 0xf6, 0x1a, 0x91, 0xba, 0xe1, 0xf6, 0xdd, - 0xad, 0x54, 0x51, 0x94, 0x61, 0x43, 0x6e, 0x87, 0xba, 0xc8, 0xd5, 0xc8, 0x2d, 0x32, 0xdd, 0xdc, - 0x0e, 0x3d, 0xfb, 0x5f, 0x06, 0x4f, 0xa7, 0xfc, 0x48, 0xcd, 0x75, 0x38, 0x39, 0xe4, 0x32, 0xe8, - 0xf9, 0x1b, 0x1a, 0x4c, 0xfd, 0x59, 0x9c, 0xa0, 0x2a, 0xe8, 0xf9, 0x3a, 0x00, 0xa9, 0x3b, 0x31, - 0x4c, 0xd8, 0xf0, 0x7d, 0x98, 0xa3, 0x2b, 0x65, 0xa2, 0x69, 0xa1, 0x2f, 0x66, 0x45, 0x7b, 0x57, - 0x23, 0x53, 0xe1, 0x4e, 0x76, 0x92, 0x46, 0xbc, 0x06, 0x27, 0xa4, 0xdb, 0xed, 0x6e, 0x9b, 0x68, - 0xd3, 0x2a, 0x5a, 0x23, 0x2b, 0xda, 0xcd, 0x08, 0x97, 0x8a, 0x35, 0x2b, 0x47, 0x26, 0xfb, 0x13, - 0x52, 0x4f, 0x49, 0x0b, 0xcf, 0x52, 0x6a, 0x6b, 0x4c, 0x8d, 0x6d, 0x8d, 0xc4, 0xc8, 0xaf, 0xd3, - 0xb2, 0x8d, 0xe3, 0x53, 0x79, 0x2f, 0xc1, 0x71, 0x82, 0x53, 0x61, 0x9f, 0x3f, 0xa4, 0x14, 0x44, - 0xdc, 0x78, 0xd8, 0x5f, 0xa6, 0x83, 0x3e, 0xfe, 0x1b, 0xf0, 0xb3, 0x59, 0xd8, 0x23, 0x06, 0xa4, - 0xeb, 0x2d, 0xa8, 0x10, 0x4b, 0x73, 0x0f, 0x0a, 0x08, 0x8b, 0x5d, 0x1e, 0xdd, 0x6d, 0xb8, 0x08, - 0xcf, 0x29, 0x82, 0xaa, 0xfd, 0x6d, 0x4f, 0x0c, 0xba, 0xf2, 0x08, 0xef, 0x5c, 0xed, 0xa0, 0x6f, - 0xdc, 0xb7, 0x19, 0x35, 0x3e, 0xd4, 0xb5, 0xc9, 0x23, 0xa7, 0xfd, 0xcc, 0x5d, 0x57, 0x3e, 0x2b, - 0xbf, 0x55, 0x61, 0x46, 0x45, 0xc6, 0x1f, 0x18, 0x54, 0xcc, 0x16, 0xc7, 0x66, 0x56, 0x90, 0xac, - 0x27, 0xda, 0x7a, 0xb9, 0x00, 0x52, 0x13, 0xb5, 0x57, 0xbf, 0xfa, 0xf5, 0xaf, 0x3b, 0x53, 0xe7, - 0xf0, 0xac, 0x93, 0xf1, 0xcf, 0x40, 0xfc, 0x60, 0x38, 0x3b, 0x89, 0x52, 0xec, 0xe2, 0x37, 0x0c, - 0xaa, 0xf1, 0xb3, 0x84, 0xf9, 0xd9, 0xcc, 0xe4, 0x59, 0x4b, 0x45, 0xa0, 0xc4, 0xec, 0x94, 0x62, - 0xd6, 0xc0, 0x17, 0x0e, 0x65, 0x86, 0x3f, 0x32, 0x28, 0x47, 0xeb, 0x12, 0x5f, 0x9a, 0x18, 0x3b, - 0xf1, 0x38, 0x59, 0xa7, 0x72, 0x50, 0x94, 0xfc, 0x1d, 0x95, 0xfc, 0x12, 0x5e, 0x38, 0x42, 0x59, - 0x1c, 0xb5, 0xa9, 0x9d, 0x1d, 0xf5, 0x9c, 0xed, 0xe2, 0xf7, 0x0c, 0x66, 0xd4, 0xe6, 0xc7, 0xc3, - 0x73, 0xc6, 0xc5, 0x39, 0x9d, 0x07, 0x23, 0x6e, 0x17, 0x14, 0xb7, 0x55, 0x5c, 0x3e, 0x32, 0x37, - 0xfc, 0x96, 0xc1, 0x31, 0xda, 0x8d, 0x93, 0xb3, 0xa5, 0x5e, 0x06, 0xeb, 0x4c, 0x2e, 0x8e, 0x68, - 0xbd, 0xaa, 0x68, 0x2d, 0x61, 0x33, 0x93, 0x96, 0xc2, 0x3a, 0x3b, 0x89, 0x47, 0x66, 0x17, 0x7f, - 0x61, 0x70, 0x9c, 0x6e, 0x38, 0x4e, 0x4e, 0x93, 0x5e, 0xb9, 0x56, 0x33, 0x1f, 0x48, 0x84, 0xae, - 0x29, 0x42, 0x6b, 0x78, 0xf9, 0x28, 0x75, 0x32, 0x2b, 0xc6, 0xd9, 0x89, 0xd7, 0xf4, 0x2e, 0xfe, - 0xc4, 0xa0, 0x62, 0x56, 0x18, 0xe6, 0x12, 0x10, 0xf9, 0xd7, 0x70, 0x7c, 0x1f, 0xda, 0x6f, 0x2a, - 0xae, 0xaf, 0xe3, 0xf9, 0x87, 0xe1, 0x8a, 0xf7, 0x18, 0xcc, 0x26, 0xb6, 0x09, 0x9e, 0x9d, 0x98, - 0xf8, 0xe0, 0x9e, 0xb3, 0x5e, 0x29, 0x06, 0xfe, 0x3f, 0xc3, 0xa7, 0xd6, 0xda, 0xda, 0xda, 0xfd, - 0xbd, 0x3a, 0x7b, 0xb0, 0x57, 0x67, 0x7f, 0xee, 0xd5, 0xd9, 0x77, 0xfb, 0xf5, 0xd2, 0x83, 0xfd, - 0x7a, 0xe9, 0xf7, 0xfd, 0x7a, 0xe9, 0xe3, 0xa6, 0x1f, 0xc8, 0x4f, 0x07, 0x9b, 0xad, 0x5b, 0x7c, - 0xcb, 0x84, 0xd5, 0x7f, 0xce, 0x89, 0xce, 0x67, 0xce, 0xe7, 0x2a, 0x47, 0x34, 0x32, 0x62, 0xf3, - 0x98, 0xfa, 0x6d, 0xb2, 0xfa, 0x5f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x6f, 0x86, 0xe2, 0x1a, 0x4f, - 0x0d, 0x00, 0x00, + // 994 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x57, 0x41, 0x6f, 0x1b, 0x45, + 0x14, 0xf6, 0x24, 0x4e, 0x6b, 0xbf, 0xb4, 0x01, 0x1e, 0x01, 0x8c, 0x29, 0x76, 0x58, 0xd1, 0xd6, + 0xa4, 0xc4, 0x4b, 0x92, 0x52, 0xd4, 0x16, 0x50, 0x6b, 0xa1, 0xb6, 0xa8, 0x12, 0x2a, 0x4e, 0x05, + 0x12, 0x97, 0x68, 0x53, 0xaf, 0x96, 0x15, 0x8e, 0x67, 0xeb, 0x19, 0x5b, 0x8d, 0x42, 0x84, 0xc4, + 0x09, 0xc4, 0x05, 0x54, 0xc4, 0x0d, 0xa8, 0x54, 0x89, 0x5f, 0xc0, 0x8f, 0xe8, 0xb1, 0x02, 0x0e, + 0x9c, 0x10, 0x4a, 0x38, 0xf0, 0x23, 0x38, 0xa0, 0x9d, 0x79, 0xb3, 0xde, 0x4d, 0xd6, 0xd9, 0x75, + 0xa9, 0x38, 0xc5, 0x9e, 0xf9, 0xbe, 0xf7, 0xbe, 0xf7, 0xcd, 0x9b, 0x37, 0x0e, 0xd4, 0x6e, 0x71, + 0xb1, 0xc9, 0x85, 0xed, 0xf1, 0xa1, 0x3d, 0x5c, 0xde, 0x70, 0xa5, 0xb3, 0x6c, 0xdf, 0x1e, 0xb8, + 0xfd, 0xad, 0x66, 0xd0, 0xe7, 0x92, 0x23, 0xea, 0xfd, 0xa6, 0xc7, 0x87, 0x4d, 0xda, 0xaf, 0x2e, + 0x12, 0x67, 0xc3, 0x11, 0xae, 0x06, 0x47, 0xd4, 0xc0, 0xf1, 0xfc, 0x9e, 0x23, 0x7d, 0xde, 0xd3, + 0xfc, 0xea, 0xbc, 0xc7, 0x3d, 0xae, 0x3e, 0xda, 0xe1, 0x27, 0x5a, 0x3d, 0xe1, 0x71, 0xee, 0x75, + 0x5d, 0xdb, 0x09, 0x7c, 0xdb, 0xe9, 0xf5, 0xb8, 0x54, 0x14, 0x61, 0x76, 0x53, 0x34, 0x85, 0xf9, + 0xf5, 0xee, 0xf3, 0x7a, 0x77, 0x5d, 0x07, 0x25, 0x79, 0xea, 0x8b, 0xf5, 0x06, 0xcc, 0xbf, 0x1f, + 0xca, 0xb9, 0xd1, 0xe7, 0x01, 0x17, 0x4e, 0xb7, 0xed, 0xde, 0x1e, 0xb8, 0x42, 0x62, 0x1d, 0x66, + 0x03, 0x5a, 0x5a, 0xf7, 0x3b, 0x15, 0xb6, 0xc0, 0x1a, 0xc5, 0x36, 0x98, 0xa5, 0x77, 0x3b, 0xd6, + 0x87, 0xf0, 0xcc, 0x3e, 0xa2, 0x08, 0x78, 0x4f, 0xb8, 0xf8, 0x36, 0x94, 0x0c, 0x4c, 0xd1, 0x66, + 0x57, 0x4e, 0x34, 0x0f, 0x3a, 0xd2, 0x34, 0xbc, 0x56, 0xf1, 0xc1, 0x1f, 0xf5, 0x42, 0x3b, 0xe2, + 0x58, 0x3f, 0x4c, 0xed, 0x8b, 0x2c, 0x8c, 0xa6, 0xeb, 0xf0, 0x44, 0xa4, 0x49, 0x48, 0x47, 0x0e, + 0x84, 0x4a, 0x30, 0xb7, 0x62, 0x1d, 0x96, 0x60, 0x4d, 0x21, 0xdb, 0x73, 0x41, 0xe2, 0x3b, 0x36, + 0x61, 0x66, 0xc8, 0xa5, 0xdb, 0xaf, 0x4c, 0x2d, 0xb0, 0x46, 0xb9, 0x55, 0xf9, 0xe5, 0xe7, 0xa5, + 0x79, 0x8a, 0x72, 0xb9, 0xd3, 0xe9, 0xbb, 0x42, 0xac, 0xc9, 0xbe, 0xdf, 0xf3, 0xda, 0x1a, 0x86, + 0xe7, 0xa0, 0xdc, 0x71, 0x03, 0x2e, 0x7c, 0xc9, 0xfb, 0x95, 0xe9, 0x0c, 0xce, 0x08, 0x8a, 0x57, + 0x00, 0x46, 0x27, 0x5c, 0x29, 0x2a, 0x43, 0x4e, 0x19, 0xbd, 0x61, 0x3b, 0x34, 0x75, 0xef, 0x44, + 0xb2, 0x1d, 0xcf, 0xa5, 0x82, 0xdb, 0x31, 0xe6, 0x85, 0xd2, 0x17, 0xf7, 0xea, 0x85, 0xbf, 0xef, + 0xd5, 0x0b, 0xd6, 0x7d, 0x06, 0xcf, 0xee, 0x37, 0x88, 0xbc, 0xbf, 0x04, 0x65, 0x53, 0x66, 0xe8, + 0xcd, 0x74, 0x4e, 0xf3, 0x47, 0x24, 0xbc, 0x9a, 0x90, 0x3b, 0xa5, 0xe4, 0x9e, 0xce, 0x94, 0xab, + 0xd3, 0xc7, 0xf5, 0x5a, 0x9b, 0xf0, 0xa4, 0x12, 0xf9, 0x01, 0x97, 0x6e, 0xde, 0xa6, 0x9a, 0xf4, + 0x50, 0x62, 0xa6, 0x5c, 0x85, 0xa7, 0x62, 0xe9, 0xc8, 0x8e, 0x15, 0x28, 0x86, 0x38, 0x6a, 0xc3, + 0x4a, 0x9a, 0x13, 0x21, 0x9e, 0x5c, 0x50, 0x58, 0xeb, 0xd3, 0x58, 0x20, 0x91, 0x5b, 0xf8, 0x95, + 0x14, 0xdb, 0x1e, 0xe1, 0x94, 0xad, 0xbb, 0x0c, 0x30, 0x9e, 0x9e, 0x0a, 0x39, 0xab, 0x7d, 0x31, + 0x67, 0x9a, 0x55, 0x89, 0x06, 0x3f, 0xbe, 0xb3, 0x7c, 0x9d, 0x44, 0xdd, 0x70, 0xfa, 0xce, 0x66, + 0xc2, 0x14, 0xb5, 0xb0, 0x2e, 0xb7, 0x02, 0x6d, 0x72, 0x39, 0xa4, 0x85, 0x4b, 0x37, 0xb7, 0x02, + 0xd7, 0xfa, 0x87, 0xc1, 0xd3, 0x09, 0x1e, 0x55, 0x73, 0x1d, 0x8e, 0x0f, 0xb9, 0xf4, 0x7b, 0xde, + 0xba, 0x06, 0xd3, 0xf9, 0x2c, 0x8c, 0xa9, 0xca, 0xef, 0x79, 0x3a, 0x00, 0x55, 0x77, 0x6c, 0x18, + 0x5b, 0xc3, 0xf7, 0x60, 0x8e, 0x2e, 0x9b, 0x89, 0xa6, 0x0b, 0x7d, 0x29, 0x2d, 0xda, 0x3b, 0x1a, + 0x99, 0x08, 0x77, 0xbc, 0x13, 0x5f, 0xc4, 0x6b, 0x70, 0x4c, 0x3a, 0xdd, 0xee, 0x96, 0x89, 0x36, + 0xad, 0xa2, 0xd5, 0xd3, 0xa2, 0xdd, 0x0c, 0x71, 0x89, 0x58, 0xb3, 0x72, 0xb4, 0x64, 0xdd, 0xa1, + 0xea, 0x29, 0x69, 0xee, 0x5e, 0x4a, 0x4c, 0x9a, 0xa9, 0xdc, 0x93, 0x26, 0x76, 0x19, 0xd6, 0x68, + 0xa8, 0x47, 0x99, 0xc9, 0xf8, 0x8b, 0x70, 0x94, 0xe0, 0x64, 0xf9, 0x0b, 0x87, 0x98, 0x44, 0x25, + 0x19, 0x86, 0xf5, 0x59, 0x32, 0xe8, 0xff, 0x7f, 0x37, 0x7e, 0x64, 0xf4, 0x30, 0x8c, 0x14, 0x50, + 0x5d, 0x6f, 0x41, 0x89, 0x54, 0x9a, 0x1b, 0x92, 0xa3, 0xb0, 0x88, 0xf2, 0xf8, 0xee, 0xc9, 0x05, + 0x78, 0x4e, 0x09, 0x54, 0x8d, 0xd1, 0x76, 0xc5, 0xa0, 0x2b, 0x27, 0x78, 0x4f, 0x2b, 0x07, 0xb9, + 0xd1, 0xb9, 0xcd, 0xa8, 0xc6, 0xa2, 0x53, 0x1b, 0xdf, 0x8c, 0x9a, 0x67, 0xa6, 0x80, 0xe2, 0xac, + 0xfc, 0x56, 0x86, 0x19, 0x15, 0x19, 0xbf, 0x65, 0x50, 0x32, 0x93, 0x1f, 0x1b, 0x69, 0x41, 0xd2, + 0x7e, 0x0a, 0x54, 0x5f, 0xc9, 0x81, 0xd4, 0x42, 0xad, 0xd5, 0xcf, 0x7f, 0xfd, 0xeb, 0xee, 0xd4, + 0x12, 0x9e, 0xb1, 0x53, 0x7e, 0x8f, 0x44, 0x8f, 0x8c, 0xbd, 0x1d, 0xb3, 0x62, 0x07, 0xbf, 0x64, + 0x50, 0x8e, 0x9e, 0x32, 0xcc, 0xce, 0x66, 0x3a, 0xaf, 0xba, 0x98, 0x07, 0x4a, 0xca, 0x4e, 0x2a, + 0x65, 0x75, 0x7c, 0xf1, 0x50, 0x65, 0xf8, 0x1d, 0x83, 0x62, 0x38, 0x48, 0xf1, 0xe5, 0xb1, 0xb1, + 0x63, 0x0f, 0x5a, 0xf5, 0x64, 0x06, 0x8a, 0x92, 0x5f, 0x56, 0xc9, 0x2f, 0xe2, 0xf9, 0x09, 0x6c, + 0xb1, 0xd5, 0x0c, 0xb7, 0xb7, 0xd5, 0x43, 0xb7, 0x83, 0xdf, 0x30, 0x98, 0x51, 0x6f, 0x02, 0x1e, + 0x9e, 0x33, 0x32, 0xe7, 0x54, 0x16, 0x8c, 0xb4, 0x9d, 0x57, 0xda, 0x56, 0x71, 0x79, 0x62, 0x6d, + 0xf8, 0x15, 0x83, 0x23, 0x34, 0x35, 0xc7, 0x67, 0x4b, 0xbc, 0x19, 0xd5, 0xd3, 0x99, 0x38, 0x92, + 0xf5, 0x9a, 0x92, 0xb5, 0x88, 0x8d, 0x54, 0x59, 0x0a, 0x6b, 0x6f, 0xc7, 0x9e, 0x9f, 0x1d, 0xfc, + 0x89, 0xc1, 0x51, 0xba, 0xe1, 0x38, 0x3e, 0x4d, 0x72, 0x18, 0x57, 0x1b, 0xd9, 0x40, 0x12, 0x74, + 0x4d, 0x09, 0x6a, 0xe1, 0xa5, 0x49, 0x7c, 0x32, 0x23, 0xc6, 0xde, 0x8e, 0xc6, 0xf4, 0x0e, 0x7e, + 0xcf, 0xa0, 0x64, 0x46, 0x18, 0x66, 0x0a, 0x10, 0xd9, 0xd7, 0x70, 0xff, 0x3c, 0xb4, 0xde, 0x54, + 0x5a, 0xcf, 0xe1, 0xd9, 0x47, 0xd1, 0x8a, 0xf7, 0x19, 0xcc, 0xc6, 0xa6, 0x09, 0x9e, 0x19, 0x9b, + 0xf8, 0xe0, 0x9c, 0xab, 0xbe, 0x9a, 0x0f, 0xfc, 0x5f, 0x9a, 0x4f, 0x8d, 0xb5, 0x56, 0xeb, 0xc1, + 0x6e, 0x8d, 0x3d, 0xdc, 0xad, 0xb1, 0x3f, 0x77, 0x6b, 0xec, 0xeb, 0xbd, 0x5a, 0xe1, 0xe1, 0x5e, + 0xad, 0xf0, 0xfb, 0x5e, 0xad, 0xf0, 0x51, 0xc3, 0xf3, 0xe5, 0xc7, 0x83, 0x8d, 0xe6, 0x2d, 0xbe, + 0x69, 0xc2, 0xea, 0x3f, 0x4b, 0xa2, 0xf3, 0x89, 0x7d, 0x47, 0xe5, 0x08, 0x5b, 0x46, 0x6c, 0x1c, + 0x51, 0xff, 0x03, 0xad, 0xfe, 0x1b, 0x00, 0x00, 0xff, 0xff, 0x1b, 0x12, 0x1c, 0x27, 0xd2, 0x0d, + 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/gov/types/tx.pb.go b/x/gov/types/tx.pb.go index 4c7bb1f9d060..483eeb198c7f 100644 --- a/x/gov/types/tx.pb.go +++ b/x/gov/types/tx.pb.go @@ -6,13 +6,13 @@ package types import ( context "context" fmt "fmt" + _ "github.com/cosmos/cosmos-proto" types "github.com/cosmos/cosmos-sdk/codec/types" github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" types1 "github.com/cosmos/cosmos-sdk/types" _ "github.com/gogo/protobuf/gogoproto" grpc1 "github.com/gogo/protobuf/grpc" proto "github.com/gogo/protobuf/proto" - _ "github.com/regen-network/cosmos-proto" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" @@ -359,49 +359,50 @@ func init() { func init() { proto.RegisterFile("cosmos/gov/v1beta1/tx.proto", fileDescriptor_3c053992595e3dce) } var fileDescriptor_3c053992595e3dce = []byte{ - // 659 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x55, 0x3f, 0x6f, 0xd3, 0x5e, - 0x14, 0xb5, 0x93, 0xfe, 0x9a, 0x5f, 0x5f, 0x50, 0x4b, 0x9f, 0xa2, 0x92, 0xb8, 0x95, 0x1d, 0x19, - 0xb5, 0x8a, 0x84, 0x6a, 0xd3, 0x20, 0x81, 0x54, 0x26, 0x52, 0x54, 0x01, 0x52, 0x04, 0x18, 0x09, - 0x24, 0x96, 0xe2, 0x24, 0xae, 0x6b, 0x91, 0xf8, 0x5a, 0x79, 0x2f, 0x51, 0xb3, 0x31, 0x32, 0x01, - 0x23, 0x63, 0x67, 0x36, 0x24, 0x26, 0x3e, 0x41, 0xc5, 0xd4, 0x91, 0x01, 0x05, 0xd4, 0x2e, 0x80, - 0x98, 0xfa, 0x09, 0x90, 0xdf, 0x1f, 0xb7, 0x34, 0x6e, 0x54, 0x50, 0xa7, 0xe4, 0xdd, 0x73, 0xcf, - 0xf1, 0x3d, 0xf7, 0xdd, 0x6b, 0xa3, 0xf9, 0x26, 0x90, 0x0e, 0x10, 0xdb, 0x87, 0xbe, 0xdd, 0x5f, - 0x69, 0x78, 0xd4, 0x5d, 0xb1, 0xe9, 0xb6, 0x15, 0x75, 0x81, 0x02, 0xc6, 0x1c, 0xb4, 0x7c, 0xe8, - 0x5b, 0x02, 0xd4, 0x74, 0x41, 0x68, 0xb8, 0xc4, 0x4b, 0x18, 0x4d, 0x08, 0x42, 0xce, 0xd1, 0x16, - 0x52, 0x04, 0x63, 0x3e, 0x47, 0x4b, 0x1c, 0xdd, 0x60, 0x27, 0x5b, 0xc8, 0x73, 0xa8, 0xe0, 0x83, - 0x0f, 0x3c, 0x1e, 0xff, 0x93, 0x04, 0x1f, 0xc0, 0x6f, 0x7b, 0x36, 0x3b, 0x35, 0x7a, 0x9b, 0xb6, - 0x1b, 0x0e, 0x38, 0x64, 0xbe, 0xce, 0xa0, 0xd9, 0x3a, 0xf1, 0x1f, 0xf5, 0x1a, 0x9d, 0x80, 0x3e, - 0xe8, 0x42, 0x04, 0xc4, 0x6d, 0xe3, 0x9b, 0x28, 0xd7, 0x84, 0x90, 0x7a, 0x21, 0x2d, 0xaa, 0x65, - 0xb5, 0x92, 0xaf, 0x16, 0x2c, 0x2e, 0x61, 0x49, 0x09, 0xeb, 0x56, 0x38, 0xa8, 0xe5, 0x3f, 0x7d, - 0x58, 0xce, 0xad, 0xf1, 0x44, 0x47, 0x32, 0xf0, 0x2b, 0x15, 0xcd, 0x04, 0x61, 0x40, 0x03, 0xb7, - 0xbd, 0xd1, 0xf2, 0x22, 0x20, 0x01, 0x2d, 0x66, 0xca, 0xd9, 0x4a, 0xbe, 0x5a, 0xb2, 0x44, 0xb1, - 0xb1, 0x6f, 0xd9, 0x0c, 0x6b, 0x0d, 0x82, 0xb0, 0x76, 0x6f, 0x77, 0x68, 0x28, 0x87, 0x43, 0x63, - 0x6e, 0xe0, 0x76, 0xda, 0xab, 0xe6, 0x09, 0xbe, 0xf9, 0xee, 0xab, 0x51, 0xf1, 0x03, 0xba, 0xd5, - 0x6b, 0x58, 0x4d, 0xe8, 0x08, 0xcf, 0xe2, 0x67, 0x99, 0xb4, 0x9e, 0xdb, 0x74, 0x10, 0x79, 0x84, - 0x49, 0x11, 0x67, 0x5a, 0xb0, 0x6f, 0x73, 0x32, 0xd6, 0xd0, 0xff, 0x11, 0x73, 0xe6, 0x75, 0x8b, - 0xd9, 0xb2, 0x5a, 0x99, 0x72, 0x92, 0xf3, 0xea, 0xc5, 0x97, 0x3b, 0x86, 0xf2, 0x76, 0xc7, 0x50, - 0xbe, 0xef, 0x18, 0xca, 0x8b, 0x2f, 0x65, 0xc5, 0x6c, 0xa2, 0xd2, 0x48, 0x43, 0x1c, 0x8f, 0x44, - 0x10, 0x12, 0x0f, 0xaf, 0xa3, 0x7c, 0x24, 0x62, 0x1b, 0x41, 0x8b, 0x35, 0x67, 0xa2, 0xb6, 0xf8, - 0x73, 0x68, 0x1c, 0x0f, 0x1f, 0x0e, 0x0d, 0xcc, 0x6d, 0x1c, 0x0b, 0x9a, 0x0e, 0x92, 0xa7, 0xbb, - 0x2d, 0xf3, 0xbd, 0x8a, 0x72, 0x75, 0xe2, 0x3f, 0x06, 0x7a, 0x6e, 0x9a, 0xb8, 0x80, 0xfe, 0xeb, - 0x03, 0xf5, 0xba, 0xc5, 0x0c, 0xf3, 0xc8, 0x0f, 0xf8, 0x3a, 0x9a, 0x84, 0x88, 0x06, 0x10, 0x32, - 0xeb, 0xd3, 0x55, 0xdd, 0x1a, 0x9d, 0x47, 0x2b, 0xae, 0xe3, 0x3e, 0xcb, 0x72, 0x44, 0x76, 0x4a, - 0x63, 0x66, 0xd1, 0x8c, 0x28, 0x59, 0xb6, 0xc3, 0xfc, 0xa8, 0x26, 0xb1, 0x27, 0x5e, 0xe0, 0x6f, - 0x51, 0xaf, 0x85, 0x6f, 0xa4, 0xd9, 0x99, 0xfb, 0xe7, 0xfa, 0xd7, 0x51, 0x8e, 0x57, 0x44, 0x8a, - 0x59, 0x36, 0x44, 0x4b, 0x69, 0x06, 0xe4, 0xd3, 0x8f, 0x8c, 0xd4, 0x26, 0xe2, 0x89, 0x72, 0x24, - 0x39, 0xc5, 0x4f, 0x09, 0x5d, 0x3a, 0x51, 0x7b, 0xe2, 0xeb, 0x87, 0x8a, 0x50, 0x9d, 0xf8, 0x72, - 0x80, 0xce, 0xeb, 0x86, 0x16, 0xd0, 0x94, 0x18, 0x68, 0x90, 0x2e, 0x8f, 0x02, 0xb8, 0x89, 0x26, - 0xdd, 0x0e, 0xf4, 0x42, 0x2a, 0x8c, 0x8e, 0xd9, 0x96, 0xab, 0xb1, 0xb7, 0xbf, 0xda, 0x09, 0x21, - 0x9d, 0xd2, 0x86, 0x02, 0xc2, 0x47, 0x56, 0x65, 0x07, 0xaa, 0xbf, 0x32, 0x28, 0x5b, 0x27, 0x3e, - 0xde, 0x44, 0xd3, 0x27, 0xde, 0x0d, 0x8b, 0x69, 0xfd, 0x1f, 0xd9, 0x18, 0x6d, 0xf9, 0x4c, 0x69, - 0xc9, 0x62, 0xdd, 0x41, 0x13, 0x6c, 0x19, 0xe6, 0x4f, 0xa1, 0xc5, 0xa0, 0x76, 0x79, 0x0c, 0x98, - 0x28, 0x3d, 0x43, 0x17, 0xfe, 0x98, 0xc7, 0x71, 0x24, 0x99, 0xa4, 0x5d, 0x39, 0x43, 0x52, 0xf2, - 0x84, 0x87, 0x28, 0x27, 0x27, 0x43, 0x3f, 0x85, 0x27, 0x70, 0x6d, 0x69, 0x3c, 0x2e, 0x25, 0x6b, - 0xb5, 0xdd, 0x7d, 0x5d, 0xdd, 0xdb, 0xd7, 0xd5, 0x6f, 0xfb, 0xba, 0xfa, 0xe6, 0x40, 0x57, 0xf6, - 0x0e, 0x74, 0xe5, 0xf3, 0x81, 0xae, 0x3c, 0x1d, 0x7f, 0xc5, 0xdb, 0xec, 0x13, 0xc1, 0x2e, 0xba, - 0x31, 0xc9, 0xde, 0xcd, 0xd7, 0x7e, 0x07, 0x00, 0x00, 0xff, 0xff, 0x96, 0x26, 0x77, 0x3f, 0x8e, - 0x06, 0x00, 0x00, + // 680 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x55, 0x41, 0x6b, 0x13, 0x41, + 0x14, 0xde, 0x4d, 0x6a, 0x63, 0x27, 0xd2, 0xda, 0x21, 0xd4, 0x24, 0x95, 0xdd, 0x10, 0x69, 0x09, + 0x48, 0x76, 0x6d, 0x94, 0x0a, 0xf5, 0xd4, 0xad, 0x14, 0x15, 0x82, 0xba, 0x05, 0x05, 0x2f, 0x75, + 0x93, 0x9d, 0x4e, 0x17, 0x93, 0x9d, 0x25, 0x33, 0x09, 0xcd, 0x4d, 0xf0, 0xe2, 0x49, 0x3c, 0x7a, + 0xec, 0x55, 0xcf, 0xfd, 0x11, 0x45, 0x2f, 0x45, 0x3c, 0x78, 0x90, 0x28, 0xed, 0x45, 0xc4, 0x53, + 0x7f, 0x81, 0xec, 0xce, 0xcc, 0xb6, 0xb6, 0xdb, 0xb4, 0x42, 0x3d, 0x25, 0xf3, 0xbe, 0xf7, 0xbd, + 0xbc, 0xef, 0x9b, 0xf7, 0x32, 0x60, 0xba, 0x49, 0x68, 0x9b, 0x50, 0x13, 0x93, 0x9e, 0xd9, 0x9b, + 0x6b, 0x20, 0xe6, 0xcc, 0x99, 0x6c, 0xc3, 0x08, 0x3a, 0x84, 0x11, 0x08, 0x39, 0x68, 0x60, 0xd2, + 0x33, 0x04, 0x58, 0xd4, 0x04, 0xa1, 0xe1, 0x50, 0x14, 0x33, 0x9a, 0xc4, 0xf3, 0x39, 0xa7, 0x78, + 0x35, 0xa1, 0x60, 0xc8, 0xe7, 0x68, 0x81, 0xa3, 0xab, 0xd1, 0xc9, 0x14, 0xe5, 0x39, 0x94, 0xc3, + 0x04, 0x13, 0x1e, 0x0f, 0xbf, 0x49, 0x02, 0x26, 0x04, 0xb7, 0x90, 0x19, 0x9d, 0x1a, 0xdd, 0x35, + 0xd3, 0xf1, 0xfb, 0x1c, 0x2a, 0xbf, 0x4f, 0x81, 0xc9, 0x3a, 0xc5, 0x2b, 0xdd, 0x46, 0xdb, 0x63, + 0x8f, 0x3a, 0x24, 0x20, 0xd4, 0x69, 0xc1, 0x3b, 0x20, 0xd3, 0x24, 0x3e, 0x43, 0x3e, 0xcb, 0xab, + 0x25, 0xb5, 0x92, 0xad, 0xe5, 0x0c, 0x5e, 0xc2, 0x90, 0x25, 0x8c, 0x45, 0xbf, 0x6f, 0x65, 0x3f, + 0x6e, 0x55, 0x33, 0x4b, 0x3c, 0xd1, 0x96, 0x0c, 0xf8, 0x46, 0x05, 0x13, 0x9e, 0xef, 0x31, 0xcf, + 0x69, 0xad, 0xba, 0x28, 0x20, 0xd4, 0x63, 0xf9, 0x54, 0x29, 0x5d, 0xc9, 0xd6, 0x0a, 0x86, 0x68, + 0x36, 0xd4, 0x2d, 0xcd, 0x30, 0x96, 0x88, 0xe7, 0x5b, 0x0f, 0xb6, 0x07, 0xba, 0xb2, 0x3f, 0xd0, + 0xa7, 0xfa, 0x4e, 0xbb, 0xb5, 0x50, 0x3e, 0xc2, 0x2f, 0x7f, 0xf8, 0xae, 0x57, 0xb0, 0xc7, 0xd6, + 0xbb, 0x0d, 0xa3, 0x49, 0xda, 0x42, 0xb3, 0xf8, 0xa8, 0x52, 0xf7, 0x85, 0xc9, 0xfa, 0x01, 0xa2, + 0x51, 0x29, 0x6a, 0x8f, 0x0b, 0xf6, 0x5d, 0x4e, 0x86, 0xb7, 0xc0, 0xc5, 0x20, 0x52, 0x86, 0x3a, + 0xf9, 0x74, 0x49, 0xad, 0x8c, 0x59, 0xf9, 0xcf, 0x5b, 0xd5, 0x9c, 0xe8, 0x65, 0xd1, 0x75, 0x3b, + 0x88, 0xd2, 0x15, 0xd6, 0xf1, 0x7c, 0x6c, 0xc7, 0x99, 0x0b, 0x97, 0x5f, 0x6f, 0xea, 0xca, 0xbb, + 0x4d, 0x5d, 0xf9, 0xb9, 0xa9, 0x2b, 0x2f, 0xbf, 0x95, 0x94, 0x72, 0x13, 0x14, 0x8e, 0x59, 0x65, + 0x23, 0x1a, 0x10, 0x9f, 0x22, 0xb8, 0x0c, 0xb2, 0x81, 0x88, 0xad, 0x7a, 0x6e, 0x64, 0xdb, 0x88, + 0x35, 0xf3, 0x6b, 0xa0, 0x1f, 0x0e, 0xef, 0x0f, 0x74, 0xc8, 0x05, 0x1e, 0x0a, 0x96, 0x6d, 0x20, + 0x4f, 0xf7, 0xdd, 0xf2, 0x27, 0x15, 0x64, 0xea, 0x14, 0x3f, 0x21, 0xec, 0xdc, 0x6a, 0x42, 0x03, + 0x5c, 0xe8, 0x11, 0x86, 0x3a, 0xf9, 0xd4, 0x29, 0xea, 0x79, 0x1a, 0x9c, 0x07, 0xa3, 0x24, 0x60, + 0x1e, 0xf1, 0x23, 0xbb, 0xc6, 0x6b, 0x9a, 0x71, 0x7c, 0x86, 0x8d, 0xb0, 0xc3, 0x87, 0x51, 0x96, + 0x2d, 0xb2, 0x13, 0x2c, 0x9b, 0x04, 0x13, 0x42, 0x8c, 0x34, 0xaa, 0xfc, 0x45, 0x8d, 0x63, 0x4f, + 0x91, 0x87, 0xd7, 0x19, 0x72, 0xe1, 0xed, 0x24, 0xa1, 0x53, 0xff, 0x41, 0xd9, 0x32, 0xc8, 0xf0, + 0x5e, 0x69, 0x3e, 0x1d, 0x8d, 0xe4, 0x6c, 0x92, 0x34, 0xd9, 0xd7, 0x81, 0x44, 0x6b, 0x24, 0x9c, + 0x4f, 0x5b, 0x92, 0x13, 0x94, 0x16, 0xc0, 0x95, 0x23, 0xaa, 0x62, 0xc5, 0xaf, 0x52, 0x00, 0xd4, + 0x29, 0x96, 0xe3, 0x78, 0x5e, 0xb7, 0x3a, 0x0f, 0xc6, 0xc4, 0x7a, 0x90, 0xd3, 0xf5, 0x1f, 0xa4, + 0xc2, 0x26, 0x18, 0x75, 0xda, 0xa4, 0xeb, 0x33, 0x61, 0xc1, 0x90, 0xad, 0xbc, 0x11, 0xaa, 0xfe, + 0xa7, 0xdd, 0x13, 0xa5, 0x13, 0x0c, 0xca, 0x01, 0x78, 0x60, 0x82, 0xf4, 0xa6, 0xf6, 0x3b, 0x05, + 0xd2, 0x75, 0x8a, 0xe1, 0x1a, 0x18, 0x3f, 0xf2, 0x1f, 0x34, 0x93, 0x74, 0x33, 0xc7, 0xf6, 0xaf, + 0x58, 0x3d, 0x53, 0x5a, 0xbc, 0xa6, 0xf7, 0xc0, 0x48, 0xb4, 0x5a, 0xd3, 0x27, 0xd0, 0x42, 0xb0, + 0x78, 0x6d, 0x08, 0x18, 0x57, 0x7a, 0x0e, 0x2e, 0xfd, 0x35, 0xc3, 0xc3, 0x48, 0x32, 0xa9, 0x78, + 0xfd, 0x0c, 0x49, 0xf1, 0x2f, 0x3c, 0x06, 0x19, 0x39, 0x33, 0xda, 0x09, 0x3c, 0x81, 0x17, 0x67, + 0x87, 0xe3, 0xb2, 0xa4, 0x65, 0x6d, 0xef, 0x6a, 0xea, 0xce, 0xae, 0xa6, 0xfe, 0xd8, 0xd5, 0xd4, + 0xb7, 0x7b, 0x9a, 0xb2, 0xb3, 0xa7, 0x29, 0x5f, 0xf7, 0x34, 0xe5, 0xd9, 0xf0, 0x2b, 0xde, 0x88, + 0x9e, 0xa2, 0xe8, 0xa2, 0x1b, 0xa3, 0xd1, 0x1b, 0x70, 0xf3, 0x4f, 0x00, 0x00, 0x00, 0xff, 0xff, + 0x6b, 0xb0, 0x7e, 0xf2, 0xf6, 0x06, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/group/query.pb.go b/x/group/query.pb.go index 5df4b2cab9eb..2b4b9f281902 100644 --- a/x/group/query.pb.go +++ b/x/group/query.pb.go @@ -6,6 +6,7 @@ package group import ( context "context" fmt "fmt" + _ "github.com/cosmos/cosmos-proto" query "github.com/cosmos/cosmos-sdk/types/query" _ "github.com/gogo/protobuf/gogoproto" grpc1 "github.com/gogo/protobuf/grpc" @@ -1204,63 +1205,65 @@ func init() { func init() { proto.RegisterFile("cosmos/group/v1beta1/query.proto", fileDescriptor_ae47912b18757b1a) } var fileDescriptor_ae47912b18757b1a = []byte{ - // 883 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x58, 0xcf, 0x6e, 0xd3, 0x4e, - 0x10, 0xee, 0xfe, 0x7e, 0xfd, 0x97, 0x29, 0x05, 0x64, 0x02, 0xa4, 0x06, 0xd2, 0xd4, 0x54, 0x50, - 0xb5, 0xe0, 0xb4, 0xa9, 0x68, 0xa0, 0x20, 0xa4, 0xe6, 0x40, 0xd5, 0x43, 0xa5, 0x62, 0x24, 0x84, - 0xe0, 0x80, 0x9c, 0xc4, 0x0d, 0x11, 0x24, 0x9b, 0xda, 0x4e, 0xd5, 0x08, 0x21, 0x71, 0x00, 0x7a, - 0xed, 0x09, 0x89, 0x0b, 0x12, 0x0f, 0xc0, 0x13, 0xf0, 0x02, 0xdc, 0xe8, 0x91, 0x23, 0x6a, 0x5f, - 0x04, 0xd9, 0x3b, 0xfe, 0x97, 0x6c, 0x6c, 0x07, 0x59, 0x85, 0x53, 0xb2, 0xab, 0xf9, 0x66, 0xbe, - 0xf9, 0x66, 0x77, 0x67, 0x64, 0xc8, 0x55, 0xa8, 0xd1, 0xa0, 0x46, 0xbe, 0xa6, 0xd3, 0x76, 0x2b, - 0xbf, 0xbb, 0x54, 0xd6, 0x4c, 0x75, 0x29, 0xbf, 0xd3, 0xd6, 0xf4, 0x8e, 0xdc, 0xd2, 0xa9, 0x49, - 0x85, 0x34, 0xb3, 0x90, 0x6d, 0x0b, 0x19, 0x2d, 0x44, 0x3e, 0xce, 0xec, 0xb4, 0x34, 0x83, 0xe1, - 0xc4, 0x74, 0x8d, 0xd6, 0xa8, 0xfd, 0x37, 0x6f, 0xfd, 0xc3, 0xdd, 0x79, 0xc4, 0x95, 0x55, 0x43, - 0x63, 0x61, 0x5c, 0x70, 0x4b, 0xad, 0xd5, 0x9b, 0xaa, 0x59, 0xa7, 0x4d, 0x66, 0x2b, 0x15, 0xe0, - 0xfc, 0x43, 0xcb, 0x62, 0xdd, 0x8a, 0xb1, 0xd1, 0xdc, 0xa6, 0x8a, 0xb6, 0xd3, 0xd6, 0x0c, 0x53, - 0x98, 0x82, 0x71, 0x3b, 0xee, 0xf3, 0x7a, 0x35, 0x43, 0x72, 0x64, 0x6e, 0x58, 0x19, 0xb3, 0xd7, - 0x1b, 0x55, 0x69, 0x13, 0x2e, 0x74, 0x63, 0x8c, 0x16, 0x6d, 0x1a, 0x9a, 0xb0, 0x0c, 0xc3, 0xf5, - 0xe6, 0x36, 0xb5, 0x01, 0x13, 0x85, 0x69, 0x99, 0x97, 0x96, 0xec, 0xc1, 0x6c, 0x63, 0xe9, 0x36, - 0x5c, 0xf6, 0xdc, 0xad, 0x55, 0x2a, 0xb4, 0xdd, 0x34, 0xfd, 0x4c, 0x32, 0x30, 0xa6, 0x56, 0xab, - 0xba, 0x66, 0x18, 0xb6, 0xdf, 0x94, 0xe2, 0x2c, 0xa5, 0x67, 0x70, 0xa5, 0x0f, 0x12, 0xf9, 0xac, - 0x06, 0xf8, 0x5c, 0x0b, 0xe1, 0xe3, 0x47, 0x33, 0x5a, 0x6f, 0x20, 0xe3, 0x39, 0xdf, 0xd4, 0x1a, - 0x65, 0x4d, 0x37, 0xa2, 0xc5, 0x11, 0x1e, 0x00, 0x78, 0x22, 0x67, 0xfe, 0x0b, 0x06, 0xb6, 0x2a, - 0x22, 0xb3, 0xc2, 0x3b, 0xd1, 0xb7, 0xd4, 0x9a, 0x86, 0x6e, 0x15, 0x1f, 0x52, 0xfa, 0x42, 0x60, - 0x8a, 0x13, 0x1f, 0x13, 0xbb, 0x0b, 0x63, 0x0d, 0xb6, 0x95, 0x21, 0xb9, 0xff, 0xe7, 0x26, 0x0a, - 0x33, 0x21, 0xb9, 0x31, 0xb0, 0xe2, 0x20, 0x84, 0x75, 0x0e, 0xc5, 0xeb, 0x91, 0x14, 0x59, 0xe4, - 0x00, 0xc7, 0x8e, 0x9f, 0xa2, 0x51, 0xea, 0xac, 0x55, 0x1b, 0xf5, 0xa6, 0xa3, 0x51, 0x1a, 0x46, - 0x54, 0x6b, 0x8d, 0x45, 0x63, 0x8b, 0xc4, 0xe4, 0xf9, 0x4c, 0x40, 0xe4, 0xc5, 0x46, 0x7d, 0x8a, - 0x30, 0x6a, 0x0b, 0xe1, 0xc8, 0x13, 0x79, 0x14, 0xd1, 0x3c, 0x39, 0x6d, 0xde, 0x13, 0xc8, 0xf5, - 0x1c, 0x4e, 0xa3, 0xc4, 0x96, 0x27, 0x78, 0x8e, 0xbe, 0x11, 0x98, 0x09, 0xe1, 0x81, 0x7a, 0x6d, - 0xc2, 0x69, 0x46, 0x44, 0x45, 0x03, 0xd4, 0x2d, 0xee, 0x95, 0x99, 0xac, 0xf9, 0xbd, 0x27, 0xa7, - 0xe2, 0xdb, 0x3e, 0x2a, 0x9e, 0xe0, 0x49, 0xeb, 0x27, 0x60, 0xf0, 0xc0, 0xfd, 0xab, 0x02, 0x16, - 0x21, 0x6d, 0x93, 0xdf, 0xd2, 0x69, 0x8b, 0x1a, 0xea, 0x2b, 0x47, 0xb3, 0x69, 0x98, 0x68, 0xe1, - 0x96, 0x77, 0xf8, 0xc0, 0xd9, 0xda, 0xa8, 0x4a, 0x8f, 0xb0, 0x31, 0x78, 0x40, 0xf7, 0x4d, 0x1d, - 0x77, 0xcc, 0xf0, 0x5d, 0xcd, 0xf2, 0x73, 0x74, 0x91, 0xae, 0xbd, 0xb4, 0x4f, 0xe0, 0x6a, 0xc0, - 0xab, 0x73, 0x10, 0x31, 0xf1, 0xc8, 0x27, 0x3f, 0xb1, 0xaa, 0x7e, 0x25, 0x30, 0x1b, 0xce, 0x04, - 0xd3, 0xbd, 0x07, 0x29, 0x87, 0xbe, 0x53, 0xd3, 0xa8, 0x7c, 0x3d, 0x40, 0x72, 0x75, 0x7c, 0x02, - 0xd3, 0x36, 0xdd, 0xc7, 0xd4, 0xd4, 0x4a, 0x2e, 0x69, 0x6b, 0xa5, 0xc7, 0x2d, 0xa9, 0x75, 0x4f, - 0x76, 0x2d, 0x80, 0xcd, 0x23, 0xa5, 0xb0, 0x85, 0xa4, 0xe0, 0x0d, 0xe3, 0x7a, 0x46, 0x11, 0x64, - 0x18, 0xb6, 0x8c, 0xb1, 0xde, 0x22, 0x3f, 0x7f, 0x0b, 0xa2, 0xd8, 0x76, 0xd2, 0x07, 0x02, 0x97, - 0x5c, 0xa7, 0x46, 0x69, 0xe0, 0xd3, 0x97, 0x58, 0x99, 0x3f, 0x11, 0x1c, 0x2e, 0x7a, 0x88, 0x60, - 0x66, 0x8b, 0x4c, 0x13, 0xa7, 0xb4, 0x61, 0xa9, 0x31, 0xc3, 0xe4, 0x4a, 0xba, 0x87, 0x03, 0x06, - 0x52, 0x0b, 0xd4, 0xd2, 0x2d, 0x15, 0xf1, 0x95, 0x2a, 0x31, 0x55, 0x3e, 0x3a, 0xb3, 0x45, 0x30, - 0xf4, 0x5f, 0x97, 0xa4, 0xf0, 0x03, 0x60, 0xc4, 0x26, 0x26, 0x6c, 0x43, 0xca, 0x6d, 0xce, 0xc2, - 0x02, 0x9f, 0x02, 0x77, 0x70, 0x15, 0x6f, 0xc4, 0x33, 0xc6, 0x64, 0x5f, 0xc3, 0xd9, 0xee, 0xb7, - 0x58, 0x28, 0x44, 0x79, 0xe8, 0x1d, 0x52, 0xc5, 0xe5, 0x81, 0x30, 0x18, 0x9c, 0xc2, 0x29, 0xff, - 0x74, 0x27, 0xc8, 0x51, 0x4e, 0x82, 0x63, 0xa8, 0x98, 0x8f, 0x6d, 0x8f, 0x01, 0x75, 0x98, 0x0c, - 0xcc, 0x4b, 0x42, 0xa4, 0x87, 0xae, 0x5e, 0x2b, 0x2e, 0xc6, 0x07, 0x60, 0xcc, 0x7d, 0x02, 0x69, - 0xde, 0xec, 0x21, 0xac, 0xc4, 0x94, 0xac, 0x6b, 0x68, 0x12, 0x8b, 0x03, 0xe3, 0xfa, 0x33, 0x61, - 0x2a, 0x0c, 0xc0, 0x24, 0x20, 0x46, 0x71, 0x60, 0x1c, 0x32, 0xa9, 0xc0, 0xb8, 0xf3, 0x12, 0x09, - 0xf3, 0x21, 0x4e, 0xba, 0xde, 0x4d, 0x71, 0x21, 0x96, 0x2d, 0x06, 0x39, 0x20, 0x70, 0xb1, 0x4f, - 0x77, 0x13, 0xee, 0xc4, 0x70, 0xc4, 0xef, 0xcd, 0xe2, 0xea, 0x9f, 0x40, 0x91, 0xd2, 0x3b, 0x02, - 0xe7, 0x38, 0x7d, 0x46, 0xb8, 0x15, 0xe2, 0xb3, 0x7f, 0xc7, 0x13, 0x57, 0x06, 0x85, 0x21, 0x8d, - 0x3d, 0x38, 0xd3, 0xd5, 0x0f, 0x84, 0xa5, 0x08, 0x57, 0xbd, 0x4d, 0x4c, 0x2c, 0x0c, 0x02, 0xf1, - 0x6e, 0xbc, 0xff, 0xcd, 0x0d, 0xbd, 0xf1, 0x9c, 0xbe, 0x10, 0x7a, 0xe3, 0x79, 0x8f, 0x79, 0xe9, - 0xfe, 0xf7, 0xa3, 0x2c, 0x39, 0x3c, 0xca, 0x92, 0x5f, 0x47, 0x59, 0x72, 0x70, 0x9c, 0x1d, 0x3a, - 0x3c, 0xce, 0x0e, 0xfd, 0x3c, 0xce, 0x0e, 0x3d, 0x9d, 0xad, 0xd5, 0xcd, 0x17, 0xed, 0xb2, 0x5c, - 0xa1, 0x8d, 0x3c, 0x7e, 0x30, 0x60, 0x3f, 0x37, 0x8d, 0xea, 0xcb, 0xfc, 0x1e, 0xfb, 0xea, 0x50, - 0x1e, 0xb5, 0x3f, 0x13, 0x2c, 0xff, 0x0e, 0x00, 0x00, 0xff, 0xff, 0x69, 0x31, 0x95, 0x5c, 0xc4, - 0x10, 0x00, 0x00, + // 915 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x58, 0x4d, 0x6f, 0xd3, 0x58, + 0x14, 0xed, 0x9b, 0xe9, 0xe7, 0xed, 0x74, 0x66, 0xe4, 0xc9, 0xcc, 0xa4, 0x9e, 0x21, 0x4d, 0x4d, + 0x05, 0x55, 0x4b, 0x9d, 0x36, 0x15, 0x8d, 0x28, 0x08, 0xa9, 0x59, 0x50, 0x75, 0x51, 0xa9, 0xb8, + 0x12, 0x0b, 0x58, 0x54, 0x4e, 0xe2, 0x9a, 0x08, 0xe2, 0x97, 0xda, 0x4e, 0xd5, 0x0a, 0xb1, 0xe3, + 0x63, 0x5b, 0x81, 0x84, 0x04, 0x0b, 0x24, 0x7e, 0x00, 0x3b, 0x76, 0xfc, 0x01, 0x76, 0x54, 0xac, + 0x58, 0xa2, 0xf6, 0x8f, 0x20, 0xbf, 0x77, 0x6d, 0xc7, 0x89, 0x63, 0x3b, 0x60, 0x41, 0x57, 0x8d, + 0xdd, 0x73, 0xee, 0x3d, 0xef, 0xdc, 0xfb, 0xde, 0xbb, 0x32, 0xe4, 0xab, 0xd4, 0x6a, 0x50, 0xab, + 0xa0, 0x9b, 0xb4, 0xd5, 0x2c, 0xec, 0x2f, 0x55, 0x34, 0x5b, 0x5d, 0x2a, 0xec, 0xb5, 0x34, 0xf3, + 0x50, 0x6e, 0x9a, 0xd4, 0xa6, 0x42, 0x86, 0x23, 0x64, 0x86, 0x90, 0x11, 0x21, 0x86, 0xf3, 0xec, + 0xc3, 0xa6, 0x66, 0x71, 0x9e, 0x98, 0xd1, 0xa9, 0x4e, 0xd9, 0xcf, 0x82, 0xf3, 0x0b, 0xdf, 0xce, + 0x21, 0xaf, 0xa2, 0x5a, 0x1a, 0x4f, 0xe3, 0x91, 0x9b, 0xaa, 0x5e, 0x37, 0x54, 0xbb, 0x4e, 0x0d, + 0xc4, 0x4e, 0x72, 0xec, 0x0e, 0x0f, 0x82, 0x32, 0xd8, 0x83, 0x54, 0x84, 0xbf, 0x6f, 0x3a, 0xe4, + 0x75, 0x27, 0xfd, 0x86, 0xb1, 0x4b, 0x15, 0x6d, 0xaf, 0xa5, 0x59, 0xb6, 0x30, 0x09, 0xa3, 0x4c, + 0xd2, 0x4e, 0xbd, 0x96, 0x25, 0x79, 0x32, 0x3b, 0xa8, 0x8c, 0xb0, 0xe7, 0x8d, 0x9a, 0xb4, 0x09, + 0xff, 0x74, 0x72, 0xac, 0x26, 0x35, 0x2c, 0x4d, 0x58, 0x86, 0xc1, 0xba, 0xb1, 0x4b, 0x19, 0x61, + 0xbc, 0x38, 0x25, 0x87, 0xad, 0x58, 0xf6, 0x69, 0x0c, 0x2c, 0x29, 0xf0, 0xbf, 0x1f, 0x6e, 0xad, + 0x5a, 0xa5, 0x2d, 0xc3, 0x6e, 0x57, 0x52, 0x84, 0x11, 0xb5, 0x56, 0x33, 0x35, 0xcb, 0x62, 0x71, + 0xc7, 0xca, 0xd9, 0x4f, 0xef, 0x16, 0x5c, 0x33, 0xd7, 0xf8, 0x7f, 0xb6, 0x6d, 0xb3, 0x6e, 0xe8, + 0x8a, 0x0b, 0x94, 0xee, 0xc0, 0xb9, 0x1e, 0x31, 0x51, 0xe9, 0x6a, 0x40, 0xe9, 0x85, 0x08, 0xa5, + 0xed, 0x6c, 0x2e, 0xf8, 0x21, 0x64, 0xfd, 0xe0, 0x9b, 0x5a, 0xa3, 0xa2, 0x99, 0x56, 0xbc, 0x6d, + 0xc2, 0x0d, 0x00, 0xbf, 0x32, 0xd9, 0x5f, 0x82, 0x89, 0x9d, 0x32, 0xca, 0xbc, 0x5b, 0xdc, 0xec, + 0x5b, 0xaa, 0xae, 0x61, 0x58, 0xa5, 0x8d, 0x29, 0xbd, 0x21, 0x30, 0x19, 0x92, 0x1f, 0x17, 0x76, + 0x15, 0x46, 0x1a, 0xfc, 0x55, 0x96, 0xe4, 0x7f, 0x9d, 0x1d, 0x2f, 0x4e, 0x47, 0xac, 0x8d, 0x93, + 0x15, 0x97, 0x21, 0xac, 0x87, 0x48, 0xbc, 0x18, 0x2b, 0x91, 0x67, 0x0e, 0x68, 0x7c, 0x1e, 0xd0, + 0x68, 0x95, 0x0f, 0xd7, 0x6a, 0x8d, 0xba, 0xe1, 0x9a, 0x24, 0xc3, 0x90, 0xea, 0x3c, 0xc7, 0xd6, + 0x93, 0xc3, 0x52, 0x73, 0xee, 0x35, 0x01, 0x31, 0x4c, 0x15, 0x5a, 0x57, 0x82, 0x61, 0xe6, 0x91, + 0xeb, 0x5c, 0x6c, 0xff, 0x22, 0x3c, 0x3d, 0xdb, 0x1e, 0x13, 0xc8, 0x77, 0xf5, 0xad, 0x55, 0xe6, + 0x8f, 0x3f, 0xb0, 0xc5, 0xde, 0x13, 0x98, 0x8e, 0xd0, 0x81, 0x7e, 0x6d, 0xc2, 0xef, 0x5c, 0x88, + 0x8a, 0x00, 0xf4, 0x2d, 0xe9, 0x6e, 0x9a, 0xd0, 0xdb, 0xa3, 0xa7, 0xe7, 0xe2, 0xab, 0x1e, 0x2e, + 0x9e, 0x89, 0x1e, 0xec, 0x65, 0x6d, 0xb0, 0x15, 0xcf, 0xaa, 0xb5, 0x25, 0xc8, 0x30, 0xf1, 0x5b, + 0x26, 0x6d, 0x52, 0x4b, 0xbd, 0xef, 0xba, 0x39, 0x05, 0xe3, 0x4d, 0x7c, 0xe5, 0xb7, 0x25, 0xb8, + 0xaf, 0x36, 0x6a, 0xd2, 0x36, 0xde, 0x33, 0x3e, 0xd1, 0x3b, 0x88, 0x47, 0x5d, 0x18, 0x1e, 0xc6, + 0xb9, 0xf0, 0x35, 0x7a, 0x4c, 0x0f, 0xef, 0x9c, 0x84, 0xe7, 0x03, 0x51, 0xdd, 0x16, 0xc5, 0x85, + 0x7f, 0xc7, 0x0d, 0x92, 0x5a, 0xbd, 0xdf, 0x12, 0x98, 0x89, 0xd6, 0x88, 0x46, 0x5c, 0x83, 0x31, + 0x77, 0x61, 0x6e, 0xb5, 0xe3, 0x9c, 0xf0, 0x09, 0xe9, 0x55, 0xd8, 0x84, 0x29, 0x26, 0xf7, 0x16, + 0xb5, 0xb5, 0xb2, 0x27, 0xda, 0x79, 0x32, 0x93, 0x16, 0xdb, 0xd9, 0x5b, 0xfb, 0x0e, 0x81, 0xe9, + 0x88, 0xdc, 0x5b, 0x0c, 0x26, 0x29, 0xb8, 0x5f, 0x43, 0x73, 0xa2, 0x3d, 0x32, 0x0c, 0x3a, 0x60, + 0xec, 0x11, 0x31, 0xdc, 0x19, 0x87, 0xa2, 0x30, 0x9c, 0xf4, 0x84, 0xc0, 0x7f, 0x5e, 0x50, 0xab, + 0xdc, 0x77, 0xc7, 0xa6, 0xd6, 0x00, 0x2f, 0x09, 0xce, 0x37, 0x5d, 0x42, 0x70, 0x65, 0x8b, 0xdc, + 0x2d, 0xb7, 0xe8, 0x51, 0x4b, 0xe3, 0xc0, 0xf4, 0x8a, 0xfd, 0x8c, 0xe0, 0x28, 0x83, 0xda, 0x02, + 0x65, 0xf6, 0xaa, 0x48, 0x12, 0x55, 0x31, 0x35, 0xc3, 0x5e, 0xb8, 0xb3, 0x43, 0x50, 0xd4, 0x4f, + 0x77, 0xab, 0xf8, 0x11, 0x60, 0x88, 0x09, 0x13, 0x76, 0x61, 0xcc, 0x9b, 0x02, 0x84, 0xf9, 0x70, + 0x09, 0xa1, 0x63, 0xb5, 0x78, 0x29, 0x19, 0x18, 0x17, 0xfb, 0x00, 0xfe, 0xec, 0x3c, 0xda, 0x85, + 0x62, 0x5c, 0x84, 0xee, 0x11, 0x5a, 0x5c, 0xee, 0x8b, 0x83, 0xc9, 0x29, 0xfc, 0xd6, 0x3e, 0x61, + 0x0a, 0x72, 0x5c, 0x90, 0xe0, 0x28, 0x2c, 0x16, 0x12, 0xe3, 0x31, 0xa1, 0x09, 0x13, 0x81, 0xc1, + 0x4c, 0x88, 0x8d, 0xd0, 0x71, 0xa9, 0x8b, 0x8b, 0xc9, 0x09, 0x98, 0xf3, 0x29, 0x81, 0x4c, 0xd8, + 0x90, 0x23, 0xac, 0x24, 0xb4, 0xac, 0x63, 0x3a, 0x13, 0x4b, 0x7d, 0xf3, 0x7a, 0x2b, 0xe1, 0x2e, + 0xf4, 0xa1, 0x24, 0x60, 0x46, 0xa9, 0x6f, 0x1e, 0x2a, 0xa9, 0xc2, 0xa8, 0x7b, 0x48, 0x09, 0x73, + 0x11, 0x41, 0x3a, 0x8e, 0x54, 0x71, 0x3e, 0x11, 0x16, 0x93, 0x1c, 0x11, 0xf8, 0xb7, 0xc7, 0x95, + 0x28, 0x5c, 0x49, 0x10, 0x28, 0xfc, 0xaa, 0x17, 0x57, 0xbf, 0x85, 0x8a, 0x92, 0x1e, 0x11, 0xf8, + 0x2b, 0xe4, 0x0a, 0x12, 0x2e, 0x47, 0xc4, 0xec, 0x7d, 0x4d, 0x8a, 0x2b, 0xfd, 0xd2, 0x50, 0xc6, + 0x01, 0xfc, 0xd1, 0x71, 0x55, 0x08, 0x4b, 0x31, 0xa1, 0xba, 0xef, 0x37, 0xb1, 0xd8, 0x0f, 0xc5, + 0xdf, 0xf1, 0xed, 0x67, 0x6e, 0xe4, 0x8e, 0x0f, 0xb9, 0x31, 0x22, 0x77, 0x7c, 0xd8, 0x61, 0x5e, + 0xbe, 0xfe, 0xe1, 0x24, 0x47, 0x8e, 0x4f, 0x72, 0xe4, 0xcb, 0x49, 0x8e, 0x1c, 0x9d, 0xe6, 0x06, + 0x8e, 0x4f, 0x73, 0x03, 0x9f, 0x4f, 0x73, 0x03, 0xb7, 0x67, 0xf4, 0xba, 0x7d, 0xb7, 0x55, 0x91, + 0xab, 0xb4, 0x81, 0x1f, 0x2c, 0xf0, 0xcf, 0x82, 0x55, 0xbb, 0x57, 0x38, 0xe0, 0x9f, 0x4b, 0x2a, + 0xc3, 0xec, 0x23, 0xc6, 0xf2, 0xd7, 0x00, 0x00, 0x00, 0xff, 0xff, 0xd6, 0x49, 0xfa, 0xed, 0x7d, + 0x11, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/group/tx.pb.go b/x/group/tx.pb.go index c9e2c590878f..31d0911b1c4b 100644 --- a/x/group/tx.pb.go +++ b/x/group/tx.pb.go @@ -6,11 +6,11 @@ package group import ( context "context" fmt "fmt" + _ "github.com/cosmos/cosmos-proto" types "github.com/cosmos/cosmos-sdk/codec/types" _ "github.com/gogo/protobuf/gogoproto" grpc1 "github.com/gogo/protobuf/grpc" proto "github.com/gogo/protobuf/proto" - _ "github.com/regen-network/cosmos-proto" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" @@ -1194,69 +1194,71 @@ func init() { func init() { proto.RegisterFile("cosmos/group/v1beta1/tx.proto", fileDescriptor_da0de9d603d844fb) } var fileDescriptor_da0de9d603d844fb = []byte{ - // 990 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x57, 0x4f, 0x73, 0xdb, 0x44, - 0x14, 0xf7, 0xc6, 0x6a, 0xfe, 0xbc, 0x14, 0x37, 0x2c, 0xa6, 0x28, 0x6a, 0xe2, 0x18, 0x4d, 0x3a, - 0x78, 0x52, 0x22, 0x13, 0xa7, 0x33, 0x40, 0xe9, 0x30, 0x24, 0xa9, 0x61, 0x7c, 0x30, 0x13, 0x54, - 0xca, 0x00, 0x17, 0x8f, 0x2c, 0x2d, 0x8a, 0x21, 0xd6, 0xaa, 0x5e, 0xb9, 0x49, 0x0e, 0xcc, 0x70, - 0x83, 0x03, 0x07, 0x2e, 0x5c, 0x38, 0x71, 0xe3, 0x0b, 0xc0, 0x37, 0xe0, 0x50, 0x38, 0x30, 0xb9, - 0xc1, 0x89, 0x61, 0x92, 0x2f, 0xc2, 0x78, 0x77, 0x95, 0xc8, 0x8e, 0x24, 0xcb, 0x86, 0x9e, 0x92, - 0xdd, 0xfd, 0xbd, 0xdf, 0xfb, 0xbd, 0xf7, 0x76, 0xdf, 0xb3, 0x60, 0xd5, 0xa6, 0xac, 0x4b, 0x59, - 0xd5, 0xed, 0xd1, 0xbe, 0x5f, 0x7d, 0xb2, 0xd5, 0x26, 0x81, 0xb5, 0x55, 0x0d, 0x8e, 0x0d, 0xbf, - 0x47, 0x03, 0x8a, 0x8b, 0xe2, 0xd8, 0xe0, 0xc7, 0x86, 0x3c, 0xd6, 0x8a, 0x2e, 0x75, 0x29, 0x07, - 0x54, 0x07, 0xff, 0x09, 0xac, 0xb6, 0x2c, 0xb0, 0x2d, 0x71, 0x20, 0x0d, 0xe5, 0x91, 0x4b, 0xa9, - 0x7b, 0x48, 0xaa, 0x7c, 0xd5, 0xee, 0x7f, 0x56, 0xb5, 0xbc, 0x13, 0x79, 0x54, 0x8e, 0x17, 0x70, - 0xe2, 0x13, 0x69, 0xac, 0x7f, 0x8d, 0xe0, 0xc5, 0x26, 0x73, 0xf7, 0x7a, 0xc4, 0x0a, 0xc8, 0x7b, - 0x03, 0x98, 0x49, 0x1e, 0xf7, 0x09, 0x0b, 0x70, 0x11, 0xae, 0x59, 0x4e, 0xb7, 0xe3, 0xa9, 0xa8, - 0x8c, 0x2a, 0x0b, 0xa6, 0x58, 0xe0, 0xfb, 0x30, 0xd7, 0x25, 0xdd, 0x36, 0xe9, 0x31, 0x75, 0xa6, - 0x9c, 0xaf, 0x2c, 0xd6, 0x56, 0x8c, 0xb8, 0x28, 0x8c, 0x26, 0x07, 0xed, 0x2a, 0x4f, 0xff, 0x5e, - 0xcb, 0x99, 0xa1, 0x09, 0xd6, 0x60, 0xbe, 0x4b, 0x02, 0xcb, 0xb1, 0x02, 0x4b, 0xcd, 0x97, 0x51, - 0xe5, 0xba, 0x79, 0xb1, 0xd6, 0xb7, 0xe1, 0xe6, 0xa8, 0x10, 0xe6, 0x53, 0x8f, 0x11, 0xbc, 0x0c, - 0xf3, 0x9c, 0xbc, 0xd5, 0x71, 0xb8, 0x18, 0xc5, 0x9c, 0xe3, 0xeb, 0x86, 0xa3, 0xff, 0x80, 0x60, - 0xa5, 0xc9, 0xdc, 0x47, 0xbe, 0x13, 0x5a, 0x09, 0xc7, 0x2c, 0x3d, 0x8a, 0x28, 0xe3, 0xcc, 0x10, - 0x23, 0x6e, 0x40, 0x41, 0xa8, 0x6d, 0xf5, 0x39, 0x29, 0x53, 0xf3, 0x99, 0xe3, 0x7c, 0x4e, 0x58, - 0x0a, 0x35, 0x4c, 0x5f, 0x83, 0xd5, 0x04, 0x6d, 0x22, 0x30, 0xfd, 0x73, 0xd0, 0x86, 0x01, 0x3b, - 0x03, 0x75, 0x53, 0x4b, 0xbf, 0x05, 0x0b, 0x1e, 0x39, 0x6a, 0x09, 0xa3, 0x3c, 0x37, 0x9a, 0xf7, - 0xc8, 0x11, 0x27, 0xd5, 0x57, 0xe1, 0x56, 0xac, 0x2f, 0x29, 0xe5, 0xf0, 0xaa, 0x56, 0x51, 0x97, - 0xa9, 0xd5, 0xa4, 0xd5, 0xba, 0x0c, 0xa5, 0x24, 0x6f, 0x52, 0xcf, 0xaf, 0xa2, 0xb0, 0x91, 0xeb, - 0xb0, 0x63, 0xdb, 0xb4, 0xef, 0x05, 0xcf, 0x42, 0x0f, 0xfe, 0x00, 0x6e, 0x38, 0xc4, 0xee, 0xb0, - 0x0e, 0xf5, 0x5a, 0x3e, 0x3d, 0xec, 0xd8, 0x27, 0xaa, 0x52, 0x46, 0x95, 0xc5, 0x5a, 0xd1, 0x10, - 0x8f, 0xcb, 0x08, 0x1f, 0x97, 0xb1, 0xe3, 0x9d, 0xec, 0xe2, 0xdf, 0x7f, 0xde, 0x2c, 0x3c, 0x90, - 0x06, 0xfb, 0x1c, 0x6f, 0x16, 0x9c, 0xa1, 0xf5, 0x3d, 0xe5, 0x9b, 0x1f, 0xd7, 0x72, 0xfa, 0x9b, - 0x3c, 0xad, 0x71, 0x51, 0xc8, 0xbb, 0xad, 0xc2, 0x9c, 0xe5, 0x38, 0x3d, 0xc2, 0x98, 0x0c, 0x24, - 0x5c, 0xea, 0x3e, 0xbc, 0x3c, 0x52, 0x30, 0x61, 0x9a, 0xe1, 0x8e, 0x44, 0x48, 0x67, 0x86, 0x48, - 0xd3, 0xaf, 0xc8, 0x3a, 0xe8, 0x69, 0x1e, 0x65, 0x65, 0x7e, 0x41, 0xb0, 0x11, 0x0b, 0x1b, 0x49, - 0xc8, 0x94, 0x0a, 0x63, 0x4a, 0x91, 0xff, 0x5f, 0x4a, 0xb1, 0x09, 0x77, 0x32, 0xc9, 0x96, 0x61, - 0xf6, 0x60, 0x3d, 0x16, 0x9e, 0xed, 0x5d, 0x24, 0xc7, 0x97, 0xf6, 0x2c, 0x5e, 0x81, 0xdb, 0x63, - 0x7c, 0x4a, 0x71, 0x7f, 0x20, 0x50, 0x2f, 0xee, 0xd5, 0x7e, 0x8f, 0xfa, 0x94, 0x59, 0x87, 0xa1, - 0xa2, 0xc4, 0x2b, 0x85, 0x57, 0x60, 0xc1, 0xe7, 0xe0, 0xb0, 0x7d, 0x2f, 0x98, 0x97, 0x1b, 0xa9, - 0x0f, 0xa4, 0x02, 0x4a, 0x97, 0xb9, 0x4c, 0x55, 0x78, 0x2f, 0x8c, 0x2d, 0x85, 0xc9, 0x11, 0xd8, - 0x00, 0x85, 0x1c, 0x13, 0x5b, 0xbd, 0x56, 0x46, 0x95, 0x42, 0x4d, 0x8b, 0xef, 0x9a, 0xf5, 0x63, - 0x62, 0x9b, 0x1c, 0x27, 0x8b, 0x73, 0x1f, 0x96, 0x63, 0xe2, 0x91, 0x6f, 0x64, 0x0d, 0x16, 0x7d, - 0xb9, 0x77, 0x39, 0x02, 0x20, 0xdc, 0x6a, 0x38, 0xfa, 0x6f, 0x08, 0x0a, 0x4d, 0xe6, 0x7e, 0x44, - 0x03, 0x12, 0x26, 0x61, 0x9c, 0xcd, 0xa0, 0x6e, 0x4f, 0x68, 0x40, 0x7a, 0xb2, 0x3e, 0x62, 0x81, - 0xef, 0xc2, 0xac, 0x7d, 0x40, 0x3b, 0x36, 0xe1, 0x19, 0x28, 0x24, 0x75, 0xfd, 0x3d, 0x8e, 0x31, - 0x25, 0x76, 0x28, 0x73, 0xca, 0x48, 0xe6, 0x26, 0xcc, 0x87, 0xfe, 0x3c, 0xdc, 0xb8, 0x08, 0x45, - 0x56, 0xbb, 0xc1, 0xa3, 0xe3, 0x98, 0xac, 0xd1, 0xdd, 0x84, 0x59, 0xd6, 0x71, 0xbd, 0x8b, 0xf0, - 0xe4, 0x4a, 0xb2, 0x0b, 0x2a, 0xc1, 0xbe, 0xb1, 0x01, 0xca, 0x60, 0x8d, 0x8b, 0xb0, 0x54, 0xff, - 0xb8, 0xbe, 0xd7, 0x7a, 0xf4, 0xfe, 0xc3, 0xfd, 0xfa, 0x5e, 0xe3, 0xdd, 0x46, 0xfd, 0xc1, 0x52, - 0x0e, 0x5f, 0x87, 0x79, 0xbe, 0xfb, 0xa1, 0xf9, 0xc9, 0x12, 0xaa, 0xfd, 0x09, 0x90, 0x6f, 0x32, - 0x17, 0x1f, 0xc0, 0x62, 0xa4, 0xa7, 0xe1, 0x3b, 0x09, 0xb3, 0x31, 0xee, 0x77, 0x85, 0xf6, 0x6a, - 0x36, 0xb0, 0xac, 0xfd, 0x97, 0x80, 0xaf, 0x0e, 0x50, 0x5c, 0x4b, 0xe4, 0x48, 0xfc, 0x25, 0xa0, - 0x6d, 0x4f, 0x64, 0x23, 0xdd, 0x1f, 0xc1, 0xd2, 0xe8, 0xc8, 0xc4, 0xaf, 0x65, 0x21, 0x8a, 0x76, - 0x69, 0x6d, 0x6b, 0x02, 0x0b, 0xe9, 0xf8, 0x2b, 0x04, 0x2f, 0xc4, 0xcc, 0x47, 0x9c, 0x31, 0x8a, - 0xa1, 0x1e, 0xa5, 0xdd, 0x9d, 0xcc, 0xe8, 0x32, 0xf5, 0x57, 0x07, 0x57, 0x4a, 0xea, 0x13, 0x67, - 0x75, 0x4a, 0xea, 0x53, 0x26, 0xe3, 0xb7, 0x08, 0x5e, 0x4a, 0x98, 0x45, 0xf8, 0xf5, 0x4c, 0x09, - 0xbd, 0x3a, 0x2f, 0xb5, 0x37, 0x26, 0x37, 0x94, 0x72, 0x7e, 0x42, 0x50, 0x1e, 0x37, 0x3c, 0xf0, - 0x3b, 0x13, 0xd0, 0xc7, 0x8e, 0x4b, 0x6d, 0xe7, 0x3f, 0x30, 0x48, 0xa5, 0xdf, 0x23, 0xd0, 0x92, - 0x67, 0x08, 0xbe, 0x37, 0x81, 0x87, 0xd1, 0x8b, 0xf4, 0xd6, 0x54, 0xb6, 0x52, 0xd7, 0x63, 0x28, - 0x0c, 0x37, 0x78, 0x6c, 0x8c, 0xb9, 0x17, 0x23, 0x93, 0x4d, 0xab, 0x66, 0xc6, 0x4b, 0x97, 0x0f, - 0x41, 0x19, 0x74, 0x52, 0xbc, 0x9e, 0x68, 0x18, 0x99, 0x19, 0xda, 0xed, 0x31, 0xa8, 0x4b, 0x52, - 0xde, 0x30, 0x93, 0x49, 0x23, 0xad, 0x3a, 0x85, 0x34, 0xda, 0x85, 0x77, 0xdf, 0x7e, 0x7a, 0x56, - 0x42, 0xa7, 0x67, 0x25, 0xf4, 0xcf, 0x59, 0x09, 0x7d, 0x77, 0x5e, 0xca, 0x9d, 0x9e, 0x97, 0x72, - 0x7f, 0x9d, 0x97, 0x72, 0x9f, 0xae, 0xbb, 0x9d, 0xe0, 0xa0, 0xdf, 0x36, 0x6c, 0xda, 0x95, 0xdf, - 0x7d, 0xf2, 0xcf, 0x26, 0x73, 0xbe, 0xa8, 0x1e, 0x8b, 0x6f, 0xbb, 0xf6, 0x2c, 0x1f, 0xc5, 0xdb, - 0xff, 0x06, 0x00, 0x00, 0xff, 0xff, 0xf9, 0x59, 0xdb, 0xbc, 0x73, 0x0e, 0x00, 0x00, + // 1020 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x57, 0xcf, 0x6f, 0xe3, 0xc4, + 0x17, 0xcf, 0x34, 0xde, 0xfe, 0x78, 0xdd, 0x6f, 0xb6, 0xdf, 0xa1, 0x80, 0x6b, 0xda, 0x34, 0x58, + 0x5d, 0x11, 0x75, 0xa9, 0xb3, 0x4d, 0x17, 0x81, 0x96, 0x15, 0x22, 0xed, 0x06, 0x94, 0x43, 0x50, + 0x71, 0x59, 0x04, 0x5c, 0x22, 0xc7, 0x1e, 0x5c, 0x8b, 0xc6, 0xe3, 0xcd, 0x38, 0xdb, 0xf6, 0x80, + 0xc4, 0x09, 0x71, 0xe0, 0xc0, 0x85, 0x2b, 0x82, 0x0b, 0xfc, 0x03, 0x3d, 0x73, 0x5e, 0x71, 0x5a, + 0x71, 0x81, 0xd3, 0x0a, 0xb5, 0x17, 0xf8, 0x2f, 0x50, 0x66, 0xc6, 0x6d, 0x92, 0xda, 0x89, 0x93, + 0xb2, 0x7b, 0x6a, 0xc7, 0xf3, 0x79, 0xef, 0x7d, 0x3e, 0x6f, 0xde, 0xcc, 0x7b, 0x81, 0x15, 0x9b, + 0xb2, 0x16, 0x65, 0x25, 0xb7, 0x4d, 0x3b, 0x41, 0xe9, 0xd1, 0x66, 0x93, 0x84, 0xd6, 0x66, 0x29, + 0x3c, 0x32, 0x82, 0x36, 0x0d, 0x29, 0x5e, 0x14, 0xdb, 0x06, 0xdf, 0x36, 0xe4, 0xb6, 0xb6, 0xe8, + 0x52, 0x97, 0x72, 0x40, 0xa9, 0xfb, 0x9f, 0xc0, 0x6a, 0x4b, 0x02, 0xdb, 0x10, 0x1b, 0xd2, 0x50, + 0x6e, 0xb9, 0x94, 0xba, 0x07, 0xa4, 0xc4, 0x57, 0xcd, 0xce, 0xe7, 0x25, 0xcb, 0x3f, 0x96, 0x5b, + 0x85, 0x78, 0x02, 0xc7, 0x01, 0x91, 0xc6, 0xfa, 0x4f, 0x08, 0x5e, 0xac, 0x33, 0x77, 0xa7, 0x4d, + 0xac, 0x90, 0xbc, 0xdf, 0x85, 0x99, 0xe4, 0x61, 0x87, 0xb0, 0x10, 0x1b, 0x70, 0xcd, 0x72, 0x5a, + 0x9e, 0xaf, 0xa2, 0x02, 0x2a, 0xce, 0x6d, 0xab, 0xbf, 0x9f, 0x6c, 0x44, 0x84, 0x2b, 0x8e, 0xd3, + 0x26, 0x8c, 0xed, 0x85, 0x6d, 0xcf, 0x77, 0x4d, 0x01, 0xc3, 0xf7, 0x60, 0xa6, 0x45, 0x5a, 0x4d, + 0xd2, 0x66, 0xea, 0x54, 0x21, 0x5b, 0x9c, 0x2f, 0x2f, 0x1b, 0x71, 0xfa, 0x8c, 0x3a, 0x07, 0x6d, + 0x2b, 0x8f, 0x9f, 0xae, 0x66, 0xcc, 0xc8, 0x04, 0x6b, 0x30, 0xdb, 0x22, 0xa1, 0xe5, 0x58, 0xa1, + 0xa5, 0x66, 0x0b, 0xa8, 0x78, 0xdd, 0x3c, 0x5f, 0xeb, 0x5b, 0xf0, 0xd2, 0x20, 0x45, 0x16, 0x50, + 0x9f, 0x11, 0xbc, 0x04, 0xb3, 0xdc, 0x79, 0xc3, 0x73, 0x38, 0x4d, 0xc5, 0x9c, 0xe1, 0xeb, 0x9a, + 0xa3, 0x9f, 0x20, 0x58, 0xae, 0x33, 0xf7, 0x41, 0xe0, 0x44, 0x56, 0x22, 0x30, 0x9b, 0x54, 0x5f, + 0x6f, 0xac, 0xa9, 0xbe, 0x58, 0xb8, 0x06, 0x39, 0xa1, 0xa3, 0xd1, 0xe1, 0xe1, 0x98, 0x9a, 0x4d, + 0x9d, 0x81, 0xff, 0x09, 0x4b, 0xc1, 0x93, 0xe9, 0xab, 0xb0, 0x92, 0xc0, 0x5a, 0x48, 0xd6, 0x7f, + 0x40, 0xa0, 0xf5, 0x23, 0x2a, 0x5d, 0x7a, 0xcf, 0x40, 0xd5, 0x1b, 0x30, 0xe7, 0x93, 0xc3, 0x86, + 0x70, 0x97, 0x1d, 0xe1, 0x6e, 0xd6, 0x27, 0x87, 0x9c, 0x88, 0xbe, 0x02, 0xaf, 0xc4, 0xf2, 0x93, + 0xfc, 0xbf, 0x46, 0x97, 0x15, 0x8a, 0x73, 0x7e, 0x06, 0x12, 0x86, 0x55, 0x55, 0x01, 0xf2, 0x49, + 0x3c, 0x24, 0xd5, 0xa7, 0xa2, 0x84, 0x7a, 0x0a, 0xaf, 0x62, 0xdb, 0xb4, 0xe3, 0x87, 0xcf, 0x97, + 0x29, 0xfe, 0x10, 0x6e, 0x38, 0xc4, 0xf6, 0x98, 0x47, 0xfd, 0x46, 0x40, 0x0f, 0x3c, 0xfb, 0x58, + 0x55, 0x0a, 0xa8, 0x38, 0x5f, 0x5e, 0x34, 0xc4, 0xd5, 0x37, 0xa2, 0xab, 0x6f, 0x54, 0xfc, 0xe3, + 0x6d, 0xfc, 0xdb, 0xc9, 0x46, 0xee, 0xbe, 0x34, 0xd8, 0xe5, 0x78, 0x33, 0xe7, 0xf4, 0xad, 0xef, + 0x2a, 0xdf, 0xfc, 0xb8, 0x9a, 0xd1, 0xf7, 0xf8, 0x51, 0xc4, 0xe9, 0x93, 0xf7, 0xab, 0x0c, 0x33, + 0x96, 0x10, 0x32, 0x52, 0x62, 0x04, 0xd4, 0x7f, 0x45, 0xf0, 0xea, 0x40, 0x01, 0x08, 0xaf, 0x57, + 0xaa, 0xd3, 0x1e, 0x26, 0x53, 0x29, 0x99, 0x4c, 0x5a, 0xc0, 0x6b, 0xa0, 0x0f, 0xe3, 0x2f, 0x8b, + 0xe3, 0x1f, 0x04, 0xeb, 0xb1, 0xb0, 0x81, 0xcc, 0x3f, 0x47, 0xbd, 0x31, 0x75, 0x92, 0xfd, 0x4f, + 0xea, 0x64, 0x03, 0x6e, 0xa5, 0x92, 0x2a, 0x53, 0xf3, 0x33, 0x82, 0xb5, 0x58, 0xfc, 0x55, 0x6f, + 0xfa, 0x24, 0x49, 0x19, 0xf6, 0x04, 0xbc, 0x06, 0x37, 0x47, 0xf0, 0x94, 0x8a, 0xfe, 0x46, 0xa0, + 0x9e, 0xdf, 0x94, 0xdd, 0x36, 0x0d, 0x28, 0xb3, 0x0e, 0x22, 0x15, 0x13, 0x5c, 0x12, 0xbc, 0x0c, + 0x73, 0x01, 0x77, 0x13, 0xb5, 0xcb, 0x39, 0xf3, 0xe2, 0xc3, 0xd0, 0xc7, 0xa0, 0x08, 0x4a, 0x8b, + 0xb9, 0x4c, 0x55, 0x78, 0x87, 0x89, 0x3d, 0x59, 0x93, 0x23, 0xb0, 0x01, 0x0a, 0x39, 0x22, 0xb6, + 0x7a, 0xad, 0x80, 0x8a, 0xb9, 0xb2, 0x16, 0xdf, 0x8b, 0xaa, 0x47, 0xc4, 0x36, 0x39, 0x4e, 0x9e, + 0xf5, 0x3d, 0x58, 0x8a, 0x51, 0x2a, 0xdf, 0x83, 0x55, 0x98, 0x0f, 0xe4, 0xb7, 0x8b, 0x96, 0x0b, + 0xd1, 0xa7, 0x9a, 0xa3, 0x9f, 0x21, 0xc8, 0xd5, 0x99, 0xfb, 0x31, 0x0d, 0x49, 0x94, 0x9e, 0x51, + 0x36, 0xdd, 0x2a, 0x78, 0x44, 0x43, 0xd2, 0x1e, 0x79, 0xa6, 0x02, 0x86, 0xef, 0xc0, 0xb4, 0xbd, + 0x4f, 0x3d, 0x9b, 0xf0, 0xdc, 0xe4, 0x92, 0xba, 0xec, 0x0e, 0xc7, 0x98, 0x12, 0xdb, 0x97, 0x53, + 0x65, 0x20, 0xa7, 0x63, 0x66, 0x4a, 0xff, 0x3f, 0xdc, 0x38, 0x17, 0x29, 0x2b, 0xc4, 0xe6, 0xba, + 0x39, 0x26, 0xad, 0xee, 0xdb, 0x30, 0xcd, 0x3c, 0xd7, 0x4f, 0x21, 0x5c, 0xe2, 0x64, 0x5c, 0x11, + 0x44, 0xc4, 0x5d, 0x5f, 0x07, 0xa5, 0xbb, 0xc6, 0x8b, 0xb0, 0x50, 0xfd, 0xa4, 0xba, 0xd3, 0x78, + 0xf0, 0xc1, 0xde, 0x6e, 0x75, 0xa7, 0xf6, 0x5e, 0xad, 0x7a, 0x7f, 0x21, 0x83, 0xaf, 0xc3, 0x2c, + 0xff, 0xfa, 0x91, 0xf9, 0xe9, 0x02, 0x2a, 0xff, 0x01, 0x90, 0xad, 0x33, 0x17, 0xef, 0xc3, 0x7c, + 0xcf, 0x9b, 0x8f, 0x6f, 0x25, 0x4c, 0x29, 0x71, 0x53, 0xa1, 0xf6, 0x7a, 0x3a, 0xb0, 0xac, 0x97, + 0x2f, 0x01, 0x5f, 0x1e, 0x65, 0x70, 0x39, 0xd1, 0x47, 0xe2, 0xb4, 0xa6, 0x6d, 0x8d, 0x65, 0x23, + 0xc3, 0x1f, 0xc2, 0xc2, 0xe0, 0x1c, 0x82, 0x6f, 0xa7, 0x71, 0xd4, 0xdb, 0xaa, 0xb4, 0xcd, 0x31, + 0x2c, 0x64, 0xe0, 0xaf, 0x10, 0xbc, 0x10, 0x33, 0x59, 0xe0, 0x94, 0x2a, 0xfa, 0x5e, 0x49, 0xed, + 0xce, 0x78, 0x46, 0x17, 0xa9, 0xbf, 0xdc, 0xd8, 0x87, 0xa4, 0x3e, 0x71, 0xca, 0x19, 0x92, 0xfa, + 0x21, 0x93, 0xc3, 0xb7, 0x08, 0x5e, 0x4e, 0x68, 0xa1, 0xf8, 0xcd, 0x54, 0x09, 0xbd, 0x3c, 0x34, + 0x68, 0x6f, 0x8d, 0x6f, 0x28, 0xe9, 0xfc, 0x82, 0xa0, 0x30, 0xaa, 0x7f, 0xe1, 0x77, 0xc7, 0x70, + 0x1f, 0xdb, 0xe5, 0xb5, 0xca, 0x15, 0x3c, 0x48, 0xa6, 0xdf, 0x23, 0xd0, 0x92, 0x3b, 0x12, 0xbe, + 0x3b, 0x46, 0x84, 0xc1, 0x42, 0x7a, 0x7b, 0x22, 0x5b, 0xc9, 0xeb, 0x21, 0xe4, 0xfa, 0x9b, 0x02, + 0x36, 0x46, 0xd4, 0xc5, 0x40, 0x9f, 0xd4, 0x4a, 0xa9, 0xf1, 0x32, 0xe4, 0x1e, 0x28, 0xdd, 0x37, + 0x16, 0xaf, 0x25, 0x1a, 0xf6, 0xf4, 0x19, 0xed, 0xe6, 0x08, 0xd4, 0x85, 0x53, 0xfe, 0x60, 0x26, + 0x3b, 0xed, 0x79, 0xc4, 0x87, 0x38, 0xed, 0x7d, 0x85, 0xb7, 0xdf, 0x79, 0x7c, 0x9a, 0x47, 0x4f, + 0x4e, 0xf3, 0xe8, 0xaf, 0xd3, 0x3c, 0xfa, 0xee, 0x2c, 0x9f, 0x79, 0x72, 0x96, 0xcf, 0xfc, 0x79, + 0x96, 0xcf, 0x7c, 0xb6, 0xe6, 0x7a, 0xe1, 0x7e, 0xa7, 0x69, 0xd8, 0xb4, 0x25, 0x7f, 0xb5, 0xcb, + 0x3f, 0x1b, 0xcc, 0xf9, 0xa2, 0x74, 0x24, 0x7e, 0x99, 0x37, 0xa7, 0x79, 0xfb, 0xde, 0xfa, 0x37, + 0x00, 0x00, 0xff, 0xff, 0xc3, 0x9f, 0xb8, 0x0a, 0x31, 0x10, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/group/types.pb.go b/x/group/types.pb.go index c0e5cf2d5e75..6d0f083784d1 100644 --- a/x/group/types.pb.go +++ b/x/group/types.pb.go @@ -6,11 +6,11 @@ package group import ( bytes "bytes" fmt "fmt" + _ "github.com/cosmos/cosmos-proto" types "github.com/cosmos/cosmos-sdk/codec/types" _ "github.com/gogo/protobuf/gogoproto" proto "github.com/gogo/protobuf/proto" github_com_gogo_protobuf_types "github.com/gogo/protobuf/types" - _ "github.com/regen-network/cosmos-proto" _ "google.golang.org/protobuf/types/known/durationpb" _ "google.golang.org/protobuf/types/known/timestamppb" io "io" @@ -756,88 +756,89 @@ func init() { func init() { proto.RegisterFile("cosmos/group/v1beta1/types.proto", fileDescriptor_e091dfce5c49c8b6) } var fileDescriptor_e091dfce5c49c8b6 = []byte{ - // 1281 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x56, 0x4f, 0x6f, 0x1b, 0xc5, - 0x1b, 0xf6, 0xda, 0x8e, 0xff, 0xbc, 0x4e, 0x1c, 0x6b, 0x7e, 0x69, 0xeb, 0x38, 0xa9, 0xb3, 0x75, - 0x7f, 0x95, 0x22, 0x50, 0x6c, 0x25, 0xc0, 0xa5, 0xa2, 0x15, 0xb6, 0xb3, 0x29, 0x86, 0xd4, 0x0e, - 0xbb, 0x76, 0x80, 0x1e, 0xb0, 0xd6, 0xbb, 0x53, 0x67, 0xa9, 0xbd, 0x63, 0xed, 0xce, 0x86, 0x9a, - 0x4f, 0x50, 0x7c, 0xea, 0x05, 0x01, 0x07, 0x4b, 0x95, 0xf8, 0x0a, 0x7c, 0x88, 0x8a, 0x53, 0xc5, - 0xa9, 0xe2, 0x00, 0xa8, 0xbd, 0xf0, 0x05, 0xb8, 0xa3, 0x9d, 0x99, 0x4d, 0xb2, 0x89, 0xe3, 0x82, - 0xc4, 0x29, 0x7e, 0xdf, 0x79, 0x9e, 0xf7, 0xcf, 0x33, 0x6f, 0xde, 0x59, 0x90, 0x0d, 0xe2, 0x0e, - 0x89, 0x5b, 0xe9, 0x3b, 0xc4, 0x1b, 0x55, 0x8e, 0xb7, 0x7b, 0x98, 0xea, 0xdb, 0x15, 0x3a, 0x1e, - 0x61, 0xb7, 0x3c, 0x72, 0x08, 0x25, 0x68, 0x85, 0x23, 0xca, 0x0c, 0x51, 0x16, 0x88, 0xc2, 0x4a, - 0x9f, 0xf4, 0x09, 0x03, 0x54, 0xfc, 0x5f, 0x1c, 0x5b, 0x28, 0xf6, 0x09, 0xe9, 0x0f, 0x70, 0x85, - 0x59, 0x3d, 0xef, 0x61, 0xc5, 0xf4, 0x1c, 0x9d, 0x5a, 0xc4, 0x16, 0xe7, 0x1b, 0xe7, 0xcf, 0xa9, - 0x35, 0xc4, 0x2e, 0xd5, 0x87, 0x23, 0x01, 0x58, 0xe5, 0xc9, 0xba, 0x3c, 0xb2, 0xc8, 0x2c, 0x8e, - 0xce, 0x73, 0x75, 0x7b, 0xcc, 0x8f, 0x4a, 0x87, 0x90, 0xb8, 0x8f, 0x87, 0x3d, 0xec, 0xa0, 0x3c, - 0x24, 0x75, 0xd3, 0x74, 0xb0, 0xeb, 0xe6, 0x25, 0x59, 0xda, 0x4c, 0xab, 0x81, 0x89, 0xae, 0x42, - 0xe2, 0x2b, 0x6c, 0xf5, 0x8f, 0x68, 0x3e, 0xca, 0x0e, 0x84, 0x85, 0x0a, 0x90, 0x1a, 0x62, 0xaa, - 0x9b, 0x3a, 0xd5, 0xf3, 0x31, 0x59, 0xda, 0x5c, 0x54, 0x4f, 0xec, 0xd2, 0x3d, 0x48, 0xf2, 0xb8, - 0x2e, 0x7a, 0x1f, 0x92, 0x43, 0xfe, 0x33, 0x2f, 0xc9, 0xb1, 0xcd, 0xcc, 0xce, 0x7a, 0x79, 0x96, - 0x2e, 0x65, 0x8e, 0xaf, 0xc5, 0x9f, 0xff, 0xb6, 0x11, 0x51, 0x03, 0x4a, 0x69, 0x22, 0xc1, 0xb5, - 0xf6, 0x91, 0x83, 0xdd, 0x23, 0x32, 0x30, 0x77, 0xb1, 0x61, 0xb9, 0x16, 0xb1, 0x0f, 0xc8, 0xc0, - 0x32, 0xc6, 0x68, 0x1d, 0xd2, 0x34, 0x38, 0x12, 0x45, 0x9f, 0x3a, 0xd0, 0x1d, 0x48, 0xfa, 0x1a, - 0x11, 0x8f, 0xd7, 0x9d, 0xd9, 0x59, 0x2d, 0x73, 0x1d, 0xca, 0x81, 0x0e, 0xe5, 0x5d, 0xa1, 0x71, - 0x2d, 0xe5, 0x27, 0xfd, 0xfe, 0xf7, 0x0d, 0x49, 0x0d, 0x38, 0xb7, 0xd1, 0x2f, 0x3f, 0x6d, 0x65, - 0xc3, 0x09, 0x4b, 0xdf, 0x4a, 0x90, 0xbe, 0xe7, 0x17, 0xdd, 0xb0, 0x1f, 0x12, 0xb4, 0x0a, 0x29, - 0xd6, 0x41, 0xd7, 0xe2, 0xd9, 0xe3, 0x6a, 0x92, 0xd9, 0x0d, 0x13, 0xad, 0xc0, 0x82, 0x6e, 0x0e, - 0x2d, 0x5b, 0x28, 0xc6, 0x8d, 0x79, 0x82, 0xf9, 0xf2, 0x1f, 0x63, 0xc7, 0xcf, 0x95, 0x8f, 0xf3, - 0x58, 0xc2, 0x44, 0x37, 0x60, 0x91, 0x12, 0xaa, 0x0f, 0xba, 0xe2, 0x12, 0x16, 0x58, 0xc8, 0x0c, - 0xf3, 0x7d, 0xca, 0x5c, 0xa5, 0x2f, 0x20, 0xc3, 0xca, 0x12, 0x57, 0x39, 0xa7, 0xb0, 0x77, 0x21, - 0xc1, 0x95, 0x15, 0x9a, 0xcc, 0xbd, 0x0b, 0x55, 0x60, 0x4b, 0xdf, 0x45, 0x21, 0xc7, 0x12, 0x54, - 0x0d, 0x83, 0x78, 0x36, 0x65, 0xed, 0x5f, 0x3e, 0x30, 0x67, 0xf3, 0x47, 0x2f, 0x11, 0x26, 0x76, - 0x99, 0x30, 0xf1, 0xcb, 0x85, 0x59, 0x08, 0x0b, 0xf3, 0x09, 0x2c, 0x9b, 0xe2, 0x7e, 0xba, 0x23, - 0x76, 0x41, 0xf9, 0x04, 0x6b, 0x6a, 0xe5, 0xc2, 0x45, 0x57, 0xed, 0x71, 0x0d, 0xfd, 0x7c, 0xe1, - 0x42, 0xd5, 0xac, 0x19, 0x9e, 0xa8, 0x5b, 0x90, 0x35, 0xb1, 0x63, 0x1d, 0xb3, 0xa9, 0xe8, 0x3e, - 0xc2, 0xe3, 0x7c, 0x92, 0x95, 0xb3, 0x74, 0xea, 0xfd, 0x18, 0x8f, 0x6f, 0xa7, 0x9e, 0x3c, 0xdb, - 0x88, 0xfc, 0xf9, 0x6c, 0x43, 0x2a, 0xfd, 0x05, 0x90, 0x3a, 0x70, 0xc8, 0x88, 0xb8, 0xfa, 0x00, - 0x6d, 0x40, 0x66, 0x24, 0x7e, 0x9f, 0x4a, 0x0f, 0x81, 0xab, 0x61, 0x9e, 0x95, 0x2c, 0x1a, 0x96, - 0x6c, 0xde, 0x68, 0xac, 0x43, 0x9a, 0xc7, 0xf0, 0xff, 0x85, 0xe2, 0x72, 0xcc, 0x1f, 0xf3, 0x13, - 0x07, 0xba, 0x07, 0x8b, 0xae, 0xd7, 0x1b, 0x5a, 0x94, 0x62, 0xb3, 0xab, 0xf3, 0xf1, 0xc8, 0xec, - 0x14, 0x2e, 0x48, 0xd0, 0x0e, 0xf6, 0x05, 0x1f, 0xf6, 0xa7, 0xfe, 0xb0, 0x67, 0x4e, 0x98, 0x55, - 0x8a, 0x6e, 0xc2, 0x12, 0xbf, 0xb5, 0x40, 0xee, 0x04, 0xab, 0x7f, 0x91, 0x39, 0x0f, 0x85, 0xe6, - 0x3b, 0x70, 0x85, 0x83, 0x74, 0x3e, 0x09, 0x27, 0xe0, 0x24, 0x03, 0xff, 0xaf, 0x7f, 0x66, 0x4a, - 0x02, 0xce, 0x1d, 0x48, 0xb8, 0x54, 0xa7, 0x9e, 0x9b, 0x4f, 0xc9, 0xd2, 0x66, 0x76, 0xe7, 0xd6, - 0xec, 0x99, 0x0b, 0x64, 0x2c, 0x6b, 0x0c, 0xac, 0x0a, 0x92, 0x4f, 0x77, 0xb0, 0xeb, 0x0d, 0x68, - 0x3e, 0xfd, 0x8f, 0xe8, 0x2a, 0x03, 0xab, 0x82, 0x84, 0x3e, 0x00, 0x38, 0x26, 0x14, 0x77, 0xfd, - 0x68, 0x38, 0x0f, 0x4c, 0x9d, 0xb5, 0xd9, 0x21, 0xda, 0xfa, 0x60, 0x30, 0x16, 0x0b, 0x28, 0xed, - 0x93, 0xfc, 0x4a, 0x30, 0xba, 0x7b, 0xba, 0x48, 0x32, 0xff, 0x42, 0xdc, 0x80, 0x84, 0x0e, 0x61, - 0x19, 0x3f, 0xc6, 0x86, 0x47, 0x89, 0xd3, 0x15, 0x9d, 0x2c, 0xb2, 0x4e, 0xb6, 0xde, 0xd0, 0x89, - 0x22, 0x58, 0xa2, 0xa3, 0x2c, 0x0e, 0xd9, 0x68, 0x13, 0xe2, 0x43, 0xb7, 0xef, 0xe6, 0x97, 0xd8, - 0x56, 0x9d, 0x39, 0xf4, 0x2a, 0x43, 0x94, 0x5e, 0x48, 0x90, 0xe0, 0xaa, 0xa2, 0x6d, 0x40, 0x5a, - 0xbb, 0xda, 0xee, 0x68, 0xdd, 0x4e, 0x53, 0x3b, 0x50, 0xea, 0x8d, 0xbd, 0x86, 0xb2, 0x9b, 0x8b, - 0x14, 0x56, 0x27, 0x53, 0xf9, 0x4a, 0x90, 0x99, 0x63, 0x1b, 0xf6, 0xb1, 0x3e, 0xb0, 0x4c, 0xb4, - 0x0d, 0x39, 0x41, 0xd1, 0x3a, 0xb5, 0xfb, 0x8d, 0x76, 0x5b, 0xd9, 0xcd, 0x49, 0x85, 0xb5, 0xc9, - 0x54, 0xbe, 0x16, 0x26, 0x68, 0xc1, 0x34, 0xa1, 0xb7, 0x61, 0x49, 0x50, 0xea, 0xfb, 0x2d, 0x4d, - 0xd9, 0xcd, 0x45, 0x0b, 0xf9, 0xc9, 0x54, 0x5e, 0x09, 0xe3, 0xeb, 0x03, 0xe2, 0x62, 0x13, 0x6d, - 0x41, 0x56, 0x80, 0xab, 0xb5, 0x96, 0xea, 0x47, 0x8f, 0xcd, 0x2a, 0xa7, 0xda, 0x23, 0x0e, 0xc5, - 0x66, 0x21, 0xfe, 0xe4, 0xc7, 0x62, 0xa4, 0xf4, 0xab, 0x04, 0x09, 0xa1, 0xc3, 0x36, 0x20, 0x55, - 0xd1, 0x3a, 0xfb, 0xed, 0x79, 0x2d, 0x71, 0x6c, 0xd0, 0xd2, 0x7b, 0x67, 0x28, 0x7b, 0x8d, 0x66, - 0x75, 0xbf, 0xf1, 0x80, 0x35, 0x75, 0x7d, 0x32, 0x95, 0x57, 0xc3, 0x94, 0x8e, 0xfd, 0xd0, 0xb2, - 0xf5, 0x81, 0xf5, 0x35, 0x36, 0x51, 0x05, 0x96, 0x05, 0xad, 0x5a, 0xaf, 0x2b, 0x07, 0x6d, 0xd6, - 0x58, 0x61, 0x32, 0x95, 0xaf, 0x86, 0x39, 0x55, 0xc3, 0xc0, 0x23, 0x1a, 0x22, 0xa8, 0xca, 0x47, - 0x4a, 0x9d, 0xf7, 0x36, 0x83, 0xa0, 0xe2, 0x2f, 0xb1, 0x71, 0xda, 0xdc, 0x0f, 0x51, 0xc8, 0x86, - 0x2f, 0x1f, 0xd5, 0x60, 0x4d, 0xf9, 0x4c, 0xa9, 0x77, 0xda, 0x2d, 0xb5, 0x3b, 0xb3, 0xdb, 0x1b, - 0x93, 0xa9, 0x7c, 0x3d, 0x88, 0x1a, 0x26, 0x07, 0x5d, 0xdf, 0x81, 0x6b, 0xe7, 0x63, 0x34, 0x5b, - 0xed, 0xae, 0xda, 0x69, 0xe6, 0xa4, 0x82, 0x3c, 0x99, 0xca, 0xeb, 0xb3, 0xf9, 0x4d, 0x42, 0x55, - 0xcf, 0x46, 0x77, 0x2f, 0xd2, 0xb5, 0x4e, 0xbd, 0xae, 0x68, 0x5a, 0x2e, 0x3a, 0x2f, 0xbd, 0xe6, - 0x19, 0x86, 0xbf, 0xe3, 0x66, 0xf0, 0xf7, 0xaa, 0x8d, 0xfd, 0x8e, 0xaa, 0xe4, 0x62, 0xf3, 0xf8, - 0x7b, 0xba, 0x35, 0xf0, 0x1c, 0xcc, 0xb5, 0xb9, 0x1d, 0xf7, 0x77, 0x6f, 0xe9, 0x1b, 0x09, 0x16, - 0xd8, 0xbf, 0x2b, 0x5a, 0x83, 0xf4, 0x18, 0xbb, 0x5d, 0xb6, 0x71, 0xc4, 0x43, 0x94, 0x1a, 0x63, - 0xb7, 0xee, 0xdb, 0xfe, 0x4b, 0x64, 0x13, 0x71, 0x26, 0x36, 0xae, 0x4d, 0xf8, 0xd1, 0x4d, 0x58, - 0xd2, 0x7b, 0x2e, 0xd5, 0x2d, 0x5b, 0x9c, 0xf3, 0x17, 0x69, 0x51, 0x38, 0x39, 0xe8, 0x3a, 0xc0, - 0x31, 0xa6, 0x41, 0x84, 0x38, 0xff, 0xc4, 0xf0, 0x3d, 0xec, 0x58, 0xd4, 0xf2, 0x52, 0x82, 0xf8, - 0x21, 0xa1, 0xf8, 0xcd, 0xfb, 0x7f, 0x05, 0x16, 0xfc, 0xb5, 0xe2, 0x04, 0x9f, 0x05, 0xcc, 0xf0, - 0xdf, 0x64, 0xe3, 0x88, 0x58, 0x06, 0x66, 0x25, 0x64, 0x2f, 0x7b, 0x93, 0xeb, 0x0c, 0xa3, 0x0a, - 0xec, 0xdc, 0x37, 0xf3, 0xbf, 0x7a, 0x13, 0xde, 0x32, 0x21, 0xc1, 0xd3, 0xa2, 0xab, 0x80, 0xea, - 0x1f, 0xb6, 0x1a, 0x75, 0x25, 0x3c, 0x76, 0x68, 0x09, 0xd2, 0xc2, 0xdf, 0x6c, 0xe5, 0x24, 0x94, - 0x05, 0x10, 0xe6, 0xe7, 0x8a, 0x96, 0x8b, 0x22, 0x04, 0x59, 0x61, 0x57, 0x6b, 0x5a, 0xbb, 0xda, - 0x68, 0xe6, 0x62, 0x68, 0x19, 0x32, 0xc2, 0x77, 0xa8, 0xb4, 0x5b, 0xb9, 0x78, 0xed, 0xee, 0xf3, - 0x57, 0x45, 0xe9, 0xc5, 0xab, 0xa2, 0xf4, 0xc7, 0xab, 0xa2, 0xf4, 0xf4, 0x75, 0x31, 0xf2, 0xe2, - 0x75, 0x31, 0xf2, 0xf2, 0x75, 0x31, 0xf2, 0xe0, 0xff, 0x7d, 0x8b, 0x1e, 0x79, 0xbd, 0xb2, 0x41, - 0x86, 0xe2, 0x93, 0x56, 0xfc, 0xd9, 0x72, 0xcd, 0x47, 0x95, 0xc7, 0xfc, 0xdb, 0xbb, 0x97, 0x60, - 0x0d, 0xbd, 0xf3, 0x77, 0x00, 0x00, 0x00, 0xff, 0xff, 0xa6, 0x1c, 0xbf, 0x87, 0x92, 0x0b, 0x00, - 0x00, + // 1310 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x57, 0xcf, 0x6f, 0x1a, 0xc7, + 0x17, 0x67, 0x01, 0xf3, 0xe3, 0x61, 0x63, 0x34, 0x5f, 0x27, 0x59, 0xe3, 0x04, 0x6f, 0xc8, 0x37, + 0x92, 0xd5, 0xca, 0x20, 0xbb, 0x3f, 0x0e, 0x51, 0x13, 0x15, 0xf0, 0x3a, 0xa5, 0x75, 0xc0, 0xdd, + 0x05, 0xb7, 0xcd, 0xa1, 0x68, 0xd9, 0x9d, 0xe0, 0x6d, 0x60, 0x07, 0xed, 0xce, 0xba, 0xa1, 0x7f, + 0x41, 0xca, 0x29, 0xc7, 0xf6, 0x80, 0x14, 0xa9, 0xa7, 0x9e, 0x7a, 0xc9, 0x1f, 0x11, 0xb5, 0x97, + 0x28, 0xa7, 0xaa, 0x87, 0xb6, 0x4a, 0x2e, 0x3d, 0xf7, 0x2f, 0xa8, 0x76, 0x66, 0x36, 0x36, 0x31, + 0xc1, 0x49, 0xd5, 0x13, 0x3b, 0x6f, 0x3e, 0x9f, 0x79, 0xef, 0x7d, 0xde, 0x9b, 0x1f, 0x80, 0x62, + 0x12, 0x6f, 0x40, 0xbc, 0x72, 0xcf, 0x25, 0xfe, 0xb0, 0x7c, 0xb4, 0xd5, 0xc5, 0xd4, 0xd8, 0x2a, + 0xd3, 0xd1, 0x10, 0x7b, 0xa5, 0xa1, 0x4b, 0x28, 0x41, 0x2b, 0x1c, 0x51, 0x62, 0x88, 0x92, 0x40, + 0xe4, 0x57, 0x7a, 0xa4, 0x47, 0x18, 0xa0, 0x1c, 0x7c, 0x71, 0x6c, 0xbe, 0xd0, 0x23, 0xa4, 0xd7, + 0xc7, 0x65, 0x36, 0xea, 0xfa, 0x77, 0xca, 0x96, 0xef, 0x1a, 0xd4, 0x26, 0x8e, 0x98, 0x5f, 0x7f, + 0x79, 0x9e, 0xda, 0x03, 0xec, 0x51, 0x63, 0x30, 0x14, 0x80, 0x55, 0xee, 0xac, 0xc3, 0x57, 0x16, + 0x9e, 0xc5, 0xd4, 0xcb, 0x5c, 0xc3, 0x19, 0x9d, 0xc9, 0x2a, 0x0e, 0x21, 0x71, 0x0b, 0x0f, 0xba, + 0xd8, 0x45, 0xdb, 0x90, 0x34, 0x2c, 0xcb, 0xc5, 0x9e, 0x27, 0x4b, 0x8a, 0xb4, 0x91, 0xae, 0xca, + 0x4f, 0x1f, 0x6d, 0x86, 0xc9, 0x55, 0xf8, 0x8c, 0x4e, 0x5d, 0xdb, 0xe9, 0x69, 0x21, 0x10, 0x9d, + 0x87, 0xc4, 0xd7, 0xd8, 0xee, 0x1d, 0x52, 0x39, 0x1a, 0x50, 0x34, 0x31, 0x42, 0x79, 0x48, 0x0d, + 0x30, 0x35, 0x2c, 0x83, 0x1a, 0x72, 0x4c, 0x91, 0x36, 0x16, 0xb5, 0x17, 0xe3, 0xe2, 0x4d, 0x48, + 0x72, 0x8f, 0x1e, 0xfa, 0x00, 0x92, 0x03, 0xfe, 0x29, 0x4b, 0x4a, 0x6c, 0x23, 0xb3, 0x7d, 0xb1, + 0x34, 0x4b, 0xcc, 0x12, 0xc7, 0x57, 0xe3, 0x8f, 0x7f, 0x5f, 0x8f, 0x68, 0x21, 0xa5, 0x38, 0x96, + 0xe0, 0x42, 0xeb, 0xd0, 0xc5, 0xde, 0x21, 0xe9, 0x5b, 0x3b, 0xd8, 0xb4, 0x3d, 0x9b, 0x38, 0xfb, + 0xa4, 0x6f, 0x9b, 0x23, 0x74, 0x11, 0xd2, 0x34, 0x9c, 0xe2, 0xe9, 0x68, 0xc7, 0x06, 0x74, 0x1d, + 0x92, 0x81, 0xb0, 0xc4, 0xe7, 0x71, 0x67, 0xb6, 0x57, 0x4b, 0x5c, 0xbc, 0x52, 0x28, 0x5e, 0x69, + 0x47, 0x14, 0xa6, 0x9a, 0x0a, 0x9c, 0x7e, 0xf7, 0xc7, 0xba, 0xa4, 0x85, 0x9c, 0x6b, 0xe8, 0xe9, + 0xa3, 0xcd, 0xec, 0xb4, 0xc3, 0xe2, 0x4f, 0x12, 0xa4, 0x6f, 0x06, 0x41, 0xd7, 0x9d, 0x3b, 0x04, + 0xad, 0x42, 0x8a, 0x65, 0xd0, 0xb1, 0xb9, 0xf7, 0xb8, 0x96, 0x64, 0xe3, 0xba, 0x85, 0x4a, 0xb0, + 0x60, 0x58, 0x03, 0xdb, 0xe1, 0x8a, 0xcd, 0x11, 0x99, 0xc3, 0xe6, 0x49, 0x89, 0x64, 0x48, 0x1e, + 0x61, 0x37, 0x88, 0x42, 0x8e, 0x73, 0x2f, 0x62, 0x88, 0x2e, 0xc3, 0x22, 0x25, 0xd4, 0xe8, 0x77, + 0x44, 0x79, 0x16, 0x98, 0x04, 0x19, 0x66, 0xfb, 0x8c, 0x99, 0x8a, 0x5f, 0x42, 0x86, 0x05, 0x2c, + 0xca, 0x3f, 0x27, 0xe4, 0x77, 0x21, 0xc1, 0x35, 0x17, 0x6a, 0xcd, 0xad, 0x92, 0x26, 0xb0, 0xc5, + 0x5f, 0xa2, 0x90, 0x63, 0x0e, 0x2a, 0xa6, 0x49, 0x7c, 0x87, 0x32, 0x61, 0xfe, 0x4d, 0x93, 0x9d, + 0x8c, 0x2c, 0xfa, 0x0a, 0x31, 0x63, 0x6f, 0x2e, 0x66, 0xfc, 0xd5, 0x62, 0x2e, 0x4c, 0x8b, 0xf9, + 0x29, 0x2c, 0x5b, 0xa2, 0xda, 0x9d, 0x21, 0x2b, 0xb7, 0x9c, 0x60, 0x42, 0xac, 0x9c, 0x6a, 0x9b, + 0x8a, 0x33, 0xaa, 0xa2, 0x9f, 0x4f, 0xb5, 0x87, 0x96, 0xb5, 0xa6, 0xfb, 0xf3, 0x2a, 0x64, 0x2d, + 0xec, 0xda, 0x47, 0xac, 0xc7, 0x3a, 0x77, 0xf1, 0x48, 0x4e, 0xb2, 0x70, 0x96, 0x8e, 0xad, 0x9f, + 0xe0, 0xd1, 0xb5, 0xd4, 0xfd, 0x87, 0xeb, 0x91, 0xbf, 0x1e, 0xae, 0x4b, 0xc5, 0x1f, 0x33, 0x90, + 0xda, 0x77, 0xc9, 0x90, 0x78, 0x46, 0x1f, 0xad, 0x43, 0x66, 0x28, 0xbe, 0x8f, 0xcb, 0x05, 0xa1, + 0xa9, 0x6e, 0x9d, 0x94, 0x39, 0xfa, 0xba, 0x32, 0xcf, 0x6b, 0xb4, 0xf7, 0x21, 0xcd, 0x57, 0x0f, + 0xb6, 0x6a, 0x5c, 0x89, 0xcd, 0x5d, 0xf1, 0x18, 0x8a, 0x6e, 0xc2, 0xa2, 0xe7, 0x77, 0x07, 0x36, + 0xa5, 0xd8, 0xea, 0x18, 0xbc, 0x0d, 0x33, 0xdb, 0xf9, 0x53, 0xb2, 0xb5, 0xc2, 0x63, 0x8e, 0x6f, + 0xb7, 0x07, 0xc1, 0x76, 0xcb, 0xbc, 0x60, 0x56, 0x28, 0xba, 0x02, 0x4b, 0xbc, 0x07, 0xc2, 0x12, + 0x25, 0x58, 0xce, 0x8b, 0xcc, 0x78, 0x20, 0xea, 0xb4, 0x0d, 0xe7, 0x38, 0xc8, 0xe0, 0x1d, 0xf7, + 0x02, 0x9c, 0x64, 0xe0, 0xff, 0xf5, 0x4e, 0x74, 0x63, 0xc8, 0xb9, 0x0e, 0x09, 0x8f, 0x1a, 0xd4, + 0xf7, 0xe4, 0x94, 0x22, 0x6d, 0x64, 0xb7, 0xaf, 0xce, 0xee, 0xed, 0x50, 0xfa, 0x92, 0xce, 0xc0, + 0x9a, 0x20, 0x05, 0x74, 0x17, 0x7b, 0x7e, 0x9f, 0xca, 0xe9, 0xd7, 0xa2, 0x6b, 0x0c, 0xac, 0x09, + 0x12, 0xfa, 0x10, 0xe0, 0x88, 0x50, 0xdc, 0x09, 0x56, 0xc3, 0x32, 0x30, 0x75, 0xd6, 0x66, 0x2f, + 0xd1, 0x32, 0xfa, 0xfd, 0x91, 0x38, 0x02, 0xd3, 0x01, 0x29, 0x88, 0x04, 0xa3, 0x1b, 0xc7, 0x47, + 0x59, 0xe6, 0x0d, 0xc4, 0x0d, 0x49, 0xe8, 0x00, 0x96, 0xf1, 0x3d, 0x6c, 0xfa, 0x94, 0xb8, 0x1d, + 0x91, 0xc9, 0x22, 0xcb, 0x64, 0xf3, 0x8c, 0x4c, 0x54, 0xc1, 0x12, 0x19, 0x65, 0xf1, 0xd4, 0x18, + 0x6d, 0x40, 0x7c, 0xe0, 0xf5, 0x3c, 0x79, 0x89, 0x9d, 0xeb, 0x33, 0x37, 0x8a, 0xc6, 0x10, 0xc5, + 0x27, 0x12, 0x24, 0xb8, 0xaa, 0x68, 0x0b, 0x90, 0xde, 0xaa, 0xb4, 0xda, 0x7a, 0xa7, 0xdd, 0xd0, + 0xf7, 0xd5, 0x5a, 0x7d, 0xb7, 0xae, 0xee, 0xe4, 0x22, 0xf9, 0xd5, 0xf1, 0x44, 0x39, 0x17, 0x7a, + 0xe6, 0xd8, 0xba, 0x73, 0x64, 0xf4, 0x6d, 0x0b, 0x6d, 0x41, 0x4e, 0x50, 0xf4, 0x76, 0xf5, 0x56, + 0xbd, 0xd5, 0x52, 0x77, 0x72, 0x52, 0x7e, 0x6d, 0x3c, 0x51, 0x2e, 0x4c, 0x13, 0xf4, 0xb0, 0x9b, + 0xd0, 0xdb, 0xb0, 0x24, 0x28, 0xb5, 0xbd, 0xa6, 0xae, 0xee, 0xe4, 0xa2, 0x79, 0x79, 0x3c, 0x51, + 0x56, 0xa6, 0xf1, 0xb5, 0x3e, 0xf1, 0xb0, 0x85, 0x36, 0x21, 0x2b, 0xc0, 0x95, 0x6a, 0x53, 0x0b, + 0x56, 0x8f, 0xcd, 0x0a, 0xa7, 0xd2, 0x25, 0x2e, 0xc5, 0x56, 0x3e, 0x7e, 0xff, 0x87, 0x42, 0xa4, + 0xf8, 0x9b, 0x04, 0x09, 0xa1, 0xc3, 0x16, 0x20, 0x4d, 0xd5, 0xdb, 0x7b, 0xad, 0x79, 0x29, 0x71, + 0x6c, 0x98, 0xd2, 0x7b, 0x27, 0x28, 0xbb, 0xf5, 0x46, 0x65, 0xaf, 0x7e, 0x9b, 0x25, 0x75, 0x69, + 0x3c, 0x51, 0x56, 0xa7, 0x29, 0x6d, 0xe7, 0x8e, 0xed, 0x18, 0x7d, 0xfb, 0x1b, 0x6c, 0xa1, 0x32, + 0x2c, 0x0b, 0x5a, 0xa5, 0x56, 0x53, 0xf7, 0x5b, 0x2c, 0xb1, 0xfc, 0x78, 0xa2, 0x9c, 0x9f, 0xe6, + 0x54, 0x4c, 0x13, 0x0f, 0xe9, 0x14, 0x41, 0x53, 0x3f, 0x56, 0x6b, 0x3c, 0xb7, 0x19, 0x04, 0x0d, + 0x7f, 0x85, 0xcd, 0xe3, 0xe4, 0xbe, 0x8f, 0x42, 0x76, 0xba, 0xf8, 0xa8, 0x0a, 0x6b, 0xea, 0xe7, + 0x6a, 0xad, 0xdd, 0x6a, 0x6a, 0x9d, 0x99, 0xd9, 0x5e, 0x1e, 0x4f, 0x94, 0x4b, 0xe1, 0xaa, 0xd3, + 0xe4, 0x30, 0xeb, 0xeb, 0x70, 0xe1, 0xe5, 0x35, 0x1a, 0xcd, 0x56, 0x47, 0x6b, 0x37, 0x72, 0x52, + 0x5e, 0x19, 0x4f, 0x94, 0x8b, 0xb3, 0xf9, 0x0d, 0x42, 0x35, 0xdf, 0x41, 0x37, 0x4e, 0xd3, 0xf5, + 0x76, 0xad, 0xa6, 0xea, 0x7a, 0x2e, 0x3a, 0xcf, 0xbd, 0xee, 0x9b, 0x66, 0x70, 0xfa, 0xcd, 0xe0, + 0xef, 0x56, 0xea, 0x7b, 0x6d, 0x4d, 0xcd, 0xc5, 0xe6, 0xf1, 0x77, 0x0d, 0xbb, 0xef, 0xbb, 0x98, + 0x6b, 0x73, 0x2d, 0x1e, 0x9c, 0xd7, 0xc5, 0x6f, 0x25, 0x58, 0x60, 0xdb, 0x15, 0xad, 0x41, 0x7a, + 0x84, 0xbd, 0x0e, 0x3b, 0x71, 0xc4, 0x33, 0x24, 0x35, 0xc2, 0x5e, 0x2d, 0x18, 0x07, 0xf7, 0x9a, + 0x43, 0xc4, 0x1c, 0x7f, 0x3e, 0x25, 0x1d, 0xc2, 0xa7, 0xae, 0xc0, 0x92, 0xd1, 0xf5, 0xa8, 0x61, + 0x3b, 0x62, 0x9e, 0xdd, 0x6f, 0xda, 0xa2, 0x30, 0x72, 0xd0, 0x25, 0x80, 0x23, 0x4c, 0xc3, 0x15, + 0xe2, 0xfc, 0x91, 0x13, 0x58, 0xd8, 0xb4, 0x88, 0xe5, 0x6f, 0x09, 0xe2, 0x07, 0x84, 0xe2, 0xb3, + 0xef, 0x8c, 0x12, 0x2c, 0x04, 0xc7, 0x8a, 0x7b, 0xf6, 0xc3, 0x84, 0xc1, 0x82, 0x57, 0x81, 0x79, + 0x48, 0x6c, 0x13, 0xb3, 0xe0, 0xb2, 0xaf, 0x7a, 0x15, 0xd4, 0x18, 0x46, 0x13, 0xd8, 0xb9, 0x37, + 0xf0, 0x7f, 0x75, 0x5b, 0xbc, 0x65, 0x41, 0x82, 0xbb, 0x45, 0xe7, 0x01, 0xd5, 0x3e, 0x6a, 0xd6, + 0x6b, 0xea, 0x74, 0x43, 0xa2, 0x25, 0x48, 0x0b, 0x7b, 0xa3, 0x99, 0x93, 0x50, 0x16, 0x40, 0x0c, + 0xbf, 0x50, 0xf5, 0x5c, 0x14, 0x21, 0xc8, 0x8a, 0x71, 0xa5, 0xaa, 0xb7, 0x2a, 0xf5, 0x46, 0x2e, + 0x86, 0x96, 0x21, 0x23, 0x6c, 0x07, 0x6a, 0xab, 0x99, 0x8b, 0x57, 0x6f, 0x3c, 0x7e, 0x56, 0x90, + 0x9e, 0x3c, 0x2b, 0x48, 0x7f, 0x3e, 0x2b, 0x48, 0x0f, 0x9e, 0x17, 0x22, 0x4f, 0x9e, 0x17, 0x22, + 0xbf, 0x3e, 0x2f, 0x44, 0x6e, 0xff, 0xbf, 0x67, 0xd3, 0x43, 0xbf, 0x5b, 0x32, 0xc9, 0x40, 0xbc, + 0xb6, 0xc5, 0xcf, 0xa6, 0x67, 0xdd, 0x2d, 0xdf, 0xe3, 0x7f, 0x26, 0xba, 0x09, 0x96, 0xd0, 0x3b, + 0xff, 0x04, 0x00, 0x00, 0xff, 0xff, 0x29, 0xa5, 0x74, 0x3e, 0x63, 0x0c, 0x00, 0x00, } func (this *GroupAccountInfo) Equal(that interface{}) bool { diff --git a/x/mint/types/mint.pb.go b/x/mint/types/mint.pb.go index 4ed1cccd6978..aefb13f0befb 100644 --- a/x/mint/types/mint.pb.go +++ b/x/mint/types/mint.pb.go @@ -5,6 +5,7 @@ package types import ( fmt "fmt" + _ "github.com/cosmos/cosmos-proto" github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" _ "github.com/gogo/protobuf/gogoproto" proto "github.com/gogo/protobuf/proto" @@ -135,35 +136,36 @@ func init() { func init() { proto.RegisterFile("cosmos/mint/v1beta1/mint.proto", fileDescriptor_2df116d183c1e223) } var fileDescriptor_2df116d183c1e223 = []byte{ - // 437 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x93, 0xc1, 0x6e, 0xd3, 0x30, - 0x1c, 0xc6, 0x63, 0x28, 0x95, 0x6a, 0x98, 0x00, 0x6f, 0xa0, 0x68, 0x82, 0x64, 0xca, 0x01, 0x8d, - 0x03, 0x89, 0x26, 0x6e, 0x3b, 0x66, 0x15, 0x07, 0xc4, 0x50, 0xe5, 0x1b, 0x5c, 0xa2, 0x7f, 0x52, - 0x93, 0x59, 0x8d, 0xed, 0xca, 0xf6, 0x46, 0x7b, 0xe5, 0x09, 0x38, 0x72, 0xe4, 0x2d, 0x78, 0x85, - 0xdd, 0xd8, 0x11, 0x71, 0xa8, 0x50, 0xfb, 0x06, 0x7b, 0x02, 0x14, 0xbb, 0x6a, 0xa1, 0x20, 0xa4, - 0x4a, 0x9c, 0x92, 0xef, 0xfb, 0xff, 0xf3, 0xfd, 0xbe, 0x58, 0x32, 0x8e, 0x2a, 0x65, 0x84, 0x32, - 0x99, 0xe0, 0xd2, 0x66, 0x17, 0x47, 0x25, 0xb3, 0x70, 0xe4, 0x44, 0x3a, 0xd6, 0xca, 0x2a, 0xb2, - 0xeb, 0xe7, 0xa9, 0xb3, 0x96, 0xf3, 0xfd, 0xbd, 0x5a, 0xd5, 0xca, 0xcd, 0xb3, 0xf6, 0xcd, 0xaf, - 0x26, 0x5f, 0x11, 0xee, 0x9e, 0x72, 0x69, 0x99, 0x26, 0xaf, 0x70, 0x8f, 0xcb, 0x77, 0x0d, 0x58, - 0xae, 0x64, 0x88, 0x0e, 0xd0, 0x61, 0x2f, 0x4f, 0x2f, 0x67, 0x71, 0xf0, 0x7d, 0x16, 0x3f, 0xa9, - 0xb9, 0x3d, 0x3b, 0x2f, 0xd3, 0x4a, 0x89, 0x6c, 0xc9, 0xf6, 0x8f, 0x67, 0x66, 0x38, 0xca, 0xec, - 0x74, 0xcc, 0x4c, 0xda, 0x67, 0x15, 0x5d, 0x07, 0x90, 0xf7, 0xf8, 0x3e, 0x48, 0x79, 0x0e, 0x4d, - 0x31, 0xd6, 0xea, 0x82, 0x1b, 0xae, 0xa4, 0x09, 0x6f, 0xb8, 0xd4, 0x97, 0xdb, 0xa5, 0x5e, 0xcf, - 0xe2, 0x70, 0x0a, 0xa2, 0x39, 0x4e, 0xfe, 0x08, 0x4c, 0xe8, 0x3d, 0xef, 0x0d, 0xd6, 0xd6, 0x97, - 0x0e, 0xee, 0x0e, 0x40, 0x83, 0x30, 0xe4, 0x31, 0xc6, 0xed, 0x11, 0x14, 0x43, 0x26, 0x95, 0xf0, - 0xbf, 0x44, 0x7b, 0xad, 0xd3, 0x6f, 0x0d, 0xf2, 0x01, 0xe1, 0x07, 0xab, 0xc2, 0x85, 0x06, 0xcb, - 0x8a, 0xea, 0x0c, 0x64, 0xcd, 0x96, 0x3d, 0x5f, 0x6f, 0xdd, 0xf3, 0x91, 0xef, 0xf9, 0xd7, 0xd0, - 0x84, 0xee, 0xae, 0x7c, 0x0a, 0x96, 0x9d, 0x38, 0x97, 0x8c, 0xf0, 0xce, 0x7a, 0x5d, 0xc0, 0x24, - 0xbc, 0xe9, 0xd8, 0x2f, 0xb6, 0x66, 0xef, 0x6d, 0xb2, 0x05, 0x4c, 0x12, 0x7a, 0x67, 0xa5, 0x4f, - 0x61, 0xb2, 0x01, 0xe3, 0x32, 0xec, 0xfc, 0x37, 0x18, 0x97, 0xbf, 0xc1, 0xb8, 0x24, 0x0c, 0xdf, - 0xae, 0x15, 0x34, 0x45, 0xa9, 0xe4, 0x90, 0x0d, 0xc3, 0x5b, 0x0e, 0xd5, 0xdf, 0x1a, 0x45, 0x3c, - 0xea, 0x97, 0xa8, 0x84, 0xe2, 0x56, 0xe5, 0x4e, 0x90, 0x1c, 0xdf, 0x2d, 0x1b, 0x55, 0x8d, 0x4c, - 0x31, 0x66, 0xba, 0x98, 0x32, 0xd0, 0x61, 0xf7, 0x00, 0x1d, 0x76, 0xf2, 0xfd, 0xeb, 0x59, 0xfc, - 0xd0, 0x7f, 0xbc, 0xb1, 0x90, 0xd0, 0x1d, 0xef, 0x0c, 0x98, 0x7e, 0xc3, 0x40, 0x1f, 0x77, 0x3e, - 0x7d, 0x8e, 0x83, 0xfc, 0xe4, 0x72, 0x1e, 0xa1, 0xab, 0x79, 0x84, 0x7e, 0xcc, 0x23, 0xf4, 0x71, - 0x11, 0x05, 0x57, 0x8b, 0x28, 0xf8, 0xb6, 0x88, 0x82, 0xb7, 0x4f, 0xff, 0xd9, 0x76, 0xe2, 0x2f, - 0xa2, 0x2b, 0x5d, 0x76, 0xdd, 0xbd, 0x7a, 0xfe, 0x33, 0x00, 0x00, 0xff, 0xff, 0x34, 0x52, 0xcf, - 0x87, 0xa4, 0x03, 0x00, 0x00, + // 460 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x93, 0xc1, 0x6a, 0x13, 0x41, + 0x1c, 0xc6, 0x77, 0x34, 0x06, 0x32, 0x5a, 0xd4, 0x69, 0x95, 0x35, 0xe8, 0x6e, 0xc9, 0x41, 0xea, + 0xa1, 0x09, 0xc5, 0x5b, 0xf1, 0xb4, 0xcd, 0xb5, 0x10, 0x16, 0x0f, 0x5a, 0x84, 0xe5, 0xbf, 0x9b, + 0x71, 0x3b, 0x74, 0x67, 0x26, 0xcc, 0x4c, 0x4b, 0xf2, 0x00, 0xde, 0x7b, 0xf4, 0xe8, 0x43, 0xf8, + 0x10, 0x3d, 0x16, 0x4f, 0xe2, 0x21, 0x48, 0x72, 0x15, 0x84, 0x3e, 0x81, 0xec, 0xcc, 0x92, 0xc8, + 0x2a, 0x81, 0x85, 0x9e, 0x92, 0xf9, 0x7f, 0xdf, 0xff, 0xfb, 0x7e, 0xb3, 0x30, 0x38, 0xc8, 0xa4, + 0xe6, 0x52, 0x0f, 0x38, 0x13, 0x66, 0x70, 0x71, 0x90, 0x52, 0x03, 0x07, 0xf6, 0xd0, 0x9f, 0x28, + 0x69, 0x24, 0xd9, 0x76, 0x7a, 0xdf, 0x8e, 0x2a, 0xbd, 0xbb, 0x93, 0xcb, 0x5c, 0x5a, 0x7d, 0x50, + 0xfe, 0x73, 0xd6, 0xee, 0x33, 0x67, 0x4d, 0x9c, 0x50, 0xed, 0xd9, 0x43, 0xef, 0x17, 0xc2, 0xed, + 0x63, 0x26, 0x0c, 0x55, 0xe4, 0x04, 0x77, 0x98, 0xf8, 0x58, 0x80, 0x61, 0x52, 0xf8, 0x68, 0x17, + 0xed, 0x75, 0xa2, 0x37, 0x57, 0xf3, 0xd0, 0xfb, 0x31, 0x0f, 0x5f, 0xe6, 0xcc, 0x9c, 0x9e, 0xa7, + 0xfd, 0x4c, 0xf2, 0x6a, 0xbd, 0xfa, 0xd9, 0xd7, 0xe3, 0xb3, 0x81, 0x99, 0x4d, 0xa8, 0xee, 0x0f, + 0x69, 0xf6, 0xed, 0xeb, 0x3e, 0xae, 0xd2, 0x87, 0x34, 0x8b, 0xd7, 0x71, 0xe4, 0x13, 0xc2, 0x8f, + 0x41, 0x88, 0x73, 0x28, 0x4a, 0x88, 0x0b, 0xa6, 0x99, 0x14, 0xda, 0xbf, 0x63, 0x4b, 0xde, 0x35, + 0x2b, 0xb9, 0x99, 0x87, 0xfe, 0x0c, 0x78, 0x71, 0xd8, 0xfb, 0x27, 0xb0, 0x57, 0x03, 0x78, 0xe4, + 0x1c, 0xa3, 0xb5, 0xe1, 0x77, 0x0b, 0xb7, 0x47, 0xa0, 0x80, 0x6b, 0xf2, 0x02, 0xe3, 0xf2, 0xd3, + 0x25, 0x63, 0x2a, 0x24, 0x77, 0xf7, 0x8d, 0x3b, 0xe5, 0x64, 0x58, 0x0e, 0xc8, 0x25, 0xc2, 0x4f, + 0x56, 0xfc, 0x89, 0x02, 0x43, 0x93, 0xec, 0x14, 0x44, 0x4e, 0x2b, 0xea, 0x0f, 0x8d, 0xa9, 0x9f, + 0x3b, 0xea, 0xff, 0x86, 0xd6, 0xc9, 0xb7, 0x57, 0xae, 0x18, 0x0c, 0x3d, 0xb2, 0x1e, 0x32, 0xc3, + 0x5b, 0xeb, 0x65, 0x0e, 0x53, 0xff, 0xae, 0x25, 0x79, 0xdb, 0x98, 0x64, 0xa7, 0x4e, 0xc2, 0x61, + 0x5a, 0x27, 0x78, 0xb0, 0x52, 0x8f, 0x61, 0x5a, 0xab, 0x66, 0xc2, 0x6f, 0xdd, 0x5a, 0x35, 0x13, + 0x1b, 0xaa, 0x99, 0x20, 0x1a, 0xdf, 0xcf, 0x25, 0x14, 0x49, 0x2a, 0xc5, 0x98, 0x8e, 0xfd, 0x7b, + 0xb6, 0x38, 0x6e, 0x5c, 0x4c, 0x5c, 0xf1, 0x5f, 0x51, 0xf5, 0x5a, 0x5c, 0x6a, 0x91, 0x95, 0x48, + 0x84, 0x1f, 0xa6, 0x85, 0xcc, 0xce, 0x74, 0x32, 0xa1, 0x2a, 0x99, 0x51, 0x50, 0x7e, 0x7b, 0x17, + 0xed, 0xb5, 0xa2, 0xee, 0xcd, 0x3c, 0x7c, 0xea, 0xa2, 0x6a, 0x86, 0x5e, 0xbc, 0xe5, 0x26, 0x23, + 0xaa, 0xde, 0x53, 0x50, 0x87, 0xad, 0xcf, 0x5f, 0x42, 0x2f, 0x3a, 0xba, 0x5a, 0x04, 0xe8, 0x7a, + 0x11, 0xa0, 0x9f, 0x8b, 0x00, 0x5d, 0x2e, 0x03, 0xef, 0x7a, 0x19, 0x78, 0xdf, 0x97, 0x81, 0x77, + 0xf2, 0x6a, 0x23, 0xfb, 0xd4, 0x3d, 0x7c, 0x7b, 0x85, 0xb4, 0x6d, 0x1f, 0xeb, 0xeb, 0x3f, 0x01, + 0x00, 0x00, 0xff, 0xff, 0x6f, 0x26, 0xbe, 0x24, 0x14, 0x04, 0x00, 0x00, } func (m *Minter) Marshal() (dAtA []byte, err error) { diff --git a/x/slashing/types/genesis.pb.go b/x/slashing/types/genesis.pb.go index 7235626bd762..ce001fc2a295 100644 --- a/x/slashing/types/genesis.pb.go +++ b/x/slashing/types/genesis.pb.go @@ -5,6 +5,7 @@ package types import ( fmt "fmt" + _ "github.com/cosmos/cosmos-proto" _ "github.com/gogo/protobuf/gogoproto" proto "github.com/gogo/protobuf/proto" io "io" @@ -267,34 +268,36 @@ func init() { } var fileDescriptor_1923b9188b635394 = []byte{ - // 424 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x53, 0x3d, 0x8e, 0xd3, 0x40, - 0x14, 0xf6, 0x24, 0x10, 0x60, 0x9c, 0x6d, 0x46, 0x66, 0xb1, 0x56, 0xe0, 0xac, 0x2c, 0x16, 0x6d, - 0x13, 0x5b, 0xbb, 0x74, 0x20, 0x1a, 0x37, 0x2b, 0x0a, 0x24, 0xe4, 0x95, 0x28, 0x68, 0xa2, 0x71, - 0x3c, 0x3b, 0x19, 0xc5, 0xf6, 0x04, 0x3f, 0x13, 0x25, 0x57, 0xa0, 0xa2, 0xe6, 0x06, 0xf4, 0x1c, - 0x22, 0x65, 0x4a, 0xaa, 0x08, 0x25, 0x37, 0xe0, 0x04, 0x28, 0x33, 0x0e, 0x71, 0xa2, 0x98, 0x88, - 0xca, 0x7e, 0xd2, 0xf7, 0xf7, 0xbe, 0xd1, 0xc3, 0x17, 0x7d, 0x09, 0xa9, 0x04, 0x1f, 0x12, 0x0a, - 0x03, 0x91, 0x71, 0x7f, 0x7c, 0x15, 0xb1, 0x82, 0x5e, 0xf9, 0x9c, 0x65, 0x0c, 0x04, 0x78, 0xa3, - 0x5c, 0x16, 0x92, 0x3c, 0xd1, 0x30, 0x6f, 0x03, 0xf3, 0x4a, 0xd8, 0x99, 0xc5, 0x25, 0x97, 0x0a, - 0xe3, 0xaf, 0xff, 0x34, 0xfc, 0xec, 0x45, 0x9d, 0xea, 0x5f, 0xbe, 0xc2, 0xb9, 0xdf, 0x1b, 0xb8, - 0x7d, 0xa3, 0x8d, 0x6e, 0x0b, 0x5a, 0x30, 0xf2, 0x06, 0xb7, 0x46, 0x34, 0xa7, 0x29, 0xd8, 0xe8, - 0x1c, 0x5d, 0x9a, 0xd7, 0x1d, 0xaf, 0xc6, 0xd8, 0x7b, 0xaf, 0x60, 0xc1, 0xbd, 0xd9, 0xa2, 0x63, - 0x84, 0x25, 0x89, 0x70, 0x7c, 0x02, 0x82, 0x67, 0x22, 0xe3, 0x3d, 0x91, 0xdd, 0x49, 0xb0, 0x1b, - 0xe7, 0xcd, 0x4b, 0xf3, 0xfa, 0x79, 0xad, 0xca, 0xad, 0x46, 0xbf, 0xcd, 0xee, 0x64, 0xf0, 0x74, - 0x2d, 0xf5, 0x7b, 0xd1, 0xb1, 0xa6, 0x34, 0x4d, 0x5e, 0xb9, 0x3b, 0x42, 0x6e, 0xd8, 0x86, 0x2d, - 0x14, 0xc8, 0x27, 0x7c, 0x92, 0x0a, 0x00, 0x16, 0xf7, 0xa2, 0x44, 0xf6, 0x87, 0x60, 0x37, 0x95, - 0x91, 0x57, 0x6b, 0xf4, 0x81, 0x26, 0x22, 0xa6, 0x85, 0xcc, 0xdf, 0x29, 0x5a, 0xa0, 0x58, 0xfb, - 0x96, 0x3b, 0x92, 0x6e, 0xd8, 0x4e, 0x2b, 0x58, 0xf7, 0x07, 0xc2, 0x66, 0x25, 0x2e, 0xb1, 0xf1, - 0x03, 0x1a, 0xc7, 0x39, 0x03, 0xdd, 0xd5, 0xa3, 0x70, 0x33, 0x92, 0x2f, 0x08, 0x9f, 0x8e, 0x37, - 0x7e, 0xbd, 0xea, 0x1e, 0x76, 0x43, 0xb5, 0xda, 0x3d, 0x1e, 0xb3, 0x5a, 0xcc, 0x45, 0x99, 0xf2, - 0x99, 0x4e, 0x79, 0x58, 0xda, 0x0d, 0xad, 0xf1, 0x01, 0xb2, 0xfb, 0x0d, 0xe1, 0xc7, 0x07, 0x97, - 0xff, 0xc7, 0x02, 0x7c, 0xbf, 0xdd, 0x63, 0xcf, 0x58, 0xd1, 0xfd, 0xaf, 0x4e, 0x5f, 0x63, 0xb3, - 0x42, 0x25, 0x16, 0xbe, 0x2f, 0xb2, 0x98, 0x4d, 0x54, 0x9e, 0x66, 0xa8, 0x07, 0x72, 0x8a, 0x5b, - 0x9a, 0xa4, 0xda, 0x7b, 0x18, 0x96, 0x53, 0x70, 0x33, 0x5b, 0x3a, 0x68, 0xbe, 0x74, 0xd0, 0xaf, - 0xa5, 0x83, 0xbe, 0xae, 0x1c, 0x63, 0xbe, 0x72, 0x8c, 0x9f, 0x2b, 0xc7, 0xf8, 0xd8, 0xe5, 0xa2, - 0x18, 0x7c, 0x8e, 0xbc, 0xbe, 0x4c, 0xfd, 0xf2, 0x12, 0xf4, 0xa7, 0x0b, 0xf1, 0xd0, 0x9f, 0x6c, - 0xcf, 0xa2, 0x98, 0x8e, 0x18, 0x44, 0x2d, 0x75, 0x0c, 0x2f, 0xff, 0x04, 0x00, 0x00, 0xff, 0xff, - 0x03, 0x3c, 0xa8, 0xf6, 0x8c, 0x03, 0x00, 0x00, + // 450 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x93, 0xcf, 0x6e, 0xd3, 0x30, + 0x1c, 0xc7, 0xeb, 0x16, 0x0a, 0xb8, 0xdd, 0xc5, 0x0a, 0x23, 0x4c, 0x90, 0x4e, 0x11, 0x43, 0xbb, + 0x34, 0xd1, 0xca, 0x0d, 0xc4, 0x81, 0x5c, 0x26, 0x0e, 0x48, 0x28, 0x95, 0x38, 0x70, 0xa9, 0x9c, + 0xc6, 0xf3, 0xac, 0x25, 0x76, 0xc9, 0xcf, 0x54, 0xdb, 0x2b, 0x70, 0xe2, 0x35, 0xb8, 0xef, 0x21, + 0x76, 0x42, 0x13, 0x27, 0x4e, 0x13, 0x6a, 0xdf, 0x80, 0x27, 0x40, 0xb3, 0x5d, 0x96, 0x4d, 0x8d, + 0x26, 0x38, 0xb5, 0x56, 0x3e, 0xdf, 0x3f, 0xfe, 0x59, 0x3f, 0xbc, 0x33, 0x55, 0x50, 0x2a, 0x88, + 0xa1, 0xa0, 0x70, 0x28, 0x24, 0x8f, 0xe7, 0x7b, 0x19, 0xd3, 0x74, 0x2f, 0xe6, 0x4c, 0x32, 0x10, + 0x10, 0xcd, 0x2a, 0xa5, 0x15, 0x79, 0x64, 0xb1, 0x68, 0x85, 0x45, 0x0e, 0xdb, 0xf2, 0xb8, 0xe2, + 0xca, 0x30, 0xf1, 0xe5, 0x3f, 0x8b, 0x6f, 0x3d, 0x6f, 0x72, 0xfd, 0xab, 0xb7, 0xdc, 0x63, 0xcb, + 0x4d, 0xac, 0x81, 0xcb, 0x30, 0x87, 0xf0, 0x5b, 0x1b, 0xf7, 0xf7, 0x6d, 0x87, 0xb1, 0xa6, 0x9a, + 0x91, 0xd7, 0xb8, 0x3b, 0xa3, 0x15, 0x2d, 0xc1, 0x47, 0xdb, 0x68, 0xb7, 0x37, 0x1a, 0x44, 0x0d, + 0x9d, 0xa2, 0xf7, 0x06, 0x4b, 0xee, 0x9c, 0x5d, 0x0c, 0x5a, 0xa9, 0x13, 0x11, 0x8e, 0x37, 0x40, + 0x70, 0x29, 0x24, 0x9f, 0x08, 0x79, 0xa0, 0xc0, 0x6f, 0x6f, 0x77, 0x76, 0x7b, 0xa3, 0x67, 0x8d, + 0x2e, 0x63, 0x4b, 0xbf, 0x95, 0x07, 0x2a, 0x79, 0x72, 0x69, 0xf5, 0xfb, 0x62, 0xe0, 0x9d, 0xd0, + 0xb2, 0x78, 0x19, 0x5e, 0x33, 0x0a, 0xd3, 0x3e, 0x5c, 0xa1, 0x40, 0x3e, 0xe1, 0x8d, 0x52, 0x00, + 0xb0, 0x7c, 0x92, 0x15, 0x6a, 0x7a, 0x04, 0x7e, 0xc7, 0x04, 0x45, 0x8d, 0x41, 0x1f, 0x68, 0x21, + 0x72, 0xaa, 0x55, 0xf5, 0xce, 0xc8, 0x12, 0xa3, 0xba, 0x19, 0x79, 0xcd, 0x32, 0x4c, 0xfb, 0x65, + 0x8d, 0x0d, 0xbf, 0x23, 0xdc, 0xab, 0xd5, 0x25, 0x23, 0x7c, 0x8f, 0xe6, 0x79, 0xc5, 0xc0, 0xce, + 0xea, 0x41, 0xe2, 0xff, 0x38, 0x1d, 0x7a, 0x2e, 0xff, 0x8d, 0xfd, 0x32, 0xd6, 0x95, 0x90, 0x3c, + 0x5d, 0x81, 0xe4, 0x0b, 0xc2, 0x9b, 0xf3, 0x55, 0x93, 0x49, 0xfd, 0x86, 0x7e, 0xdb, 0xcc, 0x7b, + 0x78, 0xfb, 0x05, 0xea, 0x23, 0xdb, 0x71, 0xfd, 0x9f, 0xda, 0xfe, 0xeb, 0xad, 0xc3, 0xd4, 0x9b, + 0xaf, 0x11, 0x87, 0xa7, 0x08, 0x3f, 0x5c, 0x3b, 0x96, 0xff, 0xba, 0x1a, 0xbf, 0xf9, 0x22, 0xb7, + 0x3d, 0x7d, 0x2d, 0xf1, 0x9f, 0xde, 0xe1, 0x15, 0xee, 0xd5, 0xa4, 0xc4, 0xc3, 0x77, 0x85, 0xcc, + 0xd9, 0xb1, 0x69, 0xda, 0x49, 0xed, 0x81, 0x6c, 0xe2, 0xae, 0x15, 0x99, 0xb9, 0xde, 0x4f, 0xdd, + 0x29, 0xd9, 0x3f, 0x5b, 0x04, 0xe8, 0x7c, 0x11, 0xa0, 0x5f, 0x8b, 0x00, 0x7d, 0x5d, 0x06, 0xad, + 0xf3, 0x65, 0xd0, 0xfa, 0xb9, 0x0c, 0x5a, 0x1f, 0x87, 0x5c, 0xe8, 0xc3, 0xcf, 0x59, 0x34, 0x55, + 0xa5, 0xdb, 0x11, 0xf7, 0x33, 0x84, 0xfc, 0x28, 0x3e, 0xbe, 0xda, 0x32, 0x7d, 0x32, 0x63, 0x90, + 0x75, 0xcd, 0x02, 0xbd, 0xf8, 0x13, 0x00, 0x00, 0xff, 0xff, 0x71, 0x9a, 0x91, 0x04, 0xdb, 0x03, + 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/slashing/types/query.pb.go b/x/slashing/types/query.pb.go index 3a0c997a3056..76b0dbf79bd3 100644 --- a/x/slashing/types/query.pb.go +++ b/x/slashing/types/query.pb.go @@ -6,6 +6,7 @@ package types import ( context "context" fmt "fmt" + _ "github.com/cosmos/cosmos-proto" query "github.com/cosmos/cosmos-sdk/types/query" _ "github.com/gogo/protobuf/gogoproto" grpc1 "github.com/gogo/protobuf/grpc" @@ -321,40 +322,42 @@ func init() { } var fileDescriptor_791b11d41a861ed0 = []byte{ - // 526 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x94, 0x41, 0x6b, 0x13, 0x41, - 0x14, 0xc7, 0x33, 0x6d, 0x0d, 0x38, 0x29, 0x22, 0x63, 0xa1, 0x35, 0xc8, 0xc6, 0xae, 0x90, 0x16, - 0x35, 0x3b, 0x26, 0x22, 0x5e, 0xec, 0xc1, 0x1e, 0x0c, 0xde, 0x34, 0x8a, 0x07, 0x41, 0xc2, 0x6c, - 0x32, 0x9d, 0x0e, 0x6e, 0x66, 0xb6, 0xfb, 0x36, 0xc1, 0x20, 0x5e, 0x3c, 0x7b, 0x10, 0xfc, 0x0c, - 0x1e, 0x3d, 0xf8, 0x2d, 0x7a, 0x2c, 0x78, 0xf1, 0x24, 0x92, 0xf8, 0x09, 0xfc, 0x04, 0x92, 0x99, - 0x49, 0xb2, 0x25, 0xae, 0xa6, 0x3d, 0xed, 0xf0, 0xe6, 0xfd, 0xdf, 0xff, 0xf7, 0xe6, 0x3d, 0x16, - 0xdf, 0xe8, 0x68, 0xe8, 0x69, 0xa0, 0x10, 0x31, 0x38, 0x94, 0x4a, 0xd0, 0x41, 0x3d, 0xe4, 0x29, - 0xab, 0xd3, 0xa3, 0x3e, 0x4f, 0x86, 0x41, 0x9c, 0xe8, 0x54, 0x93, 0x4d, 0x9b, 0x14, 0x4c, 0x93, - 0x02, 0x97, 0x54, 0xbe, 0xe9, 0xd4, 0x21, 0x03, 0x6e, 0x15, 0x33, 0x7d, 0xcc, 0x84, 0x54, 0x2c, - 0x95, 0x5a, 0xd9, 0x22, 0xe5, 0x0d, 0xa1, 0x85, 0x36, 0x47, 0x3a, 0x39, 0xb9, 0xe8, 0x35, 0xa1, - 0xb5, 0x88, 0x38, 0x65, 0xb1, 0xa4, 0x4c, 0x29, 0x9d, 0x1a, 0x09, 0xb8, 0xdb, 0x6a, 0x1e, 0xdd, - 0x8c, 0xc4, 0xe4, 0xf9, 0x1b, 0x98, 0x3c, 0x9d, 0xb8, 0x3f, 0x61, 0x09, 0xeb, 0x41, 0x8b, 0x1f, - 0xf5, 0x39, 0xa4, 0xfe, 0x73, 0x7c, 0xe5, 0x54, 0x14, 0x62, 0xad, 0x80, 0x93, 0x3d, 0x5c, 0x8c, - 0x4d, 0x64, 0x0b, 0x5d, 0x47, 0xbb, 0xa5, 0x46, 0x25, 0xc8, 0x69, 0x2f, 0xb0, 0xc2, 0xfd, 0xb5, - 0xe3, 0x1f, 0x95, 0x42, 0xcb, 0x89, 0xfc, 0x07, 0x78, 0xd3, 0x54, 0x7d, 0x26, 0x85, 0x92, 0x4a, - 0x3c, 0x56, 0x07, 0xda, 0x19, 0x92, 0x6d, 0xbc, 0xde, 0xd1, 0x0a, 0xda, 0xac, 0xdb, 0x4d, 0x38, - 0xd8, 0xfa, 0x17, 0x5b, 0xa5, 0x49, 0xec, 0xa1, 0x0d, 0xf9, 0x43, 0xbc, 0xb5, 0xa8, 0x76, 0x60, - 0xaf, 0xf0, 0xe5, 0x01, 0x8b, 0xda, 0x60, 0xaf, 0xda, 0x52, 0x1d, 0x68, 0x87, 0x58, 0xcb, 0x45, - 0x7c, 0xc1, 0x22, 0xd9, 0x65, 0xa9, 0x4e, 0x32, 0x05, 0x1d, 0xf0, 0xa5, 0x01, 0x8b, 0x32, 0x51, - 0x3f, 0x5c, 0xb4, 0x9e, 0x3e, 0x15, 0x79, 0x84, 0xf1, 0x7c, 0x60, 0xce, 0xb4, 0x3a, 0x35, 0x9d, - 0x4c, 0x37, 0xb0, 0xfb, 0x30, 0x7f, 0x19, 0xc1, 0x9d, 0xb6, 0x95, 0x51, 0xfa, 0x5f, 0x10, 0xbe, - 0xfa, 0x17, 0x13, 0xd7, 0x60, 0x13, 0xaf, 0xb9, 0xa6, 0x56, 0xcf, 0xdb, 0x94, 0x29, 0x40, 0x9a, - 0xa7, 0x70, 0x57, 0x0c, 0xee, 0xce, 0x7f, 0x71, 0x2d, 0x45, 0x96, 0xb7, 0xf1, 0x7b, 0x15, 0x5f, - 0x30, 0xbc, 0xe4, 0x03, 0xc2, 0x45, 0x3b, 0x6f, 0x72, 0x2b, 0x17, 0x6c, 0x71, 0xc9, 0xca, 0xb7, - 0x97, 0x4b, 0xb6, 0xde, 0xfe, 0xce, 0xfb, 0x6f, 0xbf, 0x3e, 0xad, 0x6c, 0x93, 0x0a, 0xcd, 0xdb, - 0x6c, 0xbb, 0x65, 0xe4, 0x2b, 0xc2, 0xa5, 0x4c, 0xf7, 0xe4, 0xce, 0xbf, 0x6d, 0x16, 0x97, 0xb1, - 0x5c, 0x3f, 0x83, 0xc2, 0xd1, 0xed, 0x19, 0xba, 0xfb, 0xe4, 0x5e, 0x2e, 0x5d, 0x76, 0x37, 0x81, - 0xbe, 0xcd, 0x6e, 0xfb, 0x3b, 0xf2, 0x19, 0xe1, 0xf5, 0xec, 0xdc, 0xc9, 0xf2, 0x08, 0xb3, 0xe7, - 0x6c, 0x9c, 0x45, 0xe2, 0xb0, 0x03, 0x83, 0xbd, 0x4b, 0xaa, 0xcb, 0x61, 0xef, 0x37, 0x8f, 0x47, - 0x1e, 0x3a, 0x19, 0x79, 0xe8, 0xe7, 0xc8, 0x43, 0x1f, 0xc7, 0x5e, 0xe1, 0x64, 0xec, 0x15, 0xbe, - 0x8f, 0xbd, 0xc2, 0xcb, 0x9a, 0x90, 0xe9, 0x61, 0x3f, 0x0c, 0x3a, 0xba, 0x37, 0xad, 0x65, 0x3f, - 0x35, 0xe8, 0xbe, 0xa6, 0x6f, 0xe6, 0x85, 0xd3, 0x61, 0xcc, 0x21, 0x2c, 0x9a, 0xbf, 0xcf, 0xdd, - 0x3f, 0x01, 0x00, 0x00, 0xff, 0xff, 0xa1, 0x0f, 0xc0, 0xe6, 0x45, 0x05, 0x00, 0x00, + // 552 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x94, 0xc1, 0x6b, 0x13, 0x4f, + 0x14, 0xc7, 0xb3, 0x6d, 0x7f, 0x81, 0xdf, 0xa4, 0x88, 0x8c, 0x81, 0xa6, 0x41, 0x36, 0xba, 0x42, + 0x5a, 0xd4, 0xec, 0x9a, 0x88, 0x78, 0x90, 0x1e, 0xcc, 0xc1, 0xe0, 0x4d, 0x53, 0xe9, 0x41, 0x90, + 0x30, 0x9b, 0x4c, 0xa7, 0x83, 0x9b, 0x99, 0xed, 0xce, 0x24, 0x18, 0xc4, 0x8b, 0x67, 0x0f, 0x82, + 0x7f, 0x83, 0x47, 0x0f, 0x82, 0x7f, 0x44, 0x8f, 0x45, 0x2f, 0x9e, 0x44, 0x12, 0xff, 0x02, 0xff, + 0x02, 0xc9, 0xcc, 0x4b, 0xb2, 0x25, 0xae, 0xa6, 0x9e, 0x32, 0x79, 0xf3, 0xbe, 0xdf, 0xf7, 0x79, + 0x33, 0x6f, 0x16, 0x5d, 0xeb, 0x4a, 0xd5, 0x97, 0x2a, 0x50, 0x11, 0x51, 0x47, 0x5c, 0xb0, 0x60, + 0x58, 0x0f, 0xa9, 0x26, 0xf5, 0xe0, 0x78, 0x40, 0x93, 0x91, 0x1f, 0x27, 0x52, 0x4b, 0xbc, 0x65, + 0x93, 0xfc, 0x59, 0x92, 0x0f, 0x49, 0xe5, 0xeb, 0xa0, 0x0e, 0x89, 0xa2, 0x56, 0x31, 0xd7, 0xc7, + 0x84, 0x71, 0x41, 0x34, 0x97, 0xc2, 0x9a, 0x94, 0x8b, 0x4c, 0x32, 0x69, 0x96, 0xc1, 0x74, 0x05, + 0xd1, 0xcb, 0x4c, 0x4a, 0x16, 0xd1, 0x80, 0xc4, 0x3c, 0x20, 0x42, 0x48, 0x6d, 0x24, 0x0a, 0x76, + 0xab, 0x59, 0x74, 0x73, 0x12, 0x9b, 0xb7, 0x6d, 0xf3, 0x3a, 0xd6, 0x1e, 0x68, 0xcd, 0x1f, 0xaf, + 0x88, 0xf0, 0xe3, 0x29, 0xd8, 0x23, 0x92, 0x90, 0xbe, 0x6a, 0xd3, 0xe3, 0x01, 0x55, 0xda, 0x7b, + 0x82, 0x2e, 0x9d, 0x89, 0xaa, 0x58, 0x0a, 0x45, 0xf1, 0x1e, 0xca, 0xc7, 0x26, 0x52, 0x72, 0xae, + 0x38, 0xbb, 0x85, 0x46, 0xc5, 0xcf, 0xe8, 0xdc, 0xb7, 0xc2, 0xe6, 0xc6, 0xc9, 0xb7, 0x4a, 0xae, + 0x0d, 0x22, 0xef, 0x00, 0x6d, 0x19, 0xd7, 0x7d, 0xce, 0x04, 0x17, 0xec, 0xa1, 0x38, 0x94, 0x50, + 0x10, 0xdf, 0x43, 0x9b, 0x5d, 0x29, 0x54, 0x87, 0xf4, 0x7a, 0x09, 0x55, 0xd6, 0xff, 0xff, 0x66, + 0xe9, 0xf3, 0xa7, 0x5a, 0x11, 0x4a, 0xdc, 0xb7, 0x3b, 0xfb, 0x3a, 0xe1, 0x82, 0xb5, 0x0b, 0xd3, + 0x6c, 0x08, 0x79, 0x23, 0x54, 0x5a, 0xf6, 0x05, 0xe4, 0x67, 0xe8, 0xe2, 0x90, 0x44, 0x1d, 0x65, + 0xb7, 0x3a, 0x5c, 0x1c, 0x4a, 0x80, 0xaf, 0x65, 0xc2, 0x1f, 0x90, 0x88, 0xf7, 0x88, 0x96, 0x49, + 0xca, 0x10, 0x5a, 0xb9, 0x30, 0x24, 0x51, 0x2a, 0xea, 0x85, 0xcb, 0xa5, 0x67, 0x87, 0x88, 0x1f, + 0x20, 0xb4, 0xb8, 0x65, 0x28, 0x5a, 0x9d, 0x15, 0x9d, 0x8e, 0x84, 0x6f, 0x87, 0x68, 0x71, 0x66, + 0x8c, 0x82, 0xb6, 0x9d, 0x52, 0x7a, 0x1f, 0x1c, 0xb4, 0xfd, 0x9b, 0x22, 0xd0, 0x60, 0x0b, 0x6d, + 0x40, 0x53, 0xeb, 0xff, 0xda, 0x94, 0x31, 0xc0, 0xad, 0x33, 0xb8, 0x6b, 0x06, 0x77, 0xe7, 0xaf, + 0xb8, 0x96, 0x22, 0xcd, 0xdb, 0xf8, 0xb9, 0x8e, 0xfe, 0x33, 0xbc, 0xf8, 0x8d, 0x83, 0xf2, 0x76, + 0x12, 0xf0, 0x8d, 0x4c, 0xb0, 0xe5, 0xf1, 0x2b, 0xdf, 0x5c, 0x2d, 0xd9, 0xd6, 0xf6, 0x76, 0x5e, + 0x7f, 0xf9, 0xf1, 0x6e, 0xed, 0x2a, 0xae, 0x04, 0x59, 0xcf, 0xc1, 0xce, 0x1f, 0xfe, 0xe8, 0xa0, + 0x42, 0xaa, 0x7b, 0x7c, 0xeb, 0xcf, 0x65, 0x96, 0xc7, 0xb4, 0x5c, 0x3f, 0x87, 0x02, 0xe8, 0xf6, + 0x0c, 0xdd, 0x5d, 0x7c, 0x27, 0x93, 0x2e, 0x3d, 0x9b, 0x2a, 0x78, 0x99, 0x7e, 0x07, 0xaf, 0xf0, + 0x7b, 0x07, 0x6d, 0xa6, 0xef, 0x1d, 0xaf, 0x8e, 0x30, 0x3f, 0xce, 0xc6, 0x79, 0x24, 0x80, 0xed, + 0x1b, 0xec, 0x5d, 0x5c, 0x5d, 0x0d, 0xbb, 0xd9, 0x3a, 0x19, 0xbb, 0xce, 0xe9, 0xd8, 0x75, 0xbe, + 0x8f, 0x5d, 0xe7, 0xed, 0xc4, 0xcd, 0x9d, 0x4e, 0xdc, 0xdc, 0xd7, 0x89, 0x9b, 0x7b, 0x5a, 0x63, + 0x5c, 0x1f, 0x0d, 0x42, 0xbf, 0x2b, 0xfb, 0x33, 0x2f, 0xfb, 0x53, 0x53, 0xbd, 0xe7, 0xc1, 0x8b, + 0x85, 0xb1, 0x1e, 0xc5, 0x54, 0x85, 0x79, 0xf3, 0x5d, 0xba, 0xfd, 0x2b, 0x00, 0x00, 0xff, 0xff, + 0xb9, 0x03, 0x61, 0xef, 0x7a, 0x05, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/slashing/types/slashing.pb.go b/x/slashing/types/slashing.pb.go index 633b4c5bb944..378a212adf06 100644 --- a/x/slashing/types/slashing.pb.go +++ b/x/slashing/types/slashing.pb.go @@ -5,6 +5,7 @@ package types import ( fmt "fmt" + _ "github.com/cosmos/cosmos-proto" github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" _ "github.com/gogo/protobuf/gogoproto" proto "github.com/gogo/protobuf/proto" @@ -189,47 +190,49 @@ func init() { } var fileDescriptor_1078e5d96a74cc52 = []byte{ - // 636 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x54, 0xbd, 0x6f, 0xd3, 0x4e, - 0x18, 0xce, 0xfd, 0xd2, 0x5f, 0x29, 0x97, 0x4c, 0x6e, 0x4a, 0x4c, 0x00, 0x3b, 0x78, 0xa8, 0xc2, - 0x50, 0x5b, 0x2d, 0x5b, 0x47, 0x53, 0x21, 0x3e, 0x24, 0x28, 0x6e, 0x01, 0x89, 0x01, 0xeb, 0x9c, - 0xbb, 0x38, 0x47, 0xed, 0xbb, 0xc8, 0x77, 0xa1, 0x2d, 0x1b, 0x5b, 0xc7, 0x8e, 0x1d, 0x3b, 0xf2, - 0xa7, 0x74, 0xec, 0x88, 0x18, 0x02, 0x4a, 0x17, 0xe6, 0x6e, 0x6c, 0xc8, 0x77, 0x76, 0x1b, 0xa5, - 0x29, 0x52, 0xa7, 0xe4, 0x7d, 0xde, 0xe7, 0x7d, 0xee, 0x79, 0x3f, 0x12, 0xb8, 0xdc, 0xe5, 0x22, - 0xe5, 0xc2, 0x13, 0x09, 0x12, 0x7d, 0xca, 0x62, 0xef, 0xf3, 0x6a, 0x44, 0x24, 0x5a, 0xbd, 0x00, - 0xdc, 0x41, 0xc6, 0x25, 0x37, 0x9a, 0x9a, 0xe7, 0x5e, 0xc0, 0x05, 0xaf, 0xd5, 0x88, 0x79, 0xcc, - 0x15, 0xc7, 0xcb, 0xbf, 0x69, 0x7a, 0xcb, 0x8a, 0x39, 0x8f, 0x13, 0xe2, 0xa9, 0x28, 0x1a, 0xf6, - 0x3c, 0x3c, 0xcc, 0x90, 0xa4, 0x9c, 0x15, 0x79, 0x7b, 0x3a, 0x2f, 0x69, 0x4a, 0x84, 0x44, 0xe9, - 0x40, 0x13, 0x9c, 0x83, 0x2a, 0x6c, 0xbc, 0x43, 0x09, 0xc5, 0x48, 0xf2, 0x6c, 0x8b, 0xc6, 0x8c, - 0xb2, 0xf8, 0x39, 0xeb, 0x71, 0xc3, 0x84, 0xb7, 0x10, 0xc6, 0x19, 0x11, 0xc2, 0x04, 0x6d, 0xd0, - 0xb9, 0x1d, 0x94, 0xa1, 0xb1, 0x0e, 0xeb, 0x42, 0xa2, 0x4c, 0x86, 0x7d, 0x42, 0xe3, 0xbe, 0x34, - 0xff, 0x6b, 0x83, 0x4e, 0xd5, 0x6f, 0x9e, 0x8f, 0xec, 0xc5, 0x7d, 0x94, 0x26, 0xeb, 0xce, 0x64, - 0xd6, 0x09, 0x6a, 0x2a, 0x7c, 0xa6, 0xa2, 0xbc, 0x96, 0x32, 0x4c, 0xf6, 0x42, 0xde, 0xeb, 0x09, - 0x22, 0xcd, 0xea, 0x74, 0xed, 0x64, 0xd6, 0x09, 0x6a, 0x2a, 0x7c, 0xad, 0x22, 0xe3, 0x23, 0xac, - 0x7f, 0x42, 0x34, 0x21, 0x38, 0x1c, 0x32, 0x49, 0x13, 0x73, 0xae, 0x0d, 0x3a, 0xb5, 0xb5, 0x96, - 0xab, 0x5b, 0x74, 0xcb, 0x16, 0xdd, 0xed, 0xb2, 0x45, 0xdf, 0x3e, 0x19, 0xd9, 0x95, 0x4b, 0xed, - 0xc9, 0x6a, 0xe7, 0xf0, 0xa7, 0x0d, 0x82, 0x9a, 0x86, 0xde, 0xe6, 0x88, 0x61, 0x41, 0x28, 0x79, - 0x1a, 0x09, 0xc9, 0x19, 0xc1, 0xe6, 0xff, 0x6d, 0xd0, 0x59, 0x08, 0x26, 0x10, 0x63, 0x1b, 0x2e, - 0xa5, 0x54, 0x08, 0x82, 0xc3, 0x28, 0xe1, 0xdd, 0x1d, 0x11, 0x76, 0xf9, 0x90, 0x49, 0x92, 0x99, - 0xf3, 0xaa, 0x89, 0xf6, 0xf9, 0xc8, 0xbe, 0xaf, 0x1f, 0x9a, 0x49, 0x73, 0x82, 0x45, 0x8d, 0xfb, - 0x0a, 0x7e, 0xa2, 0xd1, 0xf5, 0x85, 0xa3, 0x63, 0xbb, 0xf2, 0xfb, 0xd8, 0x06, 0xce, 0x9f, 0x39, - 0x38, 0xbf, 0x89, 0x32, 0x94, 0x0a, 0xe3, 0x0d, 0x6c, 0x08, 0x1a, 0xb3, 0x4b, 0x8d, 0x5d, 0xca, - 0x30, 0xdf, 0x55, 0x9b, 0xa8, 0xfa, 0xf6, 0xf9, 0xc8, 0xbe, 0x57, 0x8c, 0x7a, 0x06, 0xcb, 0x09, - 0x0c, 0x0d, 0xeb, 0x87, 0xde, 0x2b, 0xd0, 0xf8, 0x0a, 0x72, 0xfb, 0x2c, 0x2c, 0x2a, 0x06, 0x24, - 0x2b, 0x45, 0xf3, 0xfd, 0xd5, 0xfd, 0x57, 0xf9, 0xac, 0x7e, 0x8c, 0xec, 0xe5, 0x98, 0xca, 0xfe, - 0x30, 0x72, 0xbb, 0x3c, 0xf5, 0x8a, 0x9b, 0xd5, 0x1f, 0x2b, 0x02, 0xef, 0x78, 0x72, 0x7f, 0x40, - 0x84, 0xbb, 0x41, 0xba, 0x93, 0xcd, 0xce, 0x10, 0x75, 0x02, 0x23, 0xa5, 0x6c, 0x4b, 0xc1, 0x9b, - 0x24, 0x2b, 0x3c, 0x7c, 0x81, 0x77, 0x30, 0xdf, 0x65, 0xf9, 0x0d, 0x86, 0xf9, 0xe4, 0xc3, 0xf2, - 0x5a, 0xd5, 0x1d, 0xd4, 0xd6, 0xee, 0x5e, 0xd9, 0xe5, 0x46, 0x41, 0xf0, 0x1f, 0x15, 0xab, 0x7c, - 0xa0, 0x1f, 0x9d, 0x2d, 0xe3, 0x1c, 0xe5, 0x4b, 0x6d, 0x94, 0xc9, 0x17, 0x88, 0x26, 0xa5, 0x80, - 0x71, 0x08, 0x60, 0x4b, 0xfd, 0xa8, 0xc2, 0x5e, 0x86, 0xba, 0x39, 0x14, 0x62, 0x3e, 0x8c, 0x12, - 0xa2, 0xcc, 0xab, 0x63, 0xaa, 0xfb, 0x5b, 0x37, 0x1e, 0xc2, 0xc3, 0x62, 0x0f, 0xd7, 0x2a, 0x3b, - 0x41, 0x53, 0x25, 0x9f, 0x16, 0xb9, 0x0d, 0x95, 0xca, 0x27, 0x63, 0x1c, 0x00, 0xd8, 0xbc, 0x52, - 0xa8, 0xad, 0xab, 0xf3, 0xab, 0xfb, 0x9b, 0x37, 0xf6, 0x63, 0x5d, 0xe3, 0x47, 0xcb, 0x3a, 0xc1, - 0xd2, 0x94, 0x19, 0x8d, 0xfb, 0x2f, 0xbf, 0x8d, 0x2d, 0x70, 0x32, 0xb6, 0xc0, 0xe9, 0xd8, 0x02, - 0xbf, 0xc6, 0x16, 0x38, 0x3c, 0xb3, 0x2a, 0xa7, 0x67, 0x56, 0xe5, 0xfb, 0x99, 0x55, 0xf9, 0xb0, - 0xf2, 0xcf, 0xe7, 0xf7, 0x2e, 0xff, 0xd4, 0x94, 0x93, 0x68, 0x5e, 0xad, 0xef, 0xf1, 0xdf, 0x00, - 0x00, 0x00, 0xff, 0xff, 0x7b, 0x78, 0xfd, 0x40, 0xf4, 0x04, 0x00, 0x00, + // 663 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x54, 0xbf, 0x6f, 0xd3, 0x4e, + 0x14, 0xcf, 0x7d, 0xd3, 0x6f, 0x29, 0x97, 0x4c, 0x6e, 0x4a, 0xdc, 0x00, 0x76, 0xf0, 0x50, 0x85, + 0xa1, 0x8e, 0x5a, 0xb6, 0x6e, 0x98, 0x0a, 0xf1, 0x43, 0x82, 0xe2, 0x14, 0x90, 0x18, 0xb0, 0xce, + 0xf1, 0xc5, 0x39, 0x6a, 0xdf, 0x45, 0xbe, 0x0b, 0x6d, 0xd9, 0xd8, 0x18, 0x3b, 0x76, 0xac, 0x98, + 0xf8, 0x03, 0xf8, 0x23, 0x3a, 0x56, 0x4c, 0x88, 0x21, 0xa0, 0x74, 0x61, 0xee, 0xc6, 0x86, 0x7c, + 0x77, 0x6e, 0xa3, 0x36, 0x45, 0xea, 0x94, 0xbc, 0xcf, 0xe7, 0xf3, 0x3e, 0xef, 0xdd, 0x7b, 0x2f, + 0x81, 0x4b, 0x5d, 0xc6, 0x53, 0xc6, 0xdb, 0x3c, 0x41, 0xbc, 0x4f, 0x68, 0xdc, 0x7e, 0xbf, 0x12, + 0x62, 0x81, 0x56, 0x4e, 0x01, 0x77, 0x90, 0x31, 0xc1, 0x8c, 0xba, 0xd2, 0xb9, 0xa7, 0xb0, 0xd6, + 0x35, 0x6a, 0x31, 0x8b, 0x99, 0xd4, 0xb4, 0xf3, 0x6f, 0x4a, 0xde, 0xb0, 0x62, 0xc6, 0xe2, 0x04, + 0xb7, 0x65, 0x14, 0x0e, 0x7b, 0xed, 0x68, 0x98, 0x21, 0x41, 0x18, 0xd5, 0xbc, 0x7d, 0x9e, 0x17, + 0x24, 0xc5, 0x5c, 0xa0, 0x74, 0xa0, 0x05, 0x8b, 0xaa, 0x5e, 0xa0, 0x9c, 0x75, 0x71, 0x19, 0x38, + 0x9f, 0xcb, 0xb0, 0xf6, 0x0a, 0x25, 0x24, 0x42, 0x82, 0x65, 0x1d, 0x12, 0x53, 0x42, 0xe3, 0xc7, + 0xb4, 0xc7, 0x8c, 0x55, 0x78, 0x0d, 0x45, 0x51, 0x86, 0x39, 0x37, 0x41, 0x13, 0xb4, 0xae, 0x7b, + 0xe6, 0xb7, 0xaf, 0xcb, 0x35, 0x9d, 0x7b, 0x5f, 0x31, 0x1d, 0x91, 0x11, 0x1a, 0xfb, 0x85, 0xd0, + 0x58, 0x83, 0x55, 0x2e, 0x50, 0x26, 0x82, 0x3e, 0x26, 0x71, 0x5f, 0x98, 0xff, 0x35, 0x41, 0xab, + 0xec, 0xd5, 0x4f, 0x46, 0xf6, 0xfc, 0x2e, 0x4a, 0x93, 0x35, 0x67, 0x92, 0x75, 0xfc, 0x8a, 0x0c, + 0x1f, 0xc9, 0x28, 0xcf, 0x25, 0x34, 0xc2, 0x3b, 0x01, 0xeb, 0xf5, 0x38, 0x16, 0x66, 0xf9, 0x7c, + 0xee, 0x24, 0xeb, 0xf8, 0x15, 0x19, 0x3e, 0x97, 0x91, 0xf1, 0x16, 0x56, 0xdf, 0x21, 0x92, 0xe0, + 0x28, 0x18, 0x52, 0x41, 0x12, 0x73, 0xa6, 0x09, 0x5a, 0x95, 0xd5, 0x86, 0xab, 0xe6, 0xe2, 0x16, + 0x73, 0x71, 0x37, 0x8b, 0xb9, 0x78, 0xf6, 0xe1, 0xc8, 0x2e, 0x9d, 0x79, 0x4f, 0x66, 0x3b, 0x7b, + 0x3f, 0x6d, 0xe0, 0x57, 0x14, 0xf4, 0x32, 0x47, 0x0c, 0x0b, 0x42, 0xc1, 0xd2, 0x90, 0x0b, 0x46, + 0x71, 0x64, 0xfe, 0xdf, 0x04, 0xad, 0x39, 0x7f, 0x02, 0x31, 0x36, 0xe1, 0x42, 0x4a, 0x38, 0xc7, + 0x51, 0x10, 0x26, 0xac, 0xbb, 0xc5, 0x83, 0x2e, 0x1b, 0x52, 0x81, 0x33, 0x73, 0x56, 0x3e, 0xa2, + 0x79, 0x32, 0xb2, 0x6f, 0xa9, 0x42, 0x53, 0x65, 0x8e, 0x3f, 0xaf, 0x70, 0x4f, 0xc2, 0x0f, 0x14, + 0xba, 0x36, 0xb7, 0x7f, 0x60, 0x97, 0x7e, 0x1f, 0xd8, 0xc0, 0xf9, 0x33, 0x03, 0x67, 0x37, 0x50, + 0x86, 0x52, 0x6e, 0xbc, 0x80, 0x35, 0x4e, 0x62, 0x7a, 0xe6, 0xb1, 0x4d, 0x68, 0xc4, 0xb6, 0xe5, + 0x8e, 0xca, 0x9e, 0x7d, 0x32, 0xb2, 0x6f, 0xea, 0x51, 0x4f, 0x51, 0x39, 0xbe, 0xa1, 0x60, 0x55, + 0xe8, 0xb5, 0x04, 0x8d, 0x8f, 0x20, 0x6f, 0x9f, 0x06, 0x3a, 0x63, 0x80, 0xb3, 0xc2, 0x34, 0xdf, + 0x5f, 0xd5, 0x7b, 0x96, 0xcf, 0xea, 0xc7, 0xc8, 0x5e, 0x8a, 0x89, 0xe8, 0x0f, 0x43, 0xb7, 0xcb, + 0x52, 0x7d, 0x43, 0xfa, 0x63, 0x99, 0x47, 0x5b, 0x6d, 0xb1, 0x3b, 0xc0, 0xdc, 0x5d, 0xc7, 0xdd, + 0xc9, 0xc7, 0x4e, 0x31, 0x75, 0x7c, 0x23, 0x25, 0xb4, 0x23, 0xe1, 0x0d, 0x9c, 0xe9, 0x1e, 0x3e, + 0xc0, 0x1b, 0x11, 0xdb, 0xa6, 0xf9, 0xe1, 0x06, 0xf9, 0xe4, 0x83, 0xe2, 0xc4, 0xe5, 0x1d, 0x54, + 0x56, 0x17, 0x2f, 0xec, 0x72, 0x5d, 0x0b, 0xbc, 0xbb, 0x7a, 0x95, 0xb7, 0x55, 0xd1, 0xe9, 0x36, + 0xce, 0x7e, 0xbe, 0xd4, 0x5a, 0x41, 0x3e, 0x41, 0x24, 0x29, 0x0c, 0x8c, 0x3d, 0x00, 0x1b, 0xf2, + 0x97, 0x18, 0xf4, 0x32, 0xd4, 0xcd, 0xa1, 0x20, 0x62, 0xc3, 0x30, 0xc1, 0xb2, 0x79, 0x79, 0x4c, + 0x55, 0xaf, 0x73, 0xe5, 0x21, 0xdc, 0xd1, 0x7b, 0xb8, 0xd4, 0xd9, 0xf1, 0xeb, 0x92, 0x7c, 0xa8, + 0xb9, 0x75, 0x49, 0xe5, 0x93, 0x31, 0x3e, 0x01, 0x58, 0xbf, 0x90, 0xa8, 0x5a, 0x97, 0xe7, 0x57, + 0xf5, 0x36, 0xae, 0xdc, 0x8f, 0x75, 0x49, 0x3f, 0xca, 0xd6, 0xf1, 0x17, 0xce, 0x35, 0xa3, 0x70, + 0xef, 0xe9, 0x97, 0xb1, 0x05, 0x0e, 0xc7, 0x16, 0x38, 0x1a, 0x5b, 0xe0, 0xd7, 0xd8, 0x02, 0x7b, + 0xc7, 0x56, 0xe9, 0xe8, 0xd8, 0x2a, 0x7d, 0x3f, 0xb6, 0x4a, 0x6f, 0x96, 0xff, 0x59, 0x7e, 0xe7, + 0xec, 0x9f, 0x50, 0x76, 0x12, 0xce, 0xca, 0xf5, 0xdd, 0xfb, 0x1b, 0x00, 0x00, 0xff, 0xff, 0xad, + 0x9c, 0x12, 0xda, 0x29, 0x05, 0x00, 0x00, } func (this *ValidatorSigningInfo) Equal(that interface{}) bool { diff --git a/x/slashing/types/tx.pb.go b/x/slashing/types/tx.pb.go index ed6dbcd170ab..9cc1ad9b18d8 100644 --- a/x/slashing/types/tx.pb.go +++ b/x/slashing/types/tx.pb.go @@ -6,6 +6,7 @@ package types import ( context "context" fmt "fmt" + _ "github.com/cosmos/cosmos-proto" _ "github.com/gogo/protobuf/gogoproto" grpc1 "github.com/gogo/protobuf/grpc" proto "github.com/gogo/protobuf/proto" @@ -111,24 +112,26 @@ func init() { func init() { proto.RegisterFile("cosmos/slashing/v1beta1/tx.proto", fileDescriptor_3c5611c0c4a59d9d) } var fileDescriptor_3c5611c0c4a59d9d = []byte{ - // 269 bytes of a gzipped FileDescriptorProto + // 292 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0x48, 0xce, 0x2f, 0xce, 0xcd, 0x2f, 0xd6, 0x2f, 0xce, 0x49, 0x2c, 0xce, 0xc8, 0xcc, 0x4b, 0xd7, 0x2f, 0x33, 0x4c, 0x4a, 0x2d, 0x49, 0x34, 0xd4, 0x2f, 0xa9, 0xd0, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x87, 0xa8, 0xd0, 0x83, 0xa9, 0xd0, 0x83, 0xaa, 0x90, 0x12, 0x49, 0xcf, 0x4f, 0xcf, 0x07, 0xab, 0xd1, 0x07, - 0xb1, 0x20, 0xca, 0x95, 0xa2, 0xb9, 0x38, 0x7d, 0x8b, 0xd3, 0x43, 0xf3, 0xb2, 0x12, 0x33, 0x73, - 0x84, 0x5c, 0xb8, 0xf8, 0xca, 0x12, 0x73, 0x32, 0x53, 0x12, 0x4b, 0xf2, 0x8b, 0xe2, 0x13, 0x53, - 0x52, 0x8a, 0x24, 0x18, 0x15, 0x18, 0x35, 0x38, 0x9d, 0x64, 0x5f, 0xdd, 0x93, 0x67, 0x07, 0xf1, - 0x53, 0x8b, 0x8b, 0x3f, 0xdd, 0x93, 0xe7, 0xab, 0x4c, 0xcc, 0xcd, 0xb1, 0x52, 0x82, 0x0a, 0x28, - 0x05, 0xf1, 0xc2, 0x35, 0x39, 0xa6, 0xa4, 0x14, 0x59, 0x71, 0x74, 0x2c, 0x90, 0x67, 0x98, 0xb1, - 0x40, 0x9e, 0x51, 0x49, 0x98, 0x4b, 0x10, 0x6e, 0x78, 0x50, 0x6a, 0x71, 0x41, 0x7e, 0x5e, 0x71, - 0xaa, 0x51, 0x3c, 0x17, 0xb3, 0x6f, 0x71, 0xba, 0x50, 0x04, 0x17, 0x1b, 0xd4, 0x56, 0x25, 0x3d, - 0x1c, 0x4e, 0xd6, 0x83, 0x6b, 0x96, 0xd2, 0x22, 0xac, 0x06, 0x66, 0x81, 0x93, 0xf7, 0x8a, 0x47, - 0x72, 0x8c, 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, 0x9b, 0x9e, 0x59, - 0x92, 0x51, 0x9a, 0xa4, 0x97, 0x9c, 0x9f, 0xab, 0x0f, 0x0d, 0x4c, 0x08, 0xa5, 0x5b, 0x9c, 0x92, - 0xad, 0x5f, 0x81, 0x08, 0xd9, 0x92, 0xca, 0x82, 0xd4, 0xe2, 0x24, 0x36, 0x70, 0x30, 0x19, 0x03, - 0x02, 0x00, 0x00, 0xff, 0xff, 0x1b, 0xa7, 0xdc, 0xcf, 0x79, 0x01, 0x00, 0x00, + 0xb1, 0x20, 0xca, 0xa5, 0x24, 0x21, 0xca, 0xe3, 0x21, 0x12, 0x50, 0xbd, 0x60, 0x8e, 0x52, 0x31, + 0x17, 0xa7, 0x6f, 0x71, 0x7a, 0x68, 0x5e, 0x56, 0x62, 0x66, 0x8e, 0x50, 0x0c, 0x17, 0x5f, 0x59, + 0x62, 0x4e, 0x66, 0x4a, 0x62, 0x49, 0x7e, 0x51, 0x7c, 0x62, 0x4a, 0x4a, 0x91, 0x04, 0xa3, 0x02, + 0xa3, 0x06, 0xa7, 0x93, 0xe9, 0xab, 0x7b, 0xf2, 0xec, 0x20, 0x7e, 0x6a, 0x71, 0xf1, 0xa7, 0x7b, + 0xf2, 0x7c, 0x95, 0x89, 0xb9, 0x39, 0x56, 0x4a, 0x50, 0x01, 0xa5, 0x4b, 0x5b, 0x74, 0x45, 0xa0, + 0x66, 0x3a, 0x42, 0x84, 0x82, 0x4b, 0x8a, 0x32, 0xf3, 0xd2, 0x83, 0x78, 0xe1, 0x86, 0x81, 0xc4, + 0xad, 0x38, 0x3a, 0x16, 0xc8, 0x33, 0xcc, 0x58, 0x20, 0xcf, 0xa8, 0x24, 0xcc, 0x25, 0x08, 0xb7, + 0x34, 0x28, 0xb5, 0xb8, 0x20, 0x3f, 0xaf, 0x38, 0xd5, 0x28, 0x9e, 0x8b, 0xd9, 0xb7, 0x38, 0x5d, + 0x28, 0x82, 0x8b, 0x0d, 0xea, 0x1a, 0x25, 0x3d, 0x1c, 0xbe, 0xd4, 0x83, 0x6b, 0x96, 0xd2, 0x22, + 0xac, 0x06, 0x66, 0x81, 0x93, 0xf7, 0x8a, 0x47, 0x72, 0x8c, 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, 0x9b, 0x9e, 0x59, 0x92, 0x51, 0x9a, 0xa4, 0x97, 0x9c, 0x9f, 0x0b, + 0x0d, 0x21, 0x28, 0xa5, 0x5b, 0x9c, 0x92, 0xad, 0x5f, 0x81, 0x88, 0x8c, 0x92, 0xca, 0x82, 0xd4, + 0xe2, 0x24, 0x36, 0x70, 0xf0, 0x19, 0x03, 0x02, 0x00, 0x00, 0xff, 0xff, 0xa7, 0x21, 0xb9, 0x58, + 0xac, 0x01, 0x00, 0x00, } func (this *MsgUnjail) Equal(that interface{}) bool { diff --git a/x/staking/types/authz.pb.go b/x/staking/types/authz.pb.go index d556e0155df1..93df6827d9f3 100644 --- a/x/staking/types/authz.pb.go +++ b/x/staking/types/authz.pb.go @@ -5,10 +5,10 @@ package types import ( fmt "fmt" + _ "github.com/cosmos/cosmos-proto" types "github.com/cosmos/cosmos-sdk/types" _ "github.com/gogo/protobuf/gogoproto" proto "github.com/gogo/protobuf/proto" - _ "github.com/regen-network/cosmos-proto" io "io" math "math" math_bits "math/bits" @@ -224,36 +224,37 @@ func init() { } var fileDescriptor_d6d8cdbc6f4432f0 = []byte{ - // 462 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x93, 0xcb, 0x6e, 0xd3, 0x40, - 0x14, 0x86, 0x3d, 0x0d, 0x02, 0x72, 0xb8, 0xa8, 0x19, 0x21, 0x94, 0x06, 0x31, 0x2d, 0x59, 0x40, - 0xb8, 0x74, 0xac, 0x16, 0xb1, 0x61, 0x97, 0xb4, 0x2e, 0x8d, 0x54, 0xb5, 0x95, 0xeb, 0x56, 0xd0, - 0x8d, 0x35, 0x89, 0x47, 0xc9, 0x28, 0xb6, 0x27, 0xf2, 0x4c, 0x4a, 0xd2, 0xa7, 0xe0, 0x09, 0x78, - 0x00, 0xd6, 0x3c, 0x04, 0x0b, 0x16, 0x15, 0x2b, 0x76, 0xa0, 0xe4, 0x45, 0x90, 0xc7, 0xae, 0xa1, - 0x34, 0x65, 0xc3, 0xca, 0x97, 0xf3, 0xcd, 0xf7, 0x9f, 0x63, 0x1d, 0x43, 0xbd, 0x2b, 0x55, 0x24, - 0x95, 0xad, 0x34, 0x1b, 0x88, 0xb8, 0x67, 0x9f, 0xac, 0x75, 0xb8, 0x66, 0x6b, 0x36, 0x1b, 0xe9, - 0xfe, 0x29, 0x1d, 0x26, 0x52, 0x4b, 0x7c, 0x3f, 0x63, 0x68, 0xce, 0xd0, 0x9c, 0xa9, 0xdd, 0xeb, - 0xc9, 0x9e, 0x34, 0x88, 0x9d, 0xde, 0x65, 0x74, 0x6d, 0x29, 0xa3, 0xfd, 0xac, 0x90, 0x1f, 0xcd, - 0x4a, 0x24, 0x0f, 0xeb, 0x30, 0xc5, 0x8b, 0xa4, 0xae, 0x14, 0x71, 0x56, 0xaf, 0x7f, 0x2d, 0x01, - 0x3e, 0xd0, 0x6c, 0xc0, 0x9b, 0x23, 0xdd, 0x97, 0x89, 0x38, 0x65, 0x5a, 0xc8, 0x18, 0x73, 0x80, - 0x88, 0x8d, 0x7d, 0x2d, 0x07, 0x3c, 0x56, 0x55, 0xb4, 0x82, 0x1a, 0xb7, 0xd6, 0x97, 0x68, 0x6e, - 0x4e, 0x5d, 0xe7, 0x1d, 0xd1, 0x0d, 0x29, 0xe2, 0xd6, 0xf3, 0x4f, 0x3f, 0x96, 0x9f, 0xf4, 0x84, - 0xee, 0x8f, 0x3a, 0xb4, 0x2b, 0xa3, 0xbc, 0x85, 0xfc, 0xb2, 0xaa, 0x82, 0x81, 0xad, 0x27, 0x43, - 0xae, 0x0c, 0xec, 0x96, 0x23, 0x36, 0xf6, 0x8c, 0x18, 0x1f, 0x01, 0xb0, 0x30, 0x94, 0xef, 0xfd, - 0x50, 0x28, 0x5d, 0x5d, 0x30, 0x31, 0xaf, 0xe8, 0xfc, 0xd9, 0xe9, 0xe5, 0x36, 0xe9, 0x11, 0x0b, - 0x45, 0xc0, 0xb4, 0x4c, 0xd4, 0xb6, 0xe5, 0x96, 0x8d, 0x6a, 0x47, 0x28, 0x8d, 0x3d, 0x28, 0x07, - 0x3c, 0x9e, 0x64, 0xda, 0xd2, 0xff, 0x69, 0x6f, 0xa6, 0x26, 0x63, 0x7d, 0x0b, 0x98, 0xfd, 0xc9, - 0xf9, 0xe9, 0x50, 0xd5, 0x6b, 0x2b, 0xa8, 0x71, 0x77, 0xfd, 0xe9, 0x55, 0xfa, 0x0b, 0x66, 0x6f, - 0x32, 0xe4, 0x6e, 0x85, 0xfd, 0xfd, 0xaa, 0xf6, 0x18, 0xe0, 0x77, 0x26, 0xae, 0xc2, 0x0d, 0x16, - 0x04, 0x09, 0x57, 0xe9, 0x97, 0x2f, 0x35, 0xca, 0xee, 0xf9, 0xe3, 0xeb, 0xca, 0xb7, 0xcf, 0xab, - 0x77, 0x2e, 0x18, 0x5b, 0xb7, 0x01, 0x4e, 0x8a, 0xa3, 0xcf, 0x3e, 0x22, 0xa8, 0x5c, 0x4a, 0xc4, - 0x75, 0x20, 0xcd, 0x43, 0x6f, 0x7b, 0xcf, 0x6d, 0x1f, 0x37, 0xbd, 0xf6, 0xde, 0xae, 0xef, 0xbd, - 0xdb, 0x77, 0xfc, 0xc3, 0xdd, 0x83, 0x7d, 0x67, 0xa3, 0xbd, 0xd5, 0x76, 0x36, 0x17, 0x2d, 0xbc, - 0x0c, 0x0f, 0xe6, 0x30, 0x9b, 0xce, 0x8e, 0xf3, 0xa6, 0xe9, 0x39, 0x8b, 0x08, 0x3f, 0x82, 0x87, - 0x73, 0x25, 0x05, 0xb2, 0x70, 0x05, 0xe2, 0x3a, 0x05, 0x52, 0x6a, 0x6d, 0x7d, 0x99, 0x12, 0x74, - 0x36, 0x25, 0xe8, 0xe7, 0x94, 0xa0, 0x0f, 0x33, 0x62, 0x9d, 0xcd, 0x88, 0xf5, 0x7d, 0x46, 0xac, - 0xe3, 0x17, 0xff, 0xdc, 0x9f, 0x71, 0xf1, 0xbb, 0x98, 0x4d, 0xea, 0x5c, 0x37, 0xeb, 0xfb, 0xf2, - 0x57, 0x00, 0x00, 0x00, 0xff, 0xff, 0x54, 0x04, 0xbf, 0x8c, 0x4d, 0x03, 0x00, 0x00, + // 476 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x93, 0x4d, 0x6e, 0xd3, 0x40, + 0x18, 0x86, 0xed, 0x06, 0x01, 0xf9, 0xf8, 0x51, 0x33, 0xaa, 0x50, 0x1a, 0x84, 0x5b, 0xb2, 0x21, + 0xfc, 0x64, 0xac, 0x06, 0xb1, 0x61, 0x85, 0xd3, 0xba, 0x34, 0x52, 0xd5, 0x56, 0x8e, 0x5b, 0x41, + 0x37, 0xd6, 0x24, 0x1e, 0x39, 0xa3, 0xc4, 0x9e, 0xc8, 0x33, 0x29, 0x49, 0x4f, 0xc1, 0x09, 0x38, + 0x00, 0xeb, 0x1e, 0x82, 0x65, 0xd5, 0x15, 0x3b, 0x50, 0x22, 0x71, 0x0e, 0x64, 0x7b, 0x6a, 0x28, + 0x4d, 0xd8, 0x74, 0x65, 0xcb, 0xdf, 0xe3, 0xe7, 0x7d, 0xc7, 0xfa, 0x0c, 0xd5, 0x2e, 0x17, 0x21, + 0x17, 0xa6, 0x90, 0xa4, 0xcf, 0xa2, 0xc0, 0x3c, 0xd9, 0xe8, 0x50, 0x49, 0x36, 0x4c, 0x32, 0x92, + 0xbd, 0x53, 0x3c, 0x8c, 0xb9, 0xe4, 0xe8, 0x51, 0xc6, 0x60, 0xc5, 0x60, 0xc5, 0x54, 0x56, 0x02, + 0x1e, 0xf0, 0x14, 0x31, 0x93, 0xbb, 0x8c, 0xae, 0xac, 0x66, 0xb4, 0x97, 0x0d, 0xd4, 0xab, 0xd9, + 0xc8, 0x50, 0x61, 0x1d, 0x22, 0x68, 0x9e, 0xd4, 0xe5, 0x2c, 0xca, 0xe6, 0xd5, 0x5f, 0x05, 0x40, + 0x6d, 0x49, 0xfa, 0xd4, 0x1a, 0xc9, 0x1e, 0x8f, 0xd9, 0x29, 0x91, 0x8c, 0x47, 0x88, 0x02, 0x84, + 0x64, 0xec, 0x49, 0xde, 0xa7, 0x91, 0x28, 0xeb, 0xeb, 0x7a, 0xed, 0x5e, 0x63, 0x15, 0x2b, 0x73, + 0xe2, 0xba, 0x6c, 0x84, 0x37, 0x39, 0x8b, 0x9a, 0x2f, 0xbf, 0xfe, 0x58, 0x7b, 0x16, 0x30, 0xd9, + 0x1b, 0x75, 0x70, 0x97, 0x87, 0xaa, 0x82, 0xba, 0xd4, 0x85, 0xdf, 0x37, 0xe5, 0x64, 0x48, 0x45, + 0x0a, 0x3b, 0xc5, 0x90, 0x8c, 0xdd, 0x54, 0x8c, 0x8e, 0x00, 0xc8, 0x60, 0xc0, 0x3f, 0x79, 0x03, + 0x26, 0x64, 0x79, 0x29, 0x8d, 0x79, 0x83, 0xe7, 0x9f, 0x1d, 0x5f, 0xaf, 0x89, 0x8f, 0xc8, 0x80, + 0xf9, 0x44, 0xf2, 0x58, 0xec, 0x68, 0x4e, 0x31, 0x55, 0xed, 0x32, 0x21, 0x91, 0x0b, 0x45, 0x9f, + 0x46, 0x93, 0x4c, 0x5b, 0xb8, 0x99, 0xf6, 0x6e, 0x62, 0x4a, 0xad, 0x1f, 0x00, 0x91, 0xbf, 0x39, + 0x2f, 0x39, 0x54, 0xf9, 0xd6, 0xba, 0x5e, 0x7b, 0xd8, 0x78, 0xbe, 0x48, 0x7f, 0xc5, 0xec, 0x4e, + 0x86, 0xd4, 0x29, 0x91, 0x7f, 0x1f, 0x55, 0xde, 0x01, 0xfc, 0xc9, 0x44, 0x0d, 0xb8, 0x43, 0x7c, + 0x3f, 0xa6, 0x22, 0xf9, 0xf2, 0x85, 0x5a, 0xb1, 0x59, 0xbe, 0x38, 0xab, 0xaf, 0x28, 0xbf, 0x95, + 0x4d, 0xda, 0x32, 0x66, 0x51, 0xe0, 0x5c, 0x82, 0x6f, 0x4b, 0x17, 0x67, 0xf5, 0x07, 0x57, 0xb2, + 0x9a, 0xf7, 0x01, 0x4e, 0x72, 0xe9, 0x8b, 0x2f, 0x3a, 0x94, 0xae, 0x75, 0x41, 0x55, 0x30, 0xac, + 0x43, 0x77, 0x67, 0xdf, 0x69, 0x1d, 0x5b, 0x6e, 0x6b, 0x7f, 0xcf, 0x73, 0x3f, 0x1e, 0xd8, 0xde, + 0xe1, 0x5e, 0xfb, 0xc0, 0xde, 0x6c, 0x6d, 0xb7, 0xec, 0xad, 0x65, 0x0d, 0xad, 0xc1, 0xe3, 0x39, + 0xcc, 0x96, 0xbd, 0x6b, 0xbf, 0xb7, 0x5c, 0x7b, 0x59, 0x47, 0x4f, 0xe1, 0xc9, 0x5c, 0x49, 0x8e, + 0x2c, 0x2d, 0x40, 0x1c, 0x3b, 0x47, 0x0a, 0xcd, 0xed, 0x6f, 0x53, 0x43, 0x3f, 0x9f, 0x1a, 0xfa, + 0xcf, 0xa9, 0xa1, 0x7f, 0x9e, 0x19, 0xda, 0xf9, 0xcc, 0xd0, 0xbe, 0xcf, 0x0c, 0xed, 0xf8, 0xd5, + 0x7f, 0x37, 0x6b, 0x9c, 0xff, 0x48, 0xe9, 0x8e, 0x75, 0x6e, 0xa7, 0x8b, 0xfd, 0xfa, 0x77, 0x00, + 0x00, 0x00, 0xff, 0xff, 0x14, 0x2c, 0x65, 0xbd, 0x67, 0x03, 0x00, 0x00, } func (m *StakeAuthorization) Marshal() (dAtA []byte, err error) { diff --git a/x/staking/types/genesis.pb.go b/x/staking/types/genesis.pb.go index 2ea6f8bf9964..08dc84010bc9 100644 --- a/x/staking/types/genesis.pb.go +++ b/x/staking/types/genesis.pb.go @@ -5,6 +5,7 @@ package types import ( fmt "fmt" + _ "github.com/cosmos/cosmos-proto" github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" _ "github.com/gogo/protobuf/gogoproto" proto "github.com/gogo/protobuf/proto" @@ -178,38 +179,40 @@ func init() { } var fileDescriptor_9b3dec8894f2831b = []byte{ - // 493 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x93, 0x3d, 0x6f, 0xd3, 0x40, - 0x18, 0xc7, 0x7d, 0xa4, 0x49, 0xc3, 0xa5, 0x20, 0x74, 0xa4, 0x60, 0x45, 0xc8, 0x0e, 0x56, 0x84, - 0x22, 0x5e, 0x6c, 0xb5, 0x6c, 0x15, 0x53, 0x84, 0xa8, 0x8a, 0x10, 0x8a, 0x8e, 0x97, 0x81, 0x25, - 0xba, 0xd4, 0x27, 0x63, 0xd5, 0xf1, 0x59, 0x7e, 0x2e, 0xa5, 0xdd, 0x11, 0x62, 0xe4, 0x23, 0xf4, - 0xe3, 0x74, 0xec, 0xc0, 0x80, 0x18, 0x2c, 0x94, 0x2c, 0xcc, 0xfd, 0x04, 0xc8, 0xe7, 0x17, 0x4c, - 0x52, 0x33, 0x25, 0x77, 0xfa, 0xfd, 0x7f, 0x7f, 0xfb, 0xfc, 0x1c, 0x1e, 0x1c, 0x0a, 0x98, 0x09, - 0x70, 0x40, 0xb2, 0x23, 0x3f, 0xf4, 0x9c, 0xe3, 0x9d, 0x29, 0x97, 0x6c, 0xc7, 0xf1, 0x78, 0xc8, - 0xc1, 0x07, 0x3b, 0x8a, 0x85, 0x14, 0xe4, 0x4e, 0x46, 0xd9, 0x39, 0x65, 0xe7, 0x54, 0xaf, 0xeb, - 0x09, 0x4f, 0x28, 0xc4, 0x49, 0xff, 0x65, 0x74, 0xaf, 0xce, 0x59, 0xa4, 0x15, 0x65, 0x7d, 0x6f, - 0xe2, 0xad, 0xfd, 0xac, 0xe5, 0x8d, 0x64, 0x92, 0x93, 0x67, 0xb8, 0x15, 0xb1, 0x98, 0xcd, 0x40, - 0x47, 0x7d, 0x34, 0xec, 0xec, 0x1a, 0xf6, 0xd5, 0xad, 0xf6, 0x58, 0x51, 0xa3, 0x8d, 0xf3, 0xc4, - 0xd4, 0x68, 0x9e, 0x21, 0x80, 0x6f, 0x05, 0x0c, 0xe4, 0x44, 0x0a, 0xc9, 0x82, 0x49, 0x24, 0x3e, - 0xf1, 0x58, 0xbf, 0xd6, 0x47, 0xc3, 0xad, 0xd1, 0x41, 0xca, 0xfd, 0x4c, 0xcc, 0x07, 0x9e, 0x2f, - 0x3f, 0xce, 0xa7, 0xf6, 0xa1, 0x98, 0x39, 0xf9, 0x13, 0x66, 0x3f, 0x4f, 0xc0, 0x3d, 0x72, 0xe4, - 0x69, 0xc4, 0xc1, 0x3e, 0x08, 0xe5, 0x65, 0x62, 0xde, 0x3d, 0x65, 0xb3, 0x60, 0xcf, 0x5a, 0xf5, - 0x59, 0xf4, 0x66, 0xba, 0xf5, 0x36, 0xdd, 0x19, 0xa7, 0x1b, 0xe4, 0x33, 0xc2, 0xdb, 0x8a, 0x3a, - 0x66, 0x81, 0xef, 0x32, 0x29, 0xe2, 0x8c, 0x04, 0xbd, 0xd1, 0x6f, 0x0c, 0x3b, 0xbb, 0x0f, 0xeb, - 0x5e, 0xe1, 0x15, 0x03, 0xf9, 0xbe, 0xc8, 0x28, 0xd7, 0x68, 0x90, 0x3e, 0xe6, 0x65, 0x62, 0xde, - 0xab, 0x94, 0xaf, 0x6a, 0x2d, 0x7a, 0x3b, 0x58, 0x4b, 0x02, 0xd9, 0xc7, 0xb8, 0x24, 0x41, 0xdf, - 0x50, 0xd5, 0xf7, 0xeb, 0xaa, 0xcb, 0x70, 0x7e, 0x80, 0x95, 0x28, 0x79, 0x89, 0x3b, 0x2e, 0x0f, - 0xb8, 0xc7, 0xa4, 0x2f, 0x42, 0xd0, 0x9b, 0xca, 0x64, 0xd5, 0x99, 0x9e, 0x97, 0x68, 0xae, 0xaa, - 0x86, 0xc9, 0x17, 0x84, 0xb7, 0xe7, 0xe1, 0x54, 0x84, 0xae, 0x1f, 0x7a, 0x93, 0xaa, 0xb6, 0xa5, - 0xb4, 0x8f, 0xea, 0xb4, 0xef, 0x8a, 0x50, 0xc5, 0xbf, 0x72, 0x38, 0x57, 0x7a, 0x2d, 0xda, 0x9d, - 0xaf, 0x47, 0x81, 0x8c, 0xf1, 0x8d, 0x98, 0x57, 0xfb, 0x37, 0x55, 0xff, 0xa0, 0xae, 0x9f, 0x56, - 0xe0, 0xfc, 0xc5, 0xfe, 0x15, 0x90, 0x1e, 0x6e, 0xf3, 0x93, 0x48, 0xc4, 0x92, 0xbb, 0x7a, 0xbb, - 0x8f, 0x86, 0x6d, 0x5a, 0xae, 0xad, 0xd7, 0x98, 0xac, 0x7f, 0x5c, 0xa2, 0xe3, 0x4d, 0xe6, 0xba, - 0x31, 0x87, 0x6c, 0xb8, 0xaf, 0xd3, 0x62, 0x49, 0xba, 0xb8, 0xf9, 0x77, 0x58, 0x1b, 0x34, 0x5b, - 0xec, 0xb5, 0xbf, 0x9e, 0x99, 0xda, 0xef, 0x33, 0x53, 0x1b, 0xbd, 0x38, 0x5f, 0x18, 0xe8, 0x62, - 0x61, 0xa0, 0x5f, 0x0b, 0x03, 0x7d, 0x5b, 0x1a, 0xda, 0xc5, 0xd2, 0xd0, 0x7e, 0x2c, 0x0d, 0xed, - 0xc3, 0xe3, 0xff, 0xce, 0xf3, 0x49, 0x79, 0xfd, 0xd4, 0x64, 0x4f, 0x5b, 0xea, 0xd6, 0x3d, 0xfd, - 0x13, 0x00, 0x00, 0xff, 0xff, 0xff, 0x85, 0xad, 0xc8, 0xf1, 0x03, 0x00, 0x00, + // 519 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x93, 0xc1, 0x6e, 0xd3, 0x30, + 0x18, 0xc7, 0x63, 0xba, 0x76, 0xc5, 0x1d, 0x08, 0x99, 0x0e, 0x42, 0x85, 0x92, 0x12, 0x55, 0xa8, + 0x02, 0x96, 0x68, 0xe5, 0x36, 0x71, 0x21, 0x42, 0x4c, 0x43, 0x1c, 0xaa, 0x0c, 0x38, 0x70, 0xa9, + 0xdc, 0xc5, 0xca, 0xa2, 0xa5, 0x71, 0x14, 0xbb, 0x63, 0xbb, 0x23, 0xc4, 0x91, 0x47, 0xd8, 0x43, + 0xf0, 0x10, 0x3b, 0x4e, 0x88, 0x03, 0xe2, 0x50, 0xa1, 0xf6, 0xc2, 0x79, 0x4f, 0x80, 0x62, 0x3b, + 0x21, 0xb4, 0x0b, 0xa7, 0xc4, 0x5f, 0x7e, 0xff, 0xff, 0xff, 0xb3, 0xf3, 0x19, 0xf6, 0x0e, 0x28, + 0x9b, 0x50, 0xe6, 0x30, 0x8e, 0x8f, 0xc2, 0x38, 0x70, 0x8e, 0xb7, 0xc7, 0x84, 0xe3, 0x6d, 0x27, + 0x20, 0x31, 0x61, 0x21, 0xb3, 0x93, 0x94, 0x72, 0x8a, 0xee, 0x48, 0xca, 0x56, 0x94, 0xad, 0xa8, + 0x4e, 0x3b, 0xa0, 0x01, 0x15, 0x88, 0x93, 0xbd, 0x49, 0xba, 0x53, 0xe5, 0x99, 0xab, 0x25, 0x75, + 0x4f, 0x52, 0x23, 0x29, 0x57, 0x01, 0x62, 0x61, 0x7d, 0xaf, 0xc3, 0x8d, 0x5d, 0xd9, 0xc0, 0x3e, + 0xc7, 0x9c, 0xa0, 0x67, 0xb0, 0x91, 0xe0, 0x14, 0x4f, 0x98, 0x0e, 0xba, 0xa0, 0xdf, 0x1a, 0x18, + 0xf6, 0xd5, 0x0d, 0xd9, 0x43, 0x41, 0xb9, 0x6b, 0xe7, 0x33, 0x53, 0xf3, 0x94, 0x06, 0x31, 0x78, + 0x2b, 0xc2, 0x8c, 0x8f, 0x38, 0xe5, 0x38, 0x1a, 0x25, 0xf4, 0x03, 0x49, 0xf5, 0x6b, 0x5d, 0xd0, + 0xdf, 0x70, 0xf7, 0x32, 0xee, 0xe7, 0xcc, 0x7c, 0x18, 0x84, 0xfc, 0x70, 0x3a, 0xb6, 0x0f, 0xe8, + 0x44, 0x75, 0xa2, 0x1e, 0x5b, 0xcc, 0x3f, 0x72, 0xf8, 0x69, 0x42, 0x98, 0xbd, 0x17, 0xf3, 0xcb, + 0x99, 0x79, 0xf7, 0x14, 0x4f, 0xa2, 0x1d, 0x6b, 0xd9, 0xcf, 0xf2, 0x6e, 0x66, 0xa5, 0x37, 0x59, + 0x65, 0x98, 0x15, 0xd0, 0x47, 0x00, 0x37, 0x05, 0x75, 0x8c, 0xa3, 0xd0, 0xc7, 0x9c, 0xa6, 0x92, + 0x64, 0x7a, 0xad, 0x5b, 0xeb, 0xb7, 0x06, 0x8f, 0xaa, 0xb6, 0xf0, 0x1a, 0x33, 0xfe, 0x2e, 0xd7, + 0x08, 0x2f, 0xb7, 0x97, 0xb5, 0x79, 0x39, 0x33, 0xef, 0x97, 0xc2, 0x97, 0x6d, 0x2d, 0xef, 0x76, + 0xb4, 0xa2, 0x64, 0x68, 0x17, 0xc2, 0x82, 0x64, 0xfa, 0x9a, 0x88, 0x7e, 0x50, 0x15, 0x5d, 0x88, + 0xd5, 0x01, 0x96, 0xa4, 0xe8, 0x15, 0x6c, 0xf9, 0x24, 0x22, 0x01, 0xe6, 0x21, 0x8d, 0x99, 0x5e, + 0x17, 0x4e, 0x56, 0x95, 0xd3, 0x8b, 0x02, 0x55, 0x56, 0x65, 0x31, 0xfa, 0x04, 0xe0, 0xe6, 0x34, + 0x1e, 0xd3, 0xd8, 0x0f, 0xe3, 0x60, 0x54, 0xb6, 0x6d, 0x08, 0xdb, 0xc7, 0x55, 0xb6, 0x6f, 0x73, + 0x51, 0xc9, 0x7f, 0xe9, 0x70, 0xae, 0xf4, 0xb5, 0xbc, 0xf6, 0x74, 0x55, 0xca, 0xd0, 0x10, 0xde, + 0x48, 0x49, 0x39, 0x7f, 0x5d, 0xe4, 0xf7, 0xaa, 0xf2, 0xbd, 0x12, 0xac, 0x36, 0xf6, 0xaf, 0x01, + 0xea, 0xc0, 0x26, 0x39, 0x49, 0x68, 0xca, 0x89, 0xaf, 0x37, 0xbb, 0xa0, 0xdf, 0xf4, 0x8a, 0xb5, + 0x75, 0x08, 0xd1, 0xea, 0xcf, 0x45, 0x03, 0xb8, 0x8e, 0x7d, 0x3f, 0x25, 0x4c, 0x0e, 0xf7, 0x75, + 0x57, 0xff, 0xf6, 0x75, 0xab, 0xad, 0x1a, 0x78, 0x2e, 0xbf, 0xec, 0xf3, 0x34, 0x8c, 0x03, 0x2f, + 0x07, 0x51, 0x1b, 0xd6, 0xff, 0x8e, 0x71, 0xcd, 0x93, 0x8b, 0x9d, 0xe6, 0xe7, 0x33, 0x53, 0xfb, + 0x7d, 0x66, 0x6a, 0xee, 0xcb, 0xf3, 0xb9, 0x01, 0x2e, 0xe6, 0x06, 0xf8, 0x35, 0x37, 0xc0, 0x97, + 0x85, 0xa1, 0x5d, 0x2c, 0x0c, 0xed, 0xc7, 0xc2, 0xd0, 0xde, 0x3f, 0xf9, 0xef, 0xa4, 0x9f, 0x14, + 0x77, 0x56, 0xcc, 0xfc, 0xb8, 0x21, 0xee, 0xe3, 0xd3, 0x3f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x89, + 0xb3, 0xaa, 0xf3, 0x26, 0x04, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/staking/types/query.pb.go b/x/staking/types/query.pb.go index 29f84adc27ac..e1c04fd8666f 100644 --- a/x/staking/types/query.pb.go +++ b/x/staking/types/query.pb.go @@ -6,6 +6,7 @@ package types import ( context "context" fmt "fmt" + _ "github.com/cosmos/cosmos-proto" query "github.com/cosmos/cosmos-sdk/types/query" _ "github.com/gogo/protobuf/gogoproto" grpc1 "github.com/gogo/protobuf/grpc" @@ -1425,89 +1426,91 @@ func init() { } var fileDescriptor_f270127f442bbcd8 = []byte{ - // 1303 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x59, 0xcf, 0x4f, 0x1c, 0x75, - 0x14, 0xdf, 0x2f, 0x20, 0x91, 0xd7, 0xb4, 0xa9, 0xdf, 0x05, 0xc4, 0x29, 0xee, 0xd2, 0x09, 0x22, - 0xa5, 0x74, 0x46, 0xa0, 0x52, 0xac, 0x4d, 0x15, 0xac, 0x54, 0xd2, 0x83, 0xb0, 0x46, 0xfc, 0x75, - 0x20, 0xb3, 0x3b, 0xd3, 0xd9, 0x49, 0x97, 0x99, 0xed, 0xcc, 0x40, 0x40, 0xc2, 0x41, 0x4f, 0x7a, - 0xd3, 0x78, 0x52, 0x2f, 0x3d, 0x98, 0x98, 0xe8, 0x51, 0xff, 0x01, 0x4f, 0xd6, 0x1b, 0x46, 0x0f, - 0x7a, 0xa9, 0x06, 0x3c, 0x34, 0x9e, 0xbc, 0x19, 0x6f, 0x66, 0xbf, 0xf3, 0x66, 0x76, 0x86, 0xf9, - 0xb9, 0xcb, 0x12, 0xd2, 0x13, 0xbb, 0xdf, 0x7d, 0x3f, 0x3e, 0x9f, 0xf7, 0xbe, 0xef, 0x7d, 0xdf, - 0x0b, 0xc0, 0x57, 0x0c, 0x6b, 0xdd, 0xb0, 0x44, 0xcb, 0x96, 0xee, 0x68, 0xba, 0x2a, 0x6e, 0x4e, - 0x95, 0x15, 0x5b, 0x9a, 0x12, 0xef, 0x6e, 0x28, 0xe6, 0xb6, 0x50, 0x37, 0x0d, 0xdb, 0xa0, 0x83, - 0x8e, 0x8c, 0x80, 0x32, 0x02, 0xca, 0x70, 0x13, 0xa8, 0x5b, 0x96, 0x2c, 0xc5, 0x51, 0xf0, 0xd4, - 0xeb, 0x92, 0xaa, 0xe9, 0x92, 0xad, 0x19, 0xba, 0x63, 0x83, 0xeb, 0x57, 0x0d, 0xd5, 0x60, 0x1f, - 0xc5, 0xc6, 0x27, 0x3c, 0x1d, 0x56, 0x0d, 0x43, 0xad, 0x29, 0xa2, 0x54, 0xd7, 0x44, 0x49, 0xd7, - 0x0d, 0x9b, 0xa9, 0x58, 0xf8, 0xeb, 0x68, 0x0c, 0x36, 0x17, 0x07, 0x93, 0xe2, 0xb7, 0x60, 0x70, - 0xa5, 0xe1, 0x7b, 0x55, 0xaa, 0x69, 0xb2, 0x64, 0x1b, 0xa6, 0x55, 0x52, 0xee, 0x6e, 0x28, 0x96, - 0x4d, 0x07, 0xa1, 0xd7, 0xb2, 0x25, 0x7b, 0xc3, 0x1a, 0x22, 0x23, 0x64, 0xbc, 0xaf, 0x84, 0xdf, - 0xe8, 0x22, 0x40, 0x13, 0xdf, 0x50, 0xd7, 0x08, 0x19, 0x3f, 0x35, 0x3d, 0x26, 0x20, 0xc9, 0x06, - 0x19, 0xc1, 0x61, 0x8f, 0xfe, 0x84, 0x65, 0x49, 0x55, 0xd0, 0x66, 0xc9, 0xa7, 0xc9, 0x7f, 0x4b, - 0xe0, 0xc9, 0x90, 0x6b, 0xab, 0x6e, 0xe8, 0x96, 0x42, 0x6f, 0x02, 0x6c, 0x7a, 0xa7, 0x43, 0x64, - 0xa4, 0x7b, 0xfc, 0xd4, 0xf4, 0x79, 0x21, 0x3a, 0x90, 0x82, 0xa7, 0xbf, 0xd0, 0x73, 0xff, 0x41, - 0x31, 0x57, 0xf2, 0xa9, 0x36, 0x0c, 0x85, 0xc0, 0x3e, 0x9b, 0x0a, 0xd6, 0x41, 0x11, 0x40, 0x7b, - 0x1d, 0x06, 0x82, 0x60, 0xdd, 0x30, 0x3d, 0x03, 0x67, 0x3c, 0x7f, 0x6b, 0x92, 0x2c, 0x9b, 0x18, - 0xae, 0xd3, 0xde, 0xe9, 0xbc, 0x2c, 0x9b, 0xfc, 0xda, 0xe1, 0x38, 0x7b, 0x5c, 0x5f, 0x85, 0x3e, - 0x4f, 0x94, 0xe9, 0xb6, 0x40, 0xb5, 0xa9, 0xc9, 0x7f, 0x4a, 0x60, 0x24, 0xe8, 0xe1, 0x86, 0x52, - 0x53, 0x54, 0xe7, 0x4a, 0xb4, 0x06, 0xb6, 0x63, 0x29, 0x7e, 0x48, 0xe0, 0x7c, 0x02, 0x26, 0x0c, - 0xc0, 0xfb, 0xd0, 0x2f, 0x7b, 0xc7, 0x6b, 0x26, 0x1e, 0xbb, 0x69, 0x9f, 0x88, 0x8b, 0x45, 0xd3, - 0x94, 0x6b, 0x69, 0xe1, 0x5c, 0x23, 0x28, 0xdf, 0xfc, 0x51, 0xcc, 0x87, 0x7f, 0xb3, 0x4a, 0x79, - 0x39, 0x7c, 0xd8, 0xb9, 0xfb, 0xf1, 0x05, 0x81, 0x0b, 0x41, 0xaa, 0x6f, 0xea, 0x65, 0x43, 0x97, - 0x35, 0x5d, 0x3d, 0xf9, 0x3c, 0xfc, 0x4e, 0x60, 0x22, 0x0b, 0x38, 0x4c, 0x48, 0x19, 0xf2, 0x1b, - 0xee, 0xef, 0xa1, 0x7c, 0x5c, 0x8c, 0xcb, 0x47, 0x84, 0x49, 0xbc, 0xa5, 0xd4, 0xb3, 0x76, 0x0c, - 0x81, 0xaf, 0x63, 0x61, 0xf9, 0x53, 0xee, 0x05, 0x19, 0x53, 0x7e, 0x28, 0xc8, 0xde, 0x29, 0x0b, - 0x72, 0x38, 0x17, 0x5d, 0x11, 0xb9, 0xb8, 0xfa, 0xf8, 0x47, 0xf7, 0x8a, 0xb9, 0x87, 0xf7, 0x8a, - 0x39, 0x7e, 0x13, 0xfb, 0x56, 0xf8, 0x92, 0xd1, 0xf7, 0x20, 0x1f, 0x71, 0x95, 0xb1, 0xaa, 0x5b, - 0xb8, 0xc9, 0x25, 0x1a, 0xbe, 0xac, 0xfc, 0x36, 0x14, 0x99, 0xdf, 0x88, 0x40, 0x1f, 0x37, 0xe5, - 0x75, 0xec, 0x2d, 0x91, 0xae, 0x91, 0xfb, 0x12, 0xf4, 0x3a, 0x79, 0x46, 0xba, 0x6d, 0x5c, 0x14, - 0x34, 0xc0, 0x7f, 0xe9, 0xf6, 0xb2, 0x1b, 0x2e, 0xec, 0xe8, 0x1a, 0xca, 0xc2, 0xb5, 0x43, 0x35, - 0xe4, 0x0b, 0xc6, 0xcf, 0x6e, 0x57, 0x8b, 0x46, 0x87, 0xe1, 0xa8, 0x74, 0xac, 0xab, 0x39, 0xb1, - 0x39, 0xde, 0xf6, 0xf5, 0x95, 0xdb, 0xbe, 0x3c, 0x4e, 0x29, 0xed, 0xeb, 0x64, 0x42, 0xef, 0x35, - 0xb2, 0x14, 0x98, 0x8f, 0x62, 0x23, 0xfb, 0x87, 0xc0, 0x53, 0x8c, 0x5b, 0x49, 0x91, 0xdb, 0x0e, - 0xf9, 0x24, 0x50, 0xcb, 0xac, 0xac, 0x45, 0x56, 0xf7, 0x59, 0xcb, 0xac, 0xac, 0x06, 0xde, 0x97, - 0x49, 0xa0, 0xb2, 0x65, 0x1f, 0x96, 0xee, 0x76, 0xa4, 0x65, 0xcb, 0x5e, 0x4d, 0x78, 0x8d, 0x7a, - 0x3a, 0x90, 0xce, 0x3d, 0x02, 0x5c, 0x14, 0x65, 0x4c, 0x9f, 0x06, 0x83, 0xa6, 0x92, 0x50, 0x44, - 0x93, 0x71, 0x19, 0xf4, 0x9b, 0x3b, 0x54, 0x46, 0x03, 0xa6, 0x72, 0xdc, 0x73, 0x40, 0x31, 0x78, - 0x43, 0xc3, 0x93, 0xf5, 0x89, 0x95, 0xcf, 0xf7, 0xa1, 0xbe, 0xfa, 0x48, 0xcc, 0xde, 0x5b, 0x50, - 0x88, 0x41, 0x7d, 0xdc, 0xef, 0x5e, 0x35, 0x36, 0x99, 0x9d, 0x1e, 0xdf, 0x2f, 0x63, 0x25, 0xbc, - 0xa6, 0x59, 0xb6, 0x61, 0x6a, 0x15, 0xa9, 0xb6, 0xa4, 0xdf, 0x36, 0x7c, 0xbb, 0x58, 0x55, 0xd1, - 0xd4, 0xaa, 0xcd, 0x3c, 0x74, 0x97, 0xf0, 0x1b, 0xff, 0x0e, 0x9c, 0x8b, 0xd4, 0x42, 0x6c, 0x57, - 0xa1, 0xa7, 0xaa, 0x59, 0x36, 0xc2, 0x1a, 0x8b, 0x83, 0x75, 0x48, 0x9b, 0xe9, 0xf0, 0x14, 0xce, - 0x32, 0xd3, 0xcb, 0x86, 0x51, 0x43, 0x18, 0xfc, 0x2d, 0x78, 0xc2, 0x77, 0x86, 0x4e, 0x66, 0xa1, - 0xa7, 0x6e, 0x18, 0x35, 0x74, 0x32, 0x1c, 0xe7, 0xa4, 0xa1, 0x83, 0xb4, 0x99, 0x3c, 0xdf, 0x0f, - 0xd4, 0x31, 0x26, 0x99, 0xd2, 0xba, 0x5b, 0x1b, 0xfc, 0x1b, 0x90, 0x0f, 0x9c, 0xa2, 0x93, 0x6b, - 0xd0, 0x5b, 0x67, 0x27, 0xe8, 0xa6, 0x10, 0xeb, 0x86, 0x49, 0xb9, 0xf3, 0x84, 0xa3, 0x33, 0xfd, - 0xf7, 0x00, 0x3c, 0xc6, 0xac, 0xd2, 0xcf, 0x09, 0x40, 0xf3, 0xce, 0x53, 0x21, 0xce, 0x4c, 0xf4, - 0x4e, 0xcc, 0x89, 0x99, 0xe5, 0x71, 0x66, 0x9b, 0xf8, 0xf0, 0x97, 0xbf, 0x3e, 0xeb, 0x1a, 0xa5, - 0xbc, 0x18, 0xb3, 0x8d, 0xfb, 0xea, 0xe5, 0x6b, 0x02, 0x7d, 0x9e, 0x09, 0x7a, 0x29, 0x9b, 0x2b, - 0x17, 0x99, 0x90, 0x55, 0x1c, 0x81, 0xbd, 0xc8, 0x80, 0x3d, 0x4f, 0x67, 0xd2, 0x81, 0x89, 0x3b, - 0xc1, 0xa2, 0xd9, 0xa5, 0xbf, 0x12, 0xe8, 0x8f, 0x5a, 0xe9, 0xe8, 0x5c, 0x36, 0x14, 0xe1, 0x91, - 0x82, 0x7b, 0xa1, 0x0d, 0x4d, 0xa4, 0x72, 0x93, 0x51, 0x99, 0xa7, 0x2f, 0xb5, 0x41, 0x45, 0xf4, - 0xbd, 0x3b, 0xf4, 0x3f, 0x02, 0x4f, 0x27, 0x6e, 0x48, 0x74, 0x3e, 0x1b, 0xca, 0x84, 0xd9, 0x89, - 0x5b, 0x38, 0x8a, 0x09, 0x64, 0xbc, 0xc2, 0x18, 0xdf, 0xa2, 0x4b, 0xed, 0x30, 0x6e, 0x4e, 0x44, - 0x7e, 0xee, 0x3f, 0x12, 0x80, 0xa6, 0xab, 0x94, 0xc2, 0x08, 0x2d, 0x1e, 0x29, 0x85, 0x11, 0x1e, - 0x6a, 0xf9, 0xb7, 0x19, 0x85, 0x12, 0x5d, 0x3e, 0x62, 0xd2, 0xc4, 0x9d, 0x60, 0xe3, 0xdf, 0xa5, - 0xff, 0x12, 0xc8, 0x47, 0x44, 0x8f, 0x5e, 0x49, 0x84, 0x18, 0xbf, 0x54, 0x71, 0x73, 0xad, 0x2b, - 0x22, 0xc9, 0x75, 0x46, 0x52, 0xa5, 0x4a, 0xa7, 0x49, 0x46, 0x26, 0x91, 0xfe, 0x44, 0xa0, 0x3f, - 0x6a, 0x27, 0x49, 0x29, 0xcb, 0x84, 0x25, 0x2b, 0xa5, 0x2c, 0x93, 0x16, 0x20, 0xfe, 0x1a, 0x23, - 0x3f, 0x4b, 0x2f, 0xc7, 0x91, 0x4f, 0xcc, 0x62, 0xa3, 0x16, 0x13, 0x87, 0xfc, 0x94, 0x5a, 0xcc, - 0xb2, 0xc7, 0xa4, 0xd4, 0x62, 0xa6, 0x1d, 0x23, 0xbd, 0x16, 0x3d, 0x66, 0x19, 0xd3, 0x68, 0xd1, - 0x1f, 0x08, 0x9c, 0x0e, 0x4c, 0xc4, 0x74, 0x2a, 0x11, 0x68, 0xd4, 0xc2, 0xc0, 0x4d, 0xb7, 0xa2, - 0x82, 0x5c, 0x96, 0x18, 0x97, 0x57, 0xe8, 0x7c, 0x3b, 0x5c, 0xcc, 0x00, 0xe2, 0x3d, 0x02, 0xf9, - 0x88, 0x29, 0x33, 0xa5, 0x0a, 0xe3, 0x87, 0x66, 0x6e, 0xae, 0x75, 0x45, 0x64, 0xb5, 0xc8, 0x58, - 0xbd, 0x4c, 0xaf, 0xb7, 0xc3, 0xca, 0xf7, 0x3e, 0x3f, 0x20, 0x40, 0xc3, 0x7e, 0xe8, 0x6c, 0x8b, - 0xc0, 0x5c, 0x42, 0x57, 0x5a, 0xd6, 0x43, 0x3e, 0x6f, 0x31, 0x3e, 0x2b, 0xf4, 0xf5, 0xa3, 0xf1, - 0x09, 0x3f, 0xeb, 0xdf, 0x11, 0x38, 0x13, 0x9c, 0x05, 0x69, 0xf2, 0x2d, 0x8a, 0x1c, 0x56, 0xb9, - 0x99, 0x96, 0x74, 0x90, 0xd4, 0x1c, 0x23, 0x35, 0x4d, 0x9f, 0x8b, 0x23, 0x55, 0xf5, 0xf4, 0xd6, - 0x34, 0xfd, 0xb6, 0x21, 0xee, 0x38, 0x23, 0xf0, 0x2e, 0xfd, 0x80, 0x40, 0x4f, 0x63, 0xb8, 0xa4, - 0xe3, 0x89, 0x7e, 0x7d, 0x73, 0x2c, 0x77, 0x21, 0x83, 0x24, 0xe2, 0x1a, 0x65, 0xb8, 0x0a, 0x74, - 0x38, 0x0e, 0x57, 0x63, 0x96, 0xa5, 0x1f, 0x13, 0xe8, 0x75, 0x26, 0x4f, 0x3a, 0x91, 0x6c, 0xdb, - 0x3f, 0xec, 0x72, 0x17, 0x33, 0xc9, 0x22, 0x92, 0x31, 0x86, 0x64, 0x84, 0x16, 0x62, 0x91, 0x38, - 0xa3, 0xef, 0xe2, 0xfd, 0xfd, 0x02, 0xd9, 0xdb, 0x2f, 0x90, 0x3f, 0xf7, 0x0b, 0xe4, 0x93, 0x83, - 0x42, 0x6e, 0xef, 0xa0, 0x90, 0xfb, 0xed, 0xa0, 0x90, 0x7b, 0x77, 0x52, 0xd5, 0xec, 0xea, 0x46, - 0x59, 0xa8, 0x18, 0xeb, 0xae, 0x0d, 0xe7, 0xcf, 0x25, 0x4b, 0xbe, 0x23, 0x6e, 0x79, 0x06, 0xed, - 0xed, 0xba, 0x62, 0x95, 0x7b, 0xd9, 0x3f, 0x88, 0x66, 0xfe, 0x0f, 0x00, 0x00, 0xff, 0xff, 0x4b, - 0x6e, 0xeb, 0x7f, 0xe4, 0x1a, 0x00, 0x00, + // 1340 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x59, 0xcb, 0x6f, 0x1b, 0x55, + 0x17, 0xf7, 0x4d, 0xf3, 0x45, 0x5f, 0x4f, 0xd5, 0xaa, 0x5c, 0xbb, 0x21, 0x9d, 0x16, 0x3b, 0x1d, + 0x55, 0x21, 0x4d, 0x1b, 0x0f, 0x49, 0x4a, 0x1a, 0x4a, 0x45, 0x49, 0x28, 0x29, 0x51, 0x17, 0x24, + 0xae, 0x08, 0x05, 0x16, 0xd6, 0xd8, 0x33, 0x1d, 0x8f, 0xea, 0xcc, 0xb8, 0x73, 0x27, 0x51, 0x4b, + 0x94, 0x05, 0xac, 0x60, 0x87, 0xc4, 0x8a, 0x5d, 0x17, 0x48, 0x48, 0x3c, 0x56, 0x84, 0x6d, 0x25, + 0x56, 0x94, 0x5d, 0x78, 0x2c, 0x60, 0x53, 0x50, 0xc2, 0xa2, 0xe2, 0x1f, 0x40, 0xec, 0x90, 0xef, + 0x9c, 0x19, 0x8f, 0x33, 0x4f, 0x3b, 0x8e, 0x94, 0xae, 0x1a, 0x5f, 0x9f, 0xc7, 0xef, 0x77, 0x1e, + 0xf7, 0x9e, 0xe3, 0x82, 0x58, 0x35, 0xd9, 0x8a, 0xc9, 0x24, 0x66, 0xcb, 0x77, 0x74, 0x43, 0x93, + 0xd6, 0x26, 0x2a, 0xaa, 0x2d, 0x4f, 0x48, 0x77, 0x57, 0x55, 0xeb, 0x7e, 0xb1, 0x61, 0x99, 0xb6, + 0x49, 0x07, 0x1d, 0x99, 0x22, 0xca, 0x14, 0x51, 0x46, 0x18, 0x43, 0xdd, 0x8a, 0xcc, 0x54, 0x47, + 0xc1, 0x53, 0x6f, 0xc8, 0x9a, 0x6e, 0xc8, 0xb6, 0x6e, 0x1a, 0x8e, 0x0d, 0x21, 0xa7, 0x99, 0x9a, + 0xc9, 0xff, 0x94, 0x9a, 0x7f, 0xe1, 0xe9, 0x69, 0xcd, 0x34, 0xb5, 0xba, 0x2a, 0xc9, 0x0d, 0x5d, + 0x92, 0x0d, 0xc3, 0xb4, 0xb9, 0x0a, 0xc3, 0x6f, 0xcf, 0x46, 0x60, 0x73, 0x71, 0x38, 0x52, 0x27, + 0x1d, 0xa9, 0xb2, 0x63, 0x1c, 0xa1, 0xf2, 0x0f, 0xe2, 0x3d, 0x18, 0x5c, 0x6a, 0xc2, 0x5a, 0x96, + 0xeb, 0xba, 0x22, 0xdb, 0xa6, 0xc5, 0x4a, 0xea, 0xdd, 0x55, 0x95, 0xd9, 0x74, 0x10, 0x06, 0x98, + 0x2d, 0xdb, 0xab, 0x6c, 0x88, 0x0c, 0x93, 0xd1, 0xc3, 0x25, 0xfc, 0x44, 0xe7, 0x01, 0x5a, 0xd0, + 0x87, 0xfa, 0x86, 0xc9, 0xe8, 0x91, 0xc9, 0x91, 0x22, 0x1a, 0x6d, 0xf2, 0x2c, 0x3a, 0x81, 0x41, + 0x28, 0xc5, 0x45, 0x59, 0x53, 0xd1, 0x66, 0xc9, 0xa7, 0x29, 0x7e, 0x45, 0xe0, 0xd9, 0x80, 0x6b, + 0xd6, 0x30, 0x0d, 0xa6, 0xd2, 0xeb, 0x00, 0x6b, 0xde, 0xe9, 0x10, 0x19, 0x3e, 0x34, 0x7a, 0x64, + 0xf2, 0x4c, 0x31, 0x3c, 0xc6, 0x45, 0x4f, 0x7f, 0xae, 0xff, 0xd1, 0xe3, 0x42, 0xa6, 0xe4, 0x53, + 0x6d, 0x1a, 0x0a, 0x80, 0x7d, 0x3e, 0x11, 0xac, 0x83, 0xa2, 0x0d, 0xed, 0x2d, 0x38, 0xd1, 0x0e, + 0xd6, 0x0d, 0xd3, 0x55, 0x38, 0xe6, 0xf9, 0x2b, 0xcb, 0x8a, 0x62, 0x39, 0xe1, 0x9a, 0x1b, 0xfa, + 0x79, 0x73, 0x3c, 0x87, 0x8e, 0x66, 0x15, 0xc5, 0x52, 0x19, 0xbb, 0x69, 0x5b, 0xba, 0xa1, 0x95, + 0x8e, 0x7a, 0xf2, 0xcd, 0x73, 0xb1, 0xbc, 0x3b, 0x03, 0x5e, 0x14, 0x5e, 0x87, 0xc3, 0x9e, 0x28, + 0xb7, 0xda, 0x41, 0x10, 0x5a, 0x9a, 0xcd, 0x40, 0x0f, 0xb7, 0x7b, 0xb8, 0xa6, 0xd6, 0x55, 0xcd, + 0xa9, 0xa3, 0x5e, 0xd1, 0xe8, 0x59, 0x59, 0x3c, 0x21, 0x70, 0x26, 0x06, 0x2d, 0x86, 0xe6, 0x7d, + 0xc8, 0x29, 0xde, 0x71, 0xd9, 0xc2, 0x63, 0xb7, 0x54, 0xc6, 0xa2, 0xa2, 0xd4, 0x32, 0xe5, 0x5a, + 0x9a, 0x3b, 0xd5, 0x0c, 0xd7, 0x97, 0x7f, 0x14, 0xb2, 0xc1, 0xef, 0x58, 0x29, 0xab, 0x04, 0x0f, + 0x7b, 0x57, 0x53, 0x9b, 0x04, 0xce, 0xb5, 0x53, 0x7d, 0xcb, 0xa8, 0x98, 0x86, 0xa2, 0x1b, 0xda, + 0x41, 0xce, 0xd0, 0xef, 0x04, 0xc6, 0xd2, 0xc0, 0xc6, 0x54, 0x55, 0x20, 0xbb, 0xea, 0x7e, 0x1f, + 0xc8, 0xd4, 0xf9, 0xa8, 0x4c, 0x85, 0x98, 0xc4, 0xca, 0xa6, 0x9e, 0xb5, 0x7d, 0x48, 0xc9, 0xe7, + 0x04, 0xbb, 0xd1, 0x5f, 0x0d, 0x5e, 0xfc, 0xb1, 0x1a, 0x52, 0xc7, 0xdf, 0x93, 0xe7, 0xf1, 0x0f, + 0x26, 0xb0, 0xaf, 0xa3, 0x04, 0x5e, 0xfe, 0xff, 0x47, 0x0f, 0x0a, 0x99, 0x27, 0x0f, 0x0a, 0x19, + 0x71, 0x0d, 0xaf, 0xce, 0x60, 0xcd, 0xd2, 0xf7, 0x20, 0x1b, 0xd2, 0x19, 0x78, 0x7d, 0x74, 0xd0, + 0x18, 0x25, 0x1a, 0xac, 0x7d, 0xf1, 0x1b, 0x02, 0x05, 0xee, 0x38, 0x24, 0x3d, 0x07, 0x31, 0x4e, + 0x2b, 0x78, 0xf3, 0x85, 0xc2, 0xc5, 0x80, 0x2d, 0xc0, 0x80, 0x53, 0x51, 0x18, 0xa3, 0x2e, 0x4a, + 0x12, 0x0d, 0x88, 0xdf, 0xb9, 0x37, 0xed, 0x35, 0x97, 0x50, 0x78, 0x1f, 0xef, 0x2d, 0x3e, 0x3d, + 0xea, 0x63, 0x5f, 0x98, 0x7e, 0x72, 0xef, 0xdc, 0x70, 0xdc, 0x18, 0xa8, 0x6a, 0xcf, 0xee, 0x5c, + 0x27, 0x6a, 0xfb, 0x7b, 0xb9, 0x3e, 0x74, 0x2f, 0x57, 0x8f, 0x53, 0xc2, 0xe5, 0x7a, 0xd0, 0x92, + 0xe2, 0x5d, 0xb3, 0x09, 0x04, 0x9e, 0xc6, 0x6b, 0xf6, 0x61, 0x1f, 0x9c, 0xe4, 0xdc, 0x4a, 0xaa, + 0xb2, 0x2f, 0xc9, 0xa0, 0xcc, 0xaa, 0x96, 0x3b, 0xbc, 0x45, 0x8e, 0x33, 0xab, 0xba, 0xbc, 0xeb, + 0xc5, 0xa4, 0x0a, 0xb3, 0x77, 0xdb, 0x39, 0x94, 0x64, 0x47, 0x61, 0xf6, 0x72, 0xcc, 0xcb, 0xdb, + 0xdf, 0x83, 0xe2, 0xd8, 0x22, 0x20, 0x84, 0x05, 0x10, 0x8b, 0x41, 0x87, 0x41, 0x4b, 0x8d, 0x69, + 0xd6, 0x0b, 0x51, 0xf5, 0xe0, 0x37, 0xb7, 0xab, 0x5d, 0x4f, 0x58, 0xea, 0x7e, 0x4f, 0x43, 0x85, + 0xf6, 0x7a, 0x0f, 0xee, 0x24, 0x07, 0xb0, 0x4d, 0x37, 0x03, 0x77, 0xfe, 0x53, 0xb1, 0xcf, 0x7c, + 0x4d, 0x20, 0x1f, 0x01, 0xfb, 0x20, 0x3e, 0xe4, 0xb5, 0xc8, 0xda, 0xe8, 0xf5, 0xb6, 0x74, 0x11, + 0x1b, 0xeb, 0x0d, 0x9d, 0xd9, 0xa6, 0xa5, 0x57, 0xe5, 0xfa, 0x82, 0x71, 0xdb, 0xf4, 0x2d, 0xc5, + 0x35, 0x55, 0xd7, 0x6a, 0x36, 0xf7, 0x70, 0xa8, 0x84, 0x9f, 0xc4, 0x77, 0xe0, 0x54, 0xa8, 0x16, + 0x62, 0xbb, 0x0c, 0xfd, 0x35, 0x9d, 0xd9, 0x08, 0x6b, 0x24, 0x0a, 0xd6, 0x2e, 0x6d, 0xae, 0x23, + 0x52, 0x38, 0xce, 0x4d, 0x2f, 0x9a, 0x66, 0x1d, 0x61, 0x88, 0x37, 0xe0, 0x19, 0xdf, 0x19, 0x3a, + 0x99, 0x86, 0xfe, 0x86, 0x69, 0xd6, 0xd1, 0xc9, 0xe9, 0x28, 0x27, 0x4d, 0x1d, 0xa4, 0xcd, 0xe5, + 0xc5, 0x1c, 0x50, 0xc7, 0x98, 0x6c, 0xc9, 0x2b, 0x6e, 0xab, 0x89, 0x37, 0x21, 0xdb, 0x76, 0x8a, + 0x4e, 0xae, 0xc0, 0x40, 0x83, 0x9f, 0xa0, 0x9b, 0x7c, 0xa4, 0x1b, 0x2e, 0xe5, 0x0e, 0x48, 0x8e, + 0xce, 0xe4, 0xdf, 0x27, 0xe0, 0x7f, 0xdc, 0x2a, 0xfd, 0x8c, 0x00, 0xb4, 0x1a, 0x85, 0x16, 0xa3, + 0xcc, 0x84, 0xff, 0x38, 0x21, 0x48, 0xa9, 0xe5, 0x71, 0x72, 0x1d, 0xfb, 0xf0, 0x97, 0xbf, 0x3e, + 0xed, 0x3b, 0x4b, 0x45, 0x29, 0xe2, 0x17, 0x13, 0x5f, 0x93, 0x7d, 0x41, 0xe0, 0xb0, 0x67, 0x82, + 0x8e, 0xa7, 0x73, 0xe5, 0x22, 0x2b, 0xa6, 0x15, 0x47, 0x60, 0x2f, 0x73, 0x60, 0x2f, 0xd2, 0xa9, + 0x64, 0x60, 0xd2, 0x7a, 0x7b, 0x3b, 0x6d, 0xd0, 0x5f, 0x09, 0xe4, 0xc2, 0xf6, 0x64, 0x3a, 0x93, + 0x0e, 0x45, 0x70, 0x12, 0x12, 0x5e, 0xea, 0x42, 0x13, 0xa9, 0x5c, 0xe7, 0x54, 0x66, 0xe9, 0xd5, + 0x2e, 0xa8, 0x48, 0xbe, 0x67, 0x8c, 0xfe, 0x4b, 0xe0, 0xb9, 0xd8, 0xe5, 0x92, 0xce, 0xa6, 0x43, + 0x19, 0x33, 0xf2, 0x09, 0x73, 0x7b, 0x31, 0x81, 0x8c, 0x97, 0x38, 0xe3, 0x1b, 0x74, 0xa1, 0x1b, + 0xc6, 0xad, 0x71, 0xcd, 0xcf, 0xfd, 0x07, 0x02, 0xd0, 0x72, 0x95, 0xd0, 0x18, 0x81, 0xed, 0x2b, + 0xa1, 0x31, 0x82, 0xb3, 0xb8, 0x78, 0x8b, 0x53, 0x28, 0xd1, 0xc5, 0x3d, 0x26, 0x4d, 0x5a, 0x6f, + 0x7f, 0x2c, 0x36, 0xe8, 0x3f, 0x04, 0xb2, 0x21, 0xd1, 0xa3, 0x97, 0x62, 0x21, 0x46, 0x6f, 0x96, + 0xc2, 0x4c, 0xe7, 0x8a, 0x48, 0x72, 0x85, 0x93, 0xd4, 0xa8, 0xda, 0x6b, 0x92, 0xa1, 0x49, 0xa4, + 0x3f, 0x12, 0xc8, 0x85, 0xad, 0x52, 0x09, 0x6d, 0x19, 0xb3, 0x35, 0x26, 0xb4, 0x65, 0xdc, 0xde, + 0x26, 0x5e, 0xe1, 0xe4, 0xa7, 0xe9, 0xc5, 0x28, 0xf2, 0xb1, 0x59, 0x6c, 0xf6, 0x62, 0xec, 0x06, + 0x92, 0xd0, 0x8b, 0x69, 0xd6, 0xaf, 0x84, 0x5e, 0x4c, 0xb5, 0x00, 0x25, 0xf7, 0xa2, 0xc7, 0x2c, + 0x65, 0x1a, 0x19, 0xfd, 0x9e, 0xc0, 0xd1, 0xb6, 0x01, 0x9b, 0x4e, 0xc4, 0x02, 0x0d, 0xdb, 0x66, + 0x84, 0xc9, 0x4e, 0x54, 0x90, 0xcb, 0x02, 0xe7, 0xf2, 0x1a, 0x9d, 0xed, 0x86, 0x8b, 0xd5, 0x86, + 0x78, 0x8b, 0x40, 0x36, 0x64, 0x34, 0x4d, 0xe8, 0xc2, 0xe8, 0x19, 0x5c, 0x98, 0xe9, 0x5c, 0x11, + 0x59, 0xcd, 0x73, 0x56, 0xaf, 0xd2, 0x57, 0xba, 0x61, 0xe5, 0x7b, 0x9f, 0x1f, 0x13, 0xa0, 0x41, + 0x3f, 0x74, 0xba, 0x43, 0x60, 0x2e, 0xa1, 0x4b, 0x1d, 0xeb, 0x21, 0x9f, 0xb7, 0x39, 0x9f, 0x25, + 0xfa, 0xe6, 0xde, 0xf8, 0x04, 0x9f, 0xf5, 0x6f, 0x09, 0x1c, 0x6b, 0x9f, 0x05, 0x69, 0x7c, 0x15, + 0x85, 0x0e, 0xab, 0xc2, 0x54, 0x47, 0x3a, 0x48, 0x6a, 0x86, 0x93, 0x9a, 0xa4, 0x2f, 0x44, 0x91, + 0xaa, 0x79, 0x7a, 0x65, 0xdd, 0xb8, 0x6d, 0x4a, 0xeb, 0xce, 0x08, 0xbc, 0x41, 0x3f, 0x20, 0xd0, + 0xdf, 0x1c, 0x2e, 0xe9, 0x68, 0xac, 0x5f, 0xdf, 0x1c, 0x2b, 0x9c, 0x4b, 0x21, 0x89, 0xb8, 0xce, + 0x72, 0x5c, 0x79, 0x7a, 0x3a, 0x0a, 0x57, 0x73, 0x96, 0xa5, 0x1f, 0x13, 0x18, 0x70, 0x26, 0x4f, + 0x3a, 0x16, 0x6f, 0xdb, 0x3f, 0xec, 0x0a, 0xe7, 0x53, 0xc9, 0x22, 0x92, 0x11, 0x8e, 0x64, 0x98, + 0xe6, 0x23, 0x91, 0x38, 0xa3, 0xef, 0xfc, 0xa3, 0xed, 0x3c, 0xd9, 0xda, 0xce, 0x93, 0x3f, 0xb7, + 0xf3, 0xe4, 0x93, 0x9d, 0x7c, 0x66, 0x6b, 0x27, 0x9f, 0xf9, 0x6d, 0x27, 0x9f, 0x79, 0xf7, 0x82, + 0xa6, 0xdb, 0xb5, 0xd5, 0x4a, 0xb1, 0x6a, 0xae, 0xb8, 0x36, 0x9c, 0x7f, 0xc6, 0x99, 0x72, 0x47, + 0xba, 0xe7, 0x19, 0xb4, 0xef, 0x37, 0x54, 0x56, 0x19, 0xe0, 0xff, 0x53, 0x37, 0xf5, 0x5f, 0x00, + 0x00, 0x00, 0xff, 0xff, 0xbf, 0x31, 0x66, 0xa3, 0x88, 0x1c, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/staking/types/staking.pb.go b/x/staking/types/staking.pb.go index 618599edba36..2d33f2061bf1 100644 --- a/x/staking/types/staking.pb.go +++ b/x/staking/types/staking.pb.go @@ -7,6 +7,7 @@ import ( bytes "bytes" compress_gzip "compress/gzip" fmt "fmt" + _ "github.com/cosmos/cosmos-proto" types1 "github.com/cosmos/cosmos-sdk/codec/types" github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" types2 "github.com/cosmos/cosmos-sdk/types" @@ -15,7 +16,6 @@ import ( proto "github.com/gogo/protobuf/proto" github_com_gogo_protobuf_protoc_gen_gogo_descriptor "github.com/gogo/protobuf/protoc-gen-gogo/descriptor" github_com_gogo_protobuf_types "github.com/gogo/protobuf/types" - _ "github.com/regen-network/cosmos-proto" types "github.com/tendermint/tendermint/proto/tendermint/types" _ "google.golang.org/protobuf/types/known/durationpb" _ "google.golang.org/protobuf/types/known/timestamppb" @@ -1138,120 +1138,123 @@ func init() { } var fileDescriptor_64c30c6cf92913c9 = []byte{ - // 1796 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x58, 0x4d, 0x6c, 0x23, 0x49, - 0x15, 0x76, 0x3b, 0x5e, 0xc7, 0x7e, 0x4e, 0xe2, 0xa4, 0x26, 0x33, 0xeb, 0x98, 0xc1, 0xed, 0x6d, - 0x56, 0x4b, 0x40, 0xbb, 0x0e, 0x93, 0x45, 0x8b, 0xc8, 0x05, 0xc6, 0x71, 0x86, 0x58, 0xbb, 0x0c, - 0xa1, 0x93, 0x09, 0x12, 0xac, 0xb0, 0xca, 0xdd, 0x15, 0xa7, 0x89, 0xbb, 0xdb, 0x74, 0x95, 0x87, - 0x58, 0xda, 0x03, 0xc7, 0x65, 0x10, 0x62, 0xb9, 0xed, 0x65, 0xa4, 0x91, 0xf6, 0xba, 0x12, 0x17, - 0xc4, 0x95, 0xeb, 0x02, 0x97, 0xe1, 0x86, 0x10, 0x32, 0x68, 0xe6, 0x82, 0x38, 0x21, 0x1f, 0x10, - 0x37, 0x50, 0xfd, 0xf4, 0x4f, 0xda, 0xf1, 0xcc, 0x78, 0xb4, 0x87, 0x91, 0xd8, 0x4b, 0xe2, 0x7a, - 0xf5, 0xde, 0xf7, 0xea, 0xfd, 0xd6, 0xab, 0x86, 0x57, 0x2d, 0x9f, 0xba, 0x3e, 0xdd, 0xa2, 0x0c, - 0x9f, 0x39, 0x5e, 0x6f, 0xeb, 0xee, 0x8d, 0x2e, 0x61, 0xf8, 0x46, 0xb8, 0x6e, 0x0c, 0x02, 0x9f, - 0xf9, 0xe8, 0x9a, 0xe4, 0x6a, 0x84, 0x54, 0xc5, 0x55, 0x5d, 0xef, 0xf9, 0x3d, 0x5f, 0xb0, 0x6c, - 0xf1, 0x5f, 0x92, 0xbb, 0xba, 0xd1, 0xf3, 0xfd, 0x5e, 0x9f, 0x6c, 0x89, 0x55, 0x77, 0x78, 0xb2, - 0x85, 0xbd, 0x91, 0xda, 0xaa, 0xa5, 0xb7, 0xec, 0x61, 0x80, 0x99, 0xe3, 0x7b, 0x6a, 0x5f, 0x4f, - 0xef, 0x33, 0xc7, 0x25, 0x94, 0x61, 0x77, 0x10, 0x62, 0xcb, 0x93, 0x74, 0xa4, 0x52, 0x75, 0x2c, - 0x85, 0xad, 0x4c, 0xe9, 0x62, 0x4a, 0x22, 0x3b, 0x2c, 0xdf, 0x09, 0xb1, 0xaf, 0x33, 0xe2, 0xd9, - 0x24, 0x70, 0x1d, 0x8f, 0x6d, 0xb1, 0xd1, 0x80, 0x50, 0xf9, 0x57, 0xee, 0x1a, 0x3f, 0xd3, 0x60, - 0x65, 0xdf, 0xa1, 0xcc, 0x0f, 0x1c, 0x0b, 0xf7, 0xdb, 0xde, 0x89, 0x8f, 0xde, 0x82, 0xfc, 0x29, - 0xc1, 0x36, 0x09, 0x2a, 0x5a, 0x5d, 0xdb, 0x2c, 0x6d, 0x57, 0x1a, 0x31, 0x42, 0x43, 0xca, 0xee, - 0x8b, 0xfd, 0x66, 0xee, 0x93, 0xb1, 0x9e, 0x31, 0x15, 0x37, 0xfa, 0x06, 0xe4, 0xef, 0xe2, 0x3e, - 0x25, 0xac, 0x92, 0xad, 0x2f, 0x6c, 0x96, 0xb6, 0x5f, 0x69, 0x5c, 0xee, 0xbe, 0xc6, 0x31, 0xee, - 0x3b, 0x36, 0x66, 0x7e, 0x04, 0x20, 0xc5, 0x8c, 0x5f, 0x67, 0xa1, 0xbc, 0xeb, 0xbb, 0xae, 0x43, - 0xa9, 0xe3, 0x7b, 0x26, 0x66, 0x84, 0xa2, 0x26, 0xe4, 0x02, 0xcc, 0x88, 0x38, 0x4a, 0xb1, 0xd9, - 0xe0, 0xfc, 0x7f, 0x19, 0xeb, 0xaf, 0xf5, 0x1c, 0x76, 0x3a, 0xec, 0x36, 0x2c, 0xdf, 0x55, 0xce, - 0x50, 0xff, 0xde, 0xa0, 0xf6, 0x99, 0xb2, 0xaf, 0x45, 0x2c, 0x53, 0xc8, 0xa2, 0x77, 0xa1, 0xe0, - 0xe2, 0xf3, 0x8e, 0xc0, 0xc9, 0x0a, 0x9c, 0x9b, 0xf3, 0xe1, 0x4c, 0xc6, 0x7a, 0x79, 0x84, 0xdd, - 0xfe, 0x8e, 0x11, 0xe2, 0x18, 0xe6, 0xa2, 0x8b, 0xcf, 0xf9, 0x11, 0xd1, 0x00, 0xca, 0x9c, 0x6a, - 0x9d, 0x62, 0xaf, 0x47, 0xa4, 0x92, 0x05, 0xa1, 0x64, 0x7f, 0x6e, 0x25, 0xd7, 0x62, 0x25, 0x09, - 0x38, 0xc3, 0x5c, 0x76, 0xf1, 0xf9, 0xae, 0x20, 0x70, 0x8d, 0x3b, 0x85, 0x0f, 0x1f, 0xe8, 0x99, - 0x7f, 0x3c, 0xd0, 0x35, 0xe3, 0x4f, 0x1a, 0x40, 0xec, 0x31, 0xf4, 0x2e, 0xac, 0x5a, 0xd1, 0x4a, - 0xc8, 0x52, 0x15, 0xc3, 0x2f, 0xce, 0x8a, 0x45, 0xca, 0xdf, 0xcd, 0x02, 0x3f, 0xf4, 0xc3, 0xb1, - 0xae, 0x99, 0x65, 0x2b, 0x15, 0x8a, 0x1f, 0x40, 0x69, 0x38, 0xb0, 0x31, 0x23, 0x1d, 0x9e, 0x9d, - 0xc2, 0x93, 0xa5, 0xed, 0x6a, 0x43, 0xa6, 0x6e, 0x23, 0x4c, 0xdd, 0xc6, 0x51, 0x98, 0xba, 0xcd, - 0x1a, 0xc7, 0x9a, 0x8c, 0x75, 0x24, 0xcd, 0x4a, 0x08, 0x1b, 0x1f, 0xfc, 0x4d, 0xd7, 0x4c, 0x90, - 0x14, 0x2e, 0x90, 0xb0, 0xe9, 0xf7, 0x1a, 0x94, 0x5a, 0x84, 0x5a, 0x81, 0x33, 0xe0, 0x15, 0x82, - 0x2a, 0xb0, 0xe8, 0xfa, 0x9e, 0x73, 0xa6, 0xf2, 0xb1, 0x68, 0x86, 0x4b, 0x54, 0x85, 0x82, 0x63, - 0x13, 0x8f, 0x39, 0x6c, 0x24, 0xe3, 0x6a, 0x46, 0x6b, 0x2e, 0xf5, 0x13, 0xd2, 0xa5, 0x4e, 0x18, - 0x0d, 0x33, 0x5c, 0xa2, 0x5b, 0xb0, 0x4a, 0x89, 0x35, 0x0c, 0x1c, 0x36, 0xea, 0x58, 0xbe, 0xc7, - 0xb0, 0xc5, 0x2a, 0x39, 0x11, 0xb0, 0xcf, 0x4d, 0xc6, 0xfa, 0xcb, 0xf2, 0xac, 0x69, 0x0e, 0xc3, - 0x2c, 0x87, 0xa4, 0x5d, 0x49, 0xe1, 0x1a, 0x6c, 0xc2, 0xb0, 0xd3, 0xa7, 0x95, 0x97, 0xa4, 0x06, - 0xb5, 0x4c, 0xd8, 0xf2, 0xf1, 0x22, 0x14, 0xa3, 0x6c, 0xe7, 0x9a, 0xfd, 0x01, 0x09, 0xf8, 0xef, - 0x0e, 0xb6, 0xed, 0x80, 0x50, 0xaa, 0xf2, 0x3a, 0xa1, 0x39, 0xcd, 0x61, 0x98, 0xe5, 0x90, 0x74, - 0x53, 0x52, 0x10, 0xe3, 0x61, 0xf6, 0x28, 0xf1, 0xe8, 0x90, 0x76, 0x06, 0xc3, 0xee, 0x19, 0x19, - 0xa9, 0x68, 0xac, 0x4f, 0x45, 0xe3, 0xa6, 0x37, 0x6a, 0xbe, 0x19, 0xa3, 0xa7, 0xe5, 0x8c, 0x3f, - 0xfc, 0xe6, 0x8d, 0x75, 0x95, 0x1a, 0x56, 0x30, 0x1a, 0x30, 0xbf, 0x71, 0x30, 0xec, 0xbe, 0x4d, - 0x46, 0x3c, 0xfc, 0x8a, 0xf5, 0x40, 0x70, 0xa2, 0x6b, 0x90, 0xff, 0x11, 0x76, 0xfa, 0xc4, 0x16, - 0x0e, 0x2d, 0x98, 0x6a, 0x85, 0x76, 0x20, 0x4f, 0x19, 0x66, 0x43, 0x2a, 0xbc, 0xb8, 0xb2, 0x6d, - 0xcc, 0x4a, 0xb5, 0xa6, 0xef, 0xd9, 0x87, 0x82, 0xd3, 0x54, 0x12, 0xe8, 0x16, 0xe4, 0x99, 0x7f, - 0x46, 0x3c, 0xe5, 0xc2, 0xb9, 0xea, 0xbb, 0xed, 0x31, 0x53, 0x49, 0x73, 0x8f, 0xd8, 0xa4, 0x4f, - 0x7a, 0xc2, 0x71, 0xf4, 0x14, 0x07, 0x84, 0x56, 0xf2, 0x02, 0xb1, 0x3d, 0x77, 0x11, 0x2a, 0x4f, - 0xa5, 0xf1, 0x0c, 0xb3, 0x1c, 0x91, 0x0e, 0x05, 0x05, 0xbd, 0x0d, 0x25, 0x3b, 0x4e, 0xd4, 0xca, - 0xa2, 0x08, 0xc1, 0x17, 0x66, 0x99, 0x9f, 0xc8, 0x69, 0xd5, 0xf7, 0x92, 0xd2, 0x3c, 0x39, 0x86, - 0x5e, 0xd7, 0xf7, 0x6c, 0xc7, 0xeb, 0x75, 0x4e, 0x89, 0xd3, 0x3b, 0x65, 0x95, 0x42, 0x5d, 0xdb, - 0x5c, 0x48, 0x26, 0x47, 0x9a, 0xc3, 0x30, 0xcb, 0x11, 0x69, 0x5f, 0x50, 0x90, 0x0d, 0x2b, 0x31, - 0x97, 0x28, 0xd4, 0xe2, 0x53, 0x0b, 0xf5, 0x15, 0x55, 0xa8, 0x57, 0xd3, 0x5a, 0xe2, 0x5a, 0x5d, - 0x8e, 0x88, 0x5c, 0x0c, 0xed, 0x03, 0xc4, 0xed, 0xa1, 0x02, 0x42, 0x83, 0xf1, 0xf4, 0x1e, 0xa3, - 0x0c, 0x4f, 0xc8, 0xa2, 0xf7, 0xe0, 0x8a, 0xeb, 0x78, 0x1d, 0x4a, 0xfa, 0x27, 0x1d, 0xe5, 0x60, - 0x0e, 0x59, 0x12, 0xd1, 0x7b, 0x67, 0xbe, 0x7c, 0x98, 0x8c, 0xf5, 0xaa, 0x6a, 0xa1, 0xd3, 0x90, - 0x86, 0xb9, 0xe6, 0x3a, 0xde, 0x21, 0xe9, 0x9f, 0xb4, 0x22, 0xda, 0xce, 0xd2, 0xfb, 0x0f, 0xf4, - 0x8c, 0x2a, 0xd7, 0x8c, 0xf1, 0x16, 0x2c, 0x1d, 0xe3, 0xbe, 0x2a, 0x33, 0x42, 0xd1, 0x75, 0x28, - 0xe2, 0x70, 0x51, 0xd1, 0xea, 0x0b, 0x9b, 0x45, 0x33, 0x26, 0xc8, 0x32, 0xff, 0xe9, 0x5f, 0xeb, - 0x9a, 0xf1, 0xb1, 0x06, 0xf9, 0xd6, 0xf1, 0x01, 0x76, 0x02, 0xd4, 0x86, 0xb5, 0x38, 0x73, 0x2e, - 0x16, 0xf9, 0xf5, 0xc9, 0x58, 0xaf, 0xa4, 0x93, 0x2b, 0xaa, 0xf2, 0x38, 0x81, 0xc3, 0x32, 0x6f, - 0xc3, 0xda, 0xdd, 0xb0, 0x77, 0x44, 0x50, 0xd9, 0x34, 0xd4, 0x14, 0x8b, 0x61, 0xae, 0x46, 0x34, - 0x05, 0x95, 0x32, 0x73, 0x0f, 0x16, 0xe5, 0x69, 0x29, 0xda, 0x81, 0x97, 0x06, 0xfc, 0x87, 0xb0, - 0xae, 0xb4, 0x5d, 0x9b, 0x99, 0xbc, 0x82, 0x5f, 0x85, 0x4f, 0x8a, 0x18, 0xbf, 0xca, 0x02, 0xb4, - 0x8e, 0x8f, 0x8f, 0x02, 0x67, 0xd0, 0x27, 0xec, 0xd3, 0xb4, 0xfc, 0x08, 0xae, 0xc6, 0x66, 0xd1, - 0xc0, 0x4a, 0x59, 0x5f, 0x9f, 0x8c, 0xf5, 0xeb, 0x69, 0xeb, 0x13, 0x6c, 0x86, 0x79, 0x25, 0xa2, - 0x1f, 0x06, 0xd6, 0xa5, 0xa8, 0x36, 0x65, 0x11, 0xea, 0xc2, 0x6c, 0xd4, 0x04, 0x5b, 0x12, 0xb5, - 0x45, 0xd9, 0xe5, 0xae, 0x3d, 0x84, 0x52, 0xec, 0x12, 0x8a, 0x5a, 0x50, 0x60, 0xea, 0xb7, 0xf2, - 0xb0, 0x31, 0xdb, 0xc3, 0xa1, 0x98, 0xf2, 0x72, 0x24, 0x69, 0xfc, 0x47, 0x03, 0x88, 0x73, 0xf6, - 0xc5, 0x4c, 0x31, 0xde, 0xca, 0x55, 0xe3, 0x5d, 0x78, 0xae, 0x51, 0x4d, 0x49, 0xa7, 0xfc, 0xf9, - 0xf3, 0x2c, 0x5c, 0xb9, 0x13, 0x76, 0x9e, 0x17, 0xde, 0x07, 0x07, 0xb0, 0x48, 0x3c, 0x16, 0x38, - 0xc2, 0x09, 0x3c, 0xda, 0x5f, 0x99, 0x15, 0xed, 0x4b, 0x6c, 0xda, 0xf3, 0x58, 0x30, 0x52, 0xb1, - 0x0f, 0x61, 0x52, 0xde, 0xf8, 0xe5, 0x02, 0x54, 0x66, 0x49, 0xa2, 0x5d, 0x28, 0x5b, 0x01, 0x11, - 0x84, 0xf0, 0xfe, 0xd0, 0xc4, 0xfd, 0x51, 0x8d, 0x27, 0xcb, 0x14, 0x83, 0x61, 0xae, 0x84, 0x14, - 0x75, 0x7b, 0xf4, 0x80, 0x8f, 0x7d, 0x3c, 0xed, 0x38, 0xd7, 0x33, 0xce, 0x79, 0x86, 0xba, 0x3e, - 0x42, 0x25, 0x17, 0x01, 0xe4, 0xfd, 0xb1, 0x12, 0x53, 0xc5, 0x05, 0xf2, 0x63, 0x28, 0x3b, 0x9e, - 0xc3, 0x1c, 0xdc, 0xef, 0x74, 0x71, 0x1f, 0x7b, 0xd6, 0xf3, 0x4c, 0xcd, 0xb2, 0xe5, 0x2b, 0xb5, - 0x29, 0x38, 0xc3, 0x5c, 0x51, 0x94, 0xa6, 0x24, 0xa0, 0x7d, 0x58, 0x0c, 0x55, 0xe5, 0x9e, 0x6b, - 0xda, 0x08, 0xc5, 0x13, 0x03, 0xde, 0x2f, 0x16, 0x60, 0xcd, 0x24, 0xf6, 0x67, 0xa1, 0x98, 0x2f, - 0x14, 0xdf, 0x06, 0x90, 0xe5, 0xce, 0x1b, 0xec, 0x73, 0x44, 0x83, 0x37, 0x8c, 0xa2, 0x44, 0x68, - 0x51, 0x96, 0x88, 0xc7, 0x38, 0x0b, 0x4b, 0xc9, 0x78, 0xfc, 0x9f, 0xde, 0x4a, 0xa8, 0x1d, 0x77, - 0xa2, 0x9c, 0xe8, 0x44, 0x5f, 0x9a, 0xd5, 0x89, 0xa6, 0xb2, 0xf7, 0xc9, 0x2d, 0xe8, 0xdf, 0x59, - 0xc8, 0x1f, 0xe0, 0x00, 0xbb, 0x14, 0x59, 0x53, 0x93, 0xa6, 0x7c, 0x6b, 0x6e, 0x4c, 0xe5, 0x67, - 0x4b, 0x7d, 0xed, 0x78, 0xca, 0xa0, 0xf9, 0xe1, 0x25, 0x83, 0xe6, 0x37, 0x61, 0x85, 0x3f, 0x87, - 0x23, 0x1b, 0xa5, 0xb7, 0x97, 0x9b, 0x1b, 0x31, 0xca, 0xc5, 0x7d, 0xf9, 0x5a, 0x8e, 0x1e, 0x5d, - 0x14, 0x7d, 0x0d, 0x4a, 0x9c, 0x23, 0x6e, 0xcc, 0x5c, 0xfc, 0x5a, 0xfc, 0x2c, 0x4d, 0x6c, 0x1a, - 0x26, 0xb8, 0xf8, 0x7c, 0x4f, 0x2e, 0xd0, 0x3b, 0x80, 0x4e, 0xa3, 0x2f, 0x23, 0x9d, 0xd8, 0x9d, - 0x5c, 0xfe, 0xf3, 0x93, 0xb1, 0xbe, 0x21, 0xe5, 0xa7, 0x79, 0x0c, 0x73, 0x2d, 0x26, 0x86, 0x68, - 0x5f, 0x05, 0xe0, 0x76, 0x75, 0x6c, 0xe2, 0xf9, 0xae, 0x7a, 0xee, 0x5c, 0x9d, 0x8c, 0xf5, 0x35, - 0x89, 0x12, 0xef, 0x19, 0x66, 0x91, 0x2f, 0x5a, 0xfc, 0x77, 0x22, 0xb3, 0x3f, 0xd2, 0x00, 0xc5, - 0x2d, 0xdf, 0x24, 0x74, 0xc0, 0xdf, 0x67, 0x7c, 0x10, 0x4f, 0x4c, 0xcd, 0xda, 0x93, 0x07, 0xf1, - 0x58, 0x3e, 0x1c, 0xc4, 0x13, 0x95, 0xf2, 0xf5, 0xb8, 0x3d, 0x66, 0x55, 0x1c, 0x15, 0x4c, 0x17, - 0x53, 0x92, 0x18, 0xe6, 0x9d, 0x50, 0x7a, 0xaa, 0x1f, 0x66, 0x8c, 0x3f, 0x6a, 0xb0, 0x31, 0x95, - 0x51, 0xd1, 0x61, 0x7f, 0x08, 0x28, 0x48, 0x6c, 0x0a, 0x7f, 0x8d, 0xd4, 0xa1, 0xe7, 0x4e, 0xd0, - 0xb5, 0x60, 0xaa, 0xef, 0x7e, 0x7a, 0x1d, 0x3e, 0x27, 0x7c, 0xfe, 0x3b, 0x0d, 0xd6, 0x93, 0xea, - 0x23, 0x43, 0x6e, 0xc3, 0x52, 0x52, 0xbb, 0x32, 0xe1, 0xd5, 0x67, 0x31, 0x41, 0x9d, 0xfe, 0x82, - 0x3c, 0xfa, 0x6e, 0x5c, 0xae, 0xf2, 0xdb, 0xd9, 0x8d, 0x67, 0xf6, 0x46, 0x78, 0xa6, 0x74, 0xd9, - 0xe6, 0x44, 0x3c, 0xfe, 0xab, 0x41, 0xee, 0xc0, 0xf7, 0xfb, 0xc8, 0x87, 0x35, 0xcf, 0x67, 0x1d, - 0x9e, 0x59, 0xc4, 0xee, 0xa8, 0x47, 0xb7, 0xec, 0x83, 0xbb, 0xf3, 0x39, 0xe9, 0x9f, 0x63, 0x7d, - 0x1a, 0xca, 0x2c, 0x7b, 0x3e, 0x6b, 0x0a, 0xca, 0x91, 0x7c, 0x92, 0xbf, 0x07, 0xcb, 0x17, 0x95, - 0xc9, 0x2e, 0xf9, 0xbd, 0xb9, 0x95, 0x5d, 0x84, 0x99, 0x8c, 0xf5, 0xf5, 0xb8, 0x62, 0x22, 0xb2, - 0x61, 0x2e, 0x75, 0x13, 0xda, 0x77, 0x0a, 0x3c, 0x7e, 0xff, 0x7a, 0xa0, 0x6b, 0x5f, 0xfe, 0xad, - 0x06, 0x10, 0x7f, 0x79, 0x40, 0xaf, 0xc3, 0xcb, 0xcd, 0xef, 0xdc, 0x6e, 0x75, 0x0e, 0x8f, 0x6e, - 0x1e, 0xdd, 0x39, 0xec, 0xdc, 0xb9, 0x7d, 0x78, 0xb0, 0xb7, 0xdb, 0xbe, 0xd5, 0xde, 0x6b, 0xad, - 0x66, 0xaa, 0xe5, 0x7b, 0xf7, 0xeb, 0xa5, 0x3b, 0x1e, 0x1d, 0x10, 0xcb, 0x39, 0x71, 0x88, 0x8d, - 0x5e, 0x83, 0xf5, 0x8b, 0xdc, 0x7c, 0xb5, 0xd7, 0x5a, 0xd5, 0xaa, 0x4b, 0xf7, 0xee, 0xd7, 0x0b, - 0x72, 0x16, 0x23, 0x36, 0xda, 0x84, 0xab, 0xd3, 0x7c, 0xed, 0xdb, 0xdf, 0x5a, 0xcd, 0x56, 0x97, - 0xef, 0xdd, 0xaf, 0x17, 0xa3, 0xa1, 0x0d, 0x19, 0x80, 0x92, 0x9c, 0x0a, 0x6f, 0xa1, 0x0a, 0xf7, - 0xee, 0xd7, 0xf3, 0xd2, 0x81, 0xd5, 0xdc, 0xfb, 0x1f, 0xd5, 0x32, 0xcd, 0x5b, 0x9f, 0x3c, 0xaa, - 0x69, 0x0f, 0x1f, 0xd5, 0xb4, 0xbf, 0x3f, 0xaa, 0x69, 0x1f, 0x3c, 0xae, 0x65, 0x1e, 0x3e, 0xae, - 0x65, 0xfe, 0xfc, 0xb8, 0x96, 0xf9, 0xfe, 0xeb, 0x4f, 0xf4, 0xdd, 0x79, 0xf4, 0x51, 0x5b, 0x78, - 0xb1, 0x9b, 0x17, 0x6d, 0xf8, 0xcd, 0xff, 0x05, 0x00, 0x00, 0xff, 0xff, 0xc2, 0x48, 0x4c, 0x86, - 0xf3, 0x16, 0x00, 0x00, + // 1850 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x59, 0x4d, 0x6c, 0x1b, 0xc7, + 0x15, 0xe6, 0x8a, 0x0a, 0x45, 0x3e, 0x4a, 0xa2, 0x34, 0x96, 0x1d, 0x8a, 0x4d, 0xb9, 0xcc, 0x36, + 0x48, 0xd5, 0x22, 0xa1, 0x6a, 0x25, 0x48, 0x5b, 0xa1, 0x40, 0x6b, 0x8a, 0x72, 0x2d, 0xa4, 0x70, + 0x98, 0xa5, 0xac, 0x02, 0x49, 0x11, 0x62, 0xb8, 0x3b, 0xa2, 0x36, 0xe2, 0xee, 0x12, 0x3b, 0x43, + 0x57, 0x3c, 0xf4, 0x07, 0x3d, 0xa5, 0x3a, 0xe5, 0x98, 0x43, 0x0d, 0x18, 0x08, 0x50, 0xa0, 0xe8, + 0xb5, 0xc8, 0xa5, 0x87, 0x5e, 0xd3, 0x9e, 0xdc, 0x9e, 0x9a, 0x22, 0x60, 0x0b, 0xfb, 0x52, 0xf4, + 0x14, 0xf0, 0xd0, 0x73, 0x31, 0x3f, 0xfb, 0xa3, 0xa5, 0x68, 0x5b, 0x49, 0x9a, 0x43, 0xe0, 0x8b, + 0xb4, 0x33, 0xf3, 0xbd, 0xf7, 0xe6, 0xfd, 0xcf, 0x0c, 0xe1, 0x39, 0xcb, 0xa7, 0xae, 0x4f, 0x37, + 0x29, 0xc3, 0xc7, 0x8e, 0xd7, 0xdb, 0xbc, 0x7d, 0xb5, 0x4b, 0x18, 0xbe, 0x1a, 0x8e, 0xeb, 0x83, + 0xc0, 0x67, 0x3e, 0xba, 0x22, 0x51, 0xf5, 0x70, 0x56, 0xa1, 0x2a, 0x6b, 0x3d, 0xbf, 0xe7, 0x0b, + 0xc8, 0x26, 0xff, 0x92, 0xe8, 0xca, 0x7a, 0xcf, 0xf7, 0x7b, 0x7d, 0xb2, 0x29, 0x46, 0xdd, 0xe1, + 0xe1, 0x26, 0xf6, 0x46, 0x6a, 0xa9, 0x9a, 0x5e, 0xb2, 0x87, 0x01, 0x66, 0x8e, 0xef, 0xa9, 0x75, + 0x3d, 0xbd, 0xce, 0x1c, 0x97, 0x50, 0x86, 0xdd, 0x41, 0xc8, 0x5b, 0xee, 0xa4, 0x23, 0x85, 0xaa, + 0x6d, 0x29, 0xde, 0x4a, 0x95, 0x2e, 0xa6, 0x24, 0xd2, 0xc3, 0xf2, 0x9d, 0x90, 0xf7, 0x33, 0x8c, + 0x78, 0x36, 0x09, 0x5c, 0xc7, 0x63, 0x9b, 0x6c, 0x34, 0x20, 0x54, 0xfe, 0x95, 0xab, 0xc6, 0xaf, + 0x35, 0x58, 0xbe, 0xe1, 0x50, 0xe6, 0x07, 0x8e, 0x85, 0xfb, 0x7b, 0xde, 0xa1, 0x8f, 0x5e, 0x81, + 0xdc, 0x11, 0xc1, 0x36, 0x09, 0xca, 0x5a, 0x4d, 0xdb, 0x28, 0x6e, 0x95, 0xeb, 0x31, 0x87, 0xba, + 0xa4, 0xbd, 0x21, 0xd6, 0x1b, 0xf3, 0x1f, 0x8e, 0xf5, 0x8c, 0xa9, 0xd0, 0xe8, 0xfb, 0x90, 0xbb, + 0x8d, 0xfb, 0x94, 0xb0, 0xf2, 0x5c, 0x2d, 0xbb, 0x51, 0xdc, 0x7a, 0xb6, 0x7e, 0xbe, 0xf9, 0xea, + 0x07, 0xb8, 0xef, 0xd8, 0x98, 0xf9, 0x11, 0x03, 0x49, 0x66, 0x7c, 0x34, 0x07, 0xa5, 0x1d, 0xdf, + 0x75, 0x1d, 0x4a, 0x1d, 0xdf, 0x33, 0x31, 0x23, 0x14, 0xb5, 0x60, 0x3e, 0xc0, 0x8c, 0x88, 0xad, + 0x14, 0x1a, 0xdf, 0xe3, 0xf8, 0x7f, 0x8c, 0xf5, 0xe7, 0x7b, 0x0e, 0x3b, 0x1a, 0x76, 0xeb, 0x96, + 0xef, 0x2a, 0x63, 0xa8, 0x7f, 0x2f, 0x52, 0xfb, 0x58, 0xe9, 0xd7, 0x24, 0xd6, 0xdf, 0xfe, 0xf0, + 0x22, 0xa8, 0x3d, 0x34, 0x89, 0x65, 0x0a, 0x4e, 0xe8, 0x6d, 0xc8, 0xbb, 0xf8, 0xa4, 0x23, 0xb8, + 0xce, 0x09, 0xae, 0xaf, 0x5d, 0x8c, 0xeb, 0x64, 0xac, 0x97, 0x46, 0xd8, 0xed, 0x6f, 0x1b, 0x21, + 0x1f, 0x23, 0x25, 0x68, 0xc1, 0xc5, 0x27, 0x7c, 0xfb, 0xe8, 0xe7, 0x50, 0xe2, 0x18, 0xeb, 0x08, + 0x7b, 0x3d, 0x22, 0x45, 0x66, 0x85, 0xc8, 0x83, 0x0b, 0x8b, 0xbc, 0x12, 0x8b, 0x4c, 0xb0, 0x4b, + 0x4b, 0x5e, 0x72, 0xf1, 0xc9, 0x8e, 0x58, 0xe6, 0xf2, 0xb7, 0xf3, 0xef, 0xdd, 0xd5, 0x33, 0xff, + 0xbe, 0xab, 0x6b, 0xc6, 0x5f, 0x35, 0x80, 0xd8, 0xb6, 0xe8, 0x27, 0xb0, 0x62, 0x45, 0x23, 0xc1, + 0x89, 0x2a, 0x6f, 0x7f, 0x7d, 0x96, 0xd7, 0x52, 0x9e, 0x69, 0xe4, 0xb9, 0x0a, 0xf7, 0xc6, 0xba, + 0x66, 0x96, 0xac, 0x94, 0xd3, 0xde, 0x84, 0xe2, 0x70, 0x60, 0x63, 0x46, 0x3a, 0x3c, 0x8e, 0x85, + 0x95, 0x8b, 0x5b, 0x95, 0xba, 0x0c, 0xf2, 0x7a, 0x18, 0xe4, 0xf5, 0xfd, 0x30, 0xc8, 0x1b, 0x55, + 0xce, 0x6b, 0x32, 0xd6, 0x91, 0x54, 0x32, 0x41, 0x6c, 0xbc, 0xfb, 0x4f, 0x5d, 0x33, 0x41, 0xce, + 0x70, 0x82, 0x84, 0x4e, 0x7f, 0xd6, 0xa0, 0xd8, 0x24, 0xd4, 0x0a, 0x9c, 0x01, 0xcf, 0x25, 0x54, + 0x86, 0x05, 0xd7, 0xf7, 0x9c, 0x63, 0x15, 0xb9, 0x05, 0x33, 0x1c, 0xa2, 0x0a, 0xe4, 0x1d, 0x9b, + 0x78, 0xcc, 0x61, 0x23, 0xe9, 0x73, 0x33, 0x1a, 0x73, 0xaa, 0x9f, 0x92, 0x2e, 0x75, 0x42, 0xdf, + 0x98, 0xe1, 0x10, 0x5d, 0x87, 0x15, 0x4a, 0xac, 0x61, 0xe0, 0xb0, 0x51, 0xc7, 0xf2, 0x3d, 0x86, + 0x2d, 0x56, 0x9e, 0x17, 0xee, 0xfb, 0xca, 0x64, 0xac, 0x3f, 0x2d, 0xf7, 0x9a, 0x46, 0x18, 0x66, + 0x29, 0x9c, 0xda, 0x91, 0x33, 0x5c, 0x82, 0x4d, 0x18, 0x76, 0xfa, 0xb4, 0xfc, 0x94, 0x94, 0xa0, + 0x86, 0x09, 0x5d, 0x3e, 0x59, 0x80, 0x42, 0x94, 0x17, 0xe8, 0x2d, 0x58, 0xf1, 0x07, 0x24, 0xe0, + 0xdf, 0x1d, 0x6c, 0xdb, 0x01, 0xa1, 0x54, 0x65, 0xc0, 0x4b, 0xb1, 0xe4, 0x34, 0x82, 0xc7, 0xc2, + 0x9a, 0x72, 0xde, 0x35, 0x39, 0xd5, 0x66, 0x81, 0xe3, 0xf5, 0xcc, 0x52, 0x08, 0x55, 0xd3, 0x88, + 0x71, 0xf7, 0x7b, 0x94, 0x78, 0x74, 0x48, 0x3b, 0x83, 0x61, 0xf7, 0x98, 0x8c, 0x94, 0x97, 0xd6, + 0xa6, 0xbc, 0x74, 0xcd, 0x1b, 0x25, 0xa5, 0xa6, 0xe9, 0x8c, 0xbf, 0xc4, 0x52, 0xad, 0x60, 0x34, + 0x60, 0x7e, 0xbd, 0x35, 0xec, 0xbe, 0x4a, 0x46, 0x3c, 0x2c, 0x14, 0xb4, 0x25, 0x90, 0xe8, 0x0a, + 0xe4, 0xde, 0xc6, 0x4e, 0x9f, 0xd8, 0xc2, 0xd0, 0x79, 0x53, 0x8d, 0xd0, 0x36, 0xe4, 0x28, 0xc3, + 0x6c, 0x48, 0x85, 0x75, 0x97, 0xb7, 0x8c, 0x59, 0x21, 0xd8, 0xf0, 0x3d, 0xbb, 0x2d, 0x90, 0xa6, + 0xa2, 0x40, 0xfb, 0x90, 0x63, 0xfe, 0x31, 0xf1, 0x94, 0x69, 0x2f, 0x54, 0x21, 0xf6, 0x3c, 0x96, + 0x48, 0x9f, 0x3d, 0x8f, 0x99, 0x8a, 0x17, 0xfa, 0x95, 0x06, 0x2b, 0x36, 0xe9, 0x93, 0x9e, 0xb0, + 0x2f, 0x3d, 0xc2, 0x01, 0xa1, 0xe5, 0x9c, 0x10, 0xf0, 0xe3, 0x0b, 0x67, 0xae, 0x32, 0x5c, 0x9a, + 0x5f, 0x3a, 0x75, 0x4b, 0x11, 0xa0, 0x2d, 0xd6, 0xd1, 0xab, 0x50, 0xb4, 0xe3, 0xe8, 0x2e, 0x2f, + 0x08, 0xff, 0x7c, 0x6d, 0x96, 0x6d, 0x12, 0x89, 0xa0, 0xca, 0x6a, 0x92, 0x9a, 0xc7, 0xf2, 0xd0, + 0xeb, 0xfa, 0x9e, 0xed, 0x78, 0xbd, 0xce, 0x11, 0x71, 0x7a, 0x47, 0xac, 0x9c, 0xaf, 0x69, 0x1b, + 0xd9, 0x64, 0x2c, 0xa7, 0x11, 0x86, 0x59, 0x8a, 0xa6, 0x6e, 0x88, 0x19, 0x64, 0xc3, 0x72, 0x8c, + 0x12, 0xd9, 0x5d, 0x78, 0x64, 0x76, 0x3f, 0xab, 0xb2, 0xfb, 0x72, 0x5a, 0x4a, 0x9c, 0xe0, 0x4b, + 0xd1, 0x24, 0x27, 0x43, 0x37, 0x00, 0xe2, 0x9a, 0x52, 0x06, 0x21, 0xc1, 0x78, 0x74, 0x61, 0x52, + 0x8a, 0x27, 0x68, 0xd1, 0xa9, 0x06, 0x97, 0x5c, 0xc7, 0xeb, 0x50, 0xd2, 0x3f, 0xec, 0x28, 0x0b, + 0x73, 0x9e, 0x45, 0xe1, 0xcc, 0x37, 0x2e, 0x16, 0x2d, 0x93, 0xb1, 0x5e, 0x51, 0x65, 0x78, 0x9a, + 0xa5, 0x91, 0x8a, 0xa5, 0x55, 0xd7, 0xf1, 0xda, 0xa4, 0x7f, 0xd8, 0x8c, 0x10, 0xdb, 0x8b, 0xef, + 0xdc, 0xd5, 0x33, 0x2a, 0xe5, 0x33, 0x46, 0x0b, 0x16, 0x0f, 0x70, 0x5f, 0xa5, 0x24, 0xa1, 0xe8, + 0x15, 0x28, 0xe0, 0x70, 0x50, 0xd6, 0x6a, 0xd9, 0x8d, 0x42, 0xa3, 0x3c, 0x33, 0xa5, 0x63, 0xa8, + 0x2c, 0x22, 0xbf, 0xfc, 0xb8, 0xa6, 0x19, 0x1f, 0x6b, 0x90, 0x6b, 0x1e, 0xb4, 0xb0, 0x13, 0x20, + 0x0c, 0xab, 0x71, 0xc0, 0x9d, 0x2d, 0x21, 0x2f, 0x4f, 0xc6, 0x7a, 0x39, 0x1d, 0x93, 0x8f, 0xac, + 0x21, 0x71, 0x3e, 0x84, 0x45, 0x04, 0xc3, 0xea, 0xed, 0xb0, 0x62, 0x45, 0x22, 0xe6, 0xd2, 0x22, + 0xa6, 0x20, 0x0f, 0x11, 0x11, 0x61, 0xd5, 0x7c, 0xca, 0x60, 0xbb, 0xb0, 0x20, 0xb5, 0xa3, 0x68, + 0x1b, 0x9e, 0x1a, 0xf0, 0x0f, 0x61, 0xa7, 0xe2, 0x56, 0x75, 0x66, 0x56, 0x08, 0xbc, 0x8a, 0x0b, + 0x49, 0xc2, 0x8f, 0x19, 0xd0, 0x3c, 0x38, 0xd8, 0x0f, 0x9c, 0x41, 0x9f, 0xb0, 0x2f, 0xc2, 0x52, + 0x7d, 0xb8, 0x1c, 0x9b, 0x81, 0x06, 0x56, 0xca, 0x5a, 0xdf, 0x99, 0x8c, 0xf5, 0x67, 0xd2, 0xd6, + 0x4a, 0xc0, 0x66, 0x8b, 0xba, 0x14, 0xe1, 0xdb, 0x81, 0x75, 0xae, 0x34, 0x9b, 0xb2, 0x48, 0x5a, + 0x76, 0xb6, 0xb4, 0x04, 0xec, 0x71, 0xa4, 0x35, 0x29, 0x3b, 0xdf, 0x45, 0x6d, 0x28, 0xc6, 0xa6, + 0xa5, 0xa8, 0x09, 0x79, 0xa6, 0xbe, 0x95, 0xa7, 0x8c, 0xd9, 0x9e, 0x0a, 0xc9, 0x94, 0xb7, 0x22, + 0x4a, 0xe3, 0x03, 0xee, 0xb0, 0x28, 0x8b, 0xbe, 0x1c, 0xa1, 0xcd, 0x1b, 0x97, 0xea, 0x2b, 0xd9, + 0xcf, 0xe1, 0x68, 0xab, 0x78, 0xa5, 0xbc, 0xf1, 0xc7, 0x39, 0xb8, 0x74, 0x2b, 0x2c, 0xac, 0x5f, + 0x3a, 0x0b, 0xb6, 0x60, 0x81, 0x78, 0x2c, 0x70, 0x84, 0x09, 0x79, 0x6c, 0x7d, 0x6b, 0x56, 0x6c, + 0x9d, 0x63, 0x83, 0x5d, 0x8f, 0x05, 0x23, 0x15, 0x69, 0x21, 0x9b, 0x94, 0xf5, 0x7e, 0x9f, 0x85, + 0xf2, 0x2c, 0x4a, 0xb4, 0x03, 0x25, 0x2b, 0x20, 0x62, 0x22, 0x6c, 0xa7, 0x9a, 0x68, 0xa7, 0x95, + 0xf8, 0xac, 0x9e, 0x02, 0x18, 0xe6, 0x72, 0x38, 0xa3, 0x9a, 0x69, 0x0f, 0xf8, 0xd1, 0x99, 0x07, + 0x39, 0x47, 0x3d, 0xe6, 0x59, 0xd9, 0x50, 0xdd, 0x34, 0x14, 0x72, 0x96, 0x81, 0x6c, 0xa7, 0xcb, + 0xf1, 0xac, 0xe8, 0xa7, 0xbf, 0x80, 0x92, 0xe3, 0x39, 0xcc, 0xc1, 0xfd, 0x4e, 0x17, 0xf7, 0xb1, + 0x67, 0x7d, 0x9a, 0x7b, 0x88, 0x6c, 0x80, 0x4a, 0x6c, 0x8a, 0x5d, 0xba, 0xf9, 0x2d, 0xab, 0xf5, + 0x86, 0x5c, 0x46, 0x07, 0xb0, 0x10, 0x0a, 0x9e, 0xff, 0x1c, 0xce, 0x69, 0x21, 0xb3, 0xc4, 0x01, + 0xfa, 0x77, 0x59, 0x58, 0x35, 0x89, 0xfd, 0xc4, 0x4d, 0x9f, 0xc5, 0x4d, 0x6f, 0x02, 0xc8, 0x42, + 0xc2, 0x1b, 0xc2, 0xa7, 0xf0, 0xd4, 0x74, 0x61, 0x2a, 0x48, 0x7e, 0x4d, 0xca, 0x12, 0xbe, 0xfa, + 0x6d, 0x16, 0x16, 0x93, 0xbe, 0x7a, 0xd2, 0x83, 0x3f, 0x53, 0x0f, 0x46, 0x7b, 0x71, 0x25, 0x9c, + 0x17, 0x95, 0xf0, 0x1b, 0xb3, 0x2a, 0xe1, 0x54, 0x86, 0x3c, 0xbc, 0x04, 0xfe, 0x77, 0x0e, 0x72, + 0x2d, 0x1c, 0x60, 0x97, 0x22, 0x6b, 0xea, 0xe0, 0x2f, 0xdf, 0x0b, 0xd6, 0xa7, 0x72, 0xa0, 0xa9, + 0xde, 0xb6, 0x1e, 0x71, 0xee, 0x7f, 0xef, 0x9c, 0x73, 0xff, 0x0f, 0x60, 0xd9, 0xc5, 0x27, 0x9d, + 0x48, 0x47, 0xe9, 0x9d, 0xa5, 0xc6, 0x7a, 0xcc, 0xe5, 0xec, 0xba, 0x21, 0x5e, 0x3c, 0xa2, 0x8b, + 0x33, 0x45, 0xdf, 0x86, 0x22, 0x47, 0xc4, 0x8d, 0x81, 0x93, 0x5f, 0x89, 0x9f, 0x16, 0x12, 0x8b, + 0x86, 0x09, 0x2e, 0x3e, 0xd9, 0x95, 0x03, 0xf4, 0x23, 0x40, 0x47, 0xd1, 0x3b, 0x58, 0x27, 0x36, + 0x27, 0xa7, 0xff, 0xea, 0x64, 0xac, 0xaf, 0x4b, 0xfa, 0x69, 0x8c, 0x61, 0xae, 0xc6, 0x93, 0x21, + 0xb7, 0x97, 0x01, 0xb8, 0x5e, 0x1d, 0x9b, 0x78, 0xbe, 0xab, 0xae, 0xa6, 0x97, 0x27, 0x63, 0x7d, + 0x55, 0x72, 0x89, 0xd7, 0x0c, 0xb3, 0xc0, 0x07, 0x4d, 0xfe, 0x9d, 0xc8, 0x90, 0xf7, 0x35, 0x40, + 0x71, 0xcb, 0x31, 0x09, 0x1d, 0xf0, 0xbb, 0x34, 0xbf, 0x17, 0x25, 0xee, 0x30, 0xda, 0xc3, 0xef, + 0x45, 0x31, 0x7d, 0x78, 0x2f, 0x4a, 0x64, 0xdc, 0x77, 0xe3, 0x82, 0x3c, 0xa7, 0xfc, 0xa8, 0xd8, + 0x74, 0x31, 0x25, 0x89, 0xbb, 0x95, 0x13, 0x52, 0x4f, 0xd5, 0xdc, 0x8c, 0xf1, 0x91, 0x06, 0xeb, + 0x53, 0x11, 0x15, 0x6d, 0xf6, 0x2d, 0x40, 0x41, 0x62, 0x51, 0xd8, 0x6b, 0xa4, 0x36, 0x7d, 0xe1, + 0x00, 0x5d, 0x0d, 0xa6, 0x6a, 0xfb, 0xff, 0xab, 0xa7, 0xcc, 0x0b, 0x0f, 0xfc, 0x49, 0x83, 0xb5, + 0xe4, 0x66, 0x22, 0xb5, 0x6e, 0xc2, 0x62, 0x72, 0x2f, 0x4a, 0xa1, 0xe7, 0x1e, 0x47, 0x21, 0xa5, + 0xcb, 0x19, 0x7a, 0xf4, 0x7a, 0x9c, 0xbc, 0xf2, 0xdd, 0xf4, 0xea, 0x63, 0xdb, 0x26, 0xdc, 0x53, + 0x3a, 0x89, 0xe7, 0x85, 0x77, 0x7e, 0x33, 0x07, 0xf3, 0x2d, 0xdf, 0xef, 0xa3, 0x9f, 0xc1, 0xaa, + 0xe7, 0xb3, 0x0e, 0x8f, 0x33, 0x62, 0x77, 0xd4, 0x73, 0x89, 0xac, 0xae, 0xaf, 0x5f, 0xcc, 0x64, + 0xff, 0x19, 0xeb, 0xd3, 0xac, 0x52, 0x76, 0x2c, 0x79, 0x3e, 0x6b, 0x88, 0xf5, 0x7d, 0xf9, 0x98, + 0x72, 0xaa, 0xc1, 0xd2, 0x59, 0xd9, 0xb2, 0xe4, 0x92, 0x0b, 0xcb, 0x3e, 0xcb, 0x66, 0x32, 0xd6, + 0xd7, 0xe2, 0x74, 0x8a, 0xa6, 0xd3, 0x3d, 0x6e, 0xb1, 0x9b, 0xd8, 0xcc, 0x76, 0x9e, 0x3b, 0xf7, + 0x93, 0xbb, 0xba, 0xf6, 0xcd, 0x0f, 0x34, 0x80, 0xf8, 0x41, 0x09, 0xbd, 0x00, 0x4f, 0x37, 0x5e, + 0xbb, 0xd9, 0xec, 0xb4, 0xf7, 0xaf, 0xed, 0xdf, 0x6a, 0x77, 0x6e, 0xdd, 0x6c, 0xb7, 0x76, 0x77, + 0xf6, 0xae, 0xef, 0xed, 0x36, 0x57, 0x32, 0x95, 0xd2, 0xe9, 0x9d, 0x5a, 0xf1, 0x96, 0x47, 0x07, + 0xc4, 0x72, 0x0e, 0x1d, 0x62, 0xa3, 0xe7, 0x61, 0xed, 0x2c, 0x9a, 0x8f, 0x76, 0x9b, 0x2b, 0x5a, + 0x65, 0xf1, 0xf4, 0x4e, 0x2d, 0x2f, 0x8f, 0x8d, 0xc4, 0x46, 0x1b, 0x70, 0x79, 0x1a, 0xb7, 0x77, + 0xf3, 0x87, 0x2b, 0x73, 0x95, 0xa5, 0xd3, 0x3b, 0xb5, 0x42, 0x74, 0xbe, 0x44, 0x06, 0xa0, 0x24, + 0x52, 0xf1, 0xcb, 0x56, 0xe0, 0xf4, 0x4e, 0x2d, 0x27, 0xed, 0x59, 0x99, 0x7f, 0xe7, 0xfd, 0x6a, + 0xa6, 0x71, 0xfd, 0xc3, 0xfb, 0x55, 0xed, 0xde, 0xfd, 0xaa, 0xf6, 0xaf, 0xfb, 0x55, 0xed, 0xdd, + 0x07, 0xd5, 0xcc, 0xbd, 0x07, 0xd5, 0xcc, 0xdf, 0x1f, 0x54, 0x33, 0x6f, 0xbc, 0xf0, 0x50, 0x4b, + 0x9e, 0x44, 0xbf, 0x76, 0x08, 0x9b, 0x76, 0x73, 0xa2, 0x62, 0xbf, 0xf4, 0xbf, 0x00, 0x00, 0x00, + 0xff, 0xff, 0x85, 0xf4, 0x54, 0x2e, 0x0c, 0x19, 0x00, 0x00, } func (this *Pool) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { @@ -1260,622 +1263,627 @@ func (this *Pool) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_ func StakingDescription() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { d := &github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet{} var gzipped = []byte{ - // 9834 bytes of a gzipped FileDescriptorSet + // 9915 bytes of a gzipped FileDescriptorSet 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x7d, 0x6d, 0x70, 0x5c, 0xd7, - 0x75, 0x18, 0xde, 0x7e, 0x00, 0xbb, 0x07, 0x0b, 0x60, 0x71, 0x01, 0x92, 0xcb, 0x25, 0x09, 0x40, - 0x4f, 0x5f, 0x14, 0x25, 0x81, 0x12, 0x25, 0x52, 0xd2, 0x32, 0xb6, 0xbc, 0x8b, 0x5d, 0x82, 0x10, - 0xf1, 0xa5, 0x07, 0x80, 0x92, 0x65, 0xa7, 0x3b, 0x0f, 0xbb, 0x17, 0x8b, 0x27, 0xec, 0xbe, 0xf7, - 0xf4, 0xde, 0x5b, 0x12, 0xa0, 0xed, 0x8e, 0xfc, 0x51, 0xd7, 0x66, 0x26, 0x8d, 0x5d, 0x77, 0x1a, - 0x5b, 0x36, 0x5d, 0x39, 0x4e, 0xeb, 0xd4, 0x71, 0x1b, 0x3b, 0x76, 0xdd, 0xa6, 0xed, 0x4c, 0xed, - 0xce, 0xa4, 0xb1, 0xdd, 0x26, 0x63, 0xb7, 0x99, 0x36, 0xcd, 0xa4, 0x74, 0x2a, 0x7b, 0x52, 0xd5, - 0x75, 0x1b, 0x87, 0x71, 0xdb, 0x74, 0x3c, 0x9d, 0x76, 0xee, 0xd7, 0xfb, 0xda, 0x4f, 0x40, 0xa4, - 0xed, 0x34, 0xfd, 0x85, 0xbd, 0xe7, 0x9e, 0x73, 0xee, 0x39, 0xe7, 0x9e, 0x7b, 0xee, 0xb9, 0x5f, - 0x0f, 0xf0, 0x85, 0xf3, 0x30, 0x53, 0x33, 0x8c, 0x5a, 0x1d, 0x9f, 0x36, 0x2d, 0xc3, 0x31, 0x36, - 0x9b, 0x5b, 0xa7, 0xab, 0xd8, 0xae, 0x58, 0x9a, 0xe9, 0x18, 0xd6, 0x2c, 0x85, 0xa1, 0x31, 0x86, - 0x31, 0x2b, 0x30, 0xe4, 0x25, 0x18, 0xbf, 0xa0, 0xd5, 0x71, 0xd1, 0x45, 0x5c, 0xc3, 0x0e, 0x7a, - 0x12, 0x62, 0x5b, 0x5a, 0x1d, 0x67, 0xa4, 0x99, 0xe8, 0xc9, 0xe1, 0x33, 0xf7, 0xcc, 0x86, 0x88, - 0x66, 0x83, 0x14, 0xab, 0x04, 0xac, 0x50, 0x0a, 0xf9, 0xbb, 0x31, 0x98, 0x68, 0x53, 0x8b, 0x10, - 0xc4, 0x74, 0xb5, 0x41, 0x38, 0x4a, 0x27, 0x93, 0x0a, 0xfd, 0x8d, 0x32, 0x30, 0x64, 0xaa, 0x95, - 0x1d, 0xb5, 0x86, 0x33, 0x11, 0x0a, 0x16, 0x45, 0x34, 0x05, 0x50, 0xc5, 0x26, 0xd6, 0xab, 0x58, - 0xaf, 0xec, 0x65, 0xa2, 0x33, 0xd1, 0x93, 0x49, 0xc5, 0x07, 0x41, 0x0f, 0xc2, 0xb8, 0xd9, 0xdc, - 0xac, 0x6b, 0x95, 0xb2, 0x0f, 0x0d, 0x66, 0xa2, 0x27, 0xe3, 0x4a, 0x9a, 0x55, 0x14, 0x3d, 0xe4, - 0xfb, 0x61, 0xec, 0x2a, 0x56, 0x77, 0xfc, 0xa8, 0xc3, 0x14, 0x75, 0x94, 0x80, 0x7d, 0x88, 0x73, - 0x90, 0x6a, 0x60, 0xdb, 0x56, 0x6b, 0xb8, 0xec, 0xec, 0x99, 0x38, 0x13, 0xa3, 0xda, 0xcf, 0xb4, - 0x68, 0x1f, 0xd6, 0x7c, 0x98, 0x53, 0xad, 0xef, 0x99, 0x18, 0xe5, 0x21, 0x89, 0xf5, 0x66, 0x83, - 0x71, 0x88, 0x77, 0xb0, 0x5f, 0x49, 0x6f, 0x36, 0xc2, 0x5c, 0x12, 0x84, 0x8c, 0xb3, 0x18, 0xb2, - 0xb1, 0x75, 0x45, 0xab, 0xe0, 0xcc, 0x20, 0x65, 0x70, 0x7f, 0x0b, 0x83, 0x35, 0x56, 0x1f, 0xe6, - 0x21, 0xe8, 0xd0, 0x1c, 0x24, 0xf1, 0xae, 0x83, 0x75, 0x5b, 0x33, 0xf4, 0xcc, 0x10, 0x65, 0x72, - 0x6f, 0x9b, 0x5e, 0xc4, 0xf5, 0x6a, 0x98, 0x85, 0x47, 0x87, 0xce, 0xc1, 0x90, 0x61, 0x3a, 0x9a, - 0xa1, 0xdb, 0x99, 0xc4, 0x8c, 0x74, 0x72, 0xf8, 0xcc, 0xf1, 0xb6, 0x8e, 0xb0, 0xc2, 0x70, 0x14, - 0x81, 0x8c, 0x16, 0x20, 0x6d, 0x1b, 0x4d, 0xab, 0x82, 0xcb, 0x15, 0xa3, 0x8a, 0xcb, 0x9a, 0xbe, - 0x65, 0x64, 0x92, 0x94, 0xc1, 0x74, 0xab, 0x22, 0x14, 0x71, 0xce, 0xa8, 0xe2, 0x05, 0x7d, 0xcb, - 0x50, 0x46, 0xed, 0x40, 0x19, 0x1d, 0x86, 0x41, 0x7b, 0x4f, 0x77, 0xd4, 0xdd, 0x4c, 0x8a, 0x7a, - 0x08, 0x2f, 0xc9, 0xbf, 0x31, 0x08, 0x63, 0xfd, 0xb8, 0xd8, 0x79, 0x88, 0x6f, 0x11, 0x2d, 0x33, - 0x91, 0xfd, 0xd8, 0x80, 0xd1, 0x04, 0x8d, 0x38, 0x78, 0x40, 0x23, 0xe6, 0x61, 0x58, 0xc7, 0xb6, - 0x83, 0xab, 0xcc, 0x23, 0xa2, 0x7d, 0xfa, 0x14, 0x30, 0xa2, 0x56, 0x97, 0x8a, 0x1d, 0xc8, 0xa5, - 0x9e, 0x87, 0x31, 0x57, 0xa4, 0xb2, 0xa5, 0xea, 0x35, 0xe1, 0x9b, 0xa7, 0x7b, 0x49, 0x32, 0x5b, - 0x12, 0x74, 0x0a, 0x21, 0x53, 0x46, 0x71, 0xa0, 0x8c, 0x8a, 0x00, 0x86, 0x8e, 0x8d, 0xad, 0x72, - 0x15, 0x57, 0xea, 0x99, 0x44, 0x07, 0x2b, 0xad, 0x10, 0x94, 0x16, 0x2b, 0x19, 0x0c, 0x5a, 0xa9, - 0xa3, 0xa7, 0x3c, 0x57, 0x1b, 0xea, 0xe0, 0x29, 0x4b, 0x6c, 0x90, 0xb5, 0x78, 0xdb, 0x06, 0x8c, - 0x5a, 0x98, 0xf8, 0x3d, 0xae, 0x72, 0xcd, 0x92, 0x54, 0x88, 0xd9, 0x9e, 0x9a, 0x29, 0x9c, 0x8c, - 0x29, 0x36, 0x62, 0xf9, 0x8b, 0xe8, 0x6e, 0x70, 0x01, 0x65, 0xea, 0x56, 0x40, 0xa3, 0x50, 0x4a, - 0x00, 0x97, 0xd5, 0x06, 0xce, 0x5e, 0x83, 0xd1, 0xa0, 0x79, 0xd0, 0x24, 0xc4, 0x6d, 0x47, 0xb5, - 0x1c, 0xea, 0x85, 0x71, 0x85, 0x15, 0x50, 0x1a, 0xa2, 0x58, 0xaf, 0xd2, 0x28, 0x17, 0x57, 0xc8, - 0x4f, 0xf4, 0x16, 0x4f, 0xe1, 0x28, 0x55, 0xf8, 0xbe, 0xd6, 0x1e, 0x0d, 0x70, 0x0e, 0xeb, 0x9d, - 0x7d, 0x02, 0x46, 0x02, 0x0a, 0xf4, 0xdb, 0xb4, 0xfc, 0x4e, 0x38, 0xd4, 0x96, 0x35, 0x7a, 0x1e, - 0x26, 0x9b, 0xba, 0xa6, 0x3b, 0xd8, 0x32, 0x2d, 0x4c, 0x3c, 0x96, 0x35, 0x95, 0xf9, 0x4f, 0x43, - 0x1d, 0x7c, 0x6e, 0xc3, 0x8f, 0xcd, 0xb8, 0x28, 0x13, 0xcd, 0x56, 0xe0, 0xa9, 0x64, 0xe2, 0xf5, - 0xa1, 0xf4, 0xcb, 0x2f, 0xbf, 0xfc, 0x72, 0x44, 0xfe, 0xea, 0x20, 0x4c, 0xb6, 0x1b, 0x33, 0x6d, - 0x87, 0xef, 0x61, 0x18, 0xd4, 0x9b, 0x8d, 0x4d, 0x6c, 0x51, 0x23, 0xc5, 0x15, 0x5e, 0x42, 0x79, - 0x88, 0xd7, 0xd5, 0x4d, 0x5c, 0xcf, 0xc4, 0x66, 0xa4, 0x93, 0xa3, 0x67, 0x1e, 0xec, 0x6b, 0x54, - 0xce, 0x2e, 0x12, 0x12, 0x85, 0x51, 0xa2, 0x37, 0x43, 0x8c, 0x87, 0x68, 0xc2, 0xe1, 0x54, 0x7f, - 0x1c, 0xc8, 0x58, 0x52, 0x28, 0x1d, 0x3a, 0x06, 0x49, 0xf2, 0x97, 0xf9, 0xc6, 0x20, 0x95, 0x39, - 0x41, 0x00, 0xc4, 0x2f, 0x50, 0x16, 0x12, 0x74, 0x98, 0x54, 0xb1, 0x98, 0xda, 0xdc, 0x32, 0x71, - 0xac, 0x2a, 0xde, 0x52, 0x9b, 0x75, 0xa7, 0x7c, 0x45, 0xad, 0x37, 0x31, 0x75, 0xf8, 0xa4, 0x92, - 0xe2, 0xc0, 0xcb, 0x04, 0x86, 0xa6, 0x61, 0x98, 0x8d, 0x2a, 0x4d, 0xaf, 0xe2, 0x5d, 0x1a, 0x3d, - 0xe3, 0x0a, 0x1b, 0x68, 0x0b, 0x04, 0x42, 0x9a, 0x7f, 0xd1, 0x36, 0x74, 0xe1, 0x9a, 0xb4, 0x09, - 0x02, 0xa0, 0xcd, 0x3f, 0x11, 0x0e, 0xdc, 0x27, 0xda, 0xab, 0xd7, 0x32, 0x96, 0xee, 0x87, 0x31, - 0x8a, 0xf1, 0x18, 0xef, 0x7a, 0xb5, 0x9e, 0x19, 0x9f, 0x91, 0x4e, 0x26, 0x94, 0x51, 0x06, 0x5e, - 0xe1, 0x50, 0xf9, 0xcb, 0x11, 0x88, 0xd1, 0xc0, 0x32, 0x06, 0xc3, 0xeb, 0x6f, 0x5d, 0x2d, 0x95, - 0x8b, 0x2b, 0x1b, 0x85, 0xc5, 0x52, 0x5a, 0x42, 0xa3, 0x00, 0x14, 0x70, 0x61, 0x71, 0x25, 0xbf, - 0x9e, 0x8e, 0xb8, 0xe5, 0x85, 0xe5, 0xf5, 0x73, 0x8f, 0xa7, 0xa3, 0x2e, 0xc1, 0x06, 0x03, 0xc4, - 0xfc, 0x08, 0x8f, 0x9d, 0x49, 0xc7, 0x51, 0x1a, 0x52, 0x8c, 0xc1, 0xc2, 0xf3, 0xa5, 0xe2, 0xb9, - 0xc7, 0xd3, 0x83, 0x41, 0xc8, 0x63, 0x67, 0xd2, 0x43, 0x68, 0x04, 0x92, 0x14, 0x52, 0x58, 0x59, - 0x59, 0x4c, 0x27, 0x5c, 0x9e, 0x6b, 0xeb, 0xca, 0xc2, 0xf2, 0x7c, 0x3a, 0xe9, 0xf2, 0x9c, 0x57, - 0x56, 0x36, 0x56, 0xd3, 0xe0, 0x72, 0x58, 0x2a, 0xad, 0xad, 0xe5, 0xe7, 0x4b, 0xe9, 0x61, 0x17, - 0xa3, 0xf0, 0xd6, 0xf5, 0xd2, 0x5a, 0x3a, 0x15, 0x10, 0xeb, 0xb1, 0x33, 0xe9, 0x11, 0xb7, 0x89, - 0xd2, 0xf2, 0xc6, 0x52, 0x7a, 0x14, 0x8d, 0xc3, 0x08, 0x6b, 0x42, 0x08, 0x31, 0x16, 0x02, 0x9d, - 0x7b, 0x3c, 0x9d, 0xf6, 0x04, 0x61, 0x5c, 0xc6, 0x03, 0x80, 0x73, 0x8f, 0xa7, 0x91, 0x3c, 0x07, - 0x71, 0xea, 0x86, 0x08, 0xc1, 0xe8, 0x62, 0xbe, 0x50, 0x5a, 0x2c, 0xaf, 0xac, 0xae, 0x2f, 0xac, - 0x2c, 0xe7, 0x17, 0xd3, 0x92, 0x07, 0x53, 0x4a, 0xcf, 0x6e, 0x2c, 0x28, 0xa5, 0x62, 0x3a, 0xe2, - 0x87, 0xad, 0x96, 0xf2, 0xeb, 0xa5, 0x62, 0x3a, 0x2a, 0x57, 0x60, 0xb2, 0x5d, 0x40, 0x6d, 0x3b, - 0x84, 0x7c, 0xbe, 0x10, 0xe9, 0xe0, 0x0b, 0x94, 0x57, 0xd8, 0x17, 0xe4, 0xef, 0x44, 0x60, 0xa2, - 0xcd, 0xa4, 0xd2, 0xb6, 0x91, 0xa7, 0x21, 0xce, 0x7c, 0x99, 0x4d, 0xb3, 0x0f, 0xb4, 0x9d, 0x9d, - 0xa8, 0x67, 0xb7, 0x4c, 0xb5, 0x94, 0xce, 0x9f, 0x6a, 0x44, 0x3b, 0xa4, 0x1a, 0x84, 0x45, 0x8b, - 0xc3, 0xfe, 0x6c, 0x4b, 0xf0, 0x67, 0xf3, 0xe3, 0xb9, 0x7e, 0xe6, 0x47, 0x0a, 0xdb, 0xdf, 0x24, - 0x10, 0x6f, 0x33, 0x09, 0x9c, 0x87, 0xf1, 0x16, 0x46, 0x7d, 0x07, 0xe3, 0xf7, 0x4a, 0x90, 0xe9, - 0x64, 0x9c, 0x1e, 0x21, 0x31, 0x12, 0x08, 0x89, 0xe7, 0xc3, 0x16, 0xbc, 0xab, 0x73, 0x27, 0xb4, - 0xf4, 0xf5, 0x67, 0x24, 0x38, 0xdc, 0x3e, 0xa5, 0x6c, 0x2b, 0xc3, 0x9b, 0x61, 0xb0, 0x81, 0x9d, - 0x6d, 0x43, 0xa4, 0x55, 0xf7, 0xb5, 0x99, 0xac, 0x49, 0x75, 0xb8, 0xb3, 0x39, 0x95, 0x7f, 0xb6, - 0x8f, 0x76, 0xca, 0x0b, 0x99, 0x34, 0x2d, 0x92, 0x7e, 0x30, 0x02, 0x87, 0xda, 0x32, 0x6f, 0x2b, - 0xe8, 0x09, 0x00, 0x4d, 0x37, 0x9b, 0x0e, 0x4b, 0x9d, 0x58, 0x24, 0x4e, 0x52, 0x08, 0x0d, 0x5e, - 0x24, 0xca, 0x36, 0x1d, 0xb7, 0x3e, 0x4a, 0xeb, 0x81, 0x81, 0x28, 0xc2, 0x93, 0x9e, 0xa0, 0x31, - 0x2a, 0xe8, 0x54, 0x07, 0x4d, 0x5b, 0x1c, 0xf3, 0x11, 0x48, 0x57, 0xea, 0x1a, 0xd6, 0x9d, 0xb2, - 0xed, 0x58, 0x58, 0x6d, 0x68, 0x7a, 0x8d, 0x4e, 0x35, 0x89, 0x5c, 0x7c, 0x4b, 0xad, 0xdb, 0x58, - 0x19, 0x63, 0xd5, 0x6b, 0xa2, 0x96, 0x50, 0x50, 0x07, 0xb2, 0x7c, 0x14, 0x83, 0x01, 0x0a, 0x56, - 0xed, 0x52, 0xc8, 0x1f, 0x4e, 0xc2, 0xb0, 0x2f, 0x01, 0x47, 0x77, 0x41, 0xea, 0x45, 0xf5, 0x8a, - 0x5a, 0x16, 0x8b, 0x2a, 0x66, 0x89, 0x61, 0x02, 0x5b, 0xe5, 0x0b, 0xab, 0x47, 0x60, 0x92, 0xa2, - 0x18, 0x4d, 0x07, 0x5b, 0xe5, 0x4a, 0x5d, 0xb5, 0x6d, 0x6a, 0xb4, 0x04, 0x45, 0x45, 0xa4, 0x6e, - 0x85, 0x54, 0xcd, 0x89, 0x1a, 0x74, 0x16, 0x26, 0x28, 0x45, 0xa3, 0x59, 0x77, 0x34, 0xb3, 0x8e, - 0xcb, 0x64, 0x99, 0x67, 0xd3, 0x29, 0xc7, 0x95, 0x6c, 0x9c, 0x60, 0x2c, 0x71, 0x04, 0x22, 0x91, - 0x8d, 0x8a, 0x70, 0x82, 0x92, 0xd5, 0xb0, 0x8e, 0x2d, 0xd5, 0xc1, 0x65, 0xfc, 0x52, 0x53, 0xad, - 0xdb, 0x65, 0x55, 0xaf, 0x96, 0xb7, 0x55, 0x7b, 0x3b, 0x33, 0x49, 0x18, 0x14, 0x22, 0x19, 0x49, - 0x39, 0x4a, 0x10, 0xe7, 0x39, 0x5e, 0x89, 0xa2, 0xe5, 0xf5, 0xea, 0x45, 0xd5, 0xde, 0x46, 0x39, - 0x38, 0x4c, 0xb9, 0xd8, 0x8e, 0xa5, 0xe9, 0xb5, 0x72, 0x65, 0x1b, 0x57, 0x76, 0xca, 0x4d, 0x67, - 0xeb, 0xc9, 0xcc, 0x31, 0x7f, 0xfb, 0x54, 0xc2, 0x35, 0x8a, 0x33, 0x47, 0x50, 0x36, 0x9c, 0xad, - 0x27, 0xd1, 0x1a, 0xa4, 0x48, 0x67, 0x34, 0xb4, 0x6b, 0xb8, 0xbc, 0x65, 0x58, 0x74, 0x0e, 0x1d, - 0x6d, 0x13, 0x9a, 0x7c, 0x16, 0x9c, 0x5d, 0xe1, 0x04, 0x4b, 0x46, 0x15, 0xe7, 0xe2, 0x6b, 0xab, - 0xa5, 0x52, 0x51, 0x19, 0x16, 0x5c, 0x2e, 0x18, 0x16, 0x71, 0xa8, 0x9a, 0xe1, 0x1a, 0x78, 0x98, - 0x39, 0x54, 0xcd, 0x10, 0xe6, 0x3d, 0x0b, 0x13, 0x95, 0x0a, 0xd3, 0x59, 0xab, 0x94, 0xf9, 0x62, - 0xcc, 0xce, 0xa4, 0x03, 0xc6, 0xaa, 0x54, 0xe6, 0x19, 0x02, 0xf7, 0x71, 0x1b, 0x3d, 0x05, 0x87, - 0x3c, 0x63, 0xf9, 0x09, 0xc7, 0x5b, 0xb4, 0x0c, 0x93, 0x9e, 0x85, 0x09, 0x73, 0xaf, 0x95, 0x10, - 0x05, 0x5a, 0x34, 0xf7, 0xc2, 0x64, 0x4f, 0xc0, 0xa4, 0xb9, 0x6d, 0xb6, 0xd2, 0x9d, 0xf2, 0xd3, - 0x21, 0x73, 0xdb, 0x0c, 0x13, 0xde, 0x4b, 0x57, 0xe6, 0x16, 0xae, 0xa8, 0x0e, 0xae, 0x66, 0x8e, - 0xf8, 0xd1, 0x7d, 0x15, 0x68, 0x16, 0xd2, 0x95, 0x4a, 0x19, 0xeb, 0xea, 0x66, 0x1d, 0x97, 0x55, - 0x0b, 0xeb, 0xaa, 0x9d, 0x99, 0xa6, 0xc8, 0x31, 0xc7, 0x6a, 0x62, 0x65, 0xb4, 0x52, 0x29, 0xd1, - 0xca, 0x3c, 0xad, 0x43, 0xa7, 0x60, 0xdc, 0xd8, 0x7c, 0xb1, 0xc2, 0x3c, 0xb2, 0x6c, 0x5a, 0x78, - 0x4b, 0xdb, 0xcd, 0xdc, 0x43, 0xcd, 0x3b, 0x46, 0x2a, 0xa8, 0x3f, 0xae, 0x52, 0x30, 0x7a, 0x00, - 0xd2, 0x15, 0x7b, 0x5b, 0xb5, 0x4c, 0x1a, 0x92, 0x6d, 0x53, 0xad, 0xe0, 0xcc, 0xbd, 0x0c, 0x95, - 0xc1, 0x97, 0x05, 0x98, 0x8c, 0x08, 0xfb, 0xaa, 0xb6, 0xe5, 0x08, 0x8e, 0xf7, 0xb3, 0x11, 0x41, - 0x61, 0x9c, 0xdb, 0x49, 0x48, 0x13, 0x4b, 0x04, 0x1a, 0x3e, 0x49, 0xd1, 0x46, 0xcd, 0x6d, 0xd3, - 0xdf, 0xee, 0xdd, 0x30, 0x42, 0x30, 0xbd, 0x46, 0x1f, 0x60, 0x89, 0x9b, 0xb9, 0xed, 0x6b, 0xf1, - 0x71, 0x38, 0x4c, 0x90, 0x1a, 0xd8, 0x51, 0xab, 0xaa, 0xa3, 0xfa, 0xb0, 0x1f, 0xa2, 0xd8, 0xc4, - 0xec, 0x4b, 0xbc, 0x32, 0x20, 0xa7, 0xd5, 0xdc, 0xdc, 0x73, 0x1d, 0xeb, 0x61, 0x26, 0x27, 0x81, - 0x09, 0xd7, 0xba, 0x63, 0xc9, 0xb9, 0x9c, 0x83, 0x94, 0xdf, 0xef, 0x51, 0x12, 0x98, 0xe7, 0xa7, - 0x25, 0x92, 0x04, 0xcd, 0xad, 0x14, 0x49, 0xfa, 0xf2, 0x42, 0x29, 0x1d, 0x21, 0x69, 0xd4, 0xe2, - 0xc2, 0x7a, 0xa9, 0xac, 0x6c, 0x2c, 0xaf, 0x2f, 0x2c, 0x95, 0xd2, 0x51, 0x5f, 0x62, 0xff, 0x4c, - 0x2c, 0x71, 0x5f, 0xfa, 0x7e, 0xf9, 0x5b, 0x11, 0x18, 0x0d, 0xae, 0xd4, 0xd0, 0xcf, 0xc0, 0x11, - 0xb1, 0xad, 0x62, 0x63, 0xa7, 0x7c, 0x55, 0xb3, 0xe8, 0x80, 0x6c, 0xa8, 0x6c, 0x72, 0x74, 0xfd, - 0x67, 0x92, 0x63, 0xad, 0x61, 0xe7, 0x39, 0xcd, 0x22, 0xc3, 0xad, 0xa1, 0x3a, 0x68, 0x11, 0xa6, - 0x75, 0xa3, 0x6c, 0x3b, 0xaa, 0x5e, 0x55, 0xad, 0x6a, 0xd9, 0xdb, 0xd0, 0x2a, 0xab, 0x95, 0x0a, - 0xb6, 0x6d, 0x83, 0x4d, 0x84, 0x2e, 0x97, 0xe3, 0xba, 0xb1, 0xc6, 0x91, 0xbd, 0x19, 0x22, 0xcf, - 0x51, 0x43, 0xee, 0x1b, 0xed, 0xe4, 0xbe, 0xc7, 0x20, 0xd9, 0x50, 0xcd, 0x32, 0xd6, 0x1d, 0x6b, - 0x8f, 0xe6, 0xe7, 0x09, 0x25, 0xd1, 0x50, 0xcd, 0x12, 0x29, 0xff, 0x58, 0x96, 0x49, 0xcf, 0xc4, - 0x12, 0x89, 0x74, 0xf2, 0x99, 0x58, 0x22, 0x99, 0x06, 0xf9, 0xb5, 0x28, 0xa4, 0xfc, 0xf9, 0x3a, - 0x59, 0xfe, 0x54, 0xe8, 0x8c, 0x25, 0xd1, 0x98, 0x76, 0x77, 0xd7, 0xec, 0x7e, 0x76, 0x8e, 0x4c, - 0x65, 0xb9, 0x41, 0x96, 0x1c, 0x2b, 0x8c, 0x92, 0xa4, 0x11, 0xc4, 0xd9, 0x30, 0x4b, 0x46, 0x12, - 0x0a, 0x2f, 0xa1, 0x79, 0x18, 0x7c, 0xd1, 0xa6, 0xbc, 0x07, 0x29, 0xef, 0x7b, 0xba, 0xf3, 0x7e, - 0x66, 0x8d, 0x32, 0x4f, 0x3e, 0xb3, 0x56, 0x5e, 0x5e, 0x51, 0x96, 0xf2, 0x8b, 0x0a, 0x27, 0x47, - 0x47, 0x21, 0x56, 0x57, 0xaf, 0xed, 0x05, 0x27, 0x3d, 0x0a, 0xea, 0xb7, 0x13, 0x8e, 0x42, 0xec, - 0x2a, 0x56, 0x77, 0x82, 0x53, 0x0d, 0x05, 0xdd, 0xc1, 0xc1, 0x70, 0x1a, 0xe2, 0xd4, 0x5e, 0x08, - 0x80, 0x5b, 0x2c, 0x3d, 0x80, 0x12, 0x10, 0x9b, 0x5b, 0x51, 0xc8, 0x80, 0x48, 0x43, 0x8a, 0x41, - 0xcb, 0xab, 0x0b, 0xa5, 0xb9, 0x52, 0x3a, 0x22, 0x9f, 0x85, 0x41, 0x66, 0x04, 0x32, 0x58, 0x5c, - 0x33, 0xa4, 0x07, 0x78, 0x91, 0xf3, 0x90, 0x44, 0xed, 0xc6, 0x52, 0xa1, 0xa4, 0xa4, 0x23, 0xc1, - 0xae, 0x8e, 0xa5, 0xe3, 0xb2, 0x0d, 0x29, 0x7f, 0x1e, 0xfe, 0xe3, 0x59, 0x8c, 0x7f, 0x45, 0x82, - 0x61, 0x5f, 0x5e, 0x4d, 0x12, 0x22, 0xb5, 0x5e, 0x37, 0xae, 0x96, 0xd5, 0xba, 0xa6, 0xda, 0xdc, - 0x35, 0x80, 0x82, 0xf2, 0x04, 0xd2, 0x6f, 0xd7, 0xfd, 0x98, 0x86, 0x48, 0x3c, 0x3d, 0x28, 0x7f, - 0x52, 0x82, 0x74, 0x38, 0xb1, 0x0d, 0x89, 0x29, 0xfd, 0x24, 0xc5, 0x94, 0x3f, 0x21, 0xc1, 0x68, - 0x30, 0x9b, 0x0d, 0x89, 0x77, 0xd7, 0x4f, 0x54, 0xbc, 0x3f, 0x8c, 0xc0, 0x48, 0x20, 0x87, 0xed, - 0x57, 0xba, 0x97, 0x60, 0x5c, 0xab, 0xe2, 0x86, 0x69, 0x38, 0x58, 0xaf, 0xec, 0x95, 0xeb, 0xf8, - 0x0a, 0xae, 0x67, 0x64, 0x1a, 0x34, 0x4e, 0x77, 0xcf, 0x92, 0x67, 0x17, 0x3c, 0xba, 0x45, 0x42, - 0x96, 0x9b, 0x58, 0x28, 0x96, 0x96, 0x56, 0x57, 0xd6, 0x4b, 0xcb, 0x73, 0x6f, 0x2d, 0x6f, 0x2c, - 0x5f, 0x5a, 0x5e, 0x79, 0x6e, 0x59, 0x49, 0x6b, 0x21, 0xb4, 0x3b, 0x38, 0xec, 0x57, 0x21, 0x1d, - 0x16, 0x0a, 0x1d, 0x81, 0x76, 0x62, 0xa5, 0x07, 0xd0, 0x04, 0x8c, 0x2d, 0xaf, 0x94, 0xd7, 0x16, - 0x8a, 0xa5, 0x72, 0xe9, 0xc2, 0x85, 0xd2, 0xdc, 0xfa, 0x1a, 0xdb, 0xf7, 0x70, 0xb1, 0xd7, 0x03, - 0x03, 0x5c, 0x7e, 0x25, 0x0a, 0x13, 0x6d, 0x24, 0x41, 0x79, 0xbe, 0x62, 0x61, 0x8b, 0xa8, 0x87, - 0xfb, 0x91, 0x7e, 0x96, 0xe4, 0x0c, 0xab, 0xaa, 0xe5, 0xf0, 0x05, 0xce, 0x03, 0x40, 0xac, 0xa4, - 0x3b, 0xda, 0x96, 0x86, 0x2d, 0xbe, 0x9f, 0xc4, 0x96, 0x31, 0x63, 0x1e, 0x9c, 0x6d, 0x29, 0x3d, - 0x04, 0xc8, 0x34, 0x6c, 0xcd, 0xd1, 0xae, 0xe0, 0xb2, 0xa6, 0x8b, 0xcd, 0x27, 0xb2, 0xac, 0x89, - 0x29, 0x69, 0x51, 0xb3, 0xa0, 0x3b, 0x2e, 0xb6, 0x8e, 0x6b, 0x6a, 0x08, 0x9b, 0x04, 0xf3, 0xa8, - 0x92, 0x16, 0x35, 0x2e, 0xf6, 0x5d, 0x90, 0xaa, 0x1a, 0x4d, 0x92, 0xeb, 0x31, 0x3c, 0x32, 0x77, - 0x48, 0xca, 0x30, 0x83, 0xb9, 0x28, 0x3c, 0x8b, 0xf7, 0x76, 0xbd, 0x52, 0xca, 0x30, 0x83, 0x31, - 0x94, 0xfb, 0x61, 0x4c, 0xad, 0xd5, 0x2c, 0xc2, 0x5c, 0x30, 0x62, 0xeb, 0x92, 0x51, 0x17, 0x4c, - 0x11, 0xb3, 0xcf, 0x40, 0x42, 0xd8, 0x81, 0x4c, 0xd5, 0xc4, 0x12, 0x65, 0x93, 0x2d, 0xb6, 0x23, - 0x27, 0x93, 0x4a, 0x42, 0x17, 0x95, 0x77, 0x41, 0x4a, 0xb3, 0xcb, 0xde, 0x26, 0x7e, 0x64, 0x26, - 0x72, 0x32, 0xa1, 0x0c, 0x6b, 0xb6, 0xbb, 0x01, 0x2a, 0x7f, 0x26, 0x02, 0xa3, 0xc1, 0x43, 0x08, - 0x54, 0x84, 0x44, 0xdd, 0xa8, 0xa8, 0xd4, 0xb5, 0xd8, 0x09, 0xd8, 0xc9, 0x1e, 0xe7, 0x16, 0xb3, - 0x8b, 0x1c, 0x5f, 0x71, 0x29, 0xb3, 0xbf, 0x23, 0x41, 0x42, 0x80, 0xd1, 0x61, 0x88, 0x99, 0xaa, - 0xb3, 0x4d, 0xd9, 0xc5, 0x0b, 0x91, 0xb4, 0xa4, 0xd0, 0x32, 0x81, 0xdb, 0xa6, 0xaa, 0x53, 0x17, - 0xe0, 0x70, 0x52, 0x26, 0xfd, 0x5a, 0xc7, 0x6a, 0x95, 0x2e, 0x7a, 0x8c, 0x46, 0x03, 0xeb, 0x8e, - 0x2d, 0xfa, 0x95, 0xc3, 0xe7, 0x38, 0x18, 0x3d, 0x08, 0xe3, 0x8e, 0xa5, 0x6a, 0xf5, 0x00, 0x6e, - 0x8c, 0xe2, 0xa6, 0x45, 0x85, 0x8b, 0x9c, 0x83, 0xa3, 0x82, 0x6f, 0x15, 0x3b, 0x6a, 0x65, 0x1b, - 0x57, 0x3d, 0xa2, 0x41, 0xba, 0xb9, 0x71, 0x84, 0x23, 0x14, 0x79, 0xbd, 0xa0, 0x95, 0xbf, 0x25, - 0xc1, 0xb8, 0x58, 0xa6, 0x55, 0x5d, 0x63, 0x2d, 0x01, 0xa8, 0xba, 0x6e, 0x38, 0x7e, 0x73, 0xb5, - 0xba, 0x72, 0x0b, 0xdd, 0x6c, 0xde, 0x25, 0x52, 0x7c, 0x0c, 0xb2, 0x0d, 0x00, 0xaf, 0xa6, 0xa3, - 0xd9, 0xa6, 0x61, 0x98, 0x9f, 0x30, 0xd1, 0x63, 0x4a, 0xb6, 0xb0, 0x07, 0x06, 0x22, 0xeb, 0x39, - 0x34, 0x09, 0xf1, 0x4d, 0x5c, 0xd3, 0x74, 0xbe, 0x6f, 0xcc, 0x0a, 0x62, 0xfb, 0x25, 0xe6, 0x6e, - 0xbf, 0x14, 0xfe, 0x32, 0x4c, 0x54, 0x8c, 0x46, 0x58, 0xdc, 0x42, 0x3a, 0xb4, 0xb9, 0x60, 0x5f, - 0x94, 0x5e, 0x78, 0x98, 0x23, 0xd5, 0x8c, 0xba, 0xaa, 0xd7, 0x66, 0x0d, 0xab, 0xe6, 0x1d, 0xb3, - 0x92, 0x8c, 0xc7, 0xf6, 0x1d, 0xb6, 0x9a, 0x9b, 0x7f, 0x26, 0x49, 0xbf, 0x14, 0x89, 0xce, 0xaf, - 0x16, 0x3e, 0x1b, 0xc9, 0xce, 0x33, 0xc2, 0x55, 0x61, 0x0c, 0x05, 0x6f, 0xd5, 0x71, 0x85, 0x28, - 0x08, 0xdf, 0x7b, 0x10, 0x26, 0x6b, 0x46, 0xcd, 0xa0, 0x9c, 0x4e, 0x93, 0x5f, 0xfc, 0x9c, 0x36, - 0xe9, 0x42, 0xb3, 0x3d, 0x0f, 0x75, 0x73, 0xcb, 0x30, 0xc1, 0x91, 0xcb, 0xf4, 0xa0, 0x88, 0x2d, - 0x63, 0x50, 0xd7, 0x3d, 0xb4, 0xcc, 0x17, 0xbe, 0x4b, 0xa7, 0x6f, 0x65, 0x9c, 0x93, 0x92, 0x3a, - 0xb6, 0xd2, 0xc9, 0x29, 0x70, 0x28, 0xc0, 0x8f, 0x0d, 0x52, 0x6c, 0xf5, 0xe0, 0xf8, 0x9b, 0x9c, - 0xe3, 0x84, 0x8f, 0xe3, 0x1a, 0x27, 0xcd, 0xcd, 0xc1, 0xc8, 0x7e, 0x78, 0xfd, 0x0b, 0xce, 0x2b, - 0x85, 0xfd, 0x4c, 0xe6, 0x61, 0x8c, 0x32, 0xa9, 0x34, 0x6d, 0xc7, 0x68, 0xd0, 0x08, 0xd8, 0x9d, - 0xcd, 0x6f, 0x7d, 0x97, 0x8d, 0x9a, 0x51, 0x42, 0x36, 0xe7, 0x52, 0xe5, 0x72, 0x40, 0xcf, 0xc6, - 0xaa, 0xb8, 0x52, 0xef, 0xc1, 0xe1, 0x6b, 0x5c, 0x10, 0x17, 0x3f, 0x77, 0x19, 0x26, 0xc9, 0x6f, - 0x1a, 0xa0, 0xfc, 0x92, 0xf4, 0xde, 0x70, 0xcb, 0x7c, 0xeb, 0xbd, 0x6c, 0x60, 0x4e, 0xb8, 0x0c, - 0x7c, 0x32, 0xf9, 0x7a, 0xb1, 0x86, 0x1d, 0x07, 0x5b, 0x76, 0x59, 0xad, 0xb7, 0x13, 0xcf, 0xb7, - 0x63, 0x91, 0xf9, 0xd8, 0xf7, 0x83, 0xbd, 0x38, 0xcf, 0x28, 0xf3, 0xf5, 0x7a, 0x6e, 0x03, 0x8e, - 0xb4, 0xf1, 0x8a, 0x3e, 0x78, 0xbe, 0xc2, 0x79, 0x4e, 0xb6, 0x78, 0x06, 0x61, 0xbb, 0x0a, 0x02, - 0xee, 0xf6, 0x65, 0x1f, 0x3c, 0x3f, 0xce, 0x79, 0x22, 0x4e, 0x2b, 0xba, 0x94, 0x70, 0x7c, 0x06, - 0xc6, 0xaf, 0x60, 0x6b, 0xd3, 0xb0, 0xf9, 0x2e, 0x51, 0x1f, 0xec, 0x3e, 0xc1, 0xd9, 0x8d, 0x71, - 0x42, 0xba, 0x6d, 0x44, 0x78, 0x3d, 0x05, 0x89, 0x2d, 0xb5, 0x82, 0xfb, 0x60, 0x71, 0x83, 0xb3, - 0x18, 0x22, 0xf8, 0x84, 0x34, 0x0f, 0xa9, 0x9a, 0xc1, 0xe7, 0xa8, 0xde, 0xe4, 0x9f, 0xe4, 0xe4, - 0xc3, 0x82, 0x86, 0xb3, 0x30, 0x0d, 0xb3, 0x59, 0x27, 0x13, 0x58, 0x6f, 0x16, 0x7f, 0x4b, 0xb0, - 0x10, 0x34, 0x9c, 0xc5, 0x3e, 0xcc, 0xfa, 0xaa, 0x60, 0x61, 0xfb, 0xec, 0xf9, 0x34, 0x0c, 0x1b, - 0x7a, 0x7d, 0xcf, 0xd0, 0xfb, 0x11, 0xe2, 0x53, 0x9c, 0x03, 0x70, 0x12, 0xc2, 0xe0, 0x3c, 0x24, - 0xfb, 0xed, 0x88, 0xbf, 0xfd, 0x7d, 0x31, 0x3c, 0x44, 0x0f, 0xcc, 0xc3, 0x98, 0x08, 0x50, 0x9a, - 0xa1, 0xf7, 0xc1, 0xe2, 0xef, 0x70, 0x16, 0xa3, 0x3e, 0x32, 0xae, 0x86, 0x83, 0x6d, 0xa7, 0x86, - 0xfb, 0x61, 0xf2, 0x19, 0xa1, 0x06, 0x27, 0xe1, 0xa6, 0xdc, 0xc4, 0x7a, 0x65, 0xbb, 0x3f, 0x0e, - 0xbf, 0x22, 0x4c, 0x29, 0x68, 0x08, 0x8b, 0x39, 0x18, 0x69, 0xa8, 0x96, 0xbd, 0xad, 0xd6, 0xfb, - 0xea, 0x8e, 0xbf, 0xcb, 0x79, 0xa4, 0x5c, 0x22, 0x6e, 0x91, 0xa6, 0xbe, 0x1f, 0x36, 0x9f, 0x15, - 0x16, 0xf1, 0x91, 0xf1, 0xa1, 0x67, 0x3b, 0x74, 0x4b, 0x6d, 0x3f, 0xdc, 0x7e, 0x55, 0x0c, 0x3d, - 0x46, 0xbb, 0xe4, 0xe7, 0x78, 0x1e, 0x92, 0xb6, 0x76, 0xad, 0x2f, 0x36, 0x9f, 0x13, 0x3d, 0x4d, - 0x09, 0x08, 0xf1, 0x5b, 0xe1, 0x68, 0xdb, 0x69, 0xa2, 0x0f, 0x66, 0x7f, 0x8f, 0x33, 0x3b, 0xdc, - 0x66, 0xaa, 0xe0, 0x21, 0x61, 0xbf, 0x2c, 0xff, 0xbe, 0x08, 0x09, 0x38, 0xc4, 0x6b, 0x95, 0xac, - 0x1a, 0x6c, 0x75, 0x6b, 0x7f, 0x56, 0xfb, 0x35, 0x61, 0x35, 0x46, 0x1b, 0xb0, 0xda, 0x3a, 0x1c, - 0xe6, 0x1c, 0xf7, 0xd7, 0xaf, 0x9f, 0x17, 0x81, 0x95, 0x51, 0x6f, 0x04, 0x7b, 0xf7, 0x6d, 0x90, - 0x75, 0xcd, 0x29, 0xd2, 0x53, 0xbb, 0xdc, 0x50, 0xcd, 0x3e, 0x38, 0x7f, 0x81, 0x73, 0x16, 0x11, - 0xdf, 0xcd, 0x6f, 0xed, 0x25, 0xd5, 0x24, 0xcc, 0x9f, 0x87, 0x8c, 0x60, 0xde, 0xd4, 0x2d, 0x5c, - 0x31, 0x6a, 0xba, 0x76, 0x0d, 0x57, 0xfb, 0x60, 0xfd, 0xeb, 0xa1, 0xae, 0xda, 0xf0, 0x91, 0x13, - 0xce, 0x0b, 0x90, 0x76, 0x73, 0x95, 0xb2, 0xd6, 0x30, 0x0d, 0xcb, 0xe9, 0xc1, 0xf1, 0x8b, 0xa2, - 0xa7, 0x5c, 0xba, 0x05, 0x4a, 0x96, 0x2b, 0x01, 0x3b, 0x67, 0xee, 0xd7, 0x25, 0xbf, 0xc4, 0x19, - 0x8d, 0x78, 0x54, 0x3c, 0x70, 0x54, 0x8c, 0x86, 0xa9, 0x5a, 0xfd, 0xc4, 0xbf, 0x7f, 0x20, 0x02, - 0x07, 0x27, 0xe1, 0x81, 0x83, 0x64, 0x74, 0x64, 0xb6, 0xef, 0x83, 0xc3, 0x97, 0x45, 0xe0, 0x10, - 0x34, 0x9c, 0x85, 0x48, 0x18, 0xfa, 0x60, 0xf1, 0x0f, 0x05, 0x0b, 0x41, 0x43, 0x58, 0x3c, 0xeb, - 0x4d, 0xb4, 0x16, 0xae, 0x69, 0xb6, 0x63, 0xb1, 0xa4, 0xb8, 0x3b, 0xab, 0x7f, 0xf4, 0xfd, 0x60, - 0x12, 0xa6, 0xf8, 0x48, 0x49, 0x24, 0xe2, 0x9b, 0xac, 0x74, 0xcd, 0xd4, 0x5b, 0xb0, 0xdf, 0x10, - 0x91, 0xc8, 0x47, 0x46, 0x64, 0xf3, 0x65, 0x88, 0xc4, 0xec, 0x15, 0xb2, 0x52, 0xe8, 0x83, 0xdd, - 0x3f, 0x0e, 0x09, 0xb7, 0x26, 0x68, 0x09, 0x4f, 0x5f, 0xfe, 0xd3, 0xd4, 0x77, 0xf0, 0x5e, 0x5f, - 0xde, 0xf9, 0x4f, 0x42, 0xf9, 0xcf, 0x06, 0xa3, 0x64, 0x31, 0x64, 0x2c, 0x94, 0x4f, 0xa1, 0x5e, - 0xb7, 0x8a, 0x32, 0xef, 0xfe, 0x21, 0xd7, 0x37, 0x98, 0x4e, 0xe5, 0x16, 0x89, 0x93, 0x07, 0x93, - 0x9e, 0xde, 0xcc, 0xde, 0xfb, 0x43, 0xd7, 0xcf, 0x03, 0x39, 0x4f, 0xee, 0x02, 0x8c, 0x04, 0x12, - 0x9e, 0xde, 0xac, 0xde, 0xc7, 0x59, 0xa5, 0xfc, 0xf9, 0x4e, 0xee, 0x2c, 0xc4, 0x48, 0xf2, 0xd2, - 0x9b, 0xfc, 0xaf, 0x70, 0x72, 0x8a, 0x9e, 0x7b, 0x13, 0x24, 0x44, 0xd2, 0xd2, 0x9b, 0xf4, 0xfd, - 0x9c, 0xd4, 0x25, 0x21, 0xe4, 0x22, 0x61, 0xe9, 0x4d, 0xfe, 0x57, 0x05, 0xb9, 0x20, 0x21, 0xe4, - 0xfd, 0x9b, 0xf0, 0x2b, 0x3f, 0x17, 0xe3, 0x93, 0x8e, 0xb0, 0xdd, 0x79, 0x18, 0xe2, 0x99, 0x4a, - 0x6f, 0xea, 0x0f, 0xf2, 0xc6, 0x05, 0x45, 0xee, 0x09, 0x88, 0xf7, 0x69, 0xf0, 0x9f, 0xe7, 0xa4, - 0x0c, 0x3f, 0x37, 0x07, 0xc3, 0xbe, 0xec, 0xa4, 0x37, 0xf9, 0x5f, 0xe3, 0xe4, 0x7e, 0x2a, 0x22, - 0x3a, 0xcf, 0x4e, 0x7a, 0x33, 0xf8, 0x05, 0x21, 0x3a, 0xa7, 0x20, 0x66, 0x13, 0x89, 0x49, 0x6f, - 0xea, 0x0f, 0x09, 0xab, 0x0b, 0x92, 0xdc, 0xd3, 0x90, 0x74, 0x27, 0x9b, 0xde, 0xf4, 0x1f, 0xe6, - 0xf4, 0x1e, 0x0d, 0xb1, 0x80, 0x6f, 0xb2, 0xeb, 0xcd, 0xe2, 0xaf, 0x0b, 0x0b, 0xf8, 0xa8, 0xc8, - 0x30, 0x0a, 0x27, 0x30, 0xbd, 0x39, 0x7d, 0x44, 0x0c, 0xa3, 0x50, 0xfe, 0x42, 0x7a, 0x93, 0xc6, - 0xfc, 0xde, 0x2c, 0xfe, 0x86, 0xe8, 0x4d, 0x8a, 0x4f, 0xc4, 0x08, 0x67, 0x04, 0xbd, 0x79, 0xfc, - 0xa2, 0x10, 0x23, 0x94, 0x10, 0xe4, 0x56, 0x01, 0xb5, 0x66, 0x03, 0xbd, 0xf9, 0x7d, 0x94, 0xf3, - 0x1b, 0x6f, 0x49, 0x06, 0x72, 0xcf, 0xc1, 0xe1, 0xf6, 0x99, 0x40, 0x6f, 0xae, 0x1f, 0xfb, 0x61, - 0x68, 0xed, 0xe6, 0x4f, 0x04, 0x72, 0xeb, 0xde, 0x94, 0xe2, 0xcf, 0x02, 0x7a, 0xb3, 0x7d, 0xe5, - 0x87, 0xc1, 0xc0, 0xed, 0x4f, 0x02, 0x72, 0x79, 0x00, 0x6f, 0x02, 0xee, 0xcd, 0xeb, 0x13, 0x9c, - 0x97, 0x8f, 0x88, 0x0c, 0x0d, 0x3e, 0xff, 0xf6, 0xa6, 0xbf, 0x21, 0x86, 0x06, 0xa7, 0x20, 0x43, - 0x43, 0x4c, 0xbd, 0xbd, 0xa9, 0x3f, 0x29, 0x86, 0x86, 0x20, 0x21, 0x9e, 0xed, 0x9b, 0xdd, 0x7a, - 0x73, 0xf8, 0x94, 0xf0, 0x6c, 0x1f, 0x55, 0x6e, 0x19, 0xc6, 0x5b, 0x26, 0xc4, 0xde, 0xac, 0x7e, - 0x89, 0xb3, 0x4a, 0x87, 0xe7, 0x43, 0xff, 0xe4, 0xc5, 0x27, 0xc3, 0xde, 0xdc, 0x3e, 0x1d, 0x9a, - 0xbc, 0xf8, 0x5c, 0x98, 0x3b, 0x0f, 0x09, 0xbd, 0x59, 0xaf, 0x93, 0xc1, 0x83, 0xba, 0xdf, 0x04, - 0xcc, 0xfc, 0xe7, 0x1f, 0x71, 0xeb, 0x08, 0x82, 0xdc, 0x59, 0x88, 0xe3, 0xc6, 0x26, 0xae, 0xf6, - 0xa2, 0xfc, 0xde, 0x8f, 0x44, 0xc0, 0x24, 0xd8, 0xb9, 0xa7, 0x01, 0xd8, 0xd6, 0x08, 0x3d, 0x0c, - 0xec, 0x41, 0xfb, 0x5f, 0x7e, 0xc4, 0xaf, 0xde, 0x78, 0x24, 0x1e, 0x03, 0x76, 0x91, 0xa7, 0x3b, - 0x83, 0xef, 0x07, 0x19, 0xd0, 0x1e, 0x79, 0x0a, 0x86, 0x5e, 0xb4, 0x0d, 0xdd, 0x51, 0x6b, 0xbd, - 0xa8, 0xff, 0x2b, 0xa7, 0x16, 0xf8, 0xc4, 0x60, 0x0d, 0xc3, 0xc2, 0x8e, 0x5a, 0xb3, 0x7b, 0xd1, - 0xfe, 0x37, 0x4e, 0xeb, 0x12, 0x10, 0xe2, 0x8a, 0x6a, 0x3b, 0xfd, 0xe8, 0xfd, 0xc7, 0x82, 0x58, - 0x10, 0x10, 0xa1, 0xc9, 0xef, 0x1d, 0xbc, 0xd7, 0x8b, 0xf6, 0x07, 0x42, 0x68, 0x8e, 0x9f, 0x7b, - 0x13, 0x24, 0xc9, 0x4f, 0x76, 0x9f, 0xae, 0x07, 0xf1, 0x9f, 0x70, 0x62, 0x8f, 0x82, 0xb4, 0x6c, - 0x3b, 0x55, 0x47, 0xeb, 0x6d, 0xec, 0x5b, 0xbc, 0xa7, 0x05, 0x7e, 0x2e, 0x0f, 0xc3, 0xb6, 0x53, - 0xad, 0x36, 0x79, 0x7e, 0xda, 0x83, 0xfc, 0x4f, 0x7f, 0xe4, 0x6e, 0x59, 0xb8, 0x34, 0xa4, 0xb7, - 0xaf, 0xee, 0x38, 0xa6, 0x41, 0x0f, 0x3c, 0x7a, 0x71, 0xf8, 0x21, 0xe7, 0xe0, 0x23, 0xc9, 0xcd, - 0x41, 0x8a, 0xe8, 0x62, 0x61, 0x13, 0xd3, 0xd3, 0xa9, 0x1e, 0x2c, 0xfe, 0x3b, 0x37, 0x40, 0x80, - 0xa8, 0xf0, 0xb3, 0x5f, 0x7b, 0x6d, 0x4a, 0xfa, 0xe6, 0x6b, 0x53, 0xd2, 0x1f, 0xbe, 0x36, 0x25, - 0x7d, 0xe8, 0x3b, 0x53, 0x03, 0xdf, 0xfc, 0xce, 0xd4, 0xc0, 0xef, 0x7d, 0x67, 0x6a, 0xa0, 0xfd, - 0x2e, 0x31, 0xcc, 0x1b, 0xf3, 0x06, 0xdb, 0x1f, 0x7e, 0x41, 0xae, 0x69, 0xce, 0x76, 0x73, 0x73, - 0xb6, 0x62, 0x34, 0xe8, 0x36, 0xae, 0xb7, 0x5b, 0xeb, 0x2e, 0x72, 0xe0, 0x3d, 0x51, 0x38, 0x5a, - 0x31, 0xec, 0x86, 0x61, 0x97, 0xd9, 0x7e, 0x2f, 0x2b, 0xf0, 0x1d, 0xdf, 0x94, 0xbf, 0xaa, 0x8f, - 0x4d, 0xdf, 0x8b, 0x30, 0x4a, 0x55, 0xa7, 0xdb, 0x5d, 0xd4, 0xdb, 0x7a, 0x06, 0x88, 0xaf, 0xff, - 0xdb, 0x38, 0xd5, 0x7a, 0xc4, 0x25, 0xa4, 0xa7, 0xf7, 0xeb, 0x30, 0xa9, 0x35, 0xcc, 0x3a, 0xa6, - 0xdb, 0xfc, 0x65, 0xb7, 0xae, 0x37, 0xbf, 0x6f, 0x70, 0x7e, 0x13, 0x1e, 0xf9, 0x82, 0xa0, 0xce, - 0x2d, 0xc2, 0xb8, 0x5a, 0xa9, 0x60, 0x33, 0xc0, 0xb2, 0x47, 0xb7, 0x08, 0x01, 0xd3, 0x9c, 0xd2, - 0xe5, 0x56, 0x78, 0xba, 0x53, 0xd7, 0xbc, 0x70, 0xaf, 0xcf, 0xf2, 0x16, 0xae, 0x61, 0xfd, 0x61, - 0x1d, 0x3b, 0x57, 0x0d, 0x6b, 0x87, 0x9b, 0xf7, 0x61, 0xd6, 0xd4, 0x20, 0xbb, 0xc1, 0x0c, 0xef, - 0x8b, 0xc2, 0x14, 0xab, 0x38, 0xbd, 0xa9, 0xda, 0xf8, 0xf4, 0x95, 0x47, 0x37, 0xb1, 0xa3, 0x3e, - 0x7a, 0xba, 0x62, 0x68, 0x3a, 0xef, 0x89, 0x09, 0xde, 0x2f, 0xa4, 0x7e, 0x96, 0xd7, 0x67, 0xdb, - 0x6e, 0xd3, 0xcb, 0xf3, 0x10, 0x9b, 0x33, 0x34, 0x1d, 0x4d, 0x42, 0xbc, 0x8a, 0x75, 0xa3, 0xc1, - 0xef, 0xdc, 0xb1, 0x02, 0xba, 0x1b, 0x06, 0xd5, 0x86, 0xd1, 0xd4, 0x1d, 0x76, 0x42, 0x51, 0x18, - 0xfe, 0xda, 0xcd, 0xe9, 0x81, 0xdf, 0xbf, 0x39, 0x1d, 0x5d, 0xd0, 0x1d, 0x85, 0x57, 0xe5, 0x62, - 0xaf, 0xbf, 0x3a, 0x2d, 0xc9, 0xcf, 0xc0, 0x50, 0x11, 0x57, 0x0e, 0xc2, 0xab, 0x88, 0x2b, 0x21, - 0x5e, 0x0f, 0x40, 0x62, 0x41, 0x77, 0xd8, 0xad, 0xc8, 0x13, 0x10, 0xd5, 0x74, 0x76, 0xd1, 0x26, - 0xd4, 0x3e, 0x81, 0x13, 0xd4, 0x22, 0xae, 0xb8, 0xa8, 0x55, 0x5c, 0x09, 0xa3, 0x12, 0xf6, 0x04, - 0x5e, 0x28, 0xfe, 0xde, 0x7f, 0x9c, 0x1a, 0x78, 0xf9, 0xb5, 0xa9, 0x81, 0x8e, 0x3d, 0xe1, 0x1f, - 0x03, 0xdc, 0xc4, 0xbc, 0x0b, 0xec, 0xea, 0x0e, 0x3b, 0x23, 0x71, 0xbb, 0xe1, 0xb7, 0x07, 0x41, - 0xe6, 0x38, 0xb6, 0xa3, 0xee, 0x68, 0x7a, 0xcd, 0xed, 0x09, 0xb5, 0xe9, 0x6c, 0x5f, 0xe3, 0x5d, - 0x71, 0x98, 0x77, 0x05, 0xc7, 0xe9, 0xde, 0x1b, 0xd9, 0xce, 0xa3, 0x2b, 0xdb, 0xa3, 0xcf, 0xe5, - 0x7f, 0x15, 0x05, 0xb4, 0xe6, 0xa8, 0x3b, 0x38, 0xdf, 0x74, 0xb6, 0x0d, 0x4b, 0xbb, 0xc6, 0x62, - 0x19, 0x06, 0x68, 0xa8, 0xbb, 0x65, 0xc7, 0xd8, 0xc1, 0xba, 0x4d, 0x4d, 0x33, 0x7c, 0xe6, 0xe8, - 0x6c, 0x1b, 0xff, 0x98, 0x25, 0x5d, 0x57, 0x78, 0xf0, 0xb3, 0xdf, 0x9e, 0xbe, 0xbf, 0xb7, 0x15, - 0x28, 0x32, 0x49, 0xae, 0x77, 0xd7, 0x29, 0x63, 0x74, 0x19, 0xd8, 0x25, 0x8b, 0x72, 0x5d, 0xb3, - 0x1d, 0x7e, 0x4f, 0xfb, 0xec, 0x6c, 0x7b, 0xdd, 0x67, 0x5b, 0xc5, 0x9c, 0xbd, 0xac, 0xd6, 0xb5, - 0xaa, 0xea, 0x18, 0x96, 0x7d, 0x71, 0x40, 0x49, 0x52, 0x56, 0x8b, 0x9a, 0xed, 0xa0, 0x75, 0x48, - 0x56, 0xb1, 0xbe, 0xc7, 0xd8, 0x46, 0xdf, 0x18, 0xdb, 0x04, 0xe1, 0x44, 0xb9, 0x3e, 0x0f, 0x48, - 0xf5, 0xe3, 0x89, 0x87, 0x49, 0xec, 0x7e, 0x65, 0x07, 0xf6, 0x01, 0xce, 0xf4, 0x1d, 0xc5, 0xb8, - 0x1a, 0x06, 0x65, 0xef, 0x03, 0xf0, 0xda, 0x44, 0x19, 0x18, 0x52, 0xab, 0x55, 0x0b, 0xdb, 0x36, - 0x3d, 0x00, 0x4c, 0x2a, 0xa2, 0x98, 0x1b, 0xff, 0xd7, 0x5f, 0x7a, 0x78, 0x24, 0xc0, 0xb1, 0x90, - 0x02, 0xb8, 0xe2, 0x92, 0x9e, 0xfa, 0xa4, 0x04, 0xe3, 0x2d, 0x2d, 0x22, 0x19, 0xa6, 0xf2, 0x1b, - 0xeb, 0x17, 0x57, 0x94, 0x85, 0x17, 0xf2, 0xeb, 0x0b, 0x2b, 0xcb, 0x65, 0x76, 0xe5, 0x7f, 0x79, - 0x6d, 0xb5, 0x34, 0xb7, 0x70, 0x61, 0xa1, 0x54, 0x4c, 0x0f, 0xa0, 0x69, 0x38, 0xd6, 0x06, 0xa7, - 0x58, 0x5a, 0x2c, 0xcd, 0xe7, 0xd7, 0x4b, 0x69, 0x09, 0xdd, 0x05, 0x27, 0xda, 0x32, 0x71, 0x51, - 0x22, 0x1d, 0x50, 0x94, 0x92, 0x8b, 0x12, 0x2d, 0x5c, 0xe8, 0x38, 0x8a, 0x1e, 0xea, 0xea, 0x3f, - 0xbb, 0xee, 0x70, 0x09, 0x8e, 0xa7, 0x77, 0x47, 0xe0, 0x68, 0x78, 0xca, 0x50, 0xf5, 0xbd, 0x0e, - 0xaf, 0x3e, 0x3b, 0x44, 0xb3, 0x8b, 0x10, 0xcd, 0xeb, 0x7b, 0xe8, 0x28, 0xcb, 0xa7, 0xcb, 0x4d, - 0xab, 0xce, 0x63, 0xd0, 0x10, 0x29, 0x6f, 0x58, 0x75, 0x12, 0x9b, 0xc4, 0x45, 0x7f, 0xe9, 0x64, - 0x8a, 0xdf, 0xde, 0xcf, 0xa5, 0x3f, 0xfa, 0xea, 0xf4, 0xc0, 0xe7, 0x5f, 0x9d, 0x1e, 0xf8, 0xc1, - 0xa7, 0xa6, 0x07, 0x5e, 0xfe, 0x83, 0x99, 0x81, 0xc2, 0x4e, 0x58, 0xbd, 0xaf, 0xf4, 0x9c, 0x4d, - 0x13, 0x79, 0x7d, 0x8f, 0x06, 0xa2, 0x55, 0xe9, 0x85, 0x38, 0x55, 0x4e, 0x1c, 0xa0, 0x4e, 0x85, - 0x0f, 0x50, 0x9f, 0xc3, 0xf5, 0xfa, 0x25, 0xdd, 0xb8, 0x4a, 0x7b, 0xd5, 0xb3, 0xc1, 0x47, 0x22, - 0x30, 0xd5, 0x32, 0x6d, 0xf2, 0x0c, 0xa3, 0xd3, 0xf3, 0xd7, 0x1c, 0x24, 0x8a, 0x22, 0x71, 0xc9, - 0xc0, 0x90, 0x8d, 0x2b, 0x86, 0x5e, 0x65, 0x23, 0x3d, 0xaa, 0x88, 0x22, 0x51, 0x5b, 0x57, 0x75, - 0xc3, 0xe6, 0x77, 0xee, 0x59, 0xa1, 0xf0, 0x71, 0x69, 0x7f, 0xf9, 0xc2, 0x88, 0x68, 0x49, 0xa8, - 0xf9, 0x68, 0xcf, 0x23, 0xe5, 0x1d, 0xa2, 0xa5, 0xab, 0x44, 0xe0, 0x58, 0xb9, 0x5f, 0xab, 0xfc, - 0x62, 0x04, 0xa6, 0xc3, 0x56, 0x21, 0x69, 0x9b, 0xed, 0xa8, 0x0d, 0xb3, 0x93, 0x59, 0xce, 0x43, - 0x72, 0x5d, 0xe0, 0xec, 0xdb, 0x2e, 0x37, 0xf6, 0x69, 0x97, 0x51, 0xb7, 0x29, 0x61, 0x98, 0x33, - 0x7d, 0x1a, 0xc6, 0xd5, 0xe3, 0x40, 0x96, 0xf9, 0x6c, 0x0c, 0x4e, 0xd0, 0x47, 0x59, 0x56, 0x43, - 0xd3, 0x9d, 0xd3, 0x15, 0x6b, 0xcf, 0x74, 0x68, 0xe2, 0x66, 0x6c, 0x71, 0xbb, 0x8c, 0x7b, 0xd5, - 0xb3, 0xac, 0xba, 0xc3, 0xc8, 0xd9, 0x82, 0xf8, 0x2a, 0xa1, 0x23, 0x16, 0x71, 0x0c, 0x47, 0xad, - 0x73, 0x4b, 0xb1, 0x02, 0x81, 0xb2, 0x87, 0x5c, 0x11, 0x06, 0xd5, 0xc4, 0x1b, 0xae, 0x3a, 0x56, - 0xb7, 0xd8, 0x7d, 0xf8, 0x28, 0x1d, 0x50, 0x09, 0x02, 0xa0, 0x57, 0xdf, 0x27, 0x21, 0xae, 0x36, - 0xd9, 0x55, 0x8e, 0x28, 0x19, 0x69, 0xb4, 0x20, 0x5f, 0x82, 0x21, 0x7e, 0xa0, 0x8c, 0xd2, 0x10, - 0xdd, 0xc1, 0x7b, 0xb4, 0x9d, 0x94, 0x42, 0x7e, 0xa2, 0x59, 0x88, 0x53, 0xe1, 0xf9, 0x04, 0x92, - 0x99, 0x6d, 0x91, 0x7e, 0x96, 0x0a, 0xa9, 0x30, 0x34, 0xf9, 0x19, 0x48, 0x14, 0x8d, 0x86, 0xa6, - 0x1b, 0x41, 0x6e, 0x49, 0xc6, 0x8d, 0xca, 0x6c, 0x36, 0x79, 0xbe, 0xa1, 0xb0, 0x02, 0x3a, 0x0c, - 0x83, 0xec, 0x7d, 0x04, 0xbf, 0x8e, 0xc2, 0x4b, 0xf2, 0x1c, 0x0c, 0x51, 0xde, 0x2b, 0x26, 0x42, - 0xfc, 0x65, 0x1d, 0x7f, 0x88, 0x41, 0x53, 0x53, 0xce, 0x3e, 0xe2, 0x09, 0x8b, 0x20, 0x56, 0x55, - 0x1d, 0x95, 0xeb, 0x4d, 0x7f, 0xcb, 0x6f, 0x86, 0x04, 0x67, 0x62, 0xa3, 0x33, 0x10, 0x35, 0x4c, - 0x9b, 0x5f, 0x28, 0xc9, 0x76, 0x52, 0x65, 0xc5, 0x2c, 0xc4, 0x48, 0xa6, 0xa2, 0x10, 0xe4, 0x82, - 0xd2, 0x31, 0xa8, 0x3e, 0xe9, 0x0b, 0xaa, 0xbe, 0x2e, 0xf7, 0xfd, 0x64, 0x5d, 0xda, 0xe2, 0x0e, - 0xae, 0xb3, 0x7c, 0x2a, 0x02, 0x53, 0xbe, 0xda, 0x2b, 0xd8, 0xb2, 0x35, 0x43, 0xe7, 0xf3, 0x39, - 0xf3, 0x16, 0xe4, 0x13, 0x92, 0xd7, 0x77, 0x70, 0x97, 0x37, 0x41, 0x34, 0x6f, 0x9a, 0x28, 0x0b, - 0x09, 0x5a, 0xae, 0x18, 0xcc, 0x5f, 0x62, 0x8a, 0x5b, 0x26, 0x75, 0xb6, 0xb1, 0xe5, 0x5c, 0x55, - 0x2d, 0xf7, 0x09, 0xa1, 0x28, 0xcb, 0x4f, 0x41, 0x72, 0xce, 0xd0, 0x6d, 0xac, 0xdb, 0x4d, 0x3a, - 0x06, 0x37, 0xeb, 0x46, 0x65, 0x87, 0x73, 0x60, 0x05, 0x62, 0x70, 0xd5, 0x34, 0x29, 0x65, 0x4c, - 0x21, 0x3f, 0x59, 0x6e, 0x58, 0x58, 0xeb, 0x68, 0xa2, 0xa7, 0xf6, 0x6f, 0x22, 0xae, 0xa4, 0x6b, - 0xa3, 0xff, 0x2d, 0xc1, 0xf1, 0xd6, 0x01, 0xb5, 0x83, 0xf7, 0xec, 0xfd, 0x8e, 0xa7, 0xe7, 0x21, - 0xb9, 0x4a, 0xdf, 0xf1, 0x5f, 0xc2, 0x7b, 0x28, 0x0b, 0x43, 0xb8, 0x7a, 0xe6, 0xec, 0xd9, 0x47, - 0x9f, 0x62, 0xde, 0x7e, 0x71, 0x40, 0x11, 0x00, 0x34, 0x05, 0x49, 0x1b, 0x57, 0xcc, 0x33, 0x67, - 0xcf, 0xed, 0x3c, 0xca, 0xdc, 0x8b, 0x64, 0x40, 0x2e, 0x28, 0x97, 0x20, 0x5a, 0xbf, 0xfe, 0xa9, - 0x69, 0xa9, 0x10, 0x87, 0xa8, 0xdd, 0x6c, 0xdc, 0x51, 0x1f, 0x79, 0x25, 0x0e, 0x33, 0x7e, 0x4a, - 0x1a, 0xa9, 0xdc, 0xac, 0x84, 0xdb, 0x20, 0xed, 0xb3, 0x01, 0xc5, 0xe8, 0x90, 0xcc, 0x76, 0xb5, - 0xa4, 0xfc, 0xeb, 0x12, 0xa4, 0xdc, 0x54, 0x69, 0x0d, 0x3b, 0xe8, 0xbc, 0x3f, 0xff, 0xe1, 0xc3, - 0xe6, 0xd8, 0x6c, 0xb8, 0x2d, 0x2f, 0xa5, 0x53, 0x7c, 0xe8, 0xe8, 0x09, 0xea, 0x88, 0xa6, 0x61, - 0xf3, 0x67, 0x65, 0x3d, 0x48, 0x5d, 0x64, 0xf4, 0x10, 0x20, 0x1a, 0xe1, 0xca, 0x57, 0x0c, 0x47, - 0xd3, 0x6b, 0x65, 0xd3, 0xb8, 0xca, 0x1f, 0xeb, 0x46, 0x95, 0x34, 0xad, 0xb9, 0x4c, 0x2b, 0x56, - 0x09, 0x9c, 0x08, 0x9d, 0x74, 0xb9, 0x04, 0xd3, 0x3b, 0x12, 0x04, 0x44, 0x11, 0x9d, 0x87, 0x21, - 0xb3, 0xb9, 0x59, 0x16, 0x11, 0x63, 0xf8, 0xcc, 0xf1, 0x76, 0xe3, 0x5f, 0xf8, 0x07, 0x8f, 0x00, - 0x83, 0x66, 0x73, 0x93, 0x78, 0xcb, 0x5d, 0x90, 0x6a, 0x23, 0xcc, 0xf0, 0x15, 0x4f, 0x0e, 0xfa, - 0xf9, 0x08, 0xae, 0x41, 0xd9, 0xb4, 0x34, 0xc3, 0xd2, 0x9c, 0x3d, 0x9a, 0xbf, 0x46, 0x95, 0xb4, - 0xa8, 0x58, 0xe5, 0x70, 0x79, 0x07, 0xc6, 0xd6, 0xe8, 0xfa, 0xd6, 0x93, 0xfc, 0xac, 0x27, 0x9f, - 0xd4, 0x5b, 0xbe, 0x8e, 0x92, 0x45, 0x5a, 0x24, 0x2b, 0x3c, 0xdb, 0xd1, 0x3b, 0x9f, 0xd8, 0xbf, - 0x77, 0x06, 0x33, 0xc4, 0x3f, 0x3e, 0x1a, 0x18, 0x9c, 0xcc, 0x39, 0xfd, 0xe1, 0xab, 0x5f, 0xc7, - 0xec, 0x95, 0x4d, 0x64, 0xbb, 0x4f, 0xaa, 0xd9, 0x1e, 0x61, 0x34, 0xdb, 0x73, 0x08, 0xc9, 0x4f, - 0xc1, 0xc8, 0xaa, 0x6a, 0x39, 0x6b, 0xd8, 0xb9, 0x88, 0xd5, 0x2a, 0xb6, 0x82, 0xb3, 0xee, 0x88, - 0x98, 0x75, 0x11, 0xc4, 0xe8, 0xd4, 0xca, 0x66, 0x1d, 0xfa, 0x5b, 0xde, 0x86, 0x18, 0xbd, 0x19, - 0xea, 0xce, 0xc8, 0x9c, 0x82, 0xcd, 0xc8, 0x24, 0x96, 0xee, 0x39, 0xd8, 0x16, 0xe9, 0x2d, 0x2d, - 0xa0, 0xc7, 0xc5, 0xbc, 0x1a, 0xed, 0x3e, 0xaf, 0x72, 0x47, 0xe4, 0xb3, 0x6b, 0x1d, 0x86, 0x0a, - 0x24, 0x14, 0x2f, 0x14, 0x5d, 0x41, 0x24, 0x4f, 0x10, 0xb4, 0x04, 0x63, 0xa6, 0x6a, 0x39, 0xf4, - 0x49, 0xcc, 0x36, 0xd5, 0x82, 0xfb, 0xfa, 0x74, 0xeb, 0xc8, 0x0b, 0x28, 0xcb, 0x5b, 0x19, 0x31, - 0xfd, 0x40, 0xf9, 0x8f, 0x62, 0x30, 0xc8, 0x8d, 0xf1, 0x26, 0x18, 0xe2, 0x66, 0xe5, 0xde, 0x79, - 0x62, 0xb6, 0x75, 0x62, 0x9a, 0x75, 0x27, 0x10, 0xce, 0x4f, 0xd0, 0xa0, 0xfb, 0x20, 0x51, 0xd9, - 0x56, 0x35, 0xbd, 0xac, 0x55, 0xc5, 0x56, 0xc3, 0x6b, 0x37, 0xa7, 0x87, 0xe6, 0x08, 0x6c, 0xa1, - 0xa8, 0x0c, 0xd1, 0xca, 0x85, 0x2a, 0xc9, 0x04, 0xb6, 0xb1, 0x56, 0xdb, 0x76, 0xf8, 0x08, 0xe3, - 0x25, 0xf4, 0x24, 0xc4, 0x88, 0x43, 0xf0, 0x07, 0x93, 0xd9, 0x96, 0x0d, 0x1f, 0x37, 0xd9, 0x2b, - 0x24, 0x48, 0xc3, 0x1f, 0xfa, 0xf6, 0xb4, 0xa4, 0x50, 0x0a, 0x34, 0x07, 0x23, 0x75, 0xd5, 0x76, - 0xca, 0x74, 0x06, 0x23, 0xcd, 0xc7, 0xf9, 0x7a, 0xbb, 0xc5, 0x20, 0xdc, 0xb0, 0x5c, 0xf4, 0x61, - 0x42, 0xc5, 0x40, 0x55, 0x74, 0x12, 0xd2, 0x94, 0x49, 0xc5, 0x68, 0x34, 0x34, 0x87, 0xe5, 0x56, - 0x83, 0xd4, 0xee, 0xa3, 0x04, 0x3e, 0x47, 0xc1, 0x34, 0xc3, 0x3a, 0x06, 0x49, 0xfa, 0x44, 0x8b, - 0xa2, 0xb0, 0xeb, 0xc8, 0x09, 0x02, 0xa0, 0x95, 0xf7, 0xc3, 0x98, 0x17, 0x1f, 0x19, 0x4a, 0x82, - 0x71, 0xf1, 0xc0, 0x14, 0xf1, 0x11, 0x98, 0xd4, 0xf1, 0x2e, 0xbd, 0x20, 0x1d, 0xc0, 0x4e, 0x52, - 0x6c, 0x44, 0xea, 0x2e, 0x07, 0x29, 0xee, 0x85, 0xd1, 0x8a, 0x30, 0x3e, 0xc3, 0x05, 0x8a, 0x3b, - 0xe2, 0x42, 0x29, 0xda, 0x51, 0x48, 0xa8, 0xa6, 0xc9, 0x10, 0x86, 0x79, 0x7c, 0x34, 0x4d, 0x5a, - 0x75, 0x0a, 0xc6, 0xa9, 0x8e, 0x16, 0xb6, 0x9b, 0x75, 0x87, 0x33, 0x49, 0x51, 0x9c, 0x31, 0x52, - 0xa1, 0x30, 0x38, 0xc5, 0xbd, 0x1b, 0x46, 0xf0, 0x15, 0xad, 0x8a, 0xf5, 0x0a, 0x66, 0x78, 0x23, - 0x14, 0x2f, 0x25, 0x80, 0x14, 0xe9, 0x01, 0x70, 0xe3, 0x5e, 0x59, 0xc4, 0xe4, 0x51, 0xc6, 0x4f, - 0xc0, 0xf3, 0x0c, 0x2c, 0x67, 0x20, 0x56, 0x54, 0x1d, 0x95, 0x24, 0x18, 0xce, 0x2e, 0x9b, 0x68, - 0x52, 0x0a, 0xf9, 0x29, 0xbf, 0x1e, 0x81, 0xd8, 0x65, 0xc3, 0xc1, 0xe8, 0x31, 0x5f, 0x02, 0x38, - 0xda, 0xce, 0x9f, 0xd7, 0xb4, 0x9a, 0x8e, 0xab, 0x4b, 0x76, 0xcd, 0xf7, 0x3d, 0x05, 0xcf, 0x9d, - 0x22, 0x01, 0x77, 0x9a, 0x84, 0xb8, 0x65, 0x34, 0xf5, 0xaa, 0xb8, 0xc9, 0x4b, 0x0b, 0xa8, 0x04, - 0x09, 0xd7, 0x4b, 0x62, 0xbd, 0xbc, 0x64, 0x8c, 0x78, 0x09, 0xf1, 0x61, 0x0e, 0x50, 0x86, 0x36, - 0xb9, 0xb3, 0x14, 0x20, 0xe9, 0x06, 0x2f, 0xee, 0x6d, 0xfd, 0x39, 0xac, 0x47, 0x46, 0x26, 0x13, - 0xb7, 0xef, 0x5d, 0xe3, 0x31, 0x8f, 0x4b, 0xbb, 0x15, 0xdc, 0x7a, 0x01, 0xb7, 0xe2, 0xdf, 0x76, - 0x18, 0xa2, 0x7a, 0x79, 0x6e, 0xc5, 0xbe, 0xef, 0x70, 0x1c, 0x92, 0xb6, 0x56, 0xd3, 0x55, 0xa7, - 0x69, 0x61, 0xee, 0x79, 0x1e, 0x40, 0xfe, 0x8a, 0x04, 0x83, 0xcc, 0x93, 0x7d, 0x76, 0x93, 0xda, - 0xdb, 0x2d, 0xd2, 0xc9, 0x6e, 0xd1, 0x83, 0xdb, 0x2d, 0x0f, 0xe0, 0x0a, 0x63, 0xf3, 0x27, 0xf7, - 0x6d, 0x32, 0x06, 0x26, 0xe2, 0x9a, 0x56, 0xe3, 0x03, 0xd5, 0x47, 0x24, 0xff, 0x07, 0x89, 0x24, - 0xb1, 0xbc, 0x1e, 0xe5, 0x61, 0x44, 0xc8, 0x55, 0xde, 0xaa, 0xab, 0x35, 0xee, 0x3b, 0x27, 0x3a, - 0x0a, 0x77, 0xa1, 0xae, 0xd6, 0x94, 0x61, 0x2e, 0x0f, 0x29, 0xb4, 0xef, 0x87, 0x48, 0x87, 0x7e, - 0x08, 0x74, 0x7c, 0xf4, 0x60, 0x1d, 0x1f, 0xe8, 0xa2, 0x58, 0xb8, 0x8b, 0xbe, 0x18, 0xa1, 0x8b, - 0x19, 0xd3, 0xb0, 0xd5, 0xfa, 0x8f, 0x63, 0x44, 0x1c, 0x83, 0xa4, 0x69, 0xd4, 0xcb, 0xac, 0x86, - 0xdd, 0x70, 0x4f, 0x98, 0x46, 0x5d, 0x69, 0xe9, 0xf6, 0xf8, 0x6d, 0x1a, 0x2e, 0x83, 0xb7, 0xc1, - 0x6a, 0x43, 0x61, 0xab, 0x59, 0x90, 0x62, 0xa6, 0xe0, 0x73, 0xd9, 0x23, 0xc4, 0x06, 0x74, 0x72, - 0x94, 0x5a, 0xe7, 0x5e, 0x26, 0x36, 0xc3, 0x54, 0x38, 0x1e, 0xa1, 0x60, 0xa1, 0xbf, 0xdd, 0x2a, - 0xd8, 0xef, 0x96, 0x0a, 0xc7, 0x93, 0xff, 0xa6, 0x04, 0xb0, 0x48, 0x2c, 0x4b, 0xf5, 0x25, 0xb3, - 0x90, 0x4d, 0x45, 0x28, 0x07, 0x5a, 0x9e, 0xea, 0xd4, 0x69, 0xbc, 0xfd, 0x94, 0xed, 0x97, 0x7b, - 0x0e, 0x46, 0x3c, 0x67, 0xb4, 0xb1, 0x10, 0x66, 0xaa, 0x4b, 0x56, 0xbd, 0x86, 0x1d, 0x25, 0x75, - 0xc5, 0x57, 0x92, 0xff, 0xb9, 0x04, 0x49, 0x2a, 0xd3, 0x12, 0x76, 0xd4, 0x40, 0x1f, 0x4a, 0x07, - 0xef, 0xc3, 0x13, 0x00, 0x8c, 0x8d, 0xad, 0x5d, 0xc3, 0xdc, 0xb3, 0x92, 0x14, 0xb2, 0xa6, 0x5d, - 0xc3, 0xe8, 0x9c, 0x6b, 0xf0, 0x68, 0x77, 0x83, 0x8b, 0xac, 0x9b, 0x9b, 0xfd, 0x08, 0x0c, 0xd1, - 0x4f, 0x54, 0xed, 0xda, 0x3c, 0x91, 0x1e, 0xd4, 0x9b, 0x8d, 0xf5, 0x5d, 0x5b, 0x7e, 0x11, 0x86, - 0xd6, 0x77, 0xd9, 0xde, 0xc8, 0x31, 0x48, 0x5a, 0x86, 0xc1, 0xe7, 0x64, 0x96, 0x0b, 0x25, 0x08, - 0x80, 0x4e, 0x41, 0x62, 0x3f, 0x20, 0xe2, 0xed, 0x07, 0x78, 0x1b, 0x1a, 0xd1, 0xbe, 0x36, 0x34, - 0x4e, 0xfd, 0x3b, 0x09, 0x86, 0x7d, 0xf1, 0x01, 0x3d, 0x0a, 0x87, 0x0a, 0x8b, 0x2b, 0x73, 0x97, - 0xca, 0x0b, 0xc5, 0xf2, 0x85, 0xc5, 0xfc, 0xbc, 0xf7, 0x86, 0x2b, 0x7b, 0xf8, 0xfa, 0x8d, 0x19, - 0xe4, 0xc3, 0xdd, 0xd0, 0xe9, 0x8e, 0x12, 0x3a, 0x0d, 0x93, 0x41, 0x92, 0x7c, 0x61, 0xad, 0xb4, - 0xbc, 0x9e, 0x96, 0xb2, 0x87, 0xae, 0xdf, 0x98, 0x19, 0xf7, 0x51, 0xe4, 0x37, 0x6d, 0xac, 0x3b, - 0xad, 0x04, 0x73, 0x2b, 0x4b, 0x4b, 0x0b, 0xeb, 0xe9, 0x48, 0x0b, 0x01, 0x0f, 0xd8, 0x0f, 0xc0, - 0x78, 0x90, 0x60, 0x79, 0x61, 0x31, 0x1d, 0xcd, 0xa2, 0xeb, 0x37, 0x66, 0x46, 0x7d, 0xd8, 0xcb, - 0x5a, 0x3d, 0x9b, 0xf8, 0xc0, 0xa7, 0xa7, 0x06, 0x7e, 0xe5, 0x97, 0xa7, 0x24, 0xa2, 0xd9, 0x48, - 0x20, 0x46, 0xa0, 0x87, 0xe0, 0xc8, 0xda, 0xc2, 0xfc, 0x72, 0xa9, 0x58, 0x5e, 0x5a, 0x9b, 0x17, - 0x7b, 0xd0, 0x42, 0xbb, 0xb1, 0xeb, 0x37, 0x66, 0x86, 0xb9, 0x4a, 0x9d, 0xb0, 0x57, 0x95, 0xd2, - 0xe5, 0x95, 0xf5, 0x52, 0x5a, 0x62, 0xd8, 0xab, 0x16, 0xbe, 0x62, 0x38, 0xec, 0x1b, 0x76, 0x8f, - 0xc0, 0xd1, 0x36, 0xd8, 0xae, 0x62, 0xe3, 0xd7, 0x6f, 0xcc, 0x8c, 0xac, 0x5a, 0x98, 0x8d, 0x1f, - 0x4a, 0x31, 0x0b, 0x99, 0x56, 0x8a, 0x95, 0xd5, 0x95, 0xb5, 0xfc, 0x62, 0x7a, 0x26, 0x9b, 0xbe, - 0x7e, 0x63, 0x26, 0x25, 0x82, 0x21, 0xdd, 0xe8, 0x77, 0x35, 0xbb, 0x93, 0x2b, 0x9e, 0x3f, 0x7d, - 0x18, 0xee, 0xe9, 0x70, 0xc6, 0x24, 0x4e, 0x27, 0x0e, 0x74, 0xca, 0xd4, 0x71, 0x9f, 0x3d, 0xdb, - 0x63, 0xfb, 0xb9, 0xf7, 0xd2, 0xe9, 0xe0, 0x27, 0x58, 0xd9, 0xae, 0x8b, 0x3b, 0xf9, 0x83, 0x12, - 0x8c, 0x5e, 0xd4, 0x6c, 0xc7, 0xb0, 0xb4, 0x8a, 0x5a, 0xa7, 0x2f, 0xb7, 0xce, 0xf5, 0x1b, 0x5b, - 0x43, 0x43, 0xfd, 0x69, 0x18, 0xbc, 0xa2, 0xd6, 0x59, 0x50, 0x8b, 0xd2, 0x0f, 0xcd, 0x74, 0x38, - 0xf2, 0x71, 0x43, 0x9b, 0x60, 0xc0, 0xc8, 0xe4, 0x5f, 0x8b, 0xc0, 0x18, 0x1d, 0x0c, 0x36, 0xfb, - 0x04, 0x19, 0x59, 0x63, 0x15, 0x20, 0x66, 0xa9, 0x0e, 0xdf, 0x34, 0x2c, 0xcc, 0xf2, 0xd3, 0xc7, - 0xfb, 0xfa, 0x38, 0x4b, 0x2b, 0xe2, 0x8a, 0x42, 0x69, 0xd1, 0xdb, 0x21, 0xd1, 0x50, 0x77, 0xcb, - 0x94, 0x0f, 0x5b, 0xb9, 0xe4, 0xf7, 0xc7, 0xe7, 0xd6, 0xcd, 0xe9, 0xb1, 0x3d, 0xb5, 0x51, 0xcf, - 0xc9, 0x82, 0x8f, 0xac, 0x0c, 0x35, 0xd4, 0x5d, 0x22, 0x22, 0x32, 0x61, 0x8c, 0x40, 0x2b, 0xdb, - 0xaa, 0x5e, 0xc3, 0xac, 0x11, 0xba, 0x05, 0x5a, 0xb8, 0xb8, 0xef, 0x46, 0x0e, 0x7b, 0x8d, 0xf8, - 0xd8, 0xc9, 0xca, 0x48, 0x43, 0xdd, 0x9d, 0xa3, 0x00, 0xd2, 0x62, 0x2e, 0xf1, 0xd1, 0x57, 0xa7, - 0x07, 0xe8, 0x89, 0xee, 0xb7, 0x24, 0x00, 0xcf, 0x62, 0xe8, 0xed, 0x90, 0xae, 0xb8, 0x25, 0x4a, - 0x2b, 0xce, 0x26, 0xef, 0xef, 0xd4, 0x17, 0x21, 0x7b, 0xb3, 0xb9, 0xf9, 0x9b, 0x37, 0xa7, 0x25, - 0x65, 0xac, 0x12, 0xea, 0x8a, 0xb7, 0xc1, 0x70, 0xd3, 0xac, 0xaa, 0x0e, 0x2e, 0xd3, 0x75, 0x5c, - 0xa4, 0xe7, 0x3c, 0x3f, 0x45, 0x78, 0xdd, 0xba, 0x39, 0x8d, 0x98, 0x5a, 0x3e, 0x62, 0x99, 0xce, - 0xfe, 0xc0, 0x20, 0x84, 0xc0, 0xa7, 0xd3, 0xd7, 0x25, 0x18, 0x2e, 0xfa, 0xee, 0x54, 0x66, 0x60, - 0xa8, 0x61, 0xe8, 0xda, 0x0e, 0xf7, 0xc7, 0xa4, 0x22, 0x8a, 0x28, 0x0b, 0x09, 0xf6, 0x98, 0xd5, - 0xd9, 0x13, 0x5b, 0xa1, 0xa2, 0x4c, 0xa8, 0xae, 0xe2, 0x4d, 0x5b, 0x13, 0xbd, 0xa1, 0x88, 0x22, - 0xba, 0x00, 0x69, 0x1b, 0x57, 0x9a, 0x96, 0xe6, 0xec, 0x95, 0x2b, 0x86, 0xee, 0xa8, 0x15, 0x87, - 0x3d, 0x8b, 0x2c, 0x1c, 0xbb, 0x75, 0x73, 0xfa, 0x08, 0x93, 0x35, 0x8c, 0x21, 0x2b, 0x63, 0x02, - 0x34, 0xc7, 0x20, 0xa4, 0x85, 0x2a, 0x76, 0x54, 0xad, 0x6e, 0x67, 0xd8, 0xe5, 0x04, 0x51, 0xf4, - 0xe9, 0xf2, 0xb9, 0x21, 0xff, 0xc6, 0xd6, 0x05, 0x48, 0x1b, 0x26, 0xb6, 0x02, 0x89, 0xa8, 0x14, - 0x6e, 0x39, 0x8c, 0x21, 0x2b, 0x63, 0x02, 0x24, 0x92, 0x54, 0x87, 0x74, 0xb3, 0x58, 0x28, 0x9a, - 0xcd, 0x4d, 0x6f, 0x3f, 0x6c, 0xb2, 0xa5, 0x37, 0xf2, 0xfa, 0x5e, 0xe1, 0x31, 0x8f, 0x7b, 0x98, - 0x4e, 0xfe, 0xc6, 0x97, 0x1e, 0x9e, 0xe4, 0xae, 0xe1, 0xed, 0x4f, 0x5d, 0xc2, 0x7b, 0xa4, 0xfb, - 0x39, 0xea, 0x2a, 0xc5, 0x24, 0x69, 0xe7, 0x8b, 0xaa, 0x56, 0x17, 0xcf, 0xfb, 0x15, 0x5e, 0x42, - 0x39, 0x18, 0xb4, 0x1d, 0xd5, 0x69, 0xda, 0xfc, 0xa4, 0x57, 0xee, 0xe4, 0x6a, 0x05, 0x43, 0xaf, - 0xae, 0x51, 0x4c, 0x85, 0x53, 0xa0, 0x0b, 0x30, 0xc8, 0x8f, 0xd0, 0xe3, 0xfb, 0x1e, 0xdf, 0xf4, - 0xae, 0x04, 0xa3, 0x26, 0x16, 0xa9, 0xe2, 0x3a, 0xae, 0xb1, 0xb4, 0x6a, 0x5b, 0x25, 0xab, 0x0f, - 0xfa, 0xed, 0xbd, 0xc2, 0xc2, 0xbe, 0x07, 0x21, 0xb7, 0x54, 0x98, 0x9f, 0xac, 0x8c, 0xb9, 0xa0, - 0x35, 0x0a, 0x41, 0x97, 0x02, 0x97, 0x7f, 0xf9, 0x07, 0x2a, 0xef, 0xee, 0xa4, 0xbe, 0xcf, 0xa7, - 0xc5, 0xfe, 0x84, 0xff, 0xea, 0xf0, 0x05, 0x48, 0x37, 0xf5, 0x4d, 0x43, 0xa7, 0x6f, 0x70, 0x79, - 0x7e, 0x4f, 0xd6, 0x77, 0x51, 0xbf, 0x73, 0x84, 0x31, 0x64, 0x65, 0xcc, 0x05, 0x5d, 0x64, 0xab, - 0x80, 0x2a, 0x8c, 0x7a, 0x58, 0x74, 0xa0, 0x26, 0x7b, 0x0e, 0xd4, 0xbb, 0xf8, 0x40, 0x3d, 0x14, - 0x6e, 0xc5, 0x1b, 0xab, 0x23, 0x2e, 0x90, 0x90, 0xa1, 0x8b, 0x00, 0x5e, 0x78, 0xa0, 0xfb, 0x14, - 0xc3, 0x9d, 0x3b, 0xde, 0x8b, 0x31, 0x62, 0xbd, 0xe7, 0xd1, 0xa2, 0x77, 0xc2, 0x44, 0x43, 0xd3, - 0xcb, 0x36, 0xae, 0x6f, 0x95, 0xb9, 0x81, 0x09, 0x4b, 0xfa, 0x09, 0xa5, 0xc2, 0xe2, 0xfe, 0xfc, - 0xe1, 0xd6, 0xcd, 0xe9, 0x2c, 0x0f, 0xa1, 0xad, 0x2c, 0x65, 0x65, 0xbc, 0xa1, 0xe9, 0x6b, 0xb8, - 0xbe, 0x55, 0x74, 0x61, 0xb9, 0xd4, 0x07, 0x5e, 0x9d, 0x1e, 0xe0, 0xc3, 0x75, 0x40, 0x3e, 0x47, - 0xf7, 0xce, 0xf9, 0x30, 0xc3, 0x36, 0x59, 0x93, 0xa8, 0xa2, 0xc0, 0xaf, 0x1a, 0x78, 0x00, 0x36, - 0xcc, 0x5f, 0xfe, 0x83, 0x19, 0x49, 0xfe, 0x9c, 0x04, 0x83, 0xc5, 0xcb, 0xab, 0xaa, 0x66, 0xa1, - 0x05, 0x18, 0xf7, 0x3c, 0x27, 0x38, 0xc8, 0x8f, 0xdf, 0xba, 0x39, 0x9d, 0x09, 0x3b, 0x97, 0x3b, - 0xca, 0x3d, 0x07, 0x16, 0xc3, 0x7c, 0xa1, 0xd3, 0xc2, 0x35, 0xc0, 0xaa, 0x05, 0x45, 0x6e, 0x5d, - 0xd6, 0x86, 0xd4, 0x2c, 0xc1, 0x10, 0x93, 0xd6, 0x46, 0x39, 0x88, 0x9b, 0xe4, 0x07, 0x3f, 0x18, - 0x98, 0xea, 0xe8, 0xbc, 0x14, 0xdf, 0xdd, 0xc8, 0x24, 0x24, 0xf2, 0x87, 0x23, 0x00, 0xc5, 0xcb, - 0x97, 0xd7, 0x2d, 0xcd, 0xac, 0x63, 0xe7, 0x76, 0x6a, 0xbe, 0x0e, 0x87, 0x7c, 0xab, 0x24, 0xab, - 0x12, 0xd2, 0x7e, 0xe6, 0xd6, 0xcd, 0xe9, 0xe3, 0x61, 0xed, 0x7d, 0x68, 0xb2, 0x32, 0xe1, 0xad, - 0x97, 0xac, 0x4a, 0x5b, 0xae, 0x55, 0xdb, 0x71, 0xb9, 0x46, 0x3b, 0x73, 0xf5, 0xa1, 0xf9, 0xb9, - 0x16, 0x6d, 0xa7, 0xbd, 0x69, 0xd7, 0x60, 0xd8, 0x33, 0x89, 0x8d, 0x8a, 0x90, 0x70, 0xf8, 0x6f, - 0x6e, 0x61, 0xb9, 0xb3, 0x85, 0x05, 0x19, 0xb7, 0xb2, 0x4b, 0x29, 0xff, 0x99, 0x04, 0xe0, 0xf9, - 0xec, 0x4f, 0xa7, 0x8b, 0x91, 0x50, 0xce, 0x03, 0x6f, 0xf4, 0x40, 0xa9, 0x1a, 0xa7, 0x0e, 0xd9, - 0xf3, 0xe7, 0x22, 0x30, 0xb1, 0x21, 0x22, 0xcf, 0x4f, 0xbd, 0x0d, 0x56, 0x61, 0x08, 0xeb, 0x8e, - 0xa5, 0x51, 0x23, 0x90, 0xde, 0x7e, 0xa4, 0x53, 0x6f, 0xb7, 0xd1, 0x89, 0x7e, 0x44, 0x4a, 0x6c, - 0xba, 0x73, 0x36, 0x21, 0x6b, 0xfc, 0x42, 0x14, 0x32, 0x9d, 0x28, 0xd1, 0x1c, 0x8c, 0x55, 0x2c, - 0xcc, 0x2e, 0x5e, 0xf9, 0x77, 0xfe, 0x0a, 0x59, 0x2f, 0xb3, 0x0c, 0x21, 0xc8, 0xca, 0xa8, 0x80, - 0xf0, 0xd9, 0xa3, 0x06, 0x24, 0xed, 0x23, 0x6e, 0x47, 0xef, 0x6f, 0xf5, 0x97, 0xe7, 0xc9, 0x7c, - 0xfa, 0x10, 0x8d, 0x04, 0x19, 0xb0, 0xf9, 0x63, 0xd4, 0x83, 0xd2, 0x09, 0xe4, 0x25, 0x18, 0xd3, - 0x74, 0xcd, 0xd1, 0xd4, 0x7a, 0x79, 0x53, 0xad, 0xab, 0x7a, 0xe5, 0x20, 0x59, 0x33, 0x0b, 0xf9, - 0xbc, 0xd9, 0x10, 0x3b, 0x59, 0x19, 0xe5, 0x90, 0x02, 0x03, 0xa0, 0x8b, 0x30, 0x24, 0x9a, 0x8a, - 0x1d, 0x28, 0xdb, 0x10, 0xe4, 0xbe, 0x04, 0xef, 0xe7, 0xa3, 0x30, 0xae, 0xe0, 0xea, 0xff, 0xef, - 0x8a, 0xfd, 0x75, 0xc5, 0x12, 0x00, 0x1b, 0xee, 0x24, 0xc0, 0x1e, 0xa0, 0x37, 0x48, 0xc0, 0x48, - 0x32, 0x0e, 0x45, 0xdb, 0xf1, 0xf5, 0xc7, 0xcd, 0x08, 0xa4, 0xfc, 0xfd, 0xf1, 0x17, 0x74, 0x56, - 0x42, 0x0b, 0x5e, 0x24, 0x8a, 0xf1, 0x4f, 0xef, 0x76, 0x88, 0x44, 0x2d, 0xde, 0xdb, 0x3d, 0x04, - 0xfd, 0x8f, 0x08, 0x0c, 0xae, 0xaa, 0x96, 0xda, 0xb0, 0x51, 0xa5, 0x25, 0xd3, 0x14, 0xdb, 0x8f, - 0x2d, 0x1f, 0x58, 0xe7, 0xbb, 0x1d, 0x3d, 0x12, 0xcd, 0x8f, 0xb6, 0x49, 0x34, 0xdf, 0x02, 0xa3, - 0x64, 0x39, 0xec, 0xbb, 0xc2, 0x40, 0xac, 0x3d, 0x52, 0x38, 0xea, 0x71, 0x09, 0xd6, 0xb3, 0xd5, - 0xf2, 0x65, 0xff, 0x1d, 0x86, 0x61, 0x82, 0xe1, 0x05, 0x66, 0x42, 0x7e, 0xd8, 0x5b, 0x96, 0xfa, - 0x2a, 0x65, 0x05, 0x1a, 0xea, 0x6e, 0x89, 0x15, 0xd0, 0x22, 0xa0, 0x6d, 0x77, 0x67, 0xa4, 0xec, - 0x99, 0x93, 0xd0, 0x9f, 0xb8, 0x75, 0x73, 0xfa, 0x28, 0xa3, 0x6f, 0xc5, 0x91, 0x95, 0x71, 0x0f, - 0x28, 0xb8, 0x3d, 0x0e, 0x40, 0xf4, 0x2a, 0xb3, 0x2b, 0xdc, 0x6c, 0xb9, 0x73, 0xe8, 0xd6, 0xcd, - 0xe9, 0x71, 0xc6, 0xc5, 0xab, 0x93, 0x95, 0x24, 0x29, 0x14, 0xc9, 0x6f, 0x9f, 0x67, 0x7f, 0x5a, - 0x02, 0xe4, 0x85, 0x7c, 0x05, 0xdb, 0x26, 0x59, 0x9f, 0x91, 0x44, 0xdc, 0x97, 0x35, 0x4b, 0xdd, - 0x13, 0x71, 0x8f, 0x5e, 0x24, 0xe2, 0xbe, 0x91, 0xf2, 0x94, 0x17, 0x1e, 0x23, 0xbd, 0xee, 0x33, - 0x73, 0x17, 0x09, 0xc7, 0xc3, 0x01, 0xf9, 0x5f, 0x4a, 0x70, 0xb4, 0xc5, 0xa3, 0x5c, 0x61, 0xff, - 0x12, 0x20, 0xcb, 0x57, 0xc9, 0xbf, 0xa3, 0xc8, 0x84, 0xde, 0xb7, 0x83, 0x8e, 0x5b, 0x2d, 0x71, - 0xf7, 0xf6, 0x45, 0x78, 0x76, 0x61, 0xfe, 0x9f, 0x49, 0x30, 0xe9, 0x6f, 0xde, 0x55, 0x64, 0x19, - 0x52, 0xfe, 0xd6, 0xb9, 0x0a, 0xf7, 0xf4, 0xa3, 0x02, 0x97, 0x3e, 0x40, 0x8f, 0x9e, 0xf5, 0x86, - 0x2b, 0xdb, 0x3b, 0x7b, 0xb4, 0x6f, 0x6b, 0x08, 0x99, 0xc2, 0xc3, 0x36, 0x46, 0xfb, 0xe3, 0xff, - 0x48, 0x10, 0x5b, 0x35, 0x8c, 0x3a, 0x32, 0x60, 0x5c, 0x37, 0x9c, 0x32, 0xf1, 0x2c, 0x5c, 0xf5, - 0xdf, 0x5b, 0x4f, 0x16, 0xe6, 0xf6, 0x67, 0xa4, 0xef, 0xdd, 0x9c, 0x6e, 0x65, 0xa5, 0x8c, 0xe9, - 0x86, 0x53, 0xa0, 0x10, 0x7e, 0x75, 0xfd, 0x9d, 0x30, 0x12, 0x6c, 0x8c, 0x45, 0xc9, 0xe7, 0xf6, - 0xdd, 0x58, 0x90, 0xcd, 0xad, 0x9b, 0xd3, 0x93, 0xde, 0x88, 0x71, 0xc1, 0xb2, 0x92, 0xda, 0xf4, - 0xb5, 0xce, 0xae, 0x77, 0xfd, 0xe0, 0xd5, 0x69, 0xe9, 0xd4, 0x97, 0x25, 0x00, 0x6f, 0xe7, 0x01, - 0x3d, 0x04, 0x47, 0x0a, 0x2b, 0xcb, 0xc5, 0xf2, 0xda, 0x7a, 0x7e, 0x7d, 0x63, 0x2d, 0x78, 0xc7, - 0x5b, 0x6c, 0x8f, 0xdb, 0x26, 0xae, 0x68, 0x5b, 0x1a, 0xae, 0xa2, 0xfb, 0x60, 0x32, 0x88, 0x4d, - 0x4a, 0xa5, 0x62, 0x5a, 0xca, 0xa6, 0xae, 0xdf, 0x98, 0x49, 0xb0, 0x5c, 0x0c, 0x57, 0xd1, 0x49, - 0x38, 0xd4, 0x8a, 0xb7, 0xb0, 0x3c, 0x9f, 0x8e, 0x64, 0x47, 0xae, 0xdf, 0x98, 0x49, 0xba, 0x49, - 0x1b, 0x92, 0x01, 0xf9, 0x31, 0x39, 0xbf, 0x68, 0x16, 0xae, 0xdf, 0x98, 0x19, 0x64, 0x06, 0xcc, - 0xc6, 0x3e, 0xf0, 0xe9, 0xa9, 0x81, 0xdb, 0x7e, 0x13, 0xfc, 0x4f, 0x86, 0x3a, 0xee, 0x7a, 0xd7, - 0xb0, 0x8e, 0x6d, 0xcd, 0x3e, 0xd0, 0xae, 0x77, 0x5f, 0x3b, 0xe9, 0xf2, 0xef, 0xc6, 0x21, 0x35, - 0xcf, 0x5a, 0x21, 0x1d, 0x81, 0xd1, 0xcf, 0xc0, 0xa0, 0x49, 0xa7, 0x11, 0xf7, 0x18, 0xad, 0x83, - 0xc3, 0xb3, 0xc9, 0xc6, 0xbd, 0xcb, 0xc5, 0xa6, 0x1e, 0x9b, 0x5f, 0xe6, 0x60, 0x77, 0xcc, 0xbc, - 0x5b, 0x53, 0xa9, 0x7d, 0xed, 0xf7, 0xb0, 0x9c, 0x85, 0x6f, 0xad, 0x84, 0xf9, 0xc9, 0xec, 0x5e, - 0xc8, 0x3a, 0x81, 0xb0, 0xdb, 0x61, 0xef, 0x93, 0xe0, 0x10, 0xc5, 0xf2, 0x26, 0x62, 0x8a, 0x29, - 0x92, 0xfd, 0x53, 0x9d, 0x54, 0x58, 0x54, 0x6d, 0xef, 0xae, 0x07, 0xbb, 0xcf, 0x75, 0x0f, 0x9f, - 0x08, 0x8f, 0xfb, 0x1a, 0x0f, 0xb3, 0x95, 0x95, 0x89, 0x7a, 0x0b, 0xa5, 0x8d, 0xe6, 0x03, 0x17, - 0xfa, 0x62, 0xfb, 0xdb, 0x6a, 0xf7, 0x5f, 0xee, 0x7b, 0x06, 0x86, 0xbd, 0x58, 0x62, 0xf3, 0xff, - 0xfb, 0xd2, 0xff, 0xdc, 0xe1, 0x27, 0x46, 0xef, 0x97, 0xe0, 0x90, 0x37, 0x9b, 0xfb, 0xd9, 0xb2, - 0xff, 0x8f, 0xf3, 0xe0, 0x3e, 0x16, 0x42, 0x61, 0xe3, 0xb4, 0xe5, 0x2b, 0x2b, 0x93, 0xcd, 0x56, - 0x52, 0xb2, 0x04, 0x1b, 0xf1, 0x47, 0x56, 0x3b, 0x23, 0x3e, 0x01, 0xd9, 0x7f, 0x68, 0x0e, 0x32, - 0x60, 0xff, 0xb3, 0xc3, 0x34, 0x2c, 0x07, 0x57, 0xe9, 0x86, 0x5c, 0x42, 0x71, 0xcb, 0xf2, 0x32, - 0xa0, 0xd6, 0xce, 0x0d, 0x5f, 0x60, 0xf4, 0xde, 0xa7, 0xa0, 0x49, 0x88, 0xfb, 0xaf, 0xf8, 0xb1, - 0x42, 0x2e, 0xf1, 0x01, 0x3e, 0x7d, 0xde, 0xf6, 0x31, 0xff, 0xed, 0x08, 0x9c, 0xf2, 0x1f, 0x0f, - 0xbd, 0xd4, 0xc4, 0xd6, 0x9e, 0x3b, 0x44, 0x4d, 0xb5, 0xa6, 0xe9, 0xfe, 0x57, 0x10, 0x47, 0xfd, - 0x13, 0x3e, 0xc5, 0x15, 0x76, 0x92, 0x3f, 0x20, 0xc1, 0xf0, 0xaa, 0x5a, 0xc3, 0x0a, 0x7e, 0xa9, - 0x89, 0x6d, 0xa7, 0xcd, 0x2d, 0xf3, 0xc3, 0x30, 0x68, 0x6c, 0x6d, 0x89, 0x33, 0xed, 0x98, 0xc2, - 0x4b, 0x44, 0xe7, 0xba, 0xd6, 0xd0, 0xd8, 0x75, 0xb0, 0x98, 0xc2, 0x0a, 0x68, 0x1a, 0x86, 0x2b, - 0x46, 0x53, 0xe7, 0x43, 0x2e, 0x13, 0x13, 0xdf, 0x5a, 0x69, 0xea, 0x6c, 0xc8, 0x11, 0x23, 0x5a, - 0xf8, 0x0a, 0xb6, 0x6c, 0xf6, 0x75, 0xc9, 0x84, 0x22, 0x8a, 0xf2, 0xd3, 0x90, 0x62, 0x92, 0xf0, - 0xc9, 0xf8, 0x28, 0x24, 0xe8, 0x4d, 0x2b, 0x4f, 0x9e, 0x21, 0x52, 0xbe, 0xc4, 0xee, 0xaa, 0x33, - 0xfe, 0x4c, 0x24, 0x56, 0x28, 0x14, 0x3a, 0x5a, 0xf9, 0x64, 0xef, 0xa8, 0xc1, 0x6c, 0xe8, 0x5a, - 0xf8, 0x37, 0xe3, 0x70, 0x88, 0x1f, 0xde, 0xa9, 0xa6, 0x76, 0x7a, 0xdb, 0x71, 0xc4, 0xdb, 0x09, - 0xe0, 0x59, 0xb0, 0x6a, 0x6a, 0xf2, 0x1e, 0xc4, 0x2e, 0x3a, 0x8e, 0x89, 0x4e, 0x41, 0xdc, 0x6a, - 0xd6, 0xb1, 0xd8, 0x0c, 0x72, 0xb7, 0xeb, 0x55, 0x53, 0x9b, 0x25, 0x08, 0x4a, 0xb3, 0x8e, 0x15, - 0x86, 0x82, 0x4a, 0x30, 0xbd, 0xd5, 0xac, 0xd7, 0xf7, 0xca, 0x55, 0x4c, 0xff, 0x5d, 0x96, 0xfb, - 0x0f, 0x27, 0xf0, 0xae, 0xa9, 0x8a, 0xcf, 0x56, 0x12, 0xc3, 0x1c, 0xa7, 0x68, 0x45, 0x8a, 0x25, - 0xfe, 0xd9, 0x44, 0x49, 0xe0, 0xc8, 0xbf, 0x1f, 0x81, 0x84, 0x60, 0x4d, 0x2f, 0x8f, 0xe3, 0x3a, - 0xae, 0x38, 0x86, 0x38, 0x4c, 0x71, 0xcb, 0x08, 0x41, 0xb4, 0xc6, 0x3b, 0x2f, 0x79, 0x71, 0x40, - 0x21, 0x05, 0x02, 0x73, 0xaf, 0xf4, 0x13, 0x98, 0xd9, 0x24, 0xfd, 0x19, 0x33, 0x0d, 0xb1, 0x6a, - 0xbb, 0x38, 0xa0, 0xd0, 0x12, 0xca, 0xc0, 0x20, 0x19, 0x34, 0x0e, 0xeb, 0x2d, 0x02, 0xe7, 0x65, - 0x74, 0x18, 0xe2, 0xa6, 0xea, 0x54, 0xd8, 0x6d, 0x3b, 0x52, 0xc1, 0x8a, 0xe8, 0x09, 0x18, 0x64, - 0xaf, 0xb2, 0xc3, 0xff, 0x8b, 0x86, 0x18, 0x83, 0x7d, 0xfe, 0x8e, 0xc8, 0xbd, 0xaa, 0x3a, 0x0e, - 0xb6, 0x74, 0xc2, 0x90, 0xa1, 0x23, 0x04, 0xb1, 0x4d, 0xa3, 0xba, 0xc7, 0xff, 0x3f, 0x0e, 0xfd, - 0xcd, 0xff, 0x21, 0x07, 0xf5, 0x87, 0x32, 0xad, 0x64, 0xff, 0x16, 0x2c, 0x25, 0x80, 0x05, 0x82, - 0x54, 0x82, 0x09, 0xb5, 0x5a, 0xd5, 0xd8, 0xbf, 0xaa, 0x29, 0x6f, 0x6a, 0x34, 0x78, 0xd8, 0xf4, - 0x9f, 0xbe, 0x75, 0xea, 0x0b, 0xe4, 0x11, 0x14, 0x38, 0x7e, 0x21, 0x09, 0x43, 0x26, 0x13, 0x4a, - 0x3e, 0x0f, 0xe3, 0x2d, 0x92, 0x12, 0xf9, 0x76, 0x34, 0xbd, 0x2a, 0xde, 0x39, 0x90, 0xdf, 0x04, - 0x46, 0x3f, 0x58, 0xc9, 0x8e, 0xa9, 0xe8, 0xef, 0xc2, 0x7b, 0x3a, 0x3f, 0x87, 0x19, 0xf5, 0x3d, - 0x87, 0x51, 0x4d, 0xad, 0x90, 0xa4, 0xfc, 0xf9, 0x23, 0x98, 0x7c, 0xeb, 0x23, 0x98, 0x1a, 0xd6, - 0xc5, 0xc4, 0x4c, 0xaa, 0x54, 0x53, 0xb3, 0xa9, 0x3b, 0x7a, 0x1f, 0xd0, 0xb4, 0xcf, 0xfb, 0x7e, - 0xd3, 0x37, 0x31, 0xb1, 0xf9, 0xfc, 0xea, 0x82, 0xeb, 0xc7, 0x5f, 0x8d, 0xc0, 0x71, 0x9f, 0x1f, - 0xfb, 0x90, 0x5b, 0xdd, 0x39, 0xdb, 0xde, 0xe3, 0xfb, 0x78, 0x9b, 0x7c, 0x09, 0x62, 0x04, 0x1f, - 0xf5, 0xf8, 0x77, 0x19, 0x99, 0xcf, 0x7f, 0xe3, 0x9f, 0xca, 0xc1, 0x03, 0xad, 0x40, 0xaf, 0x50, - 0x26, 0x85, 0xf7, 0xf7, 0x6f, 0xbf, 0xb4, 0xf7, 0xed, 0x50, 0xfb, 0xf6, 0x99, 0x31, 0x6c, 0xc3, - 0xef, 0x9e, 0xed, 0xf8, 0x76, 0x95, 0x05, 0xd3, 0xee, 0xf9, 0xd5, 0x3e, 0x22, 0x75, 0xa7, 0xa7, - 0x01, 0xdd, 0x7a, 0xb0, 0xcf, 0x4c, 0x6d, 0x17, 0x0e, 0x3f, 0x4b, 0xda, 0xf6, 0x56, 0xd0, 0x22, - 0xe4, 0x1f, 0x76, 0x0f, 0xfa, 0x24, 0xfe, 0x3f, 0xf7, 0xc4, 0x21, 0x1e, 0x78, 0xf2, 0xf1, 0xb5, - 0xe3, 0x7d, 0xb3, 0x1d, 0xa7, 0x92, 0x59, 0xdf, 0x34, 0xa2, 0xf8, 0x28, 0xe5, 0x5f, 0x95, 0xe0, - 0x48, 0x4b, 0xd3, 0x3c, 0xc6, 0xcf, 0xb7, 0x79, 0xc5, 0x70, 0xa0, 0xa4, 0x67, 0xbe, 0x8d, 0xb0, - 0xf7, 0xf7, 0x14, 0x96, 0x49, 0x11, 0x90, 0xf6, 0xcd, 0x70, 0x28, 0x28, 0xac, 0x30, 0xd3, 0xbd, - 0x30, 0x1a, 0xdc, 0x2c, 0xe6, 0xe6, 0x1a, 0x09, 0x6c, 0x17, 0xcb, 0xe5, 0xb0, 0x9d, 0x5d, 0x5d, - 0x4b, 0x90, 0x74, 0x51, 0x79, 0x76, 0xdc, 0xb7, 0xaa, 0x1e, 0xa5, 0xfc, 0x61, 0x09, 0x66, 0x82, - 0x2d, 0xf8, 0xf2, 0xa4, 0xfd, 0x09, 0x7b, 0xdb, 0xba, 0xf8, 0x75, 0x09, 0xee, 0xea, 0x22, 0x13, - 0x37, 0xc0, 0x35, 0x98, 0xf4, 0x6d, 0x12, 0x88, 0x10, 0x2e, 0xba, 0xfd, 0x54, 0xef, 0x0c, 0xd5, - 0x5d, 0x13, 0x1f, 0x23, 0x46, 0xf9, 0xec, 0xb7, 0xa7, 0x27, 0x5a, 0xeb, 0x6c, 0x65, 0xa2, 0x75, - 0x61, 0x7f, 0x1b, 0xfd, 0xe3, 0x15, 0x09, 0x1e, 0x08, 0xaa, 0xda, 0x26, 0xd5, 0xfd, 0x49, 0xf5, - 0xc3, 0xbf, 0x97, 0xe0, 0x54, 0x3f, 0xc2, 0xf1, 0x0e, 0xd9, 0x84, 0x09, 0x2f, 0x09, 0x0f, 0xf7, - 0xc7, 0xbe, 0x52, 0x7b, 0xe6, 0xa5, 0xc8, 0xe5, 0x76, 0x07, 0x0c, 0x6f, 0xf2, 0x81, 0xe5, 0xef, - 0x72, 0xd7, 0xc8, 0xc1, 0x8d, 0x5e, 0x61, 0xe4, 0xc0, 0x56, 0x6f, 0x9b, 0xbe, 0x88, 0xb4, 0xe9, - 0x0b, 0x2f, 0x6b, 0x97, 0xaf, 0xf0, 0xb8, 0xd5, 0x66, 0x7b, 0xee, 0x6d, 0x30, 0xd1, 0xc6, 0x95, - 0xf9, 0xa8, 0xde, 0x87, 0x27, 0x2b, 0xa8, 0xd5, 0x59, 0xe5, 0x3d, 0x98, 0xa6, 0xed, 0xb6, 0x31, - 0xf4, 0x9d, 0x56, 0xb9, 0xc1, 0x63, 0x4b, 0xdb, 0xa6, 0xb9, 0xee, 0x0b, 0x30, 0xc8, 0xfa, 0x99, - 0xab, 0x7b, 0x00, 0x47, 0xe1, 0x0c, 0xe4, 0x8f, 0x8b, 0x58, 0x56, 0x14, 0x62, 0xb7, 0x1f, 0x43, - 0xfd, 0xe8, 0x7a, 0x9b, 0xc6, 0x90, 0xcf, 0x18, 0xdf, 0x12, 0x51, 0xad, 0xbd, 0x74, 0xdc, 0x1c, - 0x95, 0xdb, 0x16, 0xd5, 0x98, 0x6d, 0xee, 0x6c, 0xf8, 0xfa, 0x65, 0x11, 0xbe, 0x5c, 0x9d, 0x7a, - 0x84, 0xaf, 0x9f, 0x8c, 0xe9, 0xdd, 0x40, 0xd6, 0x43, 0xcc, 0x3f, 0x8f, 0x81, 0xec, 0x07, 0x12, - 0x1c, 0xa5, 0xba, 0xf9, 0xf7, 0x28, 0xf6, 0x6b, 0xf2, 0x87, 0x00, 0xd9, 0x56, 0xa5, 0xdc, 0x76, - 0x74, 0xa7, 0x6d, 0xab, 0x72, 0x39, 0x30, 0xbf, 0x3c, 0x04, 0xa8, 0x1a, 0xd8, 0x89, 0xa2, 0xd8, - 0xec, 0x02, 0x5d, 0xba, 0xea, 0xdb, 0xe8, 0x68, 0xd3, 0x9d, 0xb1, 0xdb, 0xd0, 0x9d, 0xdf, 0x94, - 0x20, 0xdb, 0x4e, 0x65, 0xde, 0x7d, 0x1a, 0x1c, 0x0e, 0x9c, 0x1f, 0x84, 0x7b, 0xf0, 0xa1, 0x7e, - 0x76, 0x79, 0x42, 0xc3, 0xe8, 0x90, 0x85, 0xef, 0x74, 0x1e, 0x30, 0x1d, 0xf4, 0xd0, 0xd6, 0xcc, - 0xfa, 0x27, 0x36, 0x7c, 0xbe, 0xd4, 0x12, 0x57, 0xff, 0x5c, 0xe4, 0xde, 0xbb, 0x30, 0xd5, 0x41, - 0xea, 0x3b, 0x3d, 0xef, 0x6d, 0x77, 0xec, 0xcc, 0xdb, 0x9d, 0xbe, 0x3f, 0xce, 0x47, 0x42, 0xf0, - 0x72, 0xb6, 0x6f, 0x2d, 0xd6, 0xee, 0x75, 0x97, 0xfc, 0x56, 0x38, 0xd6, 0x96, 0x8a, 0xcb, 0x96, - 0x83, 0xd8, 0xb6, 0x66, 0x3b, 0x5c, 0xac, 0xfb, 0x3a, 0x89, 0x15, 0xa2, 0xa6, 0x34, 0x32, 0x82, - 0x34, 0x65, 0xbd, 0x6a, 0x18, 0x75, 0x2e, 0x86, 0x7c, 0x09, 0xc6, 0x7d, 0x30, 0xde, 0xc8, 0x39, - 0x88, 0x99, 0x06, 0xff, 0x72, 0xc1, 0xf0, 0x99, 0xe3, 0x1d, 0x37, 0xf6, 0x0d, 0xa3, 0xce, 0xd5, - 0xa6, 0xf8, 0xf2, 0x24, 0x20, 0xc6, 0x8c, 0xee, 0xf1, 0x8b, 0x26, 0xd6, 0x60, 0x22, 0x00, 0xe5, - 0x8d, 0xbc, 0xa1, 0xf3, 0x83, 0x33, 0xdf, 0x3b, 0x04, 0x71, 0xca, 0x15, 0x7d, 0x4c, 0x0a, 0x7c, - 0x5a, 0x68, 0xb6, 0x13, 0x9b, 0xf6, 0x6b, 0xe2, 0xec, 0xe9, 0xbe, 0xf1, 0x79, 0xce, 0x76, 0xea, - 0x3d, 0xff, 0xe6, 0xbb, 0x1f, 0x89, 0xdc, 0x83, 0xe4, 0xd3, 0x1d, 0x56, 0xe3, 0xbe, 0xf1, 0xf2, - 0x99, 0xc0, 0xb3, 0xf8, 0x87, 0xfb, 0x6b, 0x4a, 0x48, 0x36, 0xdb, 0x2f, 0x3a, 0x17, 0xec, 0x3c, - 0x15, 0xec, 0x2c, 0x7a, 0xac, 0xb7, 0x60, 0xa7, 0xdf, 0x11, 0x1c, 0x34, 0xef, 0x42, 0xbf, 0x2b, - 0xc1, 0x64, 0xbb, 0x25, 0x1d, 0x7a, 0xb2, 0x3f, 0x29, 0x5a, 0x53, 0x8a, 0xec, 0x53, 0x07, 0xa0, - 0xe4, 0xaa, 0xcc, 0x53, 0x55, 0xf2, 0xe8, 0xe9, 0x03, 0xa8, 0x72, 0xda, 0xbf, 0xf5, 0xff, 0xbf, - 0x24, 0x38, 0xd1, 0x75, 0x85, 0x84, 0xf2, 0xfd, 0x49, 0xd9, 0x25, 0x77, 0xca, 0x16, 0xde, 0x08, - 0x0b, 0xae, 0xf1, 0xb3, 0x54, 0xe3, 0x4b, 0x68, 0xe1, 0x20, 0x1a, 0xb7, 0x3d, 0x5f, 0x41, 0xbf, - 0x15, 0xbc, 0x74, 0xd8, 0xdd, 0x9d, 0x5a, 0x16, 0x1e, 0x3d, 0x06, 0x46, 0x6b, 0x52, 0x2b, 0x3f, - 0x4f, 0x55, 0x50, 0xd0, 0xea, 0x1b, 0xec, 0xb4, 0xd3, 0xef, 0x08, 0x06, 0xfe, 0x77, 0xa1, 0xff, - 0x29, 0xb5, 0xbf, 0x43, 0xf8, 0x44, 0x57, 0x11, 0x3b, 0x2f, 0xaa, 0xb2, 0x4f, 0xee, 0x9f, 0x90, - 0x2b, 0xd9, 0xa0, 0x4a, 0xd6, 0x10, 0xbe, 0xdd, 0x4a, 0xb6, 0xed, 0x44, 0xf4, 0x75, 0x09, 0x26, - 0xdb, 0xad, 0x49, 0x7a, 0x0c, 0xcb, 0x2e, 0x8b, 0xac, 0x1e, 0xc3, 0xb2, 0xdb, 0x02, 0x48, 0xfe, - 0x19, 0xaa, 0xfc, 0x39, 0xf4, 0x78, 0x27, 0xe5, 0xbb, 0xf6, 0x22, 0x19, 0x8b, 0x5d, 0x93, 0xfc, - 0x1e, 0x63, 0xb1, 0x9f, 0x75, 0x4c, 0x8f, 0xb1, 0xd8, 0xd7, 0x1a, 0xa3, 0xf7, 0x58, 0x74, 0x35, - 0xeb, 0xb3, 0x1b, 0x6d, 0xf4, 0x55, 0x09, 0x46, 0x02, 0x19, 0x31, 0x7a, 0xb4, 0xab, 0xa0, 0xed, - 0x16, 0x0c, 0xd9, 0x33, 0xfb, 0x21, 0xe1, 0xba, 0x2c, 0x50, 0x5d, 0xe6, 0x50, 0xfe, 0x20, 0xba, - 0x04, 0x8f, 0x51, 0xbf, 0x29, 0xc1, 0x44, 0x9b, 0x2c, 0xb3, 0xc7, 0x28, 0xec, 0x9c, 0x34, 0x67, - 0x9f, 0xdc, 0x3f, 0x21, 0xd7, 0xea, 0x02, 0xd5, 0xea, 0x2d, 0xe8, 0xcd, 0x07, 0xd1, 0xca, 0x37, - 0x3f, 0xdf, 0xf4, 0xae, 0x64, 0xf9, 0xda, 0x41, 0xe7, 0xf6, 0x29, 0x98, 0x50, 0xe8, 0x89, 0x7d, - 0xd3, 0x71, 0x7d, 0x9e, 0xa3, 0xfa, 0x3c, 0x8b, 0x56, 0xde, 0x98, 0x3e, 0xad, 0xd3, 0xfa, 0x17, - 0x5b, 0x1f, 0x07, 0x76, 0xf7, 0xa2, 0xb6, 0xc9, 0x6a, 0xf6, 0xb1, 0x7d, 0xd1, 0x70, 0xa5, 0x9e, - 0xa4, 0x4a, 0x9d, 0x41, 0x8f, 0x74, 0x52, 0xca, 0x77, 0xef, 0x4e, 0xd3, 0xb7, 0x8c, 0xd3, 0xef, - 0x60, 0x29, 0xf0, 0xbb, 0xd0, 0xbb, 0xc5, 0x9d, 0xa7, 0x93, 0x5d, 0xdb, 0xf5, 0xe5, 0xb1, 0xd9, - 0x07, 0xfa, 0xc0, 0xe4, 0x72, 0xdd, 0x43, 0xe5, 0x9a, 0x42, 0xc7, 0x3b, 0xc9, 0x45, 0x72, 0x59, - 0xf4, 0x41, 0xc9, 0xbd, 0x26, 0x79, 0xaa, 0x3b, 0x6f, 0x7f, 0xb2, 0x9b, 0x7d, 0xb0, 0x2f, 0x5c, - 0x2e, 0xc9, 0x7d, 0x54, 0x92, 0x19, 0x34, 0xd5, 0x51, 0x12, 0x96, 0xfa, 0xde, 0xee, 0x4b, 0x05, - 0xd7, 0x8f, 0xc0, 0x74, 0x87, 0x16, 0x9d, 0xdd, 0x1e, 0x67, 0x5c, 0x5d, 0xde, 0xc8, 0xf6, 0x7c, - 0x03, 0x7b, 0xbb, 0xbf, 0xed, 0xda, 0xe7, 0x81, 0xd8, 0x6f, 0xc7, 0x00, 0x2d, 0xd9, 0xb5, 0x39, - 0x0b, 0xb3, 0xff, 0x33, 0xc9, 0x47, 0x79, 0xe8, 0xf1, 0x97, 0xf4, 0x86, 0x1e, 0x7f, 0x2d, 0x05, - 0x9e, 0x53, 0x45, 0xf6, 0xf7, 0x64, 0xb3, 0xef, 0x37, 0x55, 0xd1, 0x1f, 0xcb, 0x9b, 0xaa, 0xf6, - 0x57, 0xae, 0x63, 0xb7, 0xef, 0x6d, 0x46, 0xfc, 0xa0, 0xef, 0x53, 0xf8, 0x53, 0xc9, 0xc1, 0x2e, - 0x4f, 0x25, 0x33, 0x1d, 0xdf, 0x43, 0x72, 0x6a, 0x74, 0x56, 0x7c, 0xe9, 0x74, 0xa8, 0xbf, 0x4b, - 0xb2, 0xfc, 0x53, 0xa8, 0xde, 0x16, 0xc2, 0x71, 0xc8, 0xb6, 0xba, 0x93, 0x3b, 0xa8, 0x3f, 0x12, - 0x85, 0xf4, 0x92, 0x5d, 0x2b, 0x55, 0x35, 0xe7, 0x0e, 0xf9, 0xda, 0xd3, 0x9d, 0xdf, 0xbb, 0xa0, - 0x5b, 0x37, 0xa7, 0x47, 0x99, 0x4d, 0xbb, 0x58, 0xb2, 0x01, 0x63, 0xa1, 0x57, 0xc6, 0xdc, 0xb3, - 0x8a, 0x07, 0x79, 0xec, 0x1c, 0x62, 0x25, 0xd3, 0xe7, 0x09, 0x3e, 0xff, 0x46, 0xbb, 0xed, 0x9d, - 0x99, 0x39, 0xd4, 0xc5, 0x3b, 0xf9, 0x38, 0xd0, 0xeb, 0xb3, 0x2c, 0x64, 0xc2, 0x9d, 0xe2, 0xf6, - 0xd8, 0x1f, 0x49, 0x30, 0xbc, 0x64, 0x8b, 0x54, 0x10, 0xff, 0x94, 0x3e, 0x4d, 0x7a, 0xc2, 0xfd, - 0x4c, 0x78, 0xb4, 0x3f, 0xbf, 0x15, 0x9f, 0x0e, 0xf7, 0x8c, 0x70, 0x08, 0x26, 0x7c, 0x7a, 0xba, - 0xfa, 0xff, 0x4e, 0x84, 0xc6, 0xc7, 0x02, 0xae, 0x69, 0xba, 0x9b, 0x45, 0xe2, 0xbf, 0xa8, 0x0f, - 0x2f, 0x3c, 0x3b, 0xc7, 0x0e, 0x6a, 0xe7, 0x1d, 0x1a, 0x20, 0x42, 0xf6, 0x74, 0x37, 0xbe, 0x96, - 0x5a, 0x9f, 0x05, 0x49, 0xfb, 0xf8, 0xe2, 0x4e, 0xe8, 0xf1, 0x8f, 0xfc, 0xba, 0x04, 0x23, 0x4b, - 0x76, 0x6d, 0x43, 0xaf, 0xfe, 0x3f, 0xef, 0xbf, 0x5b, 0x70, 0x28, 0xa0, 0xe9, 0x1d, 0x32, 0xe9, - 0x99, 0x57, 0x62, 0x10, 0x5d, 0xb2, 0x6b, 0xe8, 0x25, 0x18, 0x0b, 0x27, 0x0d, 0x1d, 0x73, 0xc1, - 0xd6, 0x19, 0xa1, 0xf3, 0x7a, 0xad, 0xf3, 0xec, 0x81, 0x76, 0x60, 0x24, 0x38, 0x73, 0x9c, 0xec, - 0xc2, 0x24, 0x80, 0x99, 0x7d, 0xa4, 0x5f, 0x4c, 0xb7, 0xb1, 0xb7, 0x43, 0xc2, 0x0d, 0x7a, 0x77, - 0x77, 0xa1, 0x16, 0x48, 0x9d, 0xb3, 0xdb, 0x36, 0x61, 0x85, 0x58, 0x2f, 0x1c, 0x52, 0xba, 0x59, - 0x2f, 0x84, 0xdb, 0xd5, 0x7a, 0x9d, 0x86, 0xd6, 0x26, 0x80, 0x6f, 0x1c, 0xdc, 0xdb, 0x85, 0x83, - 0x87, 0x96, 0x7d, 0xb8, 0x2f, 0x34, 0xf7, 0xd0, 0xe9, 0x36, 0x27, 0xe3, 0xff, 0x37, 0x00, 0x00, - 0xff, 0xff, 0xb1, 0x48, 0x2a, 0x05, 0xdd, 0x97, 0x00, 0x00, + 0x75, 0x18, 0xde, 0x7e, 0x00, 0xbb, 0x07, 0x0b, 0x60, 0x71, 0x01, 0x52, 0xcb, 0x25, 0x05, 0x40, + 0x4f, 0xb2, 0x44, 0x51, 0x12, 0x28, 0x51, 0xe2, 0xd7, 0xd2, 0xb6, 0x8c, 0x05, 0x96, 0x20, 0x44, + 0x7c, 0xe9, 0x01, 0xa0, 0x64, 0x39, 0xc9, 0xce, 0xc3, 0xee, 0xc5, 0xe2, 0x09, 0xbb, 0xef, 0x3d, + 0xbf, 0xf7, 0x96, 0x22, 0xe8, 0x3a, 0x95, 0xed, 0xd4, 0x95, 0xd9, 0xb4, 0x75, 0xea, 0x4e, 0x62, + 0x3b, 0xa6, 0x2b, 0xc7, 0xa9, 0x9d, 0xd8, 0x49, 0x6b, 0xc7, 0x8a, 0xdb, 0x34, 0x9d, 0xd4, 0xee, + 0x4c, 0x1a, 0xdb, 0x3f, 0x3a, 0xb6, 0x9b, 0x69, 0xe2, 0x8c, 0x4b, 0xa7, 0xb2, 0x27, 0x71, 0x5d, + 0xb7, 0x71, 0x59, 0xf7, 0x6b, 0x3c, 0x9d, 0xc9, 0xdc, 0xaf, 0xf7, 0xb5, 0x1f, 0x6f, 0x01, 0x92, + 0xb2, 0xe2, 0xf1, 0x2f, 0xec, 0xbd, 0xf7, 0x9c, 0x73, 0xcf, 0x3d, 0xe7, 0xdc, 0x73, 0xce, 0xfd, + 0x7a, 0x80, 0xcf, 0x9e, 0x83, 0xa9, 0x9a, 0x61, 0xd4, 0xea, 0xf8, 0xb8, 0x69, 0x19, 0x8e, 0xb1, + 0xd9, 0xdc, 0x3a, 0x5e, 0xc5, 0x76, 0xc5, 0xd2, 0x4c, 0xc7, 0xb0, 0xa6, 0x69, 0x1d, 0x1a, 0x61, + 0x10, 0xd3, 0x02, 0x42, 0x5e, 0x82, 0xd1, 0xf3, 0x5a, 0x1d, 0xcf, 0xb9, 0x80, 0x6b, 0xd8, 0x41, + 0x67, 0x20, 0xb1, 0xa5, 0xd5, 0x71, 0x4e, 0x9a, 0x8a, 0x1f, 0x1d, 0x3c, 0x71, 0xdf, 0x74, 0x08, + 0x69, 0x3a, 0x88, 0xb1, 0x4a, 0xaa, 0x15, 0x8a, 0x21, 0x7f, 0x27, 0x01, 0x63, 0x6d, 0x5a, 0x11, + 0x82, 0x84, 0xae, 0x36, 0x08, 0x45, 0xe9, 0x68, 0x5a, 0xa1, 0xbf, 0x51, 0x0e, 0x06, 0x4c, 0xb5, + 0xb2, 0xa3, 0xd6, 0x70, 0x2e, 0x46, 0xab, 0x45, 0x11, 0x4d, 0x00, 0x54, 0xb1, 0x89, 0xf5, 0x2a, + 0xd6, 0x2b, 0xbb, 0xb9, 0xf8, 0x54, 0xfc, 0x68, 0x5a, 0xf1, 0xd5, 0xa0, 0x87, 0x60, 0xd4, 0x6c, + 0x6e, 0xd6, 0xb5, 0x4a, 0xd9, 0x07, 0x06, 0x53, 0xf1, 0xa3, 0x49, 0x25, 0xcb, 0x1a, 0xe6, 0x3c, + 0xe0, 0x07, 0x60, 0xe4, 0x05, 0xac, 0xee, 0xf8, 0x41, 0x07, 0x29, 0xe8, 0x30, 0xa9, 0xf6, 0x01, + 0xce, 0x42, 0xa6, 0x81, 0x6d, 0x5b, 0xad, 0xe1, 0xb2, 0xb3, 0x6b, 0xe2, 0x5c, 0x82, 0x8e, 0x7e, + 0xaa, 0x65, 0xf4, 0xe1, 0x91, 0x0f, 0x72, 0xac, 0xf5, 0x5d, 0x13, 0xa3, 0x19, 0x48, 0x63, 0xbd, + 0xd9, 0x60, 0x14, 0x92, 0x1d, 0xe4, 0x57, 0xd2, 0x9b, 0x8d, 0x30, 0x95, 0x14, 0x41, 0xe3, 0x24, + 0x06, 0x6c, 0x6c, 0x5d, 0xd6, 0x2a, 0x38, 0xd7, 0x4f, 0x09, 0x3c, 0xd0, 0x42, 0x60, 0x8d, 0xb5, + 0x87, 0x69, 0x08, 0x3c, 0x34, 0x0b, 0x69, 0x7c, 0xc5, 0xc1, 0xba, 0xad, 0x19, 0x7a, 0x6e, 0x80, + 0x12, 0x79, 0x43, 0x1b, 0x2d, 0xe2, 0x7a, 0x35, 0x4c, 0xc2, 0xc3, 0x43, 0xa7, 0x60, 0xc0, 0x30, + 0x1d, 0xcd, 0xd0, 0xed, 0x5c, 0x6a, 0x4a, 0x3a, 0x3a, 0x78, 0xe2, 0x48, 0x5b, 0x43, 0x58, 0x61, + 0x30, 0x8a, 0x00, 0x46, 0x0b, 0x90, 0xb5, 0x8d, 0xa6, 0x55, 0xc1, 0xe5, 0x8a, 0x51, 0xc5, 0x65, + 0x4d, 0xdf, 0x32, 0x72, 0x69, 0x4a, 0x60, 0xb2, 0x75, 0x20, 0x14, 0x70, 0xd6, 0xa8, 0xe2, 0x05, + 0x7d, 0xcb, 0x50, 0x86, 0xed, 0x40, 0x19, 0x1d, 0x84, 0x7e, 0x7b, 0x57, 0x77, 0xd4, 0x2b, 0xb9, + 0x0c, 0xb5, 0x10, 0x5e, 0x92, 0x7f, 0xaf, 0x1f, 0x46, 0x7a, 0x31, 0xb1, 0x73, 0x90, 0xdc, 0x22, + 0xa3, 0xcc, 0xc5, 0xf6, 0x22, 0x03, 0x86, 0x13, 0x14, 0x62, 0xff, 0x3e, 0x85, 0x38, 0x03, 0x83, + 0x3a, 0xb6, 0x1d, 0x5c, 0x65, 0x16, 0x11, 0xef, 0xd1, 0xa6, 0x80, 0x21, 0xb5, 0x9a, 0x54, 0x62, + 0x5f, 0x26, 0xf5, 0x2c, 0x8c, 0xb8, 0x2c, 0x95, 0x2d, 0x55, 0xaf, 0x09, 0xdb, 0x3c, 0x1e, 0xc5, + 0xc9, 0x74, 0x49, 0xe0, 0x29, 0x04, 0x4d, 0x19, 0xc6, 0x81, 0x32, 0x9a, 0x03, 0x30, 0x74, 0x6c, + 0x6c, 0x95, 0xab, 0xb8, 0x52, 0xcf, 0xa5, 0x3a, 0x48, 0x69, 0x85, 0x80, 0xb4, 0x48, 0xc9, 0x60, + 0xb5, 0x95, 0x3a, 0x3a, 0xeb, 0x99, 0xda, 0x40, 0x07, 0x4b, 0x59, 0x62, 0x93, 0xac, 0xc5, 0xda, + 0x36, 0x60, 0xd8, 0xc2, 0xc4, 0xee, 0x71, 0x95, 0x8f, 0x2c, 0x4d, 0x99, 0x98, 0x8e, 0x1c, 0x99, + 0xc2, 0xd1, 0xd8, 0xc0, 0x86, 0x2c, 0x7f, 0x11, 0xdd, 0x0b, 0x6e, 0x45, 0x99, 0x9a, 0x15, 0x50, + 0x2f, 0x94, 0x11, 0x95, 0xcb, 0x6a, 0x03, 0xe7, 0xaf, 0xc2, 0x70, 0x50, 0x3c, 0x68, 0x1c, 0x92, + 0xb6, 0xa3, 0x5a, 0x0e, 0xb5, 0xc2, 0xa4, 0xc2, 0x0a, 0x28, 0x0b, 0x71, 0xac, 0x57, 0xa9, 0x97, + 0x4b, 0x2a, 0xe4, 0x27, 0x7a, 0x8b, 0x37, 0xe0, 0x38, 0x1d, 0xf0, 0xfd, 0xad, 0x1a, 0x0d, 0x50, + 0x0e, 0x8f, 0x3b, 0x7f, 0x1a, 0x86, 0x02, 0x03, 0xe8, 0xb5, 0x6b, 0xf9, 0x6f, 0xc1, 0x81, 0xb6, + 0xa4, 0xd1, 0xb3, 0x30, 0xde, 0xd4, 0x35, 0xdd, 0xc1, 0x96, 0x69, 0x61, 0x62, 0xb1, 0xac, 0xab, + 0xdc, 0x5f, 0x0e, 0x74, 0xb0, 0xb9, 0x0d, 0x3f, 0x34, 0xa3, 0xa2, 0x8c, 0x35, 0x5b, 0x2b, 0x8f, + 0xa5, 0x53, 0xdf, 0x1d, 0xc8, 0xbe, 0xf8, 0xe2, 0x8b, 0x2f, 0xc6, 0xe4, 0x2f, 0xf6, 0xc3, 0x78, + 0xbb, 0x39, 0xd3, 0x76, 0xfa, 0x1e, 0x84, 0x7e, 0xbd, 0xd9, 0xd8, 0xc4, 0x16, 0x15, 0x52, 0x52, + 0xe1, 0x25, 0x34, 0x03, 0xc9, 0xba, 0xba, 0x89, 0xeb, 0xb9, 0xc4, 0x94, 0x74, 0x74, 0xf8, 0xc4, + 0x43, 0x3d, 0xcd, 0xca, 0xe9, 0x45, 0x82, 0xa2, 0x30, 0x4c, 0xf4, 0x66, 0x48, 0x70, 0x17, 0x4d, + 0x28, 0x1c, 0xeb, 0x8d, 0x02, 0x99, 0x4b, 0x0a, 0xc5, 0x43, 0x87, 0x21, 0x4d, 0xfe, 0x32, 0xdb, + 0xe8, 0xa7, 0x3c, 0xa7, 0x48, 0x05, 0xb1, 0x0b, 0x94, 0x87, 0x14, 0x9d, 0x26, 0x55, 0x2c, 0x42, + 0x9b, 0x5b, 0x26, 0x86, 0x55, 0xc5, 0x5b, 0x6a, 0xb3, 0xee, 0x94, 0x2f, 0xab, 0xf5, 0x26, 0xa6, + 0x06, 0x9f, 0x56, 0x32, 0xbc, 0xf2, 0x12, 0xa9, 0x43, 0x93, 0x30, 0xc8, 0x66, 0x95, 0xa6, 0x57, + 0xf1, 0x15, 0xea, 0x3d, 0x93, 0x0a, 0x9b, 0x68, 0x0b, 0xa4, 0x86, 0x74, 0xff, 0xbc, 0x6d, 0xe8, + 0xc2, 0x34, 0x69, 0x17, 0xa4, 0x82, 0x76, 0x7f, 0x3a, 0xec, 0xb8, 0xef, 0x6e, 0x3f, 0xbc, 0x96, + 0xb9, 0xf4, 0x00, 0x8c, 0x50, 0x88, 0xc7, 0xb9, 0xea, 0xd5, 0x7a, 0x6e, 0x74, 0x4a, 0x3a, 0x9a, + 0x52, 0x86, 0x59, 0xf5, 0x0a, 0xaf, 0x95, 0x3f, 0x1f, 0x83, 0x04, 0x75, 0x2c, 0x23, 0x30, 0xb8, + 0xfe, 0xd6, 0xd5, 0x52, 0x79, 0x6e, 0x65, 0xa3, 0xb8, 0x58, 0xca, 0x4a, 0x68, 0x18, 0x80, 0x56, + 0x9c, 0x5f, 0x5c, 0x99, 0x59, 0xcf, 0xc6, 0xdc, 0xf2, 0xc2, 0xf2, 0xfa, 0xa9, 0x27, 0xb2, 0x71, + 0x17, 0x61, 0x83, 0x55, 0x24, 0xfc, 0x00, 0x8f, 0x9f, 0xc8, 0x26, 0x51, 0x16, 0x32, 0x8c, 0xc0, + 0xc2, 0xb3, 0xa5, 0xb9, 0x53, 0x4f, 0x64, 0xfb, 0x83, 0x35, 0x8f, 0x9f, 0xc8, 0x0e, 0xa0, 0x21, + 0x48, 0xd3, 0x9a, 0xe2, 0xca, 0xca, 0x62, 0x36, 0xe5, 0xd2, 0x5c, 0x5b, 0x57, 0x16, 0x96, 0xe7, + 0xb3, 0x69, 0x97, 0xe6, 0xbc, 0xb2, 0xb2, 0xb1, 0x9a, 0x05, 0x97, 0xc2, 0x52, 0x69, 0x6d, 0x6d, + 0x66, 0xbe, 0x94, 0x1d, 0x74, 0x21, 0x8a, 0x6f, 0x5d, 0x2f, 0xad, 0x65, 0x33, 0x01, 0xb6, 0x1e, + 0x3f, 0x91, 0x1d, 0x72, 0xbb, 0x28, 0x2d, 0x6f, 0x2c, 0x65, 0x87, 0xd1, 0x28, 0x0c, 0xb1, 0x2e, + 0x04, 0x13, 0x23, 0xa1, 0xaa, 0x53, 0x4f, 0x64, 0xb3, 0x1e, 0x23, 0x8c, 0xca, 0x68, 0xa0, 0xe2, + 0xd4, 0x13, 0x59, 0x24, 0xcf, 0x42, 0x92, 0x9a, 0x21, 0x42, 0x30, 0xbc, 0x38, 0x53, 0x2c, 0x2d, + 0x96, 0x57, 0x56, 0xd7, 0x17, 0x56, 0x96, 0x67, 0x16, 0xb3, 0x92, 0x57, 0xa7, 0x94, 0x9e, 0xde, + 0x58, 0x50, 0x4a, 0x73, 0xd9, 0x98, 0xbf, 0x6e, 0xb5, 0x34, 0xb3, 0x5e, 0x9a, 0xcb, 0xc6, 0xe5, + 0x0a, 0x8c, 0xb7, 0x73, 0xa8, 0x6d, 0xa7, 0x90, 0xcf, 0x16, 0x62, 0x1d, 0x6c, 0x81, 0xd2, 0x0a, + 0xdb, 0x82, 0xfc, 0xed, 0x18, 0x8c, 0xb5, 0x09, 0x2a, 0x6d, 0x3b, 0x79, 0x12, 0x92, 0xcc, 0x96, + 0x59, 0x98, 0x7d, 0xb0, 0x6d, 0x74, 0xa2, 0x96, 0xdd, 0x12, 0x6a, 0x29, 0x9e, 0x3f, 0xd5, 0x88, + 0x77, 0x48, 0x35, 0x08, 0x89, 0x16, 0x83, 0xfd, 0xd9, 0x16, 0xe7, 0xcf, 0xe2, 0xe3, 0xa9, 0x5e, + 0xe2, 0x23, 0xad, 0xdb, 0x5b, 0x10, 0x48, 0xb6, 0x09, 0x02, 0xe7, 0x60, 0xb4, 0x85, 0x50, 0xcf, + 0xce, 0xf8, 0x3d, 0x12, 0xe4, 0x3a, 0x09, 0x27, 0xc2, 0x25, 0xc6, 0x02, 0x2e, 0xf1, 0x5c, 0x58, + 0x82, 0xf7, 0x74, 0x56, 0x42, 0x8b, 0xae, 0x3f, 0x29, 0xc1, 0xc1, 0xf6, 0x29, 0x65, 0x5b, 0x1e, + 0xde, 0x0c, 0xfd, 0x0d, 0xec, 0x6c, 0x1b, 0x22, 0xad, 0xba, 0xbf, 0x4d, 0xb0, 0x26, 0xcd, 0x61, + 0x65, 0x73, 0x2c, 0x7f, 0xb4, 0x8f, 0x77, 0xca, 0x0b, 0x19, 0x37, 0x2d, 0x9c, 0xbe, 0x2f, 0x06, + 0x07, 0xda, 0x12, 0x6f, 0xcb, 0xe8, 0xdd, 0x00, 0x9a, 0x6e, 0x36, 0x1d, 0x96, 0x3a, 0x31, 0x4f, + 0x9c, 0xa6, 0x35, 0xd4, 0x79, 0x11, 0x2f, 0xdb, 0x74, 0xdc, 0xf6, 0x38, 0x6d, 0x07, 0x56, 0x45, + 0x01, 0xce, 0x78, 0x8c, 0x26, 0x28, 0xa3, 0x13, 0x1d, 0x46, 0xda, 0x62, 0x98, 0x8f, 0x42, 0xb6, + 0x52, 0xd7, 0xb0, 0xee, 0x94, 0x6d, 0xc7, 0xc2, 0x6a, 0x43, 0xd3, 0x6b, 0x34, 0xd4, 0xa4, 0x0a, + 0xc9, 0x2d, 0xb5, 0x6e, 0x63, 0x65, 0x84, 0x35, 0xaf, 0x89, 0x56, 0x82, 0x41, 0x0d, 0xc8, 0xf2, + 0x61, 0xf4, 0x07, 0x30, 0x58, 0xb3, 0x8b, 0x21, 0xff, 0x52, 0x1a, 0x06, 0x7d, 0x09, 0x38, 0xba, + 0x07, 0x32, 0xcf, 0xab, 0x97, 0xd5, 0xb2, 0x58, 0x54, 0x31, 0x49, 0x0c, 0x92, 0xba, 0x55, 0xbe, + 0xb0, 0x7a, 0x14, 0xc6, 0x29, 0x88, 0xd1, 0x74, 0xb0, 0x55, 0xae, 0xd4, 0x55, 0xdb, 0xa6, 0x42, + 0x4b, 0x51, 0x50, 0x44, 0xda, 0x56, 0x48, 0xd3, 0xac, 0x68, 0x41, 0x27, 0x61, 0x8c, 0x62, 0x34, + 0x9a, 0x75, 0x47, 0x33, 0xeb, 0xb8, 0x4c, 0x96, 0x79, 0x36, 0x0d, 0x39, 0x2e, 0x67, 0xa3, 0x04, + 0x62, 0x89, 0x03, 0x10, 0x8e, 0x6c, 0x34, 0x07, 0x77, 0x53, 0xb4, 0x1a, 0xd6, 0xb1, 0xa5, 0x3a, + 0xb8, 0x8c, 0xdf, 0xde, 0x54, 0xeb, 0x76, 0x59, 0xd5, 0xab, 0xe5, 0x6d, 0xd5, 0xde, 0xce, 0x8d, + 0x13, 0x02, 0xc5, 0x58, 0x4e, 0x52, 0x0e, 0x11, 0xc0, 0x79, 0x0e, 0x57, 0xa2, 0x60, 0x33, 0x7a, + 0xf5, 0x82, 0x6a, 0x6f, 0xa3, 0x02, 0x1c, 0xa4, 0x54, 0x6c, 0xc7, 0xd2, 0xf4, 0x5a, 0xb9, 0xb2, + 0x8d, 0x2b, 0x3b, 0xe5, 0xa6, 0xb3, 0x75, 0x26, 0x77, 0xd8, 0xdf, 0x3f, 0xe5, 0x70, 0x8d, 0xc2, + 0xcc, 0x12, 0x90, 0x0d, 0x67, 0xeb, 0x0c, 0x5a, 0x83, 0x0c, 0x51, 0x46, 0x43, 0xbb, 0x8a, 0xcb, + 0x5b, 0x86, 0x45, 0x63, 0xe8, 0x70, 0x1b, 0xd7, 0xe4, 0x93, 0xe0, 0xf4, 0x0a, 0x47, 0x58, 0x32, + 0xaa, 0xb8, 0x90, 0x5c, 0x5b, 0x2d, 0x95, 0xe6, 0x94, 0x41, 0x41, 0xe5, 0xbc, 0x61, 0x11, 0x83, + 0xaa, 0x19, 0xae, 0x80, 0x07, 0x99, 0x41, 0xd5, 0x0c, 0x21, 0xde, 0x93, 0x30, 0x56, 0xa9, 0xb0, + 0x31, 0x6b, 0x95, 0x32, 0x5f, 0x8c, 0xd9, 0xb9, 0x6c, 0x40, 0x58, 0x95, 0xca, 0x3c, 0x03, 0xe0, + 0x36, 0x6e, 0xa3, 0xb3, 0x70, 0xc0, 0x13, 0x96, 0x1f, 0x71, 0xb4, 0x65, 0x94, 0x61, 0xd4, 0x93, + 0x30, 0x66, 0xee, 0xb6, 0x22, 0xa2, 0x40, 0x8f, 0xe6, 0x6e, 0x18, 0xed, 0x34, 0x8c, 0x9b, 0xdb, + 0x66, 0x2b, 0xde, 0x31, 0x3f, 0x1e, 0x32, 0xb7, 0xcd, 0x30, 0xe2, 0x1b, 0xe8, 0xca, 0xdc, 0xc2, + 0x15, 0xd5, 0xc1, 0xd5, 0xdc, 0x5d, 0x7e, 0x70, 0x5f, 0x03, 0x9a, 0x86, 0x6c, 0xa5, 0x52, 0xc6, + 0xba, 0xba, 0x59, 0xc7, 0x65, 0xd5, 0xc2, 0xba, 0x6a, 0xe7, 0x26, 0x29, 0x70, 0xc2, 0xb1, 0x9a, + 0x58, 0x19, 0xae, 0x54, 0x4a, 0xb4, 0x71, 0x86, 0xb6, 0xa1, 0x63, 0x30, 0x6a, 0x6c, 0x3e, 0x5f, + 0x61, 0x16, 0x59, 0x36, 0x2d, 0xbc, 0xa5, 0x5d, 0xc9, 0xdd, 0x47, 0xc5, 0x3b, 0x42, 0x1a, 0xa8, + 0x3d, 0xae, 0xd2, 0x6a, 0xf4, 0x20, 0x64, 0x2b, 0xf6, 0xb6, 0x6a, 0x99, 0xd4, 0x25, 0xdb, 0xa6, + 0x5a, 0xc1, 0xb9, 0x37, 0x30, 0x50, 0x56, 0xbf, 0x2c, 0xaa, 0xc9, 0x8c, 0xb0, 0x5f, 0xd0, 0xb6, + 0x1c, 0x41, 0xf1, 0x01, 0x36, 0x23, 0x68, 0x1d, 0xa7, 0x76, 0x14, 0xb2, 0x44, 0x12, 0x81, 0x8e, + 0x8f, 0x52, 0xb0, 0x61, 0x73, 0xdb, 0xf4, 0xf7, 0x7b, 0x2f, 0x0c, 0x11, 0x48, 0xaf, 0xd3, 0x07, + 0x59, 0xe2, 0x66, 0x6e, 0xfb, 0x7a, 0x7c, 0x02, 0x0e, 0x12, 0xa0, 0x06, 0x76, 0xd4, 0xaa, 0xea, + 0xa8, 0x3e, 0xe8, 0x87, 0x29, 0x34, 0x11, 0xfb, 0x12, 0x6f, 0x0c, 0xf0, 0x69, 0x35, 0x37, 0x77, + 0x5d, 0xc3, 0x7a, 0x84, 0xf1, 0x49, 0xea, 0x84, 0x69, 0xdd, 0xb1, 0xe4, 0x5c, 0x2e, 0x40, 0xc6, + 0x6f, 0xf7, 0x28, 0x0d, 0xcc, 0xf2, 0xb3, 0x12, 0x49, 0x82, 0x66, 0x57, 0xe6, 0x48, 0xfa, 0xf2, + 0x5c, 0x29, 0x1b, 0x23, 0x69, 0xd4, 0xe2, 0xc2, 0x7a, 0xa9, 0xac, 0x6c, 0x2c, 0xaf, 0x2f, 0x2c, + 0x95, 0xb2, 0x71, 0x5f, 0x62, 0xff, 0x54, 0x22, 0x75, 0x7f, 0xf6, 0x01, 0xf9, 0x6b, 0x31, 0x18, + 0x0e, 0xae, 0xd4, 0xd0, 0x1b, 0xe1, 0x2e, 0xb1, 0xad, 0x62, 0x63, 0xa7, 0xfc, 0x82, 0x66, 0xd1, + 0x09, 0xd9, 0x50, 0x59, 0x70, 0x74, 0xed, 0x67, 0x9c, 0x43, 0xad, 0x61, 0xe7, 0x19, 0xcd, 0x22, + 0xd3, 0xad, 0xa1, 0x3a, 0x68, 0x11, 0x26, 0x75, 0xa3, 0x6c, 0x3b, 0xaa, 0x5e, 0x55, 0xad, 0x6a, + 0xd9, 0xdb, 0xd0, 0x2a, 0xab, 0x95, 0x0a, 0xb6, 0x6d, 0x83, 0x05, 0x42, 0x97, 0xca, 0x11, 0xdd, + 0x58, 0xe3, 0xc0, 0x5e, 0x84, 0x98, 0xe1, 0xa0, 0x21, 0xf3, 0x8d, 0x77, 0x32, 0xdf, 0xc3, 0x90, + 0x6e, 0xa8, 0x66, 0x19, 0xeb, 0x8e, 0xb5, 0x4b, 0xf3, 0xf3, 0x94, 0x92, 0x6a, 0xa8, 0x66, 0x89, + 0x94, 0x5f, 0x93, 0x65, 0xd2, 0x53, 0x89, 0x54, 0x2a, 0x9b, 0x7e, 0x2a, 0x91, 0x4a, 0x67, 0x41, + 0x7e, 0x35, 0x0e, 0x19, 0x7f, 0xbe, 0x4e, 0x96, 0x3f, 0x15, 0x1a, 0xb1, 0x24, 0xea, 0xd3, 0xee, + 0xed, 0x9a, 0xdd, 0x4f, 0xcf, 0x92, 0x50, 0x56, 0xe8, 0x67, 0xc9, 0xb1, 0xc2, 0x30, 0x49, 0x1a, + 0x41, 0x8c, 0x0d, 0xb3, 0x64, 0x24, 0xa5, 0xf0, 0x12, 0x9a, 0x87, 0xfe, 0xe7, 0x6d, 0x4a, 0xbb, + 0x9f, 0xd2, 0xbe, 0xaf, 0x3b, 0xed, 0xa7, 0xd6, 0x28, 0xf1, 0xf4, 0x53, 0x6b, 0xe5, 0xe5, 0x15, + 0x65, 0x69, 0x66, 0x51, 0xe1, 0xe8, 0xe8, 0x10, 0x24, 0xea, 0xea, 0xd5, 0xdd, 0x60, 0xd0, 0xa3, + 0x55, 0xbd, 0x2a, 0xe1, 0x10, 0x24, 0x5e, 0xc0, 0xea, 0x4e, 0x30, 0xd4, 0xd0, 0xaa, 0x3b, 0x38, + 0x19, 0x8e, 0x43, 0x92, 0xca, 0x0b, 0x01, 0x70, 0x89, 0x65, 0xfb, 0x50, 0x0a, 0x12, 0xb3, 0x2b, + 0x0a, 0x99, 0x10, 0x59, 0xc8, 0xb0, 0xda, 0xf2, 0xea, 0x42, 0x69, 0xb6, 0x94, 0x8d, 0xc9, 0x27, + 0xa1, 0x9f, 0x09, 0x81, 0x4c, 0x16, 0x57, 0x0c, 0xd9, 0x3e, 0x5e, 0xe4, 0x34, 0x24, 0xd1, 0xba, + 0xb1, 0x54, 0x2c, 0x29, 0xd9, 0x58, 0x50, 0xd5, 0x89, 0x6c, 0x52, 0xb6, 0x21, 0xe3, 0xcf, 0xc3, + 0x5f, 0x9b, 0xc5, 0xf8, 0x17, 0x24, 0x18, 0xf4, 0xe5, 0xd5, 0x24, 0x21, 0x52, 0xeb, 0x75, 0xe3, + 0x85, 0xb2, 0x5a, 0xd7, 0x54, 0x9b, 0x9b, 0x06, 0xd0, 0xaa, 0x19, 0x52, 0xd3, 0xab, 0xea, 0x5e, + 0xa3, 0x29, 0x92, 0xcc, 0xf6, 0xcb, 0x1f, 0x95, 0x20, 0x1b, 0x4e, 0x6c, 0x43, 0x6c, 0x4a, 0x3f, + 0x4e, 0x36, 0xe5, 0x8f, 0x48, 0x30, 0x1c, 0xcc, 0x66, 0x43, 0xec, 0xdd, 0xf3, 0x63, 0x65, 0xef, + 0xcf, 0x63, 0x30, 0x14, 0xc8, 0x61, 0x7b, 0xe5, 0xee, 0xed, 0x30, 0xaa, 0x55, 0x71, 0xc3, 0x34, + 0x1c, 0xac, 0x57, 0x76, 0xcb, 0x75, 0x7c, 0x19, 0xd7, 0x73, 0x32, 0x75, 0x1a, 0xc7, 0xbb, 0x67, + 0xc9, 0xd3, 0x0b, 0x1e, 0xde, 0x22, 0x41, 0x2b, 0x8c, 0x2d, 0xcc, 0x95, 0x96, 0x56, 0x57, 0xd6, + 0x4b, 0xcb, 0xb3, 0x6f, 0x2d, 0x6f, 0x2c, 0x5f, 0x5c, 0x5e, 0x79, 0x66, 0x59, 0xc9, 0x6a, 0x21, + 0xb0, 0x3b, 0x38, 0xed, 0x57, 0x21, 0x1b, 0x66, 0x0a, 0xdd, 0x05, 0xed, 0xd8, 0xca, 0xf6, 0xa1, + 0x31, 0x18, 0x59, 0x5e, 0x29, 0xaf, 0x2d, 0xcc, 0x95, 0xca, 0xa5, 0xf3, 0xe7, 0x4b, 0xb3, 0xeb, + 0x6b, 0x6c, 0xdf, 0xc3, 0x85, 0x5e, 0x0f, 0x4c, 0x70, 0xf9, 0xc3, 0x71, 0x18, 0x6b, 0xc3, 0x09, + 0x9a, 0xe1, 0x2b, 0x16, 0xb6, 0x88, 0x7a, 0xa4, 0x17, 0xee, 0xa7, 0x49, 0xce, 0xb0, 0xaa, 0x5a, + 0x0e, 0x5f, 0xe0, 0x3c, 0x08, 0x44, 0x4a, 0xba, 0xa3, 0x6d, 0x69, 0xd8, 0xe2, 0xfb, 0x49, 0x6c, + 0x19, 0x33, 0xe2, 0xd5, 0xb3, 0x2d, 0xa5, 0x87, 0x01, 0x99, 0x86, 0xad, 0x39, 0xda, 0x65, 0x5c, + 0xd6, 0x74, 0xb1, 0xf9, 0x44, 0x96, 0x35, 0x09, 0x25, 0x2b, 0x5a, 0x16, 0x74, 0xc7, 0x85, 0xd6, + 0x71, 0x4d, 0x0d, 0x41, 0x13, 0x67, 0x1e, 0x57, 0xb2, 0xa2, 0xc5, 0x85, 0xbe, 0x07, 0x32, 0x55, + 0xa3, 0x49, 0x72, 0x3d, 0x06, 0x47, 0x62, 0x87, 0xa4, 0x0c, 0xb2, 0x3a, 0x17, 0x84, 0x67, 0xf1, + 0xde, 0xae, 0x57, 0x46, 0x19, 0x64, 0x75, 0x0c, 0xe4, 0x01, 0x18, 0x51, 0x6b, 0x35, 0x8b, 0x10, + 0x17, 0x84, 0xd8, 0xba, 0x64, 0xd8, 0xad, 0xa6, 0x80, 0xf9, 0xa7, 0x20, 0x25, 0xe4, 0x40, 0x42, + 0x35, 0x91, 0x44, 0xd9, 0x64, 0x8b, 0xed, 0xd8, 0xd1, 0xb4, 0x92, 0xd2, 0x45, 0xe3, 0x3d, 0x90, + 0xd1, 0xec, 0xb2, 0xb7, 0x89, 0x1f, 0x9b, 0x8a, 0x1d, 0x4d, 0x29, 0x83, 0x9a, 0xed, 0x6e, 0x80, + 0xca, 0x9f, 0x8c, 0xc1, 0x70, 0xf0, 0x10, 0x02, 0xcd, 0x41, 0xaa, 0x6e, 0x54, 0x54, 0x6a, 0x5a, + 0xec, 0x04, 0xec, 0x68, 0xc4, 0xb9, 0xc5, 0xf4, 0x22, 0x87, 0x57, 0x5c, 0xcc, 0xfc, 0xbf, 0x97, + 0x20, 0x25, 0xaa, 0xd1, 0x41, 0x48, 0x98, 0xaa, 0xb3, 0x4d, 0xc9, 0x25, 0x8b, 0xb1, 0xac, 0xa4, + 0xd0, 0x32, 0xa9, 0xb7, 0x4d, 0x55, 0xa7, 0x26, 0xc0, 0xeb, 0x49, 0x99, 0xe8, 0xb5, 0x8e, 0xd5, + 0x2a, 0x5d, 0xf4, 0x18, 0x8d, 0x06, 0xd6, 0x1d, 0x5b, 0xe8, 0x95, 0xd7, 0xcf, 0xf2, 0x6a, 0xf4, + 0x10, 0x8c, 0x3a, 0x96, 0xaa, 0xd5, 0x03, 0xb0, 0x09, 0x0a, 0x9b, 0x15, 0x0d, 0x2e, 0x70, 0x01, + 0x0e, 0x09, 0xba, 0x55, 0xec, 0xa8, 0x95, 0x6d, 0x5c, 0xf5, 0x90, 0xfa, 0xe9, 0xe6, 0xc6, 0x5d, + 0x1c, 0x60, 0x8e, 0xb7, 0x0b, 0x5c, 0xf9, 0x6b, 0x12, 0x8c, 0x8a, 0x65, 0x5a, 0xd5, 0x15, 0xd6, + 0x12, 0x80, 0xaa, 0xeb, 0x86, 0xe3, 0x17, 0x57, 0xab, 0x29, 0xb7, 0xe0, 0x4d, 0xcf, 0xb8, 0x48, + 0x8a, 0x8f, 0x40, 0xbe, 0x01, 0xe0, 0xb5, 0x74, 0x14, 0xdb, 0x24, 0x0c, 0xf2, 0x13, 0x26, 0x7a, + 0x4c, 0xc9, 0x16, 0xf6, 0xc0, 0xaa, 0xc8, 0x7a, 0x0e, 0x8d, 0x43, 0x72, 0x13, 0xd7, 0x34, 0x9d, + 0xef, 0x1b, 0xb3, 0x82, 0xd8, 0x7e, 0x49, 0xb8, 0xdb, 0x2f, 0xc5, 0x9f, 0x87, 0xb1, 0x8a, 0xd1, + 0x08, 0xb3, 0x5b, 0xcc, 0x86, 0x36, 0x17, 0xec, 0x0b, 0xd2, 0x73, 0x8f, 0x70, 0xa0, 0x9a, 0x51, + 0x57, 0xf5, 0xda, 0xb4, 0x61, 0xd5, 0xbc, 0x63, 0x56, 0x92, 0xf1, 0xd8, 0xbe, 0xc3, 0x56, 0x73, + 0xf3, 0xff, 0x4a, 0xd2, 0xaf, 0xc5, 0xe2, 0xf3, 0xab, 0xc5, 0x4f, 0xc5, 0xf2, 0xf3, 0x0c, 0x71, + 0x55, 0x08, 0x43, 0xc1, 0x5b, 0x75, 0x5c, 0x21, 0x03, 0x84, 0xef, 0x3d, 0x04, 0xe3, 0x35, 0xa3, + 0x66, 0x50, 0x4a, 0xc7, 0xc9, 0x2f, 0x7e, 0x4e, 0x9b, 0x76, 0x6b, 0xf3, 0x91, 0x87, 0xba, 0x85, + 0x65, 0x18, 0xe3, 0xc0, 0x65, 0x7a, 0x50, 0xc4, 0x96, 0x31, 0xa8, 0xeb, 0x1e, 0x5a, 0xee, 0xb3, + 0xdf, 0xa1, 0xe1, 0x5b, 0x19, 0xe5, 0xa8, 0xa4, 0x8d, 0xad, 0x74, 0x0a, 0x0a, 0x1c, 0x08, 0xd0, + 0x63, 0x93, 0x14, 0x5b, 0x11, 0x14, 0xff, 0x90, 0x53, 0x1c, 0xf3, 0x51, 0x5c, 0xe3, 0xa8, 0x85, + 0x59, 0x18, 0xda, 0x0b, 0xad, 0x7f, 0xc7, 0x69, 0x65, 0xb0, 0x9f, 0xc8, 0x3c, 0x8c, 0x50, 0x22, + 0x95, 0xa6, 0xed, 0x18, 0x0d, 0xea, 0x01, 0xbb, 0x93, 0xf9, 0xa3, 0xef, 0xb0, 0x59, 0x33, 0x4c, + 0xd0, 0x66, 0x5d, 0xac, 0x42, 0x01, 0xe8, 0xd9, 0x58, 0x15, 0x57, 0xea, 0x11, 0x14, 0xbe, 0xc4, + 0x19, 0x71, 0xe1, 0x0b, 0x97, 0x60, 0x9c, 0xfc, 0xa6, 0x0e, 0xca, 0xcf, 0x49, 0xf4, 0x86, 0x5b, + 0xee, 0x6b, 0xef, 0x61, 0x13, 0x73, 0xcc, 0x25, 0xe0, 0xe3, 0xc9, 0xa7, 0xc5, 0x1a, 0x76, 0x1c, + 0x6c, 0xd9, 0x65, 0xb5, 0xde, 0x8e, 0x3d, 0xdf, 0x8e, 0x45, 0xee, 0x43, 0xdf, 0x0f, 0x6a, 0x71, + 0x9e, 0x61, 0xce, 0xd4, 0xeb, 0x85, 0x0d, 0xb8, 0xab, 0x8d, 0x55, 0xf4, 0x40, 0xf3, 0xc3, 0x9c, + 0xe6, 0x78, 0x8b, 0x65, 0x10, 0xb2, 0xab, 0x20, 0xea, 0x5d, 0x5d, 0xf6, 0x40, 0xf3, 0x57, 0x39, + 0x4d, 0xc4, 0x71, 0x85, 0x4a, 0x09, 0xc5, 0xa7, 0x60, 0xf4, 0x32, 0xb6, 0x36, 0x0d, 0x9b, 0xef, + 0x12, 0xf5, 0x40, 0xee, 0x23, 0x9c, 0xdc, 0x08, 0x47, 0xa4, 0xdb, 0x46, 0x84, 0xd6, 0x59, 0x48, + 0x6d, 0xa9, 0x15, 0xdc, 0x03, 0x89, 0xeb, 0x9c, 0xc4, 0x00, 0x81, 0x27, 0xa8, 0x33, 0x90, 0xa9, + 0x19, 0x3c, 0x46, 0x45, 0xa3, 0x7f, 0x94, 0xa3, 0x0f, 0x0a, 0x1c, 0x4e, 0xc2, 0x34, 0xcc, 0x66, + 0x9d, 0x04, 0xb0, 0x68, 0x12, 0xff, 0x44, 0x90, 0x10, 0x38, 0x9c, 0xc4, 0x1e, 0xc4, 0xfa, 0xb2, + 0x20, 0x61, 0xfb, 0xe4, 0xf9, 0x24, 0x0c, 0x1a, 0x7a, 0x7d, 0xd7, 0xd0, 0x7b, 0x61, 0xe2, 0x63, + 0x9c, 0x02, 0x70, 0x14, 0x42, 0xe0, 0x1c, 0xa4, 0x7b, 0x55, 0xc4, 0x3f, 0xfd, 0xbe, 0x98, 0x1e, + 0x42, 0x03, 0xf3, 0x30, 0x22, 0x1c, 0x94, 0x66, 0xe8, 0x3d, 0x90, 0xf8, 0x04, 0x27, 0x31, 0xec, + 0x43, 0xe3, 0xc3, 0x70, 0xb0, 0xed, 0xd4, 0x70, 0x2f, 0x44, 0x3e, 0x29, 0x86, 0xc1, 0x51, 0xb8, + 0x28, 0x37, 0xb1, 0x5e, 0xd9, 0xee, 0x8d, 0xc2, 0x6f, 0x08, 0x51, 0x0a, 0x1c, 0x42, 0x62, 0x16, + 0x86, 0x1a, 0xaa, 0x65, 0x6f, 0xab, 0xf5, 0x9e, 0xd4, 0xf1, 0x9b, 0x9c, 0x46, 0xc6, 0x45, 0xe2, + 0x12, 0x69, 0xea, 0x7b, 0x21, 0xf3, 0x29, 0x21, 0x11, 0x1f, 0x1a, 0x9f, 0x7a, 0xb6, 0x43, 0xb7, + 0xd4, 0xf6, 0x42, 0xed, 0xd3, 0x62, 0xea, 0x31, 0xdc, 0x25, 0x3f, 0xc5, 0x73, 0x90, 0xb6, 0xb5, + 0xab, 0x3d, 0x91, 0xf9, 0x2d, 0xa1, 0x69, 0x8a, 0x40, 0x90, 0xdf, 0x0a, 0x87, 0xda, 0x86, 0x89, + 0x1e, 0x88, 0xfd, 0x36, 0x27, 0x76, 0xb0, 0x4d, 0xa8, 0xe0, 0x2e, 0x61, 0xaf, 0x24, 0xff, 0x99, + 0x70, 0x09, 0x38, 0x44, 0x6b, 0x95, 0xac, 0x1a, 0x6c, 0x75, 0x6b, 0x6f, 0x52, 0xfb, 0xe7, 0x42, + 0x6a, 0x0c, 0x37, 0x20, 0xb5, 0x75, 0x38, 0xc8, 0x29, 0xee, 0x4d, 0xaf, 0x9f, 0x11, 0x8e, 0x95, + 0x61, 0x6f, 0x04, 0xb5, 0xfb, 0x36, 0xc8, 0xbb, 0xe2, 0x14, 0xe9, 0xa9, 0x5d, 0x6e, 0xa8, 0x66, + 0x0f, 0x94, 0x3f, 0xcb, 0x29, 0x0b, 0x8f, 0xef, 0xe6, 0xb7, 0xf6, 0x92, 0x6a, 0x12, 0xe2, 0xcf, + 0x42, 0x4e, 0x10, 0x6f, 0xea, 0x16, 0xae, 0x18, 0x35, 0x5d, 0xbb, 0x8a, 0xab, 0x3d, 0x90, 0xfe, + 0x9d, 0x90, 0xaa, 0x36, 0x7c, 0xe8, 0x84, 0xf2, 0x02, 0x64, 0xdd, 0x5c, 0xa5, 0xac, 0x35, 0x4c, + 0xc3, 0x72, 0x22, 0x28, 0x7e, 0x4e, 0x68, 0xca, 0xc5, 0x5b, 0xa0, 0x68, 0x85, 0x12, 0xb0, 0x73, + 0xe6, 0x5e, 0x4d, 0xf2, 0x15, 0x4e, 0x68, 0xc8, 0xc3, 0xe2, 0x8e, 0xa3, 0x62, 0x34, 0x4c, 0xd5, + 0xea, 0xc5, 0xff, 0xfd, 0xae, 0x70, 0x1c, 0x1c, 0x85, 0x3b, 0x0e, 0x92, 0xd1, 0x91, 0x68, 0xdf, + 0x03, 0x85, 0xcf, 0x0b, 0xc7, 0x21, 0x70, 0x38, 0x09, 0x91, 0x30, 0xf4, 0x40, 0xe2, 0x5f, 0x08, + 0x12, 0x02, 0x87, 0x90, 0x78, 0xda, 0x0b, 0xb4, 0x16, 0xae, 0x69, 0xb6, 0x63, 0xb1, 0xa4, 0xb8, + 0x3b, 0xa9, 0x7f, 0xf9, 0xfd, 0x60, 0x12, 0xa6, 0xf8, 0x50, 0x89, 0x27, 0xe2, 0x9b, 0xac, 0x74, + 0xcd, 0x14, 0xcd, 0xd8, 0xef, 0x09, 0x4f, 0xe4, 0x43, 0x23, 0xbc, 0xf9, 0x32, 0x44, 0x22, 0xf6, + 0x0a, 0x59, 0x29, 0xf4, 0x40, 0xee, 0x5f, 0x85, 0x98, 0x5b, 0x13, 0xb8, 0x84, 0xa6, 0x2f, 0xff, + 0x69, 0xea, 0x3b, 0x78, 0xb7, 0x27, 0xeb, 0xfc, 0xfd, 0x50, 0xfe, 0xb3, 0xc1, 0x30, 0x99, 0x0f, + 0x19, 0x09, 0xe5, 0x53, 0x28, 0xea, 0x56, 0x51, 0xee, 0x5d, 0x3f, 0xe4, 0xe3, 0x0d, 0xa6, 0x53, + 0x85, 0x45, 0x62, 0xe4, 0xc1, 0xa4, 0x27, 0x9a, 0xd8, 0x7b, 0x7e, 0xe8, 0xda, 0x79, 0x20, 0xe7, + 0x29, 0x9c, 0x87, 0xa1, 0x40, 0xc2, 0x13, 0x4d, 0xea, 0x17, 0x38, 0xa9, 0x8c, 0x3f, 0xdf, 0x29, + 0x9c, 0x84, 0x04, 0x49, 0x5e, 0xa2, 0xd1, 0xff, 0x0e, 0x47, 0xa7, 0xe0, 0x85, 0x37, 0x41, 0x4a, + 0x24, 0x2d, 0xd1, 0xa8, 0xef, 0xe5, 0xa8, 0x2e, 0x0a, 0x41, 0x17, 0x09, 0x4b, 0x34, 0xfa, 0xdf, + 0x15, 0xe8, 0x02, 0x85, 0xa0, 0xf7, 0x2e, 0xc2, 0x2f, 0xfc, 0xbd, 0x04, 0x0f, 0x3a, 0x42, 0x76, + 0xe7, 0x60, 0x80, 0x67, 0x2a, 0xd1, 0xd8, 0xef, 0xe3, 0x9d, 0x0b, 0x8c, 0xc2, 0x69, 0x48, 0xf6, + 0x28, 0xf0, 0xbf, 0xcf, 0x51, 0x19, 0x7c, 0x61, 0x16, 0x06, 0x7d, 0xd9, 0x49, 0x34, 0xfa, 0x3f, + 0xe0, 0xe8, 0x7e, 0x2c, 0xc2, 0x3a, 0xcf, 0x4e, 0xa2, 0x09, 0xfc, 0x43, 0xc1, 0x3a, 0xc7, 0x20, + 0x62, 0x13, 0x89, 0x49, 0x34, 0xf6, 0xfb, 0x85, 0xd4, 0x05, 0x4a, 0xe1, 0x49, 0x48, 0xbb, 0xc1, + 0x26, 0x1a, 0xff, 0x97, 0x38, 0xbe, 0x87, 0x43, 0x24, 0xe0, 0x0b, 0x76, 0xd1, 0x24, 0xfe, 0x91, + 0x90, 0x80, 0x0f, 0x8b, 0x4c, 0xa3, 0x70, 0x02, 0x13, 0x4d, 0xe9, 0x03, 0x62, 0x1a, 0x85, 0xf2, + 0x17, 0xa2, 0x4d, 0xea, 0xf3, 0xa3, 0x49, 0xfc, 0x63, 0xa1, 0x4d, 0x0a, 0x4f, 0xd8, 0x08, 0x67, + 0x04, 0xd1, 0x34, 0x7e, 0x45, 0xb0, 0x11, 0x4a, 0x08, 0x0a, 0xab, 0x80, 0x5a, 0xb3, 0x81, 0x68, + 0x7a, 0x1f, 0xe4, 0xf4, 0x46, 0x5b, 0x92, 0x81, 0xc2, 0x33, 0x70, 0xb0, 0x7d, 0x26, 0x10, 0x4d, + 0xf5, 0x43, 0x3f, 0x0c, 0xad, 0xdd, 0xfc, 0x89, 0x40, 0x61, 0xdd, 0x0b, 0x29, 0xfe, 0x2c, 0x20, + 0x9a, 0xec, 0x87, 0x7f, 0x18, 0x74, 0xdc, 0xfe, 0x24, 0xa0, 0x30, 0x03, 0xe0, 0x05, 0xe0, 0x68, + 0x5a, 0x1f, 0xe1, 0xb4, 0x7c, 0x48, 0x64, 0x6a, 0xf0, 0xf8, 0x1b, 0x8d, 0x7f, 0x5d, 0x4c, 0x0d, + 0x8e, 0x41, 0xa6, 0x86, 0x08, 0xbd, 0xd1, 0xd8, 0x1f, 0x15, 0x53, 0x43, 0xa0, 0x10, 0xcb, 0xf6, + 0x45, 0xb7, 0x68, 0x0a, 0x1f, 0x13, 0x96, 0xed, 0xc3, 0x2a, 0x2c, 0xc3, 0x68, 0x4b, 0x40, 0x8c, + 0x26, 0xf5, 0x6b, 0x9c, 0x54, 0x36, 0x1c, 0x0f, 0xfd, 0xc1, 0x8b, 0x07, 0xc3, 0x68, 0x6a, 0x1f, + 0x0f, 0x05, 0x2f, 0x1e, 0x0b, 0x0b, 0xe7, 0x20, 0xa5, 0x37, 0xeb, 0x75, 0x32, 0x79, 0x50, 0xf7, + 0x9b, 0x80, 0xb9, 0xff, 0xf2, 0x23, 0x2e, 0x1d, 0x81, 0x50, 0x38, 0x09, 0x49, 0xdc, 0xd8, 0xc4, + 0xd5, 0x28, 0xcc, 0xef, 0xfd, 0x48, 0x38, 0x4c, 0x02, 0x5d, 0x78, 0x12, 0x80, 0x6d, 0x8d, 0xd0, + 0xc3, 0xc0, 0x08, 0xdc, 0xff, 0xfa, 0x23, 0x7e, 0xf5, 0xc6, 0x43, 0xf1, 0x08, 0xb0, 0x8b, 0x3c, + 0xdd, 0x09, 0x7c, 0x3f, 0x48, 0x80, 0x6a, 0xe4, 0x2c, 0x0c, 0x3c, 0x6f, 0x1b, 0xba, 0xa3, 0xd6, + 0xa2, 0xb0, 0xff, 0x1b, 0xc7, 0x16, 0xf0, 0x44, 0x60, 0x0d, 0xc3, 0xc2, 0x8e, 0x5a, 0xb3, 0xa3, + 0x70, 0xff, 0x3b, 0xc7, 0x75, 0x11, 0x08, 0x72, 0x45, 0xb5, 0x9d, 0x5e, 0xc6, 0xfd, 0x57, 0x02, + 0x59, 0x20, 0x10, 0xa6, 0xc9, 0xef, 0x1d, 0xbc, 0x1b, 0x85, 0xfb, 0x03, 0xc1, 0x34, 0x87, 0x2f, + 0xbc, 0x09, 0xd2, 0xe4, 0x27, 0xbb, 0x4f, 0x17, 0x81, 0xfc, 0x3f, 0x38, 0xb2, 0x87, 0x41, 0x7a, + 0xb6, 0x9d, 0xaa, 0xa3, 0x45, 0x0b, 0xfb, 0x26, 0xd7, 0xb4, 0x80, 0x2f, 0xcc, 0xc0, 0xa0, 0xed, + 0x54, 0xab, 0x4d, 0x9e, 0x9f, 0x46, 0xa0, 0xff, 0xcf, 0x1f, 0xb9, 0x5b, 0x16, 0x2e, 0x0e, 0xd1, + 0xf6, 0x0b, 0x3b, 0x8e, 0x69, 0xd0, 0x03, 0x8f, 0x28, 0x0a, 0x3f, 0xe4, 0x14, 0x7c, 0x28, 0x85, + 0x59, 0xc8, 0x90, 0xb1, 0x58, 0xd8, 0xc4, 0xf4, 0x74, 0x2a, 0x82, 0xc4, 0xff, 0xe2, 0x02, 0x08, + 0x20, 0x15, 0x7f, 0xf6, 0x4b, 0xaf, 0x4e, 0x48, 0x5f, 0x7d, 0x75, 0x42, 0xfa, 0xf3, 0x57, 0x27, + 0xa4, 0xf7, 0x7f, 0x7b, 0xa2, 0xef, 0xab, 0xdf, 0x9e, 0xe8, 0xfb, 0xd3, 0x6f, 0x4f, 0xf4, 0xb5, + 0xdf, 0x25, 0x86, 0x79, 0x63, 0xde, 0x60, 0xfb, 0xc3, 0xcf, 0xc9, 0x35, 0xcd, 0xd9, 0x6e, 0x6e, + 0x4e, 0x57, 0x8c, 0x06, 0xdd, 0xc6, 0xf5, 0x76, 0x6b, 0xdd, 0x45, 0x0e, 0xbc, 0x12, 0x87, 0x43, + 0x15, 0xc3, 0x6e, 0x18, 0x76, 0x99, 0xed, 0xf7, 0xb2, 0x02, 0xdf, 0xf1, 0xcd, 0xf8, 0x9b, 0x7a, + 0xd8, 0xf4, 0xbd, 0x00, 0xc3, 0x74, 0xe8, 0x74, 0xbb, 0x8b, 0x5a, 0x5b, 0xa4, 0x83, 0xf8, 0xf2, + 0x7f, 0x4c, 0xd2, 0x51, 0x0f, 0xb9, 0x88, 0xf4, 0xf4, 0x7e, 0x1d, 0xc6, 0xb5, 0x86, 0x59, 0xc7, + 0x74, 0x9b, 0xbf, 0xec, 0xb6, 0x45, 0xd3, 0xfb, 0x0a, 0xa7, 0x37, 0xe6, 0xa1, 0x2f, 0x08, 0xec, + 0xc2, 0x22, 0x8c, 0xaa, 0x95, 0x0a, 0x36, 0x03, 0x24, 0x23, 0xd4, 0x22, 0x18, 0xcc, 0x72, 0x4c, + 0x8f, 0xda, 0x69, 0xe8, 0xb7, 0x2b, 0x6a, 0x5d, 0x8d, 0x34, 0x0e, 0xc1, 0x13, 0x07, 0x2f, 0x9e, + 0xe9, 0xa4, 0xd3, 0xe7, 0x26, 0x7c, 0x2a, 0x63, 0xb2, 0xe7, 0x7f, 0x1e, 0x61, 0x94, 0xfb, 0xd9, + 0x9d, 0x67, 0xf8, 0x93, 0x38, 0x4c, 0xf0, 0xf6, 0x4d, 0xd5, 0xc6, 0xc7, 0x2f, 0x3f, 0xb6, 0x89, + 0x1d, 0xf5, 0xb1, 0xe3, 0x15, 0x43, 0xd3, 0xb9, 0xee, 0xc6, 0xb8, 0x26, 0x49, 0xfb, 0x34, 0x6f, + 0xcf, 0xb7, 0xdd, 0xd8, 0xcf, 0x77, 0xb6, 0x00, 0x79, 0x03, 0x12, 0xb3, 0x86, 0xa6, 0xa3, 0x71, + 0x48, 0x56, 0xb1, 0x6e, 0x34, 0xf8, 0x05, 0x3e, 0x56, 0x40, 0x8f, 0x41, 0xbf, 0xda, 0x30, 0x9a, + 0xba, 0xc3, 0x8e, 0x3b, 0x8a, 0x87, 0xbe, 0x74, 0x63, 0xb2, 0xef, 0xcf, 0x6e, 0x4c, 0xc6, 0x17, + 0x74, 0xe7, 0xeb, 0xaf, 0x3c, 0x02, 0x9c, 0xd4, 0x82, 0xee, 0x28, 0x1c, 0xb0, 0x90, 0xf8, 0xee, + 0xcb, 0x93, 0x92, 0xfc, 0x2c, 0x0c, 0xcc, 0xe1, 0xca, 0x7e, 0x28, 0xcf, 0xe1, 0x8a, 0x8f, 0xf2, + 0x1c, 0xae, 0x84, 0x28, 0x9f, 0x86, 0xd4, 0x82, 0xee, 0xb0, 0xeb, 0x97, 0x0f, 0x41, 0x5c, 0xd3, + 0xd9, 0x8d, 0x9e, 0xae, 0xbc, 0x11, 0x28, 0x82, 0x38, 0x87, 0x2b, 0x2e, 0x62, 0x15, 0x57, 0xc2, + 0x88, 0xad, 0x5d, 0x13, 0xa8, 0xe2, 0xdc, 0x9f, 0xfe, 0xe7, 0x89, 0xbe, 0x17, 0x5f, 0x9d, 0xe8, + 0xeb, 0xa8, 0x55, 0xb9, 0xa3, 0x56, 0xed, 0xea, 0x0e, 0x3b, 0xa8, 0x71, 0x35, 0xfb, 0x97, 0xfd, + 0x20, 0x73, 0x18, 0xdb, 0x51, 0x77, 0x34, 0xbd, 0xe6, 0x2a, 0x57, 0x6d, 0x3a, 0xdb, 0x57, 0xb9, + 0x76, 0x0f, 0x72, 0x2e, 0x38, 0xcc, 0xbe, 0x15, 0x9c, 0x8f, 0x30, 0x23, 0xf9, 0x2f, 0xe2, 0x80, + 0xd6, 0x1c, 0x75, 0x07, 0xcf, 0x34, 0x9d, 0x6d, 0xc3, 0xd2, 0xae, 0x32, 0x87, 0x8a, 0x01, 0x1a, + 0xea, 0x95, 0xb2, 0x63, 0xec, 0x60, 0xdd, 0xa6, 0x82, 0x1a, 0x3c, 0x71, 0x68, 0xba, 0x8d, 0xc9, + 0x4d, 0x13, 0x25, 0x17, 0x1f, 0xfa, 0xd4, 0xb7, 0x26, 0x1f, 0x88, 0x96, 0x02, 0x05, 0x26, 0x19, + 0xfe, 0x95, 0x75, 0x4a, 0x18, 0x5d, 0x02, 0x76, 0xd3, 0xa3, 0x5c, 0xd7, 0x6c, 0x87, 0x5f, 0x16, + 0x3f, 0x39, 0xdd, 0x7e, 0xec, 0xd3, 0xad, 0x6c, 0x4e, 0x5f, 0x52, 0xeb, 0x5a, 0x55, 0x75, 0x0c, + 0xcb, 0xbe, 0xd0, 0xa7, 0xa4, 0x29, 0xa9, 0x45, 0xcd, 0x76, 0xd0, 0x3a, 0xa4, 0xab, 0x58, 0xdf, + 0x65, 0x64, 0xe3, 0xb7, 0x46, 0x36, 0x45, 0x28, 0x51, 0xaa, 0xcf, 0x02, 0x52, 0xfd, 0x70, 0xe2, + 0x75, 0x14, 0xbb, 0xe4, 0xd9, 0x81, 0x7c, 0x80, 0x32, 0x7d, 0xcc, 0x31, 0xaa, 0x86, 0xab, 0xf2, + 0x6f, 0x01, 0xf0, 0xfa, 0x44, 0x27, 0x60, 0x40, 0xad, 0x56, 0x2d, 0x6c, 0xdb, 0xf4, 0x14, 0x32, + 0x5d, 0xcc, 0x7d, 0xfd, 0x95, 0x47, 0xc6, 0x39, 0xfd, 0x19, 0xd6, 0xc2, 0x16, 0xf6, 0x8a, 0x00, + 0x2c, 0x8c, 0x7e, 0xfd, 0x95, 0x47, 0x86, 0x02, 0x7d, 0x15, 0x33, 0x00, 0x97, 0x5d, 0xa2, 0xc7, + 0x3e, 0x2a, 0xc1, 0x68, 0x0b, 0x2f, 0x48, 0x86, 0x89, 0x99, 0x8d, 0xf5, 0x0b, 0x2b, 0xca, 0xc2, + 0x73, 0x33, 0xeb, 0x0b, 0x2b, 0xcb, 0x65, 0xf6, 0x22, 0x61, 0x79, 0x6d, 0xb5, 0x34, 0xbb, 0x70, + 0x7e, 0xa1, 0x34, 0x97, 0xed, 0x43, 0x93, 0x70, 0xb8, 0x0d, 0xcc, 0x5c, 0x69, 0xb1, 0x34, 0x3f, + 0xb3, 0x5e, 0xca, 0x4a, 0xe8, 0x1e, 0xb8, 0xbb, 0x2d, 0x11, 0x17, 0x24, 0xd6, 0x01, 0x44, 0x29, + 0xb9, 0x20, 0xf1, 0xe2, 0xf9, 0x8e, 0xf3, 0xeb, 0xe1, 0xae, 0x96, 0x75, 0xc5, 0x9d, 0x48, 0xc1, + 0x99, 0xf6, 0xae, 0x18, 0x1c, 0x0a, 0x47, 0x34, 0x55, 0xdf, 0xed, 0xf0, 0x28, 0xb5, 0xfd, 0xcc, + 0x92, 0x2f, 0x40, 0x7c, 0x46, 0xdf, 0x45, 0x87, 0x58, 0xba, 0x5f, 0x6e, 0x5a, 0x75, 0xee, 0xc7, + 0x06, 0x48, 0x79, 0xc3, 0xaa, 0x13, 0xff, 0x26, 0xde, 0x21, 0x48, 0x47, 0x33, 0xfc, 0x71, 0x41, + 0x21, 0xfb, 0xc1, 0x97, 0x27, 0xfb, 0x3e, 0xf3, 0xf2, 0x64, 0xdf, 0x0f, 0x3e, 0x36, 0xd9, 0xf7, + 0xe2, 0x37, 0xa7, 0xfa, 0x8a, 0x3b, 0xe1, 0xe1, 0x7d, 0x21, 0x32, 0xd8, 0xa7, 0x66, 0xf4, 0x5d, + 0xea, 0xb0, 0x56, 0xa5, 0xe7, 0x92, 0x74, 0x70, 0xe2, 0x7c, 0x77, 0x22, 0x7c, 0xbe, 0xfb, 0x0c, + 0xae, 0xd7, 0x2f, 0xea, 0xc6, 0x0b, 0x54, 0xab, 0x9e, 0x0c, 0x3e, 0x10, 0x83, 0x89, 0x96, 0xa8, + 0xce, 0x13, 0xa0, 0x4e, 0xaf, 0x73, 0x0b, 0x90, 0x9a, 0x13, 0x79, 0x55, 0x0e, 0x06, 0x6c, 0x5c, + 0x31, 0xf4, 0x2a, 0xf3, 0x01, 0x71, 0x45, 0x14, 0xc9, 0xb0, 0x75, 0x55, 0x37, 0x6c, 0xfe, 0x24, + 0x80, 0x15, 0x8a, 0xbf, 0x2a, 0xed, 0x2d, 0x9d, 0x19, 0x12, 0x3d, 0x89, 0x61, 0x3e, 0x16, 0x79, + 0xe2, 0xbd, 0x43, 0x46, 0xe9, 0x0e, 0x22, 0x70, 0xea, 0xdd, 0xab, 0x54, 0x7e, 0x25, 0x06, 0x93, + 0x61, 0xa9, 0x90, 0xac, 0xd2, 0x76, 0xd4, 0x86, 0xd9, 0x49, 0x2c, 0xe7, 0x20, 0xbd, 0x2e, 0x60, + 0xf6, 0x2c, 0x97, 0xeb, 0x7b, 0x94, 0xcb, 0xb0, 0xdb, 0x95, 0x10, 0xcc, 0x89, 0x1e, 0x05, 0xe3, + 0x8e, 0x63, 0x5f, 0x92, 0xf9, 0x54, 0x02, 0xee, 0xa6, 0x6f, 0xc6, 0xac, 0x86, 0xa6, 0x3b, 0xc7, + 0x2b, 0xd6, 0xae, 0xe9, 0xd0, 0xbc, 0xd2, 0xd8, 0xe2, 0x72, 0x19, 0xf5, 0x9a, 0xa7, 0x59, 0x73, + 0x87, 0x99, 0xb3, 0x05, 0xc9, 0x55, 0x82, 0x47, 0x24, 0xe2, 0x18, 0x8e, 0x5a, 0xe7, 0x92, 0x62, + 0x05, 0x52, 0xcb, 0xde, 0x99, 0xc5, 0x58, 0xad, 0x26, 0x9e, 0x98, 0xd5, 0xb1, 0xba, 0xc5, 0xae, + 0xeb, 0xc7, 0xe9, 0x84, 0x4a, 0x91, 0x0a, 0x7a, 0x33, 0x7f, 0x1c, 0x92, 0x6a, 0x93, 0xdd, 0x34, + 0x89, 0x93, 0x99, 0x46, 0x0b, 0xf2, 0x45, 0x18, 0xe0, 0xe7, 0xdd, 0x28, 0x0b, 0xf1, 0x1d, 0xbc, + 0x4b, 0xfb, 0xc9, 0x28, 0xe4, 0x27, 0x9a, 0x86, 0x24, 0x65, 0x9e, 0x87, 0x96, 0xdc, 0x74, 0x0b, + 0xf7, 0xd3, 0x94, 0x49, 0x85, 0x81, 0xc9, 0x4f, 0x41, 0x6a, 0xce, 0x68, 0x68, 0xba, 0x11, 0xa4, + 0x96, 0x66, 0xd4, 0x28, 0xcf, 0x66, 0x93, 0xe7, 0x2c, 0x0a, 0x2b, 0xa0, 0x83, 0xd0, 0xcf, 0x9e, + 0x6f, 0xf0, 0xdb, 0x32, 0xbc, 0x24, 0xcf, 0xc2, 0x00, 0xa5, 0xbd, 0x62, 0x22, 0xc4, 0x1f, 0xfe, + 0xf1, 0x77, 0x22, 0x34, 0x73, 0xe6, 0xe4, 0x63, 0x1e, 0xb3, 0x08, 0x12, 0x55, 0xd5, 0x51, 0xf9, + 0xb8, 0xe9, 0x6f, 0xf9, 0xcd, 0x90, 0xe2, 0x44, 0x48, 0x58, 0x88, 0x1b, 0xa6, 0xcd, 0xef, 0xbb, + 0xe4, 0x3b, 0x0d, 0x65, 0xc5, 0x2c, 0x26, 0x48, 0x46, 0xa3, 0x10, 0xe0, 0xa2, 0xd2, 0xd1, 0xa9, + 0x9e, 0xf1, 0x39, 0x55, 0x9f, 0xca, 0x7d, 0x3f, 0x99, 0x4a, 0x5b, 0xcc, 0xc1, 0x35, 0x96, 0x8f, + 0xc5, 0x60, 0xc2, 0xd7, 0x7a, 0x19, 0x5b, 0xb6, 0x66, 0xe8, 0x3c, 0xd2, 0x33, 0x6b, 0x41, 0x3e, + 0x26, 0x79, 0x7b, 0x07, 0x73, 0x79, 0x13, 0xc4, 0x67, 0x4c, 0x13, 0xe5, 0x21, 0x45, 0xcb, 0x15, + 0x83, 0xd9, 0x4b, 0x42, 0x71, 0xcb, 0xa4, 0xcd, 0x36, 0xb6, 0x9c, 0x17, 0x54, 0xcb, 0x7d, 0xe1, + 0x28, 0xca, 0xf2, 0x59, 0x48, 0xcf, 0x1a, 0xba, 0x8d, 0x75, 0xbb, 0x49, 0xe7, 0xe0, 0x66, 0xdd, + 0xa8, 0xec, 0x70, 0x0a, 0xac, 0x40, 0x04, 0xae, 0x9a, 0x26, 0xc5, 0x4c, 0x28, 0xe4, 0x27, 0xcb, + 0x28, 0x8b, 0x6b, 0x1d, 0x45, 0x74, 0x76, 0xef, 0x22, 0xe2, 0x83, 0x74, 0x65, 0xf4, 0xff, 0x25, + 0x38, 0xd2, 0x3a, 0xa1, 0x76, 0xf0, 0xae, 0xbd, 0xd7, 0xf9, 0xf4, 0x2c, 0xa4, 0x57, 0xe9, 0x67, + 0x06, 0x2e, 0xe2, 0x5d, 0x94, 0x87, 0x01, 0x5c, 0x3d, 0x71, 0xf2, 0xe4, 0x63, 0x67, 0x99, 0xb5, + 0x5f, 0xe8, 0x53, 0x44, 0x05, 0x9a, 0x80, 0xb4, 0x8d, 0x2b, 0xe6, 0x89, 0x93, 0xa7, 0x76, 0x1e, + 0x63, 0xe6, 0x45, 0x72, 0x23, 0xb7, 0xaa, 0x90, 0x22, 0xa3, 0xfe, 0xee, 0xc7, 0x26, 0xa5, 0x62, + 0x12, 0xe2, 0x76, 0xb3, 0x71, 0x47, 0x6d, 0xe4, 0xc3, 0x49, 0x98, 0xf2, 0x63, 0x52, 0x4f, 0xe5, + 0x66, 0x25, 0x5c, 0x06, 0x59, 0x9f, 0x0c, 0x28, 0x44, 0x87, 0x34, 0xb7, 0xab, 0x24, 0xe5, 0xdf, + 0x91, 0x20, 0xe3, 0x26, 0x51, 0x6b, 0xd8, 0x41, 0xe7, 0xfc, 0xf9, 0x0f, 0x9f, 0x36, 0x87, 0xa7, + 0xc3, 0x7d, 0x79, 0xc9, 0x9e, 0xe2, 0x03, 0x47, 0xa7, 0xa9, 0x21, 0x9a, 0x86, 0xcd, 0x5f, 0xbd, + 0x45, 0xa0, 0xba, 0xc0, 0xe8, 0x61, 0x40, 0xd4, 0xc3, 0x95, 0x2f, 0x1b, 0x8e, 0xa6, 0xd7, 0xca, + 0xa6, 0xf1, 0x02, 0x7f, 0x4b, 0x1c, 0x57, 0xb2, 0xb4, 0xe5, 0x12, 0x6d, 0x58, 0x25, 0xf5, 0x84, + 0xe9, 0xb4, 0x4b, 0x85, 0x84, 0x15, 0x2f, 0xf1, 0x23, 0x4e, 0x40, 0x14, 0xd1, 0x39, 0x18, 0x30, + 0x9b, 0x9b, 0x65, 0xe1, 0x31, 0x06, 0x4f, 0x1c, 0x69, 0x37, 0xff, 0x85, 0x7d, 0x70, 0x0f, 0xd0, + 0x6f, 0x36, 0x37, 0x89, 0xb5, 0xdc, 0x03, 0x99, 0x36, 0xcc, 0x0c, 0x5e, 0xf6, 0xf8, 0xa0, 0x5f, + 0xb7, 0xe0, 0x23, 0x28, 0x9b, 0x96, 0x66, 0x58, 0x9a, 0xb3, 0x4b, 0x33, 0xdb, 0xb8, 0x92, 0x15, + 0x0d, 0xab, 0xbc, 0x5e, 0xde, 0x81, 0x91, 0x35, 0xba, 0xfc, 0xf6, 0x38, 0x3f, 0xe9, 0xf1, 0x27, + 0x45, 0xf3, 0xd7, 0x91, 0xb3, 0x58, 0x0b, 0x67, 0xc5, 0xa7, 0x3b, 0x5a, 0xe7, 0xe9, 0xbd, 0x5b, + 0x67, 0x30, 0x43, 0xfc, 0xab, 0x43, 0x81, 0xc9, 0xc9, 0x8c, 0xd3, 0xef, 0xbe, 0x7a, 0x35, 0xcc, + 0xa8, 0x6c, 0x22, 0xdf, 0x3d, 0xa8, 0xe6, 0x23, 0xdc, 0x68, 0x3e, 0x72, 0x0a, 0xc9, 0x67, 0x61, + 0x68, 0x55, 0xb5, 0x9c, 0x35, 0xec, 0x5c, 0xc0, 0x6a, 0x15, 0x5b, 0xc1, 0xa8, 0x3b, 0x24, 0xa2, + 0x2e, 0x82, 0x04, 0x0d, 0xad, 0x2c, 0xea, 0xd0, 0xdf, 0xf2, 0x36, 0x24, 0xe8, 0xc5, 0x55, 0x37, + 0x22, 0x73, 0x0c, 0x16, 0x91, 0x89, 0x2f, 0xdd, 0x75, 0xb0, 0x2d, 0xd2, 0x5b, 0x5a, 0x40, 0x4f, + 0x88, 0xb8, 0x1a, 0xef, 0x1e, 0x57, 0xb9, 0x21, 0xf2, 0xe8, 0x5a, 0x87, 0x81, 0x22, 0x71, 0xc5, + 0x0b, 0x73, 0x2e, 0x23, 0x92, 0xc7, 0x08, 0x5a, 0x82, 0x11, 0x53, 0xb5, 0x1c, 0xfa, 0x62, 0x67, + 0x9b, 0x8e, 0x82, 0xdb, 0xfa, 0x64, 0xeb, 0xcc, 0x0b, 0x0c, 0x96, 0xf7, 0x32, 0x64, 0xfa, 0x2b, + 0xe5, 0xbf, 0x48, 0x40, 0x3f, 0x17, 0xc6, 0x9b, 0x60, 0x80, 0x8b, 0x95, 0x5b, 0xe7, 0xdd, 0xd3, + 0xad, 0x81, 0x69, 0xda, 0x0d, 0x20, 0x9c, 0x9e, 0xc0, 0x41, 0xf7, 0x43, 0xaa, 0xb2, 0xad, 0x6a, + 0x7a, 0x59, 0xab, 0xf2, 0xed, 0x8a, 0xc1, 0x57, 0x6f, 0x4c, 0x0e, 0xcc, 0x92, 0xba, 0x85, 0x39, + 0x65, 0x80, 0x36, 0x2e, 0x54, 0x49, 0x26, 0xb0, 0x8d, 0xb5, 0xda, 0xb6, 0xc3, 0x67, 0x18, 0x2f, + 0xa1, 0x33, 0x90, 0x20, 0x06, 0xc1, 0xdf, 0x73, 0xe6, 0x5b, 0x36, 0x93, 0xdc, 0x64, 0xaf, 0x98, + 0x22, 0x1d, 0xbf, 0xff, 0x5b, 0x93, 0x92, 0x42, 0x31, 0xd0, 0x2c, 0x0c, 0xd5, 0x55, 0xdb, 0x29, + 0xd3, 0x08, 0x46, 0xba, 0x4f, 0xf2, 0x95, 0x78, 0x8b, 0x40, 0xb8, 0x60, 0x39, 0xeb, 0x83, 0x04, + 0x8b, 0x55, 0x55, 0xd1, 0x51, 0xc8, 0x52, 0x22, 0x15, 0xa3, 0xd1, 0xd0, 0x1c, 0x96, 0x5b, 0xf5, + 0x53, 0xb9, 0x0f, 0x93, 0xfa, 0x59, 0x5a, 0x4d, 0x33, 0xac, 0xc3, 0x90, 0xa6, 0x2f, 0xc8, 0x28, + 0x08, 0xbb, 0x2d, 0x9d, 0x22, 0x15, 0xb4, 0xf1, 0x01, 0x18, 0xf1, 0xfc, 0x23, 0x03, 0x49, 0x31, + 0x2a, 0x5e, 0x35, 0x05, 0x7c, 0x14, 0xc6, 0x75, 0x7c, 0x85, 0xde, 0xdf, 0x0e, 0x40, 0xa7, 0x29, + 0x34, 0x22, 0x6d, 0x97, 0x82, 0x18, 0x6f, 0x80, 0xe1, 0x8a, 0x10, 0x3e, 0x83, 0x05, 0x0a, 0x3b, + 0xe4, 0xd6, 0x52, 0xb0, 0x43, 0x90, 0x52, 0x4d, 0x93, 0x01, 0x0c, 0x72, 0xff, 0x68, 0x9a, 0xb4, + 0xe9, 0x18, 0x8c, 0xd2, 0x31, 0x5a, 0xd8, 0x6e, 0xd6, 0x1d, 0x4e, 0x24, 0x43, 0x61, 0x46, 0x48, + 0x83, 0xc2, 0xea, 0x29, 0xec, 0xbd, 0x30, 0x84, 0x2f, 0x6b, 0x55, 0xac, 0x57, 0x30, 0x83, 0x1b, + 0xa2, 0x70, 0x19, 0x51, 0x49, 0x81, 0x1e, 0x04, 0xd7, 0xef, 0x95, 0x85, 0x4f, 0x1e, 0x66, 0xf4, + 0x44, 0x3d, 0x5f, 0x89, 0xcb, 0x39, 0x48, 0xcc, 0xa9, 0x8e, 0x4a, 0x12, 0x0c, 0xe7, 0x0a, 0x0b, + 0x34, 0x19, 0x85, 0xfc, 0x94, 0xbf, 0x1b, 0x83, 0xc4, 0x25, 0xc3, 0xc1, 0xe8, 0x71, 0x5f, 0x02, + 0x38, 0xdc, 0xce, 0x9e, 0xd7, 0xb4, 0x9a, 0x8e, 0xab, 0x4b, 0x76, 0xcd, 0xf7, 0xb9, 0x07, 0xcf, + 0x9c, 0x62, 0x01, 0x73, 0x1a, 0x87, 0xa4, 0x65, 0x34, 0xf5, 0xaa, 0xb8, 0x68, 0x4c, 0x0b, 0xa8, + 0x04, 0x29, 0xd7, 0x4a, 0x12, 0x51, 0x56, 0x32, 0x42, 0xac, 0x84, 0xd8, 0x30, 0xaf, 0x50, 0x06, + 0x36, 0xb9, 0xb1, 0x14, 0x21, 0xed, 0x3a, 0x2f, 0x6e, 0x6d, 0xbd, 0x19, 0xac, 0x87, 0x46, 0x82, + 0x89, 0xab, 0x7b, 0x57, 0x78, 0xcc, 0xe2, 0xb2, 0x6e, 0x03, 0x97, 0x5e, 0xc0, 0xac, 0xf8, 0xa7, + 0x27, 0x06, 0xe8, 0xb8, 0x3c, 0xb3, 0x62, 0x9f, 0x9f, 0x38, 0x02, 0x69, 0x5b, 0xab, 0xe9, 0xaa, + 0xd3, 0xb4, 0x30, 0xb7, 0x3c, 0xaf, 0x42, 0xfe, 0x82, 0x04, 0xfd, 0xcc, 0x92, 0x7d, 0x72, 0x93, + 0xda, 0xcb, 0x2d, 0xd6, 0x49, 0x6e, 0xf1, 0xfd, 0xcb, 0x6d, 0x06, 0xc0, 0x65, 0xc6, 0xe6, 0x5f, + 0x04, 0x68, 0x93, 0x31, 0x30, 0x16, 0xd7, 0xb4, 0x1a, 0x9f, 0xa8, 0x3e, 0x24, 0xf9, 0x3f, 0x49, + 0x24, 0x89, 0xe5, 0xed, 0x68, 0x06, 0x86, 0x04, 0x5f, 0xe5, 0xad, 0xba, 0x5a, 0xe3, 0xb6, 0x73, + 0x77, 0x47, 0xe6, 0xce, 0xd7, 0xd5, 0x9a, 0x32, 0xc8, 0xf9, 0x21, 0x85, 0xf6, 0x7a, 0x88, 0x75, + 0xd0, 0x43, 0x40, 0xf1, 0xf1, 0xfd, 0x29, 0x3e, 0xa0, 0xa2, 0x44, 0x58, 0x45, 0x9f, 0x8b, 0xd1, + 0xc5, 0x8c, 0x69, 0xd8, 0x6a, 0xfd, 0xb5, 0x98, 0x11, 0x87, 0x21, 0x6d, 0x1a, 0xf5, 0x32, 0x6b, + 0x61, 0x17, 0xf0, 0x53, 0xa6, 0x51, 0x57, 0x5a, 0xd4, 0x9e, 0xbc, 0x4d, 0xd3, 0xa5, 0xff, 0x36, + 0x48, 0x6d, 0x20, 0x2c, 0x35, 0x0b, 0x32, 0x4c, 0x14, 0x3c, 0x96, 0x3d, 0x4a, 0x64, 0x40, 0x83, + 0xa3, 0xd4, 0x1a, 0x7b, 0x19, 0xdb, 0x0c, 0x52, 0xe1, 0x70, 0x04, 0x83, 0xb9, 0xfe, 0x76, 0xab, + 0x60, 0xbf, 0x59, 0x2a, 0x1c, 0x4e, 0xfe, 0x65, 0x09, 0x60, 0x91, 0x48, 0x96, 0x8e, 0x97, 0x44, + 0x21, 0x9b, 0xb2, 0x50, 0x0e, 0xf4, 0x3c, 0xd1, 0x49, 0x69, 0xbc, 0xff, 0x8c, 0xed, 0xe7, 0x7b, + 0x16, 0x86, 0x3c, 0x63, 0xb4, 0xb1, 0x60, 0x66, 0xa2, 0x4b, 0x56, 0xbd, 0x86, 0x1d, 0x25, 0x73, + 0xd9, 0x57, 0x92, 0xff, 0xad, 0x04, 0x69, 0xca, 0xd3, 0x12, 0x76, 0xd4, 0x80, 0x0e, 0xa5, 0xfd, + 0xeb, 0xf0, 0x6e, 0x00, 0x46, 0xc6, 0xd6, 0xae, 0x62, 0x6e, 0x59, 0x69, 0x5a, 0xb3, 0xa6, 0x5d, + 0xc5, 0xe8, 0x94, 0x2b, 0xf0, 0x78, 0x77, 0x81, 0x8b, 0xac, 0x9b, 0x8b, 0xfd, 0x2e, 0x18, 0xa0, + 0x5f, 0xd0, 0xba, 0x62, 0xf3, 0x44, 0xba, 0x5f, 0x6f, 0x36, 0xd6, 0xaf, 0xd8, 0xf2, 0xf3, 0x30, + 0xb0, 0x7e, 0x85, 0xed, 0x8d, 0x1c, 0x86, 0xb4, 0x65, 0x18, 0x3c, 0x26, 0xb3, 0x5c, 0x28, 0x45, + 0x2a, 0x68, 0x08, 0x12, 0xfb, 0x01, 0x31, 0x6f, 0x3f, 0xc0, 0xdb, 0xd0, 0x88, 0xf7, 0xb4, 0xa1, + 0x71, 0xec, 0x4f, 0x24, 0x18, 0xf4, 0xf9, 0x07, 0xf4, 0x18, 0x1c, 0x28, 0x2e, 0xae, 0xcc, 0x5e, + 0x2c, 0x2f, 0xcc, 0x95, 0xcf, 0x2f, 0xce, 0xcc, 0x7b, 0x4f, 0xcc, 0xf2, 0x07, 0xaf, 0x5d, 0x9f, + 0x42, 0x3e, 0xd8, 0x0d, 0x9d, 0xee, 0x28, 0xa1, 0xe3, 0x30, 0x1e, 0x44, 0x99, 0x29, 0xae, 0x95, + 0x96, 0xd7, 0xb3, 0x52, 0xfe, 0xc0, 0xb5, 0xeb, 0x53, 0xa3, 0x3e, 0x8c, 0x99, 0x4d, 0x1b, 0xeb, + 0x4e, 0x2b, 0xc2, 0xec, 0xca, 0xd2, 0xd2, 0xc2, 0x7a, 0x36, 0xd6, 0x82, 0xc0, 0x1d, 0xf6, 0x83, + 0x30, 0x1a, 0x44, 0x58, 0x5e, 0x58, 0xcc, 0xc6, 0xf3, 0xe8, 0xda, 0xf5, 0xa9, 0x61, 0x1f, 0xf4, + 0xb2, 0x56, 0xcf, 0xa7, 0x5e, 0xfa, 0xf8, 0x44, 0xdf, 0x6f, 0xfc, 0xfa, 0x84, 0x44, 0x46, 0x36, + 0x14, 0xf0, 0x11, 0xe8, 0x61, 0xb8, 0x6b, 0x6d, 0x61, 0x7e, 0xb9, 0x34, 0x57, 0x5e, 0x5a, 0x9b, + 0x17, 0x7b, 0xd0, 0x62, 0x74, 0x23, 0xd7, 0xae, 0x4f, 0x0d, 0xf2, 0x21, 0x75, 0x82, 0x5e, 0x55, + 0x4a, 0x97, 0x56, 0xd6, 0x4b, 0x59, 0x89, 0x41, 0xaf, 0x5a, 0xf8, 0xb2, 0xe1, 0xb0, 0x4f, 0xec, + 0x3d, 0x0a, 0x87, 0xda, 0x40, 0xbb, 0x03, 0x1b, 0xbd, 0x76, 0x7d, 0x6a, 0x68, 0xd5, 0xc2, 0x6c, + 0xfe, 0x50, 0x8c, 0x69, 0xc8, 0xb5, 0x62, 0xac, 0xac, 0xae, 0xac, 0xcd, 0x2c, 0x66, 0xa7, 0xf2, + 0xd9, 0x6b, 0xd7, 0xa7, 0x32, 0xc2, 0x19, 0xd2, 0x23, 0x00, 0x77, 0x64, 0x77, 0x72, 0xc5, 0xf3, + 0x8b, 0x27, 0xe0, 0xbe, 0x0e, 0xa7, 0x4f, 0xe2, 0xdc, 0x62, 0x5f, 0xe7, 0x4f, 0x1d, 0xf7, 0xd9, + 0xf3, 0x11, 0xdb, 0xcf, 0xd1, 0x4b, 0xa7, 0xfd, 0x9f, 0x6d, 0xe5, 0xbb, 0x2e, 0xee, 0xe4, 0xf7, + 0x49, 0x30, 0x7c, 0x41, 0xb3, 0x1d, 0xc3, 0xd2, 0x2a, 0x6a, 0x9d, 0x3e, 0x2c, 0x3b, 0xd5, 0xab, + 0x6f, 0x0d, 0x4d, 0xf5, 0x27, 0xa1, 0xff, 0xb2, 0x5a, 0x67, 0x4e, 0x2d, 0x4e, 0xbf, 0x83, 0xd3, + 0xe1, 0x30, 0xc8, 0x75, 0x6d, 0x82, 0x00, 0x43, 0x93, 0xbf, 0x11, 0x83, 0x11, 0x3a, 0x19, 0x6c, + 0xf6, 0x85, 0x34, 0xb2, 0xc6, 0x5a, 0x85, 0x84, 0xa5, 0x3a, 0x7c, 0xd3, 0xb0, 0xf8, 0x46, 0x7e, + 0x4a, 0x79, 0x7f, 0x0f, 0xa7, 0x6c, 0xad, 0x07, 0x99, 0x94, 0x12, 0x7a, 0x1e, 0x52, 0x0d, 0xf5, + 0x4a, 0x99, 0x52, 0x65, 0xeb, 0x98, 0x95, 0xbd, 0x51, 0xbd, 0x79, 0x63, 0x72, 0x64, 0x57, 0x6d, + 0xd4, 0x0b, 0xb2, 0xa0, 0x23, 0x87, 0x3a, 0x1a, 0x68, 0xa8, 0x57, 0x08, 0xfb, 0xe8, 0xe7, 0x61, + 0x84, 0xc0, 0x54, 0xb6, 0x55, 0xbd, 0x86, 0x59, 0x97, 0x74, 0x7b, 0xb4, 0x78, 0x69, 0xcf, 0x5d, + 0x1e, 0xf4, 0xba, 0xf4, 0x91, 0x0b, 0xf7, 0x3c, 0xd4, 0x50, 0xaf, 0xcc, 0xd2, 0x66, 0xd2, 0x7f, + 0x21, 0xf5, 0xc1, 0x97, 0x27, 0xfb, 0xe8, 0x89, 0xf1, 0xd7, 0x24, 0x00, 0x4f, 0xb6, 0xe8, 0x67, + 0x20, 0x5b, 0x71, 0x4b, 0x94, 0x92, 0x38, 0xdf, 0x7c, 0xa0, 0x93, 0xd6, 0x42, 0x9a, 0x61, 0x51, + 0xfc, 0xab, 0x37, 0x26, 0x25, 0x65, 0xa4, 0x12, 0x52, 0xda, 0xdb, 0x60, 0xb0, 0x69, 0x56, 0x55, + 0x07, 0x97, 0xe9, 0x8a, 0x2f, 0x16, 0x99, 0x11, 0x4c, 0x10, 0x5a, 0x37, 0x6f, 0x4c, 0x22, 0x36, + 0x48, 0x1f, 0xb2, 0x4c, 0xf3, 0x04, 0x60, 0x35, 0x04, 0xc1, 0x37, 0xa6, 0x2f, 0x4b, 0x30, 0x38, + 0xe7, 0xbb, 0x1c, 0x9a, 0x83, 0x81, 0x86, 0xa1, 0x6b, 0x3b, 0xdc, 0x72, 0xd3, 0x8a, 0x28, 0xa2, + 0x3c, 0xa4, 0xd8, 0xab, 0x5c, 0x67, 0x57, 0x6c, 0x9a, 0x8a, 0x32, 0xc1, 0x7a, 0x01, 0x6f, 0xda, + 0x9a, 0xd0, 0x8d, 0x22, 0x8a, 0xe8, 0x3c, 0x64, 0x6d, 0x5c, 0x69, 0x5a, 0x9a, 0xb3, 0x5b, 0xae, + 0x18, 0xba, 0xa3, 0x56, 0x1c, 0xf6, 0xbe, 0xb3, 0x78, 0xf8, 0xe6, 0x8d, 0xc9, 0xbb, 0x18, 0xaf, + 0x61, 0x08, 0x59, 0x19, 0x11, 0x55, 0xb3, 0xac, 0x86, 0xf4, 0x50, 0xc5, 0x8e, 0xaa, 0xd5, 0xed, + 0x1c, 0xbb, 0x22, 0x21, 0x8a, 0xbe, 0xb1, 0xfc, 0x60, 0xc0, 0xbf, 0x05, 0xf6, 0x73, 0x90, 0x35, + 0x4c, 0x6c, 0x05, 0x52, 0x56, 0x36, 0x03, 0x1e, 0xf7, 0x7a, 0x0e, 0x43, 0xc8, 0x1d, 0xcf, 0x47, + 0x47, 0x04, 0xa8, 0x48, 0x73, 0x1d, 0xa2, 0x7e, 0xb1, 0xd4, 0x34, 0x9b, 0x9b, 0xde, 0x8e, 0xda, + 0x78, 0x8b, 0x96, 0x66, 0xf4, 0x5d, 0x7f, 0xaf, 0x61, 0x3c, 0xf9, 0x2b, 0x5e, 0xaf, 0xde, 0x0e, + 0xd7, 0x45, 0xbc, 0x4b, 0xcc, 0x82, 0x83, 0xae, 0x52, 0x48, 0x92, 0xb8, 0x3e, 0xaf, 0x6a, 0x75, + 0xf1, 0xfd, 0x02, 0x85, 0x97, 0x50, 0x01, 0xfa, 0x6d, 0x47, 0x75, 0x9a, 0x36, 0x3f, 0x45, 0x96, + 0x3b, 0x99, 0x60, 0xd1, 0xd0, 0xab, 0x6b, 0x14, 0x52, 0xe1, 0x18, 0x68, 0x1d, 0xfa, 0xf9, 0xf1, + 0x7c, 0x72, 0xcf, 0x1e, 0xa2, 0xcd, 0xfd, 0x0d, 0x46, 0x0b, 0xbd, 0x5b, 0x82, 0x6c, 0x15, 0xd7, + 0x71, 0x8d, 0xe5, 0x69, 0xdb, 0x2a, 0x59, 0xce, 0xd0, 0x6f, 0x0d, 0x16, 0x9f, 0xd9, 0xf3, 0xcc, + 0xe5, 0x82, 0x0b, 0xd3, 0x0b, 0x4f, 0xdd, 0x11, 0x17, 0x60, 0x8d, 0xb6, 0xa3, 0x8b, 0x81, 0xab, + 0xcf, 0xfc, 0xf3, 0x9c, 0xf7, 0x76, 0x92, 0x8d, 0x6f, 0x22, 0x88, 0xed, 0x0f, 0xff, 0xc5, 0xe9, + 0xf3, 0x90, 0x6d, 0xea, 0x9b, 0x86, 0x4e, 0x5f, 0x20, 0xf3, 0xe5, 0x03, 0x59, 0x3e, 0xc6, 0xfd, + 0xb6, 0x1c, 0x86, 0x90, 0x95, 0x11, 0xb7, 0xea, 0x02, 0x5b, 0x64, 0x54, 0x61, 0xd8, 0x83, 0xa2, + 0xb3, 0x3b, 0x1d, 0x39, 0xbb, 0xef, 0xe1, 0xb3, 0xfb, 0x40, 0xb8, 0x17, 0x6f, 0x82, 0x0f, 0xb9, + 0x95, 0x04, 0x0d, 0x5d, 0x00, 0xf0, 0x7c, 0x0a, 0xdd, 0x06, 0x19, 0xec, 0x6c, 0x15, 0x9e, 0x63, + 0x12, 0xcb, 0x49, 0x0f, 0x17, 0x5d, 0x93, 0x60, 0xac, 0xa1, 0xe9, 0x65, 0x1b, 0xd7, 0xb7, 0xca, + 0x5c, 0xc2, 0x84, 0x26, 0xfd, 0x82, 0x54, 0xf1, 0xb9, 0xbd, 0x59, 0xcb, 0xcd, 0x1b, 0x93, 0x79, + 0xee, 0x86, 0x5b, 0x49, 0xca, 0x21, 0x5b, 0x1a, 0x6d, 0x68, 0xfa, 0x1a, 0xae, 0x6f, 0xcd, 0xb9, + 0x10, 0x85, 0xcc, 0x4b, 0x2f, 0x4f, 0xf6, 0xf1, 0x29, 0xdf, 0x27, 0xaf, 0xd2, 0x9d, 0x7a, 0x3e, + 0x25, 0xb1, 0x8d, 0x4e, 0x41, 0x5a, 0x15, 0x85, 0xc8, 0x2b, 0x0f, 0x1e, 0x28, 0x73, 0x22, 0x2f, + 0x7e, 0x73, 0x4a, 0x92, 0xbf, 0x29, 0x41, 0xff, 0xdc, 0xa5, 0x55, 0x55, 0xb3, 0x90, 0x0a, 0xa3, + 0x9e, 0xc1, 0x05, 0x5d, 0xc8, 0x13, 0x37, 0x6f, 0x4c, 0xe6, 0xc2, 0x36, 0x19, 0xe9, 0x43, 0xbc, + 0xf9, 0x20, 0x9c, 0x88, 0xda, 0x69, 0x61, 0x1d, 0xe8, 0xa2, 0x05, 0xa4, 0x4b, 0x17, 0xe1, 0xe5, + 0x78, 0x48, 0x60, 0x25, 0x18, 0x60, 0xa3, 0xb3, 0x51, 0x01, 0x92, 0x26, 0xf9, 0xc1, 0x0f, 0x34, + 0x26, 0x3a, 0xce, 0x0a, 0x0a, 0xef, 0x6e, 0xc0, 0x12, 0x14, 0x92, 0x66, 0xc0, 0xdc, 0xa5, 0x4b, + 0xeb, 0x96, 0x66, 0xd6, 0xb1, 0xf3, 0x5a, 0x48, 0xaa, 0x0e, 0x07, 0x7c, 0xab, 0x3e, 0xab, 0x12, + 0x92, 0xd6, 0x99, 0x9b, 0x37, 0x26, 0x8f, 0x84, 0xa5, 0xe5, 0x03, 0xeb, 0xdc, 0xd5, 0x98, 0xb7, + 0x2e, 0xb4, 0x2a, 0x6d, 0x7b, 0xab, 0xda, 0x8e, 0xdb, 0x5b, 0xbc, 0x73, 0x6f, 0x3e, 0xb0, 0x5e, + 0x7a, 0x9b, 0xb3, 0x9d, 0xf6, 0x2a, 0x5a, 0x83, 0x41, 0x4f, 0xb4, 0x36, 0x9a, 0x83, 0x94, 0xc3, + 0x7f, 0x73, 0x4d, 0xc9, 0x9d, 0x35, 0x25, 0xd0, 0xb8, 0xb6, 0x5c, 0x4c, 0xf9, 0xf3, 0x44, 0x61, + 0xee, 0x2c, 0xfa, 0xc9, 0x30, 0x6d, 0x12, 0xb8, 0x78, 0x5c, 0x89, 0xdf, 0x86, 0xd4, 0x96, 0xd3, + 0x0a, 0x69, 0xe3, 0xf7, 0x63, 0x30, 0xb6, 0x21, 0x1c, 0xeb, 0x4f, 0x9c, 0x04, 0x57, 0x61, 0x00, + 0xeb, 0x8e, 0xa5, 0x51, 0x11, 0x12, 0xdb, 0x7a, 0xb4, 0x93, 0x6d, 0xb5, 0x91, 0x01, 0xfd, 0xa2, + 0x98, 0x38, 0xe2, 0xe0, 0x64, 0x42, 0xd2, 0xfb, 0x74, 0x1c, 0x72, 0x9d, 0x30, 0xd1, 0x2c, 0x8c, + 0x54, 0x2c, 0xcc, 0x2e, 0xc0, 0xf9, 0xf7, 0x59, 0x8b, 0x79, 0x2f, 0x57, 0x0f, 0x01, 0xc8, 0xca, + 0xb0, 0xa8, 0xe1, 0xc1, 0xb4, 0x06, 0x24, 0x75, 0x26, 0x46, 0x4e, 0xef, 0xd1, 0xf5, 0x96, 0x2b, + 0xcb, 0x3c, 0x9a, 0x8a, 0x4e, 0x82, 0x04, 0x58, 0x38, 0x1d, 0xf6, 0x6a, 0x69, 0x3c, 0xfd, 0xdb, + 0x30, 0xa2, 0xe9, 0x9a, 0xa3, 0xa9, 0xf5, 0xf2, 0xa6, 0x5a, 0x57, 0xf5, 0xca, 0x7e, 0xd6, 0x21, + 0x2c, 0x00, 0xf2, 0x6e, 0x43, 0xe4, 0xc2, 0xc1, 0x6f, 0x98, 0xb7, 0x17, 0x59, 0x33, 0xba, 0x04, + 0x03, 0xa2, 0xe3, 0xc4, 0x6d, 0xc8, 0xd3, 0x04, 0x31, 0x5f, 0x02, 0xfd, 0x9b, 0x71, 0x18, 0x55, + 0x70, 0xf5, 0xa7, 0x6a, 0xba, 0x15, 0x35, 0xbd, 0x0d, 0x80, 0x39, 0x12, 0x12, 0x10, 0xf6, 0xa1, + 0xa9, 0x56, 0xc7, 0x94, 0x66, 0xf4, 0xe6, 0x6c, 0xc7, 0xa7, 0xab, 0x4f, 0xc4, 0x21, 0xe3, 0xd7, + 0xd5, 0x4f, 0x63, 0xf0, 0x2d, 0xc5, 0x60, 0xb4, 0xe0, 0x79, 0xc2, 0x04, 0xff, 0x0e, 0x74, 0x07, + 0x4f, 0xd8, 0x32, 0x43, 0xba, 0xbb, 0xc0, 0xff, 0x1d, 0x83, 0xfe, 0x55, 0xd5, 0x52, 0x1b, 0x36, + 0xaa, 0xb4, 0x24, 0xfe, 0x62, 0xb3, 0xb9, 0xe5, 0x6b, 0xff, 0x7c, 0x6f, 0x2b, 0x22, 0xef, 0xff, + 0x60, 0x9b, 0xbc, 0xff, 0x2d, 0x30, 0xdc, 0x50, 0xaf, 0xf8, 0xce, 0x4c, 0xa9, 0x76, 0x86, 0x8a, + 0x87, 0x3c, 0x2a, 0xc1, 0x76, 0x99, 0xee, 0x78, 0x5c, 0xf2, 0xdf, 0x58, 0x19, 0x24, 0x10, 0x5e, + 0x60, 0x20, 0xe8, 0x07, 0xbd, 0xad, 0x05, 0x5f, 0xa3, 0xac, 0x40, 0x43, 0xbd, 0x52, 0x62, 0x05, + 0xb4, 0x08, 0x68, 0xdb, 0xdd, 0x07, 0x2b, 0x7b, 0xe2, 0x24, 0xf8, 0x77, 0xdf, 0xbc, 0x31, 0x79, + 0x88, 0xe1, 0xb7, 0xc2, 0xc8, 0xca, 0xa8, 0x57, 0x29, 0xa8, 0x3d, 0x01, 0x40, 0xc6, 0x55, 0x66, + 0x97, 0xfe, 0xd9, 0xd2, 0xf4, 0xc0, 0xcd, 0x1b, 0x93, 0xa3, 0x8c, 0x8a, 0xd7, 0x26, 0x2b, 0x69, + 0x52, 0x98, 0x23, 0xbf, 0x7d, 0x33, 0xe4, 0xe3, 0x12, 0x20, 0x2f, 0xe4, 0x28, 0xd8, 0x36, 0xc9, + 0x5a, 0x9a, 0xac, 0x8b, 0x7c, 0x6b, 0x18, 0xa9, 0xfb, 0xba, 0xc8, 0xc3, 0x17, 0xeb, 0x22, 0xdf, + 0x8c, 0x3b, 0xeb, 0x39, 0xe4, 0x58, 0xd4, 0xbd, 0x76, 0x6e, 0x22, 0x61, 0x9f, 0xdb, 0x27, 0x7f, + 0x43, 0x82, 0x43, 0x2d, 0x16, 0xe5, 0x32, 0xfb, 0x73, 0x80, 0x2c, 0x5f, 0x23, 0xff, 0xa8, 0x27, + 0x63, 0x7a, 0xcf, 0x06, 0x3a, 0x6a, 0xb5, 0xf8, 0xf6, 0x3b, 0x15, 0x53, 0xd8, 0x13, 0x8b, 0x7f, + 0x23, 0xc1, 0xb8, 0x9f, 0x19, 0x77, 0x58, 0xcb, 0x90, 0xf1, 0xf3, 0xc2, 0x07, 0x74, 0x5f, 0x2f, + 0x03, 0xe2, 0x63, 0x09, 0xe0, 0xa3, 0xa7, 0xbd, 0xc9, 0xcb, 0xf6, 0x4d, 0x1f, 0xeb, 0x59, 0x36, + 0x82, 0xa7, 0xf0, 0x24, 0x4e, 0x50, 0xed, 0x7c, 0x24, 0x06, 0x89, 0x55, 0xc3, 0xa8, 0xa3, 0x77, + 0xc2, 0xa8, 0x6e, 0x38, 0x65, 0x62, 0x67, 0xb8, 0xea, 0x7f, 0xcd, 0x90, 0x2e, 0x3e, 0xbd, 0x37, + 0x91, 0x7d, 0xef, 0xc6, 0x64, 0x2b, 0xa9, 0x90, 0x1c, 0x47, 0x74, 0xc3, 0x29, 0xd2, 0x76, 0xfe, + 0xbc, 0xe1, 0x9a, 0x04, 0x43, 0xc1, 0xbe, 0x99, 0xcb, 0xc5, 0x7b, 0xee, 0x3b, 0x48, 0xe6, 0xe6, + 0x8d, 0xc9, 0x71, 0x6f, 0x3a, 0xb9, 0xd5, 0xe1, 0x18, 0x97, 0xd9, 0xf4, 0x31, 0xc3, 0xee, 0xfd, + 0xfd, 0xe0, 0xe5, 0x49, 0xe9, 0xd8, 0xe7, 0x25, 0x00, 0x6f, 0x43, 0x09, 0x3d, 0x0c, 0x77, 0x15, + 0x57, 0x96, 0xe7, 0xca, 0x6b, 0xeb, 0x33, 0xeb, 0x1b, 0x6b, 0xc1, 0xcb, 0xff, 0xe2, 0xdc, 0xc4, + 0x36, 0x71, 0x45, 0xdb, 0xd2, 0x70, 0x15, 0xdd, 0x0f, 0xe3, 0x41, 0x68, 0x52, 0x2a, 0xcd, 0x65, + 0xa5, 0x7c, 0xe6, 0xda, 0xf5, 0xa9, 0x14, 0x4b, 0x1b, 0x71, 0x15, 0x1d, 0x85, 0x03, 0xad, 0x70, + 0x0b, 0xcb, 0xf3, 0xd9, 0x58, 0x7e, 0xe8, 0xda, 0xf5, 0xa9, 0xb4, 0x9b, 0x5f, 0x22, 0x19, 0x90, + 0x1f, 0x92, 0xd3, 0x8b, 0xe7, 0xe1, 0xda, 0xf5, 0xa9, 0x7e, 0x26, 0xcf, 0x7c, 0xe2, 0xa5, 0x8f, + 0x4f, 0xf4, 0xdd, 0xf6, 0x27, 0x02, 0x9f, 0x48, 0x75, 0x3c, 0x0e, 0xa9, 0x61, 0x1d, 0xdb, 0x9a, + 0xbd, 0xaf, 0xe3, 0x90, 0x9e, 0x8e, 0x58, 0xba, 0xbd, 0xca, 0xfa, 0xe3, 0x24, 0x64, 0xe6, 0x19, + 0x03, 0x44, 0x47, 0x18, 0xbd, 0x11, 0xfa, 0x4d, 0x1a, 0x8c, 0xdc, 0xa3, 0xd7, 0x0e, 0x13, 0x85, + 0x85, 0x2c, 0xf7, 0xfe, 0x1f, 0x0b, 0x60, 0x36, 0xbf, 0x00, 0xc4, 0xee, 0x25, 0x7a, 0x37, 0xed, + 0x32, 0xc5, 0x85, 0x3d, 0x67, 0x57, 0x7c, 0xbf, 0x2c, 0x4c, 0x4f, 0x66, 0x77, 0x89, 0xd6, 0x49, + 0x0d, 0xbb, 0x51, 0xf8, 0x0b, 0x12, 0x1c, 0xa0, 0x50, 0x5e, 0x98, 0xa7, 0x90, 0x62, 0xc9, 0x72, + 0xac, 0xd3, 0x10, 0x16, 0x55, 0xdb, 0xbb, 0x1f, 0xc4, 0xee, 0x00, 0xde, 0xc7, 0xc3, 0xe9, 0x11, + 0x5f, 0xe7, 0x61, 0xb2, 0xb2, 0x32, 0x56, 0x6f, 0xc1, 0xb4, 0xd1, 0x7c, 0xe0, 0x12, 0x68, 0x62, + 0x6f, 0xc7, 0x33, 0xfe, 0x0b, 0xa1, 0x4f, 0xc1, 0xa0, 0xe7, 0x83, 0x6c, 0xfe, 0xaf, 0x8c, 0x7a, + 0x8f, 0x40, 0x7e, 0x64, 0xf4, 0x5e, 0x09, 0x0e, 0x78, 0x39, 0x81, 0x9f, 0x2c, 0xfb, 0x97, 0x4f, + 0x0f, 0xed, 0x61, 0x39, 0x17, 0x16, 0x4e, 0x5b, 0xba, 0xb2, 0x32, 0xde, 0x6c, 0x45, 0x25, 0x0b, + 0xc9, 0x21, 0xbf, 0x47, 0xb6, 0x73, 0xe2, 0xab, 0xa6, 0xbd, 0xbb, 0xf4, 0x20, 0x01, 0xf6, 0x6f, + 0x68, 0x4c, 0xc3, 0x72, 0x70, 0x95, 0xee, 0xb2, 0xa6, 0x14, 0xb7, 0x2c, 0x6f, 0x03, 0x6a, 0x55, + 0x6e, 0xf0, 0xb5, 0x93, 0xd4, 0xd3, 0x6b, 0x27, 0x34, 0x0e, 0x49, 0xff, 0x85, 0x51, 0x56, 0x28, + 0xa4, 0x5e, 0xe2, 0xe1, 0xf9, 0xb6, 0x3b, 0x8a, 0x6f, 0xc5, 0xe0, 0x98, 0xff, 0xb0, 0xf1, 0xed, + 0x4d, 0x6c, 0xed, 0xba, 0xf3, 0xda, 0x54, 0x6b, 0x9a, 0xee, 0x7f, 0x53, 0x73, 0xc8, 0x9f, 0x50, + 0x50, 0x58, 0x21, 0x41, 0xf9, 0x25, 0x09, 0x06, 0x57, 0xd5, 0x1a, 0x56, 0xf0, 0xdb, 0x9b, 0xd8, + 0x76, 0xda, 0xbc, 0x59, 0x38, 0x08, 0xfd, 0xc6, 0xd6, 0x96, 0xb8, 0x21, 0x91, 0x50, 0x78, 0x89, + 0x8c, 0xb9, 0xae, 0x35, 0x34, 0x76, 0xb9, 0x30, 0xa1, 0xb0, 0x02, 0x9a, 0x84, 0xc1, 0x8a, 0xd1, + 0xd4, 0xf9, 0x64, 0xcc, 0x25, 0xc4, 0x87, 0x85, 0x9a, 0x3a, 0x9b, 0x8c, 0x28, 0x07, 0x03, 0x16, + 0xbe, 0x8c, 0x2d, 0x9b, 0x7d, 0x4a, 0x35, 0xa5, 0x88, 0xa2, 0xfc, 0x24, 0x64, 0x18, 0x27, 0x3c, + 0xbc, 0x1f, 0x82, 0x14, 0xbd, 0xb7, 0xe7, 0xf1, 0x33, 0x40, 0xca, 0x17, 0xd9, 0xcb, 0x07, 0x46, + 0x9f, 0xb1, 0xc4, 0x0a, 0xc5, 0x62, 0x47, 0x29, 0x1f, 0x8d, 0xf6, 0x27, 0x4c, 0x86, 0xae, 0x84, + 0xff, 0x30, 0x09, 0x07, 0xf8, 0x51, 0xb0, 0x6a, 0x6a, 0xc7, 0xb7, 0x1d, 0x47, 0xbc, 0xc4, 0x01, + 0x9e, 0x65, 0xab, 0xa6, 0x26, 0xef, 0x42, 0xe2, 0x82, 0xe3, 0x98, 0xe8, 0x18, 0x24, 0xad, 0x66, + 0x1d, 0x8b, 0xad, 0x35, 0xf7, 0xe8, 0x46, 0x35, 0xb5, 0x69, 0x02, 0xa0, 0x34, 0xeb, 0x58, 0x61, + 0x20, 0xa8, 0x04, 0x93, 0x5b, 0xcd, 0x7a, 0x7d, 0xb7, 0x5c, 0xc5, 0xf4, 0x7f, 0xc3, 0xb9, 0xff, + 0x5d, 0x05, 0x5f, 0x31, 0x55, 0xf1, 0x8d, 0x56, 0x22, 0x98, 0x23, 0x14, 0x6c, 0x8e, 0x42, 0x89, + 0xff, 0xac, 0x52, 0x12, 0x30, 0xf2, 0x9f, 0xc5, 0x20, 0x25, 0x48, 0xd3, 0xa7, 0x08, 0xb8, 0x8e, + 0x2b, 0x8e, 0x21, 0x0e, 0xdc, 0xdc, 0x32, 0x42, 0x10, 0xaf, 0x71, 0xe5, 0xa5, 0x2f, 0xf4, 0x29, + 0xa4, 0x40, 0xea, 0xdc, 0x07, 0x22, 0xa4, 0xce, 0x6c, 0x12, 0x7d, 0x26, 0x4c, 0x43, 0xac, 0x35, + 0x2f, 0xf4, 0x29, 0xb4, 0x84, 0x72, 0xd0, 0x4f, 0xa6, 0x93, 0xc3, 0xb4, 0x45, 0xea, 0x79, 0x19, + 0x1d, 0x84, 0xa4, 0xa9, 0x3a, 0x15, 0x76, 0x77, 0x93, 0x34, 0xb0, 0x22, 0x3a, 0x0d, 0xfd, 0xec, + 0x13, 0x04, 0xe1, 0x7f, 0xbc, 0x44, 0x84, 0xc1, 0xbe, 0xf5, 0x48, 0xf8, 0x5e, 0x55, 0x1d, 0x07, + 0x5b, 0x3a, 0x21, 0xc8, 0xc0, 0x11, 0x82, 0xc4, 0xa6, 0x51, 0xdd, 0xe5, 0xff, 0x0c, 0x8a, 0xfe, + 0xe6, 0xff, 0x7d, 0x86, 0xda, 0x43, 0x99, 0x36, 0xb2, 0xff, 0x81, 0x97, 0x11, 0x95, 0x45, 0x02, + 0x54, 0x82, 0x31, 0xb5, 0x5a, 0xd5, 0xd8, 0xff, 0x65, 0x2a, 0x6f, 0x6a, 0xd4, 0xad, 0xd8, 0xf4, + 0x3f, 0x1c, 0x76, 0xd2, 0x05, 0xf2, 0x10, 0x8a, 0x1c, 0xbe, 0x98, 0x86, 0x01, 0x93, 0x31, 0x25, + 0x9f, 0x83, 0xd1, 0x16, 0x4e, 0x09, 0x7f, 0x3b, 0x9a, 0x5e, 0x15, 0xaf, 0x66, 0xc8, 0x6f, 0x52, + 0x47, 0xbf, 0xce, 0xca, 0x8e, 0x32, 0xe9, 0xef, 0xe2, 0xbb, 0x3b, 0x3f, 0xae, 0x1a, 0xf6, 0x3d, + 0xae, 0x52, 0x4d, 0xad, 0x98, 0xa6, 0xf4, 0xf9, 0x93, 0xaa, 0x99, 0xd6, 0x27, 0x55, 0x35, 0xac, + 0x8b, 0x68, 0x4e, 0x9a, 0x54, 0x53, 0xb3, 0xa9, 0x39, 0x7a, 0x5f, 0x8b, 0xb5, 0xcf, 0xf9, 0x7e, + 0xd3, 0x17, 0x56, 0x89, 0xf9, 0x99, 0xd5, 0x05, 0xd7, 0x8e, 0xbf, 0x18, 0x83, 0x23, 0x3e, 0x3b, + 0xf6, 0x01, 0xb7, 0x9a, 0x73, 0xbe, 0xbd, 0xc5, 0xf7, 0xf0, 0x10, 0xff, 0x22, 0x24, 0x08, 0x3c, + 0x8a, 0xf8, 0xdf, 0x30, 0xb9, 0xcf, 0x7c, 0xe5, 0x5f, 0xcb, 0xc1, 0xc3, 0xcd, 0x80, 0x56, 0x28, + 0x91, 0xe2, 0x7b, 0x7b, 0x97, 0x5f, 0xd6, 0xfb, 0x50, 0xae, 0x7d, 0xfb, 0xc4, 0x18, 0x96, 0xe1, + 0x4b, 0x67, 0x3b, 0xbe, 0x91, 0x66, 0xce, 0xb4, 0x7b, 0x52, 0xb6, 0x07, 0x4f, 0xdd, 0xe9, 0xa1, + 0x49, 0x37, 0x0d, 0xde, 0x7a, 0x7a, 0x77, 0x05, 0x0e, 0x3e, 0x4d, 0xd8, 0xf2, 0x16, 0xef, 0x22, + 0x1a, 0x1c, 0x74, 0xcf, 0x83, 0x25, 0xfe, 0x45, 0x01, 0x96, 0xa2, 0x9f, 0x07, 0xf0, 0x58, 0xe7, + 0xcb, 0xd6, 0xfb, 0xa7, 0x3b, 0x46, 0x99, 0x69, 0x5f, 0x84, 0x51, 0x7c, 0x98, 0xf2, 0xa7, 0x25, + 0xb8, 0xab, 0xa5, 0x6b, 0xee, 0xfe, 0xe7, 0xdb, 0x3c, 0x97, 0xd9, 0x57, 0xa6, 0x34, 0xdf, 0x86, + 0xd9, 0x07, 0x22, 0x99, 0x65, 0x5c, 0x04, 0xb8, 0x7d, 0x16, 0x0e, 0x04, 0x99, 0x15, 0x62, 0x7a, + 0x12, 0x86, 0x83, 0xfb, 0xe7, 0x91, 0x99, 0xc3, 0x50, 0x60, 0x0f, 0x5d, 0x2e, 0x87, 0x35, 0xe0, + 0x4a, 0xa1, 0x04, 0x69, 0x17, 0x94, 0x27, 0xdb, 0x3d, 0x0b, 0xc1, 0xc3, 0x24, 0x82, 0x9e, 0x0a, + 0xf6, 0xe0, 0x4b, 0xbb, 0x6e, 0xd7, 0x30, 0x6e, 0x9b, 0x59, 0x7c, 0x57, 0x82, 0x7b, 0xba, 0x70, + 0xcb, 0x45, 0x73, 0x15, 0xc6, 0x7d, 0x7b, 0x1a, 0x22, 0x22, 0x08, 0x53, 0x39, 0x16, 0x9d, 0x0a, + 0xbb, 0x8b, 0xf6, 0xc3, 0x44, 0x5c, 0x9f, 0xfa, 0xd6, 0xe4, 0x58, 0x6b, 0x9b, 0xad, 0x8c, 0xb5, + 0xee, 0x3c, 0xdc, 0x46, 0x9b, 0x7a, 0x45, 0x82, 0x07, 0x83, 0x43, 0x6d, 0x93, 0x53, 0xbf, 0xfe, + 0x34, 0xf4, 0x0d, 0x09, 0x8e, 0xf5, 0xc2, 0x36, 0x57, 0xd5, 0x26, 0x8c, 0x79, 0xeb, 0x80, 0xb0, + 0xa6, 0xf6, 0xb4, 0xba, 0x60, 0x96, 0x8d, 0x5c, 0x6a, 0x77, 0x40, 0x25, 0xbf, 0x2e, 0xf1, 0xd9, + 0xe8, 0xb7, 0x06, 0x57, 0xfe, 0xc1, 0xad, 0xef, 0x68, 0xf9, 0x07, 0xb6, 0xbf, 0xdb, 0x28, 0x30, + 0xb6, 0x27, 0x05, 0x7a, 0x6b, 0x0a, 0xf9, 0x32, 0x77, 0x9d, 0x6d, 0x36, 0x27, 0xdf, 0x06, 0x63, + 0x6d, 0x66, 0x06, 0x77, 0x1f, 0x7b, 0x98, 0x18, 0x0a, 0x6a, 0xb5, 0x7d, 0xf9, 0xb7, 0x25, 0x98, + 0xa4, 0x1d, 0xb7, 0x51, 0xcf, 0xeb, 0x51, 0x4e, 0x0d, 0xee, 0xf9, 0xda, 0xb2, 0xcb, 0x05, 0xb6, + 0x00, 0xfd, 0xcc, 0xa2, 0xb8, 0x8c, 0xf6, 0x61, 0x92, 0x9c, 0x80, 0xfc, 0xbb, 0xc2, 0xd3, 0xce, + 0x89, 0x01, 0xb5, 0x9f, 0xc7, 0xb7, 0x26, 0x9f, 0xdb, 0x34, 0x8f, 0x7d, 0x62, 0xfa, 0x9a, 0xf0, + 0xb9, 0xed, 0xf9, 0xe6, 0x82, 0xaa, 0xdc, 0x36, 0x9f, 0xcb, 0xa4, 0x76, 0x67, 0x9d, 0xeb, 0x1f, + 0x08, 0xe7, 0xea, 0x8e, 0x29, 0xc2, 0xb9, 0xbe, 0xde, 0x94, 0xe2, 0xba, 0xd9, 0x88, 0x01, 0xfc, + 0x4d, 0x74, 0xb3, 0x7f, 0x10, 0x83, 0x43, 0x74, 0x6c, 0xfe, 0x4d, 0x9c, 0xdb, 0xa9, 0x0c, 0x64, + 0x5b, 0x95, 0xf2, 0x1e, 0xbd, 0x48, 0xd6, 0xb6, 0x2a, 0x97, 0x42, 0x11, 0x13, 0x55, 0x03, 0xdb, + 0x7b, 0x94, 0x4e, 0x3c, 0x8a, 0x4e, 0xd5, 0xb7, 0xaf, 0xd4, 0xc6, 0x38, 0x12, 0xb7, 0xc1, 0x38, + 0xbe, 0x2a, 0x41, 0xbe, 0x9d, 0x00, 0xb9, 0x31, 0x68, 0x70, 0x30, 0x70, 0xe8, 0x13, 0xb6, 0x87, + 0x87, 0x7b, 0xd9, 0x54, 0x0b, 0x4d, 0xd7, 0x03, 0x16, 0xbe, 0xd3, 0xd9, 0xd0, 0x64, 0xd0, 0xde, + 0x5b, 0xd7, 0x24, 0xaf, 0xc3, 0x69, 0xfa, 0x4a, 0x8b, 0xcf, 0xff, 0x1b, 0xb1, 0x9e, 0xf9, 0x2d, + 0x09, 0x26, 0x3a, 0xb0, 0xfd, 0x7a, 0x0c, 0xe4, 0xdb, 0x1d, 0x6d, 0xe3, 0x76, 0xaf, 0x96, 0x9e, + 0xe0, 0x13, 0x2b, 0xf8, 0x1c, 0xc3, 0xb7, 0x28, 0x6e, 0xf7, 0x9e, 0x53, 0x7e, 0x2b, 0x1c, 0x6e, + 0x8b, 0xc5, 0x79, 0x2b, 0x40, 0x62, 0x5b, 0xb3, 0x1d, 0xce, 0xd6, 0xfd, 0x9d, 0xd8, 0x0a, 0x61, + 0x53, 0x1c, 0x19, 0x41, 0x96, 0x92, 0x5e, 0x35, 0x8c, 0x3a, 0x67, 0x43, 0xbe, 0x08, 0xa3, 0xbe, + 0x3a, 0xde, 0xc9, 0x29, 0x48, 0x98, 0x06, 0xff, 0x56, 0xc9, 0xe0, 0x89, 0x23, 0x1d, 0x8f, 0x65, + 0x0c, 0xa3, 0xce, 0x87, 0x4d, 0xe1, 0xe5, 0x71, 0x40, 0x8c, 0x18, 0x3d, 0xa1, 0x11, 0x5d, 0xac, + 0xc1, 0x58, 0xa0, 0x96, 0x77, 0x72, 0x4b, 0xa7, 0x3f, 0x27, 0xbe, 0x77, 0x00, 0x92, 0x94, 0x2a, + 0xfa, 0x90, 0x14, 0xf8, 0xcc, 0xd8, 0x74, 0x27, 0x32, 0xed, 0x37, 0x27, 0xf2, 0xc7, 0x7b, 0x86, + 0xe7, 0x99, 0xeb, 0xb1, 0x77, 0xff, 0x87, 0xef, 0x7c, 0x20, 0x76, 0x1f, 0x92, 0x8f, 0x77, 0xd8, + 0x31, 0xf1, 0x4d, 0xb2, 0x4f, 0x06, 0x3e, 0x84, 0xf1, 0x48, 0x6f, 0x5d, 0x09, 0xce, 0xa6, 0x7b, + 0x05, 0xe7, 0x8c, 0x9d, 0xa3, 0x8c, 0x9d, 0x44, 0x8f, 0x47, 0x33, 0x76, 0xfc, 0x1d, 0xc1, 0xe9, + 0xf4, 0x4e, 0xf4, 0xc7, 0x12, 0x8c, 0xb7, 0x5b, 0x27, 0xa3, 0x33, 0xbd, 0x71, 0xd1, 0x9a, 0x09, + 0xe5, 0xcf, 0xee, 0x03, 0x93, 0x0f, 0x65, 0x9e, 0x0e, 0x65, 0x06, 0x3d, 0xb9, 0x8f, 0xa1, 0x1c, + 0xf7, 0x1f, 0xdc, 0xfc, 0x3f, 0x09, 0xee, 0xee, 0xba, 0xb8, 0x44, 0x33, 0xbd, 0x71, 0xd9, 0x25, + 0xe5, 0xcb, 0x17, 0x6f, 0x85, 0x04, 0x1f, 0xf1, 0xd3, 0x74, 0xc4, 0x17, 0xd1, 0xc2, 0x7e, 0x46, + 0xdc, 0xf6, 0x74, 0x0c, 0xfd, 0x91, 0x14, 0xb8, 0x66, 0xdb, 0xdd, 0x9c, 0x5a, 0x56, 0x5f, 0x11, + 0x13, 0xa3, 0x35, 0x17, 0x97, 0x9f, 0xa5, 0x43, 0x50, 0xd0, 0xea, 0x2d, 0x2a, 0xed, 0xf8, 0x3b, + 0x82, 0xc1, 0xe2, 0x9d, 0xe8, 0xff, 0x48, 0xed, 0xef, 0xbd, 0x9e, 0xee, 0xca, 0x62, 0xe7, 0x95, + 0x65, 0xfe, 0xcc, 0xde, 0x11, 0xf9, 0x20, 0x1b, 0x74, 0x90, 0x35, 0x84, 0x6f, 0xf7, 0x20, 0xdb, + 0x2a, 0x11, 0x7d, 0x59, 0x82, 0xf1, 0x76, 0x4b, 0xa9, 0x88, 0x69, 0xd9, 0x65, 0xd5, 0x18, 0x31, + 0x2d, 0xbb, 0xad, 0xdb, 0xe4, 0x37, 0xd2, 0xc1, 0x9f, 0x42, 0x4f, 0x74, 0x1a, 0x7c, 0x57, 0x2d, + 0x92, 0xb9, 0xd8, 0x75, 0x05, 0x12, 0x31, 0x17, 0x7b, 0x59, 0x7e, 0x45, 0xcc, 0xc5, 0x9e, 0x16, + 0x40, 0xd1, 0x73, 0xd1, 0x1d, 0x59, 0x8f, 0x6a, 0xb4, 0xd1, 0x17, 0x25, 0x18, 0x0a, 0x24, 0xd8, + 0xe8, 0xb1, 0xae, 0x8c, 0xb6, 0x5b, 0xcd, 0xe4, 0x4f, 0xec, 0x05, 0x85, 0x8f, 0x65, 0x81, 0x8e, + 0x65, 0x16, 0xcd, 0xec, 0x67, 0x2c, 0xc1, 0x43, 0xf0, 0xaf, 0x4a, 0x30, 0xd6, 0x26, 0x35, 0x8d, + 0x98, 0x85, 0x9d, 0x73, 0xf0, 0xfc, 0x99, 0xbd, 0x23, 0xf2, 0x51, 0x9d, 0xa7, 0xa3, 0x7a, 0x0b, + 0x7a, 0xf3, 0x7e, 0x46, 0xe5, 0x8b, 0xcf, 0x37, 0xbc, 0x6b, 0x79, 0xbe, 0x7e, 0xd0, 0xa9, 0x3d, + 0x32, 0x26, 0x06, 0x74, 0x7a, 0xcf, 0x78, 0x7c, 0x3c, 0xcf, 0xd0, 0xf1, 0x3c, 0x8d, 0x56, 0x6e, + 0x6d, 0x3c, 0xad, 0x61, 0xfd, 0x73, 0xad, 0xcf, 0x81, 0xbb, 0x5b, 0x51, 0xdb, 0x64, 0x35, 0xff, + 0xf8, 0x9e, 0x70, 0xf8, 0xa0, 0xce, 0xd0, 0x41, 0x9d, 0x40, 0x8f, 0x76, 0x1a, 0x94, 0xef, 0xee, + 0xa5, 0xa6, 0x6f, 0x19, 0xc7, 0xdf, 0xc1, 0x52, 0xe0, 0x77, 0xa2, 0x77, 0x49, 0xfc, 0xa6, 0xdb, + 0xd1, 0xae, 0xfd, 0xfa, 0xf2, 0xd8, 0xfc, 0x83, 0x3d, 0x40, 0x72, 0xbe, 0xee, 0xa3, 0x7c, 0x4d, + 0xa0, 0x23, 0x9d, 0xf8, 0x22, 0xb9, 0x2c, 0x7a, 0x9f, 0xe4, 0x5e, 0x95, 0x3d, 0xd6, 0x9d, 0xb6, + 0x3f, 0xd9, 0xcd, 0x3f, 0xd4, 0x13, 0x2c, 0xe7, 0xe4, 0x7e, 0xca, 0xc9, 0x14, 0x9a, 0xe8, 0xc8, + 0x09, 0x4b, 0x7d, 0x6f, 0xfb, 0x0d, 0xb1, 0x43, 0x30, 0xd9, 0xa1, 0x47, 0xe7, 0x4a, 0xc4, 0x39, + 0x64, 0x97, 0x57, 0xf1, 0x91, 0xaf, 0xde, 0x6f, 0xf7, 0x77, 0x9e, 0x7b, 0x3b, 0xb4, 0x94, 0x7f, + 0x31, 0x09, 0x68, 0xc9, 0xae, 0xcd, 0x5a, 0x98, 0xfd, 0xe3, 0x5b, 0x3e, 0xcb, 0x43, 0xef, 0x31, + 0xa5, 0x5b, 0x7a, 0x8f, 0xb9, 0x14, 0x78, 0xe1, 0x18, 0xdb, 0xdb, 0xd3, 0xeb, 0xde, 0x9f, 0x39, + 0xc6, 0x7f, 0x0c, 0xcf, 0x1c, 0xdb, 0xdf, 0xe6, 0x4f, 0xdc, 0xf9, 0xe7, 0x45, 0xc9, 0xdb, 0xfa, + 0xbc, 0xe8, 0x3c, 0xf4, 0xf3, 0x97, 0xd1, 0xfd, 0x5d, 0x5e, 0x46, 0xe7, 0x3a, 0x3e, 0x7f, 0xe6, + 0xd8, 0xe8, 0xa4, 0xf8, 0x34, 0xf2, 0x40, 0x6f, 0xf7, 0xac, 0xf9, 0xb7, 0x93, 0xbd, 0x1d, 0x88, + 0x23, 0x90, 0x6f, 0xb5, 0x46, 0xd7, 0x27, 0x7c, 0x29, 0x0e, 0xd9, 0x25, 0xbb, 0x56, 0xaa, 0x6a, + 0xce, 0x1d, 0x32, 0xd5, 0x67, 0x3a, 0x3f, 0xe5, 0x3a, 0x76, 0xf3, 0xc6, 0xe4, 0x30, 0x93, 0xf5, + 0x3e, 0x24, 0xfc, 0x0e, 0x18, 0x09, 0x7d, 0x84, 0x80, 0xdb, 0xab, 0xb2, 0x9f, 0x2f, 0x23, 0x84, + 0x48, 0x85, 0x9f, 0x57, 0x0f, 0x07, 0x3f, 0x52, 0x80, 0xde, 0xdb, 0x61, 0xc6, 0x30, 0x3b, 0xbd, + 0xf4, 0xda, 0x3d, 0x0a, 0xf6, 0x14, 0x9d, 0x87, 0x5c, 0x58, 0x93, 0xae, 0x9a, 0x7f, 0x39, 0x06, + 0x83, 0x4b, 0xb6, 0x48, 0x3f, 0xf1, 0x4f, 0xc8, 0x13, 0xbe, 0xd3, 0xee, 0x3f, 0x40, 0x88, 0xf7, + 0x36, 0x39, 0xc4, 0xbf, 0x41, 0xf0, 0x84, 0x76, 0x00, 0xc6, 0x7c, 0x72, 0xf1, 0xe4, 0x15, 0xa7, + 0x3e, 0xbc, 0x88, 0x6b, 0x9a, 0xee, 0x66, 0xba, 0xf8, 0xa7, 0x0f, 0x8d, 0x6e, 0xed, 0xa1, 0x91, + 0xa7, 0xaf, 0xc4, 0x7e, 0xf5, 0xb5, 0x43, 0xbd, 0x59, 0x48, 0x2f, 0xee, 0x26, 0xdf, 0x52, 0xeb, + 0x53, 0x3b, 0x69, 0x0f, 0xdf, 0x13, 0x0b, 0x3d, 0xa8, 0x93, 0x3f, 0x18, 0x83, 0xa1, 0x25, 0xbb, + 0xb6, 0xa1, 0x57, 0x7f, 0x3a, 0x6f, 0x42, 0x7a, 0xd8, 0x82, 0x03, 0x01, 0xc9, 0xdc, 0x21, 0x15, + 0x9c, 0xf8, 0x70, 0x02, 0xe2, 0x4b, 0x76, 0x0d, 0xbd, 0x1d, 0x46, 0xc2, 0x09, 0x55, 0xc7, 0x3c, + 0xb9, 0x35, 0xdc, 0x75, 0x5e, 0xcb, 0x76, 0x0e, 0x8d, 0x68, 0x07, 0x86, 0x82, 0x61, 0xf1, 0x68, + 0x17, 0x22, 0x01, 0xc8, 0xfc, 0xa3, 0xbd, 0x42, 0xba, 0x9d, 0xfd, 0x0c, 0xa4, 0x5c, 0xe7, 0x7c, + 0x6f, 0x17, 0x6c, 0x01, 0xd4, 0x39, 0xf3, 0x6f, 0xe3, 0xce, 0x88, 0xf4, 0xc2, 0xae, 0xac, 0x9b, + 0xf4, 0x42, 0xb0, 0x5d, 0xa5, 0xd7, 0x69, 0x2a, 0x6e, 0x02, 0xf8, 0xe6, 0xcd, 0x1b, 0xba, 0x50, + 0xf0, 0xc0, 0xf2, 0x8f, 0xf4, 0x04, 0xe6, 0x9e, 0xef, 0xdd, 0xe6, 0x85, 0xca, 0x5f, 0x07, 0x00, + 0x00, 0xff, 0xff, 0x9f, 0x50, 0x7a, 0x3b, 0x8a, 0x9d, 0x00, 0x00, } r := bytes.NewReader(gzipped) gzipr, err := compress_gzip.NewReader(r) diff --git a/x/staking/types/tx.pb.go b/x/staking/types/tx.pb.go index c3a1bf706599..01589be03880 100644 --- a/x/staking/types/tx.pb.go +++ b/x/staking/types/tx.pb.go @@ -6,6 +6,7 @@ package types import ( context "context" fmt "fmt" + _ "github.com/cosmos/cosmos-proto" types "github.com/cosmos/cosmos-sdk/codec/types" github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" types1 "github.com/cosmos/cosmos-sdk/types" @@ -13,7 +14,6 @@ import ( grpc1 "github.com/gogo/protobuf/grpc" proto "github.com/gogo/protobuf/proto" github_com_gogo_protobuf_types "github.com/gogo/protobuf/types" - _ "github.com/regen-network/cosmos-proto" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" @@ -466,61 +466,63 @@ func init() { func init() { proto.RegisterFile("cosmos/staking/v1beta1/tx.proto", fileDescriptor_0926ef28816b35ab) } var fileDescriptor_0926ef28816b35ab = []byte{ - // 860 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xdc, 0x56, 0x4d, 0x6b, 0xe3, 0x46, - 0x18, 0xb6, 0x6c, 0xc7, 0x4d, 0x27, 0xe4, 0x4b, 0xf9, 0xc0, 0x11, 0xc1, 0x0a, 0x4a, 0x3f, 0x42, - 0xdb, 0xc8, 0x4d, 0x4a, 0x29, 0xe4, 0x52, 0xe2, 0xb8, 0xa1, 0x21, 0x35, 0x14, 0x25, 0xed, 0xa1, - 0x14, 0x8c, 0x3e, 0xc6, 0xaa, 0xb0, 0xa4, 0x51, 0x34, 0xe3, 0x10, 0x43, 0x7f, 0x40, 0x8f, 0x81, - 0xde, 0xf6, 0x94, 0x1f, 0xb1, 0x3f, 0x22, 0x2c, 0xec, 0x92, 0xe3, 0xb2, 0x07, 0xef, 0x92, 0xc0, - 0x92, 0xb3, 0x7f, 0xc1, 0xa2, 0xd1, 0x48, 0x96, 0xe5, 0x0f, 0x4c, 0x58, 0x5f, 0xf6, 0x64, 0x33, - 0xf3, 0xcc, 0xf3, 0xce, 0xfb, 0xbc, 0xcf, 0xbc, 0xaf, 0x80, 0xa8, 0x23, 0xec, 0x20, 0x5c, 0xc6, - 0x44, 0x6d, 0x5a, 0xae, 0x59, 0xbe, 0xdc, 0xd3, 0x20, 0x51, 0xf7, 0xca, 0xe4, 0x4a, 0xf6, 0x7c, - 0x44, 0x10, 0xbf, 0x1e, 0x02, 0x64, 0x06, 0x90, 0x19, 0x40, 0xd8, 0x30, 0x11, 0x32, 0x6d, 0x58, - 0xa6, 0x28, 0xad, 0xd5, 0x28, 0xab, 0x6e, 0x3b, 0x3c, 0x22, 0x88, 0xe9, 0x2d, 0x62, 0x39, 0x10, - 0x13, 0xd5, 0xf1, 0x18, 0x60, 0xd5, 0x44, 0x26, 0xa2, 0x7f, 0xcb, 0xc1, 0x3f, 0xb6, 0xba, 0x11, - 0x46, 0xaa, 0x87, 0x1b, 0x2c, 0x6c, 0xb8, 0x55, 0x62, 0xb7, 0xd4, 0x54, 0x0c, 0xe3, 0x2b, 0xea, - 0xc8, 0x72, 0xd9, 0xfe, 0x17, 0x23, 0xb2, 0x88, 0x2e, 0x4d, 0x51, 0xd2, 0xcb, 0x3c, 0xe0, 0x6b, - 0xd8, 0x3c, 0xf2, 0xa1, 0x4a, 0xe0, 0x9f, 0xaa, 0x6d, 0x19, 0x2a, 0x41, 0x3e, 0x7f, 0x0a, 0xe6, - 0x0c, 0x88, 0x75, 0xdf, 0xf2, 0x88, 0x85, 0xdc, 0x22, 0xb7, 0xc5, 0xed, 0xcc, 0xed, 0x6f, 0xcb, - 0xc3, 0xf3, 0x96, 0xab, 0x3d, 0x68, 0x25, 0x7f, 0xdb, 0x11, 0x33, 0x4a, 0xf2, 0x34, 0x5f, 0x03, - 0x40, 0x47, 0x8e, 0x63, 0x61, 0x1c, 0x70, 0x65, 0x29, 0xd7, 0xd7, 0xa3, 0xb8, 0x8e, 0x62, 0xa4, - 0xa2, 0x12, 0x88, 0x19, 0x5f, 0x82, 0x80, 0xff, 0x17, 0xac, 0x38, 0x96, 0x5b, 0xc7, 0xd0, 0x6e, - 0xd4, 0x0d, 0x68, 0x43, 0x53, 0xa5, 0x77, 0xcc, 0x6d, 0x71, 0x3b, 0x9f, 0x57, 0x7e, 0x0b, 0xe0, - 0x6f, 0x3a, 0xe2, 0x57, 0xa6, 0x45, 0xfe, 0x69, 0x69, 0xb2, 0x8e, 0x1c, 0x26, 0x1b, 0xfb, 0xd9, - 0xc5, 0x46, 0xb3, 0x4c, 0xda, 0x1e, 0xc4, 0xf2, 0x89, 0x4b, 0xba, 0x1d, 0x51, 0x68, 0xab, 0x8e, - 0x7d, 0x20, 0x0d, 0xa1, 0x94, 0x94, 0x65, 0xc7, 0x72, 0xcf, 0xa0, 0xdd, 0xa8, 0xc6, 0x6b, 0xfc, - 0x09, 0x58, 0x66, 0x08, 0xe4, 0xd7, 0x55, 0xc3, 0xf0, 0x21, 0xc6, 0xc5, 0x3c, 0x8d, 0xbd, 0xd9, - 0xed, 0x88, 0xc5, 0x90, 0x6d, 0x00, 0x22, 0x29, 0x4b, 0xf1, 0xda, 0x61, 0xb8, 0x14, 0x50, 0x5d, - 0x46, 0x8a, 0xc7, 0x54, 0x33, 0x69, 0xaa, 0x01, 0x88, 0xa4, 0x2c, 0xc5, 0x6b, 0x11, 0xd5, 0x31, - 0x28, 0x78, 0x2d, 0xad, 0x09, 0xdb, 0xc5, 0x02, 0x95, 0x77, 0x55, 0x0e, 0xfd, 0x26, 0x47, 0x7e, - 0x93, 0x0f, 0xdd, 0x76, 0xa5, 0xf8, 0xe2, 0xf9, 0xee, 0x2a, 0xd3, 0x5d, 0xf7, 0xdb, 0x1e, 0x41, - 0xf2, 0xef, 0x2d, 0xed, 0x14, 0xb6, 0x15, 0x76, 0x9a, 0xff, 0x11, 0xcc, 0x5c, 0xaa, 0x76, 0x0b, - 0x16, 0x3f, 0xa3, 0x34, 0x1b, 0x51, 0x95, 0x02, 0x93, 0x25, 0x4a, 0x64, 0x45, 0x75, 0x0e, 0xd1, - 0x07, 0xb3, 0xff, 0xdd, 0x88, 0x99, 0xc7, 0x1b, 0x31, 0x23, 0x6d, 0x02, 0x61, 0xd0, 0x4e, 0x0a, - 0xc4, 0x1e, 0x72, 0x31, 0x94, 0xfe, 0xcf, 0x81, 0xa5, 0x1a, 0x36, 0x7f, 0x31, 0x2c, 0x32, 0x25, - 0xaf, 0xfd, 0x3c, 0x4c, 0xd3, 0x2c, 0xd5, 0x94, 0xef, 0x76, 0xc4, 0x85, 0x50, 0xd3, 0x31, 0x4a, - 0x3a, 0x60, 0xb1, 0xe7, 0xb5, 0xba, 0xaf, 0x12, 0xc8, 0x9c, 0x55, 0x9d, 0xd0, 0x55, 0x55, 0xa8, - 0x77, 0x3b, 0xe2, 0x7a, 0x18, 0x28, 0x45, 0x25, 0x29, 0x0b, 0x7a, 0x9f, 0xbf, 0xf9, 0xab, 0xe1, - 0x66, 0x0e, 0x0d, 0xf5, 0xeb, 0x14, 0x8d, 0x9c, 0xa8, 0x99, 0x00, 0x8a, 0xe9, 0xa2, 0xc4, 0x15, - 0x7b, 0xcf, 0x81, 0xb9, 0x1a, 0x36, 0xd9, 0x39, 0x38, 0xdc, 0xfe, 0xdc, 0xc7, 0xb3, 0x7f, 0xf6, - 0x49, 0xf6, 0xff, 0x09, 0x14, 0x54, 0x07, 0xb5, 0x5c, 0x42, 0x6b, 0x35, 0x81, 0x6f, 0x19, 0x3c, - 0x21, 0xc2, 0x1a, 0x58, 0x49, 0xe4, 0x19, 0xe7, 0xff, 0x2a, 0x4b, 0xfb, 0x63, 0x05, 0x9a, 0x96, - 0xab, 0x40, 0x63, 0x0a, 0x32, 0x9c, 0x83, 0xb5, 0x5e, 0x8e, 0xd8, 0xd7, 0x53, 0x52, 0x6c, 0x75, - 0x3b, 0xe2, 0x66, 0x5a, 0x8a, 0x04, 0x4c, 0x52, 0x56, 0xe2, 0xf5, 0x33, 0x5f, 0x1f, 0xca, 0x6a, - 0x60, 0x12, 0xb3, 0xe6, 0x46, 0xb3, 0x26, 0x60, 0x49, 0xd6, 0x2a, 0x26, 0x83, 0x3a, 0xe7, 0x9f, - 0xaa, 0x73, 0x93, 0x36, 0x88, 0x94, 0x9e, 0x91, 0xdc, 0x7c, 0x8d, 0xbe, 0x3e, 0xcf, 0x86, 0x81, - 0x45, 0xeb, 0xc1, 0x8c, 0x64, 0xfd, 0x40, 0x18, 0x68, 0x68, 0xe7, 0xd1, 0x00, 0xad, 0xcc, 0x06, - 0xa1, 0xae, 0xdf, 0x8a, 0x1c, 0x7d, 0x5d, 0xec, 0x70, 0xb0, 0x2d, 0x3d, 0x72, 0x60, 0xbe, 0x86, - 0xcd, 0x3f, 0x5c, 0xe3, 0x93, 0xf7, 0x6f, 0x03, 0xac, 0xf5, 0x65, 0x3a, 0x25, 0x49, 0xf7, 0x9f, - 0xe5, 0x41, 0xae, 0x86, 0x4d, 0xfe, 0x02, 0x2c, 0xa6, 0x3f, 0x1a, 0xbe, 0x19, 0xd5, 0xb3, 0x07, - 0x27, 0x82, 0xb0, 0x3f, 0x39, 0x36, 0xce, 0xa4, 0x09, 0xe6, 0xfb, 0x27, 0xc7, 0xce, 0x18, 0x92, - 0x3e, 0xa4, 0xf0, 0xfd, 0xa4, 0xc8, 0x38, 0xd8, 0xdf, 0x60, 0x36, 0x6e, 0x7a, 0xdb, 0x63, 0x4e, - 0x47, 0x20, 0xe1, 0xdb, 0x09, 0x40, 0x31, 0xfb, 0x05, 0x58, 0x4c, 0xb7, 0x94, 0x71, 0xea, 0xa5, - 0xb0, 0x63, 0xd5, 0x1b, 0xf5, 0xb4, 0x34, 0x00, 0x12, 0xef, 0xe0, 0xcb, 0x31, 0x0c, 0x3d, 0x98, - 0xb0, 0x3b, 0x11, 0x2c, 0x8a, 0x51, 0x39, 0xbe, 0xbd, 0x2f, 0x71, 0x77, 0xf7, 0x25, 0xee, 0xdd, - 0x7d, 0x89, 0xbb, 0x7e, 0x28, 0x65, 0xee, 0x1e, 0x4a, 0x99, 0xd7, 0x0f, 0xa5, 0xcc, 0x5f, 0xdf, - 0x8d, 0x1d, 0x63, 0x57, 0xf1, 0x57, 0x2a, 0x1d, 0x68, 0x5a, 0x81, 0x5a, 0xf2, 0x87, 0x0f, 0x01, - 0x00, 0x00, 0xff, 0xff, 0xa1, 0x2b, 0xfd, 0x07, 0x8a, 0x0b, 0x00, 0x00, + // 883 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x56, 0xcb, 0x6a, 0xc3, 0x46, + 0x14, 0xb5, 0x6c, 0xc7, 0x4d, 0x27, 0xe4, 0xa5, 0x3c, 0x70, 0x44, 0xb0, 0x82, 0xd3, 0x47, 0x48, + 0x1b, 0xb9, 0x49, 0x5b, 0x5a, 0xb2, 0x8b, 0xe3, 0x06, 0x42, 0x30, 0x14, 0xa5, 0x4d, 0x21, 0x14, + 0xcc, 0x48, 0x1a, 0xab, 0xc2, 0x92, 0x46, 0xd1, 0x8c, 0x43, 0x4c, 0xf7, 0xa5, 0x94, 0x2e, 0xb2, + 0x2a, 0xa5, 0xab, 0x7c, 0x44, 0x3f, 0x22, 0x74, 0x15, 0xba, 0x2a, 0x5d, 0xb8, 0x25, 0xd9, 0x74, + 0xed, 0x2f, 0x28, 0x1a, 0x8d, 0x64, 0x59, 0x7e, 0x60, 0x42, 0x93, 0x55, 0x57, 0x36, 0x9a, 0x33, + 0xe7, 0x8c, 0xce, 0xb9, 0xf7, 0x8e, 0x80, 0xac, 0x63, 0xe2, 0x60, 0x52, 0x21, 0x14, 0xb6, 0x2c, + 0xd7, 0xac, 0x5c, 0xef, 0x6b, 0x88, 0xc2, 0xfd, 0x0a, 0xbd, 0x51, 0x3c, 0x1f, 0x53, 0x2c, 0xae, + 0x87, 0x00, 0x85, 0x03, 0x14, 0x0e, 0x90, 0x36, 0x4c, 0x8c, 0x4d, 0x1b, 0x55, 0x18, 0x4a, 0x6b, + 0x37, 0x2b, 0xd0, 0xed, 0x84, 0x5b, 0x24, 0x39, 0xbd, 0x44, 0x2d, 0x07, 0x11, 0x0a, 0x1d, 0x8f, + 0x03, 0x56, 0x4d, 0x6c, 0x62, 0xf6, 0xb7, 0x12, 0xfc, 0xe3, 0x4f, 0x37, 0x42, 0xa5, 0x46, 0xb8, + 0xc0, 0x65, 0xc3, 0xa5, 0x12, 0x3f, 0xa5, 0x06, 0x09, 0x8a, 0x8f, 0xa8, 0x63, 0xcb, 0xe5, 0xeb, + 0x6f, 0x8d, 0x79, 0x8b, 0xe8, 0xd0, 0x0c, 0x55, 0xfe, 0x71, 0x06, 0x88, 0x75, 0x62, 0x1e, 0xfb, + 0x08, 0x52, 0x74, 0x01, 0x6d, 0xcb, 0x80, 0x14, 0xfb, 0xe2, 0x19, 0x98, 0x33, 0x10, 0xd1, 0x7d, + 0xcb, 0xa3, 0x16, 0x76, 0x8b, 0xc2, 0x96, 0xb0, 0x33, 0x77, 0xb0, 0xad, 0x8c, 0x7e, 0x6f, 0xa5, + 0xd6, 0x87, 0x56, 0xf3, 0xf7, 0x5d, 0x39, 0xa3, 0x26, 0x77, 0x8b, 0x75, 0x00, 0x74, 0xec, 0x38, + 0x16, 0x21, 0x01, 0x57, 0x96, 0x71, 0xbd, 0x3b, 0x8e, 0xeb, 0x38, 0x46, 0xaa, 0x90, 0x22, 0xc2, + 0xf9, 0x12, 0x04, 0xe2, 0x0f, 0x02, 0x58, 0x71, 0x2c, 0xb7, 0x41, 0x90, 0xdd, 0x6c, 0x18, 0xc8, + 0x46, 0x26, 0x64, 0x87, 0xcc, 0x6d, 0x09, 0x3b, 0x6f, 0x56, 0x2f, 0x03, 0xfc, 0x9f, 0x5d, 0xf9, + 0x1d, 0xd3, 0xa2, 0xdf, 0xb4, 0x35, 0x45, 0xc7, 0x0e, 0xf7, 0x8d, 0xff, 0xec, 0x11, 0xa3, 0x55, + 0xa1, 0x1d, 0x0f, 0x11, 0xe5, 0xd4, 0xa5, 0xbd, 0xae, 0x2c, 0x75, 0xa0, 0x63, 0x1f, 0x96, 0x47, + 0x50, 0x96, 0x7f, 0xff, 0x75, 0x0f, 0xf0, 0x73, 0x9e, 0xba, 0x54, 0x5d, 0x76, 0x2c, 0xf7, 0x1c, + 0xd9, 0xcd, 0x5a, 0x8c, 0x10, 0x21, 0x58, 0xe6, 0x78, 0xec, 0x37, 0xa0, 0x61, 0xf8, 0x88, 0x90, + 0x62, 0x9e, 0x9d, 0xe4, 0xa3, 0x5e, 0x57, 0x2e, 0x86, 0xdc, 0x43, 0x90, 0x80, 0x79, 0x95, 0x33, + 0x1f, 0x85, 0x8f, 0xce, 0xa9, 0x6f, 0xb9, 0xa6, 0xba, 0x14, 0x63, 0xf9, 0xf3, 0x40, 0xe2, 0x3a, + 0x0a, 0x26, 0x96, 0x98, 0x49, 0x4b, 0x0c, 0x41, 0x26, 0x48, 0xc4, 0xd8, 0x48, 0xe2, 0x04, 0x14, + 0xbc, 0xb6, 0xd6, 0x42, 0x9d, 0x62, 0x81, 0xa5, 0xb3, 0xaa, 0x84, 0xe5, 0xaa, 0x44, 0xe5, 0xaa, + 0x1c, 0xb9, 0x9d, 0x6a, 0xf1, 0xb7, 0x3e, 0xa3, 0xee, 0x77, 0x3c, 0x8a, 0x95, 0xcf, 0xdb, 0xda, + 0x19, 0xea, 0xa8, 0x7c, 0xb7, 0xf8, 0x31, 0x98, 0xb9, 0x86, 0x76, 0x1b, 0x15, 0xdf, 0x60, 0x34, + 0x1b, 0x51, 0xc8, 0x41, 0x8d, 0x26, 0x12, 0xb6, 0xa2, 0x32, 0x09, 0xd1, 0x87, 0xb3, 0xdf, 0xdf, + 0xc9, 0x99, 0x7f, 0xee, 0xe4, 0x4c, 0x79, 0x13, 0x48, 0xc3, 0xd5, 0xa8, 0x22, 0xe2, 0x61, 0x97, + 0xa0, 0xf2, 0x7d, 0x0e, 0x2c, 0xd5, 0x89, 0xf9, 0x99, 0x61, 0xd1, 0x17, 0x2a, 0xd5, 0xaf, 0x46, + 0x79, 0x9d, 0x65, 0x5e, 0xef, 0xf6, 0xba, 0xf2, 0x42, 0xe8, 0xf5, 0x33, 0x1c, 0xfe, 0x16, 0x2c, + 0xf6, 0x4b, 0xb8, 0xe1, 0x43, 0x8a, 0x78, 0xbd, 0xaa, 0x53, 0xd6, 0x6a, 0x0d, 0xe9, 0xbd, 0xae, + 0xbc, 0x1e, 0x1e, 0x20, 0x45, 0x95, 0xac, 0xd3, 0x1a, 0xd2, 0xd5, 0x05, 0x7d, 0xa0, 0x89, 0xc4, + 0xef, 0xc6, 0x74, 0x4c, 0x58, 0xa7, 0x17, 0xaf, 0xd6, 0x2d, 0x89, 0xa0, 0x25, 0x50, 0x4c, 0x27, + 0x19, 0xc7, 0xfc, 0x53, 0x16, 0xcc, 0xd5, 0x89, 0xc9, 0xf7, 0xa1, 0xd1, 0x3d, 0x26, 0xbc, 0x7c, + 0x8f, 0x65, 0xff, 0xd3, 0x1e, 0xfb, 0x04, 0x14, 0xa0, 0x83, 0xdb, 0x2e, 0x65, 0xc1, 0x4f, 0xd1, + 0x1c, 0x1c, 0x9e, 0x30, 0x6d, 0x0d, 0xac, 0x24, 0x7c, 0xe9, 0xfb, 0x95, 0x63, 0x33, 0xbc, 0x8a, + 0x4c, 0xcb, 0x55, 0x91, 0xf1, 0x8a, 0xb6, 0xd9, 0x60, 0xad, 0xef, 0x09, 0xf1, 0xf5, 0x94, 0x75, + 0x9f, 0xf6, 0xba, 0xf2, 0x66, 0xda, 0xba, 0x04, 0x6c, 0xbc, 0xd4, 0x4a, 0x8c, 0x3f, 0xf7, 0xf5, + 0x91, 0x6a, 0x06, 0xa1, 0xb1, 0x5a, 0x6e, 0xbc, 0x5a, 0x02, 0x36, 0x8d, 0x5a, 0x8d, 0xd0, 0xe1, + 0xbc, 0xf2, 0xcf, 0xcd, 0xab, 0xc5, 0xa6, 0x59, 0x2a, 0x97, 0x28, 0x36, 0xb1, 0xce, 0x46, 0x82, + 0x67, 0xa3, 0xa0, 0x35, 0x1a, 0xc1, 0xf7, 0x00, 0x1f, 0x5e, 0xd2, 0xd0, 0xf4, 0xfd, 0x22, 0xfa, + 0x58, 0xa8, 0xce, 0x06, 0x52, 0xb7, 0x7f, 0xc9, 0x02, 0x6b, 0x72, 0xbe, 0x39, 0x58, 0x2e, 0xff, + 0x9c, 0x05, 0xf3, 0x75, 0x62, 0x7e, 0xe9, 0x1a, 0xff, 0xf7, 0x4d, 0x2a, 0x87, 0x26, 0x58, 0x1b, + 0x70, 0xe6, 0x85, 0x22, 0x38, 0xf8, 0x25, 0x0f, 0x72, 0x75, 0x62, 0x8a, 0x57, 0x60, 0x31, 0xfd, + 0x41, 0xb5, 0x3b, 0xee, 0x42, 0x1a, 0xbe, 0xee, 0xa4, 0x83, 0xe9, 0xb1, 0xf1, 0x9b, 0xb4, 0xc0, + 0xfc, 0xe0, 0xb5, 0xb8, 0x33, 0x81, 0x64, 0x00, 0x29, 0x7d, 0x30, 0x2d, 0x32, 0x16, 0xfb, 0x1a, + 0xcc, 0xc6, 0xc3, 0x79, 0x7b, 0xc2, 0xee, 0x08, 0x24, 0xbd, 0x37, 0x05, 0x28, 0x66, 0xbf, 0x02, + 0x8b, 0xe9, 0x51, 0x36, 0xc9, 0xbd, 0x14, 0x76, 0xa2, 0x7b, 0xe3, 0x5a, 0x51, 0x03, 0x20, 0xd1, + 0x37, 0x6f, 0x4f, 0x60, 0xe8, 0xc3, 0xa4, 0xbd, 0xa9, 0x60, 0x91, 0x46, 0xf5, 0xe4, 0xfe, 0xb1, + 0x24, 0x3c, 0x3c, 0x96, 0x84, 0xbf, 0x1f, 0x4b, 0xc2, 0xed, 0x53, 0x29, 0xf3, 0xf0, 0x54, 0xca, + 0xfc, 0xf1, 0x54, 0xca, 0x5c, 0xbe, 0x3f, 0xf1, 0xf2, 0xbd, 0x89, 0xbf, 0xe0, 0xd9, 0x35, 0xac, + 0x15, 0x58, 0x49, 0x7e, 0xf8, 0x6f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xf6, 0x6d, 0xbb, 0x83, 0xa6, + 0x0c, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. From a7e6ffa90094daf8e446b92d91c79f3374e436ea Mon Sep 17 00:00:00 2001 From: Andrei Ivasko Date: Wed, 15 Sep 2021 20:42:15 +0300 Subject: [PATCH 25/34] proto-gen --- x/auth/types/auth.pb.go | 86 +-- x/authz/authz.pb.go | 20 +- x/bank/types/authz.pb.go | 4 +- x/bank/types/bank.pb.go | 76 +- x/feegrant/feegrant.pb.go | 76 +- x/gov/types/gov.pb.go | 164 ++--- x/group/types.pb.go | 166 ++--- x/staking/types/authz.pb.go | 52 +- x/staking/types/staking.pb.go | 1221 ++++++++++++++++----------------- 9 files changed, 932 insertions(+), 933 deletions(-) diff --git a/x/auth/types/auth.pb.go b/x/auth/types/auth.pb.go index 3f56347fbd76..ce5e08174ddf 100644 --- a/x/auth/types/auth.pb.go +++ b/x/auth/types/auth.pb.go @@ -191,51 +191,51 @@ func init() { func init() { proto.RegisterFile("cosmos/auth/v1beta1/auth.proto", fileDescriptor_7e1f7e915d020d2d) } var fileDescriptor_7e1f7e915d020d2d = []byte{ - // 690 bytes of a gzipped FileDescriptorProto + // 691 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x74, 0x54, 0x4f, 0x4f, 0xdb, 0x48, 0x14, 0x8f, 0x49, 0x96, 0x3f, 0x13, 0x40, 0xc2, 0x04, 0x70, 0xb2, 0x2b, 0xdb, 0xf2, 0x29, 0x2b, - 0x6d, 0x1c, 0x25, 0x2b, 0x56, 0x22, 0x87, 0xd5, 0x62, 0x76, 0x0f, 0x68, 0x0b, 0x42, 0x8e, 0xd4, - 0x43, 0x55, 0xc9, 0x1d, 0x3b, 0x83, 0xb1, 0xc8, 0x78, 0x8c, 0x67, 0x8c, 0x62, 0x3e, 0x41, 0x8f, - 0xbd, 0xb5, 0x47, 0x3e, 0x04, 0xdf, 0xa0, 0x97, 0x1e, 0x11, 0xa7, 0x9e, 0xdc, 0x2a, 0x5c, 0xaa, - 0x1e, 0xf3, 0x09, 0xaa, 0xcc, 0x38, 0x21, 0x41, 0xe9, 0x29, 0xf3, 0x7e, 0xbf, 0xdf, 0x7b, 0xbf, - 0x37, 0xef, 0xc5, 0x03, 0x54, 0x8f, 0x50, 0x4c, 0x68, 0x13, 0x26, 0xec, 0xa2, 0x79, 0xdd, 0x72, - 0x11, 0x83, 0x2d, 0x1e, 0x98, 0x51, 0x4c, 0x18, 0x91, 0xb7, 0x05, 0x6f, 0x72, 0x28, 0xe7, 0x6b, - 0x55, 0x01, 0x3a, 0x5c, 0xd2, 0xcc, 0x15, 0x3c, 0xa8, 0x55, 0x7c, 0xe2, 0x13, 0x81, 0x8f, 0x4f, - 0x39, 0x5a, 0xf5, 0x09, 0xf1, 0xfb, 0xa8, 0xc9, 0x23, 0x37, 0x39, 0x6f, 0xc2, 0x30, 0x15, 0x94, - 0xf1, 0x7e, 0x09, 0x94, 0x2d, 0x48, 0xd1, 0xa1, 0xe7, 0x91, 0x24, 0x64, 0x72, 0x1b, 0xac, 0xc0, - 0x5e, 0x2f, 0x46, 0x94, 0x2a, 0x92, 0x2e, 0xd5, 0xd7, 0x2c, 0xe5, 0xe1, 0xae, 0x51, 0xc9, 0x3d, - 0x0e, 0x05, 0xd3, 0x65, 0x71, 0x10, 0xfa, 0xf6, 0x44, 0x28, 0xbf, 0x06, 0x2b, 0x51, 0xe2, 0x3a, - 0x97, 0x28, 0x55, 0x96, 0x74, 0xa9, 0x5e, 0x6e, 0x57, 0x4c, 0x61, 0x68, 0x4e, 0x0c, 0xcd, 0xc3, - 0x30, 0xb5, 0x1a, 0xdf, 0x33, 0xad, 0x12, 0x25, 0x6e, 0x3f, 0xf0, 0xc6, 0xda, 0x3f, 0x08, 0x0e, - 0x18, 0xc2, 0x11, 0x4b, 0x47, 0x99, 0xb6, 0x95, 0x42, 0xdc, 0xef, 0x18, 0x4f, 0xac, 0x61, 0x2f, - 0x47, 0x89, 0xfb, 0x3f, 0x4a, 0xe5, 0x7f, 0xc0, 0x26, 0x14, 0xcd, 0x39, 0x61, 0x82, 0x5d, 0x14, - 0x2b, 0x45, 0x5d, 0xaa, 0x97, 0xac, 0xea, 0x28, 0xd3, 0x76, 0x44, 0xda, 0x3c, 0x6f, 0xd8, 0x1b, - 0x39, 0x70, 0xca, 0x63, 0xb9, 0x06, 0x56, 0x29, 0xba, 0x4a, 0x50, 0xe8, 0x21, 0xa5, 0x34, 0xce, - 0xb5, 0xa7, 0x71, 0x47, 0x79, 0x7b, 0xab, 0x15, 0x3e, 0xdc, 0x6a, 0x85, 0x6f, 0xb7, 0x5a, 0xe1, - 0xe1, 0xae, 0xb1, 0x9a, 0x0f, 0xe2, 0xd8, 0xf8, 0x28, 0x81, 0x8d, 0x13, 0xd2, 0x4b, 0xfa, 0xd3, - 0xd9, 0xbc, 0x01, 0xeb, 0x2e, 0xa4, 0xc8, 0xc9, 0xab, 0xf3, 0x01, 0x95, 0xdb, 0xba, 0xb9, 0x60, - 0x47, 0xe6, 0xcc, 0x4c, 0xad, 0x5f, 0xef, 0x33, 0x4d, 0x1a, 0x65, 0xda, 0xb6, 0xe8, 0x76, 0xb6, - 0x86, 0x61, 0x97, 0xdd, 0x99, 0xe9, 0xcb, 0xa0, 0x14, 0x42, 0x8c, 0xf8, 0x18, 0xd7, 0x6c, 0x7e, - 0x96, 0x75, 0x50, 0x8e, 0x50, 0x8c, 0x03, 0x4a, 0x03, 0x12, 0x52, 0xa5, 0xa8, 0x17, 0xeb, 0x6b, - 0xf6, 0x2c, 0xd4, 0xa9, 0x4d, 0xee, 0xf0, 0x70, 0xd7, 0xd8, 0x9c, 0x6b, 0xf9, 0xd8, 0xf8, 0x52, - 0x04, 0xcb, 0x67, 0x30, 0x86, 0x98, 0xca, 0xa7, 0x60, 0x1b, 0xc3, 0x81, 0x83, 0x11, 0x26, 0x8e, - 0x77, 0x01, 0x63, 0xe8, 0x31, 0x14, 0x8b, 0x35, 0x97, 0x2c, 0x75, 0x94, 0x69, 0x35, 0xd1, 0xdf, - 0x02, 0x91, 0x61, 0x6f, 0x61, 0x38, 0x38, 0x41, 0x98, 0x1c, 0x4d, 0x31, 0xf9, 0x00, 0xac, 0xb3, - 0x81, 0x43, 0x03, 0xdf, 0xe9, 0x07, 0x38, 0x60, 0xbc, 0xe9, 0x92, 0xb5, 0xf7, 0x74, 0xd1, 0x59, - 0xd6, 0xb0, 0x01, 0x1b, 0x74, 0x03, 0xff, 0xc5, 0x38, 0x90, 0x6d, 0xb0, 0xc3, 0xc9, 0x1b, 0xe4, - 0x78, 0x84, 0x32, 0x27, 0x42, 0xb1, 0xe3, 0xa6, 0x0c, 0xe5, 0xab, 0xd5, 0x47, 0x99, 0xf6, 0xdb, - 0x4c, 0x8d, 0xe7, 0x32, 0xc3, 0xde, 0x1a, 0x17, 0xbb, 0x41, 0x47, 0x84, 0xb2, 0x33, 0x14, 0x5b, - 0x29, 0x43, 0xf2, 0x15, 0xd8, 0x1b, 0xbb, 0x5d, 0xa3, 0x38, 0x38, 0x4f, 0x85, 0x1e, 0xf5, 0xda, - 0xfb, 0xfb, 0xad, 0x03, 0xb1, 0x74, 0xab, 0x33, 0xcc, 0xb4, 0x4a, 0x37, 0xf0, 0x5f, 0x72, 0xc5, - 0x38, 0xf5, 0xbf, 0x7f, 0x39, 0x3f, 0xca, 0x34, 0x55, 0xb8, 0xfd, 0xa4, 0x80, 0x61, 0x57, 0xe8, - 0x5c, 0x9e, 0x80, 0xe5, 0x14, 0x54, 0x9f, 0x67, 0x50, 0xe4, 0x45, 0xed, 0xfd, 0xbf, 0x2e, 0x5b, - 0xca, 0x2f, 0xdc, 0xf4, 0xef, 0x61, 0xa6, 0xed, 0xce, 0x99, 0x76, 0x27, 0x8a, 0x51, 0xa6, 0xe9, - 0x8b, 0x6d, 0xa7, 0x45, 0x0c, 0x7b, 0x97, 0x2e, 0xcc, 0xed, 0xac, 0xe6, 0xff, 0x59, 0xc9, 0x3a, - 0xfa, 0x34, 0x54, 0xa5, 0xfb, 0xa1, 0x2a, 0x7d, 0x1d, 0xaa, 0xd2, 0xbb, 0x47, 0xb5, 0x70, 0xff, - 0xa8, 0x16, 0x3e, 0x3f, 0xaa, 0x85, 0x57, 0xbf, 0xfb, 0x01, 0xbb, 0x48, 0x5c, 0xd3, 0x23, 0x38, - 0x7f, 0x25, 0xf2, 0x9f, 0x06, 0xed, 0x5d, 0x36, 0x07, 0xe2, 0xd1, 0x61, 0x69, 0x84, 0xa8, 0xbb, - 0xcc, 0xbf, 0xd4, 0x3f, 0x7f, 0x04, 0x00, 0x00, 0xff, 0xff, 0x05, 0x3c, 0xd4, 0x17, 0x90, 0x04, - 0x00, 0x00, + 0x6d, 0x1c, 0x25, 0x2b, 0x56, 0x22, 0x87, 0xd5, 0x62, 0x76, 0x0f, 0x68, 0x17, 0x84, 0x1c, 0x69, + 0x0f, 0x55, 0x25, 0x77, 0xec, 0x0c, 0xc6, 0x22, 0xe3, 0x31, 0x9e, 0x31, 0x8a, 0xf9, 0x04, 0x3d, + 0xf6, 0xd6, 0x1e, 0xf9, 0x10, 0x7c, 0x83, 0x5e, 0x2a, 0x4e, 0xa8, 0xa7, 0x9e, 0xdc, 0x2a, 0x5c, + 0xaa, 0x1e, 0xf3, 0x09, 0xaa, 0xcc, 0x38, 0x21, 0x41, 0xe9, 0x29, 0xf3, 0x7e, 0xbf, 0xdf, 0x7b, + 0xbf, 0x37, 0xef, 0xc5, 0x03, 0x54, 0x8f, 0x50, 0x4c, 0x68, 0x13, 0x26, 0xec, 0xa2, 0x79, 0xdd, + 0x72, 0x11, 0x83, 0x2d, 0x1e, 0x98, 0x51, 0x4c, 0x18, 0x91, 0xb7, 0x05, 0x6f, 0x72, 0x28, 0xe7, + 0x6b, 0x55, 0x01, 0x3a, 0x5c, 0xd2, 0xcc, 0x15, 0x3c, 0xa8, 0x55, 0x7c, 0xe2, 0x13, 0x81, 0x8f, + 0x4f, 0x39, 0x5a, 0xf5, 0x09, 0xf1, 0xfb, 0xa8, 0xc9, 0x23, 0x37, 0x39, 0x6f, 0xc2, 0x30, 0x15, + 0x94, 0xf1, 0x76, 0x09, 0x94, 0x2d, 0x48, 0xd1, 0xa1, 0xe7, 0x91, 0x24, 0x64, 0x72, 0x1b, 0xac, + 0xc0, 0x5e, 0x2f, 0x46, 0x94, 0x2a, 0x92, 0x2e, 0xd5, 0xd7, 0x2c, 0xe5, 0xe3, 0x5d, 0xa3, 0x92, + 0x7b, 0x1c, 0x0a, 0xa6, 0xcb, 0xe2, 0x20, 0xf4, 0xed, 0x89, 0x50, 0x7e, 0x09, 0x56, 0xa2, 0xc4, + 0x75, 0x2e, 0x51, 0xaa, 0x2c, 0xe9, 0x52, 0xbd, 0xdc, 0xae, 0x98, 0xc2, 0xd0, 0x9c, 0x18, 0x9a, + 0x87, 0x61, 0x6a, 0x35, 0xbe, 0x65, 0x5a, 0x25, 0x4a, 0xdc, 0x7e, 0xe0, 0x8d, 0xb5, 0xbf, 0x11, + 0x1c, 0x30, 0x84, 0x23, 0x96, 0x8e, 0x32, 0x6d, 0x2b, 0x85, 0xb8, 0xdf, 0x31, 0x9e, 0x58, 0xc3, + 0x5e, 0x8e, 0x12, 0xf7, 0x5f, 0x94, 0xca, 0x7f, 0x81, 0x4d, 0x28, 0x9a, 0x73, 0xc2, 0x04, 0xbb, + 0x28, 0x56, 0x8a, 0xba, 0x54, 0x2f, 0x59, 0xd5, 0x51, 0xa6, 0xed, 0x88, 0xb4, 0x79, 0xde, 0xb0, + 0x37, 0x72, 0xe0, 0x94, 0xc7, 0x72, 0x0d, 0xac, 0x52, 0x74, 0x95, 0xa0, 0xd0, 0x43, 0x4a, 0x69, + 0x9c, 0x6b, 0x4f, 0xe3, 0x8e, 0xf2, 0xfa, 0x56, 0x2b, 0xbc, 0xbb, 0xd5, 0x0a, 0x5f, 0x6f, 0xb5, + 0xc2, 0xfd, 0x5d, 0x63, 0x35, 0x1f, 0xc4, 0xb1, 0xf1, 0x5e, 0x02, 0x1b, 0x27, 0xa4, 0x97, 0xf4, + 0xa7, 0xb3, 0x79, 0x05, 0xd6, 0x5d, 0x48, 0x91, 0x93, 0x57, 0xe7, 0x03, 0x2a, 0xb7, 0x75, 0x73, + 0xc1, 0x8e, 0xcc, 0x99, 0x99, 0x5a, 0x3f, 0x3f, 0x64, 0x9a, 0x34, 0xca, 0xb4, 0x6d, 0xd1, 0xed, + 0x6c, 0x0d, 0xc3, 0x2e, 0xbb, 0x33, 0xd3, 0x97, 0x41, 0x29, 0x84, 0x18, 0xf1, 0x31, 0xae, 0xd9, + 0xfc, 0x2c, 0xeb, 0xa0, 0x1c, 0xa1, 0x18, 0x07, 0x94, 0x06, 0x24, 0xa4, 0x4a, 0x51, 0x2f, 0xd6, + 0xd7, 0xec, 0x59, 0xa8, 0x53, 0x9b, 0xdc, 0xe1, 0xfe, 0xae, 0xb1, 0x39, 0xd7, 0xf2, 0xb1, 0xf1, + 0xb9, 0x08, 0x96, 0xcf, 0x60, 0x0c, 0x31, 0x95, 0x4f, 0xc1, 0x36, 0x86, 0x03, 0x07, 0x23, 0x4c, + 0x1c, 0xef, 0x02, 0xc6, 0xd0, 0x63, 0x28, 0x16, 0x6b, 0x2e, 0x59, 0xea, 0x28, 0xd3, 0x6a, 0xa2, + 0xbf, 0x05, 0x22, 0xc3, 0xde, 0xc2, 0x70, 0x70, 0x82, 0x30, 0x39, 0x9a, 0x62, 0xf2, 0x01, 0x58, + 0x67, 0x03, 0x87, 0x06, 0xbe, 0xd3, 0x0f, 0x70, 0xc0, 0x78, 0xd3, 0x25, 0x6b, 0xef, 0xe9, 0xa2, + 0xb3, 0xac, 0x61, 0x03, 0x36, 0xe8, 0x06, 0xfe, 0x7f, 0xe3, 0x40, 0xb6, 0xc1, 0x0e, 0x27, 0x6f, + 0x90, 0xe3, 0x11, 0xca, 0x9c, 0x08, 0xc5, 0x8e, 0x9b, 0x32, 0x94, 0xaf, 0x56, 0x1f, 0x65, 0xda, + 0x2f, 0x33, 0x35, 0x9e, 0xcb, 0x0c, 0x7b, 0x6b, 0x5c, 0xec, 0x06, 0x1d, 0x11, 0xca, 0xce, 0x50, + 0x6c, 0xa5, 0x0c, 0xc9, 0x57, 0x60, 0x6f, 0xec, 0x76, 0x8d, 0xe2, 0xe0, 0x3c, 0x15, 0x7a, 0xd4, + 0x6b, 0xef, 0xef, 0xb7, 0x0e, 0xc4, 0xd2, 0xad, 0xce, 0x30, 0xd3, 0x2a, 0xdd, 0xc0, 0xff, 0x9f, + 0x2b, 0xc6, 0xa9, 0xff, 0xfc, 0xcd, 0xf9, 0x51, 0xa6, 0xa9, 0xc2, 0xed, 0x07, 0x05, 0x0c, 0xbb, + 0x42, 0xe7, 0xf2, 0x04, 0x2c, 0xa7, 0xa0, 0xfa, 0x3c, 0x83, 0x22, 0x2f, 0x6a, 0xef, 0xff, 0x71, + 0xd9, 0x52, 0x7e, 0xe2, 0xa6, 0x7f, 0x0e, 0x33, 0x6d, 0x77, 0xce, 0xb4, 0x3b, 0x51, 0x8c, 0x32, + 0x4d, 0x5f, 0x6c, 0x3b, 0x2d, 0x62, 0xd8, 0xbb, 0x74, 0x61, 0x6e, 0x67, 0x35, 0xff, 0xcf, 0x4a, + 0xd6, 0xd1, 0x87, 0xa1, 0x2a, 0x3d, 0x0c, 0x55, 0xe9, 0xcb, 0x50, 0x95, 0xde, 0x3c, 0xaa, 0x85, + 0x87, 0x47, 0xb5, 0xf0, 0xe9, 0x51, 0x2d, 0xbc, 0xf8, 0xd5, 0x0f, 0xd8, 0x45, 0xe2, 0x9a, 0x1e, + 0xc1, 0xf9, 0x2b, 0x91, 0xff, 0x34, 0x68, 0xef, 0xb2, 0x39, 0x10, 0x8f, 0x0e, 0x4b, 0x23, 0x44, + 0xdd, 0x65, 0xfe, 0xa5, 0xfe, 0xfe, 0x3d, 0x00, 0x00, 0xff, 0xff, 0xb5, 0x7f, 0x3f, 0xe6, 0x90, + 0x04, 0x00, 0x00, } func (this *Params) Equal(that interface{}) bool { diff --git a/x/authz/authz.pb.go b/x/authz/authz.pb.go index 91d5b339a6a0..2b1826c25346 100644 --- a/x/authz/authz.pb.go +++ b/x/authz/authz.pb.go @@ -117,7 +117,7 @@ func init() { func init() { proto.RegisterFile("cosmos/authz/v1beta1/authz.proto", fileDescriptor_544dc2e84b61c637) } var fileDescriptor_544dc2e84b61c637 = []byte{ - // 303 bytes of a gzipped FileDescriptorProto + // 301 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0x48, 0xce, 0x2f, 0xce, 0xcd, 0x2f, 0xd6, 0x4f, 0x2c, 0x2d, 0xc9, 0xa8, 0xd2, 0x2f, 0x33, 0x4c, 0x4a, 0x2d, 0x49, 0x34, 0x84, 0xf0, 0xf4, 0x0a, 0x8a, 0xf2, 0x4b, 0xf2, 0x85, 0x44, 0x20, 0x2a, 0xf4, 0x20, 0x62, 0x50, @@ -127,16 +127,16 @@ var fileDescriptor_544dc2e84b61c637 = []byte{ 0xa2, 0x92, 0xe8, 0xda, 0x12, 0xf3, 0x2a, 0x21, 0x52, 0x4a, 0xd6, 0x5c, 0x22, 0xee, 0xa9, 0x79, 0xa9, 0x45, 0x99, 0xc9, 0x8e, 0xa5, 0x25, 0x19, 0xf9, 0x45, 0x99, 0x55, 0x89, 0x25, 0x99, 0xf9, 0x79, 0x42, 0x02, 0x5c, 0xcc, 0xb9, 0xc5, 0xe9, 0x12, 0x8c, 0x0a, 0x8c, 0x1a, 0x9c, 0x41, 0x20, - 0xa6, 0x95, 0xe0, 0xa5, 0x2d, 0xba, 0xbc, 0x28, 0x8a, 0x94, 0xe6, 0x30, 0x72, 0xb1, 0xba, 0x17, + 0xa6, 0x95, 0xe0, 0xa9, 0x2d, 0xba, 0xbc, 0x28, 0x8a, 0x94, 0xe6, 0x30, 0x72, 0xb1, 0xba, 0x17, 0x25, 0xe6, 0x95, 0x08, 0xf9, 0x72, 0xf1, 0x26, 0x22, 0x4b, 0x81, 0x35, 0x72, 0x1b, 0x89, 0xe8, - 0x41, 0x6c, 0xd6, 0x83, 0xd9, 0xac, 0xe7, 0x98, 0x57, 0xe9, 0x24, 0x78, 0x0a, 0xdd, 0xa4, 0x20, - 0x54, 0xdd, 0x42, 0x2e, 0x5c, 0x5c, 0xa9, 0x15, 0x05, 0x99, 0x45, 0x10, 0xb3, 0x98, 0xc0, 0x66, - 0x49, 0x61, 0x98, 0x15, 0x02, 0xf3, 0xbc, 0x13, 0xc7, 0x89, 0x7b, 0xf2, 0x0c, 0x13, 0xee, 0xcb, - 0x33, 0x06, 0x21, 0xe9, 0x73, 0x72, 0x3a, 0xf1, 0x50, 0x8e, 0xe1, 0xc4, 0x23, 0x39, 0xc6, 0x0b, - 0x8f, 0xe4, 0x18, 0x1f, 0x3c, 0x92, 0x63, 0x9c, 0xf0, 0x58, 0x8e, 0xe1, 0xc2, 0x63, 0x39, 0x86, - 0x1b, 0x8f, 0xe5, 0x18, 0xa2, 0x54, 0xd2, 0x33, 0x4b, 0x32, 0x4a, 0x93, 0xf4, 0x92, 0xf3, 0x73, - 0xa1, 0x81, 0x0c, 0xa5, 0x74, 0x8b, 0x53, 0xb2, 0xf5, 0x2b, 0x20, 0x11, 0x95, 0xc4, 0x06, 0xb6, - 0xcd, 0x18, 0x10, 0x00, 0x00, 0xff, 0xff, 0x6e, 0xbe, 0xf1, 0x5a, 0xcd, 0x01, 0x00, 0x00, + 0x41, 0x6c, 0xd6, 0x83, 0xd9, 0xac, 0xe7, 0x98, 0x57, 0xe9, 0x84, 0x69, 0x52, 0x10, 0xaa, 0x6e, + 0x21, 0x17, 0x2e, 0xae, 0xd4, 0x8a, 0x82, 0xcc, 0x22, 0x88, 0x59, 0x4c, 0x60, 0xb3, 0xa4, 0x30, + 0xcc, 0x0a, 0x81, 0x79, 0xde, 0x89, 0xe3, 0xc4, 0x3d, 0x79, 0x86, 0x09, 0xf7, 0xe5, 0x19, 0x83, + 0x90, 0xf4, 0x39, 0x39, 0x9d, 0x78, 0x28, 0xc7, 0x70, 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, 0x2a, 0xe9, 0x99, 0x25, 0x19, 0xa5, 0x49, 0x7a, 0xc9, 0xf9, 0xb9, 0xd0, 0x40, + 0x86, 0x52, 0xba, 0xc5, 0x29, 0xd9, 0xfa, 0x15, 0x90, 0x88, 0x4a, 0x62, 0x03, 0xdb, 0x66, 0x0c, + 0x08, 0x00, 0x00, 0xff, 0xff, 0x46, 0xfb, 0xa1, 0x7a, 0xcd, 0x01, 0x00, 0x00, } func (m *GenericAuthorization) Marshal() (dAtA []byte, err error) { diff --git a/x/bank/types/authz.pb.go b/x/bank/types/authz.pb.go index a8a642f35929..e5352246fbef 100644 --- a/x/bank/types/authz.pb.go +++ b/x/bank/types/authz.pb.go @@ -92,10 +92,10 @@ var fileDescriptor_a4d2a37888ea779f = []byte{ 0x9c, 0x9f, 0x99, 0xe7, 0x64, 0x70, 0xe2, 0x9e, 0x3c, 0xc3, 0xaa, 0xfb, 0xf2, 0x1a, 0xe9, 0x99, 0x25, 0x19, 0xa5, 0x49, 0x7a, 0xc9, 0xf9, 0xb9, 0x50, 0x67, 0x40, 0x29, 0xdd, 0xe2, 0x94, 0x6c, 0xfd, 0x92, 0xca, 0x82, 0xd4, 0x62, 0xb0, 0x86, 0xe2, 0x20, 0x2e, 0xb0, 0xf9, 0x3e, 0x20, 0xe3, - 0xad, 0x04, 0x2f, 0x6d, 0xd1, 0xe5, 0x45, 0x71, 0x80, 0x93, 0xf3, 0x89, 0x47, 0x72, 0x8c, 0x17, + 0xad, 0x04, 0x4f, 0x6d, 0xd1, 0xe5, 0x45, 0x71, 0x80, 0x93, 0xf3, 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, 0x69, 0xe2, 0xb5, 0xa2, 0x02, 0x12, 0x9e, 0x60, 0x9b, 0x92, 0xd8, - 0xc0, 0x5e, 0x34, 0x06, 0x04, 0x00, 0x00, 0xff, 0xff, 0x3b, 0xce, 0xe1, 0x4c, 0x6b, 0x01, 0x00, + 0xc0, 0x5e, 0x34, 0x06, 0x04, 0x00, 0x00, 0xff, 0xff, 0x8c, 0x86, 0xc3, 0x2e, 0x6b, 0x01, 0x00, 0x00, } diff --git a/x/bank/types/bank.pb.go b/x/bank/types/bank.pb.go index 49e8a6b05fd5..2edce91c0dcf 100644 --- a/x/bank/types/bank.pb.go +++ b/x/bank/types/bank.pb.go @@ -450,44 +450,44 @@ var fileDescriptor_dd052eee12edf988 = []byte{ 0x14, 0xce, 0x34, 0x4d, 0xb2, 0x9d, 0xfc, 0x7e, 0x97, 0x31, 0xc8, 0xb6, 0xe0, 0x6e, 0x5c, 0x50, 0x52, 0xb1, 0x49, 0x5b, 0x3d, 0x05, 0x41, 0x4c, 0x15, 0x8d, 0x20, 0xca, 0x96, 0x22, 0xe8, 0x21, 0x4c, 0xb2, 0xd3, 0x64, 0xe8, 0xee, 0xcc, 0xb2, 0x33, 0x5b, 0x9a, 0xff, 0x40, 0x3c, 0x79, 0xf4, - 0xd8, 0xa3, 0x7a, 0x2e, 0xf8, 0x2f, 0xf4, 0x58, 0xea, 0xc5, 0x53, 0x94, 0xf4, 0xe2, 0xb9, 0x7f, - 0x81, 0xcc, 0xcc, 0x26, 0x4d, 0x21, 0x8a, 0x07, 0x2f, 0x9e, 0xf2, 0xde, 0xfb, 0xbe, 0xf7, 0xbd, - 0x8f, 0x37, 0x6f, 0x03, 0x9d, 0x1e, 0x17, 0x11, 0x17, 0x8d, 0x2e, 0x66, 0x7b, 0x8d, 0xfd, 0x8d, - 0x2e, 0x91, 0x78, 0x43, 0x27, 0xf5, 0x38, 0xe1, 0x92, 0xa3, 0x2b, 0x06, 0xaf, 0xeb, 0x52, 0x86, - 0xaf, 0x54, 0xfa, 0xbc, 0xcf, 0x35, 0xde, 0x50, 0x91, 0xa1, 0xae, 0x2c, 0x1b, 0x6a, 0xc7, 0x00, - 0x59, 0x9f, 0x81, 0x2e, 0xa6, 0x08, 0x32, 0x9d, 0xd2, 0xe3, 0x94, 0x19, 0xdc, 0xfb, 0x02, 0x60, - 0xf1, 0x05, 0x4e, 0x70, 0x24, 0xd0, 0x2e, 0xfc, 0x4f, 0x10, 0x16, 0x74, 0x08, 0xc3, 0xdd, 0x90, - 0x04, 0x36, 0xa8, 0xe6, 0x6b, 0xe5, 0xcd, 0x6a, 0x7d, 0x8e, 0x8f, 0xfa, 0x36, 0x61, 0xc1, 0x23, - 0xc3, 0x6b, 0x5d, 0x3f, 0x1f, 0xb9, 0xd7, 0x86, 0x38, 0x0a, 0x9b, 0xde, 0x6c, 0xff, 0x6d, 0x1e, - 0x51, 0x49, 0xa2, 0x58, 0x0e, 0x3d, 0xbf, 0x2c, 0x2e, 0xf8, 0xe8, 0x35, 0xac, 0x04, 0x64, 0x17, - 0xa7, 0xa1, 0xec, 0x5c, 0x9a, 0xb7, 0x50, 0x05, 0x35, 0xab, 0xb5, 0x7a, 0x3e, 0x72, 0x6f, 0x18, - 0xb5, 0x79, 0xac, 0x59, 0x55, 0x94, 0x11, 0x66, 0xcc, 0x34, 0x17, 0xdf, 0x1f, 0xba, 0x39, 0xef, - 0x31, 0x2c, 0xcf, 0x14, 0x51, 0x05, 0x16, 0x02, 0xc2, 0x78, 0x64, 0x83, 0x2a, 0xa8, 0x2d, 0xf9, - 0x26, 0x41, 0x36, 0x2c, 0x5d, 0x1a, 0xed, 0x4f, 0xd2, 0xa6, 0xa5, 0x44, 0x7e, 0x1c, 0xba, 0xc0, - 0xfb, 0x00, 0x60, 0xa1, 0xcd, 0xe2, 0x54, 0xa2, 0x4d, 0x58, 0xc2, 0x41, 0x90, 0x10, 0x21, 0x8c, - 0x4a, 0xcb, 0x3e, 0x3d, 0x5a, 0xab, 0x64, 0xbb, 0x79, 0x60, 0x90, 0x6d, 0x99, 0x50, 0xd6, 0xf7, - 0x27, 0x44, 0x84, 0x61, 0x41, 0xad, 0x5a, 0xd8, 0x0b, 0x7a, 0x95, 0xcb, 0x17, 0xab, 0x14, 0x64, - 0xba, 0xca, 0x2d, 0x4e, 0x59, 0x6b, 0xfd, 0x78, 0xe4, 0xe6, 0x3e, 0x7d, 0x73, 0x6b, 0x7d, 0x2a, - 0x07, 0x69, 0xb7, 0xde, 0xe3, 0x51, 0xf6, 0x8e, 0xd9, 0xcf, 0x9a, 0x08, 0xf6, 0x1a, 0x72, 0x18, - 0x13, 0xa1, 0x1b, 0x84, 0x6f, 0x94, 0x9b, 0xd6, 0x1b, 0x63, 0x35, 0xe7, 0x7d, 0x04, 0xb0, 0xf8, - 0x3c, 0x95, 0xff, 0x84, 0xd7, 0xcf, 0x00, 0x16, 0xb7, 0xd3, 0x38, 0x0e, 0x87, 0x6a, 0xae, 0xe4, - 0x12, 0x87, 0xd9, 0xb9, 0xfd, 0xdd, 0xb9, 0x5a, 0xb9, 0xf9, 0x34, 0x9b, 0x0b, 0x4e, 0x8f, 0xd6, - 0xee, 0xdd, 0xfa, 0x6d, 0xf7, 0x81, 0xf9, 0x1c, 0x23, 0xda, 0x4f, 0xb0, 0xa4, 0x9c, 0x89, 0xc6, - 0xfe, 0xfa, 0xdd, 0xf5, 0xba, 0xf1, 0xda, 0xb6, 0x81, 0xf7, 0x12, 0x2e, 0x3d, 0x54, 0xd7, 0xb3, - 0xc3, 0xa8, 0xfc, 0xc5, 0x5d, 0xad, 0x40, 0x8b, 0x1c, 0xc4, 0x9c, 0x11, 0x26, 0xf5, 0x61, 0xfd, - 0xef, 0x4f, 0x73, 0x75, 0x73, 0x38, 0xa4, 0x58, 0x10, 0x61, 0xe7, 0xab, 0xf9, 0xda, 0x92, 0x3f, - 0x49, 0xbd, 0xb7, 0x0b, 0xd0, 0x7a, 0x46, 0x24, 0x0e, 0xb0, 0xc4, 0xa8, 0x0a, 0xcb, 0x01, 0x11, - 0xbd, 0x84, 0xc6, 0xca, 0x44, 0x26, 0x3f, 0x5b, 0x42, 0xf7, 0x15, 0x83, 0xf1, 0xa8, 0x93, 0x32, - 0x2a, 0x27, 0x8f, 0xe6, 0xcc, 0xfd, 0x56, 0xa7, 0x7e, 0x7d, 0x18, 0x4c, 0x42, 0x81, 0x10, 0x5c, - 0x54, 0x2b, 0xb6, 0xf3, 0x5a, 0x5b, 0xc7, 0xca, 0x5d, 0x40, 0x45, 0x1c, 0xe2, 0xa1, 0xbd, 0xa8, - 0xcb, 0x93, 0x54, 0xb1, 0x19, 0x8e, 0x88, 0x5d, 0x30, 0x6c, 0x15, 0xa3, 0xab, 0xb0, 0x28, 0x86, - 0x51, 0x97, 0x87, 0x76, 0x51, 0x57, 0xb3, 0x0c, 0x2d, 0xc3, 0x7c, 0x9a, 0x50, 0xbb, 0xa4, 0x2f, - 0xaf, 0x34, 0x1e, 0xb9, 0xf9, 0x1d, 0xbf, 0xed, 0xab, 0x1a, 0xba, 0x09, 0xad, 0x34, 0xa1, 0x9d, - 0x01, 0x16, 0x03, 0xdb, 0xd2, 0x78, 0x79, 0x3c, 0x72, 0x4b, 0x3b, 0x7e, 0xfb, 0x09, 0x16, 0x03, - 0xbf, 0x94, 0x26, 0x54, 0x05, 0xad, 0xad, 0xe3, 0xb1, 0x03, 0x4e, 0xc6, 0x0e, 0xf8, 0x3e, 0x76, - 0xc0, 0xbb, 0x33, 0x27, 0x77, 0x72, 0xe6, 0xe4, 0xbe, 0x9e, 0x39, 0xb9, 0x57, 0xab, 0x7f, 0xf2, - 0x7c, 0xfa, 0x06, 0xba, 0x45, 0xfd, 0x0f, 0x77, 0xe7, 0x67, 0x00, 0x00, 0x00, 0xff, 0xff, 0xd9, - 0x99, 0xc6, 0x9a, 0x69, 0x05, 0x00, 0x00, + 0xd8, 0xa3, 0x7a, 0x2e, 0xf8, 0x2f, 0x14, 0x4f, 0x45, 0x2f, 0x9e, 0xa2, 0xa4, 0x17, 0xcf, 0xfd, + 0x0b, 0x64, 0x66, 0x36, 0x69, 0x0a, 0x51, 0x3c, 0x78, 0xf1, 0x94, 0xf7, 0xde, 0xf7, 0xbd, 0xef, + 0x7d, 0xbc, 0x79, 0x1b, 0xe8, 0xf4, 0xb8, 0x88, 0xb8, 0x68, 0x74, 0x31, 0xdb, 0x6b, 0xec, 0x6f, + 0x74, 0x89, 0xc4, 0x1b, 0x3a, 0xa9, 0xc7, 0x09, 0x97, 0x1c, 0x5d, 0x32, 0x78, 0x5d, 0x97, 0x32, + 0x7c, 0xa5, 0xd2, 0xe7, 0x7d, 0xae, 0xf1, 0x86, 0x8a, 0x0c, 0x75, 0x65, 0xd9, 0x50, 0x3b, 0x06, + 0xc8, 0xfa, 0x0c, 0x74, 0x3e, 0x45, 0x90, 0xe9, 0x94, 0x1e, 0xa7, 0xcc, 0xe0, 0xde, 0x17, 0x00, + 0x8b, 0xcf, 0x70, 0x82, 0x23, 0x81, 0x76, 0xe1, 0x7f, 0x82, 0xb0, 0xa0, 0x43, 0x18, 0xee, 0x86, + 0x24, 0xb0, 0x41, 0x35, 0x5f, 0x2b, 0x6f, 0x56, 0xeb, 0x73, 0x7c, 0xd4, 0xb7, 0x09, 0x0b, 0x1e, + 0x18, 0x5e, 0xeb, 0xea, 0xd9, 0xc8, 0xbd, 0x32, 0xc4, 0x51, 0xd8, 0xf4, 0x66, 0xfb, 0x6f, 0xf2, + 0x88, 0x4a, 0x12, 0xc5, 0x72, 0xe8, 0xf9, 0x65, 0x71, 0xce, 0x47, 0x2f, 0x61, 0x25, 0x20, 0xbb, + 0x38, 0x0d, 0x65, 0xe7, 0xc2, 0xbc, 0x85, 0x2a, 0xa8, 0x59, 0xad, 0xd5, 0xb3, 0x91, 0x7b, 0xcd, + 0xa8, 0xcd, 0x63, 0xcd, 0xaa, 0xa2, 0x8c, 0x30, 0x63, 0xa6, 0xb9, 0xf8, 0xf6, 0xd0, 0xcd, 0x79, + 0x0f, 0x61, 0x79, 0xa6, 0x88, 0x2a, 0xb0, 0x10, 0x10, 0xc6, 0x23, 0x1b, 0x54, 0x41, 0x6d, 0xc9, + 0x37, 0x09, 0xb2, 0x61, 0xe9, 0xc2, 0x68, 0x7f, 0x92, 0x36, 0x2d, 0x25, 0xf2, 0xe3, 0xd0, 0x05, + 0xde, 0x3b, 0x00, 0x0b, 0x6d, 0x16, 0xa7, 0x12, 0x6d, 0xc2, 0x12, 0x0e, 0x82, 0x84, 0x08, 0x61, + 0x54, 0x5a, 0xf6, 0xe7, 0xa3, 0xb5, 0x4a, 0xb6, 0x9b, 0x7b, 0x06, 0xd9, 0x96, 0x09, 0x65, 0x7d, + 0x7f, 0x42, 0x44, 0x18, 0x16, 0xd4, 0xaa, 0x85, 0xbd, 0xa0, 0x57, 0xb9, 0x7c, 0xbe, 0x4a, 0x41, + 0xa6, 0xab, 0xdc, 0xe2, 0x94, 0xb5, 0xd6, 0x8f, 0x47, 0x6e, 0xee, 0xc3, 0x37, 0xb7, 0xd6, 0xa7, + 0x72, 0x90, 0x76, 0xeb, 0x3d, 0x1e, 0x65, 0xef, 0x98, 0xfd, 0xac, 0x89, 0x60, 0xaf, 0x21, 0x87, + 0x31, 0x11, 0xba, 0x41, 0xf8, 0x46, 0xb9, 0x69, 0xbd, 0x32, 0x56, 0x73, 0xde, 0x7b, 0x00, 0x8b, + 0x4f, 0x53, 0xf9, 0x4f, 0x78, 0xfd, 0x08, 0x60, 0x71, 0x3b, 0x8d, 0xe3, 0x70, 0xa8, 0xe6, 0x4a, + 0x2e, 0x71, 0x98, 0x9d, 0xdb, 0xdf, 0x9d, 0xab, 0x95, 0x9b, 0x8f, 0xb3, 0xb9, 0xe0, 0xd3, 0xd1, + 0xda, 0x9d, 0x1b, 0xbf, 0xed, 0x3e, 0x30, 0x9f, 0x63, 0x44, 0xfb, 0x09, 0x96, 0x94, 0x33, 0xd1, + 0xd8, 0x5f, 0xbf, 0xbd, 0x5e, 0x37, 0x5e, 0xdb, 0x36, 0xf0, 0x9e, 0xc3, 0xa5, 0xfb, 0xea, 0x7a, + 0x76, 0x18, 0x95, 0xbf, 0xb8, 0xab, 0x15, 0x68, 0x91, 0x83, 0x98, 0x33, 0xc2, 0xa4, 0x3e, 0xac, + 0xff, 0xfd, 0x69, 0xae, 0x6e, 0x0e, 0x87, 0x14, 0x0b, 0x22, 0xec, 0x7c, 0x35, 0x5f, 0x5b, 0xf2, + 0x27, 0xa9, 0xf7, 0x7a, 0x01, 0x5a, 0x4f, 0x88, 0xc4, 0x01, 0x96, 0x18, 0x55, 0x61, 0x39, 0x20, + 0xa2, 0x97, 0xd0, 0x58, 0x99, 0xc8, 0xe4, 0x67, 0x4b, 0xe8, 0xae, 0x62, 0x30, 0x1e, 0x75, 0x52, + 0x46, 0xe5, 0xe4, 0xd1, 0x9c, 0xb9, 0xdf, 0xea, 0xd4, 0xaf, 0x0f, 0x83, 0x49, 0x28, 0x10, 0x82, + 0x8b, 0x6a, 0xc5, 0x76, 0x5e, 0x6b, 0xeb, 0x58, 0xb9, 0x0b, 0xa8, 0x88, 0x43, 0x3c, 0xb4, 0x17, + 0x75, 0x79, 0x92, 0x2a, 0x36, 0xc3, 0x11, 0xb1, 0x0b, 0x86, 0xad, 0x62, 0x74, 0x19, 0x16, 0xc5, + 0x30, 0xea, 0xf2, 0xd0, 0x2e, 0xea, 0x6a, 0x96, 0xa1, 0x65, 0x98, 0x4f, 0x13, 0x6a, 0x97, 0xf4, + 0xe5, 0x95, 0xc6, 0x23, 0x37, 0xbf, 0xe3, 0xb7, 0x7d, 0x55, 0x43, 0xd7, 0xa1, 0x95, 0x26, 0xb4, + 0x33, 0xc0, 0x62, 0x60, 0x5b, 0x1a, 0x2f, 0x8f, 0x47, 0x6e, 0x69, 0xc7, 0x6f, 0x3f, 0xc2, 0x62, + 0xe0, 0x97, 0xd2, 0x84, 0xaa, 0xa0, 0xb5, 0x75, 0x3c, 0x76, 0xc0, 0xc9, 0xd8, 0x01, 0xdf, 0xc7, + 0x0e, 0x78, 0x73, 0xea, 0xe4, 0x4e, 0x4e, 0x9d, 0xdc, 0xd7, 0x53, 0x27, 0xf7, 0x62, 0xf5, 0x4f, + 0x9e, 0x4f, 0xdf, 0x40, 0xb7, 0xa8, 0xff, 0xe1, 0x6e, 0xfd, 0x0c, 0x00, 0x00, 0xff, 0xff, 0x23, + 0xd8, 0xd4, 0xa8, 0x69, 0x05, 0x00, 0x00, } func (this *SendEnabled) Equal(that interface{}) bool { diff --git a/x/feegrant/feegrant.pb.go b/x/feegrant/feegrant.pb.go index 3f181a89eaed..4b75f267a341 100644 --- a/x/feegrant/feegrant.pb.go +++ b/x/feegrant/feegrant.pb.go @@ -294,44 +294,44 @@ func init() { } var fileDescriptor_7279582900c30aea = []byte{ - // 582 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x54, 0xbf, 0x6f, 0xd3, 0x4e, - 0x14, 0x8f, 0x9b, 0xb6, 0xdf, 0x6f, 0x2e, 0x50, 0x1a, 0x13, 0x84, 0x93, 0xc1, 0x89, 0x3a, 0xd0, - 0x30, 0xc4, 0xa6, 0x61, 0x2b, 0x0b, 0x71, 0x80, 0x0a, 0x89, 0x4a, 0xc8, 0x65, 0x62, 0x89, 0xce, - 0xf6, 0xab, 0x39, 0x11, 0xfb, 0x2c, 0xdf, 0x05, 0x9a, 0xff, 0x80, 0xb1, 0x23, 0x13, 0x62, 0x66, - 0xae, 0xf8, 0x1b, 0x2a, 0xa6, 0xaa, 0x2c, 0x4c, 0x14, 0x25, 0xff, 0x08, 0xf2, 0xdd, 0x39, 0x09, - 0x09, 0xbf, 0x84, 0x3a, 0xc5, 0xf7, 0xee, 0x7d, 0x7e, 0xbd, 0x77, 0x0a, 0xba, 0xe5, 0x53, 0x16, - 0x51, 0x66, 0x1f, 0x02, 0x84, 0x29, 0x8e, 0xb9, 0xfd, 0x6a, 0xc7, 0x03, 0x8e, 0x77, 0xa6, 0x05, - 0x2b, 0x49, 0x29, 0xa7, 0xfa, 0x4d, 0xd9, 0x67, 0x4d, 0xcb, 0xaa, 0xaf, 0x5e, 0x0d, 0x69, 0x48, - 0x45, 0x8f, 0x9d, 0x7d, 0xc9, 0xf6, 0x7a, 0x2d, 0xa4, 0x34, 0x1c, 0x80, 0x2d, 0x4e, 0xde, 0xf0, - 0xd0, 0xc6, 0xf1, 0x28, 0xbf, 0x92, 0x4c, 0x7d, 0x89, 0x51, 0xb4, 0xf2, 0xca, 0x54, 0x66, 0x3c, - 0xcc, 0x60, 0x6a, 0xc4, 0xa7, 0x24, 0x56, 0xf7, 0x8d, 0x45, 0x56, 0x4e, 0x22, 0x60, 0x1c, 0x47, - 0x49, 0x4e, 0xb0, 0xd8, 0x10, 0x0c, 0x53, 0xcc, 0x09, 0x55, 0x04, 0x5b, 0x9f, 0x35, 0xb4, 0xe1, - 0x60, 0x46, 0xfc, 0xee, 0x60, 0x40, 0x5f, 0xe3, 0xd8, 0x07, 0x7d, 0x80, 0xca, 0x2c, 0x81, 0x38, - 0xe8, 0x0f, 0x48, 0x44, 0xb8, 0xa1, 0x35, 0x8b, 0xad, 0x72, 0xa7, 0x66, 0x29, 0x5f, 0x99, 0x93, - 0x3c, 0xaa, 0xd5, 0xa3, 0x24, 0x76, 0xee, 0x9c, 0x7e, 0x6d, 0x14, 0x3e, 0x5c, 0x34, 0x5a, 0x21, - 0xe1, 0x2f, 0x86, 0x9e, 0xe5, 0xd3, 0x48, 0x85, 0x50, 0x3f, 0x6d, 0x16, 0xbc, 0xb4, 0xf9, 0x28, - 0x01, 0x26, 0x00, 0xcc, 0x45, 0x82, 0xff, 0x49, 0x46, 0xaf, 0xdf, 0x47, 0x08, 0x8e, 0x12, 0x22, - 0x4d, 0x19, 0x2b, 0x4d, 0xad, 0x55, 0xee, 0xd4, 0x2d, 0xe9, 0xda, 0xca, 0x5d, 0x5b, 0xcf, 0xf2, - 0x58, 0xce, 0xea, 0xf1, 0x45, 0x43, 0x73, 0xe7, 0x30, 0xbb, 0x95, 0xf3, 0x93, 0xf6, 0xd5, 0x47, - 0x00, 0xd3, 0x04, 0x8f, 0xb7, 0x26, 0x45, 0x54, 0x79, 0x0a, 0x29, 0xa1, 0xc1, 0x7c, 0xb0, 0x1e, - 0x5a, 0xf3, 0xb2, 0xa8, 0x86, 0x26, 0x54, 0xb6, 0xad, 0x5f, 0x6c, 0xd0, 0xfa, 0x71, 0x20, 0xce, - 0x6a, 0x16, 0xd0, 0x95, 0x58, 0xfd, 0x1e, 0x5a, 0x4f, 0x04, 0xb3, 0xf2, 0x5a, 0x5b, 0xf2, 0xfa, - 0x40, 0x4d, 0xd8, 0xf9, 0x3f, 0xc3, 0xbd, 0xcd, 0xec, 0x2a, 0x88, 0x3e, 0x42, 0xba, 0xfc, 0xea, - 0xcf, 0x4f, 0xb8, 0x78, 0xf9, 0x13, 0xde, 0x94, 0x32, 0x07, 0xb3, 0x39, 0x0f, 0x91, 0xaa, 0xf5, - 0x7d, 0x1c, 0x4b, 0x79, 0x63, 0xf5, 0xf2, 0x85, 0x37, 0xa4, 0x48, 0x0f, 0xc7, 0x42, 0x5b, 0xdf, - 0x43, 0x57, 0x94, 0x6c, 0x0a, 0x0c, 0xb8, 0xb1, 0xf6, 0xc7, 0x05, 0x8b, 0xa9, 0x89, 0x25, 0x97, - 0x25, 0xd2, 0xcd, 0x80, 0x3f, 0xdb, 0xf2, 0x3b, 0x0d, 0x5d, 0x17, 0x47, 0x08, 0xf6, 0x59, 0x38, - 0xdb, 0xf3, 0x43, 0x54, 0xc2, 0xf9, 0x41, 0xed, 0xba, 0xba, 0x24, 0xd8, 0x8d, 0x47, 0x4e, 0xe5, - 0xd3, 0x22, 0xa7, 0x3b, 0x43, 0xea, 0xb7, 0xd1, 0x26, 0x96, 0xec, 0xfd, 0x08, 0x18, 0xc3, 0x21, - 0x30, 0x63, 0xa5, 0x59, 0x6c, 0x95, 0xdc, 0x6b, 0xaa, 0xbe, 0xaf, 0xca, 0xbb, 0x37, 0xde, 0xbc, - 0x6f, 0x14, 0x96, 0x0d, 0x7e, 0xd4, 0xd0, 0xda, 0x5e, 0xf6, 0xb2, 0xf4, 0x0e, 0xfa, 0x4f, 0x3c, - 0x31, 0x48, 0x85, 0xa1, 0x92, 0x63, 0x9c, 0x9f, 0xb4, 0xab, 0x6a, 0xee, 0xdd, 0x20, 0x48, 0x81, - 0xb1, 0x03, 0x9e, 0x92, 0x38, 0x74, 0xf3, 0xc6, 0x19, 0x06, 0xc4, 0x53, 0xfb, 0x0b, 0xcc, 0x42, - 0xf4, 0xe2, 0xbf, 0x46, 0x77, 0xba, 0xa7, 0x63, 0x53, 0x3b, 0x1b, 0x9b, 0xda, 0xb7, 0xb1, 0xa9, - 0x1d, 0x4f, 0xcc, 0xc2, 0xd9, 0xc4, 0x2c, 0x7c, 0x99, 0x98, 0x85, 0xe7, 0xdb, 0xbf, 0x7d, 0x09, - 0x47, 0xd3, 0x3f, 0x49, 0x6f, 0x5d, 0xc8, 0xdd, 0xfd, 0x1e, 0x00, 0x00, 0xff, 0xff, 0x33, 0x7c, - 0x25, 0xca, 0x4f, 0x05, 0x00, 0x00, + // 578 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x54, 0x3f, 0x6f, 0xd3, 0x40, + 0x14, 0x8f, 0x9b, 0xa6, 0x90, 0x0b, 0x94, 0xd6, 0x04, 0xe1, 0x64, 0x70, 0xa2, 0x0e, 0x34, 0x0c, + 0xb1, 0x69, 0xd8, 0xca, 0x42, 0x1c, 0xa0, 0x42, 0xa2, 0x12, 0x72, 0x99, 0x58, 0xa2, 0xb3, 0xfd, + 0x6a, 0x4e, 0xc4, 0x3e, 0xcb, 0x77, 0x81, 0xe6, 0x1b, 0x30, 0x76, 0x64, 0x42, 0xcc, 0xcc, 0x15, + 0x9f, 0xa1, 0x62, 0xaa, 0x60, 0x61, 0xa2, 0x28, 0xf9, 0x22, 0xc8, 0x77, 0xe7, 0x24, 0x24, 0xfc, + 0x13, 0xea, 0x14, 0xdf, 0xbb, 0xf7, 0xfb, 0xf7, 0xde, 0x29, 0xe8, 0x96, 0x4f, 0x59, 0x44, 0x99, + 0x7d, 0x08, 0x10, 0xa6, 0x38, 0xe6, 0xf6, 0xab, 0x1d, 0x0f, 0x38, 0xde, 0x99, 0x16, 0xac, 0x24, + 0xa5, 0x9c, 0xea, 0x37, 0x65, 0x9f, 0x35, 0x2d, 0xab, 0xbe, 0x7a, 0x35, 0xa4, 0x21, 0x15, 0x3d, + 0x76, 0xf6, 0x25, 0xdb, 0xeb, 0xb5, 0x90, 0xd2, 0x70, 0x00, 0xb6, 0x38, 0x79, 0xc3, 0x43, 0x1b, + 0xc7, 0xa3, 0xfc, 0x4a, 0x32, 0xf5, 0x25, 0x46, 0xd1, 0xca, 0x2b, 0x53, 0x99, 0xf1, 0x30, 0x83, + 0xa9, 0x11, 0x9f, 0x92, 0x58, 0xdd, 0x37, 0x16, 0x59, 0x39, 0x89, 0x80, 0x71, 0x1c, 0x25, 0x39, + 0xc1, 0x62, 0x43, 0x30, 0x4c, 0x31, 0x27, 0x54, 0x11, 0x6c, 0x7d, 0xd1, 0xd0, 0xba, 0x83, 0x19, + 0xf1, 0xbb, 0x83, 0x01, 0x7d, 0x8d, 0x63, 0x1f, 0xf4, 0x01, 0xaa, 0xb0, 0x04, 0xe2, 0xa0, 0x3f, + 0x20, 0x11, 0xe1, 0x86, 0xd6, 0x2c, 0xb6, 0x2a, 0x9d, 0x9a, 0xa5, 0x7c, 0x65, 0x4e, 0xf2, 0xa8, + 0x56, 0x8f, 0x92, 0xd8, 0xb9, 0x73, 0xfa, 0xad, 0x51, 0xf8, 0x70, 0xde, 0x68, 0x85, 0x84, 0xbf, + 0x18, 0x7a, 0x96, 0x4f, 0x23, 0x15, 0x42, 0xfd, 0xb4, 0x59, 0xf0, 0xd2, 0xe6, 0xa3, 0x04, 0x98, + 0x00, 0x30, 0x17, 0x09, 0xfe, 0x27, 0x19, 0xbd, 0x7e, 0x1f, 0x21, 0x38, 0x4a, 0x88, 0x34, 0x65, + 0xac, 0x34, 0xb5, 0x56, 0xa5, 0x53, 0xb7, 0xa4, 0x6b, 0x2b, 0x77, 0x6d, 0x3d, 0xcb, 0x63, 0x39, + 0xab, 0xc7, 0xe7, 0x0d, 0xcd, 0x9d, 0xc3, 0xec, 0x6e, 0x7e, 0x3a, 0x69, 0x5f, 0x7d, 0x04, 0x30, + 0x4d, 0xf0, 0x78, 0x6b, 0x52, 0x44, 0x9b, 0x4f, 0x21, 0x25, 0x34, 0x98, 0x0f, 0xd6, 0x43, 0x25, + 0x2f, 0x8b, 0x6a, 0x68, 0x42, 0x65, 0xdb, 0xfa, 0xcd, 0x06, 0xad, 0x9f, 0x07, 0xe2, 0xac, 0x66, + 0x01, 0x5d, 0x89, 0xd5, 0xef, 0xa1, 0xb5, 0x44, 0x30, 0x2b, 0xaf, 0xb5, 0x25, 0xaf, 0x0f, 0xd4, + 0x84, 0x9d, 0xcb, 0x19, 0xee, 0x6d, 0x66, 0x57, 0x41, 0xf4, 0x11, 0xd2, 0xe5, 0x57, 0x7f, 0x7e, + 0xc2, 0xc5, 0x8b, 0x9f, 0xf0, 0x86, 0x94, 0x39, 0x98, 0xcd, 0x79, 0x88, 0x54, 0xad, 0xef, 0xe3, + 0x58, 0xca, 0x1b, 0xab, 0x17, 0x2f, 0xbc, 0x2e, 0x45, 0x7a, 0x38, 0x16, 0xda, 0xfa, 0x1e, 0xba, + 0xa2, 0x64, 0x53, 0x60, 0xc0, 0x8d, 0xd2, 0x5f, 0x17, 0x2c, 0xa6, 0x26, 0x96, 0x5c, 0x91, 0x48, + 0x37, 0x03, 0xfe, 0x6a, 0xcb, 0xef, 0x34, 0x74, 0x5d, 0x1c, 0x21, 0xd8, 0x67, 0xe1, 0x6c, 0xcf, + 0x0f, 0x51, 0x19, 0xe7, 0x07, 0xb5, 0xeb, 0xea, 0x92, 0x60, 0x37, 0x1e, 0x39, 0xcb, 0x9c, 0xee, + 0x0c, 0xa9, 0xdf, 0x46, 0x1b, 0x58, 0xb2, 0xf7, 0x23, 0x60, 0x0c, 0x87, 0xc0, 0x8c, 0x95, 0x66, + 0xb1, 0x55, 0x76, 0xaf, 0xa9, 0xfa, 0xbe, 0x2a, 0xef, 0xde, 0x78, 0xf3, 0xbe, 0x51, 0x58, 0x36, + 0xf8, 0x51, 0x43, 0xa5, 0xbd, 0xec, 0x65, 0xe9, 0x1d, 0x74, 0x49, 0x3c, 0x31, 0x48, 0x85, 0xa1, + 0xb2, 0x63, 0x7c, 0x3e, 0x69, 0x57, 0xd5, 0xdc, 0xbb, 0x41, 0x90, 0x02, 0x63, 0x07, 0x3c, 0x25, + 0x71, 0xe8, 0xe6, 0x8d, 0x33, 0x0c, 0x88, 0xa7, 0xf6, 0x0f, 0x98, 0x85, 0xe8, 0xc5, 0xff, 0x8d, + 0xee, 0x74, 0x4f, 0xc7, 0xa6, 0x76, 0x36, 0x36, 0xb5, 0xef, 0x63, 0x53, 0x3b, 0x9e, 0x98, 0x85, + 0xb3, 0x89, 0x59, 0xf8, 0x3a, 0x31, 0x0b, 0xcf, 0xb7, 0xff, 0xf8, 0x12, 0x8e, 0xa6, 0x7f, 0x92, + 0xde, 0x9a, 0x90, 0xbb, 0xfb, 0x23, 0x00, 0x00, 0xff, 0xff, 0x41, 0xd8, 0x15, 0xc6, 0x4f, 0x05, + 0x00, 0x00, } func (m *BasicAllowance) Marshal() (dAtA []byte, err error) { diff --git a/x/gov/types/gov.pb.go b/x/gov/types/gov.pb.go index 2b1abb3831d1..89a0042aea05 100644 --- a/x/gov/types/gov.pb.go +++ b/x/gov/types/gov.pb.go @@ -507,100 +507,100 @@ func init() { func init() { proto.RegisterFile("cosmos/gov/v1beta1/gov.proto", fileDescriptor_6e82113c1a9a4b7c) } var fileDescriptor_6e82113c1a9a4b7c = []byte{ - // 1488 bytes of a gzipped FileDescriptorProto + // 1487 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x57, 0x31, 0x6c, 0xdb, 0x46, 0x17, 0x16, 0x25, 0x59, 0xb6, 0x4e, 0xb2, 0xcd, 0x9c, 0x1d, 0x5b, 0xd6, 0x9f, 0x9f, 0x54, 0xd9, 0x22, 0x30, 0x82, 0x58, 0x4e, 0xdc, 0x22, 0x45, 0x9d, 0x2e, 0xa2, 0x45, 0x37, 0x2a, 0x52, 0x49, 0xa0, 0x14, 0x19, 0x49, 0x07, 0x82, 0x16, 0x2f, 0x32, 0x5b, 0x91, 0xa7, 0x8a, 0x27, 0xc7, 0x46, 0x97, 0x8c, 0x81, 0x0a, 0x14, 0x19, 0x03, 0x14, 0x02, 0x02, 0x74, 0xeb, 0xda, 0xcc, 0x9d, 0x83, 0xa2, 0x43, 0x90, 0x29, 0x68, 0x01, 0xa5, 0x71, 0x80, 0x22, 0xcd, 0xe8, 0xa1, 0x5b, 0x81, 0x82, - 0xbc, 0xa3, 0x45, 0x49, 0x46, 0x1d, 0x37, 0x93, 0xc9, 0x77, 0xdf, 0xfb, 0xbe, 0x77, 0x9f, 0xee, + 0xbc, 0xa3, 0x4d, 0x49, 0x46, 0x1d, 0x35, 0x93, 0xc9, 0x77, 0xdf, 0xfb, 0xbe, 0x77, 0x9f, 0xee, 0xbd, 0xa3, 0xc1, 0xb9, 0x3a, 0x76, 0x2c, 0xec, 0xac, 0x36, 0xf0, 0xee, 0xea, 0xee, 0xe5, 0x6d, 0x44, 0xf4, 0xcb, 0xee, 0x73, 0xb6, 0xd5, 0xc6, 0x04, 0x43, 0x48, 0x57, 0xb3, 0x6e, 0x84, 0xad, 0xa6, 0x05, 0x96, 0xb1, 0xad, 0x3b, 0xe8, 0x28, 0xa5, 0x8e, 0x4d, 0x9b, 0xe6, 0xa4, 0xe7, 0x1b, 0xb8, 0x81, 0xbd, 0xc7, 0x55, 0xf7, 0x89, 0x45, 0xc5, 0x06, 0xc6, 0x8d, 0x26, 0x5a, 0xf5, 0xde, - 0xb6, 0x3b, 0xb7, 0x57, 0x89, 0x69, 0x21, 0x87, 0xe8, 0x56, 0x8b, 0x01, 0x96, 0x46, 0x01, 0xba, - 0xbd, 0xcf, 0x96, 0x84, 0xd1, 0x25, 0xa3, 0xd3, 0xd6, 0x89, 0x89, 0x7d, 0xc5, 0x25, 0x5a, 0x91, + 0xb6, 0x3b, 0xb7, 0x57, 0x89, 0x69, 0x21, 0x87, 0xe8, 0x56, 0x8b, 0x01, 0x96, 0x86, 0x01, 0xba, + 0xbd, 0xcf, 0x96, 0x84, 0xe1, 0x25, 0xa3, 0xd3, 0xd6, 0x89, 0x89, 0x7d, 0xc5, 0x25, 0x5a, 0x91, 0x46, 0x45, 0x59, 0xc9, 0xde, 0x8b, 0xf4, 0x23, 0x07, 0xe0, 0x16, 0x32, 0x1b, 0x3b, 0x04, 0x19, 0x35, 0x4c, 0x50, 0xa9, 0xe5, 0xe6, 0xc1, 0x2b, 0x20, 0x86, 0xbd, 0xa7, 0x14, 0x97, 0xe1, 0x96, - 0x67, 0xd6, 0x84, 0xec, 0xf8, 0x46, 0xb3, 0x03, 0xbc, 0xca, 0xd0, 0x10, 0x81, 0xd8, 0x1d, 0x8f, - 0x2d, 0x15, 0xce, 0x70, 0xcb, 0x71, 0xf9, 0xb3, 0xc7, 0x7d, 0x31, 0xf4, 0x6b, 0x5f, 0x3c, 0xdf, - 0x30, 0xc9, 0x4e, 0x67, 0x3b, 0x5b, 0xc7, 0x16, 0xd3, 0x67, 0x7f, 0x56, 0x1c, 0xe3, 0xcb, 0x55, - 0xb2, 0xdf, 0x42, 0x4e, 0x36, 0x8f, 0xea, 0x87, 0x7d, 0x71, 0x7a, 0x5f, 0xb7, 0x9a, 0xeb, 0x12, - 0x65, 0x91, 0x9e, 0x3e, 0x5a, 0x01, 0x4c, 0x39, 0x8f, 0xea, 0x2a, 0x23, 0x97, 0xb6, 0x40, 0xb2, - 0x8a, 0xf6, 0x48, 0xb9, 0x8d, 0x5b, 0xd8, 0xd1, 0x9b, 0x70, 0x1e, 0x4c, 0x10, 0x93, 0x34, 0x91, - 0x57, 0x6d, 0x5c, 0xa5, 0x2f, 0x30, 0x03, 0x12, 0x06, 0x72, 0xea, 0x6d, 0x93, 0xee, 0xc4, 0xab, - 0x48, 0x0d, 0x86, 0xd6, 0x67, 0x5f, 0x3d, 0x14, 0xb9, 0xa7, 0x8f, 0x56, 0x26, 0x37, 0xb0, 0x4d, - 0x90, 0x4d, 0xa4, 0x3f, 0x39, 0x30, 0x99, 0x47, 0x2d, 0xec, 0x98, 0x04, 0x7e, 0x08, 0x12, 0x2d, - 0x26, 0xa0, 0x99, 0x86, 0x47, 0x1d, 0x95, 0x17, 0x0e, 0xfb, 0x22, 0xa4, 0x25, 0x06, 0x16, 0x25, - 0x15, 0xf8, 0x6f, 0x05, 0x03, 0x5e, 0x01, 0x71, 0x83, 0x72, 0xe0, 0x36, 0xf3, 0x21, 0xf5, 0xf4, - 0xd1, 0xca, 0x3c, 0xdb, 0x48, 0xce, 0x30, 0xda, 0xc8, 0x71, 0x2a, 0xa4, 0x6d, 0xda, 0x0d, 0x75, - 0x00, 0x85, 0x75, 0x10, 0xd3, 0x2d, 0xdc, 0xb1, 0x49, 0x2a, 0x92, 0x89, 0x2c, 0x27, 0xd6, 0x96, - 0x7c, 0xd3, 0xdd, 0x93, 0x74, 0xe4, 0xfa, 0x06, 0x36, 0x6d, 0xf9, 0x92, 0xeb, 0xeb, 0x0f, 0xcf, - 0xc5, 0xe5, 0x37, 0xf0, 0xd5, 0x4d, 0x70, 0x54, 0x46, 0xbd, 0x3e, 0x75, 0xef, 0xa1, 0x18, 0x7a, - 0xf5, 0x50, 0x0c, 0x49, 0x7f, 0xc5, 0xc0, 0xd4, 0x91, 0x83, 0x1f, 0x1c, 0xb7, 0xd9, 0xb9, 0xd7, - 0x7d, 0x31, 0x6c, 0x1a, 0x87, 0x7d, 0x31, 0x4e, 0xb7, 0x3c, 0xba, 0xd3, 0xab, 0x60, 0xb2, 0x4e, - 0x9d, 0xf3, 0xf6, 0x99, 0x58, 0x9b, 0xcf, 0xd2, 0xa3, 0x98, 0xf5, 0x8f, 0x62, 0x36, 0x67, 0xef, - 0xcb, 0x89, 0x9f, 0x07, 0x16, 0xab, 0x7e, 0x06, 0xac, 0x81, 0x98, 0x43, 0x74, 0xd2, 0x71, 0x52, - 0x11, 0xef, 0x8c, 0x49, 0xc7, 0x9d, 0x31, 0xbf, 0xc0, 0x8a, 0x87, 0x94, 0xd3, 0x87, 0x7d, 0x71, - 0x61, 0xc4, 0x7e, 0x4a, 0x22, 0xa9, 0x8c, 0x0d, 0xb6, 0x00, 0xbc, 0x6d, 0xda, 0x7a, 0x53, 0x23, - 0x7a, 0xb3, 0xb9, 0xaf, 0xb5, 0x91, 0xd3, 0x69, 0x92, 0x54, 0xd4, 0xab, 0x4f, 0x3c, 0x4e, 0xa3, - 0xea, 0xe2, 0x54, 0x0f, 0x26, 0xbf, 0xe3, 0x1a, 0x7b, 0xd8, 0x17, 0x97, 0xa8, 0xc8, 0x38, 0x91, - 0xa4, 0xf2, 0x5e, 0x30, 0x90, 0x04, 0x3f, 0x07, 0x09, 0xa7, 0xb3, 0x6d, 0x99, 0x44, 0x73, 0x9b, - 0x36, 0x35, 0xe1, 0x49, 0xa5, 0xc7, 0xac, 0xa8, 0xfa, 0x1d, 0x2d, 0x0b, 0x4c, 0x85, 0x9d, 0xa4, - 0x40, 0xb2, 0x74, 0xff, 0xb9, 0xc8, 0xa9, 0x80, 0x46, 0xdc, 0x04, 0x68, 0x02, 0x9e, 0x1d, 0x11, - 0x0d, 0xd9, 0x06, 0x55, 0x88, 0x9d, 0xa8, 0xf0, 0x2e, 0x53, 0x58, 0xa4, 0x0a, 0xa3, 0x0c, 0x54, - 0x66, 0x86, 0x85, 0x15, 0xdb, 0xf0, 0xa4, 0xee, 0x71, 0x60, 0x9a, 0x60, 0xa2, 0x37, 0x35, 0xb6, - 0x90, 0x9a, 0x3c, 0xe9, 0x20, 0x5e, 0x63, 0x3a, 0xf3, 0x54, 0x67, 0x28, 0x5b, 0x3a, 0xd5, 0x01, - 0x4d, 0x7a, 0xb9, 0x7e, 0xf3, 0x35, 0xc1, 0x99, 0x5d, 0x4c, 0x4c, 0xbb, 0xe1, 0xfe, 0xbc, 0x6d, - 0x66, 0xec, 0xd4, 0x89, 0xdb, 0x7e, 0x8f, 0x95, 0x93, 0xa2, 0xe5, 0x8c, 0x51, 0xd0, 0x7d, 0xcf, - 0xd2, 0x78, 0xc5, 0x0d, 0x7b, 0x1b, 0xbf, 0x0d, 0x58, 0x68, 0x60, 0x71, 0xfc, 0x44, 0x2d, 0x89, - 0x69, 0x2d, 0x0c, 0x69, 0x0d, 0x3b, 0x3c, 0x4d, 0xa3, 0xcc, 0xe0, 0xf5, 0xa8, 0x3b, 0x6f, 0xa4, - 0xbb, 0x11, 0x90, 0x08, 0x1e, 0x9f, 0x22, 0x88, 0xec, 0x23, 0x87, 0xce, 0x2e, 0xf9, 0xe3, 0x53, - 0x4c, 0xcc, 0x82, 0x4d, 0x02, 0x03, 0xb2, 0x60, 0x13, 0xd5, 0x25, 0x82, 0x35, 0x30, 0xa9, 0x6f, - 0x3b, 0x44, 0x37, 0xd9, 0xcc, 0x7b, 0x4b, 0x4e, 0x9f, 0x0c, 0x5e, 0x07, 0x61, 0x1b, 0x7b, 0xcd, - 0xfa, 0xb6, 0x94, 0x61, 0x1b, 0xc3, 0x0e, 0x48, 0xda, 0x58, 0xbb, 0x63, 0x92, 0x1d, 0x6d, 0x17, - 0x11, 0xec, 0x35, 0x68, 0x5c, 0xae, 0x9c, 0x8e, 0xf7, 0xb0, 0x2f, 0xce, 0x51, 0xfb, 0x83, 0x5c, - 0xd2, 0x88, 0x1c, 0xb0, 0xf1, 0x96, 0x49, 0x76, 0x6a, 0x88, 0x60, 0xf6, 0x13, 0xfc, 0xcd, 0x81, - 0xa8, 0x7b, 0x7d, 0xfd, 0xf7, 0x21, 0x9f, 0x05, 0x13, 0xbb, 0x98, 0xa0, 0x93, 0x07, 0x3c, 0x85, - 0xc1, 0xf5, 0xa3, 0x1b, 0x35, 0xf2, 0x26, 0x37, 0xaa, 0x1c, 0x4e, 0x71, 0x47, 0xb7, 0xea, 0x26, - 0x98, 0xa4, 0x4f, 0x4e, 0x2a, 0xea, 0x35, 0xe4, 0xf9, 0xe3, 0x92, 0xc7, 0xaf, 0x71, 0x39, 0xea, - 0xba, 0xa9, 0xfa, 0xc9, 0xeb, 0x53, 0x0f, 0xfc, 0xd9, 0xff, 0x53, 0x18, 0x4c, 0xb3, 0x56, 0x2b, - 0xeb, 0x6d, 0xdd, 0x72, 0xe0, 0x77, 0x1c, 0x48, 0x58, 0xa6, 0x7d, 0xd4, 0xf9, 0xdc, 0x49, 0x9d, - 0xaf, 0xb9, 0xdc, 0xaf, 0xfb, 0xe2, 0xd9, 0x40, 0xd6, 0x45, 0x6c, 0x99, 0x04, 0x59, 0x2d, 0xb2, - 0x3f, 0x70, 0x30, 0xb0, 0x7c, 0xba, 0x81, 0x00, 0x2c, 0xd3, 0xf6, 0xc7, 0xc1, 0xb7, 0x1c, 0x80, - 0x96, 0xbe, 0xe7, 0x13, 0x69, 0x2d, 0xd4, 0x36, 0xb1, 0xc1, 0x2e, 0x9d, 0xa5, 0xb1, 0x26, 0xcd, - 0xb3, 0xef, 0x1f, 0x59, 0x61, 0x45, 0x9e, 0x1b, 0x4f, 0x1e, 0xaa, 0x95, 0x8d, 0xfb, 0x71, 0x94, - 0xf4, 0xc0, 0x6d, 0x63, 0xde, 0xd2, 0xf7, 0x7c, 0xbb, 0x68, 0xf8, 0x1b, 0x0e, 0x24, 0x6b, 0x5e, - 0x6f, 0x33, 0xff, 0xbe, 0x06, 0xac, 0xd7, 0xfd, 0xda, 0xb8, 0x93, 0x6a, 0xbb, 0xca, 0x6a, 0x5b, - 0x1c, 0xca, 0x1b, 0x2a, 0x6b, 0x7e, 0x68, 0xb4, 0x04, 0x2b, 0x4a, 0xd2, 0x18, 0xab, 0xe6, 0xb7, - 0x30, 0x9b, 0x28, 0xac, 0x98, 0x5b, 0x20, 0xf6, 0x55, 0x07, 0xb7, 0x3b, 0x96, 0x57, 0x45, 0x52, - 0x96, 0x4f, 0xf7, 0x19, 0xf6, 0xba, 0x2f, 0xf2, 0x34, 0x7f, 0x50, 0x8d, 0xca, 0x18, 0x61, 0x1d, - 0xc4, 0xc9, 0x4e, 0x1b, 0x39, 0x3b, 0xb8, 0x49, 0x7f, 0x80, 0x24, 0x75, 0xf9, 0x54, 0xf4, 0x73, - 0x47, 0x14, 0x01, 0x85, 0x01, 0x2f, 0xec, 0x72, 0x60, 0xc6, 0xed, 0x64, 0x6d, 0x20, 0x15, 0xf1, - 0xa4, 0xea, 0xa7, 0x96, 0x4a, 0x0d, 0xf3, 0x0c, 0xf9, 0x7b, 0x96, 0xf9, 0x3b, 0x84, 0x90, 0xd4, - 0x69, 0x37, 0x50, 0xf5, 0xdf, 0x2f, 0xfc, 0xc1, 0x01, 0x10, 0xf8, 0x36, 0xbe, 0x08, 0x16, 0x6b, - 0xa5, 0xaa, 0xa2, 0x95, 0xca, 0xd5, 0x42, 0xa9, 0xa8, 0xdd, 0x28, 0x56, 0xca, 0xca, 0x46, 0x61, - 0xb3, 0xa0, 0xe4, 0xf9, 0x50, 0x7a, 0xb6, 0xdb, 0xcb, 0x24, 0x28, 0x50, 0x71, 0x45, 0xa0, 0x04, - 0x66, 0x83, 0xe8, 0x9b, 0x4a, 0x85, 0xe7, 0xd2, 0xd3, 0xdd, 0x5e, 0x26, 0x4e, 0x51, 0x37, 0x91, - 0x03, 0x2f, 0x80, 0xb9, 0x20, 0x26, 0x27, 0x57, 0xaa, 0xb9, 0x42, 0x91, 0x0f, 0xa7, 0xcf, 0x74, - 0x7b, 0x99, 0x69, 0x8a, 0xcb, 0xb1, 0x21, 0x9c, 0x01, 0x33, 0x41, 0x6c, 0xb1, 0xc4, 0x47, 0xd2, - 0xc9, 0x6e, 0x2f, 0x33, 0x45, 0x61, 0x45, 0x0c, 0xd7, 0x40, 0x6a, 0x18, 0xa1, 0x6d, 0x15, 0xaa, - 0xd7, 0xb4, 0x9a, 0x52, 0x2d, 0xf1, 0xd1, 0xf4, 0x7c, 0xb7, 0x97, 0xe1, 0x7d, 0xac, 0x3f, 0x15, - 0xd3, 0xd1, 0x7b, 0xdf, 0x0b, 0xa1, 0x0b, 0xbf, 0x84, 0xc1, 0xcc, 0xf0, 0x07, 0x17, 0xcc, 0x82, - 0xff, 0x95, 0xd5, 0x52, 0xb9, 0x54, 0xc9, 0x5d, 0xd7, 0x2a, 0xd5, 0x5c, 0xf5, 0x46, 0x65, 0x64, - 0xc3, 0xde, 0x56, 0x28, 0xb8, 0x68, 0x36, 0xe1, 0x55, 0x20, 0x8c, 0xe2, 0xf3, 0x4a, 0xb9, 0x54, - 0x29, 0x54, 0xb5, 0xb2, 0xa2, 0x16, 0x4a, 0x79, 0x9e, 0x4b, 0x2f, 0x76, 0x7b, 0x99, 0x39, 0x9a, - 0x32, 0xd4, 0x54, 0xf0, 0x23, 0xf0, 0xff, 0xd1, 0xe4, 0x5a, 0xa9, 0x5a, 0x28, 0x7e, 0xe2, 0xe7, - 0x86, 0xd3, 0x0b, 0xdd, 0x5e, 0x06, 0xd2, 0xdc, 0x5a, 0xa0, 0x03, 0xe0, 0x45, 0xb0, 0x30, 0x9a, - 0x5a, 0xce, 0x55, 0x2a, 0x4a, 0x9e, 0x8f, 0xa4, 0xf9, 0x6e, 0x2f, 0x93, 0xa4, 0x39, 0x65, 0xdd, - 0x71, 0x90, 0x01, 0x2f, 0x81, 0xd4, 0x28, 0x5a, 0x55, 0x3e, 0x55, 0x36, 0xaa, 0x4a, 0x9e, 0x8f, - 0xa6, 0x61, 0xb7, 0x97, 0x99, 0xa1, 0x78, 0x15, 0x7d, 0x81, 0xea, 0x04, 0x1d, 0xcb, 0xbf, 0x99, - 0x2b, 0x5c, 0x57, 0xf2, 0xfc, 0x44, 0x90, 0x7f, 0x53, 0x37, 0x9b, 0xc8, 0xa0, 0x76, 0xca, 0xc5, - 0xc7, 0x2f, 0x84, 0xd0, 0xb3, 0x17, 0x42, 0xe8, 0xee, 0x81, 0x10, 0x7a, 0x7c, 0x20, 0x70, 0x4f, - 0x0e, 0x04, 0xee, 0xf7, 0x03, 0x81, 0xbb, 0xff, 0x52, 0x08, 0x3d, 0x79, 0x29, 0x84, 0x9e, 0xbd, - 0x14, 0x42, 0xb7, 0xfe, 0x7d, 0x20, 0xee, 0x79, 0xff, 0x78, 0x7a, 0xe7, 0x79, 0x3b, 0xe6, 0xcd, - 0x90, 0xf7, 0xff, 0x09, 0x00, 0x00, 0xff, 0xff, 0x41, 0x15, 0xd6, 0xd0, 0x93, 0x0e, 0x00, 0x00, + 0x67, 0xd6, 0x84, 0xec, 0xe8, 0x46, 0xb3, 0xc7, 0x78, 0x95, 0xa1, 0x21, 0x02, 0xb1, 0x3b, 0x1e, + 0x5b, 0x2a, 0x9c, 0xe1, 0x96, 0xe3, 0xf2, 0x67, 0x8f, 0xfb, 0x62, 0xe8, 0xd7, 0xbe, 0x78, 0xbe, + 0x61, 0x92, 0x9d, 0xce, 0x76, 0xb6, 0x8e, 0x2d, 0xa6, 0xcf, 0xfe, 0xac, 0x38, 0xc6, 0x97, 0xab, + 0x64, 0xbf, 0x85, 0x9c, 0x6c, 0x1e, 0xd5, 0x0f, 0xfb, 0xe2, 0xf4, 0xbe, 0x6e, 0x35, 0xd7, 0x25, + 0xca, 0x22, 0x3d, 0x7d, 0xb4, 0x02, 0x98, 0x72, 0x1e, 0xd5, 0x55, 0x46, 0x2e, 0x6d, 0x81, 0x64, + 0x15, 0xed, 0x91, 0x72, 0x1b, 0xb7, 0xb0, 0xa3, 0x37, 0xe1, 0x3c, 0x98, 0x20, 0x26, 0x69, 0x22, + 0xaf, 0xda, 0xb8, 0x4a, 0x5f, 0x60, 0x06, 0x24, 0x0c, 0xe4, 0xd4, 0xdb, 0x26, 0xdd, 0x89, 0x57, + 0x91, 0x1a, 0x0c, 0xad, 0xcf, 0xbe, 0x7a, 0x28, 0x72, 0x3f, 0x3f, 0x5a, 0x99, 0xdc, 0xc0, 0x36, + 0x41, 0x36, 0x91, 0xfe, 0xe4, 0xc0, 0x64, 0x1e, 0xb5, 0xb0, 0x63, 0x12, 0xf8, 0x21, 0x48, 0xb4, + 0x98, 0x80, 0x66, 0x1a, 0x1e, 0x75, 0x54, 0x5e, 0x38, 0xec, 0x8b, 0x90, 0x96, 0x18, 0x58, 0x94, + 0x54, 0xe0, 0xbf, 0x15, 0x0c, 0x78, 0x05, 0xc4, 0x0d, 0xca, 0x81, 0xdb, 0xcc, 0x87, 0xd4, 0xd3, + 0x47, 0x2b, 0xf3, 0x6c, 0x23, 0x39, 0xc3, 0x68, 0x23, 0xc7, 0xa9, 0x90, 0xb6, 0x69, 0x37, 0xd4, + 0x63, 0x28, 0xac, 0x83, 0x98, 0x6e, 0xe1, 0x8e, 0x4d, 0x52, 0x91, 0x4c, 0x64, 0x39, 0xb1, 0xb6, + 0xe4, 0x9b, 0xee, 0x9e, 0xa4, 0x23, 0xd7, 0x37, 0xb0, 0x69, 0xcb, 0x97, 0x5c, 0x5f, 0x7f, 0x78, + 0x2e, 0x2e, 0xbf, 0x81, 0xaf, 0x6e, 0x82, 0xa3, 0x32, 0xea, 0xf5, 0xa9, 0x7b, 0x0f, 0xc5, 0xd0, + 0xab, 0x87, 0x62, 0x48, 0xfa, 0x2b, 0x06, 0xa6, 0x8e, 0x1c, 0xfc, 0xe0, 0xa4, 0xcd, 0xce, 0xbd, + 0xee, 0x8b, 0x61, 0xd3, 0x38, 0xec, 0x8b, 0x71, 0xba, 0xe5, 0xe1, 0x9d, 0x5e, 0x05, 0x93, 0x75, + 0xea, 0x9c, 0xb7, 0xcf, 0xc4, 0xda, 0x7c, 0x96, 0x1e, 0xc5, 0xac, 0x7f, 0x14, 0xb3, 0x39, 0x7b, + 0x5f, 0x4e, 0x04, 0x2c, 0x56, 0xfd, 0x0c, 0x58, 0x03, 0x31, 0x87, 0xe8, 0xa4, 0xe3, 0xa4, 0x22, + 0xde, 0x19, 0x93, 0x4e, 0x3a, 0x63, 0x7e, 0x81, 0x15, 0x0f, 0x29, 0xa7, 0x0f, 0xfb, 0xe2, 0xc2, + 0x90, 0xfd, 0x94, 0x44, 0x52, 0x19, 0x1b, 0x6c, 0x01, 0x78, 0xdb, 0xb4, 0xf5, 0xa6, 0x46, 0xf4, + 0x66, 0x73, 0x5f, 0x6b, 0x23, 0xa7, 0xd3, 0x24, 0xa9, 0xa8, 0x57, 0x9f, 0x78, 0x92, 0x46, 0xd5, + 0xc5, 0xa9, 0x1e, 0x4c, 0x7e, 0xc7, 0x35, 0xf6, 0xb0, 0x2f, 0x2e, 0x51, 0x91, 0x51, 0x22, 0x49, + 0xe5, 0xbd, 0x60, 0x20, 0x09, 0x7e, 0x0e, 0x12, 0x4e, 0x67, 0xdb, 0x32, 0x89, 0xe6, 0x36, 0x6d, + 0x6a, 0xc2, 0x93, 0x4a, 0x8f, 0x58, 0x51, 0xf5, 0x3b, 0x5a, 0x16, 0x98, 0x0a, 0x3b, 0x49, 0x81, + 0x64, 0xe9, 0xfe, 0x73, 0x91, 0x53, 0x01, 0x8d, 0xb8, 0x09, 0xd0, 0x04, 0x3c, 0x3b, 0x22, 0x1a, + 0xb2, 0x0d, 0xaa, 0x10, 0x3b, 0x55, 0xe1, 0x5d, 0xa6, 0xb0, 0x48, 0x15, 0x86, 0x19, 0xa8, 0xcc, + 0x0c, 0x0b, 0x2b, 0xb6, 0xe1, 0x49, 0xdd, 0xe3, 0xc0, 0x34, 0xc1, 0x44, 0x6f, 0x6a, 0x6c, 0x21, + 0x35, 0x79, 0xda, 0x41, 0xbc, 0xc6, 0x74, 0xe6, 0xa9, 0xce, 0x40, 0xb6, 0x34, 0xd6, 0x01, 0x4d, + 0x7a, 0xb9, 0x7e, 0xf3, 0x35, 0xc1, 0x99, 0x5d, 0x4c, 0x4c, 0xbb, 0xe1, 0xfe, 0xbc, 0x6d, 0x66, + 0xec, 0xd4, 0xa9, 0xdb, 0x7e, 0x8f, 0x95, 0x93, 0xa2, 0xe5, 0x8c, 0x50, 0xd0, 0x7d, 0xcf, 0xd2, + 0x78, 0xc5, 0x0d, 0x7b, 0x1b, 0xbf, 0x0d, 0x58, 0xe8, 0xd8, 0xe2, 0xf8, 0xa9, 0x5a, 0x12, 0xd3, + 0x5a, 0x18, 0xd0, 0x1a, 0x74, 0x78, 0x9a, 0x46, 0x99, 0xc1, 0xeb, 0x51, 0x77, 0xde, 0x48, 0x77, + 0x23, 0x20, 0x11, 0x3c, 0x3e, 0x45, 0x10, 0xd9, 0x47, 0x0e, 0x9d, 0x5d, 0xf2, 0xc7, 0x63, 0x4c, + 0xcc, 0x82, 0x4d, 0x02, 0x03, 0xb2, 0x60, 0x13, 0xd5, 0x25, 0x82, 0x35, 0x30, 0xa9, 0x6f, 0x3b, + 0x44, 0x37, 0xd9, 0xcc, 0x7b, 0x4b, 0x4e, 0x9f, 0x0c, 0x5e, 0x07, 0x61, 0x1b, 0x7b, 0xcd, 0xfa, + 0xb6, 0x94, 0x61, 0x1b, 0xc3, 0x0e, 0x48, 0xda, 0x58, 0xbb, 0x63, 0x92, 0x1d, 0x6d, 0x17, 0x11, + 0xec, 0x35, 0x68, 0x5c, 0xae, 0x8c, 0xc7, 0x7b, 0xd8, 0x17, 0xe7, 0xa8, 0xfd, 0x41, 0x2e, 0x69, + 0x48, 0x0e, 0xd8, 0x78, 0xcb, 0x24, 0x3b, 0x35, 0x44, 0x30, 0xfb, 0x09, 0xfe, 0xe6, 0x40, 0xd4, + 0xbd, 0xbe, 0xfe, 0xfb, 0x90, 0xcf, 0x82, 0x89, 0x5d, 0x4c, 0xd0, 0xe9, 0x03, 0x9e, 0xc2, 0xe0, + 0xfa, 0xd1, 0x8d, 0x1a, 0x79, 0x93, 0x1b, 0x55, 0x0e, 0xa7, 0xb8, 0xa3, 0x5b, 0x75, 0x13, 0x4c, + 0xd2, 0x27, 0x27, 0x15, 0xf5, 0x1a, 0xf2, 0xfc, 0x49, 0xc9, 0xa3, 0xd7, 0xb8, 0x1c, 0x75, 0xdd, + 0x54, 0xfd, 0xe4, 0xf5, 0xa9, 0x07, 0xfe, 0xec, 0xff, 0x29, 0x0c, 0xa6, 0x59, 0xab, 0x95, 0xf5, + 0xb6, 0x6e, 0x39, 0xf0, 0x3b, 0x0e, 0x24, 0x2c, 0xd3, 0x3e, 0xea, 0x7c, 0xee, 0xb4, 0xce, 0xd7, + 0x5c, 0xee, 0xd7, 0x7d, 0xf1, 0x6c, 0x20, 0xeb, 0x22, 0xb6, 0x4c, 0x82, 0xac, 0x16, 0xd9, 0x3f, + 0x76, 0x30, 0xb0, 0x3c, 0xde, 0x40, 0x00, 0x96, 0x69, 0xfb, 0xe3, 0xe0, 0x5b, 0x0e, 0x40, 0x4b, + 0xdf, 0xf3, 0x89, 0xb4, 0x16, 0x6a, 0x9b, 0xd8, 0x60, 0x97, 0xce, 0xd2, 0x48, 0x93, 0xe6, 0xd9, + 0xf7, 0x8f, 0xac, 0xb0, 0x22, 0xcf, 0x8d, 0x26, 0x0f, 0xd4, 0xca, 0xc6, 0xfd, 0x28, 0x4a, 0x7a, + 0xe0, 0xb6, 0x31, 0x6f, 0xe9, 0x7b, 0xbe, 0x5d, 0x34, 0xfc, 0x0d, 0x07, 0x92, 0x35, 0xaf, 0xb7, + 0x99, 0x7f, 0x5f, 0x03, 0xd6, 0xeb, 0x7e, 0x6d, 0xdc, 0x69, 0xb5, 0x5d, 0x65, 0xb5, 0x2d, 0x0e, + 0xe4, 0x0d, 0x94, 0x35, 0x3f, 0x30, 0x5a, 0x82, 0x15, 0x25, 0x69, 0x8c, 0x55, 0xf3, 0x5b, 0x98, + 0x4d, 0x14, 0x56, 0xcc, 0x2d, 0x10, 0xfb, 0xaa, 0x83, 0xdb, 0x1d, 0xcb, 0xab, 0x22, 0x29, 0xcb, + 0xe3, 0x7d, 0x86, 0xbd, 0xee, 0x8b, 0x3c, 0xcd, 0x3f, 0xae, 0x46, 0x65, 0x8c, 0xb0, 0x0e, 0xe2, + 0x64, 0xa7, 0x8d, 0x9c, 0x1d, 0xdc, 0xa4, 0x3f, 0x40, 0x92, 0xba, 0x3c, 0x16, 0xfd, 0xdc, 0x11, + 0x45, 0x40, 0xe1, 0x98, 0x17, 0x76, 0x39, 0x30, 0xe3, 0x76, 0xb2, 0x76, 0x2c, 0x15, 0xf1, 0xa4, + 0xea, 0x63, 0x4b, 0xa5, 0x06, 0x79, 0x06, 0xfc, 0x3d, 0xcb, 0xfc, 0x1d, 0x40, 0x48, 0xea, 0xb4, + 0x1b, 0xa8, 0xfa, 0xef, 0x17, 0xfe, 0xe0, 0x00, 0x08, 0x7c, 0x1b, 0x5f, 0x04, 0x8b, 0xb5, 0x52, + 0x55, 0xd1, 0x4a, 0xe5, 0x6a, 0xa1, 0x54, 0xd4, 0x6e, 0x14, 0x2b, 0x65, 0x65, 0xa3, 0xb0, 0x59, + 0x50, 0xf2, 0x7c, 0x28, 0x3d, 0xdb, 0xed, 0x65, 0x12, 0x14, 0xa8, 0xb8, 0x22, 0x50, 0x02, 0xb3, + 0x41, 0xf4, 0x4d, 0xa5, 0xc2, 0x73, 0xe9, 0xe9, 0x6e, 0x2f, 0x13, 0xa7, 0xa8, 0x9b, 0xc8, 0x81, + 0x17, 0xc0, 0x5c, 0x10, 0x93, 0x93, 0x2b, 0xd5, 0x5c, 0xa1, 0xc8, 0x87, 0xd3, 0x67, 0xba, 0xbd, + 0xcc, 0x34, 0xc5, 0xe5, 0xd8, 0x10, 0xce, 0x80, 0x99, 0x20, 0xb6, 0x58, 0xe2, 0x23, 0xe9, 0x64, + 0xb7, 0x97, 0x99, 0xa2, 0xb0, 0x22, 0x86, 0x6b, 0x20, 0x35, 0x88, 0xd0, 0xb6, 0x0a, 0xd5, 0x6b, + 0x5a, 0x4d, 0xa9, 0x96, 0xf8, 0x68, 0x7a, 0xbe, 0xdb, 0xcb, 0xf0, 0x3e, 0xd6, 0x9f, 0x8a, 0xe9, + 0xe8, 0xbd, 0xef, 0x85, 0xd0, 0x85, 0x5f, 0xc2, 0x60, 0x66, 0xf0, 0x83, 0x0b, 0x66, 0xc1, 0xff, + 0xca, 0x6a, 0xa9, 0x5c, 0xaa, 0xe4, 0xae, 0x6b, 0x95, 0x6a, 0xae, 0x7a, 0xa3, 0x32, 0xb4, 0x61, + 0x6f, 0x2b, 0x14, 0x5c, 0x34, 0x9b, 0xf0, 0x2a, 0x10, 0x86, 0xf1, 0x79, 0xa5, 0x5c, 0xaa, 0x14, + 0xaa, 0x5a, 0x59, 0x51, 0x0b, 0xa5, 0x3c, 0xcf, 0xa5, 0x17, 0xbb, 0xbd, 0xcc, 0x1c, 0x4d, 0x19, + 0x68, 0x2a, 0xf8, 0x11, 0xf8, 0xff, 0x70, 0x72, 0xad, 0x54, 0x2d, 0x14, 0x3f, 0xf1, 0x73, 0xc3, + 0xe9, 0x85, 0x6e, 0x2f, 0x03, 0x69, 0x6e, 0x2d, 0xd0, 0x01, 0xf0, 0x22, 0x58, 0x18, 0x4e, 0x2d, + 0xe7, 0x2a, 0x15, 0x25, 0xcf, 0x47, 0xd2, 0x7c, 0xb7, 0x97, 0x49, 0xd2, 0x9c, 0xb2, 0xee, 0x38, + 0xc8, 0x80, 0x97, 0x40, 0x6a, 0x18, 0xad, 0x2a, 0x9f, 0x2a, 0x1b, 0x55, 0x25, 0xcf, 0x47, 0xd3, + 0xb0, 0xdb, 0xcb, 0xcc, 0x50, 0xbc, 0x8a, 0xbe, 0x40, 0x75, 0x82, 0x4e, 0xe4, 0xdf, 0xcc, 0x15, + 0xae, 0x2b, 0x79, 0x7e, 0x22, 0xc8, 0xbf, 0xa9, 0x9b, 0x4d, 0x64, 0x50, 0x3b, 0xe5, 0xe2, 0xe3, + 0x17, 0x42, 0xe8, 0xd9, 0x0b, 0x21, 0x74, 0xf7, 0x40, 0x08, 0x3d, 0x3e, 0x10, 0xb8, 0x27, 0x07, + 0x02, 0xf7, 0xfb, 0x81, 0xc0, 0xdd, 0x7f, 0x29, 0x84, 0x9e, 0xbc, 0x14, 0x42, 0xcf, 0x5e, 0x0a, + 0xa1, 0x5b, 0xff, 0x3e, 0x10, 0xf7, 0xbc, 0x7f, 0x3c, 0xbd, 0xf3, 0xbc, 0x1d, 0xf3, 0x66, 0xc8, + 0xfb, 0xff, 0x04, 0x00, 0x00, 0xff, 0xff, 0x08, 0x25, 0x3f, 0x0c, 0x93, 0x0e, 0x00, 0x00, } func (this *TextProposal) Equal(that interface{}) bool { diff --git a/x/group/types.pb.go b/x/group/types.pb.go index 6d0f083784d1..8512f306c432 100644 --- a/x/group/types.pb.go +++ b/x/group/types.pb.go @@ -756,89 +756,89 @@ func init() { func init() { proto.RegisterFile("cosmos/group/v1beta1/types.proto", fileDescriptor_e091dfce5c49c8b6) } var fileDescriptor_e091dfce5c49c8b6 = []byte{ - // 1310 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x57, 0xcf, 0x6f, 0x1a, 0xc7, - 0x17, 0x67, 0x01, 0xf3, 0xe3, 0x61, 0x63, 0x34, 0x5f, 0x27, 0x59, 0xe3, 0x04, 0x6f, 0xc8, 0x37, - 0x92, 0xd5, 0xca, 0x20, 0xbb, 0x3f, 0x0e, 0x51, 0x13, 0x15, 0xf0, 0x3a, 0xa5, 0x75, 0xc0, 0xdd, - 0x05, 0xb7, 0xcd, 0xa1, 0x68, 0xd9, 0x9d, 0xe0, 0x6d, 0x60, 0x07, 0xed, 0xce, 0xba, 0xa1, 0x7f, - 0x41, 0xca, 0x29, 0xc7, 0xf6, 0x80, 0x14, 0xa9, 0xa7, 0x9e, 0x7a, 0xc9, 0x1f, 0x11, 0xb5, 0x97, - 0x28, 0xa7, 0xaa, 0x87, 0xb6, 0x4a, 0x2e, 0x3d, 0xf7, 0x2f, 0xa8, 0x76, 0x66, 0x36, 0x36, 0x31, - 0xc1, 0x49, 0xd5, 0x13, 0x3b, 0x6f, 0x3e, 0x9f, 0x79, 0xef, 0x7d, 0xde, 0x9b, 0x1f, 0x80, 0x62, - 0x12, 0x6f, 0x40, 0xbc, 0x72, 0xcf, 0x25, 0xfe, 0xb0, 0x7c, 0xb4, 0xd5, 0xc5, 0xd4, 0xd8, 0x2a, - 0xd3, 0xd1, 0x10, 0x7b, 0xa5, 0xa1, 0x4b, 0x28, 0x41, 0x2b, 0x1c, 0x51, 0x62, 0x88, 0x92, 0x40, - 0xe4, 0x57, 0x7a, 0xa4, 0x47, 0x18, 0xa0, 0x1c, 0x7c, 0x71, 0x6c, 0xbe, 0xd0, 0x23, 0xa4, 0xd7, - 0xc7, 0x65, 0x36, 0xea, 0xfa, 0x77, 0xca, 0x96, 0xef, 0x1a, 0xd4, 0x26, 0x8e, 0x98, 0x5f, 0x7f, - 0x79, 0x9e, 0xda, 0x03, 0xec, 0x51, 0x63, 0x30, 0x14, 0x80, 0x55, 0xee, 0xac, 0xc3, 0x57, 0x16, - 0x9e, 0xc5, 0xd4, 0xcb, 0x5c, 0xc3, 0x19, 0x9d, 0xc9, 0x2a, 0x0e, 0x21, 0x71, 0x0b, 0x0f, 0xba, - 0xd8, 0x45, 0xdb, 0x90, 0x34, 0x2c, 0xcb, 0xc5, 0x9e, 0x27, 0x4b, 0x8a, 0xb4, 0x91, 0xae, 0xca, - 0x4f, 0x1f, 0x6d, 0x86, 0xc9, 0x55, 0xf8, 0x8c, 0x4e, 0x5d, 0xdb, 0xe9, 0x69, 0x21, 0x10, 0x9d, - 0x87, 0xc4, 0xd7, 0xd8, 0xee, 0x1d, 0x52, 0x39, 0x1a, 0x50, 0x34, 0x31, 0x42, 0x79, 0x48, 0x0d, - 0x30, 0x35, 0x2c, 0x83, 0x1a, 0x72, 0x4c, 0x91, 0x36, 0x16, 0xb5, 0x17, 0xe3, 0xe2, 0x4d, 0x48, - 0x72, 0x8f, 0x1e, 0xfa, 0x00, 0x92, 0x03, 0xfe, 0x29, 0x4b, 0x4a, 0x6c, 0x23, 0xb3, 0x7d, 0xb1, - 0x34, 0x4b, 0xcc, 0x12, 0xc7, 0x57, 0xe3, 0x8f, 0x7f, 0x5f, 0x8f, 0x68, 0x21, 0xa5, 0x38, 0x96, - 0xe0, 0x42, 0xeb, 0xd0, 0xc5, 0xde, 0x21, 0xe9, 0x5b, 0x3b, 0xd8, 0xb4, 0x3d, 0x9b, 0x38, 0xfb, - 0xa4, 0x6f, 0x9b, 0x23, 0x74, 0x11, 0xd2, 0x34, 0x9c, 0xe2, 0xe9, 0x68, 0xc7, 0x06, 0x74, 0x1d, - 0x92, 0x81, 0xb0, 0xc4, 0xe7, 0x71, 0x67, 0xb6, 0x57, 0x4b, 0x5c, 0xbc, 0x52, 0x28, 0x5e, 0x69, - 0x47, 0x14, 0xa6, 0x9a, 0x0a, 0x9c, 0x7e, 0xf7, 0xc7, 0xba, 0xa4, 0x85, 0x9c, 0x6b, 0xe8, 0xe9, - 0xa3, 0xcd, 0xec, 0xb4, 0xc3, 0xe2, 0x4f, 0x12, 0xa4, 0x6f, 0x06, 0x41, 0xd7, 0x9d, 0x3b, 0x04, - 0xad, 0x42, 0x8a, 0x65, 0xd0, 0xb1, 0xb9, 0xf7, 0xb8, 0x96, 0x64, 0xe3, 0xba, 0x85, 0x4a, 0xb0, - 0x60, 0x58, 0x03, 0xdb, 0xe1, 0x8a, 0xcd, 0x11, 0x99, 0xc3, 0xe6, 0x49, 0x89, 0x64, 0x48, 0x1e, - 0x61, 0x37, 0x88, 0x42, 0x8e, 0x73, 0x2f, 0x62, 0x88, 0x2e, 0xc3, 0x22, 0x25, 0xd4, 0xe8, 0x77, - 0x44, 0x79, 0x16, 0x98, 0x04, 0x19, 0x66, 0xfb, 0x8c, 0x99, 0x8a, 0x5f, 0x42, 0x86, 0x05, 0x2c, - 0xca, 0x3f, 0x27, 0xe4, 0x77, 0x21, 0xc1, 0x35, 0x17, 0x6a, 0xcd, 0xad, 0x92, 0x26, 0xb0, 0xc5, - 0x5f, 0xa2, 0x90, 0x63, 0x0e, 0x2a, 0xa6, 0x49, 0x7c, 0x87, 0x32, 0x61, 0xfe, 0x4d, 0x93, 0x9d, - 0x8c, 0x2c, 0xfa, 0x0a, 0x31, 0x63, 0x6f, 0x2e, 0x66, 0xfc, 0xd5, 0x62, 0x2e, 0x4c, 0x8b, 0xf9, - 0x29, 0x2c, 0x5b, 0xa2, 0xda, 0x9d, 0x21, 0x2b, 0xb7, 0x9c, 0x60, 0x42, 0xac, 0x9c, 0x6a, 0x9b, - 0x8a, 0x33, 0xaa, 0xa2, 0x9f, 0x4f, 0xb5, 0x87, 0x96, 0xb5, 0xa6, 0xfb, 0xf3, 0x2a, 0x64, 0x2d, - 0xec, 0xda, 0x47, 0xac, 0xc7, 0x3a, 0x77, 0xf1, 0x48, 0x4e, 0xb2, 0x70, 0x96, 0x8e, 0xad, 0x9f, - 0xe0, 0xd1, 0xb5, 0xd4, 0xfd, 0x87, 0xeb, 0x91, 0xbf, 0x1e, 0xae, 0x4b, 0xc5, 0x1f, 0x33, 0x90, - 0xda, 0x77, 0xc9, 0x90, 0x78, 0x46, 0x1f, 0xad, 0x43, 0x66, 0x28, 0xbe, 0x8f, 0xcb, 0x05, 0xa1, - 0xa9, 0x6e, 0x9d, 0x94, 0x39, 0xfa, 0xba, 0x32, 0xcf, 0x6b, 0xb4, 0xf7, 0x21, 0xcd, 0x57, 0x0f, - 0xb6, 0x6a, 0x5c, 0x89, 0xcd, 0x5d, 0xf1, 0x18, 0x8a, 0x6e, 0xc2, 0xa2, 0xe7, 0x77, 0x07, 0x36, - 0xa5, 0xd8, 0xea, 0x18, 0xbc, 0x0d, 0x33, 0xdb, 0xf9, 0x53, 0xb2, 0xb5, 0xc2, 0x63, 0x8e, 0x6f, - 0xb7, 0x07, 0xc1, 0x76, 0xcb, 0xbc, 0x60, 0x56, 0x28, 0xba, 0x02, 0x4b, 0xbc, 0x07, 0xc2, 0x12, - 0x25, 0x58, 0xce, 0x8b, 0xcc, 0x78, 0x20, 0xea, 0xb4, 0x0d, 0xe7, 0x38, 0xc8, 0xe0, 0x1d, 0xf7, - 0x02, 0x9c, 0x64, 0xe0, 0xff, 0xf5, 0x4e, 0x74, 0x63, 0xc8, 0xb9, 0x0e, 0x09, 0x8f, 0x1a, 0xd4, - 0xf7, 0xe4, 0x94, 0x22, 0x6d, 0x64, 0xb7, 0xaf, 0xce, 0xee, 0xed, 0x50, 0xfa, 0x92, 0xce, 0xc0, - 0x9a, 0x20, 0x05, 0x74, 0x17, 0x7b, 0x7e, 0x9f, 0xca, 0xe9, 0xd7, 0xa2, 0x6b, 0x0c, 0xac, 0x09, - 0x12, 0xfa, 0x10, 0xe0, 0x88, 0x50, 0xdc, 0x09, 0x56, 0xc3, 0x32, 0x30, 0x75, 0xd6, 0x66, 0x2f, - 0xd1, 0x32, 0xfa, 0xfd, 0x91, 0x38, 0x02, 0xd3, 0x01, 0x29, 0x88, 0x04, 0xa3, 0x1b, 0xc7, 0x47, - 0x59, 0xe6, 0x0d, 0xc4, 0x0d, 0x49, 0xe8, 0x00, 0x96, 0xf1, 0x3d, 0x6c, 0xfa, 0x94, 0xb8, 0x1d, - 0x91, 0xc9, 0x22, 0xcb, 0x64, 0xf3, 0x8c, 0x4c, 0x54, 0xc1, 0x12, 0x19, 0x65, 0xf1, 0xd4, 0x18, - 0x6d, 0x40, 0x7c, 0xe0, 0xf5, 0x3c, 0x79, 0x89, 0x9d, 0xeb, 0x33, 0x37, 0x8a, 0xc6, 0x10, 0xc5, - 0x27, 0x12, 0x24, 0xb8, 0xaa, 0x68, 0x0b, 0x90, 0xde, 0xaa, 0xb4, 0xda, 0x7a, 0xa7, 0xdd, 0xd0, - 0xf7, 0xd5, 0x5a, 0x7d, 0xb7, 0xae, 0xee, 0xe4, 0x22, 0xf9, 0xd5, 0xf1, 0x44, 0x39, 0x17, 0x7a, - 0xe6, 0xd8, 0xba, 0x73, 0x64, 0xf4, 0x6d, 0x0b, 0x6d, 0x41, 0x4e, 0x50, 0xf4, 0x76, 0xf5, 0x56, - 0xbd, 0xd5, 0x52, 0x77, 0x72, 0x52, 0x7e, 0x6d, 0x3c, 0x51, 0x2e, 0x4c, 0x13, 0xf4, 0xb0, 0x9b, - 0xd0, 0xdb, 0xb0, 0x24, 0x28, 0xb5, 0xbd, 0xa6, 0xae, 0xee, 0xe4, 0xa2, 0x79, 0x79, 0x3c, 0x51, - 0x56, 0xa6, 0xf1, 0xb5, 0x3e, 0xf1, 0xb0, 0x85, 0x36, 0x21, 0x2b, 0xc0, 0x95, 0x6a, 0x53, 0x0b, - 0x56, 0x8f, 0xcd, 0x0a, 0xa7, 0xd2, 0x25, 0x2e, 0xc5, 0x56, 0x3e, 0x7e, 0xff, 0x87, 0x42, 0xa4, - 0xf8, 0x9b, 0x04, 0x09, 0xa1, 0xc3, 0x16, 0x20, 0x4d, 0xd5, 0xdb, 0x7b, 0xad, 0x79, 0x29, 0x71, - 0x6c, 0x98, 0xd2, 0x7b, 0x27, 0x28, 0xbb, 0xf5, 0x46, 0x65, 0xaf, 0x7e, 0x9b, 0x25, 0x75, 0x69, - 0x3c, 0x51, 0x56, 0xa7, 0x29, 0x6d, 0xe7, 0x8e, 0xed, 0x18, 0x7d, 0xfb, 0x1b, 0x6c, 0xa1, 0x32, - 0x2c, 0x0b, 0x5a, 0xa5, 0x56, 0x53, 0xf7, 0x5b, 0x2c, 0xb1, 0xfc, 0x78, 0xa2, 0x9c, 0x9f, 0xe6, - 0x54, 0x4c, 0x13, 0x0f, 0xe9, 0x14, 0x41, 0x53, 0x3f, 0x56, 0x6b, 0x3c, 0xb7, 0x19, 0x04, 0x0d, - 0x7f, 0x85, 0xcd, 0xe3, 0xe4, 0xbe, 0x8f, 0x42, 0x76, 0xba, 0xf8, 0xa8, 0x0a, 0x6b, 0xea, 0xe7, - 0x6a, 0xad, 0xdd, 0x6a, 0x6a, 0x9d, 0x99, 0xd9, 0x5e, 0x1e, 0x4f, 0x94, 0x4b, 0xe1, 0xaa, 0xd3, - 0xe4, 0x30, 0xeb, 0xeb, 0x70, 0xe1, 0xe5, 0x35, 0x1a, 0xcd, 0x56, 0x47, 0x6b, 0x37, 0x72, 0x52, - 0x5e, 0x19, 0x4f, 0x94, 0x8b, 0xb3, 0xf9, 0x0d, 0x42, 0x35, 0xdf, 0x41, 0x37, 0x4e, 0xd3, 0xf5, - 0x76, 0xad, 0xa6, 0xea, 0x7a, 0x2e, 0x3a, 0xcf, 0xbd, 0xee, 0x9b, 0x66, 0x70, 0xfa, 0xcd, 0xe0, - 0xef, 0x56, 0xea, 0x7b, 0x6d, 0x4d, 0xcd, 0xc5, 0xe6, 0xf1, 0x77, 0x0d, 0xbb, 0xef, 0xbb, 0x98, - 0x6b, 0x73, 0x2d, 0x1e, 0x9c, 0xd7, 0xc5, 0x6f, 0x25, 0x58, 0x60, 0xdb, 0x15, 0xad, 0x41, 0x7a, - 0x84, 0xbd, 0x0e, 0x3b, 0x71, 0xc4, 0x33, 0x24, 0x35, 0xc2, 0x5e, 0x2d, 0x18, 0x07, 0xf7, 0x9a, - 0x43, 0xc4, 0x1c, 0x7f, 0x3e, 0x25, 0x1d, 0xc2, 0xa7, 0xae, 0xc0, 0x92, 0xd1, 0xf5, 0xa8, 0x61, - 0x3b, 0x62, 0x9e, 0xdd, 0x6f, 0xda, 0xa2, 0x30, 0x72, 0xd0, 0x25, 0x80, 0x23, 0x4c, 0xc3, 0x15, - 0xe2, 0xfc, 0x91, 0x13, 0x58, 0xd8, 0xb4, 0x88, 0xe5, 0x6f, 0x09, 0xe2, 0x07, 0x84, 0xe2, 0xb3, - 0xef, 0x8c, 0x12, 0x2c, 0x04, 0xc7, 0x8a, 0x7b, 0xf6, 0xc3, 0x84, 0xc1, 0x82, 0x57, 0x81, 0x79, - 0x48, 0x6c, 0x13, 0xb3, 0xe0, 0xb2, 0xaf, 0x7a, 0x15, 0xd4, 0x18, 0x46, 0x13, 0xd8, 0xb9, 0x37, - 0xf0, 0x7f, 0x75, 0x5b, 0xbc, 0x65, 0x41, 0x82, 0xbb, 0x45, 0xe7, 0x01, 0xd5, 0x3e, 0x6a, 0xd6, - 0x6b, 0xea, 0x74, 0x43, 0xa2, 0x25, 0x48, 0x0b, 0x7b, 0xa3, 0x99, 0x93, 0x50, 0x16, 0x40, 0x0c, - 0xbf, 0x50, 0xf5, 0x5c, 0x14, 0x21, 0xc8, 0x8a, 0x71, 0xa5, 0xaa, 0xb7, 0x2a, 0xf5, 0x46, 0x2e, - 0x86, 0x96, 0x21, 0x23, 0x6c, 0x07, 0x6a, 0xab, 0x99, 0x8b, 0x57, 0x6f, 0x3c, 0x7e, 0x56, 0x90, - 0x9e, 0x3c, 0x2b, 0x48, 0x7f, 0x3e, 0x2b, 0x48, 0x0f, 0x9e, 0x17, 0x22, 0x4f, 0x9e, 0x17, 0x22, - 0xbf, 0x3e, 0x2f, 0x44, 0x6e, 0xff, 0xbf, 0x67, 0xd3, 0x43, 0xbf, 0x5b, 0x32, 0xc9, 0x40, 0xbc, - 0xb6, 0xc5, 0xcf, 0xa6, 0x67, 0xdd, 0x2d, 0xdf, 0xe3, 0x7f, 0x26, 0xba, 0x09, 0x96, 0xd0, 0x3b, - 0xff, 0x04, 0x00, 0x00, 0xff, 0xff, 0x29, 0xa5, 0x74, 0x3e, 0x63, 0x0c, 0x00, 0x00, + // 1307 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x57, 0x4f, 0x6f, 0x1b, 0x45, + 0x14, 0xf7, 0xda, 0x8e, 0xff, 0x3c, 0x27, 0x8e, 0x35, 0xa4, 0xed, 0xc6, 0x69, 0x9d, 0xad, 0x4b, + 0xa5, 0x08, 0x14, 0x5b, 0x09, 0x7f, 0x0e, 0x15, 0xad, 0xb0, 0x9d, 0x4d, 0x31, 0xa4, 0x76, 0xd8, + 0xb5, 0x03, 0xf4, 0x80, 0xb5, 0xde, 0x9d, 0x3a, 0x4b, 0xed, 0x1d, 0x6b, 0x77, 0x36, 0xd4, 0x7c, + 0x82, 0xe2, 0x53, 0x8f, 0x70, 0xb0, 0x54, 0x89, 0x13, 0x27, 0x2e, 0xfd, 0x10, 0x15, 0x5c, 0x2a, + 0x4e, 0x88, 0x03, 0xa0, 0xf6, 0xc2, 0x99, 0x4f, 0x80, 0x76, 0x66, 0xb6, 0x89, 0x5b, 0xc7, 0x69, + 0x11, 0x27, 0xef, 0xbc, 0xf9, 0xfd, 0xe6, 0xbd, 0xf7, 0x7b, 0x6f, 0xfe, 0x18, 0x14, 0x93, 0x78, + 0x03, 0xe2, 0x95, 0x7b, 0x2e, 0xf1, 0x87, 0xe5, 0xa3, 0xad, 0x2e, 0xa6, 0xc6, 0x56, 0x99, 0x8e, + 0x86, 0xd8, 0x2b, 0x0d, 0x5d, 0x42, 0x09, 0x5a, 0xe1, 0x88, 0x12, 0x43, 0x94, 0x04, 0x22, 0xbf, + 0xd2, 0x23, 0x3d, 0xc2, 0x00, 0xe5, 0xe0, 0x8b, 0x63, 0xf3, 0x85, 0x1e, 0x21, 0xbd, 0x3e, 0x2e, + 0xb3, 0x51, 0xd7, 0xbf, 0x53, 0xb6, 0x7c, 0xd7, 0xa0, 0x36, 0x71, 0xc4, 0xfc, 0xfa, 0x8b, 0xf3, + 0xd4, 0x1e, 0x60, 0x8f, 0x1a, 0x83, 0xa1, 0x00, 0xac, 0x72, 0x67, 0x1d, 0xbe, 0xb2, 0xf0, 0x2c, + 0xa6, 0x5e, 0xe4, 0x1a, 0xce, 0xe8, 0x4c, 0x56, 0x71, 0x08, 0x89, 0x5b, 0x78, 0xd0, 0xc5, 0x2e, + 0xda, 0x86, 0xa4, 0x61, 0x59, 0x2e, 0xf6, 0x3c, 0x59, 0x52, 0xa4, 0x8d, 0x74, 0x55, 0xfe, 0xf5, + 0xd1, 0x66, 0x98, 0x5c, 0x85, 0xcf, 0xe8, 0xd4, 0xb5, 0x9d, 0x9e, 0x16, 0x02, 0xd1, 0x79, 0x48, + 0x7c, 0x8d, 0xed, 0xde, 0x21, 0x95, 0xa3, 0x01, 0x45, 0x13, 0x23, 0x94, 0x87, 0xd4, 0x00, 0x53, + 0xc3, 0x32, 0xa8, 0x21, 0xc7, 0x14, 0x69, 0x63, 0x51, 0x7b, 0x3e, 0x2e, 0xde, 0x84, 0x24, 0xf7, + 0xe8, 0xa1, 0x0f, 0x20, 0x39, 0xe0, 0x9f, 0xb2, 0xa4, 0xc4, 0x36, 0x32, 0xdb, 0x17, 0x4b, 0xb3, + 0xc4, 0x2c, 0x71, 0x7c, 0x35, 0xfe, 0xf8, 0x8f, 0xf5, 0x88, 0x16, 0x52, 0x8a, 0x63, 0x09, 0x2e, + 0xb4, 0x0e, 0x5d, 0xec, 0x1d, 0x92, 0xbe, 0xb5, 0x83, 0x4d, 0xdb, 0xb3, 0x89, 0xb3, 0x4f, 0xfa, + 0xb6, 0x39, 0x42, 0x17, 0x21, 0x4d, 0xc3, 0x29, 0x9e, 0x8e, 0x76, 0x6c, 0x40, 0xd7, 0x21, 0x19, + 0x08, 0x4b, 0x7c, 0x1e, 0x77, 0x66, 0x7b, 0xb5, 0xc4, 0xc5, 0x2b, 0x85, 0xe2, 0x95, 0x76, 0x44, + 0x61, 0xaa, 0xa9, 0xc0, 0xe9, 0x77, 0x7f, 0xae, 0x4b, 0x5a, 0xc8, 0xb9, 0x86, 0x7e, 0x7e, 0xb4, + 0x99, 0x9d, 0x76, 0x58, 0xfc, 0x49, 0x82, 0xf4, 0xcd, 0x20, 0xe8, 0xba, 0x73, 0x87, 0xa0, 0x55, + 0x48, 0xb1, 0x0c, 0x3a, 0x36, 0xf7, 0x1e, 0xd7, 0x92, 0x6c, 0x5c, 0xb7, 0x50, 0x09, 0x16, 0x0c, + 0x6b, 0x60, 0x3b, 0x5c, 0xb1, 0x39, 0x22, 0x73, 0xd8, 0x3c, 0x29, 0x91, 0x0c, 0xc9, 0x23, 0xec, + 0x06, 0x51, 0xc8, 0x71, 0xee, 0x45, 0x0c, 0xd1, 0x65, 0x58, 0xa4, 0x84, 0x1a, 0xfd, 0x8e, 0x28, + 0xcf, 0x02, 0x93, 0x20, 0xc3, 0x6c, 0x9f, 0x31, 0x53, 0xf1, 0x4b, 0xc8, 0xb0, 0x80, 0x45, 0xf9, + 0xe7, 0x84, 0xfc, 0x2e, 0x24, 0xb8, 0xe6, 0x42, 0xad, 0xb9, 0x55, 0xd2, 0x04, 0xb6, 0xf8, 0x4b, + 0x14, 0x72, 0xcc, 0x41, 0xc5, 0x34, 0x89, 0xef, 0x50, 0x26, 0xcc, 0x7f, 0x69, 0xb2, 0x93, 0x91, + 0x45, 0x4f, 0x11, 0x33, 0xf6, 0xfa, 0x62, 0xc6, 0x4f, 0x17, 0x73, 0x61, 0x5a, 0xcc, 0x4f, 0x61, + 0xd9, 0x12, 0xd5, 0xee, 0x0c, 0x59, 0xb9, 0xe5, 0x04, 0x13, 0x62, 0xe5, 0xa5, 0xb6, 0xa9, 0x38, + 0xa3, 0xea, 0x8c, 0xf6, 0xd0, 0xb2, 0xd6, 0x74, 0x7f, 0x5e, 0x85, 0xac, 0x85, 0x5d, 0xfb, 0x88, + 0xf5, 0x58, 0xe7, 0x2e, 0x1e, 0xc9, 0x49, 0x16, 0xce, 0xd2, 0xb1, 0xf5, 0x13, 0x3c, 0xba, 0x96, + 0xba, 0xff, 0x70, 0x3d, 0xf2, 0xf7, 0xc3, 0x75, 0xa9, 0xf8, 0x63, 0x06, 0x52, 0xfb, 0x2e, 0x19, + 0x12, 0xcf, 0xe8, 0xa3, 0x75, 0xc8, 0x0c, 0xc5, 0xf7, 0x71, 0xb9, 0x20, 0x34, 0xd5, 0xad, 0x93, + 0x32, 0x47, 0x5f, 0x55, 0xe6, 0x79, 0x8d, 0xf6, 0x3e, 0xa4, 0xf9, 0xea, 0xc1, 0x56, 0x8d, 0x2b, + 0xb1, 0xb9, 0x2b, 0x1e, 0x43, 0xd1, 0x4d, 0x58, 0xf4, 0xfc, 0xee, 0xc0, 0xa6, 0x14, 0x5b, 0x1d, + 0x83, 0xb7, 0x61, 0x66, 0x3b, 0xff, 0x92, 0x6c, 0xad, 0xf0, 0x98, 0xe3, 0xdb, 0xed, 0x41, 0xb0, + 0xdd, 0x32, 0xcf, 0x99, 0x15, 0x8a, 0xae, 0xc0, 0x12, 0xef, 0x81, 0xb0, 0x44, 0x09, 0x96, 0xf3, + 0x22, 0x33, 0x1e, 0x88, 0x3a, 0x6d, 0xc3, 0x39, 0x0e, 0x32, 0x78, 0xc7, 0x3d, 0x07, 0x27, 0x19, + 0xf8, 0x8d, 0xde, 0x89, 0x6e, 0x0c, 0x39, 0xd7, 0x21, 0xe1, 0x51, 0x83, 0xfa, 0x9e, 0x9c, 0x52, + 0xa4, 0x8d, 0xec, 0xf6, 0xd5, 0xd9, 0xbd, 0x1d, 0x4a, 0x5f, 0xd2, 0x19, 0x58, 0x13, 0xa4, 0x80, + 0xee, 0x62, 0xcf, 0xef, 0x53, 0x39, 0xfd, 0x4a, 0x74, 0x8d, 0x81, 0x35, 0x41, 0x42, 0x1f, 0x02, + 0x1c, 0x11, 0x8a, 0x3b, 0xc1, 0x6a, 0x58, 0x06, 0xa6, 0xce, 0xda, 0xec, 0x25, 0x5a, 0x46, 0xbf, + 0x3f, 0x12, 0x47, 0x60, 0x3a, 0x20, 0x05, 0x91, 0x60, 0x74, 0xe3, 0xf8, 0x28, 0xcb, 0xbc, 0x86, + 0xb8, 0x21, 0x09, 0x1d, 0xc0, 0x32, 0xbe, 0x87, 0x4d, 0x9f, 0x12, 0xb7, 0x23, 0x32, 0x59, 0x64, + 0x99, 0x6c, 0x9e, 0x91, 0x89, 0x2a, 0x58, 0x22, 0xa3, 0x2c, 0x9e, 0x1a, 0xa3, 0x0d, 0x88, 0x0f, + 0xbc, 0x9e, 0x27, 0x2f, 0xb1, 0x73, 0x7d, 0xe6, 0x46, 0xd1, 0x18, 0xa2, 0xf8, 0x44, 0x82, 0x04, + 0x57, 0x15, 0x6d, 0x01, 0xd2, 0x5b, 0x95, 0x56, 0x5b, 0xef, 0xb4, 0x1b, 0xfa, 0xbe, 0x5a, 0xab, + 0xef, 0xd6, 0xd5, 0x9d, 0x5c, 0x24, 0xbf, 0x3a, 0x9e, 0x28, 0xe7, 0x42, 0xcf, 0x1c, 0x5b, 0x77, + 0x8e, 0x8c, 0xbe, 0x6d, 0xa1, 0x2d, 0xc8, 0x09, 0x8a, 0xde, 0xae, 0xde, 0xaa, 0xb7, 0x5a, 0xea, + 0x4e, 0x4e, 0xca, 0xaf, 0x8d, 0x27, 0xca, 0x85, 0x69, 0x82, 0x1e, 0x76, 0x13, 0x7a, 0x1b, 0x96, + 0x04, 0xa5, 0xb6, 0xd7, 0xd4, 0xd5, 0x9d, 0x5c, 0x34, 0x2f, 0x8f, 0x27, 0xca, 0xca, 0x34, 0xbe, + 0xd6, 0x27, 0x1e, 0xb6, 0xd0, 0x26, 0x64, 0x05, 0xb8, 0x52, 0x6d, 0x6a, 0xc1, 0xea, 0xb1, 0x59, + 0xe1, 0x54, 0xba, 0xc4, 0xa5, 0xd8, 0xca, 0xc7, 0xef, 0xff, 0x50, 0x88, 0x14, 0x7f, 0x97, 0x20, + 0x21, 0x74, 0xd8, 0x02, 0xa4, 0xa9, 0x7a, 0x7b, 0xaf, 0x35, 0x2f, 0x25, 0x8e, 0x0d, 0x53, 0x7a, + 0xef, 0x04, 0x65, 0xb7, 0xde, 0xa8, 0xec, 0xd5, 0x6f, 0xb3, 0xa4, 0x2e, 0x8d, 0x27, 0xca, 0xea, + 0x34, 0xa5, 0xed, 0xdc, 0xb1, 0x1d, 0xa3, 0x6f, 0x7f, 0x83, 0x2d, 0x54, 0x86, 0x65, 0x41, 0xab, + 0xd4, 0x6a, 0xea, 0x7e, 0x8b, 0x25, 0x96, 0x1f, 0x4f, 0x94, 0xf3, 0xd3, 0x9c, 0x8a, 0x69, 0xe2, + 0x21, 0x9d, 0x22, 0x68, 0xea, 0xc7, 0x6a, 0x8d, 0xe7, 0x36, 0x83, 0xa0, 0xe1, 0xaf, 0xb0, 0x79, + 0x9c, 0xdc, 0xf7, 0x51, 0xc8, 0x4e, 0x17, 0x1f, 0x55, 0x61, 0x4d, 0xfd, 0x5c, 0xad, 0xb5, 0x5b, + 0x4d, 0xad, 0x33, 0x33, 0xdb, 0xcb, 0xe3, 0x89, 0x72, 0x29, 0x5c, 0x75, 0x9a, 0x1c, 0x66, 0x7d, + 0x1d, 0x2e, 0xbc, 0xb8, 0x46, 0xa3, 0xd9, 0xea, 0x68, 0xed, 0x46, 0x4e, 0xca, 0x2b, 0xe3, 0x89, + 0x72, 0x71, 0x36, 0xbf, 0x41, 0xa8, 0xe6, 0x3b, 0xe8, 0xc6, 0xcb, 0x74, 0xbd, 0x5d, 0xab, 0xa9, + 0xba, 0x9e, 0x8b, 0xce, 0x73, 0xaf, 0xfb, 0xa6, 0x19, 0x9c, 0x7e, 0x33, 0xf8, 0xbb, 0x95, 0xfa, + 0x5e, 0x5b, 0x53, 0x73, 0xb1, 0x79, 0xfc, 0x5d, 0xc3, 0xee, 0xfb, 0x2e, 0xe6, 0xda, 0x5c, 0x8b, + 0x07, 0xe7, 0x75, 0xf1, 0x5b, 0x09, 0x16, 0xd8, 0x76, 0x45, 0x6b, 0x90, 0x1e, 0x61, 0xaf, 0xc3, + 0x4e, 0x1c, 0xf1, 0x0c, 0x49, 0x8d, 0xb0, 0x57, 0x0b, 0xc6, 0xc1, 0xbd, 0xe6, 0x10, 0x31, 0xc7, + 0x9f, 0x4f, 0x49, 0x87, 0xf0, 0xa9, 0x2b, 0xb0, 0x64, 0x74, 0x3d, 0x6a, 0xd8, 0x8e, 0x98, 0x67, + 0xf7, 0x9b, 0xb6, 0x28, 0x8c, 0x1c, 0x74, 0x09, 0xe0, 0x08, 0xd3, 0x70, 0x85, 0x38, 0x7f, 0xe4, + 0x04, 0x16, 0x36, 0x2d, 0x62, 0xf9, 0x47, 0x82, 0xf8, 0x01, 0xa1, 0xf8, 0xec, 0x3b, 0xa3, 0x04, + 0x0b, 0xc1, 0xb1, 0xe2, 0x9e, 0xfd, 0x30, 0x61, 0xb0, 0xe0, 0x55, 0x60, 0x1e, 0x12, 0xdb, 0xc4, + 0x2c, 0xb8, 0xec, 0x69, 0xaf, 0x82, 0x1a, 0xc3, 0x68, 0x02, 0x3b, 0xf7, 0x06, 0xfe, 0xbf, 0x6e, + 0x8b, 0xb7, 0x2c, 0x48, 0x70, 0xb7, 0xe8, 0x3c, 0xa0, 0xda, 0x47, 0xcd, 0x7a, 0x4d, 0x9d, 0x6e, + 0x48, 0xb4, 0x04, 0x69, 0x61, 0x6f, 0x34, 0x73, 0x12, 0xca, 0x02, 0x88, 0xe1, 0x17, 0xaa, 0x9e, + 0x8b, 0x22, 0x04, 0x59, 0x31, 0xae, 0x54, 0xf5, 0x56, 0xa5, 0xde, 0xc8, 0xc5, 0xd0, 0x32, 0x64, + 0x84, 0xed, 0x40, 0x6d, 0x35, 0x73, 0xf1, 0xea, 0x8d, 0xc7, 0x4f, 0x0b, 0xd2, 0x93, 0xa7, 0x05, + 0xe9, 0xaf, 0xa7, 0x05, 0xe9, 0xc1, 0xb3, 0x42, 0xe4, 0xc9, 0xb3, 0x42, 0xe4, 0xb7, 0x67, 0x85, + 0xc8, 0xed, 0x37, 0x7b, 0x36, 0x3d, 0xf4, 0xbb, 0x25, 0x93, 0x0c, 0xc4, 0x6b, 0x5b, 0xfc, 0x6c, + 0x7a, 0xd6, 0xdd, 0xf2, 0x3d, 0xfe, 0x67, 0xa2, 0x9b, 0x60, 0x09, 0xbd, 0xf3, 0x6f, 0x00, 0x00, + 0x00, 0xff, 0xff, 0x16, 0xa0, 0x18, 0x41, 0x63, 0x0c, 0x00, 0x00, } func (this *GroupAccountInfo) Equal(that interface{}) bool { diff --git a/x/staking/types/authz.pb.go b/x/staking/types/authz.pb.go index 93df6827d9f3..c3e5f0d186c2 100644 --- a/x/staking/types/authz.pb.go +++ b/x/staking/types/authz.pb.go @@ -229,32 +229,32 @@ var fileDescriptor_d6d8cdbc6f4432f0 = []byte{ 0x18, 0x86, 0xed, 0x06, 0x01, 0xf9, 0xf8, 0x51, 0x33, 0xaa, 0x50, 0x1a, 0x84, 0x5b, 0xb2, 0x21, 0xfc, 0x64, 0xac, 0x06, 0xb1, 0x61, 0x85, 0xd3, 0xba, 0x34, 0x52, 0xd5, 0x56, 0x8e, 0x5b, 0x41, 0x37, 0xd6, 0x24, 0x1e, 0x39, 0xa3, 0xc4, 0x9e, 0xc8, 0x33, 0x29, 0x49, 0x4f, 0xc1, 0x09, 0x38, - 0x00, 0xeb, 0x1e, 0x82, 0x65, 0xd5, 0x15, 0x3b, 0x50, 0x22, 0x71, 0x0e, 0x64, 0x7b, 0x6a, 0x28, - 0x4d, 0xd8, 0x74, 0x65, 0xcb, 0xdf, 0xe3, 0xe7, 0x7d, 0xc7, 0xfa, 0x0c, 0xd5, 0x2e, 0x17, 0x21, - 0x17, 0xa6, 0x90, 0xa4, 0xcf, 0xa2, 0xc0, 0x3c, 0xd9, 0xe8, 0x50, 0x49, 0x36, 0x4c, 0x32, 0x92, - 0xbd, 0x53, 0x3c, 0x8c, 0xb9, 0xe4, 0xe8, 0x51, 0xc6, 0x60, 0xc5, 0x60, 0xc5, 0x54, 0x56, 0x02, - 0x1e, 0xf0, 0x14, 0x31, 0x93, 0xbb, 0x8c, 0xae, 0xac, 0x66, 0xb4, 0x97, 0x0d, 0xd4, 0xab, 0xd9, - 0xc8, 0x50, 0x61, 0x1d, 0x22, 0x68, 0x9e, 0xd4, 0xe5, 0x2c, 0xca, 0xe6, 0xd5, 0x5f, 0x05, 0x40, - 0x6d, 0x49, 0xfa, 0xd4, 0x1a, 0xc9, 0x1e, 0x8f, 0xd9, 0x29, 0x91, 0x8c, 0x47, 0x88, 0x02, 0x84, - 0x64, 0xec, 0x49, 0xde, 0xa7, 0x91, 0x28, 0xeb, 0xeb, 0x7a, 0xed, 0x5e, 0x63, 0x15, 0x2b, 0x73, - 0xe2, 0xba, 0x6c, 0x84, 0x37, 0x39, 0x8b, 0x9a, 0x2f, 0xbf, 0xfe, 0x58, 0x7b, 0x16, 0x30, 0xd9, - 0x1b, 0x75, 0x70, 0x97, 0x87, 0xaa, 0x82, 0xba, 0xd4, 0x85, 0xdf, 0x37, 0xe5, 0x64, 0x48, 0x45, - 0x0a, 0x3b, 0xc5, 0x90, 0x8c, 0xdd, 0x54, 0x8c, 0x8e, 0x00, 0xc8, 0x60, 0xc0, 0x3f, 0x79, 0x03, - 0x26, 0x64, 0x79, 0x29, 0x8d, 0x79, 0x83, 0xe7, 0x9f, 0x1d, 0x5f, 0xaf, 0x89, 0x8f, 0xc8, 0x80, - 0xf9, 0x44, 0xf2, 0x58, 0xec, 0x68, 0x4e, 0x31, 0x55, 0xed, 0x32, 0x21, 0x91, 0x0b, 0x45, 0x9f, - 0x46, 0x93, 0x4c, 0x5b, 0xb8, 0x99, 0xf6, 0x6e, 0x62, 0x4a, 0xad, 0x1f, 0x00, 0x91, 0xbf, 0x39, - 0x2f, 0x39, 0x54, 0xf9, 0xd6, 0xba, 0x5e, 0x7b, 0xd8, 0x78, 0xbe, 0x48, 0x7f, 0xc5, 0xec, 0x4e, - 0x86, 0xd4, 0x29, 0x91, 0x7f, 0x1f, 0x55, 0xde, 0x01, 0xfc, 0xc9, 0x44, 0x0d, 0xb8, 0x43, 0x7c, - 0x3f, 0xa6, 0x22, 0xf9, 0xf2, 0x85, 0x5a, 0xb1, 0x59, 0xbe, 0x38, 0xab, 0xaf, 0x28, 0xbf, 0x95, - 0x4d, 0xda, 0x32, 0x66, 0x51, 0xe0, 0x5c, 0x82, 0x6f, 0x4b, 0x17, 0x67, 0xf5, 0x07, 0x57, 0xb2, - 0x9a, 0xf7, 0x01, 0x4e, 0x72, 0xe9, 0x8b, 0x2f, 0x3a, 0x94, 0xae, 0x75, 0x41, 0x55, 0x30, 0xac, - 0x43, 0x77, 0x67, 0xdf, 0x69, 0x1d, 0x5b, 0x6e, 0x6b, 0x7f, 0xcf, 0x73, 0x3f, 0x1e, 0xd8, 0xde, - 0xe1, 0x5e, 0xfb, 0xc0, 0xde, 0x6c, 0x6d, 0xb7, 0xec, 0xad, 0x65, 0x0d, 0xad, 0xc1, 0xe3, 0x39, - 0xcc, 0x96, 0xbd, 0x6b, 0xbf, 0xb7, 0x5c, 0x7b, 0x59, 0x47, 0x4f, 0xe1, 0xc9, 0x5c, 0x49, 0x8e, - 0x2c, 0x2d, 0x40, 0x1c, 0x3b, 0x47, 0x0a, 0xcd, 0xed, 0x6f, 0x53, 0x43, 0x3f, 0x9f, 0x1a, 0xfa, - 0xcf, 0xa9, 0xa1, 0x7f, 0x9e, 0x19, 0xda, 0xf9, 0xcc, 0xd0, 0xbe, 0xcf, 0x0c, 0xed, 0xf8, 0xd5, - 0x7f, 0x37, 0x6b, 0x9c, 0xff, 0x48, 0xe9, 0x8e, 0x75, 0x6e, 0xa7, 0x8b, 0xfd, 0xfa, 0x77, 0x00, - 0x00, 0x00, 0xff, 0xff, 0x14, 0x2c, 0x65, 0xbd, 0x67, 0x03, 0x00, 0x00, + 0x00, 0xeb, 0x1e, 0x02, 0xb1, 0xaa, 0x58, 0xb1, 0x03, 0x25, 0x12, 0xe7, 0x40, 0xb6, 0xa7, 0x86, + 0xd2, 0x84, 0x4d, 0x57, 0xb6, 0xfc, 0x3d, 0x7e, 0xde, 0x77, 0xac, 0xcf, 0x50, 0xed, 0x72, 0x11, + 0x72, 0x61, 0x0a, 0x49, 0xfa, 0x2c, 0x0a, 0xcc, 0x93, 0x8d, 0x0e, 0x95, 0x64, 0xc3, 0x24, 0x23, + 0xd9, 0x3b, 0xc5, 0xc3, 0x98, 0x4b, 0x8e, 0x1e, 0x64, 0x0c, 0x56, 0x0c, 0x56, 0x4c, 0x65, 0x25, + 0xe0, 0x01, 0x4f, 0x11, 0x33, 0xb9, 0xcb, 0xe8, 0xca, 0x6a, 0x46, 0x7b, 0xd9, 0x40, 0xbd, 0x9a, + 0x8d, 0x0c, 0x15, 0xd6, 0x21, 0x82, 0xe6, 0x49, 0x5d, 0xce, 0xa2, 0x6c, 0x5e, 0xfd, 0x55, 0x00, + 0xd4, 0x96, 0xa4, 0x4f, 0xad, 0x91, 0xec, 0xf1, 0x98, 0x9d, 0x12, 0xc9, 0x78, 0x84, 0x28, 0x40, + 0x48, 0xc6, 0x9e, 0xe4, 0x7d, 0x1a, 0x89, 0xb2, 0xbe, 0xae, 0xd7, 0xee, 0x34, 0x56, 0xb1, 0x32, + 0x27, 0xae, 0x8b, 0x46, 0x78, 0x93, 0xb3, 0xa8, 0xf9, 0xfc, 0xf3, 0x8f, 0xb5, 0x27, 0x01, 0x93, + 0xbd, 0x51, 0x07, 0x77, 0x79, 0xa8, 0x2a, 0xa8, 0x4b, 0x5d, 0xf8, 0x7d, 0x53, 0x4e, 0x86, 0x54, + 0xa4, 0xb0, 0x53, 0x0c, 0xc9, 0xd8, 0x4d, 0xc5, 0xe8, 0x08, 0x80, 0x0c, 0x06, 0xfc, 0x83, 0x37, + 0x60, 0x42, 0x96, 0x97, 0xd2, 0x98, 0x57, 0x78, 0xfe, 0xd9, 0xf1, 0xd5, 0x9a, 0xf8, 0x88, 0x0c, + 0x98, 0x4f, 0x24, 0x8f, 0xc5, 0x8e, 0xe6, 0x14, 0x53, 0xd5, 0x2e, 0x13, 0x12, 0xb9, 0x50, 0xf4, + 0x69, 0x34, 0xc9, 0xb4, 0x85, 0xeb, 0x69, 0x6f, 0x27, 0xa6, 0xd4, 0xfa, 0x0e, 0x10, 0xf9, 0x9b, + 0xf3, 0x92, 0x43, 0x95, 0x6f, 0xac, 0xeb, 0xb5, 0xfb, 0x8d, 0xa7, 0x8b, 0xf4, 0x97, 0xcc, 0xee, + 0x64, 0x48, 0x9d, 0x12, 0xf9, 0xf7, 0x51, 0xe5, 0x0d, 0xc0, 0x9f, 0x4c, 0xd4, 0x80, 0x5b, 0xc4, + 0xf7, 0x63, 0x2a, 0x92, 0x2f, 0x5f, 0xa8, 0x15, 0x9b, 0xe5, 0x6f, 0x67, 0xf5, 0x15, 0xe5, 0xb7, + 0xb2, 0x49, 0x5b, 0xc6, 0x2c, 0x0a, 0x9c, 0x0b, 0xf0, 0x75, 0xe9, 0xeb, 0x59, 0xfd, 0xde, 0xa5, + 0xac, 0xe6, 0x5d, 0x80, 0x93, 0x5c, 0xfa, 0xec, 0x93, 0x0e, 0xa5, 0x2b, 0x5d, 0x50, 0x15, 0x0c, + 0xeb, 0xd0, 0xdd, 0xd9, 0x77, 0x5a, 0xc7, 0x96, 0xdb, 0xda, 0xdf, 0xf3, 0xdc, 0xf7, 0x07, 0xb6, + 0x77, 0xb8, 0xd7, 0x3e, 0xb0, 0x37, 0x5b, 0xdb, 0x2d, 0x7b, 0x6b, 0x59, 0x43, 0x6b, 0xf0, 0x70, + 0x0e, 0xb3, 0x65, 0xef, 0xda, 0x6f, 0x2d, 0xd7, 0x5e, 0xd6, 0xd1, 0x63, 0x78, 0x34, 0x57, 0x92, + 0x23, 0x4b, 0x0b, 0x10, 0xc7, 0xce, 0x91, 0x42, 0x73, 0xfb, 0xcb, 0xd4, 0xd0, 0xcf, 0xa7, 0x86, + 0xfe, 0x73, 0x6a, 0xe8, 0x1f, 0x67, 0x86, 0x76, 0x3e, 0x33, 0xb4, 0xef, 0x33, 0x43, 0x3b, 0x7e, + 0xf1, 0xdf, 0xcd, 0x1a, 0xe7, 0x3f, 0x52, 0xba, 0x63, 0x9d, 0x9b, 0xe9, 0x62, 0xbf, 0xfc, 0x1d, + 0x00, 0x00, 0xff, 0xff, 0xbd, 0xd5, 0x4d, 0xf3, 0x67, 0x03, 0x00, 0x00, } func (m *StakeAuthorization) Marshal() (dAtA []byte, err error) { diff --git a/x/staking/types/staking.pb.go b/x/staking/types/staking.pb.go index 2d33f2061bf1..fbe9e8414564 100644 --- a/x/staking/types/staking.pb.go +++ b/x/staking/types/staking.pb.go @@ -1263,627 +1263,626 @@ func (this *Pool) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_ func StakingDescription() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { d := &github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet{} var gzipped = []byte{ - // 9915 bytes of a gzipped FileDescriptorSet - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x7d, 0x6d, 0x70, 0x5c, 0xd7, - 0x75, 0x18, 0xde, 0x7e, 0x00, 0xbb, 0x07, 0x0b, 0x60, 0x71, 0x01, 0x52, 0xcb, 0x25, 0x05, 0x40, - 0x4f, 0xb2, 0x44, 0x51, 0x12, 0x28, 0x51, 0xe2, 0xd7, 0xd2, 0xb6, 0x8c, 0x05, 0x96, 0x20, 0x44, - 0x7c, 0xe9, 0x01, 0xa0, 0x64, 0x39, 0xc9, 0xce, 0xc3, 0xee, 0xc5, 0xe2, 0x09, 0xbb, 0xef, 0x3d, - 0xbf, 0xf7, 0x96, 0x22, 0xe8, 0x3a, 0x95, 0xed, 0xd4, 0x95, 0xd9, 0xb4, 0x75, 0xea, 0x4e, 0x62, - 0x3b, 0xa6, 0x2b, 0xc7, 0xa9, 0x9d, 0xd8, 0x49, 0x6b, 0xc7, 0x8a, 0xdb, 0x34, 0x9d, 0xd4, 0xee, - 0x4c, 0x1a, 0xdb, 0x3f, 0x3a, 0xb6, 0x9b, 0x69, 0xe2, 0x8c, 0x4b, 0xa7, 0xb2, 0x27, 0x71, 0x5d, - 0xb7, 0x71, 0x59, 0xf7, 0x6b, 0x3c, 0x9d, 0xc9, 0xdc, 0xaf, 0xf7, 0xb5, 0x1f, 0x6f, 0x01, 0x92, - 0xb2, 0xe2, 0xf1, 0x2f, 0xec, 0xbd, 0xf7, 0x9c, 0x73, 0xcf, 0x3d, 0xe7, 0xdc, 0x73, 0xce, 0xfd, - 0x7a, 0x80, 0xcf, 0x9e, 0x83, 0xa9, 0x9a, 0x61, 0xd4, 0xea, 0xf8, 0xb8, 0x69, 0x19, 0x8e, 0xb1, - 0xd9, 0xdc, 0x3a, 0x5e, 0xc5, 0x76, 0xc5, 0xd2, 0x4c, 0xc7, 0xb0, 0xa6, 0x69, 0x1d, 0x1a, 0x61, - 0x10, 0xd3, 0x02, 0x42, 0x5e, 0x82, 0xd1, 0xf3, 0x5a, 0x1d, 0xcf, 0xb9, 0x80, 0x6b, 0xd8, 0x41, - 0x67, 0x20, 0xb1, 0xa5, 0xd5, 0x71, 0x4e, 0x9a, 0x8a, 0x1f, 0x1d, 0x3c, 0x71, 0xdf, 0x74, 0x08, - 0x69, 0x3a, 0x88, 0xb1, 0x4a, 0xaa, 0x15, 0x8a, 0x21, 0x7f, 0x27, 0x01, 0x63, 0x6d, 0x5a, 0x11, - 0x82, 0x84, 0xae, 0x36, 0x08, 0x45, 0xe9, 0x68, 0x5a, 0xa1, 0xbf, 0x51, 0x0e, 0x06, 0x4c, 0xb5, + // 9896 bytes of a gzipped FileDescriptorSet + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0xbd, 0x6b, 0x70, 0x24, 0xd7, + 0x75, 0x18, 0x8c, 0x9e, 0x07, 0x30, 0x73, 0x30, 0x00, 0x06, 0x17, 0xd8, 0xe5, 0xec, 0xec, 0x12, + 0x00, 0x9b, 0x14, 0xb9, 0x5c, 0x92, 0x58, 0x72, 0xc9, 0x7d, 0xcd, 0x4a, 0xa2, 0x30, 0xc0, 0x2c, + 0x16, 0x5c, 0xbc, 0xd8, 0x00, 0x96, 0x14, 0x65, 0x7b, 0xaa, 0x31, 0x73, 0x31, 0x68, 0x62, 0xa6, + 0xbb, 0xd5, 0xdd, 0xb3, 0x5c, 0x50, 0x9f, 0xfc, 0x51, 0x92, 0xa3, 0x50, 0x1b, 0x27, 0x91, 0xa3, + 0x94, 0x2d, 0xc9, 0x5a, 0x85, 0xb2, 0x1c, 0xc9, 0x96, 0xec, 0x44, 0xb2, 0x68, 0x25, 0x8e, 0x53, + 0x8e, 0x94, 0x2a, 0xc7, 0x92, 0x7e, 0xa4, 0x24, 0xc7, 0x15, 0x5b, 0x2e, 0x65, 0xe5, 0x50, 0x2a, + 0x5b, 0x51, 0x94, 0x58, 0xd9, 0x28, 0xaf, 0x52, 0xa5, 0x2a, 0x75, 0x5f, 0xfd, 0x9a, 0x47, 0x0f, + 0xb0, 0x58, 0x4a, 0x56, 0xe9, 0x17, 0xe6, 0xde, 0x7b, 0xce, 0xb9, 0xe7, 0x9e, 0x7b, 0x5e, 0xf7, + 0xd5, 0x80, 0xcf, 0x5e, 0x80, 0xa9, 0x9a, 0x61, 0xd4, 0xea, 0xf8, 0xa4, 0x69, 0x19, 0x8e, 0xb1, + 0xd9, 0xdc, 0x3a, 0x59, 0xc5, 0x76, 0xc5, 0xd2, 0x4c, 0xc7, 0xb0, 0xa6, 0x69, 0x1d, 0x1a, 0x61, + 0x10, 0xd3, 0x02, 0x42, 0x5e, 0x82, 0xd1, 0x8b, 0x5a, 0x1d, 0xcf, 0xb9, 0x80, 0x6b, 0xd8, 0x41, + 0xe7, 0x20, 0xb1, 0xa5, 0xd5, 0x71, 0x4e, 0x9a, 0x8a, 0x1f, 0x1f, 0x3c, 0x75, 0xdf, 0x74, 0x08, + 0x69, 0x3a, 0x88, 0xb1, 0x4a, 0xaa, 0x15, 0x8a, 0x21, 0x7f, 0x3b, 0x01, 0x63, 0x6d, 0x5a, 0x11, + 0x82, 0x84, 0xae, 0x36, 0x08, 0x45, 0xe9, 0x78, 0x5a, 0xa1, 0xbf, 0x51, 0x0e, 0x06, 0x4c, 0xb5, 0xb2, 0xa3, 0xd6, 0x70, 0x2e, 0x46, 0xab, 0x45, 0x11, 0x4d, 0x00, 0x54, 0xb1, 0x89, 0xf5, 0x2a, - 0xd6, 0x2b, 0xbb, 0xb9, 0xf8, 0x54, 0xfc, 0x68, 0x5a, 0xf1, 0xd5, 0xa0, 0x87, 0x60, 0xd4, 0x6c, - 0x6e, 0xd6, 0xb5, 0x4a, 0xd9, 0x07, 0x06, 0x53, 0xf1, 0xa3, 0x49, 0x25, 0xcb, 0x1a, 0xe6, 0x3c, + 0xd6, 0x2b, 0xbb, 0xb9, 0xf8, 0x54, 0xfc, 0x78, 0x5a, 0xf1, 0xd5, 0xa0, 0x87, 0x60, 0xd4, 0x6c, + 0x6e, 0xd6, 0xb5, 0x4a, 0xd9, 0x07, 0x06, 0x53, 0xf1, 0xe3, 0x49, 0x25, 0xcb, 0x1a, 0xe6, 0x3c, 0xe0, 0x07, 0x60, 0xe4, 0x05, 0xac, 0xee, 0xf8, 0x41, 0x07, 0x29, 0xe8, 0x30, 0xa9, 0xf6, 0x01, 0xce, 0x42, 0xa6, 0x81, 0x6d, 0x5b, 0xad, 0xe1, 0xb2, 0xb3, 0x6b, 0xe2, 0x5c, 0x82, 0x8e, 0x7e, 0xaa, 0x65, 0xf4, 0xe1, 0x91, 0x0f, 0x72, 0xac, 0xf5, 0x5d, 0x13, 0xa3, 0x19, 0x48, 0x63, 0xbd, 0xd9, 0x60, 0x14, 0x92, 0x1d, 0xe4, 0x57, 0xd2, 0x9b, 0x8d, 0x30, 0x95, 0x14, 0x41, 0xe3, 0x24, - 0x06, 0x6c, 0x6c, 0x5d, 0xd6, 0x2a, 0x38, 0xd7, 0x4f, 0x09, 0x3c, 0xd0, 0x42, 0x60, 0x8d, 0xb5, - 0x87, 0x69, 0x08, 0x3c, 0x34, 0x0b, 0x69, 0x7c, 0xc5, 0xc1, 0xba, 0xad, 0x19, 0x7a, 0x6e, 0x80, - 0x12, 0x79, 0x43, 0x1b, 0x2d, 0xe2, 0x7a, 0x35, 0x4c, 0xc2, 0xc3, 0x43, 0xa7, 0x60, 0xc0, 0x30, - 0x1d, 0xcd, 0xd0, 0xed, 0x5c, 0x6a, 0x4a, 0x3a, 0x3a, 0x78, 0xe2, 0x48, 0x5b, 0x43, 0x58, 0x61, - 0x30, 0x8a, 0x00, 0x46, 0x0b, 0x90, 0xb5, 0x8d, 0xa6, 0x55, 0xc1, 0xe5, 0x8a, 0x51, 0xc5, 0x65, - 0x4d, 0xdf, 0x32, 0x72, 0x69, 0x4a, 0x60, 0xb2, 0x75, 0x20, 0x14, 0x70, 0xd6, 0xa8, 0xe2, 0x05, - 0x7d, 0xcb, 0x50, 0x86, 0xed, 0x40, 0x19, 0x1d, 0x84, 0x7e, 0x7b, 0x57, 0x77, 0xd4, 0x2b, 0xb9, - 0x0c, 0xb5, 0x10, 0x5e, 0x92, 0x7f, 0xaf, 0x1f, 0x46, 0x7a, 0x31, 0xb1, 0x73, 0x90, 0xdc, 0x22, - 0xa3, 0xcc, 0xc5, 0xf6, 0x22, 0x03, 0x86, 0x13, 0x14, 0x62, 0xff, 0x3e, 0x85, 0x38, 0x03, 0x83, - 0x3a, 0xb6, 0x1d, 0x5c, 0x65, 0x16, 0x11, 0xef, 0xd1, 0xa6, 0x80, 0x21, 0xb5, 0x9a, 0x54, 0x62, - 0x5f, 0x26, 0xf5, 0x2c, 0x8c, 0xb8, 0x2c, 0x95, 0x2d, 0x55, 0xaf, 0x09, 0xdb, 0x3c, 0x1e, 0xc5, - 0xc9, 0x74, 0x49, 0xe0, 0x29, 0x04, 0x4d, 0x19, 0xc6, 0x81, 0x32, 0x9a, 0x03, 0x30, 0x74, 0x6c, - 0x6c, 0x95, 0xab, 0xb8, 0x52, 0xcf, 0xa5, 0x3a, 0x48, 0x69, 0x85, 0x80, 0xb4, 0x48, 0xc9, 0x60, - 0xb5, 0x95, 0x3a, 0x3a, 0xeb, 0x99, 0xda, 0x40, 0x07, 0x4b, 0x59, 0x62, 0x93, 0xac, 0xc5, 0xda, - 0x36, 0x60, 0xd8, 0xc2, 0xc4, 0xee, 0x71, 0x95, 0x8f, 0x2c, 0x4d, 0x99, 0x98, 0x8e, 0x1c, 0x99, - 0xc2, 0xd1, 0xd8, 0xc0, 0x86, 0x2c, 0x7f, 0x11, 0xdd, 0x0b, 0x6e, 0x45, 0x99, 0x9a, 0x15, 0x50, - 0x2f, 0x94, 0x11, 0x95, 0xcb, 0x6a, 0x03, 0xe7, 0xaf, 0xc2, 0x70, 0x50, 0x3c, 0x68, 0x1c, 0x92, - 0xb6, 0xa3, 0x5a, 0x0e, 0xb5, 0xc2, 0xa4, 0xc2, 0x0a, 0x28, 0x0b, 0x71, 0xac, 0x57, 0xa9, 0x97, - 0x4b, 0x2a, 0xe4, 0x27, 0x7a, 0x8b, 0x37, 0xe0, 0x38, 0x1d, 0xf0, 0xfd, 0xad, 0x1a, 0x0d, 0x50, - 0x0e, 0x8f, 0x3b, 0x7f, 0x1a, 0x86, 0x02, 0x03, 0xe8, 0xb5, 0x6b, 0xf9, 0x6f, 0xc1, 0x81, 0xb6, - 0xa4, 0xd1, 0xb3, 0x30, 0xde, 0xd4, 0x35, 0xdd, 0xc1, 0x96, 0x69, 0x61, 0x62, 0xb1, 0xac, 0xab, - 0xdc, 0x5f, 0x0e, 0x74, 0xb0, 0xb9, 0x0d, 0x3f, 0x34, 0xa3, 0xa2, 0x8c, 0x35, 0x5b, 0x2b, 0x8f, - 0xa5, 0x53, 0xdf, 0x1d, 0xc8, 0xbe, 0xf8, 0xe2, 0x8b, 0x2f, 0xc6, 0xe4, 0x2f, 0xf6, 0xc3, 0x78, - 0xbb, 0x39, 0xd3, 0x76, 0xfa, 0x1e, 0x84, 0x7e, 0xbd, 0xd9, 0xd8, 0xc4, 0x16, 0x15, 0x52, 0x52, - 0xe1, 0x25, 0x34, 0x03, 0xc9, 0xba, 0xba, 0x89, 0xeb, 0xb9, 0xc4, 0x94, 0x74, 0x74, 0xf8, 0xc4, - 0x43, 0x3d, 0xcd, 0xca, 0xe9, 0x45, 0x82, 0xa2, 0x30, 0x4c, 0xf4, 0x66, 0x48, 0x70, 0x17, 0x4d, - 0x28, 0x1c, 0xeb, 0x8d, 0x02, 0x99, 0x4b, 0x0a, 0xc5, 0x43, 0x87, 0x21, 0x4d, 0xfe, 0x32, 0xdb, - 0xe8, 0xa7, 0x3c, 0xa7, 0x48, 0x05, 0xb1, 0x0b, 0x94, 0x87, 0x14, 0x9d, 0x26, 0x55, 0x2c, 0x42, - 0x9b, 0x5b, 0x26, 0x86, 0x55, 0xc5, 0x5b, 0x6a, 0xb3, 0xee, 0x94, 0x2f, 0xab, 0xf5, 0x26, 0xa6, - 0x06, 0x9f, 0x56, 0x32, 0xbc, 0xf2, 0x12, 0xa9, 0x43, 0x93, 0x30, 0xc8, 0x66, 0x95, 0xa6, 0x57, - 0xf1, 0x15, 0xea, 0x3d, 0x93, 0x0a, 0x9b, 0x68, 0x0b, 0xa4, 0x86, 0x74, 0xff, 0xbc, 0x6d, 0xe8, - 0xc2, 0x34, 0x69, 0x17, 0xa4, 0x82, 0x76, 0x7f, 0x3a, 0xec, 0xb8, 0xef, 0x6e, 0x3f, 0xbc, 0x96, - 0xb9, 0xf4, 0x00, 0x8c, 0x50, 0x88, 0xc7, 0xb9, 0xea, 0xd5, 0x7a, 0x6e, 0x74, 0x4a, 0x3a, 0x9a, - 0x52, 0x86, 0x59, 0xf5, 0x0a, 0xaf, 0x95, 0x3f, 0x1f, 0x83, 0x04, 0x75, 0x2c, 0x23, 0x30, 0xb8, - 0xfe, 0xd6, 0xd5, 0x52, 0x79, 0x6e, 0x65, 0xa3, 0xb8, 0x58, 0xca, 0x4a, 0x68, 0x18, 0x80, 0x56, - 0x9c, 0x5f, 0x5c, 0x99, 0x59, 0xcf, 0xc6, 0xdc, 0xf2, 0xc2, 0xf2, 0xfa, 0xa9, 0x27, 0xb2, 0x71, - 0x17, 0x61, 0x83, 0x55, 0x24, 0xfc, 0x00, 0x8f, 0x9f, 0xc8, 0x26, 0x51, 0x16, 0x32, 0x8c, 0xc0, - 0xc2, 0xb3, 0xa5, 0xb9, 0x53, 0x4f, 0x64, 0xfb, 0x83, 0x35, 0x8f, 0x9f, 0xc8, 0x0e, 0xa0, 0x21, - 0x48, 0xd3, 0x9a, 0xe2, 0xca, 0xca, 0x62, 0x36, 0xe5, 0xd2, 0x5c, 0x5b, 0x57, 0x16, 0x96, 0xe7, - 0xb3, 0x69, 0x97, 0xe6, 0xbc, 0xb2, 0xb2, 0xb1, 0x9a, 0x05, 0x97, 0xc2, 0x52, 0x69, 0x6d, 0x6d, - 0x66, 0xbe, 0x94, 0x1d, 0x74, 0x21, 0x8a, 0x6f, 0x5d, 0x2f, 0xad, 0x65, 0x33, 0x01, 0xb6, 0x1e, - 0x3f, 0x91, 0x1d, 0x72, 0xbb, 0x28, 0x2d, 0x6f, 0x2c, 0x65, 0x87, 0xd1, 0x28, 0x0c, 0xb1, 0x2e, - 0x04, 0x13, 0x23, 0xa1, 0xaa, 0x53, 0x4f, 0x64, 0xb3, 0x1e, 0x23, 0x8c, 0xca, 0x68, 0xa0, 0xe2, - 0xd4, 0x13, 0x59, 0x24, 0xcf, 0x42, 0x92, 0x9a, 0x21, 0x42, 0x30, 0xbc, 0x38, 0x53, 0x2c, 0x2d, - 0x96, 0x57, 0x56, 0xd7, 0x17, 0x56, 0x96, 0x67, 0x16, 0xb3, 0x92, 0x57, 0xa7, 0x94, 0x9e, 0xde, - 0x58, 0x50, 0x4a, 0x73, 0xd9, 0x98, 0xbf, 0x6e, 0xb5, 0x34, 0xb3, 0x5e, 0x9a, 0xcb, 0xc6, 0xe5, - 0x0a, 0x8c, 0xb7, 0x73, 0xa8, 0x6d, 0xa7, 0x90, 0xcf, 0x16, 0x62, 0x1d, 0x6c, 0x81, 0xd2, 0x0a, - 0xdb, 0x82, 0xfc, 0xed, 0x18, 0x8c, 0xb5, 0x09, 0x2a, 0x6d, 0x3b, 0x79, 0x12, 0x92, 0xcc, 0x96, - 0x59, 0x98, 0x7d, 0xb0, 0x6d, 0x74, 0xa2, 0x96, 0xdd, 0x12, 0x6a, 0x29, 0x9e, 0x3f, 0xd5, 0x88, - 0x77, 0x48, 0x35, 0x08, 0x89, 0x16, 0x83, 0xfd, 0xd9, 0x16, 0xe7, 0xcf, 0xe2, 0xe3, 0xa9, 0x5e, - 0xe2, 0x23, 0xad, 0xdb, 0x5b, 0x10, 0x48, 0xb6, 0x09, 0x02, 0xe7, 0x60, 0xb4, 0x85, 0x50, 0xcf, - 0xce, 0xf8, 0x3d, 0x12, 0xe4, 0x3a, 0x09, 0x27, 0xc2, 0x25, 0xc6, 0x02, 0x2e, 0xf1, 0x5c, 0x58, - 0x82, 0xf7, 0x74, 0x56, 0x42, 0x8b, 0xae, 0x3f, 0x29, 0xc1, 0xc1, 0xf6, 0x29, 0x65, 0x5b, 0x1e, - 0xde, 0x0c, 0xfd, 0x0d, 0xec, 0x6c, 0x1b, 0x22, 0xad, 0xba, 0xbf, 0x4d, 0xb0, 0x26, 0xcd, 0x61, - 0x65, 0x73, 0x2c, 0x7f, 0xb4, 0x8f, 0x77, 0xca, 0x0b, 0x19, 0x37, 0x2d, 0x9c, 0xbe, 0x2f, 0x06, - 0x07, 0xda, 0x12, 0x6f, 0xcb, 0xe8, 0xdd, 0x00, 0x9a, 0x6e, 0x36, 0x1d, 0x96, 0x3a, 0x31, 0x4f, - 0x9c, 0xa6, 0x35, 0xd4, 0x79, 0x11, 0x2f, 0xdb, 0x74, 0xdc, 0xf6, 0x38, 0x6d, 0x07, 0x56, 0x45, - 0x01, 0xce, 0x78, 0x8c, 0x26, 0x28, 0xa3, 0x13, 0x1d, 0x46, 0xda, 0x62, 0x98, 0x8f, 0x42, 0xb6, - 0x52, 0xd7, 0xb0, 0xee, 0x94, 0x6d, 0xc7, 0xc2, 0x6a, 0x43, 0xd3, 0x6b, 0x34, 0xd4, 0xa4, 0x0a, - 0xc9, 0x2d, 0xb5, 0x6e, 0x63, 0x65, 0x84, 0x35, 0xaf, 0x89, 0x56, 0x82, 0x41, 0x0d, 0xc8, 0xf2, - 0x61, 0xf4, 0x07, 0x30, 0x58, 0xb3, 0x8b, 0x21, 0xff, 0x52, 0x1a, 0x06, 0x7d, 0x09, 0x38, 0xba, - 0x07, 0x32, 0xcf, 0xab, 0x97, 0xd5, 0xb2, 0x58, 0x54, 0x31, 0x49, 0x0c, 0x92, 0xba, 0x55, 0xbe, - 0xb0, 0x7a, 0x14, 0xc6, 0x29, 0x88, 0xd1, 0x74, 0xb0, 0x55, 0xae, 0xd4, 0x55, 0xdb, 0xa6, 0x42, - 0x4b, 0x51, 0x50, 0x44, 0xda, 0x56, 0x48, 0xd3, 0xac, 0x68, 0x41, 0x27, 0x61, 0x8c, 0x62, 0x34, - 0x9a, 0x75, 0x47, 0x33, 0xeb, 0xb8, 0x4c, 0x96, 0x79, 0x36, 0x0d, 0x39, 0x2e, 0x67, 0xa3, 0x04, - 0x62, 0x89, 0x03, 0x10, 0x8e, 0x6c, 0x34, 0x07, 0x77, 0x53, 0xb4, 0x1a, 0xd6, 0xb1, 0xa5, 0x3a, - 0xb8, 0x8c, 0xdf, 0xde, 0x54, 0xeb, 0x76, 0x59, 0xd5, 0xab, 0xe5, 0x6d, 0xd5, 0xde, 0xce, 0x8d, - 0x13, 0x02, 0xc5, 0x58, 0x4e, 0x52, 0x0e, 0x11, 0xc0, 0x79, 0x0e, 0x57, 0xa2, 0x60, 0x33, 0x7a, - 0xf5, 0x82, 0x6a, 0x6f, 0xa3, 0x02, 0x1c, 0xa4, 0x54, 0x6c, 0xc7, 0xd2, 0xf4, 0x5a, 0xb9, 0xb2, - 0x8d, 0x2b, 0x3b, 0xe5, 0xa6, 0xb3, 0x75, 0x26, 0x77, 0xd8, 0xdf, 0x3f, 0xe5, 0x70, 0x8d, 0xc2, - 0xcc, 0x12, 0x90, 0x0d, 0x67, 0xeb, 0x0c, 0x5a, 0x83, 0x0c, 0x51, 0x46, 0x43, 0xbb, 0x8a, 0xcb, + 0x06, 0x6c, 0x6c, 0x5d, 0xd5, 0x2a, 0x38, 0xd7, 0x4f, 0x09, 0x3c, 0xd0, 0x42, 0x60, 0x8d, 0xb5, + 0x87, 0x69, 0x08, 0x3c, 0x34, 0x0b, 0x69, 0x7c, 0xcd, 0xc1, 0xba, 0xad, 0x19, 0x7a, 0x6e, 0x80, + 0x12, 0x79, 0x43, 0x9b, 0x59, 0xc4, 0xf5, 0x6a, 0x98, 0x84, 0x87, 0x87, 0xce, 0xc0, 0x80, 0x61, + 0x3a, 0x9a, 0xa1, 0xdb, 0xb9, 0xd4, 0x94, 0x74, 0x7c, 0xf0, 0xd4, 0xb1, 0xb6, 0x8a, 0xb0, 0xc2, + 0x60, 0x14, 0x01, 0x8c, 0x16, 0x20, 0x6b, 0x1b, 0x4d, 0xab, 0x82, 0xcb, 0x15, 0xa3, 0x8a, 0xcb, + 0x9a, 0xbe, 0x65, 0xe4, 0xd2, 0x94, 0xc0, 0x64, 0xeb, 0x40, 0x28, 0xe0, 0xac, 0x51, 0xc5, 0x0b, + 0xfa, 0x96, 0xa1, 0x0c, 0xdb, 0x81, 0x32, 0x3a, 0x0c, 0xfd, 0xf6, 0xae, 0xee, 0xa8, 0xd7, 0x72, + 0x19, 0xaa, 0x21, 0xbc, 0x24, 0xff, 0x5e, 0x3f, 0x8c, 0xf4, 0xa2, 0x62, 0x17, 0x20, 0xb9, 0x45, + 0x46, 0x99, 0x8b, 0xed, 0x45, 0x06, 0x0c, 0x27, 0x28, 0xc4, 0xfe, 0x7d, 0x0a, 0x71, 0x06, 0x06, + 0x75, 0x6c, 0x3b, 0xb8, 0xca, 0x34, 0x22, 0xde, 0xa3, 0x4e, 0x01, 0x43, 0x6a, 0x55, 0xa9, 0xc4, + 0xbe, 0x54, 0xea, 0x59, 0x18, 0x71, 0x59, 0x2a, 0x5b, 0xaa, 0x5e, 0x13, 0xba, 0x79, 0x32, 0x8a, + 0x93, 0xe9, 0x92, 0xc0, 0x53, 0x08, 0x9a, 0x32, 0x8c, 0x03, 0x65, 0x34, 0x07, 0x60, 0xe8, 0xd8, + 0xd8, 0x2a, 0x57, 0x71, 0xa5, 0x9e, 0x4b, 0x75, 0x90, 0xd2, 0x0a, 0x01, 0x69, 0x91, 0x92, 0xc1, + 0x6a, 0x2b, 0x75, 0x74, 0xde, 0x53, 0xb5, 0x81, 0x0e, 0x9a, 0xb2, 0xc4, 0x8c, 0xac, 0x45, 0xdb, + 0x36, 0x60, 0xd8, 0xc2, 0x44, 0xef, 0x71, 0x95, 0x8f, 0x2c, 0x4d, 0x99, 0x98, 0x8e, 0x1c, 0x99, + 0xc2, 0xd1, 0xd8, 0xc0, 0x86, 0x2c, 0x7f, 0x11, 0xdd, 0x0b, 0x6e, 0x45, 0x99, 0xaa, 0x15, 0x50, + 0x2f, 0x94, 0x11, 0x95, 0xcb, 0x6a, 0x03, 0xe7, 0x5f, 0x84, 0xe1, 0xa0, 0x78, 0xd0, 0x38, 0x24, + 0x6d, 0x47, 0xb5, 0x1c, 0xaa, 0x85, 0x49, 0x85, 0x15, 0x50, 0x16, 0xe2, 0x58, 0xaf, 0x52, 0x2f, + 0x97, 0x54, 0xc8, 0x4f, 0xf4, 0x16, 0x6f, 0xc0, 0x71, 0x3a, 0xe0, 0xfb, 0x5b, 0x67, 0x34, 0x40, + 0x39, 0x3c, 0xee, 0xfc, 0x59, 0x18, 0x0a, 0x0c, 0xa0, 0xd7, 0xae, 0xe5, 0xff, 0x0f, 0x0e, 0xb5, + 0x25, 0x8d, 0x9e, 0x85, 0xf1, 0xa6, 0xae, 0xe9, 0x0e, 0xb6, 0x4c, 0x0b, 0x13, 0x8d, 0x65, 0x5d, + 0xe5, 0xfe, 0x6a, 0xa0, 0x83, 0xce, 0x6d, 0xf8, 0xa1, 0x19, 0x15, 0x65, 0xac, 0xd9, 0x5a, 0x79, + 0x22, 0x9d, 0xfa, 0xce, 0x40, 0xf6, 0xa5, 0x97, 0x5e, 0x7a, 0x29, 0x26, 0x7f, 0xb1, 0x1f, 0xc6, + 0xdb, 0xd9, 0x4c, 0x5b, 0xf3, 0x3d, 0x0c, 0xfd, 0x7a, 0xb3, 0xb1, 0x89, 0x2d, 0x2a, 0xa4, 0xa4, + 0xc2, 0x4b, 0x68, 0x06, 0x92, 0x75, 0x75, 0x13, 0xd7, 0x73, 0x89, 0x29, 0xe9, 0xf8, 0xf0, 0xa9, + 0x87, 0x7a, 0xb2, 0xca, 0xe9, 0x45, 0x82, 0xa2, 0x30, 0x4c, 0xf4, 0x66, 0x48, 0x70, 0x17, 0x4d, + 0x28, 0x9c, 0xe8, 0x8d, 0x02, 0xb1, 0x25, 0x85, 0xe2, 0xa1, 0xa3, 0x90, 0x26, 0x7f, 0x99, 0x6e, + 0xf4, 0x53, 0x9e, 0x53, 0xa4, 0x82, 0xe8, 0x05, 0xca, 0x43, 0x8a, 0x9a, 0x49, 0x15, 0x8b, 0xd0, + 0xe6, 0x96, 0x89, 0x62, 0x55, 0xf1, 0x96, 0xda, 0xac, 0x3b, 0xe5, 0xab, 0x6a, 0xbd, 0x89, 0xa9, + 0xc2, 0xa7, 0x95, 0x0c, 0xaf, 0xbc, 0x42, 0xea, 0xd0, 0x24, 0x0c, 0x32, 0xab, 0xd2, 0xf4, 0x2a, + 0xbe, 0x46, 0xbd, 0x67, 0x52, 0x61, 0x86, 0xb6, 0x40, 0x6a, 0x48, 0xf7, 0xcf, 0xdb, 0x86, 0x2e, + 0x54, 0x93, 0x76, 0x41, 0x2a, 0x68, 0xf7, 0x67, 0xc3, 0x8e, 0xfb, 0xee, 0xf6, 0xc3, 0x6b, 0xb1, + 0xa5, 0x07, 0x60, 0x84, 0x42, 0x3c, 0xce, 0xa7, 0x5e, 0xad, 0xe7, 0x46, 0xa7, 0xa4, 0xe3, 0x29, + 0x65, 0x98, 0x55, 0xaf, 0xf0, 0x5a, 0xf9, 0xf3, 0x31, 0x48, 0x50, 0xc7, 0x32, 0x02, 0x83, 0xeb, + 0x6f, 0x5d, 0x2d, 0x95, 0xe7, 0x56, 0x36, 0x8a, 0x8b, 0xa5, 0xac, 0x84, 0x86, 0x01, 0x68, 0xc5, + 0xc5, 0xc5, 0x95, 0x99, 0xf5, 0x6c, 0xcc, 0x2d, 0x2f, 0x2c, 0xaf, 0x9f, 0x79, 0x22, 0x1b, 0x77, + 0x11, 0x36, 0x58, 0x45, 0xc2, 0x0f, 0xf0, 0xf8, 0xa9, 0x6c, 0x12, 0x65, 0x21, 0xc3, 0x08, 0x2c, + 0x3c, 0x5b, 0x9a, 0x3b, 0xf3, 0x44, 0xb6, 0x3f, 0x58, 0xf3, 0xf8, 0xa9, 0xec, 0x00, 0x1a, 0x82, + 0x34, 0xad, 0x29, 0xae, 0xac, 0x2c, 0x66, 0x53, 0x2e, 0xcd, 0xb5, 0x75, 0x65, 0x61, 0x79, 0x3e, + 0x9b, 0x76, 0x69, 0xce, 0x2b, 0x2b, 0x1b, 0xab, 0x59, 0x70, 0x29, 0x2c, 0x95, 0xd6, 0xd6, 0x66, + 0xe6, 0x4b, 0xd9, 0x41, 0x17, 0xa2, 0xf8, 0xd6, 0xf5, 0xd2, 0x5a, 0x36, 0x13, 0x60, 0xeb, 0xf1, + 0x53, 0xd9, 0x21, 0xb7, 0x8b, 0xd2, 0xf2, 0xc6, 0x52, 0x76, 0x18, 0x8d, 0xc2, 0x10, 0xeb, 0x42, + 0x30, 0x31, 0x12, 0xaa, 0x3a, 0xf3, 0x44, 0x36, 0xeb, 0x31, 0xc2, 0xa8, 0x8c, 0x06, 0x2a, 0xce, + 0x3c, 0x91, 0x45, 0xf2, 0x2c, 0x24, 0xa9, 0x1a, 0x22, 0x04, 0xc3, 0x8b, 0x33, 0xc5, 0xd2, 0x62, + 0x79, 0x65, 0x75, 0x7d, 0x61, 0x65, 0x79, 0x66, 0x31, 0x2b, 0x79, 0x75, 0x4a, 0xe9, 0xe9, 0x8d, + 0x05, 0xa5, 0x34, 0x97, 0x8d, 0xf9, 0xeb, 0x56, 0x4b, 0x33, 0xeb, 0xa5, 0xb9, 0x6c, 0x5c, 0xae, + 0xc0, 0x78, 0x3b, 0x87, 0xda, 0xd6, 0x84, 0x7c, 0xba, 0x10, 0xeb, 0xa0, 0x0b, 0x94, 0x56, 0x58, + 0x17, 0xe4, 0x6f, 0xc5, 0x60, 0xac, 0x4d, 0x50, 0x69, 0xdb, 0xc9, 0x93, 0x90, 0x64, 0xba, 0xcc, + 0xc2, 0xec, 0x83, 0x6d, 0xa3, 0x13, 0xd5, 0xec, 0x96, 0x50, 0x4b, 0xf1, 0xfc, 0xa9, 0x46, 0xbc, + 0x43, 0xaa, 0x41, 0x48, 0xb4, 0x28, 0xec, 0xcf, 0xb6, 0x38, 0x7f, 0x16, 0x1f, 0xcf, 0xf4, 0x12, + 0x1f, 0x69, 0xdd, 0xde, 0x82, 0x40, 0xb2, 0x4d, 0x10, 0xb8, 0x00, 0xa3, 0x2d, 0x84, 0x7a, 0x76, + 0xc6, 0xef, 0x91, 0x20, 0xd7, 0x49, 0x38, 0x11, 0x2e, 0x31, 0x16, 0x70, 0x89, 0x17, 0xc2, 0x12, + 0xbc, 0xa7, 0xf3, 0x24, 0xb4, 0xcc, 0xf5, 0x27, 0x25, 0x38, 0xdc, 0x3e, 0xa5, 0x6c, 0xcb, 0xc3, + 0x9b, 0xa1, 0xbf, 0x81, 0x9d, 0x6d, 0x43, 0xa4, 0x55, 0xf7, 0xb7, 0x09, 0xd6, 0xa4, 0x39, 0x3c, + 0xd9, 0x1c, 0xcb, 0x1f, 0xed, 0xe3, 0x9d, 0xf2, 0x42, 0xc6, 0x4d, 0x0b, 0xa7, 0xef, 0x8b, 0xc1, + 0xa1, 0xb6, 0xc4, 0xdb, 0x32, 0x7a, 0x37, 0x80, 0xa6, 0x9b, 0x4d, 0x87, 0xa5, 0x4e, 0xcc, 0x13, + 0xa7, 0x69, 0x0d, 0x75, 0x5e, 0xc4, 0xcb, 0x36, 0x1d, 0xb7, 0x3d, 0x4e, 0xdb, 0x81, 0x55, 0x51, + 0x80, 0x73, 0x1e, 0xa3, 0x09, 0xca, 0xe8, 0x44, 0x87, 0x91, 0xb6, 0x28, 0xe6, 0xa3, 0x90, 0xad, + 0xd4, 0x35, 0xac, 0x3b, 0x65, 0xdb, 0xb1, 0xb0, 0xda, 0xd0, 0xf4, 0x1a, 0x0d, 0x35, 0xa9, 0x42, + 0x72, 0x4b, 0xad, 0xdb, 0x58, 0x19, 0x61, 0xcd, 0x6b, 0xa2, 0x95, 0x60, 0x50, 0x05, 0xb2, 0x7c, + 0x18, 0xfd, 0x01, 0x0c, 0xd6, 0xec, 0x62, 0xc8, 0xbf, 0x94, 0x86, 0x41, 0x5f, 0x02, 0x8e, 0xee, + 0x81, 0xcc, 0xf3, 0xea, 0x55, 0xb5, 0x2c, 0x16, 0x55, 0x4c, 0x12, 0x83, 0xa4, 0x6e, 0x95, 0x2f, + 0xac, 0x1e, 0x85, 0x71, 0x0a, 0x62, 0x34, 0x1d, 0x6c, 0x95, 0x2b, 0x75, 0xd5, 0xb6, 0xa9, 0xd0, + 0x52, 0x14, 0x14, 0x91, 0xb6, 0x15, 0xd2, 0x34, 0x2b, 0x5a, 0xd0, 0x69, 0x18, 0xa3, 0x18, 0x8d, + 0x66, 0xdd, 0xd1, 0xcc, 0x3a, 0x2e, 0x93, 0x65, 0x9e, 0x4d, 0x43, 0x8e, 0xcb, 0xd9, 0x28, 0x81, + 0x58, 0xe2, 0x00, 0x84, 0x23, 0x1b, 0xcd, 0xc1, 0xdd, 0x14, 0xad, 0x86, 0x75, 0x6c, 0xa9, 0x0e, + 0x2e, 0xe3, 0xb7, 0x37, 0xd5, 0xba, 0x5d, 0x56, 0xf5, 0x6a, 0x79, 0x5b, 0xb5, 0xb7, 0x73, 0xe3, + 0x84, 0x40, 0x31, 0x96, 0x93, 0x94, 0x23, 0x04, 0x70, 0x9e, 0xc3, 0x95, 0x28, 0xd8, 0x8c, 0x5e, + 0xbd, 0xa4, 0xda, 0xdb, 0xa8, 0x00, 0x87, 0x29, 0x15, 0xdb, 0xb1, 0x34, 0xbd, 0x56, 0xae, 0x6c, + 0xe3, 0xca, 0x4e, 0xb9, 0xe9, 0x6c, 0x9d, 0xcb, 0x1d, 0xf5, 0xf7, 0x4f, 0x39, 0x5c, 0xa3, 0x30, + 0xb3, 0x04, 0x64, 0xc3, 0xd9, 0x3a, 0x87, 0xd6, 0x20, 0x43, 0x26, 0xa3, 0xa1, 0xbd, 0x88, 0xcb, 0x5b, 0x86, 0x45, 0x63, 0xe8, 0x70, 0x1b, 0xd7, 0xe4, 0x93, 0xe0, 0xf4, 0x0a, 0x47, 0x58, 0x32, - 0xaa, 0xb8, 0x90, 0x5c, 0x5b, 0x2d, 0x95, 0xe6, 0x94, 0x41, 0x41, 0xe5, 0xbc, 0x61, 0x11, 0x83, - 0xaa, 0x19, 0xae, 0x80, 0x07, 0x99, 0x41, 0xd5, 0x0c, 0x21, 0xde, 0x93, 0x30, 0x56, 0xa9, 0xb0, + 0xaa, 0xb8, 0x90, 0x5c, 0x5b, 0x2d, 0x95, 0xe6, 0x94, 0x41, 0x41, 0xe5, 0xa2, 0x61, 0x11, 0x85, + 0xaa, 0x19, 0xae, 0x80, 0x07, 0x99, 0x42, 0xd5, 0x0c, 0x21, 0xde, 0xd3, 0x30, 0x56, 0xa9, 0xb0, 0x31, 0x6b, 0x95, 0x32, 0x5f, 0x8c, 0xd9, 0xb9, 0x6c, 0x40, 0x58, 0x95, 0xca, 0x3c, 0x03, 0xe0, - 0x36, 0x6e, 0xa3, 0xb3, 0x70, 0xc0, 0x13, 0x96, 0x1f, 0x71, 0xb4, 0x65, 0x94, 0x61, 0xd4, 0x93, - 0x30, 0x66, 0xee, 0xb6, 0x22, 0xa2, 0x40, 0x8f, 0xe6, 0x6e, 0x18, 0xed, 0x34, 0x8c, 0x9b, 0xdb, - 0x66, 0x2b, 0xde, 0x31, 0x3f, 0x1e, 0x32, 0xb7, 0xcd, 0x30, 0xe2, 0x1b, 0xe8, 0xca, 0xdc, 0xc2, + 0x3a, 0x6e, 0xa3, 0xf3, 0x70, 0xc8, 0x13, 0x96, 0x1f, 0x71, 0xb4, 0x65, 0x94, 0x61, 0xd4, 0xd3, + 0x30, 0x66, 0xee, 0xb6, 0x22, 0xa2, 0x40, 0x8f, 0xe6, 0x6e, 0x18, 0xed, 0x2c, 0x8c, 0x9b, 0xdb, + 0x66, 0x2b, 0xde, 0x09, 0x3f, 0x1e, 0x32, 0xb7, 0xcd, 0x30, 0xe2, 0x1b, 0xe8, 0xca, 0xdc, 0xc2, 0x15, 0xd5, 0xc1, 0xd5, 0xdc, 0x5d, 0x7e, 0x70, 0x5f, 0x03, 0x9a, 0x86, 0x6c, 0xa5, 0x52, 0xc6, 0xba, 0xba, 0x59, 0xc7, 0x65, 0xd5, 0xc2, 0xba, 0x6a, 0xe7, 0x26, 0x29, 0x70, 0xc2, 0xb1, 0x9a, - 0x58, 0x19, 0xae, 0x54, 0x4a, 0xb4, 0x71, 0x86, 0xb6, 0xa1, 0x63, 0x30, 0x6a, 0x6c, 0x3e, 0x5f, - 0x61, 0x16, 0x59, 0x36, 0x2d, 0xbc, 0xa5, 0x5d, 0xc9, 0xdd, 0x47, 0xc5, 0x3b, 0x42, 0x1a, 0xa8, - 0x3d, 0xae, 0xd2, 0x6a, 0xf4, 0x20, 0x64, 0x2b, 0xf6, 0xb6, 0x6a, 0x99, 0xd4, 0x25, 0xdb, 0xa6, - 0x5a, 0xc1, 0xb9, 0x37, 0x30, 0x50, 0x56, 0xbf, 0x2c, 0xaa, 0xc9, 0x8c, 0xb0, 0x5f, 0xd0, 0xb6, - 0x1c, 0x41, 0xf1, 0x01, 0x36, 0x23, 0x68, 0x1d, 0xa7, 0x76, 0x14, 0xb2, 0x44, 0x12, 0x81, 0x8e, - 0x8f, 0x52, 0xb0, 0x61, 0x73, 0xdb, 0xf4, 0xf7, 0x7b, 0x2f, 0x0c, 0x11, 0x48, 0xaf, 0xd3, 0x07, - 0x59, 0xe2, 0x66, 0x6e, 0xfb, 0x7a, 0x7c, 0x02, 0x0e, 0x12, 0xa0, 0x06, 0x76, 0xd4, 0xaa, 0xea, - 0xa8, 0x3e, 0xe8, 0x87, 0x29, 0x34, 0x11, 0xfb, 0x12, 0x6f, 0x0c, 0xf0, 0x69, 0x35, 0x37, 0x77, - 0x5d, 0xc3, 0x7a, 0x84, 0xf1, 0x49, 0xea, 0x84, 0x69, 0xdd, 0xb1, 0xe4, 0x5c, 0x2e, 0x40, 0xc6, - 0x6f, 0xf7, 0x28, 0x0d, 0xcc, 0xf2, 0xb3, 0x12, 0x49, 0x82, 0x66, 0x57, 0xe6, 0x48, 0xfa, 0xf2, - 0x5c, 0x29, 0x1b, 0x23, 0x69, 0xd4, 0xe2, 0xc2, 0x7a, 0xa9, 0xac, 0x6c, 0x2c, 0xaf, 0x2f, 0x2c, - 0x95, 0xb2, 0x71, 0x5f, 0x62, 0xff, 0x54, 0x22, 0x75, 0x7f, 0xf6, 0x01, 0xf9, 0x6b, 0x31, 0x18, - 0x0e, 0xae, 0xd4, 0xd0, 0x1b, 0xe1, 0x2e, 0xb1, 0xad, 0x62, 0x63, 0xa7, 0xfc, 0x82, 0x66, 0xd1, - 0x09, 0xd9, 0x50, 0x59, 0x70, 0x74, 0xed, 0x67, 0x9c, 0x43, 0xad, 0x61, 0xe7, 0x19, 0xcd, 0x22, - 0xd3, 0xad, 0xa1, 0x3a, 0x68, 0x11, 0x26, 0x75, 0xa3, 0x6c, 0x3b, 0xaa, 0x5e, 0x55, 0xad, 0x6a, - 0xd9, 0xdb, 0xd0, 0x2a, 0xab, 0x95, 0x0a, 0xb6, 0x6d, 0x83, 0x05, 0x42, 0x97, 0xca, 0x11, 0xdd, - 0x58, 0xe3, 0xc0, 0x5e, 0x84, 0x98, 0xe1, 0xa0, 0x21, 0xf3, 0x8d, 0x77, 0x32, 0xdf, 0xc3, 0x90, - 0x6e, 0xa8, 0x66, 0x19, 0xeb, 0x8e, 0xb5, 0x4b, 0xf3, 0xf3, 0x94, 0x92, 0x6a, 0xa8, 0x66, 0x89, - 0x94, 0x5f, 0x93, 0x65, 0xd2, 0x53, 0x89, 0x54, 0x2a, 0x9b, 0x7e, 0x2a, 0x91, 0x4a, 0x67, 0x41, - 0x7e, 0x35, 0x0e, 0x19, 0x7f, 0xbe, 0x4e, 0x96, 0x3f, 0x15, 0x1a, 0xb1, 0x24, 0xea, 0xd3, 0xee, - 0xed, 0x9a, 0xdd, 0x4f, 0xcf, 0x92, 0x50, 0x56, 0xe8, 0x67, 0xc9, 0xb1, 0xc2, 0x30, 0x49, 0x1a, - 0x41, 0x8c, 0x0d, 0xb3, 0x64, 0x24, 0xa5, 0xf0, 0x12, 0x9a, 0x87, 0xfe, 0xe7, 0x6d, 0x4a, 0xbb, - 0x9f, 0xd2, 0xbe, 0xaf, 0x3b, 0xed, 0xa7, 0xd6, 0x28, 0xf1, 0xf4, 0x53, 0x6b, 0xe5, 0xe5, 0x15, - 0x65, 0x69, 0x66, 0x51, 0xe1, 0xe8, 0xe8, 0x10, 0x24, 0xea, 0xea, 0xd5, 0xdd, 0x60, 0xd0, 0xa3, - 0x55, 0xbd, 0x2a, 0xe1, 0x10, 0x24, 0x5e, 0xc0, 0xea, 0x4e, 0x30, 0xd4, 0xd0, 0xaa, 0x3b, 0x38, - 0x19, 0x8e, 0x43, 0x92, 0xca, 0x0b, 0x01, 0x70, 0x89, 0x65, 0xfb, 0x50, 0x0a, 0x12, 0xb3, 0x2b, - 0x0a, 0x99, 0x10, 0x59, 0xc8, 0xb0, 0xda, 0xf2, 0xea, 0x42, 0x69, 0xb6, 0x94, 0x8d, 0xc9, 0x27, - 0xa1, 0x9f, 0x09, 0x81, 0x4c, 0x16, 0x57, 0x0c, 0xd9, 0x3e, 0x5e, 0xe4, 0x34, 0x24, 0xd1, 0xba, - 0xb1, 0x54, 0x2c, 0x29, 0xd9, 0x58, 0x50, 0xd5, 0x89, 0x6c, 0x52, 0xb6, 0x21, 0xe3, 0xcf, 0xc3, - 0x5f, 0x9b, 0xc5, 0xf8, 0x17, 0x24, 0x18, 0xf4, 0xe5, 0xd5, 0x24, 0x21, 0x52, 0xeb, 0x75, 0xe3, - 0x85, 0xb2, 0x5a, 0xd7, 0x54, 0x9b, 0x9b, 0x06, 0xd0, 0xaa, 0x19, 0x52, 0xd3, 0xab, 0xea, 0x5e, - 0xa3, 0x29, 0x92, 0xcc, 0xf6, 0xcb, 0x1f, 0x95, 0x20, 0x1b, 0x4e, 0x6c, 0x43, 0x6c, 0x4a, 0x3f, - 0x4e, 0x36, 0xe5, 0x8f, 0x48, 0x30, 0x1c, 0xcc, 0x66, 0x43, 0xec, 0xdd, 0xf3, 0x63, 0x65, 0xef, - 0xcf, 0x63, 0x30, 0x14, 0xc8, 0x61, 0x7b, 0xe5, 0xee, 0xed, 0x30, 0xaa, 0x55, 0x71, 0xc3, 0x34, - 0x1c, 0xac, 0x57, 0x76, 0xcb, 0x75, 0x7c, 0x19, 0xd7, 0x73, 0x32, 0x75, 0x1a, 0xc7, 0xbb, 0x67, - 0xc9, 0xd3, 0x0b, 0x1e, 0xde, 0x22, 0x41, 0x2b, 0x8c, 0x2d, 0xcc, 0x95, 0x96, 0x56, 0x57, 0xd6, - 0x4b, 0xcb, 0xb3, 0x6f, 0x2d, 0x6f, 0x2c, 0x5f, 0x5c, 0x5e, 0x79, 0x66, 0x59, 0xc9, 0x6a, 0x21, - 0xb0, 0x3b, 0x38, 0xed, 0x57, 0x21, 0x1b, 0x66, 0x0a, 0xdd, 0x05, 0xed, 0xd8, 0xca, 0xf6, 0xa1, - 0x31, 0x18, 0x59, 0x5e, 0x29, 0xaf, 0x2d, 0xcc, 0x95, 0xca, 0xa5, 0xf3, 0xe7, 0x4b, 0xb3, 0xeb, - 0x6b, 0x6c, 0xdf, 0xc3, 0x85, 0x5e, 0x0f, 0x4c, 0x70, 0xf9, 0xc3, 0x71, 0x18, 0x6b, 0xc3, 0x09, - 0x9a, 0xe1, 0x2b, 0x16, 0xb6, 0x88, 0x7a, 0xa4, 0x17, 0xee, 0xa7, 0x49, 0xce, 0xb0, 0xaa, 0x5a, - 0x0e, 0x5f, 0xe0, 0x3c, 0x08, 0x44, 0x4a, 0xba, 0xa3, 0x6d, 0x69, 0xd8, 0xe2, 0xfb, 0x49, 0x6c, - 0x19, 0x33, 0xe2, 0xd5, 0xb3, 0x2d, 0xa5, 0x87, 0x01, 0x99, 0x86, 0xad, 0x39, 0xda, 0x65, 0x5c, - 0xd6, 0x74, 0xb1, 0xf9, 0x44, 0x96, 0x35, 0x09, 0x25, 0x2b, 0x5a, 0x16, 0x74, 0xc7, 0x85, 0xd6, - 0x71, 0x4d, 0x0d, 0x41, 0x13, 0x67, 0x1e, 0x57, 0xb2, 0xa2, 0xc5, 0x85, 0xbe, 0x07, 0x32, 0x55, - 0xa3, 0x49, 0x72, 0x3d, 0x06, 0x47, 0x62, 0x87, 0xa4, 0x0c, 0xb2, 0x3a, 0x17, 0x84, 0x67, 0xf1, - 0xde, 0xae, 0x57, 0x46, 0x19, 0x64, 0x75, 0x0c, 0xe4, 0x01, 0x18, 0x51, 0x6b, 0x35, 0x8b, 0x10, - 0x17, 0x84, 0xd8, 0xba, 0x64, 0xd8, 0xad, 0xa6, 0x80, 0xf9, 0xa7, 0x20, 0x25, 0xe4, 0x40, 0x42, - 0x35, 0x91, 0x44, 0xd9, 0x64, 0x8b, 0xed, 0xd8, 0xd1, 0xb4, 0x92, 0xd2, 0x45, 0xe3, 0x3d, 0x90, - 0xd1, 0xec, 0xb2, 0xb7, 0x89, 0x1f, 0x9b, 0x8a, 0x1d, 0x4d, 0x29, 0x83, 0x9a, 0xed, 0x6e, 0x80, - 0xca, 0x9f, 0x8c, 0xc1, 0x70, 0xf0, 0x10, 0x02, 0xcd, 0x41, 0xaa, 0x6e, 0x54, 0x54, 0x6a, 0x5a, - 0xec, 0x04, 0xec, 0x68, 0xc4, 0xb9, 0xc5, 0xf4, 0x22, 0x87, 0x57, 0x5c, 0xcc, 0xfc, 0xbf, 0x97, - 0x20, 0x25, 0xaa, 0xd1, 0x41, 0x48, 0x98, 0xaa, 0xb3, 0x4d, 0xc9, 0x25, 0x8b, 0xb1, 0xac, 0xa4, - 0xd0, 0x32, 0xa9, 0xb7, 0x4d, 0x55, 0xa7, 0x26, 0xc0, 0xeb, 0x49, 0x99, 0xe8, 0xb5, 0x8e, 0xd5, - 0x2a, 0x5d, 0xf4, 0x18, 0x8d, 0x06, 0xd6, 0x1d, 0x5b, 0xe8, 0x95, 0xd7, 0xcf, 0xf2, 0x6a, 0xf4, - 0x10, 0x8c, 0x3a, 0x96, 0xaa, 0xd5, 0x03, 0xb0, 0x09, 0x0a, 0x9b, 0x15, 0x0d, 0x2e, 0x70, 0x01, - 0x0e, 0x09, 0xba, 0x55, 0xec, 0xa8, 0x95, 0x6d, 0x5c, 0xf5, 0x90, 0xfa, 0xe9, 0xe6, 0xc6, 0x5d, - 0x1c, 0x60, 0x8e, 0xb7, 0x0b, 0x5c, 0xf9, 0x6b, 0x12, 0x8c, 0x8a, 0x65, 0x5a, 0xd5, 0x15, 0xd6, - 0x12, 0x80, 0xaa, 0xeb, 0x86, 0xe3, 0x17, 0x57, 0xab, 0x29, 0xb7, 0xe0, 0x4d, 0xcf, 0xb8, 0x48, - 0x8a, 0x8f, 0x40, 0xbe, 0x01, 0xe0, 0xb5, 0x74, 0x14, 0xdb, 0x24, 0x0c, 0xf2, 0x13, 0x26, 0x7a, - 0x4c, 0xc9, 0x16, 0xf6, 0xc0, 0xaa, 0xc8, 0x7a, 0x0e, 0x8d, 0x43, 0x72, 0x13, 0xd7, 0x34, 0x9d, - 0xef, 0x1b, 0xb3, 0x82, 0xd8, 0x7e, 0x49, 0xb8, 0xdb, 0x2f, 0xc5, 0x9f, 0x87, 0xb1, 0x8a, 0xd1, - 0x08, 0xb3, 0x5b, 0xcc, 0x86, 0x36, 0x17, 0xec, 0x0b, 0xd2, 0x73, 0x8f, 0x70, 0xa0, 0x9a, 0x51, - 0x57, 0xf5, 0xda, 0xb4, 0x61, 0xd5, 0xbc, 0x63, 0x56, 0x92, 0xf1, 0xd8, 0xbe, 0xc3, 0x56, 0x73, - 0xf3, 0xff, 0x4a, 0xd2, 0xaf, 0xc5, 0xe2, 0xf3, 0xab, 0xc5, 0x4f, 0xc5, 0xf2, 0xf3, 0x0c, 0x71, - 0x55, 0x08, 0x43, 0xc1, 0x5b, 0x75, 0x5c, 0x21, 0x03, 0x84, 0xef, 0x3d, 0x04, 0xe3, 0x35, 0xa3, - 0x66, 0x50, 0x4a, 0xc7, 0xc9, 0x2f, 0x7e, 0x4e, 0x9b, 0x76, 0x6b, 0xf3, 0x91, 0x87, 0xba, 0x85, - 0x65, 0x18, 0xe3, 0xc0, 0x65, 0x7a, 0x50, 0xc4, 0x96, 0x31, 0xa8, 0xeb, 0x1e, 0x5a, 0xee, 0xb3, - 0xdf, 0xa1, 0xe1, 0x5b, 0x19, 0xe5, 0xa8, 0xa4, 0x8d, 0xad, 0x74, 0x0a, 0x0a, 0x1c, 0x08, 0xd0, - 0x63, 0x93, 0x14, 0x5b, 0x11, 0x14, 0xff, 0x90, 0x53, 0x1c, 0xf3, 0x51, 0x5c, 0xe3, 0xa8, 0x85, - 0x59, 0x18, 0xda, 0x0b, 0xad, 0x7f, 0xc7, 0x69, 0x65, 0xb0, 0x9f, 0xc8, 0x3c, 0x8c, 0x50, 0x22, - 0x95, 0xa6, 0xed, 0x18, 0x0d, 0xea, 0x01, 0xbb, 0x93, 0xf9, 0xa3, 0xef, 0xb0, 0x59, 0x33, 0x4c, - 0xd0, 0x66, 0x5d, 0xac, 0x42, 0x01, 0xe8, 0xd9, 0x58, 0x15, 0x57, 0xea, 0x11, 0x14, 0xbe, 0xc4, - 0x19, 0x71, 0xe1, 0x0b, 0x97, 0x60, 0x9c, 0xfc, 0xa6, 0x0e, 0xca, 0xcf, 0x49, 0xf4, 0x86, 0x5b, - 0xee, 0x6b, 0xef, 0x61, 0x13, 0x73, 0xcc, 0x25, 0xe0, 0xe3, 0xc9, 0xa7, 0xc5, 0x1a, 0x76, 0x1c, - 0x6c, 0xd9, 0x65, 0xb5, 0xde, 0x8e, 0x3d, 0xdf, 0x8e, 0x45, 0xee, 0x43, 0xdf, 0x0f, 0x6a, 0x71, - 0x9e, 0x61, 0xce, 0xd4, 0xeb, 0x85, 0x0d, 0xb8, 0xab, 0x8d, 0x55, 0xf4, 0x40, 0xf3, 0xc3, 0x9c, - 0xe6, 0x78, 0x8b, 0x65, 0x10, 0xb2, 0xab, 0x20, 0xea, 0x5d, 0x5d, 0xf6, 0x40, 0xf3, 0x57, 0x39, - 0x4d, 0xc4, 0x71, 0x85, 0x4a, 0x09, 0xc5, 0xa7, 0x60, 0xf4, 0x32, 0xb6, 0x36, 0x0d, 0x9b, 0xef, - 0x12, 0xf5, 0x40, 0xee, 0x23, 0x9c, 0xdc, 0x08, 0x47, 0xa4, 0xdb, 0x46, 0x84, 0xd6, 0x59, 0x48, - 0x6d, 0xa9, 0x15, 0xdc, 0x03, 0x89, 0xeb, 0x9c, 0xc4, 0x00, 0x81, 0x27, 0xa8, 0x33, 0x90, 0xa9, - 0x19, 0x3c, 0x46, 0x45, 0xa3, 0x7f, 0x94, 0xa3, 0x0f, 0x0a, 0x1c, 0x4e, 0xc2, 0x34, 0xcc, 0x66, - 0x9d, 0x04, 0xb0, 0x68, 0x12, 0xff, 0x44, 0x90, 0x10, 0x38, 0x9c, 0xc4, 0x1e, 0xc4, 0xfa, 0xb2, - 0x20, 0x61, 0xfb, 0xe4, 0xf9, 0x24, 0x0c, 0x1a, 0x7a, 0x7d, 0xd7, 0xd0, 0x7b, 0x61, 0xe2, 0x63, - 0x9c, 0x02, 0x70, 0x14, 0x42, 0xe0, 0x1c, 0xa4, 0x7b, 0x55, 0xc4, 0x3f, 0xfd, 0xbe, 0x98, 0x1e, - 0x42, 0x03, 0xf3, 0x30, 0x22, 0x1c, 0x94, 0x66, 0xe8, 0x3d, 0x90, 0xf8, 0x04, 0x27, 0x31, 0xec, - 0x43, 0xe3, 0xc3, 0x70, 0xb0, 0xed, 0xd4, 0x70, 0x2f, 0x44, 0x3e, 0x29, 0x86, 0xc1, 0x51, 0xb8, - 0x28, 0x37, 0xb1, 0x5e, 0xd9, 0xee, 0x8d, 0xc2, 0x6f, 0x08, 0x51, 0x0a, 0x1c, 0x42, 0x62, 0x16, - 0x86, 0x1a, 0xaa, 0x65, 0x6f, 0xab, 0xf5, 0x9e, 0xd4, 0xf1, 0x9b, 0x9c, 0x46, 0xc6, 0x45, 0xe2, - 0x12, 0x69, 0xea, 0x7b, 0x21, 0xf3, 0x29, 0x21, 0x11, 0x1f, 0x1a, 0x9f, 0x7a, 0xb6, 0x43, 0xb7, - 0xd4, 0xf6, 0x42, 0xed, 0xd3, 0x62, 0xea, 0x31, 0xdc, 0x25, 0x3f, 0xc5, 0x73, 0x90, 0xb6, 0xb5, - 0xab, 0x3d, 0x91, 0xf9, 0x2d, 0xa1, 0x69, 0x8a, 0x40, 0x90, 0xdf, 0x0a, 0x87, 0xda, 0x86, 0x89, - 0x1e, 0x88, 0xfd, 0x36, 0x27, 0x76, 0xb0, 0x4d, 0xa8, 0xe0, 0x2e, 0x61, 0xaf, 0x24, 0xff, 0x99, - 0x70, 0x09, 0x38, 0x44, 0x6b, 0x95, 0xac, 0x1a, 0x6c, 0x75, 0x6b, 0x6f, 0x52, 0xfb, 0xe7, 0x42, - 0x6a, 0x0c, 0x37, 0x20, 0xb5, 0x75, 0x38, 0xc8, 0x29, 0xee, 0x4d, 0xaf, 0x9f, 0x11, 0x8e, 0x95, - 0x61, 0x6f, 0x04, 0xb5, 0xfb, 0x36, 0xc8, 0xbb, 0xe2, 0x14, 0xe9, 0xa9, 0x5d, 0x6e, 0xa8, 0x66, - 0x0f, 0x94, 0x3f, 0xcb, 0x29, 0x0b, 0x8f, 0xef, 0xe6, 0xb7, 0xf6, 0x92, 0x6a, 0x12, 0xe2, 0xcf, - 0x42, 0x4e, 0x10, 0x6f, 0xea, 0x16, 0xae, 0x18, 0x35, 0x5d, 0xbb, 0x8a, 0xab, 0x3d, 0x90, 0xfe, - 0x9d, 0x90, 0xaa, 0x36, 0x7c, 0xe8, 0x84, 0xf2, 0x02, 0x64, 0xdd, 0x5c, 0xa5, 0xac, 0x35, 0x4c, - 0xc3, 0x72, 0x22, 0x28, 0x7e, 0x4e, 0x68, 0xca, 0xc5, 0x5b, 0xa0, 0x68, 0x85, 0x12, 0xb0, 0x73, - 0xe6, 0x5e, 0x4d, 0xf2, 0x15, 0x4e, 0x68, 0xc8, 0xc3, 0xe2, 0x8e, 0xa3, 0x62, 0x34, 0x4c, 0xd5, - 0xea, 0xc5, 0xff, 0xfd, 0xae, 0x70, 0x1c, 0x1c, 0x85, 0x3b, 0x0e, 0x92, 0xd1, 0x91, 0x68, 0xdf, - 0x03, 0x85, 0xcf, 0x0b, 0xc7, 0x21, 0x70, 0x38, 0x09, 0x91, 0x30, 0xf4, 0x40, 0xe2, 0x5f, 0x08, - 0x12, 0x02, 0x87, 0x90, 0x78, 0xda, 0x0b, 0xb4, 0x16, 0xae, 0x69, 0xb6, 0x63, 0xb1, 0xa4, 0xb8, - 0x3b, 0xa9, 0x7f, 0xf9, 0xfd, 0x60, 0x12, 0xa6, 0xf8, 0x50, 0x89, 0x27, 0xe2, 0x9b, 0xac, 0x74, - 0xcd, 0x14, 0xcd, 0xd8, 0xef, 0x09, 0x4f, 0xe4, 0x43, 0x23, 0xbc, 0xf9, 0x32, 0x44, 0x22, 0xf6, - 0x0a, 0x59, 0x29, 0xf4, 0x40, 0xee, 0x5f, 0x85, 0x98, 0x5b, 0x13, 0xb8, 0x84, 0xa6, 0x2f, 0xff, - 0x69, 0xea, 0x3b, 0x78, 0xb7, 0x27, 0xeb, 0xfc, 0xfd, 0x50, 0xfe, 0xb3, 0xc1, 0x30, 0x99, 0x0f, - 0x19, 0x09, 0xe5, 0x53, 0x28, 0xea, 0x56, 0x51, 0xee, 0x5d, 0x3f, 0xe4, 0xe3, 0x0d, 0xa6, 0x53, - 0x85, 0x45, 0x62, 0xe4, 0xc1, 0xa4, 0x27, 0x9a, 0xd8, 0x7b, 0x7e, 0xe8, 0xda, 0x79, 0x20, 0xe7, - 0x29, 0x9c, 0x87, 0xa1, 0x40, 0xc2, 0x13, 0x4d, 0xea, 0x17, 0x38, 0xa9, 0x8c, 0x3f, 0xdf, 0x29, - 0x9c, 0x84, 0x04, 0x49, 0x5e, 0xa2, 0xd1, 0xff, 0x0e, 0x47, 0xa7, 0xe0, 0x85, 0x37, 0x41, 0x4a, - 0x24, 0x2d, 0xd1, 0xa8, 0xef, 0xe5, 0xa8, 0x2e, 0x0a, 0x41, 0x17, 0x09, 0x4b, 0x34, 0xfa, 0xdf, - 0x15, 0xe8, 0x02, 0x85, 0xa0, 0xf7, 0x2e, 0xc2, 0x2f, 0xfc, 0xbd, 0x04, 0x0f, 0x3a, 0x42, 0x76, - 0xe7, 0x60, 0x80, 0x67, 0x2a, 0xd1, 0xd8, 0xef, 0xe3, 0x9d, 0x0b, 0x8c, 0xc2, 0x69, 0x48, 0xf6, - 0x28, 0xf0, 0xbf, 0xcf, 0x51, 0x19, 0x7c, 0x61, 0x16, 0x06, 0x7d, 0xd9, 0x49, 0x34, 0xfa, 0x3f, - 0xe0, 0xe8, 0x7e, 0x2c, 0xc2, 0x3a, 0xcf, 0x4e, 0xa2, 0x09, 0xfc, 0x43, 0xc1, 0x3a, 0xc7, 0x20, - 0x62, 0x13, 0x89, 0x49, 0x34, 0xf6, 0xfb, 0x85, 0xd4, 0x05, 0x4a, 0xe1, 0x49, 0x48, 0xbb, 0xc1, - 0x26, 0x1a, 0xff, 0x97, 0x38, 0xbe, 0x87, 0x43, 0x24, 0xe0, 0x0b, 0x76, 0xd1, 0x24, 0xfe, 0x91, - 0x90, 0x80, 0x0f, 0x8b, 0x4c, 0xa3, 0x70, 0x02, 0x13, 0x4d, 0xe9, 0x03, 0x62, 0x1a, 0x85, 0xf2, - 0x17, 0xa2, 0x4d, 0xea, 0xf3, 0xa3, 0x49, 0xfc, 0x63, 0xa1, 0x4d, 0x0a, 0x4f, 0xd8, 0x08, 0x67, - 0x04, 0xd1, 0x34, 0x7e, 0x45, 0xb0, 0x11, 0x4a, 0x08, 0x0a, 0xab, 0x80, 0x5a, 0xb3, 0x81, 0x68, - 0x7a, 0x1f, 0xe4, 0xf4, 0x46, 0x5b, 0x92, 0x81, 0xc2, 0x33, 0x70, 0xb0, 0x7d, 0x26, 0x10, 0x4d, - 0xf5, 0x43, 0x3f, 0x0c, 0xad, 0xdd, 0xfc, 0x89, 0x40, 0x61, 0xdd, 0x0b, 0x29, 0xfe, 0x2c, 0x20, - 0x9a, 0xec, 0x87, 0x7f, 0x18, 0x74, 0xdc, 0xfe, 0x24, 0xa0, 0x30, 0x03, 0xe0, 0x05, 0xe0, 0x68, - 0x5a, 0x1f, 0xe1, 0xb4, 0x7c, 0x48, 0x64, 0x6a, 0xf0, 0xf8, 0x1b, 0x8d, 0x7f, 0x5d, 0x4c, 0x0d, - 0x8e, 0x41, 0xa6, 0x86, 0x08, 0xbd, 0xd1, 0xd8, 0x1f, 0x15, 0x53, 0x43, 0xa0, 0x10, 0xcb, 0xf6, - 0x45, 0xb7, 0x68, 0x0a, 0x1f, 0x13, 0x96, 0xed, 0xc3, 0x2a, 0x2c, 0xc3, 0x68, 0x4b, 0x40, 0x8c, + 0x58, 0x19, 0xae, 0x54, 0x4a, 0xb4, 0x71, 0x86, 0xb6, 0xa1, 0x13, 0x30, 0x6a, 0x6c, 0x3e, 0x5f, + 0x61, 0x1a, 0x59, 0x36, 0x2d, 0xbc, 0xa5, 0x5d, 0xcb, 0xdd, 0x47, 0xc5, 0x3b, 0x42, 0x1a, 0xa8, + 0x3e, 0xae, 0xd2, 0x6a, 0xf4, 0x20, 0x64, 0x2b, 0xf6, 0xb6, 0x6a, 0x99, 0xd4, 0x25, 0xdb, 0xa6, + 0x5a, 0xc1, 0xb9, 0x37, 0x30, 0x50, 0x56, 0xbf, 0x2c, 0xaa, 0x89, 0x45, 0xd8, 0x2f, 0x68, 0x5b, + 0x8e, 0xa0, 0xf8, 0x00, 0xb3, 0x08, 0x5a, 0xc7, 0xa9, 0x1d, 0x87, 0x2c, 0x91, 0x44, 0xa0, 0xe3, + 0xe3, 0x14, 0x6c, 0xd8, 0xdc, 0x36, 0xfd, 0xfd, 0xde, 0x0b, 0x43, 0x04, 0xd2, 0xeb, 0xf4, 0x41, + 0x96, 0xb8, 0x99, 0xdb, 0xbe, 0x1e, 0x9f, 0x80, 0xc3, 0x04, 0xa8, 0x81, 0x1d, 0xb5, 0xaa, 0x3a, + 0xaa, 0x0f, 0xfa, 0x61, 0x0a, 0x4d, 0xc4, 0xbe, 0xc4, 0x1b, 0x03, 0x7c, 0x5a, 0xcd, 0xcd, 0x5d, + 0x57, 0xb1, 0x1e, 0x61, 0x7c, 0x92, 0x3a, 0xa1, 0x5a, 0x77, 0x2c, 0x39, 0x97, 0x0b, 0x90, 0xf1, + 0xeb, 0x3d, 0x4a, 0x03, 0xd3, 0xfc, 0xac, 0x44, 0x92, 0xa0, 0xd9, 0x95, 0x39, 0x92, 0xbe, 0x3c, + 0x57, 0xca, 0xc6, 0x48, 0x1a, 0xb5, 0xb8, 0xb0, 0x5e, 0x2a, 0x2b, 0x1b, 0xcb, 0xeb, 0x0b, 0x4b, + 0xa5, 0x6c, 0xdc, 0x97, 0xd8, 0x3f, 0x95, 0x48, 0xdd, 0x9f, 0x7d, 0x40, 0xfe, 0x5a, 0x0c, 0x86, + 0x83, 0x2b, 0x35, 0xf4, 0x46, 0xb8, 0x4b, 0x6c, 0xab, 0xd8, 0xd8, 0x29, 0xbf, 0xa0, 0x59, 0xd4, + 0x20, 0x1b, 0x2a, 0x0b, 0x8e, 0xae, 0xfe, 0x8c, 0x73, 0xa8, 0x35, 0xec, 0x3c, 0xa3, 0x59, 0xc4, + 0xdc, 0x1a, 0xaa, 0x83, 0x16, 0x61, 0x52, 0x37, 0xca, 0xb6, 0xa3, 0xea, 0x55, 0xd5, 0xaa, 0x96, + 0xbd, 0x0d, 0xad, 0xb2, 0x5a, 0xa9, 0x60, 0xdb, 0x36, 0x58, 0x20, 0x74, 0xa9, 0x1c, 0xd3, 0x8d, + 0x35, 0x0e, 0xec, 0x45, 0x88, 0x19, 0x0e, 0x1a, 0x52, 0xdf, 0x78, 0x27, 0xf5, 0x3d, 0x0a, 0xe9, + 0x86, 0x6a, 0x96, 0xb1, 0xee, 0x58, 0xbb, 0x34, 0x3f, 0x4f, 0x29, 0xa9, 0x86, 0x6a, 0x96, 0x48, + 0xf9, 0x75, 0x59, 0x26, 0x3d, 0x95, 0x48, 0xa5, 0xb2, 0xe9, 0xa7, 0x12, 0xa9, 0x74, 0x16, 0xe4, + 0xd7, 0xe2, 0x90, 0xf1, 0xe7, 0xeb, 0x64, 0xf9, 0x53, 0xa1, 0x11, 0x4b, 0xa2, 0x3e, 0xed, 0xde, + 0xae, 0xd9, 0xfd, 0xf4, 0x2c, 0x09, 0x65, 0x85, 0x7e, 0x96, 0x1c, 0x2b, 0x0c, 0x93, 0xa4, 0x11, + 0x44, 0xd9, 0x30, 0x4b, 0x46, 0x52, 0x0a, 0x2f, 0xa1, 0x79, 0xe8, 0x7f, 0xde, 0xa6, 0xb4, 0xfb, + 0x29, 0xed, 0xfb, 0xba, 0xd3, 0x7e, 0x6a, 0x8d, 0x12, 0x4f, 0x3f, 0xb5, 0x56, 0x5e, 0x5e, 0x51, + 0x96, 0x66, 0x16, 0x15, 0x8e, 0x8e, 0x8e, 0x40, 0xa2, 0xae, 0xbe, 0xb8, 0x1b, 0x0c, 0x7a, 0xb4, + 0xaa, 0xd7, 0x49, 0x38, 0x02, 0x89, 0x17, 0xb0, 0xba, 0x13, 0x0c, 0x35, 0xb4, 0xea, 0x0e, 0x1a, + 0xc3, 0x49, 0x48, 0x52, 0x79, 0x21, 0x00, 0x2e, 0xb1, 0x6c, 0x1f, 0x4a, 0x41, 0x62, 0x76, 0x45, + 0x21, 0x06, 0x91, 0x85, 0x0c, 0xab, 0x2d, 0xaf, 0x2e, 0x94, 0x66, 0x4b, 0xd9, 0x98, 0x7c, 0x1a, + 0xfa, 0x99, 0x10, 0x88, 0xb1, 0xb8, 0x62, 0xc8, 0xf6, 0xf1, 0x22, 0xa7, 0x21, 0x89, 0xd6, 0x8d, + 0xa5, 0x62, 0x49, 0xc9, 0xc6, 0x82, 0x53, 0x9d, 0xc8, 0x26, 0x65, 0x1b, 0x32, 0xfe, 0x3c, 0xfc, + 0xf5, 0x59, 0x8c, 0x7f, 0x41, 0x82, 0x41, 0x5f, 0x5e, 0x4d, 0x12, 0x22, 0xb5, 0x5e, 0x37, 0x5e, + 0x28, 0xab, 0x75, 0x4d, 0xb5, 0xb9, 0x6a, 0x00, 0xad, 0x9a, 0x21, 0x35, 0xbd, 0x4e, 0xdd, 0xeb, + 0x64, 0x22, 0xc9, 0x6c, 0xbf, 0xfc, 0x51, 0x09, 0xb2, 0xe1, 0xc4, 0x36, 0xc4, 0xa6, 0xf4, 0xa3, + 0x64, 0x53, 0xfe, 0x88, 0x04, 0xc3, 0xc1, 0x6c, 0x36, 0xc4, 0xde, 0x3d, 0x3f, 0x52, 0xf6, 0xfe, + 0x22, 0x06, 0x43, 0x81, 0x1c, 0xb6, 0x57, 0xee, 0xde, 0x0e, 0xa3, 0x5a, 0x15, 0x37, 0x4c, 0xc3, + 0xc1, 0x7a, 0x65, 0xb7, 0x5c, 0xc7, 0x57, 0x71, 0x3d, 0x27, 0x53, 0xa7, 0x71, 0xb2, 0x7b, 0x96, + 0x3c, 0xbd, 0xe0, 0xe1, 0x2d, 0x12, 0xb4, 0xc2, 0xd8, 0xc2, 0x5c, 0x69, 0x69, 0x75, 0x65, 0xbd, + 0xb4, 0x3c, 0xfb, 0xd6, 0xf2, 0xc6, 0xf2, 0xe5, 0xe5, 0x95, 0x67, 0x96, 0x95, 0xac, 0x16, 0x02, + 0xbb, 0x83, 0x66, 0xbf, 0x0a, 0xd9, 0x30, 0x53, 0xe8, 0x2e, 0x68, 0xc7, 0x56, 0xb6, 0x0f, 0x8d, + 0xc1, 0xc8, 0xf2, 0x4a, 0x79, 0x6d, 0x61, 0xae, 0x54, 0x2e, 0x5d, 0xbc, 0x58, 0x9a, 0x5d, 0x5f, + 0x63, 0xfb, 0x1e, 0x2e, 0xf4, 0x7a, 0xc0, 0xc0, 0xe5, 0x0f, 0xc7, 0x61, 0xac, 0x0d, 0x27, 0x68, + 0x86, 0xaf, 0x58, 0xd8, 0x22, 0xea, 0x91, 0x5e, 0xb8, 0x9f, 0x26, 0x39, 0xc3, 0xaa, 0x6a, 0x39, + 0x7c, 0x81, 0xf3, 0x20, 0x10, 0x29, 0xe9, 0x8e, 0xb6, 0xa5, 0x61, 0x8b, 0xef, 0x27, 0xb1, 0x65, + 0xcc, 0x88, 0x57, 0xcf, 0xb6, 0x94, 0x1e, 0x06, 0x64, 0x1a, 0xb6, 0xe6, 0x68, 0x57, 0x71, 0x59, + 0xd3, 0xc5, 0xe6, 0x13, 0x59, 0xd6, 0x24, 0x94, 0xac, 0x68, 0x59, 0xd0, 0x1d, 0x17, 0x5a, 0xc7, + 0x35, 0x35, 0x04, 0x4d, 0x9c, 0x79, 0x5c, 0xc9, 0x8a, 0x16, 0x17, 0xfa, 0x1e, 0xc8, 0x54, 0x8d, + 0x26, 0xc9, 0xf5, 0x18, 0x1c, 0x89, 0x1d, 0x92, 0x32, 0xc8, 0xea, 0x5c, 0x10, 0x9e, 0xc5, 0x7b, + 0xbb, 0x5e, 0x19, 0x65, 0x90, 0xd5, 0x31, 0x90, 0x07, 0x60, 0x44, 0xad, 0xd5, 0x2c, 0x42, 0x5c, + 0x10, 0x62, 0xeb, 0x92, 0x61, 0xb7, 0x9a, 0x02, 0xe6, 0x9f, 0x82, 0x94, 0x90, 0x03, 0x09, 0xd5, + 0x44, 0x12, 0x65, 0x93, 0x2d, 0xb6, 0x63, 0xc7, 0xd3, 0x4a, 0x4a, 0x17, 0x8d, 0xf7, 0x40, 0x46, + 0xb3, 0xcb, 0xde, 0x26, 0x7e, 0x6c, 0x2a, 0x76, 0x3c, 0xa5, 0x0c, 0x6a, 0xb6, 0xbb, 0x01, 0x2a, + 0x7f, 0x32, 0x06, 0xc3, 0xc1, 0x43, 0x08, 0x34, 0x07, 0xa9, 0xba, 0x51, 0x51, 0xa9, 0x6a, 0xb1, + 0x13, 0xb0, 0xe3, 0x11, 0xe7, 0x16, 0xd3, 0x8b, 0x1c, 0x5e, 0x71, 0x31, 0xf3, 0xff, 0x56, 0x82, + 0x94, 0xa8, 0x46, 0x87, 0x21, 0x61, 0xaa, 0xce, 0x36, 0x25, 0x97, 0x2c, 0xc6, 0xb2, 0x92, 0x42, + 0xcb, 0xa4, 0xde, 0x36, 0x55, 0x9d, 0xaa, 0x00, 0xaf, 0x27, 0x65, 0x32, 0xaf, 0x75, 0xac, 0x56, + 0xe9, 0xa2, 0xc7, 0x68, 0x34, 0xb0, 0xee, 0xd8, 0x62, 0x5e, 0x79, 0xfd, 0x2c, 0xaf, 0x46, 0x0f, + 0xc1, 0xa8, 0x63, 0xa9, 0x5a, 0x3d, 0x00, 0x9b, 0xa0, 0xb0, 0x59, 0xd1, 0xe0, 0x02, 0x17, 0xe0, + 0x88, 0xa0, 0x5b, 0xc5, 0x8e, 0x5a, 0xd9, 0xc6, 0x55, 0x0f, 0xa9, 0x9f, 0x6e, 0x6e, 0xdc, 0xc5, + 0x01, 0xe6, 0x78, 0xbb, 0xc0, 0x95, 0xbf, 0x26, 0xc1, 0xa8, 0x58, 0xa6, 0x55, 0x5d, 0x61, 0x2d, + 0x01, 0xa8, 0xba, 0x6e, 0x38, 0x7e, 0x71, 0xb5, 0xaa, 0x72, 0x0b, 0xde, 0xf4, 0x8c, 0x8b, 0xa4, + 0xf8, 0x08, 0xe4, 0x1b, 0x00, 0x5e, 0x4b, 0x47, 0xb1, 0x4d, 0xc2, 0x20, 0x3f, 0x61, 0xa2, 0xc7, + 0x94, 0x6c, 0x61, 0x0f, 0xac, 0x8a, 0xac, 0xe7, 0xd0, 0x38, 0x24, 0x37, 0x71, 0x4d, 0xd3, 0xf9, + 0xbe, 0x31, 0x2b, 0x88, 0xed, 0x97, 0x84, 0xbb, 0xfd, 0x52, 0xfc, 0x79, 0x18, 0xab, 0x18, 0x8d, + 0x30, 0xbb, 0xc5, 0x6c, 0x68, 0x73, 0xc1, 0xbe, 0x24, 0x3d, 0xf7, 0x08, 0x07, 0xaa, 0x19, 0x75, + 0x55, 0xaf, 0x4d, 0x1b, 0x56, 0xcd, 0x3b, 0x66, 0x25, 0x19, 0x8f, 0xed, 0x3b, 0x6c, 0x35, 0x37, + 0xff, 0xb7, 0x24, 0xfd, 0x5a, 0x2c, 0x3e, 0xbf, 0x5a, 0xfc, 0x54, 0x2c, 0x3f, 0xcf, 0x10, 0x57, + 0x85, 0x30, 0x14, 0xbc, 0x55, 0xc7, 0x15, 0x32, 0x40, 0xf8, 0xee, 0x43, 0x30, 0x5e, 0x33, 0x6a, + 0x06, 0xa5, 0x74, 0x92, 0xfc, 0xe2, 0xe7, 0xb4, 0x69, 0xb7, 0x36, 0x1f, 0x79, 0xa8, 0x5b, 0x58, + 0x86, 0x31, 0x0e, 0x5c, 0xa6, 0x07, 0x45, 0x6c, 0x19, 0x83, 0xba, 0xee, 0xa1, 0xe5, 0x3e, 0xfb, + 0x6d, 0x1a, 0xbe, 0x95, 0x51, 0x8e, 0x4a, 0xda, 0xd8, 0x4a, 0xa7, 0xa0, 0xc0, 0xa1, 0x00, 0x3d, + 0x66, 0xa4, 0xd8, 0x8a, 0xa0, 0xf8, 0x87, 0x9c, 0xe2, 0x98, 0x8f, 0xe2, 0x1a, 0x47, 0x2d, 0xcc, + 0xc2, 0xd0, 0x5e, 0x68, 0xfd, 0x1b, 0x4e, 0x2b, 0x83, 0xfd, 0x44, 0xe6, 0x61, 0x84, 0x12, 0xa9, + 0x34, 0x6d, 0xc7, 0x68, 0x50, 0x0f, 0xd8, 0x9d, 0xcc, 0x1f, 0x7d, 0x9b, 0x59, 0xcd, 0x30, 0x41, + 0x9b, 0x75, 0xb1, 0x0a, 0x05, 0xa0, 0x67, 0x63, 0x55, 0x5c, 0xa9, 0x47, 0x50, 0xf8, 0x12, 0x67, + 0xc4, 0x85, 0x2f, 0x5c, 0x81, 0x71, 0xf2, 0x9b, 0x3a, 0x28, 0x3f, 0x27, 0xd1, 0x1b, 0x6e, 0xb9, + 0xaf, 0xbd, 0x87, 0x19, 0xe6, 0x98, 0x4b, 0xc0, 0xc7, 0x93, 0x6f, 0x16, 0x6b, 0xd8, 0x71, 0xb0, + 0x65, 0x97, 0xd5, 0x7a, 0x3b, 0xf6, 0x7c, 0x3b, 0x16, 0xb9, 0x0f, 0x7d, 0x2f, 0x38, 0x8b, 0xf3, + 0x0c, 0x73, 0xa6, 0x5e, 0x2f, 0x6c, 0xc0, 0x5d, 0x6d, 0xb4, 0xa2, 0x07, 0x9a, 0x1f, 0xe6, 0x34, + 0xc7, 0x5b, 0x34, 0x83, 0x90, 0x5d, 0x05, 0x51, 0xef, 0xce, 0x65, 0x0f, 0x34, 0x7f, 0x95, 0xd3, + 0x44, 0x1c, 0x57, 0x4c, 0x29, 0xa1, 0xf8, 0x14, 0x8c, 0x5e, 0xc5, 0xd6, 0xa6, 0x61, 0xf3, 0x5d, + 0xa2, 0x1e, 0xc8, 0x7d, 0x84, 0x93, 0x1b, 0xe1, 0x88, 0x74, 0xdb, 0x88, 0xd0, 0x3a, 0x0f, 0xa9, + 0x2d, 0xb5, 0x82, 0x7b, 0x20, 0x71, 0x83, 0x93, 0x18, 0x20, 0xf0, 0x04, 0x75, 0x06, 0x32, 0x35, + 0x83, 0xc7, 0xa8, 0x68, 0xf4, 0x8f, 0x72, 0xf4, 0x41, 0x81, 0xc3, 0x49, 0x98, 0x86, 0xd9, 0xac, + 0x93, 0x00, 0x16, 0x4d, 0xe2, 0x1f, 0x09, 0x12, 0x02, 0x87, 0x93, 0xd8, 0x83, 0x58, 0x5f, 0x11, + 0x24, 0x6c, 0x9f, 0x3c, 0x9f, 0x84, 0x41, 0x43, 0xaf, 0xef, 0x1a, 0x7a, 0x2f, 0x4c, 0x7c, 0x8c, + 0x53, 0x00, 0x8e, 0x42, 0x08, 0x5c, 0x80, 0x74, 0xaf, 0x13, 0xf1, 0x8f, 0xbf, 0x27, 0xcc, 0x43, + 0xcc, 0xc0, 0x3c, 0x8c, 0x08, 0x07, 0xa5, 0x19, 0x7a, 0x0f, 0x24, 0x3e, 0xc1, 0x49, 0x0c, 0xfb, + 0xd0, 0xf8, 0x30, 0x1c, 0x6c, 0x3b, 0x35, 0xdc, 0x0b, 0x91, 0x4f, 0x8a, 0x61, 0x70, 0x14, 0x2e, + 0xca, 0x4d, 0xac, 0x57, 0xb6, 0x7b, 0xa3, 0xf0, 0x1b, 0x42, 0x94, 0x02, 0x87, 0x90, 0x98, 0x85, + 0xa1, 0x86, 0x6a, 0xd9, 0xdb, 0x6a, 0xbd, 0xa7, 0xe9, 0xf8, 0x4d, 0x4e, 0x23, 0xe3, 0x22, 0x71, + 0x89, 0x34, 0xf5, 0xbd, 0x90, 0xf9, 0x94, 0x90, 0x88, 0x0f, 0x8d, 0x9b, 0x9e, 0xed, 0xd0, 0x2d, + 0xb5, 0xbd, 0x50, 0xfb, 0xb4, 0x30, 0x3d, 0x86, 0xbb, 0xe4, 0xa7, 0x78, 0x01, 0xd2, 0xb6, 0xf6, + 0x62, 0x4f, 0x64, 0x7e, 0x4b, 0xcc, 0x34, 0x45, 0x20, 0xc8, 0x6f, 0x85, 0x23, 0x6d, 0xc3, 0x44, + 0x0f, 0xc4, 0x7e, 0x9b, 0x13, 0x3b, 0xdc, 0x26, 0x54, 0x70, 0x97, 0xb0, 0x57, 0x92, 0xff, 0x44, + 0xb8, 0x04, 0x1c, 0xa2, 0xb5, 0x4a, 0x56, 0x0d, 0xb6, 0xba, 0xb5, 0x37, 0xa9, 0xfd, 0x53, 0x21, + 0x35, 0x86, 0x1b, 0x90, 0xda, 0x3a, 0x1c, 0xe6, 0x14, 0xf7, 0x36, 0xaf, 0x9f, 0x11, 0x8e, 0x95, + 0x61, 0x6f, 0x04, 0x67, 0xf7, 0x6d, 0x90, 0x77, 0xc5, 0x29, 0xd2, 0x53, 0xbb, 0xdc, 0x50, 0xcd, + 0x1e, 0x28, 0x7f, 0x96, 0x53, 0x16, 0x1e, 0xdf, 0xcd, 0x6f, 0xed, 0x25, 0xd5, 0x24, 0xc4, 0x9f, + 0x85, 0x9c, 0x20, 0xde, 0xd4, 0x2d, 0x5c, 0x31, 0x6a, 0xba, 0xf6, 0x22, 0xae, 0xf6, 0x40, 0xfa, + 0x77, 0x42, 0x53, 0xb5, 0xe1, 0x43, 0x27, 0x94, 0x17, 0x20, 0xeb, 0xe6, 0x2a, 0x65, 0xad, 0x61, + 0x1a, 0x96, 0x13, 0x41, 0xf1, 0x73, 0x62, 0xa6, 0x5c, 0xbc, 0x05, 0x8a, 0x56, 0x28, 0x01, 0x3b, + 0x67, 0xee, 0x55, 0x25, 0x5f, 0xe5, 0x84, 0x86, 0x3c, 0x2c, 0xee, 0x38, 0x2a, 0x46, 0xc3, 0x54, + 0xad, 0x5e, 0xfc, 0xdf, 0xef, 0x0a, 0xc7, 0xc1, 0x51, 0xb8, 0xe3, 0x20, 0x19, 0x1d, 0x89, 0xf6, + 0x3d, 0x50, 0xf8, 0xbc, 0x70, 0x1c, 0x02, 0x87, 0x93, 0x10, 0x09, 0x43, 0x0f, 0x24, 0xfe, 0x99, + 0x20, 0x21, 0x70, 0x08, 0x89, 0xa7, 0xbd, 0x40, 0x6b, 0xe1, 0x9a, 0x66, 0x3b, 0x16, 0x4b, 0x8a, + 0xbb, 0x93, 0xfa, 0xe7, 0xdf, 0x0b, 0x26, 0x61, 0x8a, 0x0f, 0x95, 0x78, 0x22, 0xbe, 0xc9, 0x4a, + 0xd7, 0x4c, 0xd1, 0x8c, 0xfd, 0x9e, 0xf0, 0x44, 0x3e, 0x34, 0xc2, 0x9b, 0x2f, 0x43, 0x24, 0x62, + 0xaf, 0x90, 0x95, 0x42, 0x0f, 0xe4, 0xfe, 0x45, 0x88, 0xb9, 0x35, 0x81, 0x4b, 0x68, 0xfa, 0xf2, + 0x9f, 0xa6, 0xbe, 0x83, 0x77, 0x7b, 0xd2, 0xce, 0xdf, 0x0f, 0xe5, 0x3f, 0x1b, 0x0c, 0x93, 0xf9, + 0x90, 0x91, 0x50, 0x3e, 0x85, 0xa2, 0x6e, 0x15, 0xe5, 0xde, 0xf5, 0x03, 0x3e, 0xde, 0x60, 0x3a, + 0x55, 0x58, 0x24, 0x4a, 0x1e, 0x4c, 0x7a, 0xa2, 0x89, 0xbd, 0xe7, 0x07, 0xae, 0x9e, 0x07, 0x72, + 0x9e, 0xc2, 0x45, 0x18, 0x0a, 0x24, 0x3c, 0xd1, 0xa4, 0x7e, 0x81, 0x93, 0xca, 0xf8, 0xf3, 0x9d, + 0xc2, 0x69, 0x48, 0x90, 0xe4, 0x25, 0x1a, 0xfd, 0x6f, 0x71, 0x74, 0x0a, 0x5e, 0x78, 0x13, 0xa4, + 0x44, 0xd2, 0x12, 0x8d, 0xfa, 0x5e, 0x8e, 0xea, 0xa2, 0x10, 0x74, 0x91, 0xb0, 0x44, 0xa3, 0xff, + 0x6d, 0x81, 0x2e, 0x50, 0x08, 0x7a, 0xef, 0x22, 0xfc, 0xc2, 0xdf, 0x49, 0xf0, 0xa0, 0x23, 0x64, + 0x77, 0x01, 0x06, 0x78, 0xa6, 0x12, 0x8d, 0xfd, 0x3e, 0xde, 0xb9, 0xc0, 0x28, 0x9c, 0x85, 0x64, + 0x8f, 0x02, 0xff, 0xbb, 0x1c, 0x95, 0xc1, 0x17, 0x66, 0x61, 0xd0, 0x97, 0x9d, 0x44, 0xa3, 0xff, + 0x3d, 0x8e, 0xee, 0xc7, 0x22, 0xac, 0xf3, 0xec, 0x24, 0x9a, 0xc0, 0xdf, 0x17, 0xac, 0x73, 0x0c, + 0x22, 0x36, 0x91, 0x98, 0x44, 0x63, 0xbf, 0x5f, 0x48, 0x5d, 0xa0, 0x14, 0x9e, 0x84, 0xb4, 0x1b, + 0x6c, 0xa2, 0xf1, 0x7f, 0x89, 0xe3, 0x7b, 0x38, 0x44, 0x02, 0xbe, 0x60, 0x17, 0x4d, 0xe2, 0x1f, + 0x08, 0x09, 0xf8, 0xb0, 0x88, 0x19, 0x85, 0x13, 0x98, 0x68, 0x4a, 0x1f, 0x10, 0x66, 0x14, 0xca, + 0x5f, 0xc8, 0x6c, 0x52, 0x9f, 0x1f, 0x4d, 0xe2, 0x1f, 0x8a, 0xd9, 0xa4, 0xf0, 0x84, 0x8d, 0x70, + 0x46, 0x10, 0x4d, 0xe3, 0x57, 0x04, 0x1b, 0xa1, 0x84, 0xa0, 0xb0, 0x0a, 0xa8, 0x35, 0x1b, 0x88, + 0xa6, 0xf7, 0x41, 0x4e, 0x6f, 0xb4, 0x25, 0x19, 0x28, 0x3c, 0x03, 0x87, 0xdb, 0x67, 0x02, 0xd1, + 0x54, 0x3f, 0xf4, 0x83, 0xd0, 0xda, 0xcd, 0x9f, 0x08, 0x14, 0xd6, 0xbd, 0x90, 0xe2, 0xcf, 0x02, + 0xa2, 0xc9, 0x7e, 0xf8, 0x07, 0x41, 0xc7, 0xed, 0x4f, 0x02, 0x0a, 0x33, 0x00, 0x5e, 0x00, 0x8e, + 0xa6, 0xf5, 0x11, 0x4e, 0xcb, 0x87, 0x44, 0x4c, 0x83, 0xc7, 0xdf, 0x68, 0xfc, 0x1b, 0xc2, 0x34, + 0x38, 0x06, 0x31, 0x0d, 0x11, 0x7a, 0xa3, 0xb1, 0x3f, 0x2a, 0x4c, 0x43, 0xa0, 0x10, 0xcd, 0xf6, + 0x45, 0xb7, 0x68, 0x0a, 0x1f, 0x13, 0x9a, 0xed, 0xc3, 0x2a, 0x2c, 0xc3, 0x68, 0x4b, 0x40, 0x8c, 0x26, 0xf5, 0x6b, 0x9c, 0x54, 0x36, 0x1c, 0x0f, 0xfd, 0xc1, 0x8b, 0x07, 0xc3, 0x68, 0x6a, 0x1f, - 0x0f, 0x05, 0x2f, 0x1e, 0x0b, 0x0b, 0xe7, 0x20, 0xa5, 0x37, 0xeb, 0x75, 0x32, 0x79, 0x50, 0xf7, - 0x9b, 0x80, 0xb9, 0xff, 0xf2, 0x23, 0x2e, 0x1d, 0x81, 0x50, 0x38, 0x09, 0x49, 0xdc, 0xd8, 0xc4, - 0xd5, 0x28, 0xcc, 0xef, 0xfd, 0x48, 0x38, 0x4c, 0x02, 0x5d, 0x78, 0x12, 0x80, 0x6d, 0x8d, 0xd0, - 0xc3, 0xc0, 0x08, 0xdc, 0xff, 0xfa, 0x23, 0x7e, 0xf5, 0xc6, 0x43, 0xf1, 0x08, 0xb0, 0x8b, 0x3c, - 0xdd, 0x09, 0x7c, 0x3f, 0x48, 0x80, 0x6a, 0xe4, 0x2c, 0x0c, 0x3c, 0x6f, 0x1b, 0xba, 0xa3, 0xd6, - 0xa2, 0xb0, 0xff, 0x1b, 0xc7, 0x16, 0xf0, 0x44, 0x60, 0x0d, 0xc3, 0xc2, 0x8e, 0x5a, 0xb3, 0xa3, - 0x70, 0xff, 0x3b, 0xc7, 0x75, 0x11, 0x08, 0x72, 0x45, 0xb5, 0x9d, 0x5e, 0xc6, 0xfd, 0x57, 0x02, - 0x59, 0x20, 0x10, 0xa6, 0xc9, 0xef, 0x1d, 0xbc, 0x1b, 0x85, 0xfb, 0x03, 0xc1, 0x34, 0x87, 0x2f, - 0xbc, 0x09, 0xd2, 0xe4, 0x27, 0xbb, 0x4f, 0x17, 0x81, 0xfc, 0x3f, 0x38, 0xb2, 0x87, 0x41, 0x7a, - 0xb6, 0x9d, 0xaa, 0xa3, 0x45, 0x0b, 0xfb, 0x26, 0xd7, 0xb4, 0x80, 0x2f, 0xcc, 0xc0, 0xa0, 0xed, - 0x54, 0xab, 0x4d, 0x9e, 0x9f, 0x46, 0xa0, 0xff, 0xcf, 0x1f, 0xb9, 0x5b, 0x16, 0x2e, 0x0e, 0xd1, - 0xf6, 0x0b, 0x3b, 0x8e, 0x69, 0xd0, 0x03, 0x8f, 0x28, 0x0a, 0x3f, 0xe4, 0x14, 0x7c, 0x28, 0x85, - 0x59, 0xc8, 0x90, 0xb1, 0x58, 0xd8, 0xc4, 0xf4, 0x74, 0x2a, 0x82, 0xc4, 0xff, 0xe2, 0x02, 0x08, - 0x20, 0x15, 0x7f, 0xf6, 0x4b, 0xaf, 0x4e, 0x48, 0x5f, 0x7d, 0x75, 0x42, 0xfa, 0xf3, 0x57, 0x27, - 0xa4, 0xf7, 0x7f, 0x7b, 0xa2, 0xef, 0xab, 0xdf, 0x9e, 0xe8, 0xfb, 0xd3, 0x6f, 0x4f, 0xf4, 0xb5, - 0xdf, 0x25, 0x86, 0x79, 0x63, 0xde, 0x60, 0xfb, 0xc3, 0xcf, 0xc9, 0x35, 0xcd, 0xd9, 0x6e, 0x6e, - 0x4e, 0x57, 0x8c, 0x06, 0xdd, 0xc6, 0xf5, 0x76, 0x6b, 0xdd, 0x45, 0x0e, 0xbc, 0x12, 0x87, 0x43, - 0x15, 0xc3, 0x6e, 0x18, 0x76, 0x99, 0xed, 0xf7, 0xb2, 0x02, 0xdf, 0xf1, 0xcd, 0xf8, 0x9b, 0x7a, - 0xd8, 0xf4, 0xbd, 0x00, 0xc3, 0x74, 0xe8, 0x74, 0xbb, 0x8b, 0x5a, 0x5b, 0xa4, 0x83, 0xf8, 0xf2, - 0x7f, 0x4c, 0xd2, 0x51, 0x0f, 0xb9, 0x88, 0xf4, 0xf4, 0x7e, 0x1d, 0xc6, 0xb5, 0x86, 0x59, 0xc7, - 0x74, 0x9b, 0xbf, 0xec, 0xb6, 0x45, 0xd3, 0xfb, 0x0a, 0xa7, 0x37, 0xe6, 0xa1, 0x2f, 0x08, 0xec, - 0xc2, 0x22, 0x8c, 0xaa, 0x95, 0x0a, 0x36, 0x03, 0x24, 0x23, 0xd4, 0x22, 0x18, 0xcc, 0x72, 0x4c, - 0x8f, 0xda, 0x69, 0xe8, 0xb7, 0x2b, 0x6a, 0x5d, 0x8d, 0x34, 0x0e, 0xc1, 0x13, 0x07, 0x2f, 0x9e, - 0xe9, 0xa4, 0xd3, 0xe7, 0x26, 0x7c, 0x2a, 0x63, 0xb2, 0xe7, 0x7f, 0x1e, 0x61, 0x94, 0xfb, 0xd9, - 0x9d, 0x67, 0xf8, 0x93, 0x38, 0x4c, 0xf0, 0xf6, 0x4d, 0xd5, 0xc6, 0xc7, 0x2f, 0x3f, 0xb6, 0x89, - 0x1d, 0xf5, 0xb1, 0xe3, 0x15, 0x43, 0xd3, 0xb9, 0xee, 0xc6, 0xb8, 0x26, 0x49, 0xfb, 0x34, 0x6f, - 0xcf, 0xb7, 0xdd, 0xd8, 0xcf, 0x77, 0xb6, 0x00, 0x79, 0x03, 0x12, 0xb3, 0x86, 0xa6, 0xa3, 0x71, - 0x48, 0x56, 0xb1, 0x6e, 0x34, 0xf8, 0x05, 0x3e, 0x56, 0x40, 0x8f, 0x41, 0xbf, 0xda, 0x30, 0x9a, - 0xba, 0xc3, 0x8e, 0x3b, 0x8a, 0x87, 0xbe, 0x74, 0x63, 0xb2, 0xef, 0xcf, 0x6e, 0x4c, 0xc6, 0x17, - 0x74, 0xe7, 0xeb, 0xaf, 0x3c, 0x02, 0x9c, 0xd4, 0x82, 0xee, 0x28, 0x1c, 0xb0, 0x90, 0xf8, 0xee, - 0xcb, 0x93, 0x92, 0xfc, 0x2c, 0x0c, 0xcc, 0xe1, 0xca, 0x7e, 0x28, 0xcf, 0xe1, 0x8a, 0x8f, 0xf2, - 0x1c, 0xae, 0x84, 0x28, 0x9f, 0x86, 0xd4, 0x82, 0xee, 0xb0, 0xeb, 0x97, 0x0f, 0x41, 0x5c, 0xd3, - 0xd9, 0x8d, 0x9e, 0xae, 0xbc, 0x11, 0x28, 0x82, 0x38, 0x87, 0x2b, 0x2e, 0x62, 0x15, 0x57, 0xc2, - 0x88, 0xad, 0x5d, 0x13, 0xa8, 0xe2, 0xdc, 0x9f, 0xfe, 0xe7, 0x89, 0xbe, 0x17, 0x5f, 0x9d, 0xe8, - 0xeb, 0xa8, 0x55, 0xb9, 0xa3, 0x56, 0xed, 0xea, 0x0e, 0x3b, 0xa8, 0x71, 0x35, 0xfb, 0x97, 0xfd, - 0x20, 0x73, 0x18, 0xdb, 0x51, 0x77, 0x34, 0xbd, 0xe6, 0x2a, 0x57, 0x6d, 0x3a, 0xdb, 0x57, 0xb9, - 0x76, 0x0f, 0x72, 0x2e, 0x38, 0xcc, 0xbe, 0x15, 0x9c, 0x8f, 0x30, 0x23, 0xf9, 0x2f, 0xe2, 0x80, - 0xd6, 0x1c, 0x75, 0x07, 0xcf, 0x34, 0x9d, 0x6d, 0xc3, 0xd2, 0xae, 0x32, 0x87, 0x8a, 0x01, 0x1a, - 0xea, 0x95, 0xb2, 0x63, 0xec, 0x60, 0xdd, 0xa6, 0x82, 0x1a, 0x3c, 0x71, 0x68, 0xba, 0x8d, 0xc9, - 0x4d, 0x13, 0x25, 0x17, 0x1f, 0xfa, 0xd4, 0xb7, 0x26, 0x1f, 0x88, 0x96, 0x02, 0x05, 0x26, 0x19, - 0xfe, 0x95, 0x75, 0x4a, 0x18, 0x5d, 0x02, 0x76, 0xd3, 0xa3, 0x5c, 0xd7, 0x6c, 0x87, 0x5f, 0x16, - 0x3f, 0x39, 0xdd, 0x7e, 0xec, 0xd3, 0xad, 0x6c, 0x4e, 0x5f, 0x52, 0xeb, 0x5a, 0x55, 0x75, 0x0c, - 0xcb, 0xbe, 0xd0, 0xa7, 0xa4, 0x29, 0xa9, 0x45, 0xcd, 0x76, 0xd0, 0x3a, 0xa4, 0xab, 0x58, 0xdf, - 0x65, 0x64, 0xe3, 0xb7, 0x46, 0x36, 0x45, 0x28, 0x51, 0xaa, 0xcf, 0x02, 0x52, 0xfd, 0x70, 0xe2, - 0x75, 0x14, 0xbb, 0xe4, 0xd9, 0x81, 0x7c, 0x80, 0x32, 0x7d, 0xcc, 0x31, 0xaa, 0x86, 0xab, 0xf2, - 0x6f, 0x01, 0xf0, 0xfa, 0x44, 0x27, 0x60, 0x40, 0xad, 0x56, 0x2d, 0x6c, 0xdb, 0xf4, 0x14, 0x32, - 0x5d, 0xcc, 0x7d, 0xfd, 0x95, 0x47, 0xc6, 0x39, 0xfd, 0x19, 0xd6, 0xc2, 0x16, 0xf6, 0x8a, 0x00, - 0x2c, 0x8c, 0x7e, 0xfd, 0x95, 0x47, 0x86, 0x02, 0x7d, 0x15, 0x33, 0x00, 0x97, 0x5d, 0xa2, 0xc7, - 0x3e, 0x2a, 0xc1, 0x68, 0x0b, 0x2f, 0x48, 0x86, 0x89, 0x99, 0x8d, 0xf5, 0x0b, 0x2b, 0xca, 0xc2, - 0x73, 0x33, 0xeb, 0x0b, 0x2b, 0xcb, 0x65, 0xf6, 0x22, 0x61, 0x79, 0x6d, 0xb5, 0x34, 0xbb, 0x70, - 0x7e, 0xa1, 0x34, 0x97, 0xed, 0x43, 0x93, 0x70, 0xb8, 0x0d, 0xcc, 0x5c, 0x69, 0xb1, 0x34, 0x3f, - 0xb3, 0x5e, 0xca, 0x4a, 0xe8, 0x1e, 0xb8, 0xbb, 0x2d, 0x11, 0x17, 0x24, 0xd6, 0x01, 0x44, 0x29, - 0xb9, 0x20, 0xf1, 0xe2, 0xf9, 0x8e, 0xf3, 0xeb, 0xe1, 0xae, 0x96, 0x75, 0xc5, 0x9d, 0x48, 0xc1, - 0x99, 0xf6, 0xae, 0x18, 0x1c, 0x0a, 0x47, 0x34, 0x55, 0xdf, 0xed, 0xf0, 0x28, 0xb5, 0xfd, 0xcc, - 0x92, 0x2f, 0x40, 0x7c, 0x46, 0xdf, 0x45, 0x87, 0x58, 0xba, 0x5f, 0x6e, 0x5a, 0x75, 0xee, 0xc7, - 0x06, 0x48, 0x79, 0xc3, 0xaa, 0x13, 0xff, 0x26, 0xde, 0x21, 0x48, 0x47, 0x33, 0xfc, 0x71, 0x41, - 0x21, 0xfb, 0xc1, 0x97, 0x27, 0xfb, 0x3e, 0xf3, 0xf2, 0x64, 0xdf, 0x0f, 0x3e, 0x36, 0xd9, 0xf7, - 0xe2, 0x37, 0xa7, 0xfa, 0x8a, 0x3b, 0xe1, 0xe1, 0x7d, 0x21, 0x32, 0xd8, 0xa7, 0x66, 0xf4, 0x5d, - 0xea, 0xb0, 0x56, 0xa5, 0xe7, 0x92, 0x74, 0x70, 0xe2, 0x7c, 0x77, 0x22, 0x7c, 0xbe, 0xfb, 0x0c, - 0xae, 0xd7, 0x2f, 0xea, 0xc6, 0x0b, 0x54, 0xab, 0x9e, 0x0c, 0x3e, 0x10, 0x83, 0x89, 0x96, 0xa8, - 0xce, 0x13, 0xa0, 0x4e, 0xaf, 0x73, 0x0b, 0x90, 0x9a, 0x13, 0x79, 0x55, 0x0e, 0x06, 0x6c, 0x5c, - 0x31, 0xf4, 0x2a, 0xf3, 0x01, 0x71, 0x45, 0x14, 0xc9, 0xb0, 0x75, 0x55, 0x37, 0x6c, 0xfe, 0x24, - 0x80, 0x15, 0x8a, 0xbf, 0x2a, 0xed, 0x2d, 0x9d, 0x19, 0x12, 0x3d, 0x89, 0x61, 0x3e, 0x16, 0x79, - 0xe2, 0xbd, 0x43, 0x46, 0xe9, 0x0e, 0x22, 0x70, 0xea, 0xdd, 0xab, 0x54, 0x7e, 0x25, 0x06, 0x93, - 0x61, 0xa9, 0x90, 0xac, 0xd2, 0x76, 0xd4, 0x86, 0xd9, 0x49, 0x2c, 0xe7, 0x20, 0xbd, 0x2e, 0x60, - 0xf6, 0x2c, 0x97, 0xeb, 0x7b, 0x94, 0xcb, 0xb0, 0xdb, 0x95, 0x10, 0xcc, 0x89, 0x1e, 0x05, 0xe3, - 0x8e, 0x63, 0x5f, 0x92, 0xf9, 0x54, 0x02, 0xee, 0xa6, 0x6f, 0xc6, 0xac, 0x86, 0xa6, 0x3b, 0xc7, - 0x2b, 0xd6, 0xae, 0xe9, 0xd0, 0xbc, 0xd2, 0xd8, 0xe2, 0x72, 0x19, 0xf5, 0x9a, 0xa7, 0x59, 0x73, - 0x87, 0x99, 0xb3, 0x05, 0xc9, 0x55, 0x82, 0x47, 0x24, 0xe2, 0x18, 0x8e, 0x5a, 0xe7, 0x92, 0x62, - 0x05, 0x52, 0xcb, 0xde, 0x99, 0xc5, 0x58, 0xad, 0x26, 0x9e, 0x98, 0xd5, 0xb1, 0xba, 0xc5, 0xae, - 0xeb, 0xc7, 0xe9, 0x84, 0x4a, 0x91, 0x0a, 0x7a, 0x33, 0x7f, 0x1c, 0x92, 0x6a, 0x93, 0xdd, 0x34, - 0x89, 0x93, 0x99, 0x46, 0x0b, 0xf2, 0x45, 0x18, 0xe0, 0xe7, 0xdd, 0x28, 0x0b, 0xf1, 0x1d, 0xbc, - 0x4b, 0xfb, 0xc9, 0x28, 0xe4, 0x27, 0x9a, 0x86, 0x24, 0x65, 0x9e, 0x87, 0x96, 0xdc, 0x74, 0x0b, - 0xf7, 0xd3, 0x94, 0x49, 0x85, 0x81, 0xc9, 0x4f, 0x41, 0x6a, 0xce, 0x68, 0x68, 0xba, 0x11, 0xa4, - 0x96, 0x66, 0xd4, 0x28, 0xcf, 0x66, 0x93, 0xe7, 0x2c, 0x0a, 0x2b, 0xa0, 0x83, 0xd0, 0xcf, 0x9e, - 0x6f, 0xf0, 0xdb, 0x32, 0xbc, 0x24, 0xcf, 0xc2, 0x00, 0xa5, 0xbd, 0x62, 0x22, 0xc4, 0x1f, 0xfe, - 0xf1, 0x77, 0x22, 0x34, 0x73, 0xe6, 0xe4, 0x63, 0x1e, 0xb3, 0x08, 0x12, 0x55, 0xd5, 0x51, 0xf9, - 0xb8, 0xe9, 0x6f, 0xf9, 0xcd, 0x90, 0xe2, 0x44, 0x48, 0x58, 0x88, 0x1b, 0xa6, 0xcd, 0xef, 0xbb, - 0xe4, 0x3b, 0x0d, 0x65, 0xc5, 0x2c, 0x26, 0x48, 0x46, 0xa3, 0x10, 0xe0, 0xa2, 0xd2, 0xd1, 0xa9, - 0x9e, 0xf1, 0x39, 0x55, 0x9f, 0xca, 0x7d, 0x3f, 0x99, 0x4a, 0x5b, 0xcc, 0xc1, 0x35, 0x96, 0x8f, - 0xc5, 0x60, 0xc2, 0xd7, 0x7a, 0x19, 0x5b, 0xb6, 0x66, 0xe8, 0x3c, 0xd2, 0x33, 0x6b, 0x41, 0x3e, - 0x26, 0x79, 0x7b, 0x07, 0x73, 0x79, 0x13, 0xc4, 0x67, 0x4c, 0x13, 0xe5, 0x21, 0x45, 0xcb, 0x15, - 0x83, 0xd9, 0x4b, 0x42, 0x71, 0xcb, 0xa4, 0xcd, 0x36, 0xb6, 0x9c, 0x17, 0x54, 0xcb, 0x7d, 0xe1, - 0x28, 0xca, 0xf2, 0x59, 0x48, 0xcf, 0x1a, 0xba, 0x8d, 0x75, 0xbb, 0x49, 0xe7, 0xe0, 0x66, 0xdd, - 0xa8, 0xec, 0x70, 0x0a, 0xac, 0x40, 0x04, 0xae, 0x9a, 0x26, 0xc5, 0x4c, 0x28, 0xe4, 0x27, 0xcb, - 0x28, 0x8b, 0x6b, 0x1d, 0x45, 0x74, 0x76, 0xef, 0x22, 0xe2, 0x83, 0x74, 0x65, 0xf4, 0xff, 0x25, - 0x38, 0xd2, 0x3a, 0xa1, 0x76, 0xf0, 0xae, 0xbd, 0xd7, 0xf9, 0xf4, 0x2c, 0xa4, 0x57, 0xe9, 0x67, - 0x06, 0x2e, 0xe2, 0x5d, 0x94, 0x87, 0x01, 0x5c, 0x3d, 0x71, 0xf2, 0xe4, 0x63, 0x67, 0x99, 0xb5, - 0x5f, 0xe8, 0x53, 0x44, 0x05, 0x9a, 0x80, 0xb4, 0x8d, 0x2b, 0xe6, 0x89, 0x93, 0xa7, 0x76, 0x1e, - 0x63, 0xe6, 0x45, 0x72, 0x23, 0xb7, 0xaa, 0x90, 0x22, 0xa3, 0xfe, 0xee, 0xc7, 0x26, 0xa5, 0x62, - 0x12, 0xe2, 0x76, 0xb3, 0x71, 0x47, 0x6d, 0xe4, 0xc3, 0x49, 0x98, 0xf2, 0x63, 0x52, 0x4f, 0xe5, - 0x66, 0x25, 0x5c, 0x06, 0x59, 0x9f, 0x0c, 0x28, 0x44, 0x87, 0x34, 0xb7, 0xab, 0x24, 0xe5, 0xdf, - 0x91, 0x20, 0xe3, 0x26, 0x51, 0x6b, 0xd8, 0x41, 0xe7, 0xfc, 0xf9, 0x0f, 0x9f, 0x36, 0x87, 0xa7, - 0xc3, 0x7d, 0x79, 0xc9, 0x9e, 0xe2, 0x03, 0x47, 0xa7, 0xa9, 0x21, 0x9a, 0x86, 0xcd, 0x5f, 0xbd, - 0x45, 0xa0, 0xba, 0xc0, 0xe8, 0x61, 0x40, 0xd4, 0xc3, 0x95, 0x2f, 0x1b, 0x8e, 0xa6, 0xd7, 0xca, - 0xa6, 0xf1, 0x02, 0x7f, 0x4b, 0x1c, 0x57, 0xb2, 0xb4, 0xe5, 0x12, 0x6d, 0x58, 0x25, 0xf5, 0x84, - 0xe9, 0xb4, 0x4b, 0x85, 0x84, 0x15, 0x2f, 0xf1, 0x23, 0x4e, 0x40, 0x14, 0xd1, 0x39, 0x18, 0x30, - 0x9b, 0x9b, 0x65, 0xe1, 0x31, 0x06, 0x4f, 0x1c, 0x69, 0x37, 0xff, 0x85, 0x7d, 0x70, 0x0f, 0xd0, - 0x6f, 0x36, 0x37, 0x89, 0xb5, 0xdc, 0x03, 0x99, 0x36, 0xcc, 0x0c, 0x5e, 0xf6, 0xf8, 0xa0, 0x5f, - 0xb7, 0xe0, 0x23, 0x28, 0x9b, 0x96, 0x66, 0x58, 0x9a, 0xb3, 0x4b, 0x33, 0xdb, 0xb8, 0x92, 0x15, - 0x0d, 0xab, 0xbc, 0x5e, 0xde, 0x81, 0x91, 0x35, 0xba, 0xfc, 0xf6, 0x38, 0x3f, 0xe9, 0xf1, 0x27, - 0x45, 0xf3, 0xd7, 0x91, 0xb3, 0x58, 0x0b, 0x67, 0xc5, 0xa7, 0x3b, 0x5a, 0xe7, 0xe9, 0xbd, 0x5b, - 0x67, 0x30, 0x43, 0xfc, 0xab, 0x43, 0x81, 0xc9, 0xc9, 0x8c, 0xd3, 0xef, 0xbe, 0x7a, 0x35, 0xcc, - 0xa8, 0x6c, 0x22, 0xdf, 0x3d, 0xa8, 0xe6, 0x23, 0xdc, 0x68, 0x3e, 0x72, 0x0a, 0xc9, 0x67, 0x61, - 0x68, 0x55, 0xb5, 0x9c, 0x35, 0xec, 0x5c, 0xc0, 0x6a, 0x15, 0x5b, 0xc1, 0xa8, 0x3b, 0x24, 0xa2, - 0x2e, 0x82, 0x04, 0x0d, 0xad, 0x2c, 0xea, 0xd0, 0xdf, 0xf2, 0x36, 0x24, 0xe8, 0xc5, 0x55, 0x37, - 0x22, 0x73, 0x0c, 0x16, 0x91, 0x89, 0x2f, 0xdd, 0x75, 0xb0, 0x2d, 0xd2, 0x5b, 0x5a, 0x40, 0x4f, - 0x88, 0xb8, 0x1a, 0xef, 0x1e, 0x57, 0xb9, 0x21, 0xf2, 0xe8, 0x5a, 0x87, 0x81, 0x22, 0x71, 0xc5, - 0x0b, 0x73, 0x2e, 0x23, 0x92, 0xc7, 0x08, 0x5a, 0x82, 0x11, 0x53, 0xb5, 0x1c, 0xfa, 0x62, 0x67, - 0x9b, 0x8e, 0x82, 0xdb, 0xfa, 0x64, 0xeb, 0xcc, 0x0b, 0x0c, 0x96, 0xf7, 0x32, 0x64, 0xfa, 0x2b, - 0xe5, 0xbf, 0x48, 0x40, 0x3f, 0x17, 0xc6, 0x9b, 0x60, 0x80, 0x8b, 0x95, 0x5b, 0xe7, 0xdd, 0xd3, - 0xad, 0x81, 0x69, 0xda, 0x0d, 0x20, 0x9c, 0x9e, 0xc0, 0x41, 0xf7, 0x43, 0xaa, 0xb2, 0xad, 0x6a, - 0x7a, 0x59, 0xab, 0xf2, 0xed, 0x8a, 0xc1, 0x57, 0x6f, 0x4c, 0x0e, 0xcc, 0x92, 0xba, 0x85, 0x39, - 0x65, 0x80, 0x36, 0x2e, 0x54, 0x49, 0x26, 0xb0, 0x8d, 0xb5, 0xda, 0xb6, 0xc3, 0x67, 0x18, 0x2f, - 0xa1, 0x33, 0x90, 0x20, 0x06, 0xc1, 0xdf, 0x73, 0xe6, 0x5b, 0x36, 0x93, 0xdc, 0x64, 0xaf, 0x98, - 0x22, 0x1d, 0xbf, 0xff, 0x5b, 0x93, 0x92, 0x42, 0x31, 0xd0, 0x2c, 0x0c, 0xd5, 0x55, 0xdb, 0x29, - 0xd3, 0x08, 0x46, 0xba, 0x4f, 0xf2, 0x95, 0x78, 0x8b, 0x40, 0xb8, 0x60, 0x39, 0xeb, 0x83, 0x04, - 0x8b, 0x55, 0x55, 0xd1, 0x51, 0xc8, 0x52, 0x22, 0x15, 0xa3, 0xd1, 0xd0, 0x1c, 0x96, 0x5b, 0xf5, - 0x53, 0xb9, 0x0f, 0x93, 0xfa, 0x59, 0x5a, 0x4d, 0x33, 0xac, 0xc3, 0x90, 0xa6, 0x2f, 0xc8, 0x28, - 0x08, 0xbb, 0x2d, 0x9d, 0x22, 0x15, 0xb4, 0xf1, 0x01, 0x18, 0xf1, 0xfc, 0x23, 0x03, 0x49, 0x31, - 0x2a, 0x5e, 0x35, 0x05, 0x7c, 0x14, 0xc6, 0x75, 0x7c, 0x85, 0xde, 0xdf, 0x0e, 0x40, 0xa7, 0x29, - 0x34, 0x22, 0x6d, 0x97, 0x82, 0x18, 0x6f, 0x80, 0xe1, 0x8a, 0x10, 0x3e, 0x83, 0x05, 0x0a, 0x3b, - 0xe4, 0xd6, 0x52, 0xb0, 0x43, 0x90, 0x52, 0x4d, 0x93, 0x01, 0x0c, 0x72, 0xff, 0x68, 0x9a, 0xb4, - 0xe9, 0x18, 0x8c, 0xd2, 0x31, 0x5a, 0xd8, 0x6e, 0xd6, 0x1d, 0x4e, 0x24, 0x43, 0x61, 0x46, 0x48, - 0x83, 0xc2, 0xea, 0x29, 0xec, 0xbd, 0x30, 0x84, 0x2f, 0x6b, 0x55, 0xac, 0x57, 0x30, 0x83, 0x1b, - 0xa2, 0x70, 0x19, 0x51, 0x49, 0x81, 0x1e, 0x04, 0xd7, 0xef, 0x95, 0x85, 0x4f, 0x1e, 0x66, 0xf4, - 0x44, 0x3d, 0x5f, 0x89, 0xcb, 0x39, 0x48, 0xcc, 0xa9, 0x8e, 0x4a, 0x12, 0x0c, 0xe7, 0x0a, 0x0b, - 0x34, 0x19, 0x85, 0xfc, 0x94, 0xbf, 0x1b, 0x83, 0xc4, 0x25, 0xc3, 0xc1, 0xe8, 0x71, 0x5f, 0x02, - 0x38, 0xdc, 0xce, 0x9e, 0xd7, 0xb4, 0x9a, 0x8e, 0xab, 0x4b, 0x76, 0xcd, 0xf7, 0xb9, 0x07, 0xcf, - 0x9c, 0x62, 0x01, 0x73, 0x1a, 0x87, 0xa4, 0x65, 0x34, 0xf5, 0xaa, 0xb8, 0x68, 0x4c, 0x0b, 0xa8, - 0x04, 0x29, 0xd7, 0x4a, 0x12, 0x51, 0x56, 0x32, 0x42, 0xac, 0x84, 0xd8, 0x30, 0xaf, 0x50, 0x06, - 0x36, 0xb9, 0xb1, 0x14, 0x21, 0xed, 0x3a, 0x2f, 0x6e, 0x6d, 0xbd, 0x19, 0xac, 0x87, 0x46, 0x82, - 0x89, 0xab, 0x7b, 0x57, 0x78, 0xcc, 0xe2, 0xb2, 0x6e, 0x03, 0x97, 0x5e, 0xc0, 0xac, 0xf8, 0xa7, - 0x27, 0x06, 0xe8, 0xb8, 0x3c, 0xb3, 0x62, 0x9f, 0x9f, 0x38, 0x02, 0x69, 0x5b, 0xab, 0xe9, 0xaa, - 0xd3, 0xb4, 0x30, 0xb7, 0x3c, 0xaf, 0x42, 0xfe, 0x82, 0x04, 0xfd, 0xcc, 0x92, 0x7d, 0x72, 0x93, - 0xda, 0xcb, 0x2d, 0xd6, 0x49, 0x6e, 0xf1, 0xfd, 0xcb, 0x6d, 0x06, 0xc0, 0x65, 0xc6, 0xe6, 0x5f, - 0x04, 0x68, 0x93, 0x31, 0x30, 0x16, 0xd7, 0xb4, 0x1a, 0x9f, 0xa8, 0x3e, 0x24, 0xf9, 0x3f, 0x49, - 0x24, 0x89, 0xe5, 0xed, 0x68, 0x06, 0x86, 0x04, 0x5f, 0xe5, 0xad, 0xba, 0x5a, 0xe3, 0xb6, 0x73, - 0x77, 0x47, 0xe6, 0xce, 0xd7, 0xd5, 0x9a, 0x32, 0xc8, 0xf9, 0x21, 0x85, 0xf6, 0x7a, 0x88, 0x75, - 0xd0, 0x43, 0x40, 0xf1, 0xf1, 0xfd, 0x29, 0x3e, 0xa0, 0xa2, 0x44, 0x58, 0x45, 0x9f, 0x8b, 0xd1, - 0xc5, 0x8c, 0x69, 0xd8, 0x6a, 0xfd, 0xb5, 0x98, 0x11, 0x87, 0x21, 0x6d, 0x1a, 0xf5, 0x32, 0x6b, - 0x61, 0x17, 0xf0, 0x53, 0xa6, 0x51, 0x57, 0x5a, 0xd4, 0x9e, 0xbc, 0x4d, 0xd3, 0xa5, 0xff, 0x36, - 0x48, 0x6d, 0x20, 0x2c, 0x35, 0x0b, 0x32, 0x4c, 0x14, 0x3c, 0x96, 0x3d, 0x4a, 0x64, 0x40, 0x83, - 0xa3, 0xd4, 0x1a, 0x7b, 0x19, 0xdb, 0x0c, 0x52, 0xe1, 0x70, 0x04, 0x83, 0xb9, 0xfe, 0x76, 0xab, - 0x60, 0xbf, 0x59, 0x2a, 0x1c, 0x4e, 0xfe, 0x65, 0x09, 0x60, 0x91, 0x48, 0x96, 0x8e, 0x97, 0x44, - 0x21, 0x9b, 0xb2, 0x50, 0x0e, 0xf4, 0x3c, 0xd1, 0x49, 0x69, 0xbc, 0xff, 0x8c, 0xed, 0xe7, 0x7b, - 0x16, 0x86, 0x3c, 0x63, 0xb4, 0xb1, 0x60, 0x66, 0xa2, 0x4b, 0x56, 0xbd, 0x86, 0x1d, 0x25, 0x73, - 0xd9, 0x57, 0x92, 0xff, 0xad, 0x04, 0x69, 0xca, 0xd3, 0x12, 0x76, 0xd4, 0x80, 0x0e, 0xa5, 0xfd, - 0xeb, 0xf0, 0x6e, 0x00, 0x46, 0xc6, 0xd6, 0xae, 0x62, 0x6e, 0x59, 0x69, 0x5a, 0xb3, 0xa6, 0x5d, - 0xc5, 0xe8, 0x94, 0x2b, 0xf0, 0x78, 0x77, 0x81, 0x8b, 0xac, 0x9b, 0x8b, 0xfd, 0x2e, 0x18, 0xa0, - 0x5f, 0xd0, 0xba, 0x62, 0xf3, 0x44, 0xba, 0x5f, 0x6f, 0x36, 0xd6, 0xaf, 0xd8, 0xf2, 0xf3, 0x30, - 0xb0, 0x7e, 0x85, 0xed, 0x8d, 0x1c, 0x86, 0xb4, 0x65, 0x18, 0x3c, 0x26, 0xb3, 0x5c, 0x28, 0x45, - 0x2a, 0x68, 0x08, 0x12, 0xfb, 0x01, 0x31, 0x6f, 0x3f, 0xc0, 0xdb, 0xd0, 0x88, 0xf7, 0xb4, 0xa1, - 0x71, 0xec, 0x4f, 0x24, 0x18, 0xf4, 0xf9, 0x07, 0xf4, 0x18, 0x1c, 0x28, 0x2e, 0xae, 0xcc, 0x5e, - 0x2c, 0x2f, 0xcc, 0x95, 0xcf, 0x2f, 0xce, 0xcc, 0x7b, 0x4f, 0xcc, 0xf2, 0x07, 0xaf, 0x5d, 0x9f, - 0x42, 0x3e, 0xd8, 0x0d, 0x9d, 0xee, 0x28, 0xa1, 0xe3, 0x30, 0x1e, 0x44, 0x99, 0x29, 0xae, 0x95, - 0x96, 0xd7, 0xb3, 0x52, 0xfe, 0xc0, 0xb5, 0xeb, 0x53, 0xa3, 0x3e, 0x8c, 0x99, 0x4d, 0x1b, 0xeb, - 0x4e, 0x2b, 0xc2, 0xec, 0xca, 0xd2, 0xd2, 0xc2, 0x7a, 0x36, 0xd6, 0x82, 0xc0, 0x1d, 0xf6, 0x83, - 0x30, 0x1a, 0x44, 0x58, 0x5e, 0x58, 0xcc, 0xc6, 0xf3, 0xe8, 0xda, 0xf5, 0xa9, 0x61, 0x1f, 0xf4, - 0xb2, 0x56, 0xcf, 0xa7, 0x5e, 0xfa, 0xf8, 0x44, 0xdf, 0x6f, 0xfc, 0xfa, 0x84, 0x44, 0x46, 0x36, - 0x14, 0xf0, 0x11, 0xe8, 0x61, 0xb8, 0x6b, 0x6d, 0x61, 0x7e, 0xb9, 0x34, 0x57, 0x5e, 0x5a, 0x9b, - 0x17, 0x7b, 0xd0, 0x62, 0x74, 0x23, 0xd7, 0xae, 0x4f, 0x0d, 0xf2, 0x21, 0x75, 0x82, 0x5e, 0x55, - 0x4a, 0x97, 0x56, 0xd6, 0x4b, 0x59, 0x89, 0x41, 0xaf, 0x5a, 0xf8, 0xb2, 0xe1, 0xb0, 0x4f, 0xec, - 0x3d, 0x0a, 0x87, 0xda, 0x40, 0xbb, 0x03, 0x1b, 0xbd, 0x76, 0x7d, 0x6a, 0x68, 0xd5, 0xc2, 0x6c, - 0xfe, 0x50, 0x8c, 0x69, 0xc8, 0xb5, 0x62, 0xac, 0xac, 0xae, 0xac, 0xcd, 0x2c, 0x66, 0xa7, 0xf2, - 0xd9, 0x6b, 0xd7, 0xa7, 0x32, 0xc2, 0x19, 0xd2, 0x23, 0x00, 0x77, 0x64, 0x77, 0x72, 0xc5, 0xf3, - 0x8b, 0x27, 0xe0, 0xbe, 0x0e, 0xa7, 0x4f, 0xe2, 0xdc, 0x62, 0x5f, 0xe7, 0x4f, 0x1d, 0xf7, 0xd9, - 0xf3, 0x11, 0xdb, 0xcf, 0xd1, 0x4b, 0xa7, 0xfd, 0x9f, 0x6d, 0xe5, 0xbb, 0x2e, 0xee, 0xe4, 0xf7, - 0x49, 0x30, 0x7c, 0x41, 0xb3, 0x1d, 0xc3, 0xd2, 0x2a, 0x6a, 0x9d, 0x3e, 0x2c, 0x3b, 0xd5, 0xab, - 0x6f, 0x0d, 0x4d, 0xf5, 0x27, 0xa1, 0xff, 0xb2, 0x5a, 0x67, 0x4e, 0x2d, 0x4e, 0xbf, 0x83, 0xd3, - 0xe1, 0x30, 0xc8, 0x75, 0x6d, 0x82, 0x00, 0x43, 0x93, 0xbf, 0x11, 0x83, 0x11, 0x3a, 0x19, 0x6c, - 0xf6, 0x85, 0x34, 0xb2, 0xc6, 0x5a, 0x85, 0x84, 0xa5, 0x3a, 0x7c, 0xd3, 0xb0, 0xf8, 0x46, 0x7e, - 0x4a, 0x79, 0x7f, 0x0f, 0xa7, 0x6c, 0xad, 0x07, 0x99, 0x94, 0x12, 0x7a, 0x1e, 0x52, 0x0d, 0xf5, - 0x4a, 0x99, 0x52, 0x65, 0xeb, 0x98, 0x95, 0xbd, 0x51, 0xbd, 0x79, 0x63, 0x72, 0x64, 0x57, 0x6d, - 0xd4, 0x0b, 0xb2, 0xa0, 0x23, 0x87, 0x3a, 0x1a, 0x68, 0xa8, 0x57, 0x08, 0xfb, 0xe8, 0xe7, 0x61, - 0x84, 0xc0, 0x54, 0xb6, 0x55, 0xbd, 0x86, 0x59, 0x97, 0x74, 0x7b, 0xb4, 0x78, 0x69, 0xcf, 0x5d, - 0x1e, 0xf4, 0xba, 0xf4, 0x91, 0x0b, 0xf7, 0x3c, 0xd4, 0x50, 0xaf, 0xcc, 0xd2, 0x66, 0xd2, 0x7f, - 0x21, 0xf5, 0xc1, 0x97, 0x27, 0xfb, 0xe8, 0x89, 0xf1, 0xd7, 0x24, 0x00, 0x4f, 0xb6, 0xe8, 0x67, - 0x20, 0x5b, 0x71, 0x4b, 0x94, 0x92, 0x38, 0xdf, 0x7c, 0xa0, 0x93, 0xd6, 0x42, 0x9a, 0x61, 0x51, - 0xfc, 0xab, 0x37, 0x26, 0x25, 0x65, 0xa4, 0x12, 0x52, 0xda, 0xdb, 0x60, 0xb0, 0x69, 0x56, 0x55, - 0x07, 0x97, 0xe9, 0x8a, 0x2f, 0x16, 0x99, 0x11, 0x4c, 0x10, 0x5a, 0x37, 0x6f, 0x4c, 0x22, 0x36, - 0x48, 0x1f, 0xb2, 0x4c, 0xf3, 0x04, 0x60, 0x35, 0x04, 0xc1, 0x37, 0xa6, 0x2f, 0x4b, 0x30, 0x38, - 0xe7, 0xbb, 0x1c, 0x9a, 0x83, 0x81, 0x86, 0xa1, 0x6b, 0x3b, 0xdc, 0x72, 0xd3, 0x8a, 0x28, 0xa2, - 0x3c, 0xa4, 0xd8, 0xab, 0x5c, 0x67, 0x57, 0x6c, 0x9a, 0x8a, 0x32, 0xc1, 0x7a, 0x01, 0x6f, 0xda, - 0x9a, 0xd0, 0x8d, 0x22, 0x8a, 0xe8, 0x3c, 0x64, 0x6d, 0x5c, 0x69, 0x5a, 0x9a, 0xb3, 0x5b, 0xae, - 0x18, 0xba, 0xa3, 0x56, 0x1c, 0xf6, 0xbe, 0xb3, 0x78, 0xf8, 0xe6, 0x8d, 0xc9, 0xbb, 0x18, 0xaf, - 0x61, 0x08, 0x59, 0x19, 0x11, 0x55, 0xb3, 0xac, 0x86, 0xf4, 0x50, 0xc5, 0x8e, 0xaa, 0xd5, 0xed, - 0x1c, 0xbb, 0x22, 0x21, 0x8a, 0xbe, 0xb1, 0xfc, 0x60, 0xc0, 0xbf, 0x05, 0xf6, 0x73, 0x90, 0x35, - 0x4c, 0x6c, 0x05, 0x52, 0x56, 0x36, 0x03, 0x1e, 0xf7, 0x7a, 0x0e, 0x43, 0xc8, 0x1d, 0xcf, 0x47, - 0x47, 0x04, 0xa8, 0x48, 0x73, 0x1d, 0xa2, 0x7e, 0xb1, 0xd4, 0x34, 0x9b, 0x9b, 0xde, 0x8e, 0xda, - 0x78, 0x8b, 0x96, 0x66, 0xf4, 0x5d, 0x7f, 0xaf, 0x61, 0x3c, 0xf9, 0x2b, 0x5e, 0xaf, 0xde, 0x0e, - 0xd7, 0x45, 0xbc, 0x4b, 0xcc, 0x82, 0x83, 0xae, 0x52, 0x48, 0x92, 0xb8, 0x3e, 0xaf, 0x6a, 0x75, - 0xf1, 0xfd, 0x02, 0x85, 0x97, 0x50, 0x01, 0xfa, 0x6d, 0x47, 0x75, 0x9a, 0x36, 0x3f, 0x45, 0x96, - 0x3b, 0x99, 0x60, 0xd1, 0xd0, 0xab, 0x6b, 0x14, 0x52, 0xe1, 0x18, 0x68, 0x1d, 0xfa, 0xf9, 0xf1, - 0x7c, 0x72, 0xcf, 0x1e, 0xa2, 0xcd, 0xfd, 0x0d, 0x46, 0x0b, 0xbd, 0x5b, 0x82, 0x6c, 0x15, 0xd7, - 0x71, 0x8d, 0xe5, 0x69, 0xdb, 0x2a, 0x59, 0xce, 0xd0, 0x6f, 0x0d, 0x16, 0x9f, 0xd9, 0xf3, 0xcc, - 0xe5, 0x82, 0x0b, 0xd3, 0x0b, 0x4f, 0xdd, 0x11, 0x17, 0x60, 0x8d, 0xb6, 0xa3, 0x8b, 0x81, 0xab, - 0xcf, 0xfc, 0xf3, 0x9c, 0xf7, 0x76, 0x92, 0x8d, 0x6f, 0x22, 0x88, 0xed, 0x0f, 0xff, 0xc5, 0xe9, - 0xf3, 0x90, 0x6d, 0xea, 0x9b, 0x86, 0x4e, 0x5f, 0x20, 0xf3, 0xe5, 0x03, 0x59, 0x3e, 0xc6, 0xfd, - 0xb6, 0x1c, 0x86, 0x90, 0x95, 0x11, 0xb7, 0xea, 0x02, 0x5b, 0x64, 0x54, 0x61, 0xd8, 0x83, 0xa2, - 0xb3, 0x3b, 0x1d, 0x39, 0xbb, 0xef, 0xe1, 0xb3, 0xfb, 0x40, 0xb8, 0x17, 0x6f, 0x82, 0x0f, 0xb9, - 0x95, 0x04, 0x0d, 0x5d, 0x00, 0xf0, 0x7c, 0x0a, 0xdd, 0x06, 0x19, 0xec, 0x6c, 0x15, 0x9e, 0x63, - 0x12, 0xcb, 0x49, 0x0f, 0x17, 0x5d, 0x93, 0x60, 0xac, 0xa1, 0xe9, 0x65, 0x1b, 0xd7, 0xb7, 0xca, - 0x5c, 0xc2, 0x84, 0x26, 0xfd, 0x82, 0x54, 0xf1, 0xb9, 0xbd, 0x59, 0xcb, 0xcd, 0x1b, 0x93, 0x79, - 0xee, 0x86, 0x5b, 0x49, 0xca, 0x21, 0x5b, 0x1a, 0x6d, 0x68, 0xfa, 0x1a, 0xae, 0x6f, 0xcd, 0xb9, - 0x10, 0x85, 0xcc, 0x4b, 0x2f, 0x4f, 0xf6, 0xf1, 0x29, 0xdf, 0x27, 0xaf, 0xd2, 0x9d, 0x7a, 0x3e, - 0x25, 0xb1, 0x8d, 0x4e, 0x41, 0x5a, 0x15, 0x85, 0xc8, 0x2b, 0x0f, 0x1e, 0x28, 0x73, 0x22, 0x2f, - 0x7e, 0x73, 0x4a, 0x92, 0xbf, 0x29, 0x41, 0xff, 0xdc, 0xa5, 0x55, 0x55, 0xb3, 0x90, 0x0a, 0xa3, - 0x9e, 0xc1, 0x05, 0x5d, 0xc8, 0x13, 0x37, 0x6f, 0x4c, 0xe6, 0xc2, 0x36, 0x19, 0xe9, 0x43, 0xbc, - 0xf9, 0x20, 0x9c, 0x88, 0xda, 0x69, 0x61, 0x1d, 0xe8, 0xa2, 0x05, 0xa4, 0x4b, 0x17, 0xe1, 0xe5, - 0x78, 0x48, 0x60, 0x25, 0x18, 0x60, 0xa3, 0xb3, 0x51, 0x01, 0x92, 0x26, 0xf9, 0xc1, 0x0f, 0x34, - 0x26, 0x3a, 0xce, 0x0a, 0x0a, 0xef, 0x6e, 0xc0, 0x12, 0x14, 0x92, 0x66, 0xc0, 0xdc, 0xa5, 0x4b, - 0xeb, 0x96, 0x66, 0xd6, 0xb1, 0xf3, 0x5a, 0x48, 0xaa, 0x0e, 0x07, 0x7c, 0xab, 0x3e, 0xab, 0x12, - 0x92, 0xd6, 0x99, 0x9b, 0x37, 0x26, 0x8f, 0x84, 0xa5, 0xe5, 0x03, 0xeb, 0xdc, 0xd5, 0x98, 0xb7, - 0x2e, 0xb4, 0x2a, 0x6d, 0x7b, 0xab, 0xda, 0x8e, 0xdb, 0x5b, 0xbc, 0x73, 0x6f, 0x3e, 0xb0, 0x5e, - 0x7a, 0x9b, 0xb3, 0x9d, 0xf6, 0x2a, 0x5a, 0x83, 0x41, 0x4f, 0xb4, 0x36, 0x9a, 0x83, 0x94, 0xc3, - 0x7f, 0x73, 0x4d, 0xc9, 0x9d, 0x35, 0x25, 0xd0, 0xb8, 0xb6, 0x5c, 0x4c, 0xf9, 0xf3, 0x44, 0x61, - 0xee, 0x2c, 0xfa, 0xc9, 0x30, 0x6d, 0x12, 0xb8, 0x78, 0x5c, 0x89, 0xdf, 0x86, 0xd4, 0x96, 0xd3, - 0x0a, 0x69, 0xe3, 0xf7, 0x63, 0x30, 0xb6, 0x21, 0x1c, 0xeb, 0x4f, 0x9c, 0x04, 0x57, 0x61, 0x00, - 0xeb, 0x8e, 0xa5, 0x51, 0x11, 0x12, 0xdb, 0x7a, 0xb4, 0x93, 0x6d, 0xb5, 0x91, 0x01, 0xfd, 0xa2, - 0x98, 0x38, 0xe2, 0xe0, 0x64, 0x42, 0xd2, 0xfb, 0x74, 0x1c, 0x72, 0x9d, 0x30, 0xd1, 0x2c, 0x8c, - 0x54, 0x2c, 0xcc, 0x2e, 0xc0, 0xf9, 0xf7, 0x59, 0x8b, 0x79, 0x2f, 0x57, 0x0f, 0x01, 0xc8, 0xca, - 0xb0, 0xa8, 0xe1, 0xc1, 0xb4, 0x06, 0x24, 0x75, 0x26, 0x46, 0x4e, 0xef, 0xd1, 0xf5, 0x96, 0x2b, - 0xcb, 0x3c, 0x9a, 0x8a, 0x4e, 0x82, 0x04, 0x58, 0x38, 0x1d, 0xf6, 0x6a, 0x69, 0x3c, 0xfd, 0xdb, - 0x30, 0xa2, 0xe9, 0x9a, 0xa3, 0xa9, 0xf5, 0xf2, 0xa6, 0x5a, 0x57, 0xf5, 0xca, 0x7e, 0xd6, 0x21, - 0x2c, 0x00, 0xf2, 0x6e, 0x43, 0xe4, 0xc2, 0xc1, 0x6f, 0x98, 0xb7, 0x17, 0x59, 0x33, 0xba, 0x04, - 0x03, 0xa2, 0xe3, 0xc4, 0x6d, 0xc8, 0xd3, 0x04, 0x31, 0x5f, 0x02, 0xfd, 0x9b, 0x71, 0x18, 0x55, - 0x70, 0xf5, 0xa7, 0x6a, 0xba, 0x15, 0x35, 0xbd, 0x0d, 0x80, 0x39, 0x12, 0x12, 0x10, 0xf6, 0xa1, - 0xa9, 0x56, 0xc7, 0x94, 0x66, 0xf4, 0xe6, 0x6c, 0xc7, 0xa7, 0xab, 0x4f, 0xc4, 0x21, 0xe3, 0xd7, - 0xd5, 0x4f, 0x63, 0xf0, 0x2d, 0xc5, 0x60, 0xb4, 0xe0, 0x79, 0xc2, 0x04, 0xff, 0x0e, 0x74, 0x07, - 0x4f, 0xd8, 0x32, 0x43, 0xba, 0xbb, 0xc0, 0xff, 0x1d, 0x83, 0xfe, 0x55, 0xd5, 0x52, 0x1b, 0x36, - 0xaa, 0xb4, 0x24, 0xfe, 0x62, 0xb3, 0xb9, 0xe5, 0x6b, 0xff, 0x7c, 0x6f, 0x2b, 0x22, 0xef, 0xff, - 0x60, 0x9b, 0xbc, 0xff, 0x2d, 0x30, 0xdc, 0x50, 0xaf, 0xf8, 0xce, 0x4c, 0xa9, 0x76, 0x86, 0x8a, - 0x87, 0x3c, 0x2a, 0xc1, 0x76, 0x99, 0xee, 0x78, 0x5c, 0xf2, 0xdf, 0x58, 0x19, 0x24, 0x10, 0x5e, - 0x60, 0x20, 0xe8, 0x07, 0xbd, 0xad, 0x05, 0x5f, 0xa3, 0xac, 0x40, 0x43, 0xbd, 0x52, 0x62, 0x05, - 0xb4, 0x08, 0x68, 0xdb, 0xdd, 0x07, 0x2b, 0x7b, 0xe2, 0x24, 0xf8, 0x77, 0xdf, 0xbc, 0x31, 0x79, - 0x88, 0xe1, 0xb7, 0xc2, 0xc8, 0xca, 0xa8, 0x57, 0x29, 0xa8, 0x3d, 0x01, 0x40, 0xc6, 0x55, 0x66, - 0x97, 0xfe, 0xd9, 0xd2, 0xf4, 0xc0, 0xcd, 0x1b, 0x93, 0xa3, 0x8c, 0x8a, 0xd7, 0x26, 0x2b, 0x69, - 0x52, 0x98, 0x23, 0xbf, 0x7d, 0x33, 0xe4, 0xe3, 0x12, 0x20, 0x2f, 0xe4, 0x28, 0xd8, 0x36, 0xc9, - 0x5a, 0x9a, 0xac, 0x8b, 0x7c, 0x6b, 0x18, 0xa9, 0xfb, 0xba, 0xc8, 0xc3, 0x17, 0xeb, 0x22, 0xdf, - 0x8c, 0x3b, 0xeb, 0x39, 0xe4, 0x58, 0xd4, 0xbd, 0x76, 0x6e, 0x22, 0x61, 0x9f, 0xdb, 0x27, 0x7f, - 0x43, 0x82, 0x43, 0x2d, 0x16, 0xe5, 0x32, 0xfb, 0x73, 0x80, 0x2c, 0x5f, 0x23, 0xff, 0xa8, 0x27, - 0x63, 0x7a, 0xcf, 0x06, 0x3a, 0x6a, 0xb5, 0xf8, 0xf6, 0x3b, 0x15, 0x53, 0xd8, 0x13, 0x8b, 0x7f, - 0x23, 0xc1, 0xb8, 0x9f, 0x19, 0x77, 0x58, 0xcb, 0x90, 0xf1, 0xf3, 0xc2, 0x07, 0x74, 0x5f, 0x2f, - 0x03, 0xe2, 0x63, 0x09, 0xe0, 0xa3, 0xa7, 0xbd, 0xc9, 0xcb, 0xf6, 0x4d, 0x1f, 0xeb, 0x59, 0x36, - 0x82, 0xa7, 0xf0, 0x24, 0x4e, 0x50, 0xed, 0x7c, 0x24, 0x06, 0x89, 0x55, 0xc3, 0xa8, 0xa3, 0x77, - 0xc2, 0xa8, 0x6e, 0x38, 0x65, 0x62, 0x67, 0xb8, 0xea, 0x7f, 0xcd, 0x90, 0x2e, 0x3e, 0xbd, 0x37, - 0x91, 0x7d, 0xef, 0xc6, 0x64, 0x2b, 0xa9, 0x90, 0x1c, 0x47, 0x74, 0xc3, 0x29, 0xd2, 0x76, 0xfe, - 0xbc, 0xe1, 0x9a, 0x04, 0x43, 0xc1, 0xbe, 0x99, 0xcb, 0xc5, 0x7b, 0xee, 0x3b, 0x48, 0xe6, 0xe6, - 0x8d, 0xc9, 0x71, 0x6f, 0x3a, 0xb9, 0xd5, 0xe1, 0x18, 0x97, 0xd9, 0xf4, 0x31, 0xc3, 0xee, 0xfd, - 0xfd, 0xe0, 0xe5, 0x49, 0xe9, 0xd8, 0xe7, 0x25, 0x00, 0x6f, 0x43, 0x09, 0x3d, 0x0c, 0x77, 0x15, - 0x57, 0x96, 0xe7, 0xca, 0x6b, 0xeb, 0x33, 0xeb, 0x1b, 0x6b, 0xc1, 0xcb, 0xff, 0xe2, 0xdc, 0xc4, - 0x36, 0x71, 0x45, 0xdb, 0xd2, 0x70, 0x15, 0xdd, 0x0f, 0xe3, 0x41, 0x68, 0x52, 0x2a, 0xcd, 0x65, - 0xa5, 0x7c, 0xe6, 0xda, 0xf5, 0xa9, 0x14, 0x4b, 0x1b, 0x71, 0x15, 0x1d, 0x85, 0x03, 0xad, 0x70, - 0x0b, 0xcb, 0xf3, 0xd9, 0x58, 0x7e, 0xe8, 0xda, 0xf5, 0xa9, 0xb4, 0x9b, 0x5f, 0x22, 0x19, 0x90, - 0x1f, 0x92, 0xd3, 0x8b, 0xe7, 0xe1, 0xda, 0xf5, 0xa9, 0x7e, 0x26, 0xcf, 0x7c, 0xe2, 0xa5, 0x8f, - 0x4f, 0xf4, 0xdd, 0xf6, 0x27, 0x02, 0x9f, 0x48, 0x75, 0x3c, 0x0e, 0xa9, 0x61, 0x1d, 0xdb, 0x9a, - 0xbd, 0xaf, 0xe3, 0x90, 0x9e, 0x8e, 0x58, 0xba, 0xbd, 0xca, 0xfa, 0xe3, 0x24, 0x64, 0xe6, 0x19, - 0x03, 0x44, 0x47, 0x18, 0xbd, 0x11, 0xfa, 0x4d, 0x1a, 0x8c, 0xdc, 0xa3, 0xd7, 0x0e, 0x13, 0x85, - 0x85, 0x2c, 0xf7, 0xfe, 0x1f, 0x0b, 0x60, 0x36, 0xbf, 0x00, 0xc4, 0xee, 0x25, 0x7a, 0x37, 0xed, - 0x32, 0xc5, 0x85, 0x3d, 0x67, 0x57, 0x7c, 0xbf, 0x2c, 0x4c, 0x4f, 0x66, 0x77, 0x89, 0xd6, 0x49, - 0x0d, 0xbb, 0x51, 0xf8, 0x0b, 0x12, 0x1c, 0xa0, 0x50, 0x5e, 0x98, 0xa7, 0x90, 0x62, 0xc9, 0x72, - 0xac, 0xd3, 0x10, 0x16, 0x55, 0xdb, 0xbb, 0x1f, 0xc4, 0xee, 0x00, 0xde, 0xc7, 0xc3, 0xe9, 0x11, - 0x5f, 0xe7, 0x61, 0xb2, 0xb2, 0x32, 0x56, 0x6f, 0xc1, 0xb4, 0xd1, 0x7c, 0xe0, 0x12, 0x68, 0x62, - 0x6f, 0xc7, 0x33, 0xfe, 0x0b, 0xa1, 0x4f, 0xc1, 0xa0, 0xe7, 0x83, 0x6c, 0xfe, 0xaf, 0x8c, 0x7a, - 0x8f, 0x40, 0x7e, 0x64, 0xf4, 0x5e, 0x09, 0x0e, 0x78, 0x39, 0x81, 0x9f, 0x2c, 0xfb, 0x97, 0x4f, - 0x0f, 0xed, 0x61, 0x39, 0x17, 0x16, 0x4e, 0x5b, 0xba, 0xb2, 0x32, 0xde, 0x6c, 0x45, 0x25, 0x0b, - 0xc9, 0x21, 0xbf, 0x47, 0xb6, 0x73, 0xe2, 0xab, 0xa6, 0xbd, 0xbb, 0xf4, 0x20, 0x01, 0xf6, 0x6f, - 0x68, 0x4c, 0xc3, 0x72, 0x70, 0x95, 0xee, 0xb2, 0xa6, 0x14, 0xb7, 0x2c, 0x6f, 0x03, 0x6a, 0x55, - 0x6e, 0xf0, 0xb5, 0x93, 0xd4, 0xd3, 0x6b, 0x27, 0x34, 0x0e, 0x49, 0xff, 0x85, 0x51, 0x56, 0x28, - 0xa4, 0x5e, 0xe2, 0xe1, 0xf9, 0xb6, 0x3b, 0x8a, 0x6f, 0xc5, 0xe0, 0x98, 0xff, 0xb0, 0xf1, 0xed, - 0x4d, 0x6c, 0xed, 0xba, 0xf3, 0xda, 0x54, 0x6b, 0x9a, 0xee, 0x7f, 0x53, 0x73, 0xc8, 0x9f, 0x50, - 0x50, 0x58, 0x21, 0x41, 0xf9, 0x25, 0x09, 0x06, 0x57, 0xd5, 0x1a, 0x56, 0xf0, 0xdb, 0x9b, 0xd8, - 0x76, 0xda, 0xbc, 0x59, 0x38, 0x08, 0xfd, 0xc6, 0xd6, 0x96, 0xb8, 0x21, 0x91, 0x50, 0x78, 0x89, - 0x8c, 0xb9, 0xae, 0x35, 0x34, 0x76, 0xb9, 0x30, 0xa1, 0xb0, 0x02, 0x9a, 0x84, 0xc1, 0x8a, 0xd1, - 0xd4, 0xf9, 0x64, 0xcc, 0x25, 0xc4, 0x87, 0x85, 0x9a, 0x3a, 0x9b, 0x8c, 0x28, 0x07, 0x03, 0x16, - 0xbe, 0x8c, 0x2d, 0x9b, 0x7d, 0x4a, 0x35, 0xa5, 0x88, 0xa2, 0xfc, 0x24, 0x64, 0x18, 0x27, 0x3c, - 0xbc, 0x1f, 0x82, 0x14, 0xbd, 0xb7, 0xe7, 0xf1, 0x33, 0x40, 0xca, 0x17, 0xd9, 0xcb, 0x07, 0x46, - 0x9f, 0xb1, 0xc4, 0x0a, 0xc5, 0x62, 0x47, 0x29, 0x1f, 0x8d, 0xf6, 0x27, 0x4c, 0x86, 0xae, 0x84, - 0xff, 0x30, 0x09, 0x07, 0xf8, 0x51, 0xb0, 0x6a, 0x6a, 0xc7, 0xb7, 0x1d, 0x47, 0xbc, 0xc4, 0x01, - 0x9e, 0x65, 0xab, 0xa6, 0x26, 0xef, 0x42, 0xe2, 0x82, 0xe3, 0x98, 0xe8, 0x18, 0x24, 0xad, 0x66, - 0x1d, 0x8b, 0xad, 0x35, 0xf7, 0xe8, 0x46, 0x35, 0xb5, 0x69, 0x02, 0xa0, 0x34, 0xeb, 0x58, 0x61, - 0x20, 0xa8, 0x04, 0x93, 0x5b, 0xcd, 0x7a, 0x7d, 0xb7, 0x5c, 0xc5, 0xf4, 0x7f, 0xc3, 0xb9, 0xff, - 0x5d, 0x05, 0x5f, 0x31, 0x55, 0xf1, 0x8d, 0x56, 0x22, 0x98, 0x23, 0x14, 0x6c, 0x8e, 0x42, 0x89, - 0xff, 0xac, 0x52, 0x12, 0x30, 0xf2, 0x9f, 0xc5, 0x20, 0x25, 0x48, 0xd3, 0xa7, 0x08, 0xb8, 0x8e, - 0x2b, 0x8e, 0x21, 0x0e, 0xdc, 0xdc, 0x32, 0x42, 0x10, 0xaf, 0x71, 0xe5, 0xa5, 0x2f, 0xf4, 0x29, - 0xa4, 0x40, 0xea, 0xdc, 0x07, 0x22, 0xa4, 0xce, 0x6c, 0x12, 0x7d, 0x26, 0x4c, 0x43, 0xac, 0x35, - 0x2f, 0xf4, 0x29, 0xb4, 0x84, 0x72, 0xd0, 0x4f, 0xa6, 0x93, 0xc3, 0xb4, 0x45, 0xea, 0x79, 0x19, - 0x1d, 0x84, 0xa4, 0xa9, 0x3a, 0x15, 0x76, 0x77, 0x93, 0x34, 0xb0, 0x22, 0x3a, 0x0d, 0xfd, 0xec, - 0x13, 0x04, 0xe1, 0x7f, 0xbc, 0x44, 0x84, 0xc1, 0xbe, 0xf5, 0x48, 0xf8, 0x5e, 0x55, 0x1d, 0x07, - 0x5b, 0x3a, 0x21, 0xc8, 0xc0, 0x11, 0x82, 0xc4, 0xa6, 0x51, 0xdd, 0xe5, 0xff, 0x0c, 0x8a, 0xfe, - 0xe6, 0xff, 0x7d, 0x86, 0xda, 0x43, 0x99, 0x36, 0xb2, 0xff, 0x81, 0x97, 0x11, 0x95, 0x45, 0x02, - 0x54, 0x82, 0x31, 0xb5, 0x5a, 0xd5, 0xd8, 0xff, 0x65, 0x2a, 0x6f, 0x6a, 0xd4, 0xad, 0xd8, 0xf4, - 0x3f, 0x1c, 0x76, 0xd2, 0x05, 0xf2, 0x10, 0x8a, 0x1c, 0xbe, 0x98, 0x86, 0x01, 0x93, 0x31, 0x25, - 0x9f, 0x83, 0xd1, 0x16, 0x4e, 0x09, 0x7f, 0x3b, 0x9a, 0x5e, 0x15, 0xaf, 0x66, 0xc8, 0x6f, 0x52, - 0x47, 0xbf, 0xce, 0xca, 0x8e, 0x32, 0xe9, 0xef, 0xe2, 0xbb, 0x3b, 0x3f, 0xae, 0x1a, 0xf6, 0x3d, - 0xae, 0x52, 0x4d, 0xad, 0x98, 0xa6, 0xf4, 0xf9, 0x93, 0xaa, 0x99, 0xd6, 0x27, 0x55, 0x35, 0xac, - 0x8b, 0x68, 0x4e, 0x9a, 0x54, 0x53, 0xb3, 0xa9, 0x39, 0x7a, 0x5f, 0x8b, 0xb5, 0xcf, 0xf9, 0x7e, - 0xd3, 0x17, 0x56, 0x89, 0xf9, 0x99, 0xd5, 0x05, 0xd7, 0x8e, 0xbf, 0x18, 0x83, 0x23, 0x3e, 0x3b, - 0xf6, 0x01, 0xb7, 0x9a, 0x73, 0xbe, 0xbd, 0xc5, 0xf7, 0xf0, 0x10, 0xff, 0x22, 0x24, 0x08, 0x3c, - 0x8a, 0xf8, 0xdf, 0x30, 0xb9, 0xcf, 0x7c, 0xe5, 0x5f, 0xcb, 0xc1, 0xc3, 0xcd, 0x80, 0x56, 0x28, - 0x91, 0xe2, 0x7b, 0x7b, 0x97, 0x5f, 0xd6, 0xfb, 0x50, 0xae, 0x7d, 0xfb, 0xc4, 0x18, 0x96, 0xe1, - 0x4b, 0x67, 0x3b, 0xbe, 0x91, 0x66, 0xce, 0xb4, 0x7b, 0x52, 0xb6, 0x07, 0x4f, 0xdd, 0xe9, 0xa1, - 0x49, 0x37, 0x0d, 0xde, 0x7a, 0x7a, 0x77, 0x05, 0x0e, 0x3e, 0x4d, 0xd8, 0xf2, 0x16, 0xef, 0x22, - 0x1a, 0x1c, 0x74, 0xcf, 0x83, 0x25, 0xfe, 0x45, 0x01, 0x96, 0xa2, 0x9f, 0x07, 0xf0, 0x58, 0xe7, - 0xcb, 0xd6, 0xfb, 0xa7, 0x3b, 0x46, 0x99, 0x69, 0x5f, 0x84, 0x51, 0x7c, 0x98, 0xf2, 0xa7, 0x25, - 0xb8, 0xab, 0xa5, 0x6b, 0xee, 0xfe, 0xe7, 0xdb, 0x3c, 0x97, 0xd9, 0x57, 0xa6, 0x34, 0xdf, 0x86, - 0xd9, 0x07, 0x22, 0x99, 0x65, 0x5c, 0x04, 0xb8, 0x7d, 0x16, 0x0e, 0x04, 0x99, 0x15, 0x62, 0x7a, - 0x12, 0x86, 0x83, 0xfb, 0xe7, 0x91, 0x99, 0xc3, 0x50, 0x60, 0x0f, 0x5d, 0x2e, 0x87, 0x35, 0xe0, - 0x4a, 0xa1, 0x04, 0x69, 0x17, 0x94, 0x27, 0xdb, 0x3d, 0x0b, 0xc1, 0xc3, 0x24, 0x82, 0x9e, 0x0a, - 0xf6, 0xe0, 0x4b, 0xbb, 0x6e, 0xd7, 0x30, 0x6e, 0x9b, 0x59, 0x7c, 0x57, 0x82, 0x7b, 0xba, 0x70, - 0xcb, 0x45, 0x73, 0x15, 0xc6, 0x7d, 0x7b, 0x1a, 0x22, 0x22, 0x08, 0x53, 0x39, 0x16, 0x9d, 0x0a, - 0xbb, 0x8b, 0xf6, 0xc3, 0x44, 0x5c, 0x9f, 0xfa, 0xd6, 0xe4, 0x58, 0x6b, 0x9b, 0xad, 0x8c, 0xb5, - 0xee, 0x3c, 0xdc, 0x46, 0x9b, 0x7a, 0x45, 0x82, 0x07, 0x83, 0x43, 0x6d, 0x93, 0x53, 0xbf, 0xfe, - 0x34, 0xf4, 0x0d, 0x09, 0x8e, 0xf5, 0xc2, 0x36, 0x57, 0xd5, 0x26, 0x8c, 0x79, 0xeb, 0x80, 0xb0, - 0xa6, 0xf6, 0xb4, 0xba, 0x60, 0x96, 0x8d, 0x5c, 0x6a, 0x77, 0x40, 0x25, 0xbf, 0x2e, 0xf1, 0xd9, - 0xe8, 0xb7, 0x06, 0x57, 0xfe, 0xc1, 0xad, 0xef, 0x68, 0xf9, 0x07, 0xb6, 0xbf, 0xdb, 0x28, 0x30, - 0xb6, 0x27, 0x05, 0x7a, 0x6b, 0x0a, 0xf9, 0x32, 0x77, 0x9d, 0x6d, 0x36, 0x27, 0xdf, 0x06, 0x63, - 0x6d, 0x66, 0x06, 0x77, 0x1f, 0x7b, 0x98, 0x18, 0x0a, 0x6a, 0xb5, 0x7d, 0xf9, 0xb7, 0x25, 0x98, - 0xa4, 0x1d, 0xb7, 0x51, 0xcf, 0xeb, 0x51, 0x4e, 0x0d, 0xee, 0xf9, 0xda, 0xb2, 0xcb, 0x05, 0xb6, - 0x00, 0xfd, 0xcc, 0xa2, 0xb8, 0x8c, 0xf6, 0x61, 0x92, 0x9c, 0x80, 0xfc, 0xbb, 0xc2, 0xd3, 0xce, - 0x89, 0x01, 0xb5, 0x9f, 0xc7, 0xb7, 0x26, 0x9f, 0xdb, 0x34, 0x8f, 0x7d, 0x62, 0xfa, 0x9a, 0xf0, - 0xb9, 0xed, 0xf9, 0xe6, 0x82, 0xaa, 0xdc, 0x36, 0x9f, 0xcb, 0xa4, 0x76, 0x67, 0x9d, 0xeb, 0x1f, - 0x08, 0xe7, 0xea, 0x8e, 0x29, 0xc2, 0xb9, 0xbe, 0xde, 0x94, 0xe2, 0xba, 0xd9, 0x88, 0x01, 0xfc, - 0x4d, 0x74, 0xb3, 0x7f, 0x10, 0x83, 0x43, 0x74, 0x6c, 0xfe, 0x4d, 0x9c, 0xdb, 0xa9, 0x0c, 0x64, - 0x5b, 0x95, 0xf2, 0x1e, 0xbd, 0x48, 0xd6, 0xb6, 0x2a, 0x97, 0x42, 0x11, 0x13, 0x55, 0x03, 0xdb, - 0x7b, 0x94, 0x4e, 0x3c, 0x8a, 0x4e, 0xd5, 0xb7, 0xaf, 0xd4, 0xc6, 0x38, 0x12, 0xb7, 0xc1, 0x38, - 0xbe, 0x2a, 0x41, 0xbe, 0x9d, 0x00, 0xb9, 0x31, 0x68, 0x70, 0x30, 0x70, 0xe8, 0x13, 0xb6, 0x87, - 0x87, 0x7b, 0xd9, 0x54, 0x0b, 0x4d, 0xd7, 0x03, 0x16, 0xbe, 0xd3, 0xd9, 0xd0, 0x64, 0xd0, 0xde, - 0x5b, 0xd7, 0x24, 0xaf, 0xc3, 0x69, 0xfa, 0x4a, 0x8b, 0xcf, 0xff, 0x1b, 0xb1, 0x9e, 0xf9, 0x2d, - 0x09, 0x26, 0x3a, 0xb0, 0xfd, 0x7a, 0x0c, 0xe4, 0xdb, 0x1d, 0x6d, 0xe3, 0x76, 0xaf, 0x96, 0x9e, - 0xe0, 0x13, 0x2b, 0xf8, 0x1c, 0xc3, 0xb7, 0x28, 0x6e, 0xf7, 0x9e, 0x53, 0x7e, 0x2b, 0x1c, 0x6e, - 0x8b, 0xc5, 0x79, 0x2b, 0x40, 0x62, 0x5b, 0xb3, 0x1d, 0xce, 0xd6, 0xfd, 0x9d, 0xd8, 0x0a, 0x61, - 0x53, 0x1c, 0x19, 0x41, 0x96, 0x92, 0x5e, 0x35, 0x8c, 0x3a, 0x67, 0x43, 0xbe, 0x08, 0xa3, 0xbe, - 0x3a, 0xde, 0xc9, 0x29, 0x48, 0x98, 0x06, 0xff, 0x56, 0xc9, 0xe0, 0x89, 0x23, 0x1d, 0x8f, 0x65, - 0x0c, 0xa3, 0xce, 0x87, 0x4d, 0xe1, 0xe5, 0x71, 0x40, 0x8c, 0x18, 0x3d, 0xa1, 0x11, 0x5d, 0xac, - 0xc1, 0x58, 0xa0, 0x96, 0x77, 0x72, 0x4b, 0xa7, 0x3f, 0x27, 0xbe, 0x77, 0x00, 0x92, 0x94, 0x2a, - 0xfa, 0x90, 0x14, 0xf8, 0xcc, 0xd8, 0x74, 0x27, 0x32, 0xed, 0x37, 0x27, 0xf2, 0xc7, 0x7b, 0x86, - 0xe7, 0x99, 0xeb, 0xb1, 0x77, 0xff, 0x87, 0xef, 0x7c, 0x20, 0x76, 0x1f, 0x92, 0x8f, 0x77, 0xd8, - 0x31, 0xf1, 0x4d, 0xb2, 0x4f, 0x06, 0x3e, 0x84, 0xf1, 0x48, 0x6f, 0x5d, 0x09, 0xce, 0xa6, 0x7b, - 0x05, 0xe7, 0x8c, 0x9d, 0xa3, 0x8c, 0x9d, 0x44, 0x8f, 0x47, 0x33, 0x76, 0xfc, 0x1d, 0xc1, 0xe9, - 0xf4, 0x4e, 0xf4, 0xc7, 0x12, 0x8c, 0xb7, 0x5b, 0x27, 0xa3, 0x33, 0xbd, 0x71, 0xd1, 0x9a, 0x09, - 0xe5, 0xcf, 0xee, 0x03, 0x93, 0x0f, 0x65, 0x9e, 0x0e, 0x65, 0x06, 0x3d, 0xb9, 0x8f, 0xa1, 0x1c, - 0xf7, 0x1f, 0xdc, 0xfc, 0x3f, 0x09, 0xee, 0xee, 0xba, 0xb8, 0x44, 0x33, 0xbd, 0x71, 0xd9, 0x25, - 0xe5, 0xcb, 0x17, 0x6f, 0x85, 0x04, 0x1f, 0xf1, 0xd3, 0x74, 0xc4, 0x17, 0xd1, 0xc2, 0x7e, 0x46, - 0xdc, 0xf6, 0x74, 0x0c, 0xfd, 0x91, 0x14, 0xb8, 0x66, 0xdb, 0xdd, 0x9c, 0x5a, 0x56, 0x5f, 0x11, - 0x13, 0xa3, 0x35, 0x17, 0x97, 0x9f, 0xa5, 0x43, 0x50, 0xd0, 0xea, 0x2d, 0x2a, 0xed, 0xf8, 0x3b, - 0x82, 0xc1, 0xe2, 0x9d, 0xe8, 0xff, 0x48, 0xed, 0xef, 0xbd, 0x9e, 0xee, 0xca, 0x62, 0xe7, 0x95, - 0x65, 0xfe, 0xcc, 0xde, 0x11, 0xf9, 0x20, 0x1b, 0x74, 0x90, 0x35, 0x84, 0x6f, 0xf7, 0x20, 0xdb, - 0x2a, 0x11, 0x7d, 0x59, 0x82, 0xf1, 0x76, 0x4b, 0xa9, 0x88, 0x69, 0xd9, 0x65, 0xd5, 0x18, 0x31, - 0x2d, 0xbb, 0xad, 0xdb, 0xe4, 0x37, 0xd2, 0xc1, 0x9f, 0x42, 0x4f, 0x74, 0x1a, 0x7c, 0x57, 0x2d, - 0x92, 0xb9, 0xd8, 0x75, 0x05, 0x12, 0x31, 0x17, 0x7b, 0x59, 0x7e, 0x45, 0xcc, 0xc5, 0x9e, 0x16, - 0x40, 0xd1, 0x73, 0xd1, 0x1d, 0x59, 0x8f, 0x6a, 0xb4, 0xd1, 0x17, 0x25, 0x18, 0x0a, 0x24, 0xd8, - 0xe8, 0xb1, 0xae, 0x8c, 0xb6, 0x5b, 0xcd, 0xe4, 0x4f, 0xec, 0x05, 0x85, 0x8f, 0x65, 0x81, 0x8e, - 0x65, 0x16, 0xcd, 0xec, 0x67, 0x2c, 0xc1, 0x43, 0xf0, 0xaf, 0x4a, 0x30, 0xd6, 0x26, 0x35, 0x8d, - 0x98, 0x85, 0x9d, 0x73, 0xf0, 0xfc, 0x99, 0xbd, 0x23, 0xf2, 0x51, 0x9d, 0xa7, 0xa3, 0x7a, 0x0b, - 0x7a, 0xf3, 0x7e, 0x46, 0xe5, 0x8b, 0xcf, 0x37, 0xbc, 0x6b, 0x79, 0xbe, 0x7e, 0xd0, 0xa9, 0x3d, - 0x32, 0x26, 0x06, 0x74, 0x7a, 0xcf, 0x78, 0x7c, 0x3c, 0xcf, 0xd0, 0xf1, 0x3c, 0x8d, 0x56, 0x6e, - 0x6d, 0x3c, 0xad, 0x61, 0xfd, 0x73, 0xad, 0xcf, 0x81, 0xbb, 0x5b, 0x51, 0xdb, 0x64, 0x35, 0xff, - 0xf8, 0x9e, 0x70, 0xf8, 0xa0, 0xce, 0xd0, 0x41, 0x9d, 0x40, 0x8f, 0x76, 0x1a, 0x94, 0xef, 0xee, - 0xa5, 0xa6, 0x6f, 0x19, 0xc7, 0xdf, 0xc1, 0x52, 0xe0, 0x77, 0xa2, 0x77, 0x49, 0xfc, 0xa6, 0xdb, - 0xd1, 0xae, 0xfd, 0xfa, 0xf2, 0xd8, 0xfc, 0x83, 0x3d, 0x40, 0x72, 0xbe, 0xee, 0xa3, 0x7c, 0x4d, - 0xa0, 0x23, 0x9d, 0xf8, 0x22, 0xb9, 0x2c, 0x7a, 0x9f, 0xe4, 0x5e, 0x95, 0x3d, 0xd6, 0x9d, 0xb6, - 0x3f, 0xd9, 0xcd, 0x3f, 0xd4, 0x13, 0x2c, 0xe7, 0xe4, 0x7e, 0xca, 0xc9, 0x14, 0x9a, 0xe8, 0xc8, - 0x09, 0x4b, 0x7d, 0x6f, 0xfb, 0x0d, 0xb1, 0x43, 0x30, 0xd9, 0xa1, 0x47, 0xe7, 0x4a, 0xc4, 0x39, - 0x64, 0x97, 0x57, 0xf1, 0x91, 0xaf, 0xde, 0x6f, 0xf7, 0x77, 0x9e, 0x7b, 0x3b, 0xb4, 0x94, 0x7f, - 0x31, 0x09, 0x68, 0xc9, 0xae, 0xcd, 0x5a, 0x98, 0xfd, 0xe3, 0x5b, 0x3e, 0xcb, 0x43, 0xef, 0x31, - 0xa5, 0x5b, 0x7a, 0x8f, 0xb9, 0x14, 0x78, 0xe1, 0x18, 0xdb, 0xdb, 0xd3, 0xeb, 0xde, 0x9f, 0x39, - 0xc6, 0x7f, 0x0c, 0xcf, 0x1c, 0xdb, 0xdf, 0xe6, 0x4f, 0xdc, 0xf9, 0xe7, 0x45, 0xc9, 0xdb, 0xfa, - 0xbc, 0xe8, 0x3c, 0xf4, 0xf3, 0x97, 0xd1, 0xfd, 0x5d, 0x5e, 0x46, 0xe7, 0x3a, 0x3e, 0x7f, 0xe6, - 0xd8, 0xe8, 0xa4, 0xf8, 0x34, 0xf2, 0x40, 0x6f, 0xf7, 0xac, 0xf9, 0xb7, 0x93, 0xbd, 0x1d, 0x88, - 0x23, 0x90, 0x6f, 0xb5, 0x46, 0xd7, 0x27, 0x7c, 0x29, 0x0e, 0xd9, 0x25, 0xbb, 0x56, 0xaa, 0x6a, - 0xce, 0x1d, 0x32, 0xd5, 0x67, 0x3a, 0x3f, 0xe5, 0x3a, 0x76, 0xf3, 0xc6, 0xe4, 0x30, 0x93, 0xf5, - 0x3e, 0x24, 0xfc, 0x0e, 0x18, 0x09, 0x7d, 0x84, 0x80, 0xdb, 0xab, 0xb2, 0x9f, 0x2f, 0x23, 0x84, - 0x48, 0x85, 0x9f, 0x57, 0x0f, 0x07, 0x3f, 0x52, 0x80, 0xde, 0xdb, 0x61, 0xc6, 0x30, 0x3b, 0xbd, - 0xf4, 0xda, 0x3d, 0x0a, 0xf6, 0x14, 0x9d, 0x87, 0x5c, 0x58, 0x93, 0xae, 0x9a, 0x7f, 0x39, 0x06, - 0x83, 0x4b, 0xb6, 0x48, 0x3f, 0xf1, 0x4f, 0xc8, 0x13, 0xbe, 0xd3, 0xee, 0x3f, 0x40, 0x88, 0xf7, - 0x36, 0x39, 0xc4, 0xbf, 0x41, 0xf0, 0x84, 0x76, 0x00, 0xc6, 0x7c, 0x72, 0xf1, 0xe4, 0x15, 0xa7, - 0x3e, 0xbc, 0x88, 0x6b, 0x9a, 0xee, 0x66, 0xba, 0xf8, 0xa7, 0x0f, 0x8d, 0x6e, 0xed, 0xa1, 0x91, - 0xa7, 0xaf, 0xc4, 0x7e, 0xf5, 0xb5, 0x43, 0xbd, 0x59, 0x48, 0x2f, 0xee, 0x26, 0xdf, 0x52, 0xeb, - 0x53, 0x3b, 0x69, 0x0f, 0xdf, 0x13, 0x0b, 0x3d, 0xa8, 0x93, 0x3f, 0x18, 0x83, 0xa1, 0x25, 0xbb, - 0xb6, 0xa1, 0x57, 0x7f, 0x3a, 0x6f, 0x42, 0x7a, 0xd8, 0x82, 0x03, 0x01, 0xc9, 0xdc, 0x21, 0x15, - 0x9c, 0xf8, 0x70, 0x02, 0xe2, 0x4b, 0x76, 0x0d, 0xbd, 0x1d, 0x46, 0xc2, 0x09, 0x55, 0xc7, 0x3c, - 0xb9, 0x35, 0xdc, 0x75, 0x5e, 0xcb, 0x76, 0x0e, 0x8d, 0x68, 0x07, 0x86, 0x82, 0x61, 0xf1, 0x68, - 0x17, 0x22, 0x01, 0xc8, 0xfc, 0xa3, 0xbd, 0x42, 0xba, 0x9d, 0xfd, 0x0c, 0xa4, 0x5c, 0xe7, 0x7c, - 0x6f, 0x17, 0x6c, 0x01, 0xd4, 0x39, 0xf3, 0x6f, 0xe3, 0xce, 0x88, 0xf4, 0xc2, 0xae, 0xac, 0x9b, - 0xf4, 0x42, 0xb0, 0x5d, 0xa5, 0xd7, 0x69, 0x2a, 0x6e, 0x02, 0xf8, 0xe6, 0xcd, 0x1b, 0xba, 0x50, - 0xf0, 0xc0, 0xf2, 0x8f, 0xf4, 0x04, 0xe6, 0x9e, 0xef, 0xdd, 0xe6, 0x85, 0xca, 0x5f, 0x07, 0x00, - 0x00, 0xff, 0xff, 0x9f, 0x50, 0x7a, 0x3b, 0x8a, 0x9d, 0x00, 0x00, + 0x0f, 0x05, 0x2f, 0x1e, 0x0b, 0x0b, 0x17, 0x20, 0xa5, 0x37, 0xeb, 0x75, 0x62, 0x3c, 0xa8, 0xfb, + 0x4d, 0xc0, 0xdc, 0x7f, 0xfa, 0x21, 0x97, 0x8e, 0x40, 0x28, 0x9c, 0x86, 0x24, 0x6e, 0x6c, 0xe2, + 0x6a, 0x14, 0xe6, 0x77, 0x7f, 0x28, 0x1c, 0x26, 0x81, 0x2e, 0x3c, 0x09, 0xc0, 0xb6, 0x46, 0xe8, + 0x61, 0x60, 0x04, 0xee, 0x7f, 0xfe, 0x21, 0xbf, 0x7a, 0xe3, 0xa1, 0x78, 0x04, 0xd8, 0x45, 0x9e, + 0xee, 0x04, 0xbe, 0x17, 0x24, 0x40, 0x67, 0xe4, 0x3c, 0x0c, 0x3c, 0x6f, 0x1b, 0xba, 0xa3, 0xd6, + 0xa2, 0xb0, 0xff, 0x0b, 0xc7, 0x16, 0xf0, 0x44, 0x60, 0x0d, 0xc3, 0xc2, 0x8e, 0x5a, 0xb3, 0xa3, + 0x70, 0xff, 0x2b, 0xc7, 0x75, 0x11, 0x08, 0x72, 0x45, 0xb5, 0x9d, 0x5e, 0xc6, 0xfd, 0xd7, 0x02, + 0x59, 0x20, 0x10, 0xa6, 0xc9, 0xef, 0x1d, 0xbc, 0x1b, 0x85, 0xfb, 0x7d, 0xc1, 0x34, 0x87, 0x2f, + 0xbc, 0x09, 0xd2, 0xe4, 0x27, 0xbb, 0x4f, 0x17, 0x81, 0xfc, 0xdf, 0x38, 0xb2, 0x87, 0x41, 0x7a, + 0xb6, 0x9d, 0xaa, 0xa3, 0x45, 0x0b, 0xfb, 0x16, 0x9f, 0x69, 0x01, 0x5f, 0x98, 0x81, 0x41, 0xdb, + 0xa9, 0x56, 0x9b, 0x3c, 0x3f, 0x8d, 0x40, 0xff, 0xef, 0x3f, 0x74, 0xb7, 0x2c, 0x5c, 0x1c, 0x32, + 0xdb, 0x2f, 0xec, 0x38, 0xa6, 0x41, 0x0f, 0x3c, 0xa2, 0x28, 0xfc, 0x80, 0x53, 0xf0, 0xa1, 0x14, + 0x66, 0x21, 0x43, 0xc6, 0x62, 0x61, 0x13, 0xd3, 0xd3, 0xa9, 0x08, 0x12, 0xff, 0x83, 0x0b, 0x20, + 0x80, 0x54, 0xfc, 0xd9, 0x2f, 0xbd, 0x36, 0x21, 0x7d, 0xf5, 0xb5, 0x09, 0xe9, 0x2f, 0x5e, 0x9b, + 0x90, 0xde, 0xff, 0xad, 0x89, 0xbe, 0xaf, 0x7e, 0x6b, 0xa2, 0xef, 0xcf, 0xbe, 0x35, 0xd1, 0xd7, + 0x7e, 0x97, 0x18, 0xe6, 0x8d, 0x79, 0x83, 0xed, 0x0f, 0x3f, 0x27, 0xd7, 0x34, 0x67, 0xbb, 0xb9, + 0x39, 0x5d, 0x31, 0x1a, 0x74, 0x1b, 0xd7, 0xdb, 0xad, 0x75, 0x17, 0x39, 0xf0, 0xdd, 0x18, 0x1c, + 0xa9, 0x18, 0x76, 0xc3, 0xb0, 0xcb, 0x6c, 0xbf, 0x97, 0x15, 0xf8, 0x8e, 0x6f, 0xc6, 0xdf, 0xd4, + 0xc3, 0xa6, 0xef, 0x3a, 0x8c, 0x6b, 0x0d, 0xb3, 0x8e, 0xe9, 0xe6, 0x7c, 0x99, 0x4a, 0xa1, 0xb7, + 0x64, 0xf0, 0xcb, 0xff, 0x3e, 0xc9, 0x36, 0x21, 0x3d, 0xf4, 0x05, 0x81, 0x5d, 0x58, 0x84, 0x51, + 0xb5, 0x52, 0xc1, 0x66, 0x80, 0x64, 0x84, 0x30, 0x05, 0xc1, 0x2c, 0xc7, 0xf4, 0xa8, 0x9d, 0x85, + 0x7e, 0xbb, 0xa2, 0xd6, 0xd5, 0xc8, 0x29, 0xfd, 0x0a, 0x27, 0xc1, 0xc1, 0x8b, 0xe7, 0x3a, 0xcd, + 0xc4, 0x73, 0x13, 0x3e, 0x41, 0x33, 0x89, 0xf1, 0x3f, 0x8f, 0x30, 0xca, 0xfd, 0xec, 0xa6, 0x32, + 0xfc, 0x69, 0x1c, 0x26, 0x78, 0xfb, 0xa6, 0x6a, 0xe3, 0x93, 0x57, 0x1f, 0xdb, 0xc4, 0x8e, 0xfa, + 0xd8, 0xc9, 0x8a, 0xa1, 0xe9, 0x5c, 0xe2, 0x63, 0x5c, 0xfe, 0xa4, 0x7d, 0x9a, 0xb7, 0xe7, 0xdb, + 0x6e, 0xc7, 0xe7, 0x3b, 0xcf, 0x9b, 0xbc, 0x01, 0x89, 0x59, 0x43, 0xd3, 0xd1, 0x38, 0x24, 0xab, + 0x58, 0x37, 0x1a, 0xfc, 0xda, 0x1d, 0x2b, 0xa0, 0xc7, 0xa0, 0x5f, 0x6d, 0x18, 0x4d, 0xdd, 0x61, + 0x87, 0x14, 0xc5, 0x23, 0x5f, 0xba, 0x39, 0xd9, 0xf7, 0xe7, 0x37, 0x27, 0xe3, 0x0b, 0xba, 0xf3, + 0xc7, 0xaf, 0x3e, 0x02, 0x9c, 0xd4, 0x82, 0xee, 0x28, 0x1c, 0xb0, 0x90, 0xf8, 0xce, 0x2b, 0x93, + 0x92, 0xfc, 0x2c, 0x0c, 0xcc, 0xe1, 0xca, 0x7e, 0x28, 0xcf, 0xe1, 0x8a, 0x8f, 0xf2, 0x1c, 0xae, + 0x84, 0x28, 0x9f, 0x85, 0xd4, 0x82, 0xee, 0xb0, 0x4b, 0x93, 0x0f, 0x41, 0x5c, 0xd3, 0xd9, 0x3d, + 0x9c, 0xae, 0xbc, 0x11, 0x28, 0x82, 0x38, 0x87, 0x2b, 0x2e, 0x62, 0x15, 0x57, 0xc2, 0x88, 0xad, + 0x5d, 0x13, 0xa8, 0xe2, 0xdc, 0x9f, 0xfd, 0xc7, 0x89, 0xbe, 0x97, 0x5e, 0x9b, 0xe8, 0xeb, 0x38, + 0xab, 0x72, 0xc7, 0x59, 0xb5, 0xab, 0x3b, 0xec, 0x78, 0xc5, 0x9d, 0xd9, 0xbf, 0xea, 0x07, 0x99, + 0xc3, 0xd8, 0x8e, 0xba, 0xa3, 0xe9, 0x35, 0x77, 0x72, 0xd5, 0xa6, 0xb3, 0xfd, 0x22, 0x9f, 0xdd, + 0xc3, 0x9c, 0x0b, 0x0e, 0xb3, 0xef, 0x09, 0xce, 0x47, 0xa8, 0x91, 0xfc, 0x97, 0x71, 0x40, 0x6b, + 0x8e, 0xba, 0x83, 0x67, 0x9a, 0xce, 0xb6, 0x61, 0x69, 0x2f, 0x32, 0x37, 0x88, 0x01, 0x1a, 0xea, + 0xb5, 0xb2, 0x63, 0xec, 0x60, 0xdd, 0xa6, 0x82, 0x1a, 0x3c, 0x75, 0x64, 0xba, 0x8d, 0xca, 0x4d, + 0x93, 0x49, 0x2e, 0x3e, 0xf4, 0xa9, 0x6f, 0x4e, 0x3e, 0x10, 0x2d, 0x05, 0x0a, 0x4c, 0xf2, 0xf2, + 0x6b, 0xeb, 0x94, 0x30, 0xba, 0x02, 0xec, 0x7e, 0x46, 0xb9, 0xae, 0xd9, 0x0e, 0xbf, 0xe2, 0x7d, + 0x7a, 0xba, 0xfd, 0xd8, 0xa7, 0x5b, 0xd9, 0x9c, 0xbe, 0xa2, 0xd6, 0xb5, 0xaa, 0xea, 0x18, 0x96, + 0x7d, 0xa9, 0x4f, 0x49, 0x53, 0x52, 0x8b, 0x9a, 0xed, 0xa0, 0x75, 0x48, 0x57, 0xb1, 0xbe, 0xcb, + 0xc8, 0xc6, 0x6f, 0x8f, 0x6c, 0x8a, 0x50, 0xa2, 0x54, 0x9f, 0x05, 0xa4, 0xfa, 0xe1, 0xc4, 0x9b, + 0x26, 0x76, 0x35, 0xb3, 0x03, 0xf9, 0x00, 0x65, 0xfa, 0x04, 0x63, 0x54, 0x0d, 0x57, 0xe5, 0xdf, + 0x02, 0xe0, 0xf5, 0x89, 0x4e, 0xc1, 0x80, 0x5a, 0xad, 0x5a, 0xd8, 0xb6, 0xe9, 0xd9, 0x61, 0xba, + 0x98, 0xfb, 0xe3, 0x57, 0x1f, 0x19, 0xe7, 0xf4, 0x67, 0x58, 0x0b, 0x5b, 0x8e, 0x2b, 0x02, 0xb0, + 0x30, 0xfa, 0x95, 0x57, 0x1f, 0x19, 0x0a, 0xf4, 0x55, 0xcc, 0x00, 0x5c, 0x75, 0x89, 0x9e, 0xf8, + 0xa8, 0x04, 0xa3, 0x2d, 0xbc, 0x20, 0x19, 0x26, 0x66, 0x36, 0xd6, 0x2f, 0xad, 0x28, 0x0b, 0xcf, + 0xcd, 0xac, 0x2f, 0xac, 0x2c, 0x97, 0xd9, 0x3b, 0x82, 0xe5, 0xb5, 0xd5, 0xd2, 0xec, 0xc2, 0xc5, + 0x85, 0xd2, 0x5c, 0xb6, 0x0f, 0x4d, 0xc2, 0xd1, 0x36, 0x30, 0x73, 0xa5, 0xc5, 0xd2, 0xfc, 0xcc, + 0x7a, 0x29, 0x2b, 0xa1, 0x7b, 0xe0, 0xee, 0xb6, 0x44, 0x5c, 0x90, 0x58, 0x07, 0x10, 0xa5, 0xe4, + 0x82, 0xc4, 0x8b, 0x17, 0x3b, 0xda, 0xd7, 0xc3, 0x5d, 0x35, 0xeb, 0x9a, 0x6b, 0x48, 0x41, 0x4b, + 0x7b, 0x57, 0x0c, 0x8e, 0x84, 0xe3, 0x90, 0xaa, 0xef, 0x76, 0x78, 0x4a, 0xda, 0xde, 0xb2, 0xe4, + 0x4b, 0x10, 0x9f, 0xd1, 0x77, 0xd1, 0x11, 0x96, 0xa4, 0x97, 0x9b, 0x56, 0x9d, 0xfb, 0xb1, 0x01, + 0x52, 0xde, 0xb0, 0xea, 0xc4, 0xbf, 0x89, 0xd7, 0x03, 0xd2, 0xf1, 0x0c, 0x7f, 0x12, 0x50, 0xc8, + 0x7e, 0xf0, 0x95, 0xc9, 0xbe, 0xcf, 0xbc, 0x32, 0xd9, 0xf7, 0xfd, 0x8f, 0x4d, 0xf6, 0xbd, 0xf4, + 0x8d, 0xa9, 0xbe, 0xe2, 0x4e, 0x78, 0x78, 0x5f, 0x88, 0x0c, 0xd1, 0xa9, 0x19, 0x7d, 0x97, 0x3a, + 0xac, 0x55, 0xe9, 0xb9, 0x24, 0x1d, 0x9c, 0x38, 0x95, 0x9d, 0x08, 0x9f, 0xca, 0x3e, 0x83, 0xeb, + 0xf5, 0xcb, 0xba, 0xf1, 0x02, 0x9d, 0x55, 0x4f, 0x06, 0x1f, 0x88, 0xc1, 0x44, 0x4b, 0x2c, 0xe6, + 0x69, 0x4b, 0xa7, 0x37, 0xb5, 0x05, 0x48, 0xcd, 0x89, 0x6c, 0x28, 0x07, 0x03, 0x36, 0xae, 0x18, + 0x7a, 0x95, 0xf9, 0x80, 0xb8, 0x22, 0x8a, 0x64, 0xd8, 0xba, 0xaa, 0x1b, 0x36, 0xbf, 0xc8, 0xcf, + 0x0a, 0xc5, 0x5f, 0x95, 0xf6, 0x96, 0x84, 0x0c, 0x89, 0x9e, 0xc4, 0x30, 0x1f, 0x8b, 0x3c, 0xa7, + 0xde, 0x21, 0xa3, 0x74, 0x07, 0x11, 0x38, 0xab, 0xee, 0x55, 0x2a, 0xbf, 0x12, 0x83, 0xc9, 0xb0, + 0x54, 0x48, 0x2e, 0x68, 0x3b, 0x6a, 0xc3, 0xec, 0x24, 0x96, 0x0b, 0x90, 0x5e, 0x17, 0x30, 0x7b, + 0x96, 0xcb, 0x8d, 0x3d, 0xca, 0x65, 0xd8, 0xed, 0x4a, 0x08, 0xe6, 0x54, 0x8f, 0x82, 0x71, 0xc7, + 0xb1, 0x2f, 0xc9, 0x7c, 0x2a, 0x01, 0x77, 0xd3, 0x97, 0x5e, 0x56, 0x43, 0xd3, 0x9d, 0x93, 0x15, + 0x6b, 0xd7, 0x74, 0x68, 0x36, 0x68, 0x6c, 0x71, 0xb9, 0x8c, 0x7a, 0xcd, 0xd3, 0xac, 0xb9, 0x83, + 0xe5, 0x6c, 0x41, 0x72, 0x95, 0xe0, 0x11, 0x89, 0x38, 0x86, 0xa3, 0xd6, 0xb9, 0xa4, 0x58, 0x81, + 0xd4, 0xb2, 0xd7, 0x61, 0x31, 0x56, 0xab, 0x89, 0x87, 0x61, 0x75, 0xac, 0x6e, 0xb1, 0x4b, 0xf6, + 0x71, 0x6a, 0x50, 0x29, 0x52, 0x41, 0xef, 0xd3, 0x8f, 0x43, 0x52, 0x6d, 0xb2, 0xfb, 0x21, 0x71, + 0x62, 0x69, 0xb4, 0x20, 0x5f, 0x86, 0x01, 0x7e, 0x4a, 0x8d, 0xb2, 0x10, 0xdf, 0xc1, 0xbb, 0xb4, + 0x9f, 0x8c, 0x42, 0x7e, 0xa2, 0x69, 0x48, 0x52, 0xe6, 0x79, 0x68, 0xc9, 0x4d, 0xb7, 0x70, 0x3f, + 0x4d, 0x99, 0x54, 0x18, 0x98, 0xfc, 0x14, 0xa4, 0xe6, 0x8c, 0x86, 0xa6, 0x1b, 0x41, 0x6a, 0x69, + 0x46, 0x8d, 0xf2, 0x6c, 0x36, 0x79, 0xce, 0xa2, 0xb0, 0x02, 0x3a, 0x0c, 0xfd, 0xec, 0xd1, 0x05, + 0xbf, 0xe3, 0xc2, 0x4b, 0xf2, 0x2c, 0x0c, 0x50, 0xda, 0x2b, 0x26, 0x42, 0xfc, 0xb9, 0x1e, 0x7f, + 0xdd, 0x41, 0x57, 0x57, 0x9c, 0x7c, 0xcc, 0x63, 0x16, 0x41, 0xa2, 0xaa, 0x3a, 0x2a, 0x1f, 0x37, + 0xfd, 0x2d, 0xbf, 0x19, 0x52, 0x9c, 0x08, 0x09, 0x0b, 0x71, 0xc3, 0xb4, 0xf9, 0x2d, 0x95, 0x7c, + 0xa7, 0xa1, 0xac, 0x98, 0xc5, 0x04, 0xc9, 0x68, 0x14, 0x02, 0x5c, 0x54, 0x3a, 0x3a, 0xd5, 0x73, + 0x3e, 0xa7, 0xea, 0x9b, 0x72, 0xdf, 0x4f, 0x36, 0xa5, 0x2d, 0xea, 0xe0, 0x2a, 0xcb, 0xc7, 0x62, + 0x30, 0xe1, 0x6b, 0xbd, 0x8a, 0x2d, 0x5b, 0x33, 0x74, 0x1e, 0xe9, 0x99, 0xb6, 0x20, 0x1f, 0x93, + 0xbc, 0xbd, 0x83, 0xba, 0xbc, 0x09, 0xe2, 0x33, 0xa6, 0x89, 0xf2, 0x90, 0xa2, 0xe5, 0x8a, 0xc1, + 0xf4, 0x25, 0xa1, 0xb8, 0x65, 0xd2, 0x66, 0x1b, 0x5b, 0xce, 0x0b, 0xaa, 0xe5, 0xbe, 0x4b, 0x14, + 0x65, 0xf9, 0x3c, 0xa4, 0x67, 0x0d, 0xdd, 0xc6, 0xba, 0xdd, 0xa4, 0x36, 0xb8, 0x59, 0x37, 0x2a, + 0x3b, 0x9c, 0x02, 0x2b, 0x10, 0x81, 0xab, 0xa6, 0x49, 0x31, 0x13, 0x0a, 0xf9, 0xc9, 0x32, 0xca, + 0xe2, 0x5a, 0x47, 0x11, 0x9d, 0xdf, 0xbb, 0x88, 0xf8, 0x20, 0x5d, 0x19, 0xfd, 0x5f, 0x09, 0x8e, + 0xb5, 0x1a, 0xd4, 0x0e, 0xde, 0xb5, 0xf7, 0x6a, 0x4f, 0xcf, 0x42, 0x7a, 0x95, 0x7e, 0x1c, 0xe0, + 0x32, 0xde, 0x45, 0x79, 0x18, 0xc0, 0xd5, 0x53, 0xa7, 0x4f, 0x3f, 0x76, 0x9e, 0x69, 0xfb, 0xa5, + 0x3e, 0x45, 0x54, 0xa0, 0x09, 0x48, 0xdb, 0xb8, 0x62, 0x9e, 0x3a, 0x7d, 0x66, 0xe7, 0x31, 0xa6, + 0x5e, 0x24, 0x37, 0x72, 0xab, 0x0a, 0x29, 0x32, 0xea, 0xef, 0x7c, 0x6c, 0x52, 0x2a, 0x26, 0x21, + 0x6e, 0x37, 0x1b, 0x77, 0x54, 0x47, 0x3e, 0x9c, 0x84, 0x29, 0x3f, 0x26, 0xf5, 0x54, 0x6e, 0x56, + 0xc2, 0x65, 0x90, 0xf5, 0xc9, 0x80, 0x42, 0x74, 0x48, 0x73, 0xbb, 0x4a, 0x52, 0xfe, 0x1d, 0x09, + 0x32, 0x6e, 0x12, 0xb5, 0x86, 0x1d, 0x74, 0xc1, 0x9f, 0xff, 0x70, 0xb3, 0x39, 0x3a, 0x1d, 0xee, + 0xcb, 0x4b, 0xf6, 0x14, 0x1f, 0x38, 0x3a, 0x4b, 0x15, 0xd1, 0x34, 0x6c, 0xfe, 0x56, 0x2d, 0x02, + 0xd5, 0x05, 0x46, 0x0f, 0x03, 0xa2, 0x1e, 0xae, 0x7c, 0xd5, 0x70, 0x34, 0xbd, 0x56, 0x36, 0x8d, + 0x17, 0xf8, 0x0b, 0xe0, 0xb8, 0x92, 0xa5, 0x2d, 0x57, 0x68, 0xc3, 0x2a, 0xa9, 0x27, 0x4c, 0xa7, + 0x5d, 0x2a, 0x24, 0xac, 0x78, 0x89, 0x1f, 0x71, 0x02, 0xa2, 0x88, 0x2e, 0xc0, 0x80, 0xd9, 0xdc, + 0x2c, 0x0b, 0x8f, 0x31, 0x78, 0xea, 0x58, 0x3b, 0xfb, 0x17, 0xfa, 0xc1, 0x3d, 0x40, 0xbf, 0xd9, + 0xdc, 0x24, 0xda, 0x72, 0x0f, 0x64, 0xda, 0x30, 0x33, 0x78, 0xd5, 0xe3, 0x83, 0x7e, 0x93, 0x82, + 0x8f, 0xa0, 0x6c, 0x5a, 0x9a, 0x61, 0x69, 0xce, 0x2e, 0xcd, 0x6c, 0xe3, 0x4a, 0x56, 0x34, 0xac, + 0xf2, 0x7a, 0x79, 0x07, 0x46, 0xd6, 0xe8, 0xf2, 0xdb, 0xe3, 0xfc, 0xb4, 0xc7, 0x9f, 0x14, 0xcd, + 0x5f, 0x47, 0xce, 0x62, 0x2d, 0x9c, 0x15, 0x9f, 0xee, 0xa8, 0x9d, 0x67, 0xf7, 0xae, 0x9d, 0xc1, + 0x0c, 0xf1, 0xaf, 0x8f, 0x04, 0x8c, 0x93, 0x29, 0xa7, 0xdf, 0x7d, 0xf5, 0xaa, 0x98, 0x51, 0xd9, + 0x44, 0xbe, 0x7b, 0x50, 0xcd, 0x47, 0xb8, 0xd1, 0x7c, 0xa4, 0x09, 0xc9, 0xe7, 0x61, 0x68, 0x55, + 0xb5, 0x9c, 0x35, 0xec, 0x5c, 0xc2, 0x6a, 0x15, 0x5b, 0xc1, 0xa8, 0x3b, 0x24, 0xa2, 0x2e, 0x82, + 0x04, 0x0d, 0xad, 0x2c, 0xea, 0xd0, 0xdf, 0xf2, 0x36, 0x24, 0xe8, 0x75, 0x53, 0x37, 0x22, 0x73, + 0x0c, 0x16, 0x91, 0x89, 0x2f, 0xdd, 0x75, 0xb0, 0x2d, 0xd2, 0x5b, 0x5a, 0x40, 0x4f, 0x88, 0xb8, + 0x1a, 0xef, 0x1e, 0x57, 0xb9, 0x22, 0xf2, 0xe8, 0x5a, 0x87, 0x81, 0x22, 0x71, 0xc5, 0x0b, 0x73, + 0x2e, 0x23, 0x92, 0xc7, 0x08, 0x5a, 0x82, 0x11, 0x53, 0xb5, 0x1c, 0xfa, 0xce, 0x66, 0x9b, 0x8e, + 0x82, 0xeb, 0xfa, 0x64, 0xab, 0xe5, 0x05, 0x06, 0xcb, 0x7b, 0x19, 0x32, 0xfd, 0x95, 0xf2, 0x5f, + 0x26, 0xa0, 0x9f, 0x0b, 0xe3, 0x4d, 0x30, 0xc0, 0xc5, 0xca, 0xb5, 0xf3, 0xee, 0xe9, 0xd6, 0xc0, + 0x34, 0xed, 0x06, 0x10, 0x4e, 0x4f, 0xe0, 0xa0, 0xfb, 0x21, 0x55, 0xd9, 0x56, 0x35, 0xbd, 0xac, + 0x55, 0xf9, 0x76, 0xc5, 0xe0, 0x6b, 0x37, 0x27, 0x07, 0x66, 0x49, 0xdd, 0xc2, 0x9c, 0x32, 0x40, + 0x1b, 0x17, 0xaa, 0x24, 0x13, 0xd8, 0xc6, 0x5a, 0x6d, 0xdb, 0xe1, 0x16, 0xc6, 0x4b, 0xe8, 0x1c, + 0x24, 0x88, 0x42, 0xf0, 0x57, 0x98, 0xf9, 0x96, 0xcd, 0x24, 0x37, 0xd9, 0x2b, 0xa6, 0x48, 0xc7, + 0xef, 0xff, 0xe6, 0xa4, 0xa4, 0x50, 0x0c, 0x34, 0x0b, 0x43, 0x75, 0xd5, 0x76, 0xca, 0x34, 0x82, + 0x91, 0xee, 0x93, 0x7c, 0x25, 0xde, 0x22, 0x10, 0x2e, 0x58, 0xce, 0xfa, 0x20, 0xc1, 0x62, 0x55, + 0x55, 0x74, 0x1c, 0xb2, 0x94, 0x48, 0xc5, 0x68, 0x34, 0x34, 0x87, 0xe5, 0x56, 0xfd, 0x54, 0xee, + 0xc3, 0xa4, 0x7e, 0x96, 0x56, 0xd3, 0x0c, 0xeb, 0x28, 0xa4, 0xe9, 0xbb, 0x2f, 0x0a, 0xc2, 0xee, + 0x38, 0xa7, 0x48, 0x05, 0x6d, 0x7c, 0x00, 0x46, 0x3c, 0xff, 0xc8, 0x40, 0x52, 0x8c, 0x8a, 0x57, + 0x4d, 0x01, 0x1f, 0x85, 0x71, 0x1d, 0x5f, 0xa3, 0xb7, 0xae, 0x03, 0xd0, 0x69, 0x0a, 0x8d, 0x48, + 0xdb, 0x95, 0x20, 0xc6, 0x1b, 0x60, 0xb8, 0x22, 0x84, 0xcf, 0x60, 0x81, 0xc2, 0x0e, 0xb9, 0xb5, + 0x14, 0xec, 0x08, 0xa4, 0x54, 0xd3, 0x64, 0x00, 0x83, 0xdc, 0x3f, 0x9a, 0x26, 0x6d, 0x3a, 0x01, + 0xa3, 0x74, 0x8c, 0x16, 0xb6, 0x9b, 0x75, 0x87, 0x13, 0xc9, 0x50, 0x98, 0x11, 0xd2, 0xa0, 0xb0, + 0x7a, 0x0a, 0x7b, 0x2f, 0x0c, 0xe1, 0xab, 0x5a, 0x15, 0xeb, 0x15, 0xcc, 0xe0, 0x86, 0x28, 0x5c, + 0x46, 0x54, 0x52, 0xa0, 0x07, 0xc1, 0xf5, 0x7b, 0x65, 0xe1, 0x93, 0x87, 0x19, 0x3d, 0x51, 0xcf, + 0x57, 0xe2, 0x72, 0x0e, 0x12, 0x73, 0xaa, 0xa3, 0x92, 0x04, 0xc3, 0xb9, 0xc6, 0x02, 0x4d, 0x46, + 0x21, 0x3f, 0xe5, 0xef, 0xc4, 0x20, 0x71, 0xc5, 0x70, 0x30, 0x7a, 0xdc, 0x97, 0x00, 0x0e, 0xb7, + 0xd3, 0xe7, 0x35, 0xad, 0xa6, 0xe3, 0xea, 0x92, 0x5d, 0xf3, 0x7d, 0xa4, 0xc1, 0x53, 0xa7, 0x58, + 0x40, 0x9d, 0xc6, 0x21, 0x69, 0x19, 0x4d, 0xbd, 0x2a, 0xae, 0x07, 0xd3, 0x02, 0x2a, 0x41, 0xca, + 0xd5, 0x92, 0x44, 0x94, 0x96, 0x8c, 0x10, 0x2d, 0x21, 0x3a, 0xcc, 0x2b, 0x94, 0x81, 0x4d, 0xae, + 0x2c, 0x45, 0x48, 0xbb, 0xce, 0x8b, 0x6b, 0x5b, 0x6f, 0x0a, 0xeb, 0xa1, 0x91, 0x60, 0xe2, 0xce, + 0xbd, 0x2b, 0x3c, 0xa6, 0x71, 0x59, 0xb7, 0x81, 0x4b, 0x2f, 0xa0, 0x56, 0xfc, 0x83, 0x11, 0x03, + 0x74, 0x5c, 0x9e, 0x5a, 0xb1, 0x8f, 0x46, 0x1c, 0x83, 0xb4, 0xad, 0xd5, 0x74, 0xd5, 0x69, 0x5a, + 0x98, 0x6b, 0x9e, 0x57, 0x21, 0x7f, 0x41, 0x82, 0x7e, 0xa6, 0xc9, 0x3e, 0xb9, 0x49, 0xed, 0xe5, + 0x16, 0xeb, 0x24, 0xb7, 0xf8, 0xfe, 0xe5, 0x36, 0x03, 0xe0, 0x32, 0x63, 0xf3, 0x77, 0xfc, 0x6d, + 0x32, 0x06, 0xc6, 0xe2, 0x9a, 0x56, 0xe3, 0x86, 0xea, 0x43, 0x92, 0xff, 0x83, 0x44, 0x92, 0x58, + 0xde, 0x8e, 0x66, 0x60, 0x48, 0xf0, 0x55, 0xde, 0xaa, 0xab, 0x35, 0xae, 0x3b, 0x77, 0x77, 0x64, + 0xee, 0x62, 0x5d, 0xad, 0x29, 0x83, 0x9c, 0x1f, 0x52, 0x68, 0x3f, 0x0f, 0xb1, 0x0e, 0xf3, 0x10, + 0x98, 0xf8, 0xf8, 0xfe, 0x26, 0x3e, 0x30, 0x45, 0x89, 0xf0, 0x14, 0x7d, 0x2e, 0x46, 0x17, 0x33, + 0xa6, 0x61, 0xab, 0xf5, 0xd7, 0xc3, 0x22, 0x8e, 0x42, 0xda, 0x34, 0xea, 0x65, 0xd6, 0xc2, 0xae, + 0xcd, 0xa7, 0x4c, 0xa3, 0xae, 0xb4, 0x4c, 0x7b, 0xf2, 0x80, 0xcc, 0xa5, 0xff, 0x00, 0xa4, 0x36, + 0x10, 0x96, 0x9a, 0x05, 0x19, 0x26, 0x0a, 0x1e, 0xcb, 0x1e, 0x25, 0x32, 0xa0, 0xc1, 0x51, 0x6a, + 0x8d, 0xbd, 0x8c, 0x6d, 0x06, 0xa9, 0x70, 0x38, 0x82, 0xc1, 0x5c, 0x7f, 0xbb, 0x55, 0xb0, 0x5f, + 0x2d, 0x15, 0x0e, 0x27, 0xff, 0xb2, 0x04, 0xb0, 0x48, 0x24, 0x4b, 0xc7, 0x4b, 0xa2, 0x90, 0x4d, + 0x59, 0x28, 0x07, 0x7a, 0x9e, 0xe8, 0x34, 0x69, 0xbc, 0xff, 0x8c, 0xed, 0xe7, 0x7b, 0x16, 0x86, + 0x3c, 0x65, 0xb4, 0xb1, 0x60, 0x66, 0xa2, 0x4b, 0x56, 0xbd, 0x86, 0x1d, 0x25, 0x73, 0xd5, 0x57, + 0x92, 0xff, 0xb5, 0x04, 0x69, 0xca, 0xd3, 0x12, 0x76, 0xd4, 0xc0, 0x1c, 0x4a, 0xfb, 0x9f, 0xc3, + 0xbb, 0x01, 0x18, 0x19, 0x5b, 0x7b, 0x11, 0x73, 0xcd, 0x4a, 0xd3, 0x9a, 0x35, 0xed, 0x45, 0x8c, + 0xce, 0xb8, 0x02, 0x8f, 0x77, 0x17, 0xb8, 0xc8, 0xba, 0xb9, 0xd8, 0xef, 0x82, 0x01, 0xfa, 0xdd, + 0xab, 0x6b, 0x36, 0x4f, 0xa4, 0xfb, 0xf5, 0x66, 0x63, 0xfd, 0x9a, 0x2d, 0x3f, 0x0f, 0x03, 0xeb, + 0xd7, 0xd8, 0xde, 0xc8, 0x51, 0x48, 0x5b, 0x86, 0xc1, 0x63, 0x32, 0xcb, 0x85, 0x52, 0xa4, 0x82, + 0x86, 0x20, 0xb1, 0x1f, 0x10, 0xf3, 0xf6, 0x03, 0xbc, 0x0d, 0x8d, 0x78, 0x4f, 0x1b, 0x1a, 0x27, + 0xfe, 0x54, 0x82, 0x41, 0x9f, 0x7f, 0x40, 0x8f, 0xc1, 0xa1, 0xe2, 0xe2, 0xca, 0xec, 0xe5, 0xf2, + 0xc2, 0x5c, 0xf9, 0xe2, 0xe2, 0xcc, 0xbc, 0xf7, 0x30, 0x2c, 0x7f, 0xf8, 0xfa, 0x8d, 0x29, 0xe4, + 0x83, 0xdd, 0xd0, 0xe9, 0x8e, 0x12, 0x3a, 0x09, 0xe3, 0x41, 0x94, 0x99, 0xe2, 0x5a, 0x69, 0x79, + 0x3d, 0x2b, 0xe5, 0x0f, 0x5d, 0xbf, 0x31, 0x35, 0xea, 0xc3, 0x98, 0xd9, 0xb4, 0xb1, 0xee, 0xb4, + 0x22, 0xcc, 0xae, 0x2c, 0x2d, 0x2d, 0xac, 0x67, 0x63, 0x2d, 0x08, 0xdc, 0x61, 0x3f, 0x08, 0xa3, + 0x41, 0x84, 0xe5, 0x85, 0xc5, 0x6c, 0x3c, 0x8f, 0xae, 0xdf, 0x98, 0x1a, 0xf6, 0x41, 0x2f, 0x6b, + 0xf5, 0x7c, 0xea, 0xe5, 0x8f, 0x4f, 0xf4, 0xfd, 0xc6, 0xaf, 0x4f, 0x48, 0x64, 0x64, 0x43, 0x01, + 0x1f, 0x81, 0x1e, 0x86, 0xbb, 0xd6, 0x16, 0xe6, 0x97, 0x4b, 0x73, 0xe5, 0xa5, 0xb5, 0x79, 0xb1, + 0x07, 0x2d, 0x46, 0x37, 0x72, 0xfd, 0xc6, 0xd4, 0x20, 0x1f, 0x52, 0x27, 0xe8, 0x55, 0xa5, 0x74, + 0x65, 0x65, 0xbd, 0x94, 0x95, 0x18, 0xf4, 0xaa, 0x85, 0xaf, 0x1a, 0x0e, 0xfb, 0x30, 0xde, 0xa3, + 0x70, 0xa4, 0x0d, 0xb4, 0x3b, 0xb0, 0xd1, 0xeb, 0x37, 0xa6, 0x86, 0x56, 0x2d, 0xcc, 0xec, 0x87, + 0x62, 0x4c, 0x43, 0xae, 0x15, 0x63, 0x65, 0x75, 0x65, 0x6d, 0x66, 0x31, 0x3b, 0x95, 0xcf, 0x5e, + 0xbf, 0x31, 0x95, 0x11, 0xce, 0x90, 0x1e, 0x01, 0xb8, 0x23, 0xbb, 0x93, 0x2b, 0x9e, 0x5f, 0x3c, + 0x05, 0xf7, 0x75, 0x38, 0x7d, 0x12, 0xe7, 0x16, 0xfb, 0x3a, 0x7f, 0xea, 0xb8, 0xcf, 0x9e, 0x8f, + 0xd8, 0x7e, 0x8e, 0x5e, 0x3a, 0xed, 0xff, 0x6c, 0x2b, 0xdf, 0x75, 0x71, 0x27, 0xbf, 0x4f, 0x82, + 0xe1, 0x4b, 0x9a, 0xed, 0x18, 0x96, 0x56, 0x51, 0xeb, 0xf4, 0x39, 0xd8, 0x99, 0x5e, 0x7d, 0x6b, + 0xc8, 0xd4, 0x9f, 0x84, 0xfe, 0xab, 0x6a, 0x9d, 0x39, 0xb5, 0x38, 0xfd, 0x7a, 0x4d, 0x87, 0xc3, + 0x20, 0xd7, 0xb5, 0x09, 0x02, 0x0c, 0x4d, 0xfe, 0x7a, 0x0c, 0x46, 0xa8, 0x31, 0xd8, 0xec, 0xbb, + 0x66, 0x64, 0x8d, 0xb5, 0x0a, 0x09, 0x4b, 0x75, 0xf8, 0xa6, 0x61, 0xf1, 0x8d, 0xfc, 0x94, 0xf2, + 0xfe, 0x1e, 0x4e, 0xd9, 0x5a, 0x0f, 0x32, 0x29, 0x25, 0xf4, 0x3c, 0xa4, 0x1a, 0xea, 0xb5, 0x32, + 0xa5, 0xca, 0xd6, 0x31, 0x2b, 0x7b, 0xa3, 0x7a, 0xeb, 0xe6, 0xe4, 0xc8, 0xae, 0xda, 0xa8, 0x17, + 0x64, 0x41, 0x47, 0x0e, 0x75, 0x34, 0xd0, 0x50, 0xaf, 0x11, 0xf6, 0xd1, 0xcf, 0xc3, 0x08, 0x81, + 0xa9, 0x6c, 0xab, 0x7a, 0x0d, 0xb3, 0x2e, 0xe9, 0xf6, 0x68, 0xf1, 0xca, 0x9e, 0xbb, 0x3c, 0xec, + 0x75, 0xe9, 0x23, 0x17, 0xee, 0x79, 0xa8, 0xa1, 0x5e, 0x9b, 0xa5, 0xcd, 0xa4, 0xff, 0x42, 0xea, + 0x83, 0xaf, 0x4c, 0xf6, 0xd1, 0x13, 0xe3, 0xaf, 0x49, 0x00, 0x9e, 0x6c, 0xd1, 0xcf, 0x40, 0xb6, + 0xe2, 0x96, 0x28, 0x25, 0x71, 0xbe, 0xf9, 0x40, 0xa7, 0x59, 0x0b, 0xcd, 0x0c, 0x8b, 0xe2, 0x5f, + 0xbd, 0x39, 0x29, 0x29, 0x23, 0x95, 0xd0, 0xa4, 0xbd, 0x0d, 0x06, 0x9b, 0x66, 0x55, 0x75, 0x70, + 0x99, 0xae, 0xf8, 0x62, 0x91, 0x19, 0xc1, 0x04, 0xa1, 0x75, 0xeb, 0xe6, 0x24, 0x62, 0x83, 0xf4, + 0x21, 0xcb, 0x34, 0x4f, 0x00, 0x56, 0x43, 0x10, 0x7c, 0x63, 0xfa, 0xb2, 0x04, 0x83, 0x73, 0xbe, + 0x2b, 0x9d, 0x39, 0x18, 0x68, 0x18, 0xba, 0xb6, 0xc3, 0x35, 0x37, 0xad, 0x88, 0x22, 0xca, 0x43, + 0x8a, 0xbd, 0xa5, 0x75, 0x76, 0xc5, 0xa6, 0xa9, 0x28, 0x13, 0xac, 0x17, 0xf0, 0xa6, 0xad, 0x89, + 0xb9, 0x51, 0x44, 0x11, 0x5d, 0x84, 0xac, 0x8d, 0x2b, 0x4d, 0x4b, 0x73, 0x76, 0xcb, 0x15, 0x43, + 0x77, 0xd4, 0x8a, 0xc3, 0x5e, 0x65, 0x16, 0x8f, 0xde, 0xba, 0x39, 0x79, 0x17, 0xe3, 0x35, 0x0c, + 0x21, 0x2b, 0x23, 0xa2, 0x6a, 0x96, 0xd5, 0x90, 0x1e, 0xaa, 0xd8, 0x51, 0xb5, 0xba, 0x9d, 0x63, + 0x57, 0x24, 0x44, 0xd1, 0x37, 0x96, 0xef, 0x0f, 0xf8, 0xb7, 0xc0, 0x7e, 0x0e, 0xb2, 0x86, 0x89, + 0xad, 0x40, 0xca, 0xca, 0x2c, 0xe0, 0x71, 0xaf, 0xe7, 0x30, 0x84, 0xdc, 0xf1, 0x7c, 0x74, 0x44, + 0x80, 0x8a, 0x34, 0xd7, 0x21, 0xd3, 0x2f, 0x96, 0x9a, 0x66, 0x73, 0xd3, 0xdb, 0x51, 0x1b, 0x6f, + 0x99, 0xa5, 0x19, 0x7d, 0xd7, 0xdf, 0x6b, 0x18, 0x4f, 0xfe, 0x8a, 0xd7, 0xab, 0xb7, 0xc3, 0x75, + 0x19, 0xef, 0x12, 0xb5, 0xe0, 0xa0, 0xab, 0x14, 0x92, 0x24, 0xae, 0xcf, 0xab, 0x5a, 0x5d, 0x7c, + 0x75, 0x40, 0xe1, 0x25, 0x54, 0x80, 0x7e, 0xdb, 0x51, 0x9d, 0xa6, 0xcd, 0x4f, 0x91, 0xe5, 0x4e, + 0x2a, 0x58, 0x34, 0xf4, 0xea, 0x1a, 0x85, 0x54, 0x38, 0x06, 0x5a, 0x87, 0x7e, 0x7e, 0x3c, 0x9f, + 0xdc, 0xb3, 0x87, 0x68, 0x73, 0x7f, 0x83, 0xd1, 0x42, 0xef, 0x96, 0x20, 0x5b, 0xc5, 0x75, 0x5c, + 0x63, 0x79, 0xda, 0xb6, 0x4a, 0x96, 0x33, 0xf4, 0x0b, 0x81, 0xc5, 0x67, 0xf6, 0x6c, 0xb9, 0x5c, + 0x70, 0x61, 0x7a, 0x61, 0xd3, 0x1d, 0x71, 0x01, 0xd6, 0x68, 0x3b, 0xba, 0x1c, 0xb8, 0xb0, 0xcc, + 0x3f, 0xaa, 0x79, 0x6f, 0x27, 0xd9, 0xf8, 0x0c, 0x41, 0x6c, 0x7f, 0xf8, 0xaf, 0x3b, 0x5f, 0x84, + 0x6c, 0x53, 0xdf, 0x34, 0x74, 0xfa, 0x6e, 0x98, 0x2f, 0x1f, 0xc8, 0xf2, 0x31, 0xee, 0xd7, 0xe5, + 0x30, 0x84, 0xac, 0x8c, 0xb8, 0x55, 0x97, 0xd8, 0x22, 0xa3, 0x0a, 0xc3, 0x1e, 0x14, 0xb5, 0xee, + 0x74, 0xa4, 0x75, 0xdf, 0xc3, 0xad, 0xfb, 0x50, 0xb8, 0x17, 0xcf, 0xc0, 0x87, 0xdc, 0x4a, 0x82, + 0x86, 0x2e, 0x01, 0x78, 0x3e, 0x85, 0x6e, 0x83, 0x0c, 0x76, 0xd6, 0x0a, 0xcf, 0x31, 0x89, 0xe5, + 0xa4, 0x87, 0x8b, 0xae, 0x4b, 0x30, 0xd6, 0xd0, 0xf4, 0xb2, 0x8d, 0xeb, 0x5b, 0x65, 0x2e, 0x61, + 0x42, 0x93, 0x7e, 0xf7, 0xa9, 0xf8, 0xdc, 0xde, 0xb4, 0xe5, 0xd6, 0xcd, 0xc9, 0x3c, 0x77, 0xc3, + 0xad, 0x24, 0xe5, 0x90, 0x2e, 0x8d, 0x36, 0x34, 0x7d, 0x0d, 0xd7, 0xb7, 0xe6, 0x5c, 0x88, 0x42, + 0xe6, 0xe5, 0x57, 0x26, 0xfb, 0xb8, 0xc9, 0xf7, 0xc9, 0xab, 0x74, 0xa7, 0x9e, 0x9b, 0x24, 0xb6, + 0xd1, 0x19, 0x48, 0xab, 0xa2, 0x10, 0x79, 0xe5, 0xc1, 0x03, 0x65, 0x4e, 0xe4, 0xa5, 0x6f, 0x4c, + 0x49, 0xf2, 0x37, 0x24, 0xe8, 0x9f, 0xbb, 0xb2, 0xaa, 0x6a, 0x16, 0x52, 0x61, 0xd4, 0x53, 0xb8, + 0xa0, 0x0b, 0x79, 0xe2, 0xd6, 0xcd, 0xc9, 0x5c, 0x58, 0x27, 0x23, 0x7d, 0x88, 0x67, 0x0f, 0xc2, + 0x89, 0xa8, 0x9d, 0x16, 0xd6, 0x81, 0x2e, 0x5a, 0x40, 0xba, 0x74, 0x11, 0x5e, 0x8e, 0x87, 0x04, + 0x56, 0x82, 0x01, 0x36, 0x3a, 0x1b, 0x15, 0x20, 0x69, 0x92, 0x1f, 0xfc, 0x40, 0x63, 0xa2, 0xa3, + 0x55, 0x50, 0x78, 0x77, 0x03, 0x96, 0xa0, 0x90, 0x34, 0x03, 0xe6, 0xae, 0x5c, 0x59, 0xb7, 0x34, + 0xb3, 0x8e, 0x9d, 0xd7, 0x43, 0x52, 0x75, 0x38, 0xe4, 0x5b, 0xf5, 0x59, 0x95, 0x90, 0xb4, 0xce, + 0xdd, 0xba, 0x39, 0x79, 0x2c, 0x2c, 0x2d, 0x1f, 0x58, 0xe7, 0xae, 0xc6, 0xbc, 0x75, 0xa1, 0x55, + 0x69, 0xdb, 0x5b, 0xd5, 0x76, 0xdc, 0xde, 0xe2, 0x9d, 0x7b, 0xf3, 0x81, 0xf5, 0xd2, 0xdb, 0x9c, + 0xed, 0xb4, 0x9f, 0xa2, 0x35, 0x18, 0xf4, 0x44, 0x6b, 0xa3, 0x39, 0x48, 0x39, 0xfc, 0x37, 0x9f, + 0x29, 0xb9, 0xf3, 0x4c, 0x09, 0x34, 0x3e, 0x5b, 0x2e, 0xa6, 0xfc, 0x79, 0x32, 0x61, 0xae, 0x15, + 0xfd, 0x64, 0xa8, 0x36, 0x09, 0x5c, 0x3c, 0xae, 0xc4, 0x0f, 0x20, 0xb5, 0xe5, 0xb4, 0x42, 0xb3, + 0xf1, 0xfb, 0x31, 0x18, 0xdb, 0x10, 0x8e, 0xf5, 0x27, 0x4e, 0x82, 0xab, 0x30, 0x80, 0x75, 0xc7, + 0xd2, 0xa8, 0x08, 0x89, 0x6e, 0x3d, 0xda, 0x49, 0xb7, 0xda, 0xc8, 0x80, 0x7e, 0x07, 0x4c, 0x1c, + 0x71, 0x70, 0x32, 0x21, 0xe9, 0x7d, 0x3a, 0x0e, 0xb9, 0x4e, 0x98, 0x68, 0x16, 0x46, 0x2a, 0x16, + 0x66, 0x17, 0xe0, 0xfc, 0xfb, 0xac, 0xc5, 0xbc, 0x97, 0xab, 0x87, 0x00, 0x64, 0x65, 0x58, 0xd4, + 0xf0, 0x60, 0x5a, 0x03, 0x92, 0x3a, 0x13, 0x25, 0xa7, 0xf7, 0xe8, 0x7a, 0xcb, 0x95, 0x65, 0x1e, + 0x4d, 0x45, 0x27, 0x41, 0x02, 0x2c, 0x9c, 0x0e, 0x7b, 0xb5, 0x34, 0x9e, 0xfe, 0xff, 0x30, 0xa2, + 0xe9, 0x9a, 0xa3, 0xa9, 0xf5, 0xf2, 0xa6, 0x5a, 0x57, 0xf5, 0xca, 0x7e, 0xd6, 0x21, 0x2c, 0x00, + 0xf2, 0x6e, 0x43, 0xe4, 0xc2, 0xc1, 0x6f, 0x98, 0xb7, 0x17, 0x59, 0x33, 0xba, 0x02, 0x03, 0xa2, + 0xe3, 0xc4, 0x01, 0xe4, 0x69, 0x82, 0x98, 0x2f, 0x81, 0xfe, 0xcd, 0x38, 0x8c, 0x2a, 0xb8, 0xfa, + 0xd3, 0x69, 0xba, 0x9d, 0x69, 0x7a, 0x1b, 0x00, 0x73, 0x24, 0x24, 0x20, 0xec, 0x63, 0xa6, 0x5a, + 0x1d, 0x53, 0x9a, 0xd1, 0x9b, 0xb3, 0x1d, 0xdf, 0x5c, 0x7d, 0x22, 0x0e, 0x19, 0xff, 0x5c, 0xfd, + 0x34, 0x06, 0xdf, 0x56, 0x0c, 0x46, 0x0b, 0x9e, 0x27, 0x4c, 0xf0, 0xaf, 0x37, 0x77, 0xf0, 0x84, + 0x2d, 0x16, 0xd2, 0xdd, 0x05, 0xfe, 0xcf, 0x18, 0xf4, 0xaf, 0xaa, 0x96, 0xda, 0xb0, 0x51, 0xa5, + 0x25, 0xf1, 0x17, 0x9b, 0xcd, 0x2d, 0xdf, 0xe8, 0xe7, 0x7b, 0x5b, 0x11, 0x79, 0xff, 0x07, 0xdb, + 0xe4, 0xfd, 0x6f, 0x81, 0xe1, 0x86, 0x7a, 0xcd, 0x77, 0x66, 0x4a, 0x67, 0x67, 0xa8, 0x78, 0xc4, + 0xa3, 0x12, 0x6c, 0x97, 0xe9, 0x8e, 0xc7, 0x15, 0xff, 0x8d, 0x95, 0x41, 0x02, 0xe1, 0x05, 0x06, + 0x82, 0x7e, 0xd8, 0xdb, 0x5a, 0xf0, 0x35, 0xca, 0x0a, 0x34, 0xd4, 0x6b, 0x25, 0x56, 0x40, 0x8b, + 0x80, 0xb6, 0xdd, 0x7d, 0xb0, 0xb2, 0x27, 0x4e, 0x82, 0x7f, 0xf7, 0xad, 0x9b, 0x93, 0x47, 0x18, + 0x7e, 0x2b, 0x8c, 0xac, 0x8c, 0x7a, 0x95, 0x82, 0xda, 0x13, 0x00, 0x64, 0x5c, 0x65, 0x76, 0xe9, + 0x9f, 0x2d, 0x4d, 0x0f, 0xdd, 0xba, 0x39, 0x39, 0xca, 0xa8, 0x78, 0x6d, 0xb2, 0x92, 0x26, 0x85, + 0x39, 0xf2, 0xdb, 0x67, 0x21, 0x1f, 0x97, 0x00, 0x79, 0x21, 0x47, 0xc1, 0xb6, 0x49, 0xd6, 0xd2, + 0x64, 0x5d, 0xe4, 0x5b, 0xc3, 0x48, 0xdd, 0xd7, 0x45, 0x1e, 0xbe, 0x58, 0x17, 0xf9, 0x2c, 0xee, + 0xbc, 0xe7, 0x90, 0x63, 0x51, 0xf7, 0xda, 0xb9, 0x8a, 0x84, 0x7d, 0x6e, 0x9f, 0xfc, 0x75, 0x09, + 0x8e, 0xb4, 0x68, 0x94, 0xcb, 0xec, 0xcf, 0x01, 0xb2, 0x7c, 0x8d, 0xfc, 0x53, 0x9c, 0x8c, 0xe9, + 0x3d, 0x2b, 0xe8, 0xa8, 0xd5, 0xe2, 0xdb, 0xef, 0x54, 0x4c, 0x61, 0x4f, 0x2c, 0xfe, 0x95, 0x04, + 0xe3, 0x7e, 0x66, 0xdc, 0x61, 0x2d, 0x43, 0xc6, 0xcf, 0x0b, 0x1f, 0xd0, 0x7d, 0xbd, 0x0c, 0x88, + 0x8f, 0x25, 0x80, 0x8f, 0x9e, 0xf6, 0x8c, 0x97, 0xed, 0x9b, 0x3e, 0xd6, 0xb3, 0x6c, 0x04, 0x4f, + 0x61, 0x23, 0x4e, 0xd0, 0xd9, 0xf9, 0x48, 0x0c, 0x12, 0xab, 0x86, 0x51, 0x47, 0xef, 0x84, 0x51, + 0xdd, 0x70, 0xca, 0x44, 0xcf, 0x70, 0xd5, 0xff, 0x9a, 0x21, 0x5d, 0x7c, 0x7a, 0x6f, 0x22, 0xfb, + 0xee, 0xcd, 0xc9, 0x56, 0x52, 0x21, 0x39, 0x8e, 0xe8, 0x86, 0x53, 0xa4, 0xed, 0xfc, 0x79, 0xc3, + 0x75, 0x09, 0x86, 0x82, 0x7d, 0x33, 0x97, 0x8b, 0xf7, 0xdc, 0x77, 0x90, 0xcc, 0xad, 0x9b, 0x93, + 0xe3, 0x9e, 0x39, 0xb9, 0xd5, 0xe1, 0x18, 0x97, 0xd9, 0xf4, 0x31, 0xc3, 0xee, 0xfd, 0x7d, 0xff, + 0x95, 0x49, 0xe9, 0xc4, 0xe7, 0x25, 0x00, 0x6f, 0x43, 0x09, 0x3d, 0x0c, 0x77, 0x15, 0x57, 0x96, + 0xe7, 0xca, 0x6b, 0xeb, 0x33, 0xeb, 0x1b, 0x6b, 0xc1, 0xcb, 0xff, 0xe2, 0xdc, 0xc4, 0x36, 0x71, + 0x45, 0xdb, 0xd2, 0x70, 0x15, 0xdd, 0x0f, 0xe3, 0x41, 0x68, 0x52, 0x2a, 0xcd, 0x65, 0xa5, 0x7c, + 0xe6, 0xfa, 0x8d, 0xa9, 0x14, 0x4b, 0x1b, 0x71, 0x15, 0x1d, 0x87, 0x43, 0xad, 0x70, 0x0b, 0xcb, + 0xf3, 0xd9, 0x58, 0x7e, 0xe8, 0xfa, 0x8d, 0xa9, 0xb4, 0x9b, 0x5f, 0x22, 0x19, 0x90, 0x1f, 0x92, + 0xd3, 0x8b, 0xe7, 0xe1, 0xfa, 0x8d, 0xa9, 0x7e, 0x26, 0xcf, 0x7c, 0xe2, 0xe5, 0x8f, 0x4f, 0xf4, + 0x1d, 0xf8, 0x13, 0x81, 0x4f, 0xa4, 0x3a, 0x1e, 0x87, 0xd4, 0xb0, 0x8e, 0x6d, 0xcd, 0xde, 0xd7, + 0x71, 0x48, 0x4f, 0x47, 0x2c, 0xdd, 0x5e, 0x65, 0xfd, 0x49, 0x12, 0x32, 0xf3, 0x8c, 0x01, 0x32, + 0x47, 0x18, 0xbd, 0x11, 0xfa, 0x4d, 0x1a, 0x8c, 0xdc, 0xa3, 0xd7, 0x0e, 0x86, 0xc2, 0x42, 0x96, + 0x7b, 0xff, 0x8f, 0x05, 0x30, 0x9b, 0x5f, 0x00, 0x62, 0xf7, 0x12, 0xbd, 0x9b, 0x76, 0x99, 0xe2, + 0xc2, 0x9e, 0xb3, 0x2b, 0xbe, 0x5f, 0x16, 0xa6, 0x27, 0xb3, 0xbb, 0x44, 0xeb, 0xa4, 0x86, 0xdd, + 0x28, 0xfc, 0x05, 0x09, 0x0e, 0x51, 0x28, 0x2f, 0xcc, 0x53, 0x48, 0xb1, 0x64, 0x39, 0xd1, 0x69, + 0x08, 0x8b, 0xaa, 0xed, 0xdd, 0x0f, 0x62, 0x77, 0x00, 0xef, 0xe3, 0xe1, 0xf4, 0x98, 0xaf, 0xf3, + 0x30, 0x59, 0x59, 0x19, 0xab, 0xb7, 0x60, 0xda, 0x68, 0x3e, 0x70, 0x09, 0x34, 0xb1, 0xb7, 0xe3, + 0x19, 0xff, 0x85, 0xd0, 0xa7, 0x60, 0xd0, 0xf3, 0x41, 0x36, 0xff, 0x07, 0x44, 0xbd, 0x47, 0x20, + 0x3f, 0x32, 0x7a, 0xaf, 0x04, 0x87, 0xbc, 0x9c, 0xc0, 0x4f, 0x96, 0xfd, 0xa3, 0xa6, 0x87, 0xf6, + 0xb0, 0x9c, 0x0b, 0x0b, 0xa7, 0x2d, 0x5d, 0x59, 0x19, 0x6f, 0xb6, 0xa2, 0x92, 0x85, 0xe4, 0x90, + 0xdf, 0x23, 0xdb, 0x39, 0xf1, 0x2d, 0xd2, 0xde, 0x5d, 0x7a, 0x90, 0x00, 0xfb, 0xe7, 0x31, 0xa6, + 0x61, 0x39, 0xb8, 0x4a, 0x77, 0x59, 0x53, 0x8a, 0x5b, 0x96, 0xb7, 0x01, 0xb5, 0x4e, 0x6e, 0xf0, + 0xb5, 0x93, 0xd4, 0xd3, 0x6b, 0x27, 0x34, 0x0e, 0x49, 0xff, 0x85, 0x51, 0x56, 0x28, 0xa4, 0x5e, + 0xe6, 0xe1, 0xf9, 0xc0, 0x1d, 0xc5, 0x37, 0x63, 0x70, 0xc2, 0x7f, 0xd8, 0xf8, 0xf6, 0x26, 0xb6, + 0x76, 0x5d, 0xbb, 0x36, 0xd5, 0x9a, 0xa6, 0xfb, 0xdf, 0xd4, 0x1c, 0xf1, 0x27, 0x14, 0x14, 0x56, + 0x48, 0x50, 0x7e, 0x59, 0x82, 0xc1, 0x55, 0xb5, 0x86, 0x15, 0xfc, 0xf6, 0x26, 0xb6, 0x9d, 0x36, + 0x6f, 0x16, 0x0e, 0x43, 0xbf, 0xb1, 0xb5, 0x25, 0x6e, 0x48, 0x24, 0x14, 0x5e, 0x22, 0x63, 0xae, + 0x6b, 0x0d, 0x8d, 0x5d, 0x2e, 0x4c, 0x28, 0xac, 0x80, 0x26, 0x61, 0xb0, 0x62, 0x34, 0x75, 0x6e, + 0x8c, 0xb9, 0x84, 0xf8, 0x1c, 0x50, 0x53, 0x67, 0xc6, 0x88, 0x72, 0x30, 0x60, 0xe1, 0xab, 0xd8, + 0xb2, 0xd9, 0x07, 0x50, 0x53, 0x8a, 0x28, 0xca, 0x4f, 0x42, 0x86, 0x71, 0xc2, 0xc3, 0xfb, 0x11, + 0x48, 0xd1, 0x7b, 0x7b, 0x1e, 0x3f, 0x03, 0xa4, 0x7c, 0x99, 0xbd, 0x7c, 0x60, 0xf4, 0x19, 0x4b, + 0xac, 0x50, 0x2c, 0x76, 0x94, 0xf2, 0xf1, 0x68, 0x7f, 0xc2, 0x64, 0xe8, 0x4a, 0xf8, 0x0f, 0x93, + 0x70, 0x88, 0x1f, 0x05, 0xab, 0xa6, 0x76, 0x72, 0xdb, 0x71, 0xc4, 0x4b, 0x1c, 0xe0, 0x59, 0xb6, + 0x6a, 0x6a, 0xf2, 0x2e, 0x24, 0x2e, 0x39, 0x8e, 0x89, 0x4e, 0x40, 0xd2, 0x6a, 0xd6, 0xb1, 0xd8, + 0x5a, 0x73, 0x8f, 0x6e, 0x54, 0x53, 0x9b, 0x26, 0x00, 0x4a, 0xb3, 0x8e, 0x15, 0x06, 0x82, 0x4a, + 0x30, 0xb9, 0xd5, 0xac, 0xd7, 0x77, 0xcb, 0x55, 0x4c, 0xff, 0xa3, 0x9b, 0xfb, 0x3f, 0x51, 0xf0, + 0x35, 0x53, 0x15, 0x5f, 0x56, 0x25, 0x82, 0x39, 0x46, 0xc1, 0xe6, 0x28, 0x94, 0xf8, 0x7f, 0x28, + 0x25, 0x01, 0x23, 0xff, 0x79, 0x0c, 0x52, 0x82, 0x34, 0x7d, 0x8a, 0x80, 0xeb, 0xb8, 0xe2, 0x18, + 0xe2, 0xc0, 0xcd, 0x2d, 0x23, 0x04, 0xf1, 0x1a, 0x9f, 0xbc, 0xf4, 0xa5, 0x3e, 0x85, 0x14, 0x48, + 0x9d, 0xfb, 0x40, 0x84, 0xd4, 0x99, 0x4d, 0x32, 0x9f, 0x09, 0xd3, 0x10, 0x6b, 0xcd, 0x4b, 0x7d, + 0x0a, 0x2d, 0xa1, 0x1c, 0xf4, 0x13, 0x73, 0x72, 0xd8, 0x6c, 0x91, 0x7a, 0x5e, 0x46, 0x87, 0x21, + 0x69, 0xaa, 0x4e, 0x85, 0xdd, 0xdd, 0x24, 0x0d, 0xac, 0x88, 0xce, 0x42, 0x3f, 0xfb, 0x70, 0x40, + 0xf8, 0xdf, 0x25, 0x11, 0x61, 0xb0, 0x2f, 0x34, 0x12, 0xbe, 0x57, 0x55, 0xc7, 0xc1, 0x96, 0x4e, + 0x08, 0x32, 0x70, 0x84, 0x20, 0xb1, 0x69, 0x54, 0x77, 0xf9, 0xbf, 0x70, 0xa2, 0xbf, 0xf9, 0xff, + 0x8c, 0xa1, 0xfa, 0x50, 0xa6, 0x8d, 0xec, 0x3f, 0xd7, 0x65, 0x44, 0x65, 0x91, 0x00, 0x95, 0x60, + 0x4c, 0xad, 0x56, 0x35, 0xf6, 0xdf, 0x94, 0xca, 0x9b, 0x1a, 0x75, 0x2b, 0x36, 0xfd, 0xbf, 0x84, + 0x9d, 0xe6, 0x02, 0x79, 0x08, 0x45, 0x0e, 0x5f, 0x4c, 0xc3, 0x80, 0xc9, 0x98, 0x92, 0x2f, 0xc0, + 0x68, 0x0b, 0xa7, 0x84, 0xbf, 0x1d, 0x4d, 0xaf, 0x8a, 0x57, 0x33, 0xe4, 0x37, 0xa9, 0xa3, 0xdf, + 0x54, 0x65, 0x47, 0x99, 0xf4, 0x77, 0xf1, 0xdd, 0x9d, 0x1f, 0x57, 0x0d, 0xfb, 0x1e, 0x57, 0xa9, + 0xa6, 0x56, 0x4c, 0x53, 0xfa, 0xfc, 0x49, 0xd5, 0x4c, 0xeb, 0x93, 0xaa, 0x1a, 0xd6, 0x45, 0x34, + 0x27, 0x4d, 0xaa, 0xa9, 0xd9, 0x54, 0x1d, 0xbd, 0x6f, 0xbc, 0xda, 0x17, 0x7c, 0xbf, 0xe9, 0x0b, + 0xab, 0xc4, 0xfc, 0xcc, 0xea, 0x82, 0xab, 0xc7, 0x5f, 0x8c, 0xc1, 0x31, 0x9f, 0x1e, 0xfb, 0x80, + 0x5b, 0xd5, 0x39, 0xdf, 0x5e, 0xe3, 0x7b, 0x78, 0x3e, 0x7f, 0x19, 0x12, 0x04, 0x1e, 0x45, 0xfc, + 0x47, 0x97, 0xdc, 0x67, 0xbe, 0xf2, 0x2f, 0xe5, 0xe0, 0xe1, 0x66, 0x60, 0x56, 0x28, 0x91, 0xe2, + 0x7b, 0x7b, 0x97, 0x5f, 0xd6, 0xfb, 0xbc, 0xad, 0x7d, 0x70, 0x62, 0x0c, 0xcb, 0xf0, 0xe5, 0xf3, + 0x1d, 0xdf, 0x48, 0x33, 0x67, 0xda, 0x3d, 0x29, 0xdb, 0x83, 0xa7, 0xee, 0xf4, 0xd0, 0xa4, 0xdb, + 0x0c, 0xde, 0x7e, 0x7a, 0x77, 0x0d, 0x0e, 0x3f, 0x4d, 0xd8, 0xf2, 0x16, 0xef, 0x22, 0x1a, 0x1c, + 0x76, 0xcf, 0x83, 0x25, 0xfe, 0x45, 0x01, 0x96, 0xa2, 0x5f, 0x04, 0xf0, 0x58, 0xe7, 0xcb, 0xd6, + 0xfb, 0xa7, 0x3b, 0x46, 0x99, 0x69, 0x5f, 0x84, 0x51, 0x7c, 0x98, 0xf2, 0xa7, 0x25, 0xb8, 0xab, + 0xa5, 0x6b, 0xee, 0xfe, 0xe7, 0xdb, 0x3c, 0x97, 0xd9, 0x57, 0xa6, 0x34, 0xdf, 0x86, 0xd9, 0x07, + 0x22, 0x99, 0x65, 0x5c, 0x04, 0xb8, 0x7d, 0x16, 0x0e, 0x05, 0x99, 0x15, 0x62, 0x7a, 0x12, 0x86, + 0x83, 0xfb, 0xe7, 0x91, 0x99, 0xc3, 0x50, 0x60, 0x0f, 0x5d, 0x2e, 0x87, 0x67, 0xc0, 0x95, 0x42, + 0x09, 0xd2, 0x2e, 0x28, 0x4f, 0xb6, 0x7b, 0x16, 0x82, 0x87, 0x49, 0x04, 0x3d, 0x15, 0xec, 0xc1, + 0x97, 0x76, 0x1d, 0xd4, 0x30, 0x0e, 0x4c, 0x2d, 0xbe, 0x23, 0xc1, 0x3d, 0x5d, 0xb8, 0xe5, 0xa2, + 0x79, 0x11, 0xc6, 0x7d, 0x7b, 0x1a, 0x22, 0x22, 0x08, 0x55, 0x39, 0x11, 0x9d, 0x0a, 0xbb, 0x8b, + 0xf6, 0xa3, 0x44, 0x5c, 0x9f, 0xfa, 0xe6, 0xe4, 0x58, 0x6b, 0x9b, 0xad, 0x8c, 0xb5, 0xee, 0x3c, + 0x1c, 0xa0, 0x4e, 0xbd, 0x2a, 0xc1, 0x83, 0xc1, 0xa1, 0xb6, 0xc9, 0xa9, 0x7f, 0xfc, 0x66, 0xe8, + 0xeb, 0x12, 0x9c, 0xe8, 0x85, 0x6d, 0x3e, 0x55, 0x9b, 0x30, 0xe6, 0xad, 0x03, 0xc2, 0x33, 0xb5, + 0xa7, 0xd5, 0x05, 0xd3, 0x6c, 0xe4, 0x52, 0xbb, 0x03, 0x53, 0xf2, 0xeb, 0x12, 0xb7, 0x46, 0xbf, + 0x36, 0xb8, 0xf2, 0x0f, 0x6e, 0x7d, 0x47, 0xcb, 0x3f, 0xb0, 0xfd, 0xdd, 0x66, 0x02, 0x63, 0x7b, + 0x9a, 0x40, 0x6f, 0x4d, 0x21, 0x5f, 0xe5, 0xae, 0xb3, 0xcd, 0xe6, 0xe4, 0xdb, 0x60, 0xac, 0x8d, + 0x65, 0x70, 0xf7, 0xb1, 0x07, 0xc3, 0x50, 0x50, 0xab, 0xee, 0xcb, 0xbf, 0x2d, 0xc1, 0x24, 0xed, + 0xb8, 0xcd, 0xf4, 0xfc, 0x38, 0xca, 0xa9, 0xc1, 0x3d, 0x5f, 0x5b, 0x76, 0xb9, 0xc0, 0x16, 0xa0, + 0x9f, 0x69, 0x14, 0x97, 0xd1, 0x3e, 0x54, 0x92, 0x13, 0x90, 0x7f, 0x57, 0x78, 0xda, 0x39, 0x31, + 0xa0, 0xf6, 0x76, 0x7c, 0x7b, 0xf2, 0x39, 0x20, 0x3b, 0xf6, 0x89, 0xe9, 0x6b, 0xc2, 0xe7, 0xb6, + 0xe7, 0x9b, 0x0b, 0xaa, 0x72, 0x60, 0x3e, 0x97, 0x49, 0xed, 0xce, 0x3a, 0xd7, 0x3f, 0x10, 0xce, + 0xd5, 0x1d, 0x53, 0x84, 0x73, 0xfd, 0x71, 0x9b, 0x14, 0xd7, 0xcd, 0x46, 0x0c, 0xe0, 0x6f, 0xa2, + 0x9b, 0xfd, 0x83, 0x18, 0x1c, 0xa1, 0x63, 0xf3, 0x6f, 0xe2, 0x1c, 0xe4, 0x64, 0x20, 0xdb, 0xaa, + 0x94, 0xf7, 0xe8, 0x45, 0xb2, 0xb6, 0x55, 0xb9, 0x12, 0x8a, 0x98, 0xa8, 0x1a, 0xd8, 0xde, 0xa3, + 0x74, 0xe2, 0x51, 0x74, 0xaa, 0xbe, 0x7d, 0xa5, 0x36, 0xca, 0x91, 0x38, 0x00, 0xe5, 0xf8, 0xaa, + 0x04, 0xf9, 0x76, 0x02, 0xe4, 0xca, 0xa0, 0xc1, 0xe1, 0xc0, 0xa1, 0x4f, 0x58, 0x1f, 0x1e, 0xee, + 0x65, 0x53, 0x2d, 0x64, 0xae, 0x87, 0x2c, 0x7c, 0xa7, 0xb3, 0xa1, 0xc9, 0xa0, 0xbe, 0xb7, 0xae, + 0x49, 0x7e, 0x0c, 0xcd, 0xf4, 0xd5, 0x16, 0x9f, 0xff, 0x37, 0x62, 0x3d, 0xf3, 0x5b, 0x12, 0x4c, + 0x74, 0x60, 0xfb, 0xc7, 0x31, 0x90, 0x6f, 0x77, 0xd4, 0x8d, 0x83, 0x5e, 0x2d, 0x3d, 0xc1, 0x0d, + 0x2b, 0xf8, 0x1c, 0xc3, 0xb7, 0x28, 0x6e, 0xf7, 0x9e, 0x53, 0x7e, 0x2b, 0x1c, 0x6d, 0x8b, 0xc5, + 0x79, 0x2b, 0x40, 0x62, 0x5b, 0xb3, 0x1d, 0xce, 0xd6, 0xfd, 0x9d, 0xd8, 0x0a, 0x61, 0x53, 0x1c, + 0x19, 0x41, 0x96, 0x92, 0x5e, 0x35, 0x8c, 0x3a, 0x67, 0x43, 0xbe, 0x0c, 0xa3, 0xbe, 0x3a, 0xde, + 0xc9, 0x19, 0x48, 0x98, 0x06, 0xff, 0x56, 0xc9, 0xe0, 0xa9, 0x63, 0x1d, 0x8f, 0x65, 0x0c, 0xa3, + 0xce, 0x87, 0x4d, 0xe1, 0xe5, 0x71, 0x40, 0x8c, 0x18, 0x3d, 0xa1, 0x11, 0x5d, 0xac, 0xc1, 0x58, + 0xa0, 0x96, 0x77, 0x72, 0x5b, 0xa7, 0x3f, 0xa7, 0xbe, 0x7b, 0x08, 0x92, 0x94, 0x2a, 0xfa, 0x90, + 0x14, 0xf8, 0xcc, 0xd8, 0x74, 0x27, 0x32, 0xed, 0x37, 0x27, 0xf2, 0x27, 0x7b, 0x86, 0xe7, 0x99, + 0xeb, 0x89, 0x77, 0xff, 0xbb, 0x6f, 0x7f, 0x20, 0x76, 0x1f, 0x92, 0x4f, 0x76, 0xd8, 0x31, 0xf1, + 0x19, 0xd9, 0x27, 0x03, 0x1f, 0xc2, 0x78, 0xa4, 0xb7, 0xae, 0x04, 0x67, 0xd3, 0xbd, 0x82, 0x73, + 0xc6, 0x2e, 0x50, 0xc6, 0x4e, 0xa3, 0xc7, 0xa3, 0x19, 0x3b, 0xf9, 0x8e, 0xa0, 0x39, 0xbd, 0x13, + 0xfd, 0x89, 0x04, 0xe3, 0xed, 0xd6, 0xc9, 0xe8, 0x5c, 0x6f, 0x5c, 0xb4, 0x66, 0x42, 0xf9, 0xf3, + 0xfb, 0xc0, 0xe4, 0x43, 0x99, 0xa7, 0x43, 0x99, 0x41, 0x4f, 0xee, 0x63, 0x28, 0x27, 0xfd, 0x07, + 0x37, 0xff, 0x47, 0x82, 0xbb, 0xbb, 0x2e, 0x2e, 0xd1, 0x4c, 0x6f, 0x5c, 0x76, 0x49, 0xf9, 0xf2, + 0xc5, 0xdb, 0x21, 0xc1, 0x47, 0xfc, 0x34, 0x1d, 0xf1, 0x65, 0xb4, 0xb0, 0x9f, 0x11, 0xb7, 0x3d, + 0x1d, 0x43, 0x7f, 0x24, 0x05, 0xae, 0xd9, 0x76, 0x57, 0xa7, 0x96, 0xd5, 0x57, 0x84, 0x61, 0xb4, + 0xe6, 0xe2, 0xf2, 0xb3, 0x74, 0x08, 0x0a, 0x5a, 0xbd, 0xcd, 0x49, 0x3b, 0xf9, 0x8e, 0x60, 0xb0, + 0x78, 0x27, 0xfa, 0x5f, 0x52, 0xfb, 0x7b, 0xaf, 0x67, 0xbb, 0xb2, 0xd8, 0x79, 0x65, 0x99, 0x3f, + 0xb7, 0x77, 0x44, 0x3e, 0xc8, 0x06, 0x1d, 0x64, 0x0d, 0xe1, 0x83, 0x1e, 0x64, 0xdb, 0x49, 0x44, + 0x5f, 0x96, 0x60, 0xbc, 0xdd, 0x52, 0x2a, 0xc2, 0x2c, 0xbb, 0xac, 0x1a, 0x23, 0xcc, 0xb2, 0xdb, + 0xba, 0x4d, 0x7e, 0x23, 0x1d, 0xfc, 0x19, 0xf4, 0x44, 0xa7, 0xc1, 0x77, 0x9d, 0x45, 0x62, 0x8b, + 0x5d, 0x57, 0x20, 0x11, 0xb6, 0xd8, 0xcb, 0xf2, 0x2b, 0xc2, 0x16, 0x7b, 0x5a, 0x00, 0x45, 0xdb, + 0xa2, 0x3b, 0xb2, 0x1e, 0xa7, 0xd1, 0x46, 0x5f, 0x94, 0x60, 0x28, 0x90, 0x60, 0xa3, 0xc7, 0xba, + 0x32, 0xda, 0x6e, 0x35, 0x93, 0x3f, 0xb5, 0x17, 0x14, 0x3e, 0x96, 0x05, 0x3a, 0x96, 0x59, 0x34, + 0xb3, 0x9f, 0xb1, 0x04, 0x0f, 0xc1, 0xbf, 0x2a, 0xc1, 0x58, 0x9b, 0xd4, 0x34, 0xc2, 0x0a, 0x3b, + 0xe7, 0xe0, 0xf9, 0x73, 0x7b, 0x47, 0xe4, 0xa3, 0xba, 0x48, 0x47, 0xf5, 0x16, 0xf4, 0xe6, 0xfd, + 0x8c, 0xca, 0x17, 0x9f, 0x6f, 0x7a, 0xd7, 0xf2, 0x7c, 0xfd, 0xa0, 0x33, 0x7b, 0x64, 0x4c, 0x0c, + 0xe8, 0xec, 0x9e, 0xf1, 0xf8, 0x78, 0x9e, 0xa1, 0xe3, 0x79, 0x1a, 0xad, 0xdc, 0xde, 0x78, 0x5a, + 0xc3, 0xfa, 0xe7, 0x5a, 0x9f, 0x03, 0x77, 0xd7, 0xa2, 0xb6, 0xc9, 0x6a, 0xfe, 0xf1, 0x3d, 0xe1, + 0xf0, 0x41, 0x9d, 0xa3, 0x83, 0x3a, 0x85, 0x1e, 0xed, 0x34, 0x28, 0xdf, 0xdd, 0x4b, 0x4d, 0xdf, + 0x32, 0x4e, 0xbe, 0x83, 0xa5, 0xc0, 0xef, 0x44, 0xef, 0x92, 0xf8, 0x4d, 0xb7, 0xe3, 0x5d, 0xfb, + 0xf5, 0xe5, 0xb1, 0xf9, 0x07, 0x7b, 0x80, 0xe4, 0x7c, 0xdd, 0x47, 0xf9, 0x9a, 0x40, 0xc7, 0x3a, + 0xf1, 0x45, 0x72, 0x59, 0xf4, 0x3e, 0xc9, 0xbd, 0x2a, 0x7b, 0xa2, 0x3b, 0x6d, 0x7f, 0xb2, 0x9b, + 0x7f, 0xa8, 0x27, 0x58, 0xce, 0xc9, 0xfd, 0x94, 0x93, 0x29, 0x34, 0xd1, 0x91, 0x13, 0x96, 0xfa, + 0x1e, 0xf8, 0x0d, 0xb1, 0x23, 0x30, 0xd9, 0xa1, 0x47, 0xe7, 0x5a, 0xc4, 0x39, 0x64, 0x97, 0x57, + 0xf1, 0x91, 0xaf, 0xde, 0x0f, 0xfa, 0x3b, 0xcf, 0xbd, 0x1d, 0x5a, 0xca, 0xbf, 0x98, 0x04, 0xb4, + 0x64, 0xd7, 0x66, 0x2d, 0xcc, 0xfe, 0x5d, 0x2d, 0xb7, 0xf2, 0xd0, 0x7b, 0x4c, 0xe9, 0xb6, 0xde, + 0x63, 0x2e, 0x05, 0x5e, 0x38, 0xc6, 0xf6, 0xf6, 0xf4, 0xba, 0xf7, 0x67, 0x8e, 0xf1, 0x1f, 0xc1, + 0x33, 0xc7, 0xf6, 0xb7, 0xf9, 0x13, 0x77, 0xfe, 0x79, 0x51, 0xf2, 0x40, 0x9f, 0x17, 0x5d, 0x84, + 0x7e, 0xfe, 0x32, 0xba, 0xbf, 0xcb, 0xcb, 0xe8, 0x5c, 0xc7, 0xe7, 0xcf, 0x1c, 0x1b, 0x9d, 0x16, + 0x9f, 0x46, 0x1e, 0xe8, 0xed, 0x9e, 0x35, 0xff, 0x76, 0xb2, 0xb7, 0x03, 0x71, 0x0c, 0xf2, 0xad, + 0xda, 0xe8, 0xfa, 0x84, 0x2f, 0xc5, 0x21, 0xbb, 0x64, 0xd7, 0x4a, 0x55, 0xcd, 0xb9, 0x43, 0xaa, + 0xfa, 0x4c, 0xe7, 0xa7, 0x5c, 0x27, 0x6e, 0xdd, 0x9c, 0x1c, 0x66, 0xb2, 0xde, 0x87, 0x84, 0xdf, + 0x01, 0x23, 0xa1, 0x8f, 0x10, 0x70, 0x7d, 0x55, 0xf6, 0xf3, 0x65, 0x84, 0x10, 0xa9, 0xf0, 0xf3, + 0xea, 0xe1, 0xe0, 0x47, 0x0a, 0xd0, 0x7b, 0x3b, 0x58, 0x0c, 0xd3, 0xd3, 0x2b, 0xaf, 0xdf, 0xa3, + 0x60, 0x6f, 0xa2, 0xf3, 0x90, 0x0b, 0xcf, 0xa4, 0x3b, 0xcd, 0xbf, 0x1c, 0x83, 0xc1, 0x25, 0x5b, + 0xa4, 0x9f, 0xf8, 0x27, 0xe4, 0x09, 0xdf, 0x59, 0xf7, 0x1f, 0x20, 0xc4, 0x7b, 0x33, 0x0e, 0xf1, + 0x6f, 0x10, 0x3c, 0xa1, 0x1d, 0x82, 0x31, 0x9f, 0x5c, 0x3c, 0x79, 0xc5, 0xa9, 0x0f, 0x2f, 0xe2, + 0x9a, 0xa6, 0xbb, 0x99, 0x2e, 0xfe, 0xe9, 0x43, 0xa3, 0xdb, 0x7b, 0x68, 0xe4, 0xcd, 0x57, 0x62, + 0xbf, 0xf3, 0xb5, 0x43, 0xbd, 0x59, 0x68, 0x5e, 0xdc, 0x4d, 0xbe, 0xa5, 0xd6, 0xa7, 0x76, 0xd2, + 0x1e, 0xbe, 0x27, 0x16, 0x7a, 0x50, 0x27, 0x7f, 0x30, 0x06, 0x43, 0x4b, 0x76, 0x6d, 0x43, 0xaf, + 0xfe, 0xd4, 0x6e, 0x42, 0xf3, 0xb0, 0x05, 0x87, 0x02, 0x92, 0xb9, 0x43, 0x53, 0x70, 0xea, 0xc3, + 0x09, 0x88, 0x2f, 0xd9, 0x35, 0xf4, 0x76, 0x18, 0x09, 0x27, 0x54, 0x1d, 0xf3, 0xe4, 0xd6, 0x70, + 0xd7, 0x79, 0x2d, 0xdb, 0x39, 0x34, 0xa2, 0x1d, 0x18, 0x0a, 0x86, 0xc5, 0xe3, 0x5d, 0x88, 0x04, + 0x20, 0xf3, 0x8f, 0xf6, 0x0a, 0xe9, 0x76, 0xf6, 0x33, 0x90, 0x72, 0x9d, 0xf3, 0xbd, 0x5d, 0xb0, + 0x05, 0x50, 0xe7, 0xcc, 0xbf, 0x8d, 0x3b, 0x23, 0xd2, 0x0b, 0xbb, 0xb2, 0x6e, 0xd2, 0x0b, 0xc1, + 0x76, 0x95, 0x5e, 0x27, 0x53, 0xdc, 0x04, 0xf0, 0xd9, 0xcd, 0x1b, 0xba, 0x50, 0xf0, 0xc0, 0xf2, + 0x8f, 0xf4, 0x04, 0xe6, 0x9e, 0xef, 0x1d, 0xf0, 0x42, 0xe5, 0xff, 0x05, 0x00, 0x00, 0xff, 0xff, + 0x30, 0x4f, 0xd4, 0xcd, 0x40, 0x9d, 0x00, 0x00, } r := bytes.NewReader(gzipped) gzipr, err := compress_gzip.NewReader(r) From d8d1e3f2a74ef06142db49e26207d5fe3bf3129a Mon Sep 17 00:00:00 2001 From: Andrei Ivasko Date: Wed, 15 Sep 2021 21:00:24 +0300 Subject: [PATCH 26/34] make proto-gen --- client/grpc/tmservice/query.pb.go | 2 +- docs/core/proto-docs.md | 38 +-- go.mod | 1 - go.sum | 375 ------------------------------ x/auth/types/query.pb.go | 147 +++++------- x/auth/vesting/types/tx.pb.go | 65 +++--- x/nft/genesis.pb.go | 4 +- x/nft/nft.pb.go | 171 +++++++++++--- x/nft/query.pb.go | 4 +- x/nft/tx.pb.go | 10 +- 10 files changed, 264 insertions(+), 553 deletions(-) diff --git a/client/grpc/tmservice/query.pb.go b/client/grpc/tmservice/query.pb.go index 2e02dcf4e451..3594da2c5f2f 100644 --- a/client/grpc/tmservice/query.pb.go +++ b/client/grpc/tmservice/query.pb.go @@ -634,7 +634,7 @@ func (m *GetNodeInfoRequest) XXX_DiscardUnknown() { var xxx_messageInfo_GetNodeInfoRequest proto.InternalMessageInfo -// GetNodeInfoResponse is the request type for the Query/GetNodeInfo RPC method. +// GetNodeInfoResponse is the response type for the Query/GetNodeInfo RPC method. type GetNodeInfoResponse struct { DefaultNodeInfo *p2p.DefaultNodeInfo `protobuf:"bytes,1,opt,name=default_node_info,json=defaultNodeInfo,proto3" json:"default_node_info,omitempty"` ApplicationVersion *VersionInfo `protobuf:"bytes,2,opt,name=application_version,json=applicationVersion,proto3" json:"application_version,omitempty"` diff --git a/docs/core/proto-docs.md b/docs/core/proto-docs.md index af296094f071..9ff305c659dc 100644 --- a/docs/core/proto-docs.md +++ b/docs/core/proto-docs.md @@ -3189,7 +3189,7 @@ GetNodeInfoRequest is the request type for the Query/GetNodeInfo RPC method. ### GetNodeInfoResponse -GetNodeInfoResponse is the request type for the Query/GetNodeInfo RPC method. +GetNodeInfoResponse is the response type for the Query/GetNodeInfo RPC method. | Field | Type | Label | Description | @@ -7090,11 +7090,12 @@ Class defines the class of the nft type. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `id` | [string](#string) | | | -| `name` | [string](#string) | | | -| `symbol` | [string](#string) | | | -| `description` | [string](#string) | | | -| `uri` | [string](#string) | | | +| `id` | [string](#string) | | id defines the unique identifier of the NFT classification, similar to the contract address of ERC721 | +| `name` | [string](#string) | | name defines the human-readable name of the NFT classification | +| `symbol` | [string](#string) | | symbol is an abbreviated name for nft classification | +| `description` | [string](#string) | | description is a brief description of nft classification | +| `uri` | [string](#string) | | uri is a URI may point to a JSON file that conforms to the nft classification Metadata JSON Schema. | +| `uri_hash` | [string](#string) | | uri_hash is a hash of the document pointed to uri | @@ -7104,15 +7105,16 @@ Class defines the class of the nft type. ### NFT -NFT defines the nft. +NFT defines the NFT. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `class_id` | [string](#string) | | | -| `id` | [string](#string) | | | -| `uri` | [string](#string) | | | -| `data` | [google.protobuf.Any](#google.protobuf.Any) | | | +| `class_id` | [string](#string) | | class_id defines the unique identifier of the NFT classification, similar to the contract address of ERC721 | +| `id` | [string](#string) | | id defines the unique identification of NFT | +| `uri` | [string](#string) | | uri defines NFT's metadata storage address outside the chain | +| `uri_hash` | [string](#string) | | uri_hash is a hash of the document pointed to uri | +| `data` | [google.protobuf.Any](#google.protobuf.Any) | | data is the metadata of the NFT | @@ -7143,8 +7145,8 @@ Entry Defines all nft owned by a person | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `owner` | [string](#string) | | | -| `nfts` | [NFT](#cosmos.nft.v1beta1.NFT) | repeated | | +| `owner` | [string](#string) | | owner is the owner address of the following nft | +| `nfts` | [NFT](#cosmos.nft.v1beta1.NFT) | repeated | nfts is a group of nfts of the same owner | @@ -7415,7 +7417,7 @@ Query defines the gRPC querier service. | ----------- | ------------ | ------------- | ------------| ------- | -------- | | `Balance` | [QueryBalanceRequest](#cosmos.nft.v1beta1.QueryBalanceRequest) | [QueryBalanceResponse](#cosmos.nft.v1beta1.QueryBalanceResponse) | Balance queries the number of NFTs of a given class owned by the owner, same as balanceOf in ERC721 | GET|/cosmos/nft/v1beta1/balance/{class_id}/{owner}| | `Owner` | [QueryOwnerRequest](#cosmos.nft.v1beta1.QueryOwnerRequest) | [QueryOwnerResponse](#cosmos.nft.v1beta1.QueryOwnerResponse) | Owner queries the owner of the NFT based on its class and id, same as ownerOf in ERC721 | GET|/cosmos/nft/v1beta1/owner/{class_id}/{id}| -| `Supply` | [QuerySupplyRequest](#cosmos.nft.v1beta1.QuerySupplyRequest) | [QuerySupplyResponse](#cosmos.nft.v1beta1.QuerySupplyResponse) | Supply queries the number of nft based on the class, same as totalSupply of ERC721 | GET|/cosmos/nft/v1beta1/supply/{class_id}| +| `Supply` | [QuerySupplyRequest](#cosmos.nft.v1beta1.QuerySupplyRequest) | [QuerySupplyResponse](#cosmos.nft.v1beta1.QuerySupplyResponse) | Supply queries the number of NFTs from the given class, same as totalSupply of ERC721. | GET|/cosmos/nft/v1beta1/supply/{class_id}| | `NFTsOfClass` | [QueryNFTsOfClassRequest](#cosmos.nft.v1beta1.QueryNFTsOfClassRequest) | [QueryNFTsOfClassResponse](#cosmos.nft.v1beta1.QueryNFTsOfClassResponse) | NFTsOfClass queries all NFTs of a given class or optional owner, similar to tokenByIndex in ERC721Enumerable | GET|/cosmos/nft/v1beta1/nfts/{class_id}| | `NFT` | [QueryNFTRequest](#cosmos.nft.v1beta1.QueryNFTRequest) | [QueryNFTResponse](#cosmos.nft.v1beta1.QueryNFTResponse) | NFT queries an NFT based on its class and id. | GET|/cosmos/nft/v1beta1/nfts/{class_id}/{id}| | `Class` | [QueryClassRequest](#cosmos.nft.v1beta1.QueryClassRequest) | [QueryClassResponse](#cosmos.nft.v1beta1.QueryClassResponse) | Class queries an NFT class based on its id | GET|/cosmos/nft/v1beta1/classes/{class_id}| @@ -7440,10 +7442,10 @@ MsgSend represents a message to send a nft from one account to another account. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `class_id` | [string](#string) | | | -| `id` | [string](#string) | | | -| `sender` | [string](#string) | | | -| `receiver` | [string](#string) | | | +| `class_id` | [string](#string) | | class_id defines the unique identifier of the nft classification, similar to the contract address of ERC721 | +| `id` | [string](#string) | | id defines the unique identification of nft | +| `sender` | [string](#string) | | sender is the address of the owner of nft | +| `receiver` | [string](#string) | | receiver is the receiver address of nft | diff --git a/go.mod b/go.mod index 399b4f868ded..addc5a93bec5 100644 --- a/go.mod +++ b/go.mod @@ -19,7 +19,6 @@ require ( github.com/gogo/protobuf v1.3.3 github.com/golang/mock v1.6.0 github.com/golang/protobuf v1.5.2 - github.com/golangci/golangci-lint v1.42.1 // indirect github.com/gorilla/handlers v1.5.1 github.com/gorilla/mux v1.8.0 github.com/grpc-ecosystem/go-grpc-middleware v1.3.0 diff --git a/go.sum b/go.sum index a511e228cf55..c679754ee4a0 100644 --- a/go.sum +++ b/go.sum @@ -1,6 +1,3 @@ -4d63.com/gochecknoglobals v0.0.0-20201008074935-acfc0b28355a h1:wFEQiK85fRsEVF0CRrPAos5LoAryUsIX1kPW/WrIqFw= -4d63.com/gochecknoglobals v0.0.0-20201008074935-acfc0b28355a/go.mod h1:wfdC5ZjKSPr7CybKEcgJhUOgeAQW1+7WcyK8OvUilfo= -bitbucket.org/creachadair/shell v0.0.6/go.mod h1:8Qqi/cYk7vPnsOePHroKXDJYmb5x7ENhtiFtfZq8K+M= cloud.google.com/go v0.34.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= cloud.google.com/go v0.38.0/go.mod h1:990N+gfupTy94rShfmMCWGDn0LpTmnzTp2qbd1dvSRU= cloud.google.com/go v0.44.1/go.mod h1:iSa0KzasP4Uvy3f1mN/7PiObzGgflwredwwASm/v6AU= @@ -13,7 +10,6 @@ cloud.google.com/go v0.53.0/go.mod h1:fp/UouUEsRkN6ryDKNW/Upv/JBKnv6WDthjR6+vze6 cloud.google.com/go v0.54.0/go.mod h1:1rq2OEkV3YMf6n/9ZvGWI3GWw0VoqH/1x2nd8Is/bPc= cloud.google.com/go v0.56.0/go.mod h1:jr7tqZxxKOVYizybht9+26Z/gUq7tiRzu+ACVAMbKVk= cloud.google.com/go v0.57.0/go.mod h1:oXiQ6Rzq3RAkkY7N6t3TcE6jE+CIBBbA36lwQ1JyzZs= -cloud.google.com/go v0.60.0/go.mod h1:yw2G51M9IfRboUH61Us8GqCeF1PzPblB823Mn2q2eAU= cloud.google.com/go v0.62.0/go.mod h1:jmCYTdRCQuc1PHIIJ/maLInMho30T/Y0M4hTdTShOYc= cloud.google.com/go v0.65.0/go.mod h1:O5N8zS7uWy9vkA9vayVHs65eM1ubvY4h553ofrNHObY= cloud.google.com/go v0.72.0/go.mod h1:M+5Vjvlc2wnp6tjzE102Dw08nGShTscUx2nZMufOKPI= @@ -34,19 +30,14 @@ cloud.google.com/go/pubsub v1.0.1/go.mod h1:R0Gpsv3s54REJCy4fxDixWD93lHJMoZTyQ2k cloud.google.com/go/pubsub v1.1.0/go.mod h1:EwwdRX2sKPjnvnqCa270oGRyludottCI76h+R3AArQw= cloud.google.com/go/pubsub v1.2.0/go.mod h1:jhfEVHT8odbXTkndysNHCcx0awwzvfOlguIAii9o8iA= cloud.google.com/go/pubsub v1.3.1/go.mod h1:i+ucay31+CNRpDW4Lu78I4xXG+O1r/MAHgjpRVR+TSU= -cloud.google.com/go/pubsub v1.5.0/go.mod h1:ZEwJccE3z93Z2HWvstpri00jOg7oO4UZDtKhwDwqF0w= -cloud.google.com/go/spanner v1.7.0/go.mod h1:sd3K2gZ9Fd0vMPLXzeCrF6fq4i63Q7aTLW/lBIfBkIk= cloud.google.com/go/storage v1.0.0/go.mod h1:IhtSnM/ZTZV8YYJWCY8RULGVqBDmpoyjwiyrjsg+URw= cloud.google.com/go/storage v1.5.0/go.mod h1:tpKbwo567HUNpVclU5sGELwQWBDZ8gh0ZeosJ0Rtdos= cloud.google.com/go/storage v1.6.0/go.mod h1:N7U0C8pVQ/+NIKOBQyamJIeKQKkZ+mxpohlUTyfDhBk= cloud.google.com/go/storage v1.8.0/go.mod h1:Wv1Oy7z6Yz3DshWRJFhqM/UCfaWIRTdp0RXyy7KQOVs= cloud.google.com/go/storage v1.10.0/go.mod h1:FLPqc6j+Ki4BU591ie1oL6qBQGu2Bl/tZ9ullr3+Kg0= -contrib.go.opencensus.io/exporter/stackdriver v0.13.4/go.mod h1:aXENhDJ1Y4lIg4EUaVTwzvYETVNZk10Pu26tevFKLUc= dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod h1:H6x//7gZCb22OMCxBHrMx7a5I7Hp++hsVxbQ4BYO7hU= filippo.io/edwards25519 v1.0.0-beta.2 h1:/BZRNzm8N4K4eWfK28dL4yescorxtO7YG1yun8fy+pI= filippo.io/edwards25519 v1.0.0-beta.2/go.mod h1:X+pm78QAUPtFLi1z9PYIlS/bdDnvbCOGKtZ+ACWEf7o= -github.com/Antonboom/errname v0.1.4 h1:lGSlI42Gm4bI1e+IITtXJXvxFM8N7naWimVFKcb0McY= -github.com/Antonboom/errname v0.1.4/go.mod h1:jRXo3m0E0EuCnK3wbsSVH3X55Z4iTDLl6ZfCxwFj4TM= github.com/Azure/azure-pipeline-go v0.2.1/go.mod h1:UGSo8XybXnIGZ3epmeBw7Jdz+HiUVpqIlpz/HKHylF4= github.com/Azure/azure-pipeline-go v0.2.2/go.mod h1:4rQ/NZncSvGqNkkOsNpOU1tgoNuIlp9AfUH5G1tvCHc= github.com/Azure/azure-storage-blob-go v0.7.0/go.mod h1:f9YQKtsG1nMisotuTPpO0tjNuEjKRYAcJU8/ydDI++4= @@ -61,8 +52,6 @@ github.com/Azure/go-autorest/autorest/mocks v0.3.0/go.mod h1:a8FDP3DYzQ4RYfVAxAN github.com/Azure/go-autorest/logger v0.1.0/go.mod h1:oExouG+K6PryycPJfVSxi/koC6LSNgds39diKLz7Vrc= github.com/Azure/go-autorest/tracing v0.5.0/go.mod h1:r/s2XiOKccPW3HrqB+W0TQzfbtp2fGCgRFtBroKn4Dk= github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= -github.com/BurntSushi/toml v0.4.1 h1:GaI7EiDXDRfa8VshkTj7Fym7ha+y8/XxIgD2okUIjLw= -github.com/BurntSushi/toml v0.4.1/go.mod h1:CxXYINrC8qIiEnFrOxCa7Jy5BFHlXnUU2pbicEuybxQ= github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo= github.com/ChainSafe/go-schnorrkel v0.0.0-20200405005733-88cbf1b4c40d h1:nalkkPQcITbvhmL4+C4cKA87NW0tfm3Kl9VXRoPywFg= github.com/ChainSafe/go-schnorrkel v0.0.0-20200405005733-88cbf1b4c40d/go.mod h1:URdX5+vg25ts3aCh8H5IFZybJYKWhJHYMTnf+ULtoC4= @@ -70,23 +59,12 @@ github.com/DataDog/datadog-go v3.2.0+incompatible/go.mod h1:LButxg5PwREeZtORoXG3 github.com/DataDog/zstd v1.4.1/go.mod h1:1jcaCB/ufaK+sKp1NBhlGmpz41jOoPQ35bpF36t7BBo= github.com/DataDog/zstd v1.4.5 h1:EndNeuB0l9syBZhut0wns3gV1hL8zX8LIu6ZiVHWLIQ= github.com/DataDog/zstd v1.4.5/go.mod h1:1jcaCB/ufaK+sKp1NBhlGmpz41jOoPQ35bpF36t7BBo= -github.com/Djarvur/go-err113 v0.0.0-20210108212216-aea10b59be24 h1:sHglBQTwgx+rWPdisA5ynNEsoARbiCBOyGcJM4/OzsM= -github.com/Djarvur/go-err113 v0.0.0-20210108212216-aea10b59be24/go.mod h1:4UJr5HIiMZrwgkSPdsjy2uOQExX/WEILpIrO9UPGuXs= github.com/Knetic/govaluate v3.0.1-0.20171022003610-9aa49832a739+incompatible/go.mod h1:r7JcOSlj0wfOMncg0iLm8Leh48TZaKVeNIfJntJ2wa0= -github.com/Masterminds/goutils v1.1.0/go.mod h1:8cTjp+g8YejhMuvIA5y2vz3BpJxksy863GQaJW2MFNU= -github.com/Masterminds/semver v1.4.2/go.mod h1:MB6lktGJrhw8PrUyiEoblNEGEQ+RzHPF078ddwwvV3Y= -github.com/Masterminds/semver v1.5.0 h1:H65muMkzWKEuNDnfl9d70GUjFniHKHRbFPGBuZ3QEww= -github.com/Masterminds/semver v1.5.0/go.mod h1:MB6lktGJrhw8PrUyiEoblNEGEQ+RzHPF078ddwwvV3Y= -github.com/Masterminds/sprig v2.15.0+incompatible/go.mod h1:y6hNFY5UBTIWBxnzTeuNhlNS5hqE0NB0E6fgfo2Br3o= -github.com/Masterminds/sprig v2.22.0+incompatible/go.mod h1:y6hNFY5UBTIWBxnzTeuNhlNS5hqE0NB0E6fgfo2Br3o= github.com/OneOfOne/xxhash v1.2.2 h1:KMrpdQIwFcEqXDklaen+P1axHaj9BSKzvpUUfnHldSE= github.com/OneOfOne/xxhash v1.2.2/go.mod h1:HSdplMjZKSmBqAxg5vPj2TmRDmfkzw+cTzAElWljhcU= -github.com/OpenPeeDeeP/depguard v1.0.1 h1:VlW4R6jmBIv3/u1JNlawEvJMM4J+dPORPaZasQee8Us= -github.com/OpenPeeDeeP/depguard v1.0.1/go.mod h1:xsIw86fROiiwelg+jB2uM9PiKihMMmUx/1V+TNhjQvM= github.com/Shopify/sarama v1.19.0/go.mod h1:FVkBWblsNy7DGZRfXLU0O9RCGt5g3g3yEuWXgklEdEo= github.com/Shopify/toxiproxy v2.1.4+incompatible/go.mod h1:OXgGpZ6Cli1/URJOF1DMxUHB2q5Ap20/P/eIdh4G0pI= github.com/StackExchange/wmi v0.0.0-20180116203802-5d049714c4a6/go.mod h1:3eOhrUMpNV+6aFIbp5/iudMxNCF27Vw2OZgy4xEx0Fg= -github.com/StackExchange/wmi v1.2.1/go.mod h1:rcmrprowKIVzvc+NUiLncP2uuArMWLCbu9SBzvHz7e8= github.com/VictoriaMetrics/fastcache v1.5.7/go.mod h1:ptDBkNMQI4RtmVo8VS/XwRY6RoTu1dAWCbrk+6WsEM8= github.com/VividCortex/gohistogram v1.0.0 h1:6+hBz+qvs0JOrrNhhmR7lFxo5sINxBCGXrdtl/UvroE= github.com/VividCortex/gohistogram v1.0.0/go.mod h1:Pf5mBqqDxYaXu3hDrrU+w6nw50o/4+TcAqDqk/vUH7g= @@ -100,13 +78,8 @@ github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751/go.mod h1:LOuy github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= github.com/alecthomas/units v0.0.0-20190717042225-c3de453c63f4/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= github.com/alecthomas/units v0.0.0-20190924025748-f65c72e2690d/go.mod h1:rBZYJk541a8SKzHPHnH3zbiI+7dagKZ0cgpgrD7Fyho= -github.com/alexkohler/prealloc v1.0.0 h1:Hbq0/3fJPQhNkN0dR95AVrr6R7tou91y0uHG5pOcUuw= -github.com/alexkohler/prealloc v1.0.0/go.mod h1:VetnK3dIgFBBKmg0YnD9F9x6Icjd+9cvfHR56wJVlKE= github.com/allegro/bigcache v1.2.1-0.20190218064605-e24eb225f156/go.mod h1:Cb/ax3seSYIx7SuZdm2G2xzfwmv3TPSk2ucNfQESPXM= -github.com/andybalholm/brotli v1.0.0/go.mod h1:loMXtMfwqflxFJPmdbJO0a3KNoPuLBgiu3qAvBg8x/Y= -github.com/antihax/optional v0.0.0-20180407024304-ca021399b1a6/go.mod h1:V8iCPQYkqmusNa815XgQio277wI47sdRh1dUOLdyC6Q= github.com/antihax/optional v1.0.0/go.mod h1:uupD/76wgC+ih3iEmQUL+0Ugr19nfwCT1kdvxnR2qWY= -github.com/aokoli/goutils v1.0.1/go.mod h1:SijmP0QR8LtwsmDs8Yii5Z/S4trXFGFC2oO5g9DP+DQ= github.com/apache/thrift v0.12.0/go.mod h1:cp2SuWMxlEZw2r+iP2GNCdIi4C1qmUzdZFSVb+bacwQ= github.com/apache/thrift v0.13.0/go.mod h1:cp2SuWMxlEZw2r+iP2GNCdIi4C1qmUzdZFSVb+bacwQ= github.com/aristanetworks/goarista v0.0.0-20170210015632-ea17b1a17847/go.mod h1:D/tb0zPVXnP7fmsLZjtdUhSsumbK/ij54UXjjVgMGxQ= @@ -117,16 +90,9 @@ github.com/armon/go-metrics v0.3.9 h1:O2sNqxBdvq8Eq5xmzljcYzAORli6RWCvEym4cJf9m1 github.com/armon/go-metrics v0.3.9/go.mod h1:4O98XIr/9W0sxpJ8UaYkvjk10Iff7SnFrb4QAOwNTFc= github.com/armon/go-radix v0.0.0-20180808171621-7fddfc383310/go.mod h1:ufUuZ+zHj4x4TnLV4JWEpy2hxWSpsRywHrMgIH9cCH8= github.com/aryann/difflib v0.0.0-20170710044230-e206f873d14a/go.mod h1:DAHtR1m6lCRdSC2Tm3DSWRPvIPr6xNKyeHdqDQSQT+A= -github.com/ashanbrown/forbidigo v1.2.0 h1:RMlEFupPCxQ1IogYOQUnIQwGEUGK8g5vAPMRyJoSxbc= -github.com/ashanbrown/forbidigo v1.2.0/go.mod h1:vVW7PEdqEFqapJe95xHkTfB1+XvZXBFg8t0sG2FIxmI= -github.com/ashanbrown/makezero v0.0.0-20210520155254-b6261585ddde h1:YOsoVXsZQPA9aOTy1g0lAJv5VzZUvwQuZqug8XPeqfM= -github.com/ashanbrown/makezero v0.0.0-20210520155254-b6261585ddde/go.mod h1:oG9Dnez7/ESBqc4EdrdNlryeo7d0KcW1ftXHm7nU/UU= github.com/aws/aws-lambda-go v1.13.3/go.mod h1:4UKl9IzQMoD+QF79YdCuzCwp8VbmG4VAQwij/eHl5CU= -github.com/aws/aws-sdk-go v1.23.20/go.mod h1:KmX6BPdI08NWTb3/sm4ZGu5ShLoqVDhKgpiN924inxo= -github.com/aws/aws-sdk-go v1.25.37/go.mod h1:KmX6BPdI08NWTb3/sm4ZGu5ShLoqVDhKgpiN924inxo= github.com/aws/aws-sdk-go v1.25.48/go.mod h1:KmX6BPdI08NWTb3/sm4ZGu5ShLoqVDhKgpiN924inxo= github.com/aws/aws-sdk-go v1.27.0/go.mod h1:KmX6BPdI08NWTb3/sm4ZGu5ShLoqVDhKgpiN924inxo= -github.com/aws/aws-sdk-go v1.36.30/go.mod h1:hcU610XS61/+aQV88ixoOzUoG7v3b31pl2zKMmprdro= github.com/aws/aws-sdk-go-v2 v0.18.0/go.mod h1:JWVYvqSMppoMJC0x5wdwiImzgXTI9FuZwxzkQq9wy+g= github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q= github.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+CedLV8= @@ -136,10 +102,6 @@ github.com/bgentry/speakeasy v0.1.0 h1:ByYyxL9InA1OWqxJqqp2A5pYHUrCiAL6K3J+LKSsQ github.com/bgentry/speakeasy v0.1.0/go.mod h1:+zsyZBPWlz7T6j88CTgSN5bM796AkVf0kBD4zp0CCIs= github.com/bketelsen/crypt v0.0.3-0.20200106085610-5cbc8cc4026c/go.mod h1:MKsuJmJgSg28kpZDP6UIiPt0e0Oz0kqKNGyRaWEPv84= github.com/bketelsen/crypt v0.0.4/go.mod h1:aI6NrJ0pMGgvZKL1iVgXLnfIFJtfV+bKCoqOes/6LfM= -github.com/bkielbasa/cyclop v1.2.0 h1:7Jmnh0yL2DjKfw28p86YTd/B4lRGcNuu12sKE35sM7A= -github.com/bkielbasa/cyclop v1.2.0/go.mod h1:qOI0yy6A7dYC4Zgsa72Ppm9kONl0RoIlPbzot9mhmeI= -github.com/bombsimon/wsl/v3 v3.3.0 h1:Mka/+kRLoQJq7g2rggtgQsjuI/K5Efd87WX96EWFxjM= -github.com/bombsimon/wsl/v3 v3.3.0/go.mod h1:st10JtZYLE4D5sC7b8xV4zTKZwAQjCH/Hy2Pm1FNZIc= github.com/btcsuite/btcd v0.0.0-20171128150713-2e60448ffcc6/go.mod h1:Dmm/EzmjnCiweXmzRIAiUWCInVmPgjkzgv5k4tVyXiQ= github.com/btcsuite/btcd v0.0.0-20190115013929-ed77733ec07d/go.mod h1:d3C0AkH6BRcvO8T0UEPu53cnw4IbV63x1bEjildYhO0= github.com/btcsuite/btcd v0.0.0-20190315201642-aa6e0f35703c/go.mod h1:DrZx5ec/dmnfpw9KyYoQyYo7d0KEvTkk/5M/vbZjAr8= @@ -169,10 +131,6 @@ github.com/cespare/xxhash v1.1.0 h1:a6HrQnmkObjyL+Gs60czilIUGqrzKutQD6XZog3p+ko= github.com/cespare/xxhash v1.1.0/go.mod h1:XrSqR1VqqWfGrhpAt58auRo0WTKS1nRRg3ghfAqPWnc= github.com/cespare/xxhash/v2 v2.1.1 h1:6MnRN8NT7+YBpUIWxHtefFZOKTAPgGjpQSxqLNn0+qY= github.com/cespare/xxhash/v2 v2.1.1/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= -github.com/charithe/durationcheck v0.0.8 h1:cnZrThioNW9gSV5JsRIXmkyHUbcDH7Y9hkzFDVc9/j0= -github.com/charithe/durationcheck v0.0.8/go.mod h1:SSbRIBVfMjCi/kEB6K65XEA83D6prSM8ap1UCpNKtgg= -github.com/chavacava/garif v0.0.0-20210405164556-e8a0a408d6af h1:spmv8nSH9h5oCQf40jt/ufBCt9j0/58u4G+rkeMqXGI= -github.com/chavacava/garif v0.0.0-20210405164556-e8a0a408d6af/go.mod h1:Qjyv4H3//PWVzTeCezG2b9IRn6myJxJSr4TD/xo6ojU= github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWRnGsAI= github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e/go.mod h1:nSuG5e5PlCu98SY8svDHJxuZscDgtXS6KTTbou5AhLI= github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU= @@ -196,7 +154,6 @@ github.com/coreos/go-semver v0.2.0/go.mod h1:nnelYz7RCh+5ahJtPPxZlU+153eP4D4r3Ee github.com/coreos/go-semver v0.3.0/go.mod h1:nnelYz7RCh+5ahJtPPxZlU+153eP4D4r3EedlOD2RNk= github.com/coreos/go-systemd v0.0.0-20180511133405-39ca1b05acc7/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4= github.com/coreos/go-systemd v0.0.0-20190321100706-95778dfbb74e/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4= -github.com/coreos/go-systemd v0.0.0-20190620071333-e64a0ec8b42a/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4= github.com/coreos/go-systemd/v22 v22.3.2/go.mod h1:Y58oyj3AT4RCenI/lSvhwexgC+NSVTIJ3seZv2GcEnc= github.com/coreos/pkg v0.0.0-20160727233714-3ac0863d7acf/go.mod h1:E3G3o1h8I7cfcXa63jLwjI0eiQQMgzzUDFVpN/nH/eA= github.com/coreos/pkg v0.0.0-20180928190104-399ea9e2e55f/go.mod h1:E3G3o1h8I7cfcXa63jLwjI0eiQQMgzzUDFVpN/nH/eA= @@ -219,19 +176,14 @@ github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d/go.mod h1:ma github.com/cpuguy83/go-md2man/v2 v2.0.0/go.mod h1:maD7wRr/U5Z6m/iR4s+kqSMx2CaBsrgA7czyZG/E6dU= github.com/creack/pty v1.1.7/go.mod h1:lj5s0c3V2DBrqTV7llrYr5NG6My20zk30Fl46Y7DoTY= github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E= -github.com/daixiang0/gci v0.2.9 h1:iwJvwQpBZmMg31w+QQ6jsyZ54KEATn6/nfARbBNW294= -github.com/daixiang0/gci v0.2.9/go.mod h1:+4dZ7TISfSmqfAGv59ePaHfNzgGtIkHAhhdKggP1JAc= github.com/danieljoos/wincred v1.0.2 h1:zf4bhty2iLuwgjgpraD2E9UbvO+fe54XXGJbOwe23fU= github.com/danieljoos/wincred v1.0.2/go.mod h1:SnuYRW9lp1oJrZX/dXJqr0cPK5gYXqx3EJbmjhLdK9U= -github.com/davecgh/go-spew v0.0.0-20161028175848-04cdfd42973b/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v0.0.0-20171005155431-ecdeabc65495/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/deckarep/golang-set v0.0.0-20180603214616-504e848d77ea/go.mod h1:93vsz/8Wt4joVM7c2AVqh+YRMiUSc14yDtF28KmMOgQ= github.com/decred/dcrd/lru v1.0.0/go.mod h1:mxKOwFd7lFjN2GZYsiz/ecgqR6kkYAl+0pz0tEMk218= -github.com/denis-tingajkin/go-header v0.4.2 h1:jEeSF4sdv8/3cT/WY8AgDHUoItNSoEZ7qg9dX7pc218= -github.com/denis-tingajkin/go-header v0.4.2/go.mod h1:eLRHAVXzE5atsKAnNRDB90WHCFFnBUn4RN0nRcs1LJA= github.com/desertbit/timer v0.0.0-20180107155436-c41aec40b27f h1:U5y3Y5UE0w7amNe7Z5G/twsBW0KEalRQXZzf8ufSh9I= github.com/desertbit/timer v0.0.0-20180107155436-c41aec40b27f/go.mod h1:xH/i4TFMt8koVQZ6WFms69WAsDWr2XsYL3Hkl7jkoLE= github.com/dgraph-io/badger/v2 v2.2007.2 h1:EjjK0KqwaFMlPin1ajhP943VPENHJdEz1KLIegjaI3k= @@ -261,13 +213,8 @@ github.com/edsrzf/mmap-go v1.0.0/go.mod h1:YO35OhQPt3KJa3ryjFM5Bs14WD66h8eGKpfaB github.com/enigmampc/btcutil v1.0.3-0.20200723161021-e2fb6adb2a25 h1:2vLKys4RBU4pn2T/hjXMbvwTr1Cvy5THHrQkbeY9HRk= github.com/enigmampc/btcutil v1.0.3-0.20200723161021-e2fb6adb2a25/go.mod h1:hTr8+TLQmkUkgcuh3mcr5fjrT9c64ZzsBCdCEC6UppY= github.com/envoyproxy/go-control-plane v0.9.4/go.mod h1:6rpuAdCZL397s3pYoYcLgu1mIlRU8Am5FuJP05cCM98= -github.com/envoyproxy/protoc-gen-validate v0.0.14/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c= github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c= -github.com/esimonov/ifshort v1.0.2 h1:K5s1W2fGfkoWXsFlxBNqT6J0ZCncPaKrGM5qe0bni68= -github.com/esimonov/ifshort v1.0.2/go.mod h1:yZqNJUrNn20K8Q9n2CrjTKYyVEmX209Hgu+M1LBpeZE= github.com/ethereum/go-ethereum v1.9.25/go.mod h1:vMkFiYLHI4tgPw4k2j4MHKoovchFE8plZ0M9VMk4/oM= -github.com/ettle/strcase v0.1.1 h1:htFueZyVeE1XNnMEfbqp5r67qAN/4r6ya1ysq8Q+Zcw= -github.com/ettle/strcase v0.1.1/go.mod h1:hzDLsPC7/lwKyBOywSHEP89nt2pDgdy+No1NBA9o9VY= github.com/facebookgo/ensure v0.0.0-20160127193407-b4ab57deab51 h1:0JZ+dUmQeA8IIVUMzysrX4/AKuQwWhV2dYQuPZdvdSQ= github.com/facebookgo/ensure v0.0.0-20160127193407-b4ab57deab51/go.mod h1:Yg+htXGokKKdzcwhuNDwVvN+uBxDGXJ7G/VN1d8fa64= github.com/facebookgo/stack v0.0.0-20160209184415-751773369052 h1:JWuenKqqX8nojtoVVWjGfOF9635RETekkoH6Cc9SX0A= @@ -276,12 +223,7 @@ github.com/facebookgo/subset v0.0.0-20150612182917-8dac2c3c4870 h1:E2s37DuLxFhQD github.com/facebookgo/subset v0.0.0-20150612182917-8dac2c3c4870/go.mod h1:5tD+neXqOorC30/tWg0LCSkrqj/AR6gu8yY8/fpw1q0= github.com/fatih/color v1.3.0/go.mod h1:Zm6kSWBoL9eyXnKyktHP6abPY2pDugNf5KwzbycvMj4= github.com/fatih/color v1.7.0/go.mod h1:Zm6kSWBoL9eyXnKyktHP6abPY2pDugNf5KwzbycvMj4= -github.com/fatih/color v1.9.0/go.mod h1:eQcE1qtQxscV5RaZvpXrrb8Drkc3/DdQ+uUYCNjL+zU= github.com/fatih/color v1.10.0/go.mod h1:ELkj/draVOlAH/xkhN6mQ50Qd0MPOk5AAr3maGEBuJM= -github.com/fatih/color v1.12.0 h1:mRhaKNwANqRgUBGKmnI5ZxEk7QXmjQeCcuYFMX2bfcc= -github.com/fatih/color v1.12.0/go.mod h1:ELkj/draVOlAH/xkhN6mQ50Qd0MPOk5AAr3maGEBuJM= -github.com/fatih/structtag v1.2.0 h1:/OdNE99OxoI/PqaW/SuSK9uxxT3f/tcSZgon/ssNSx4= -github.com/fatih/structtag v1.2.0/go.mod h1:mBJUNpUnHmRKrKlQQlmCrh5PuhftFbNv8Ys4/aAZl94= github.com/felixge/httpsnoop v1.0.1 h1:lvB5Jl89CsZtGIWuTcDM1E/vkVs49/Ml7JJe07l8SPQ= github.com/felixge/httpsnoop v1.0.1/go.mod h1:m8KPJKqk1gH5J9DgRY2ASl2lWCfGKXixSwevea8zH2U= github.com/fjl/memsize v0.0.0-20180418122429-ca190fb6ffbc/go.mod h1:VvhXpOYNQvB+uIk2RvXzuaQtkQJzzIx6lSBe1xv7hi0= @@ -292,17 +234,12 @@ github.com/franela/goreq v0.0.0-20171204163338-bcd34c9993f8/go.mod h1:ZhphrRTfi2 github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo= github.com/fsnotify/fsnotify v1.4.9 h1:hsms1Qyu0jgnwNXIxa+/V/PDsU6CfLf6CNO8H7IWoS4= github.com/fsnotify/fsnotify v1.4.9/go.mod h1:znqG4EE+3YCdAaPaxE2ZRY/06pZUdp0tY4IgpuI1SZQ= -github.com/fullstorydev/grpcurl v1.6.0/go.mod h1:ZQ+ayqbKMJNhzLmbpCiurTVlaK2M/3nqZCxaQ2Ze/sM= -github.com/fzipp/gocyclo v0.3.1 h1:A9UeX3HJSXTBzvHzhqoYVuE0eAhe+aM8XBCCwsPMZOc= -github.com/fzipp/gocyclo v0.3.1/go.mod h1:DJHO6AUmbdqj2ET4Z9iArSuwWgYDRryYt2wASxc7x3E= github.com/gballet/go-libpcsclite v0.0.0-20190607065134-2772fd86a8ff/go.mod h1:x7DCsMOv1taUwEWCzT4cmDeAkigA5/QCwUodaVOe8Ww= github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04= github.com/gin-contrib/sse v0.1.0 h1:Y/yl/+YNO8GZSjAhjMsSuLt29uWRFHdHYUb5lYOV9qE= github.com/gin-contrib/sse v0.1.0/go.mod h1:RHrZQHXnP2xjPF+u1gW/2HnVO7nvIa9PG3Gm+fLHvGI= github.com/gin-gonic/gin v1.6.3 h1:ahKqKTFpO5KTPHxWZjEdPScmYaGtLo8Y4DMHoEsnp14= github.com/gin-gonic/gin v1.6.3/go.mod h1:75u5sXoLsGZoRN5Sgbi1eraJ4GU3++wFwWzhwvtwp4M= -github.com/go-critic/go-critic v0.5.6 h1:siUR1+322iVikWXoV75I1YRfNaC/yaLzhdF9Zwd8Tus= -github.com/go-critic/go-critic v0.5.6/go.mod h1:cVjj0DfqewQVIlIAGexPCaGaZDAqGE29PYDDADIVNEo= github.com/go-gl/glfw v0.0.0-20190409004039-e6da0acd62b1/go.mod h1:vR7hzQXu2zJy9AVAgeJqvqgH9Q5CA+iKCZ2gyEVpxRU= github.com/go-gl/glfw/v3.3/glfw v0.0.0-20191125211704-12ad95a8df72/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8= github.com/go-gl/glfw/v3.3/glfw v0.0.0-20200222043503-6f7a984d4dc4/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8= @@ -316,7 +253,6 @@ github.com/go-logfmt/logfmt v0.4.0/go.mod h1:3RMwSq7FuexP4Kalkev3ejPJsZTpXXBr9+V github.com/go-logfmt/logfmt v0.5.0 h1:TrB8swr/68K7m9CcGut2g3UOihhbcbiMAYiuTXdEih4= github.com/go-logfmt/logfmt v0.5.0/go.mod h1:wCYkCAKZfumFQihp8CzCvQ3paCTfi41vtzG1KdI/P7A= github.com/go-ole/go-ole v1.2.1/go.mod h1:7FAglXiTm7HKlQRDeOQ6ZNUHidzCWXuZWq/1dTyBNF8= -github.com/go-ole/go-ole v1.2.5/go.mod h1:pprOEPIfldk/42T2oK7lQ4v4JSDwmV0As9GaiUsvbm0= github.com/go-playground/assert/v2 v2.0.1 h1:MsBgLAaY856+nPRTKrp3/OZK38U/wa0CcBYNjji3q3A= github.com/go-playground/assert/v2 v2.0.1/go.mod h1:VDjEfimB/XKnb+ZQfWdccd7VUvScMdVu0Titje2rxJ4= github.com/go-playground/locales v0.13.0 h1:HyWk6mgj5qFqCT5fjGBuRArbVDfE4hi8+e8ceBS/t7Q= @@ -325,34 +261,11 @@ github.com/go-playground/universal-translator v0.17.0 h1:icxd5fm+REJzpZx7ZfpaD87 github.com/go-playground/universal-translator v0.17.0/go.mod h1:UkSxE5sNxxRwHyU+Scu5vgOQjsIJAF8j9muTVoKLVtA= github.com/go-playground/validator/v10 v10.2.0 h1:KgJ0snyC2R9VXYN2rneOtQcw5aHQB1Vv0sFl1UcHBOY= github.com/go-playground/validator/v10 v10.2.0/go.mod h1:uOYAAleCW8F/7oMFd6aG0GOhaH6EGOAJShg8Id5JGkI= -github.com/go-redis/redis v6.15.8+incompatible/go.mod h1:NAIEuMOZ/fxfXJIrKDQDz8wamY7mA7PouImQ2Jvg6kA= github.com/go-sourcemap/sourcemap v2.1.2+incompatible/go.mod h1:F8jJfvm2KbVjc5NqelyYJmf/v5J0dwNLS2mL4sNA1Jg= github.com/go-sql-driver/mysql v1.4.0/go.mod h1:zAC/RDZ24gD3HViQzih4MyKcchzm+sOG5ZlKdlhCg5w= -github.com/go-sql-driver/mysql v1.5.0/go.mod h1:DCzpHaOWr8IXmIStZouvnhqoel9Qv2LBy8hT2VhHyBg= github.com/go-stack/stack v1.8.0 h1:5SgMzNM5HxrEjV0ww2lTmX6E2Izsfxas4+YHWRs3Lsk= github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY= github.com/go-task/slim-sprig v0.0.0-20210107165309-348f09dbbbc0/go.mod h1:fyg7847qk6SyHyPtNmDHnmrv/HOrqktSC+C9fM+CJOE= -github.com/go-toolsmith/astcast v1.0.0 h1:JojxlmI6STnFVG9yOImLeGREv8W2ocNUM+iOhR6jE7g= -github.com/go-toolsmith/astcast v1.0.0/go.mod h1:mt2OdQTeAQcY4DQgPSArJjHCcOwlX+Wl/kwN+LbLGQ4= -github.com/go-toolsmith/astcopy v1.0.0 h1:OMgl1b1MEpjFQ1m5ztEO06rz5CUd3oBv9RF7+DyvdG8= -github.com/go-toolsmith/astcopy v1.0.0/go.mod h1:vrgyG+5Bxrnz4MZWPF+pI4R8h3qKRjjyvV/DSez4WVQ= -github.com/go-toolsmith/astequal v1.0.0 h1:4zxD8j3JRFNyLN46lodQuqz3xdKSrur7U/sr0SDS/gQ= -github.com/go-toolsmith/astequal v1.0.0/go.mod h1:H+xSiq0+LtiDC11+h1G32h7Of5O3CYFJ99GVbS5lDKY= -github.com/go-toolsmith/astfmt v1.0.0 h1:A0vDDXt+vsvLEdbMFJAUBI/uTbRw1ffOPnxsILnFL6k= -github.com/go-toolsmith/astfmt v1.0.0/go.mod h1:cnWmsOAuq4jJY6Ct5YWlVLmcmLMn1JUPuQIHCY7CJDw= -github.com/go-toolsmith/astinfo v0.0.0-20180906194353-9809ff7efb21/go.mod h1:dDStQCHtmZpYOmjRP/8gHHnCCch3Zz3oEgCdZVdtweU= -github.com/go-toolsmith/astp v1.0.0 h1:alXE75TXgcmupDsMK1fRAy0YUzLzqPVvBKoyWV+KPXg= -github.com/go-toolsmith/astp v1.0.0/go.mod h1:RSyrtpVlfTFGDYRbrjyWP1pYu//tSFcvdYrA8meBmLI= -github.com/go-toolsmith/pkgload v1.0.0/go.mod h1:5eFArkbO80v7Z0kdngIxsRXRMTaX4Ilcwuh3clNrQJc= -github.com/go-toolsmith/strparse v1.0.0 h1:Vcw78DnpCAKlM20kSbAyO4mPfJn/lyYA4BJUDxe2Jb4= -github.com/go-toolsmith/strparse v1.0.0/go.mod h1:YI2nUKP9YGZnL/L1/DLFBfixrcjslWct4wyljWhSRy8= -github.com/go-toolsmith/typep v1.0.0/go.mod h1:JSQCQMUPdRlMZFswiq3TGpNp1GMktqkR2Ns5AIQkATU= -github.com/go-toolsmith/typep v1.0.2 h1:8xdsa1+FSIH/RhEkgnD1j2CJOy5mNllW1Q9tRiYwvlk= -github.com/go-toolsmith/typep v1.0.2/go.mod h1:JSQCQMUPdRlMZFswiq3TGpNp1GMktqkR2Ns5AIQkATU= -github.com/go-xmlfmt/xmlfmt v0.0.0-20191208150333-d5b6f63a941b h1:khEcpUM4yFcxg4/FHQWkvVRmgijNXRfzkIDHh23ggEo= -github.com/go-xmlfmt/xmlfmt v0.0.0-20191208150333-d5b6f63a941b/go.mod h1:aUCEOzzezBEjDBbFBoSiya/gduyIiWYRP6CnSFIV8AM= -github.com/gobwas/glob v0.2.3 h1:A4xDbljILXROh+kObIiy5kIaPYD8e96x1tgBhUI5J+Y= -github.com/gobwas/glob v0.2.3/go.mod h1:d3Ez4x06l9bZtSvzIay5+Yzi0fmZzPgnTbPcKjJAkT8= github.com/gobwas/httphead v0.0.0-20180130184737-2c6c146eadee h1:s+21KNqlpePfkah2I+gwHF8xmJWRjooY+5248k6m4A0= github.com/gobwas/httphead v0.0.0-20180130184737-2c6c146eadee/go.mod h1:L0fX3K22YWvt/FAX9NnzrNzcI4wNYi9Yku4O0LKYflo= github.com/gobwas/pool v0.2.0 h1:QEmUOlnSjWtnpRGHF3SauEiOsy82Cup83Vf2LcMlnc8= @@ -362,8 +275,6 @@ github.com/gobwas/ws v1.0.2/go.mod h1:szmBTxLgaFppYjEmNtny/v3w89xOydFnnZMcgRRu/E github.com/godbus/dbus v0.0.0-20190726142602-4481cbc300e2 h1:ZpnhV/YsD2/4cESfV5+Hoeu/iUR3ruzNvZ+yQfO03a0= github.com/godbus/dbus v0.0.0-20190726142602-4481cbc300e2/go.mod h1:bBOAhwG1umN6/6ZUMtDFBMQR8jRg9O75tm9K00oMsK4= github.com/godbus/dbus/v5 v5.0.4/go.mod h1:xhWf0FNVPg57R7Z0UbKHbJfkEywrmjJnf7w5xrFpKfA= -github.com/gofrs/flock v0.8.1 h1:+gYjHKf32LDeiEEFhQaotPbLuUXjY5ZqxKgXy7n59aw= -github.com/gofrs/flock v0.8.1/go.mod h1:F1TvTiK9OcQqauNUHlbJvyl9Qa1QvF/gOUDKA14jxHU= github.com/gogo/gateway v1.1.0 h1:u0SuhL9+Il+UbjM9VIE3ntfRujKbvVpFvNB4HbjeVQ0= github.com/gogo/gateway v1.1.0/go.mod h1:S7rR8FRQyG3QFESeSv4l2WnsyzlCLG0CzBbUUo/mbic= github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= @@ -381,7 +292,6 @@ github.com/golang/mock v1.4.4/go.mod h1:l3mdAwkq5BuhzHwde/uurv3sEJeZMXNpwsxVWU71 github.com/golang/mock v1.5.0/go.mod h1:CWnOUgYIOo4TcNZ0wHX3YZCqsaM1I1Jvs6v3mP3KVu8= github.com/golang/mock v1.6.0 h1:ErTB+efbowRARo13NNdxyJji2egdxLGQhRaY+DUumQc= github.com/golang/mock v1.6.0/go.mod h1:p6yTPP+5HYm5mzsMV8JkE6ZKdX+/wYM6Hr+LicevLPs= -github.com/golang/protobuf v1.1.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.0/go.mod h1:Qd/q+1AKNOZr9uGQzbzCmRO6sUih6GTPZv6a1/R87v0= github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= @@ -405,31 +315,9 @@ github.com/golang/snappy v0.0.0-20180518054509-2e65f85255db/go.mod h1:/XxbfmMg8l github.com/golang/snappy v0.0.1/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= github.com/golang/snappy v0.0.3-0.20201103224600-674baa8c7fc3 h1:ur2rms48b3Ep1dxh7aUV2FZEQ8jEVO2F6ILKx8ofkAg= github.com/golang/snappy v0.0.3-0.20201103224600-674baa8c7fc3/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= -github.com/golangci/check v0.0.0-20180506172741-cfe4005ccda2 h1:23T5iq8rbUYlhpt5DB4XJkc6BU31uODLD1o1gKvZmD0= -github.com/golangci/check v0.0.0-20180506172741-cfe4005ccda2/go.mod h1:k9Qvh+8juN+UKMCS/3jFtGICgW8O96FVaZsaxdzDkR4= -github.com/golangci/dupl v0.0.0-20180902072040-3e9179ac440a h1:w8hkcTqaFpzKqonE9uMCefW1WDie15eSP/4MssdenaM= -github.com/golangci/dupl v0.0.0-20180902072040-3e9179ac440a/go.mod h1:ryS0uhF+x9jgbj/N71xsEqODy9BN81/GonCZiOzirOk= -github.com/golangci/go-misc v0.0.0-20180628070357-927a3d87b613 h1:9kfjN3AdxcbsZBf8NjltjWihK2QfBBBZuv91cMFfDHw= -github.com/golangci/go-misc v0.0.0-20180628070357-927a3d87b613/go.mod h1:SyvUF2NxV+sN8upjjeVYr5W7tyxaT1JVtvhKhOn2ii8= -github.com/golangci/gofmt v0.0.0-20190930125516-244bba706f1a h1:iR3fYXUjHCR97qWS8ch1y9zPNsgXThGwjKPrYfqMPks= -github.com/golangci/gofmt v0.0.0-20190930125516-244bba706f1a/go.mod h1:9qCChq59u/eW8im404Q2WWTrnBUQKjpNYKMbU4M7EFU= -github.com/golangci/golangci-lint v1.42.1 h1:nC4WyrbdnNdohDVUoNKjy/4N4FTM1gCFaVeXecy6vzM= -github.com/golangci/golangci-lint v1.42.1/go.mod h1:MuInrVlgg2jq4do6XI1jbkErbVHVbwdrLLtGv6p2wPI= -github.com/golangci/lint-1 v0.0.0-20191013205115-297bf364a8e0 h1:MfyDlzVjl1hoaPzPD4Gpb/QgoRfSBR0jdhwGyAWwMSA= -github.com/golangci/lint-1 v0.0.0-20191013205115-297bf364a8e0/go.mod h1:66R6K6P6VWk9I95jvqGxkqJxVWGFy9XlDwLwVz1RCFg= -github.com/golangci/maligned v0.0.0-20180506175553-b1d89398deca h1:kNY3/svz5T29MYHubXix4aDDuE3RWHkPvopM/EDv/MA= -github.com/golangci/maligned v0.0.0-20180506175553-b1d89398deca/go.mod h1:tvlJhZqDe4LMs4ZHD0oMUlt9G2LWuDGoisJTBzLMV9o= -github.com/golangci/misspell v0.3.5 h1:pLzmVdl3VxTOncgzHcvLOKirdvcx/TydsClUQXTehjo= -github.com/golangci/misspell v0.3.5/go.mod h1:dEbvlSfYbMQDtrpRMQU675gSDLDNa8sCPPChZ7PhiVA= -github.com/golangci/revgrep v0.0.0-20210208091834-cd28932614b5 h1:c9Mqqrm/Clj5biNaG7rABrmwUq88nHh0uABo2b/WYmc= -github.com/golangci/revgrep v0.0.0-20210208091834-cd28932614b5/go.mod h1:LK+zW4MpyytAWQRz0M4xnzEk50lSvqDQKfx304apFkY= -github.com/golangci/unconvert v0.0.0-20180507085042-28b1c447d1f4 h1:zwtduBRr5SSWhqsYNgcuWO2kFlpdOZbP0+yRjmvPGys= -github.com/golangci/unconvert v0.0.0-20180507085042-28b1c447d1f4/go.mod h1:Izgrg8RkN3rCIMLGE9CyYmU9pY2Jer6DgANEnZ/L/cQ= github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= github.com/google/btree v1.0.0 h1:0udJVsspx3VBr5FwtLhQQtuAsVc79tTq0ocGIPAU6qo= github.com/google/btree v1.0.0/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= -github.com/google/certificate-transparency-go v1.0.21/go.mod h1:QeJfpSbVSfYc7RgB3gJFj9cbuQMMchQxrWXz8Ruopmg= -github.com/google/certificate-transparency-go v1.1.1/go.mod h1:FDKqPvSXawb2ecErVRrD+nfy23RCzyl7eqVCEmlT1Zs= github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M= github.com/google/go-cmp v0.3.0/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= github.com/google/go-cmp v0.3.1/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= @@ -457,28 +345,20 @@ github.com/google/pprof v0.0.0-20191218002539-d4f498aebedc/go.mod h1:ZgVRPoUq/hf github.com/google/pprof v0.0.0-20200212024743-f11f1df84d12/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= github.com/google/pprof v0.0.0-20200229191704-1ebb73c60ed3/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= github.com/google/pprof v0.0.0-20200430221834-fc25d7d30c6d/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= -github.com/google/pprof v0.0.0-20200507031123-427632fa3b1c/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= github.com/google/pprof v0.0.0-20200708004538-1a94d8640e99/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= github.com/google/pprof v0.0.0-20201023163331-3e6fc7fc9c4c/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= github.com/google/pprof v0.0.0-20201203190320-1bf35d6f28c2/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= github.com/google/pprof v0.0.0-20210122040257-d980be63207e/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= github.com/google/pprof v0.0.0-20210226084205-cbba55b83ad5/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= github.com/google/renameio v0.1.0/go.mod h1:KWCgfxg9yswjAJkECMjeO8J8rahYeXnNhOm40UhjYkI= -github.com/google/trillian v1.3.11/go.mod h1:0tPraVHrSDkA3BO6vKX67zgLXs6SsOAbHEivX+9mPgw= -github.com/google/uuid v0.0.0-20161128191214-064e2069ce9c/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/google/uuid v1.0.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/google/uuid v1.1.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/google/uuid v1.1.2/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= -github.com/google/uuid v1.2.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/googleapis/gax-go/v2 v2.0.4/go.mod h1:0Wqv26UfaUD9n4G6kQubkQ+KchISgw+vpHVxEJEs9eg= github.com/googleapis/gax-go/v2 v2.0.5/go.mod h1:DWXyrwAJ9X0FpwwEdw+IPEYBICEFu5mhpdKc/us6bOk= -github.com/gookit/color v1.4.2/go.mod h1:fqRyamkC1W8uxl+lxCQxOT09l/vYfZ+QeiX3rKQHCoQ= github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1 h1:EGx4pi6eqNxGaHF6qqu48+N2wcFQ5qg5FXgOdqsJ5d8= github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1/go.mod h1:wJfORRmW1u3UXTncJ5qlYoELFm8eSnnEO6hX4iZ3EWY= github.com/gordonklaus/ineffassign v0.0.0-20200309095847-7953dde2c7bf/go.mod h1:cuNKsD1zp2v6XfE/orVX2QE1LC+i254ceGcVeDT3pTU= -github.com/gordonklaus/ineffassign v0.0.0-20210225214923-2e10b2664254 h1:Nb2aRlC404yz7gQIfRZxX9/MLvQiqXyiBTJtgAy6yrI= -github.com/gordonklaus/ineffassign v0.0.0-20210225214923-2e10b2664254/go.mod h1:M9mZEtGIsR1oDaZagNPNG9iq9n2HrhZ17dsXk73V3Lw= -github.com/gorhill/cronexpr v0.0.0-20180427100037-88b0669f7d75/go.mod h1:g2644b03hfBX9Ov0ZBDgXXens4rxSxmqFBbhvKv2yVA= github.com/gorilla/context v1.1.1/go.mod h1:kBGZzfjB9CEq2AlWe17Uuf7NDRt0dE0s8S51q0aT7Yg= github.com/gorilla/handlers v1.5.1 h1:9lRY6j8DEeeBT10CvO9hGW0gmky0BprnvDI5vfhUHH4= github.com/gorilla/handlers v1.5.1/go.mod h1:t8XrUpc4KVXb7HGyJ4/cEnwQiaxrX/hz1Zv/4g96P1Q= @@ -491,20 +371,7 @@ github.com/gorilla/websocket v1.4.1-0.20190629185528-ae1634f6a989/go.mod h1:E7qH github.com/gorilla/websocket v1.4.1/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE= github.com/gorilla/websocket v1.4.2 h1:+/TMaTYc4QFitKJxsQ7Yye35DkWvkdLcvGKqM+x0Ufc= github.com/gorilla/websocket v1.4.2/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE= -github.com/gostaticanalysis/analysisutil v0.0.0-20190318220348-4088753ea4d3/go.mod h1:eEOZF4jCKGi+aprrirO9e7WKB3beBRtWgqGunKl6pKE= -github.com/gostaticanalysis/analysisutil v0.0.3/go.mod h1:eEOZF4jCKGi+aprrirO9e7WKB3beBRtWgqGunKl6pKE= -github.com/gostaticanalysis/analysisutil v0.1.0/go.mod h1:dMhHRU9KTiDcuLGdy87/2gTR8WruwYZrKdRq9m1O6uw= -github.com/gostaticanalysis/analysisutil v0.4.1 h1:/7clKqrVfiVwiBQLM0Uke4KvXnO6JcCTS7HwF2D6wG8= -github.com/gostaticanalysis/analysisutil v0.4.1/go.mod h1:18U/DLpRgIUd459wGxVHE0fRgmo1UgHDcbw7F5idXu0= -github.com/gostaticanalysis/comment v1.3.0/go.mod h1:xMicKDx7XRXYdVwY9f9wQpDJVnqWxw9wCauCMKp+IBI= -github.com/gostaticanalysis/comment v1.4.1 h1:xHopR5L2lRz6OsjH4R2HG5wRhW9ySl3FsHIvi5pcXwc= -github.com/gostaticanalysis/comment v1.4.1/go.mod h1:ih6ZxzTHLdadaiSnF5WY3dxUoXfXAlTaRzuaNDlSado= -github.com/gostaticanalysis/forcetypeassert v0.0.0-20200621232751-01d4955beaa5 h1:rx8127mFPqXXsfPSo8BwnIU97MKFZc89WHAHt8PwDVY= -github.com/gostaticanalysis/forcetypeassert v0.0.0-20200621232751-01d4955beaa5/go.mod h1:qZEedyP/sY1lTGV1uJ3VhWZ2mqag3IkWsDHVbplHXak= -github.com/gostaticanalysis/nilerr v0.1.1 h1:ThE+hJP0fEp4zWLkWHWcRyI2Od0p7DlgYG3Uqrmrcpk= -github.com/gostaticanalysis/nilerr v0.1.1/go.mod h1:wZYb6YI5YAxxq0i1+VJbY0s2YONW0HU0GPE3+5PWN4A= github.com/graph-gophers/graphql-go v0.0.0-20191115155744-f33e81362277/go.mod h1:9CQHMSxwO4MprSdzoIEobiHpoLtHm77vfxsvsIN5Vuc= -github.com/gregjones/httpcache v0.0.0-20190611155906-901d90724c79/go.mod h1:FecbI9+v66THATjSRHfNgh1IVFe/9kFxbXtjV0ctIMA= github.com/grpc-ecosystem/go-grpc-middleware v1.0.0/go.mod h1:FiyG127CGDf3tlThmgyCl78X/SZQqEOJBCDaAfeWzPs= github.com/grpc-ecosystem/go-grpc-middleware v1.0.1-0.20190118093823-f849b5445de4/go.mod h1:FiyG127CGDf3tlThmgyCl78X/SZQqEOJBCDaAfeWzPs= github.com/grpc-ecosystem/go-grpc-middleware v1.2.2/go.mod h1:EaizFBKfUKtMIF5iaDEhniwNedqGo9FuLFzppDr3uwI= @@ -514,7 +381,6 @@ github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0/go.mod h1:8NvIoxWQoOIhqOTXgf github.com/grpc-ecosystem/grpc-gateway v1.8.5/go.mod h1:vNeuVxBJEsws4ogUvrchl83t/GYV9WGTSLVdBhOQFDY= github.com/grpc-ecosystem/grpc-gateway v1.9.0/go.mod h1:vNeuVxBJEsws4ogUvrchl83t/GYV9WGTSLVdBhOQFDY= github.com/grpc-ecosystem/grpc-gateway v1.9.5/go.mod h1:vNeuVxBJEsws4ogUvrchl83t/GYV9WGTSLVdBhOQFDY= -github.com/grpc-ecosystem/grpc-gateway v1.12.1/go.mod h1:8XEsbTttt/W+VvjtQhLACqCisSPWTxCZ7sBRjU6iH9c= github.com/grpc-ecosystem/grpc-gateway v1.16.0 h1:gmcG1KaJ57LophUzW0Hy8NmPhnMZb4M0+kPpLofRdBo= github.com/grpc-ecosystem/grpc-gateway v1.16.0/go.mod h1:BDjrQk3hbvj6Nolgz8mAMFbcEtjT1g+wF4CSlocrBnw= github.com/gsterjov/go-libsecret v0.0.0-20161001094733-a6f4afe4910c h1:6rhixN/i8ZofjG1Y75iExal34USq5p+wiN1tpie8IrU= @@ -528,7 +394,6 @@ github.com/hashicorp/consul/api v1.1.0/go.mod h1:VmuI/Lkw1nC05EYQWNKwWGbkg+FbDBt github.com/hashicorp/consul/api v1.3.0/go.mod h1:MmDNSzIMUjNpY/mQ398R4bk2FnqQLoPndWW5VkKPlCE= github.com/hashicorp/consul/sdk v0.1.1/go.mod h1:VKf9jXwCTEY1QZP2MOLRhb5i/I/ssyNV1vwHyQBF0x8= github.com/hashicorp/consul/sdk v0.3.0/go.mod h1:VKf9jXwCTEY1QZP2MOLRhb5i/I/ssyNV1vwHyQBF0x8= -github.com/hashicorp/errwrap v1.0.0 h1:hLrqtEDnRye3+sgx6z4qVLNuviH3MR5aQ0ykNJa/UYA= github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= github.com/hashicorp/go-cleanhttp v0.5.0/go.mod h1:JpRdi6/HCYpAwUzNwuwqhbovhLtngrth3wmdIIUrZ80= github.com/hashicorp/go-cleanhttp v0.5.1/go.mod h1:JpRdi6/HCYpAwUzNwuwqhbovhLtngrth3wmdIIUrZ80= @@ -536,8 +401,6 @@ github.com/hashicorp/go-immutable-radix v1.0.0 h1:AKDB1HM5PWEA7i4nhcpwOrO2byshxB github.com/hashicorp/go-immutable-radix v1.0.0/go.mod h1:0y9vanUI8NX6FsYoO3zeMjhV/C5i9g4Q3DwcSNZ4P60= github.com/hashicorp/go-msgpack v0.5.3/go.mod h1:ahLV/dePpqEmjfWmKiqvPkv/twdG7iPBM1vqhUKIvfM= github.com/hashicorp/go-multierror v1.0.0/go.mod h1:dHtQlpGsu+cZNNAkkCN/P3hoUDHhCYQXV3UM06sGGrk= -github.com/hashicorp/go-multierror v1.1.1 h1:H5DkEtf6CXdFp0N0Em5UCwQpXMWke8IA0+lD48awMYo= -github.com/hashicorp/go-multierror v1.1.1/go.mod h1:iw975J/qwKPdAO1clOe2L8331t/9/fmwbPZ6JB6eMoM= github.com/hashicorp/go-retryablehttp v0.5.3/go.mod h1:9B5zBasrRhHXnJnui7y6sL7es7NDiJgTc6Er0maI1Xs= github.com/hashicorp/go-rootcerts v1.0.0/go.mod h1:K6zTfqpRlCUIjkwsN4Z+hiSfzSTQa6eBIzfwKfwNnHU= github.com/hashicorp/go-sockaddr v1.0.0/go.mod h1:7Xibr9yA9JjQq1JpNB2Vw7kxv8xerXegt+ozgdvDeDU= @@ -561,15 +424,11 @@ github.com/hdevalence/ed25519consensus v0.0.0-20210204194344-59a8610d2b87 h1:uUj github.com/hdevalence/ed25519consensus v0.0.0-20210204194344-59a8610d2b87/go.mod h1:XGsKKeXxeRr95aEOgipvluMPlgjr7dGlk9ZTWOjcUcg= github.com/holiman/uint256 v1.1.1/go.mod h1:y4ga/t+u+Xwd7CpDgZESaRcWy0I7XMlTMA25ApIH5Jw= github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU= -github.com/huandu/xstrings v1.0.0/go.mod h1:4qWG/gcEcfX4z/mBDHJ++3ReCw9ibxbsNJbcucJdbSo= -github.com/huandu/xstrings v1.2.0/go.mod h1:DvyZB1rfVYsBIigL8HwpZgxHwXozlTgGqn63UyNX5k4= github.com/hudl/fargo v1.3.0/go.mod h1:y3CKSmjA+wD2gak7sUSXTAoopbhU08POFhmITJgmKTg= github.com/huin/goupnp v1.0.0/go.mod h1:n9v9KO1tAxYH82qOn+UTIFQDmx5n1Zxd/ClZDMX7Bnc= github.com/huin/goutil v0.0.0-20170803182201-1ca381bf3150/go.mod h1:PpLOETDnJ0o3iZrZfqZzyLl6l7F3c6L1oWn7OICBi6o= github.com/ianlancetaylor/demangle v0.0.0-20181102032728-5e5cf60278f6/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc= github.com/ianlancetaylor/demangle v0.0.0-20200824232613-28f6c0f3b639/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc= -github.com/imdario/mergo v0.3.4/go.mod h1:2EnlNZ0deacrJVfApfmtdGgDfMuh/nq6Ok1EcJh5FfA= -github.com/imdario/mergo v0.3.8/go.mod h1:2EnlNZ0deacrJVfApfmtdGgDfMuh/nq6Ok1EcJh5FfA= github.com/improbable-eng/grpc-web v0.14.1 h1:NrN4PY71A6tAz2sKDvC5JCauENWp0ykG8Oq1H3cpFvw= github.com/improbable-eng/grpc-web v0.14.1/go.mod h1:zEjGHa8DAlkoOXmswrNvhUGEYQA9UI7DhrGeHR1DMGU= github.com/inconshreveable/mousetrap v1.0.0 h1:Z8tu5sraLXCXIcARxBp/8cbvlwVa7Z1NHg9XEKhtSvM= @@ -580,23 +439,12 @@ github.com/jackpal/go-nat-pmp v1.0.2-0.20160603034137-1fa385a6f458/go.mod h1:QPH github.com/jedisct1/go-minisign v0.0.0-20190909160543-45766022959e/go.mod h1:G1CVv03EnqU1wYL2dFwXxW2An0az9JTl/ZsqXQeBlkU= github.com/jessevdk/go-flags v0.0.0-20141203071132-1679536dcc89/go.mod h1:4FA24M0QyGHXBuZZK/XkWh8h0e1EYbRYJSGM75WSRxI= github.com/jessevdk/go-flags v1.4.0/go.mod h1:4FA24M0QyGHXBuZZK/XkWh8h0e1EYbRYJSGM75WSRxI= -github.com/jgautheron/goconst v1.5.1 h1:HxVbL1MhydKs8R8n/HE5NPvzfaYmQJA3o879lE4+WcM= -github.com/jgautheron/goconst v1.5.1/go.mod h1:aAosetZ5zaeC/2EfMeRswtxUFBpe2Hr7HzkgX4fanO4= -github.com/jhump/protoreflect v1.6.1/go.mod h1:RZQ/lnuN+zqeRVpQigTwO6o0AJUkxbnSnpuG7toUTG4= github.com/jhump/protoreflect v1.9.0 h1:npqHz788dryJiR/l6K/RUQAyh2SwV91+d1dnh4RjO9w= github.com/jhump/protoreflect v1.9.0/go.mod h1:7GcYQDdMU/O/BBrl/cX6PNHpXh6cenjd8pneu5yW7Tg= -github.com/jingyugao/rowserrcheck v1.1.0 h1:u6h4eiNuCLqk73Ic5TXQq9yZS+uEXTdusn7c3w1Mr6A= -github.com/jingyugao/rowserrcheck v1.1.0/go.mod h1:TOQpc2SLx6huPfoFGK3UOnEG+u02D3C1GeosjupAKCA= -github.com/jirfag/go-printf-func-name v0.0.0-20200119135958-7558a9eaa5af h1:KA9BjwUk7KlCh6S9EAGWBt1oExIUv9WyNCiRz5amv48= -github.com/jirfag/go-printf-func-name v0.0.0-20200119135958-7558a9eaa5af/go.mod h1:HEWGJkRDzjJY2sqdDwxccsGicWEf9BQOZsq2tV+xzM0= github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af/go.mod h1:Nht3zPeWKUH0NzdCt2Blrr5ys8VGpn0CEB0cQHVjt7k= -github.com/jmespath/go-jmespath v0.4.0/go.mod h1:T8mJZnbsbmF+m6zOOFylbeCJqk5+pHWvzYPziyZiYoo= -github.com/jmespath/go-jmespath/internal/testify v1.5.1/go.mod h1:L3OGu8Wl2/fWfCI6z80xFu9LTZmf1ZRjMHUOPmWr69U= github.com/jmhodges/levigo v1.0.0 h1:q5EC36kV79HWeTBWsod3mG11EgStG3qArTKcvlksN1U= github.com/jmhodges/levigo v1.0.0/go.mod h1:Q6Qx+uH3RAqyK4rFQroq9RL7mdkABMcfhEI+nNuzMJQ= -github.com/jmoiron/sqlx v1.2.0/go.mod h1:1FEQNm3xlJgrMD+FBdI9+xvCksHtbpVBBw5dYhBSsks= github.com/jonboulle/clockwork v0.1.0/go.mod h1:Ii8DK3G1RaLaWxj9trq07+26W01tbo22gdxWY5EU2bo= -github.com/jonboulle/clockwork v0.2.0/go.mod h1:Pkfl5aHPm1nk2H9h0bjmnJD/BcgbGXUBGnn1kMkgxc8= github.com/jpillora/backoff v1.0.0/go.mod h1:J/6gKK9jxlEcS3zixgDgUAsiuZ7yrSoa/FX5e0EB2j4= github.com/jrick/logrotate v1.0.0/go.mod h1:LNinyqDIJnpAur+b8yyulnQw/wDuN1+BYKlTRt3OuAQ= github.com/json-iterator/go v1.1.6/go.mod h1:+SdeFBvtyEkXs7REEP0seUULqWtbJapLOCVDaaPEHmU= @@ -610,30 +458,20 @@ github.com/jstemmer/go-junit-report v0.0.0-20190106144839-af01ea7f8024/go.mod h1 github.com/jstemmer/go-junit-report v0.9.1/go.mod h1:Brl9GWCQeLvo8nXZwPNNblvFj/XSXhF0NWZEnDohbsk= github.com/jtolds/gls v4.20.0+incompatible h1:xdiiI2gbIgH/gLH7ADydsJ1uDOEzR8yvV7C0MuV77Wo= github.com/jtolds/gls v4.20.0+incompatible/go.mod h1:QJZ7F/aHp+rZTRtaJ1ow/lLfFfVYBRgL+9YlvaHOwJU= -github.com/juju/ratelimit v1.0.1/go.mod h1:qapgC/Gy+xNh9UxzV13HGGl/6UXNN+ct+vwSgWNm/qk= github.com/julienschmidt/httprouter v1.1.1-0.20170430222011-975b5c4c7c21/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w= github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w= github.com/julienschmidt/httprouter v1.3.0/go.mod h1:JR6WtHb+2LUe8TCKY3cZOxFyyO8IZAc4RVcycCCAKdM= -github.com/julz/importas v0.0.0-20210419104244-841f0c0fe66d h1:XeSMXURZPtUffuWAaq90o6kLgZdgu+QA8wk4MPC8ikI= -github.com/julz/importas v0.0.0-20210419104244-841f0c0fe66d/go.mod h1:oSFU2R4XK/P7kNBrnL/FEQlDGN1/6WoxXEjSSXO0DV0= -github.com/k0kubun/colorstring v0.0.0-20150214042306-9440f1994b88/go.mod h1:3w7q1U84EfirKl04SVQ/s7nPm1ZPhiXd34z40TNz36k= github.com/karalabe/usb v0.0.0-20190919080040-51dc0efba356/go.mod h1:Od972xHfMJowv7NGVDiWVxk2zxnWgjLlJzE+F4F7AGU= github.com/keybase/go-keychain v0.0.0-20190712205309-48d3d31d256d h1:Z+RDyXzjKE0i2sTjZ/b1uxiGtPhFy34Ou/Tk0qwN0kM= github.com/keybase/go-keychain v0.0.0-20190712205309-48d3d31d256d/go.mod h1:JJNrCn9otv/2QP4D7SMJBgaleKpOf66PnW6F5WGNRIc= github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8= -github.com/kisielk/errcheck v1.6.0 h1:YTDO4pNy7AUN/021p+JGHycQyYNIyMoenM1YDVK6RlY= -github.com/kisielk/errcheck v1.6.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8= -github.com/kisielk/gotool v1.0.0 h1:AV2c/EiW3KqPNT9ZKl07ehoAGi4C5/01Cfbblndcapg= github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= github.com/kkdai/bstream v0.0.0-20161212061736-f391b8402d23/go.mod h1:J+Gs4SYgM6CZQHDETBtE9HaSEkGmuNXF86RwHhHUvq4= github.com/kkdai/bstream v1.0.0/go.mod h1:FDnDOHt5Yx4p3FaHcioFT0QjDOtgUpvjeZqAs+NVZZA= github.com/klauspost/compress v1.10.3/go.mod h1:aoV0uJVorq1K+umq18yTdKaF57EivdYsUV+/s2qKfXs= -github.com/klauspost/compress v1.10.7/go.mod h1:aoV0uJVorq1K+umq18yTdKaF57EivdYsUV+/s2qKfXs= -github.com/klauspost/compress v1.11.0/go.mod h1:aoV0uJVorq1K+umq18yTdKaF57EivdYsUV+/s2qKfXs= github.com/klauspost/compress v1.11.7 h1:0hzRabrMN4tSTvMfnL3SCv1ZGeAP23ynzodBgaHeMeg= github.com/klauspost/compress v1.11.7/go.mod h1:aoV0uJVorq1K+umq18yTdKaF57EivdYsUV+/s2qKfXs= github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= -github.com/konsorten/go-windows-terminal-sequences v1.0.2/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= github.com/konsorten/go-windows-terminal-sequences v1.0.3/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= github.com/kr/fs v0.1.0/go.mod h1:FFnZGqtBN9Gxj7eW1uZ42v5BccTP0vu6NEaFoC2HwRg= github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc= @@ -643,84 +481,42 @@ github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE= -github.com/kulti/thelper v0.4.0 h1:2Nx7XbdbE/BYZeoip2mURKUdtHQRuy6Ug+wR7K9ywNM= -github.com/kulti/thelper v0.4.0/go.mod h1:vMu2Cizjy/grP+jmsvOFDx1kYP6+PD1lqg4Yu5exl2U= -github.com/kunwardeep/paralleltest v1.0.2 h1:/jJRv0TiqPoEy/Y8dQxCFJhD56uS/pnvtatgTZBHokU= -github.com/kunwardeep/paralleltest v1.0.2/go.mod h1:ZPqNm1fVHPllh5LPVujzbVz1JN2GhLxSfY+oqUsvG30= github.com/kylelemons/godebug v1.1.0/go.mod h1:9/0rRGxNHcop5bhtWyNeEfOS8JIWk580+fNqagV/RAw= -github.com/kyoh86/exportloopref v0.1.8 h1:5Ry/at+eFdkX9Vsdw3qU4YkvGtzuVfzT4X7S77LoN/M= -github.com/kyoh86/exportloopref v0.1.8/go.mod h1:1tUcJeiioIs7VWe5gcOObrux3lb66+sBqGZrRkMwPgg= -github.com/ldez/gomoddirectives v0.2.2 h1:p9/sXuNFArS2RLc+UpYZSI4KQwGMEDWC/LbtF5OPFVg= -github.com/ldez/gomoddirectives v0.2.2/go.mod h1:cpgBogWITnCfRq2qGoDkKMEVSaarhdBr6g8G04uz6d0= -github.com/ldez/tagliatelle v0.2.0 h1:693V8Bf1NdShJ8eu/s84QySA0J2VWBanVBa2WwXD/Wk= -github.com/ldez/tagliatelle v0.2.0/go.mod h1:8s6WJQwEYHbKZDsp/LjArytKOG8qaMrKQQ3mFukHs88= github.com/leodido/go-urn v1.2.0 h1:hpXL4XnriNwQ/ABnpepYM/1vCLWNDfUNts8dX3xTG6Y= github.com/leodido/go-urn v1.2.0/go.mod h1:+8+nEpDfqqsY+g338gtMEUOtuK+4dEMhiQEgxpxOKII= -github.com/letsencrypt/pkcs11key/v4 v4.0.0/go.mod h1:EFUvBDay26dErnNb70Nd0/VW3tJiIbETBPTl9ATXQag= -github.com/lib/pq v1.0.0/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo= -github.com/lib/pq v1.8.0/go.mod h1:AlVN5x4E4T544tWzH6hKfbfQvm3HdbOxrmggDNAPY9o= -github.com/lib/pq v1.9.0/go.mod h1:AlVN5x4E4T544tWzH6hKfbfQvm3HdbOxrmggDNAPY9o= -github.com/lib/pq v1.10.2/go.mod h1:AlVN5x4E4T544tWzH6hKfbfQvm3HdbOxrmggDNAPY9o= github.com/libp2p/go-buffer-pool v0.0.2 h1:QNK2iAFa8gjAe1SPz6mHSMuCcjs+X1wlHzeOSqcmlfs= github.com/libp2p/go-buffer-pool v0.0.2/go.mod h1:MvaB6xw5vOrDl8rYZGLFdKAuk/hRoRZd1Vi32+RXyFM= github.com/lightstep/lightstep-tracer-common/golang/gogo v0.0.0-20190605223551-bc2310a04743/go.mod h1:qklhhLq1aX+mtWk9cPHPzaBjWImj5ULL6C7HFJtXQMM= github.com/lightstep/lightstep-tracer-go v0.18.1/go.mod h1:jlF1pusYV4pidLvZ+XD0UBX0ZE6WURAspgAczcDHrL4= -github.com/logrusorgru/aurora v0.0.0-20181002194514-a7b3b318ed4e/go.mod h1:7rIyQOR62GCctdiQpZ/zOJlFyk6y+94wXzv6RNZgaR4= github.com/lucasjones/reggen v0.0.0-20180717132126-cdb49ff09d77/go.mod h1:5ELEyG+X8f+meRWHuqUOewBOhvHkl7M76pdGEansxW4= github.com/magiconair/properties v1.8.0/go.mod h1:PppfXfuXeibc/6YijjN8zIbojt8czPbwD3XqdrwzmxQ= github.com/magiconair/properties v1.8.1/go.mod h1:PppfXfuXeibc/6YijjN8zIbojt8czPbwD3XqdrwzmxQ= github.com/magiconair/properties v1.8.5 h1:b6kJs+EmPFMYGkow9GiUyCyOvIwYetYJ3fSaWak/Gls= github.com/magiconair/properties v1.8.5/go.mod h1:y3VJvCyxH9uVvJTWEGAELF3aiYNyPKd5NZ3oSwXrF60= -github.com/maratori/testpackage v1.0.1 h1:QtJ5ZjqapShm0w5DosRjg0PRlSdAdlx+W6cCKoALdbQ= -github.com/maratori/testpackage v1.0.1/go.mod h1:ddKdw+XG0Phzhx8BFDTKgpWP4i7MpApTE5fXSKAqwDU= -github.com/matoous/godox v0.0.0-20210227103229-6504466cf951 h1:pWxk9e//NbPwfxat7RXkts09K+dEBJWakUWwICVqYbA= -github.com/matoous/godox v0.0.0-20210227103229-6504466cf951/go.mod h1:1BELzlh859Sh1c6+90blK8lbYy0kwQf1bYlBhBysy1s= github.com/mattn/go-colorable v0.0.9/go.mod h1:9vuHe8Xs5qXnSaW/c/ABM9alt+Vo+STaOChaDxuIBZU= github.com/mattn/go-colorable v0.1.0/go.mod h1:9vuHe8Xs5qXnSaW/c/ABM9alt+Vo+STaOChaDxuIBZU= -github.com/mattn/go-colorable v0.1.4/go.mod h1:U0ppj6V5qS13XJ6of8GYAs25YV2eR4EVcfRqFIhoBtE= -github.com/mattn/go-colorable v0.1.8 h1:c1ghPdyEDarC70ftn0y+A/Ee++9zz8ljHG1b13eJ0s8= github.com/mattn/go-colorable v0.1.8/go.mod h1:u6P/XSegPjTcexA+o6vUJrdnUu04hMope9wVRipJSqc= github.com/mattn/go-ieproxy v0.0.0-20190610004146-91bb50d98149/go.mod h1:31jz6HNzdxOmlERGGEc4v/dMssOfmp2p5bT/okiKFFc= github.com/mattn/go-ieproxy v0.0.0-20190702010315-6dee0af9227d/go.mod h1:31jz6HNzdxOmlERGGEc4v/dMssOfmp2p5bT/okiKFFc= github.com/mattn/go-isatty v0.0.3/go.mod h1:M+lRXTBqGeGNdLjl/ufCoiOlB5xdOkqRJdNxMWT7Zi4= github.com/mattn/go-isatty v0.0.4/go.mod h1:M+lRXTBqGeGNdLjl/ufCoiOlB5xdOkqRJdNxMWT7Zi4= github.com/mattn/go-isatty v0.0.5-0.20180830101745-3fb116b82035/go.mod h1:M+lRXTBqGeGNdLjl/ufCoiOlB5xdOkqRJdNxMWT7Zi4= -github.com/mattn/go-isatty v0.0.8/go.mod h1:Iq45c/XA43vh69/j3iqttzPXn0bhXyGjM0Hdxcsrc5s= -github.com/mattn/go-isatty v0.0.10/go.mod h1:qgIWMr58cqv1PHHyhnkY9lrL7etaEgOFcMEpPG5Rm84= -github.com/mattn/go-isatty v0.0.11/go.mod h1:PhnuNfih5lzO57/f3n+odYbM4JtupLOxQOAqxQCu2WE= github.com/mattn/go-isatty v0.0.12/go.mod h1:cbi8OIDigv2wuxKPP5vlRcQ1OAZbq2CE4Kysco4FUpU= github.com/mattn/go-isatty v0.0.14 h1:yVuAays6BHfxijgZPzw+3Zlu5yQgKGP2/hcQbHb7S9Y= github.com/mattn/go-isatty v0.0.14/go.mod h1:7GGIvUiUoEMVVmxf/4nioHXj79iQHKdU27kJ6hsGG94= github.com/mattn/go-runewidth v0.0.2/go.mod h1:LwmH8dsx7+W8Uxz3IHJYH5QSwggIsqBzpuz5H//U1FU= github.com/mattn/go-runewidth v0.0.3/go.mod h1:LwmH8dsx7+W8Uxz3IHJYH5QSwggIsqBzpuz5H//U1FU= github.com/mattn/go-runewidth v0.0.4/go.mod h1:LwmH8dsx7+W8Uxz3IHJYH5QSwggIsqBzpuz5H//U1FU= -github.com/mattn/go-runewidth v0.0.6/go.mod h1:H031xJmbD/WCDINGzjvQ9THkh0rPKHF+m2gUSrubnMI= -github.com/mattn/go-runewidth v0.0.9 h1:Lm995f3rfxdpd6TSmuVCHVb/QhupuXlYr8sCI/QdE+0= -github.com/mattn/go-runewidth v0.0.9/go.mod h1:H031xJmbD/WCDINGzjvQ9THkh0rPKHF+m2gUSrubnMI= -github.com/mattn/go-sqlite3 v1.9.0/go.mod h1:FPy6KqzDD04eiIsT53CuJW3U88zkxoIYsOqkbpncsNc= -github.com/mattn/goveralls v0.0.2/go.mod h1:8d1ZMHsd7fW6IRPKQh46F2WRpyib5/X4FOpevwGNQEw= github.com/matttproud/golang_protobuf_extensions v1.0.1 h1:4hp9jkHxhMHkqkrB3Ix0jegS5sx/RkqARlsWZ6pIwiU= github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0= -github.com/mbilski/exhaustivestruct v1.2.0 h1:wCBmUnSYufAHO6J4AVWY6ff+oxWxsVFrwgOdMUQePUo= -github.com/mbilski/exhaustivestruct v1.2.0/go.mod h1:OeTBVxQWoEmB2J2JCHmXWPJ0aksxSUOUy+nvtVEfzXc= -github.com/mgechev/dots v0.0.0-20190921121421-c36f7dcfbb81 h1:QASJXOGm2RZ5Ardbc86qNFvby9AqkLDibfChMtAg5QM= -github.com/mgechev/dots v0.0.0-20190921121421-c36f7dcfbb81/go.mod h1:KQ7+USdGKfpPjXk4Ga+5XxQM4Lm4e3gAogrreFAYpOg= -github.com/mgechev/revive v1.1.1 h1:mkXNHP14Y6tfq+ocnQaiKEtgJDM41yaoyQq4qn6TD/4= -github.com/mgechev/revive v1.1.1/go.mod h1:PKqk4L74K6wVNwY2b6fr+9Qqr/3hIsHVfZCJdbvozrY= github.com/miekg/dns v1.0.14/go.mod h1:W1PPwlIAgtquWBMBEV9nkV9Cazfe8ScdGz/Lj7v3Nrg= -github.com/miekg/dns v1.1.35/go.mod h1:KNUDUusw/aVsxyTYZM1oqvCicbwhgbNgztCETuNZ7xM= -github.com/miekg/pkcs11 v1.0.2/go.mod h1:XsNlhZGX73bx86s2hdc/FuaLm2CPZJemRLMA+WTFxgs= -github.com/miekg/pkcs11 v1.0.3/go.mod h1:XsNlhZGX73bx86s2hdc/FuaLm2CPZJemRLMA+WTFxgs= github.com/mimoo/StrobeGo v0.0.0-20181016162300-f8f6d4d2b643 h1:hLDRPB66XQT/8+wG9WsDpiCvZf1yKO7sz7scAjSlBa0= github.com/mimoo/StrobeGo v0.0.0-20181016162300-f8f6d4d2b643/go.mod h1:43+3pMjjKimDBf5Kr4ZFNGbLql1zKkbImw+fZbw3geM= github.com/minio/highwayhash v1.0.1 h1:dZ6IIu8Z14VlC0VpfKofAhCy74wu/Qb5gcn52yWoz/0= github.com/minio/highwayhash v1.0.1/go.mod h1:BQskDq+xkJ12lmlUUi7U0M5Swg3EWR+dLTk+kldvVxY= github.com/mitchellh/cli v1.0.0/go.mod h1:hNIlj7HEI86fIcpObd7a0FcrxTWetlwJDGcceTlRvqc= -github.com/mitchellh/copystructure v1.0.0/go.mod h1:SNtv71yrdKgLRyLFxmLdkAbkKEFWgYaq1OVrnRcwhnw= github.com/mitchellh/go-homedir v1.0.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0= -github.com/mitchellh/go-homedir v1.1.0 h1:lukF9ziXFxDFPkA1vsr5zpc1XuPDn/wFntq5mG+4E0Y= github.com/mitchellh/go-homedir v1.1.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0= -github.com/mitchellh/go-ps v1.0.0/go.mod h1:J4lOc8z8yJs6vUwklHw2XEIiT4z4C40KtWVN3nvg8Pg= github.com/mitchellh/go-testing-interface v1.0.0/go.mod h1:kRemZodwjscx+RGhAo8eIhFbs2+BFgRtFPeD/KE+zxI= github.com/mitchellh/gox v0.4.0/go.mod h1:Sd9lOJ0+aimLBi73mGofS1ycjY8lL3uZM3JPS42BGNg= github.com/mitchellh/iochan v1.0.0/go.mod h1:JwYml1nuB7xOzsp52dPpHFffvOCDupsG0QubkSMEySY= @@ -729,29 +525,18 @@ github.com/mitchellh/mapstructure v1.1.2/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh github.com/mitchellh/mapstructure v1.3.3/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo= github.com/mitchellh/mapstructure v1.4.1 h1:CpVNEelQCZBooIPDn+AR3NpivK/TIKU8bDxdASFVQag= github.com/mitchellh/mapstructure v1.4.1/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo= -github.com/mitchellh/reflectwalk v1.0.0/go.mod h1:mSTlrgnPZtwu0c4WaC2kGObEpuNDbx0jmZXqmk4esnw= -github.com/mitchellh/reflectwalk v1.0.1/go.mod h1:mSTlrgnPZtwu0c4WaC2kGObEpuNDbx0jmZXqmk4esnw= github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd h1:TRLaZ9cD/w8PVh93nsPXa1VrQ6jlwL5oN8l14QlcNfg= github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= github.com/modern-go/reflect2 v1.0.1 h1:9f412s+6RmYXLWZSEzVVgPGK7C2PphHj5RJrvfx9AWI= github.com/modern-go/reflect2 v1.0.1/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= -github.com/mohae/deepcopy v0.0.0-20170929034955-c48cc78d4826/go.mod h1:TaXosZuwdSHYgviHp1DAtfrULt5eUgsSMsZf+YrPgl8= -github.com/moricho/tparallel v0.2.1 h1:95FytivzT6rYzdJLdtfn6m1bfFJylOJK41+lgv/EHf4= -github.com/moricho/tparallel v0.2.1/go.mod h1:fXEIZxG2vdfl0ZF8b42f5a78EhjjD5mX8qUplsoSU4k= -github.com/mozilla/scribe v0.0.0-20180711195314-fb71baf557c1/go.mod h1:FIczTrinKo8VaLxe6PWTPEXRXDIHz2QAwiaBaP5/4a8= -github.com/mozilla/tls-observatory v0.0.0-20210609171429-7bc42856d2e5/go.mod h1:FUqVoUPHSEdDR0MnFM3Dh8AU0pZHLXUD127SAJGER/s= github.com/mtibben/percent v0.2.1 h1:5gssi8Nqo8QU/r2pynCm+hBQHpkB/uNK7BJCFogWdzs= github.com/mtibben/percent v0.2.1/go.mod h1:KG9uO+SZkUp+VkRHsCdYQV3XSZrrSpR3O9ibNBTZrns= github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= github.com/mwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f h1:KUppIJq7/+SVif2QVs3tOP0zanoHgBEVAwHxUSIzRqU= github.com/mwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= -github.com/mwitkow/go-proto-validators v0.0.0-20180403085117-0950a7990007/go.mod h1:m2XC9Qq0AlmmVksL6FktJCdTYyLk7V3fKyp0sl1yWQo= -github.com/mwitkow/go-proto-validators v0.2.0/go.mod h1:ZfA1hW+UH/2ZHOWvQ3HnQaU0DtnpXu850MZiy+YUgcc= github.com/mwitkow/grpc-proxy v0.0.0-20181017164139-0f1106ef9c76/go.mod h1:x5OoJHDHqxHS801UIuhqGl6QdSAEJvtausosHSdazIo= -github.com/nakabonne/nestif v0.3.0 h1:+yOViDGhg8ygGrmII72nV9B/zGxY188TYpfolntsaPw= -github.com/nakabonne/nestif v0.3.0/go.mod h1:dI314BppzXjJ4HsCnbo7XzrJHPszZsjnk5wEBSYHI2c= github.com/naoina/go-stringutil v0.1.0/go.mod h1:XJ2SJL9jCtBh+P9q5btrd/Ylo8XwT/h1USek5+NqSA0= github.com/naoina/toml v0.1.2-0.20170918210437-9fafd6967416/go.mod h1:NBIhNtsFMo3G2szEBne+bO4gS192HuIYRqfvOWb4i1E= github.com/nats-io/jwt v0.3.0/go.mod h1:fRYCDE99xlTsqUzISS1Bi75UBJ6ljOJQOAAu5VglpSg= @@ -761,17 +546,10 @@ github.com/nats-io/nats.go v1.9.1/go.mod h1:ZjDU1L/7fJ09jvUSRVBR2e7+RnLiiIQyqyzE github.com/nats-io/nkeys v0.1.0/go.mod h1:xpnFELMwJABBLVhffcfd1MZx6VsNRFpEugbxziKVo7w= github.com/nats-io/nkeys v0.1.3/go.mod h1:xpnFELMwJABBLVhffcfd1MZx6VsNRFpEugbxziKVo7w= github.com/nats-io/nuid v1.0.1/go.mod h1:19wcPz3Ph3q0Jbyiqsd0kePYG7A95tJPxeL+1OSON2c= -github.com/nbutton23/zxcvbn-go v0.0.0-20210217022336-fa2cb2858354 h1:4kuARK6Y6FxaNu/BnU2OAaLF86eTVhP2hjTB6iMvItA= -github.com/nbutton23/zxcvbn-go v0.0.0-20210217022336-fa2cb2858354/go.mod h1:KSVJerMDfblTH7p5MZaTt+8zaT2iEk3AkVb9PQdZuE8= github.com/neilotoole/errgroup v0.1.5/go.mod h1:Q2nLGf+594h0CLBs/Mbg6qOr7GtqDK7C2S41udRnToE= github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e h1:fD57ERR4JtEqsWbfPhv4DMiApHyliiK5xCTNVSPiaAs= github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e/go.mod h1:zD1mROLANZcx1PVRCS0qkT7pwLkGfwJo4zjcN/Tysno= -github.com/nishanths/exhaustive v0.2.3 h1:+ANTMqRNrqwInnP9aszg/0jDo+zbXa4x66U19Bx/oTk= -github.com/nishanths/exhaustive v0.2.3/go.mod h1:bhIX678Nx8inLM9PbpvK1yv6oGtoP8BfaIeMzgBNKvc= -github.com/nishanths/predeclared v0.0.0-20190419143655-18a43bb90ffc/go.mod h1:62PewwiQTlm/7Rj+cxVYqZvDIUc+JjZq6GHAC1fsObQ= github.com/nishanths/predeclared v0.0.0-20200524104333-86fad755b4d3/go.mod h1:nt3d53pc1VYcphSCIaYAJtnPYnr3Zyn8fMq2wvPGPso= -github.com/nishanths/predeclared v0.2.1 h1:1TXtjmy4f3YCFjTxRd8zcFHOmoUir+gp0ESzjFzG2sw= -github.com/nishanths/predeclared v0.2.1/go.mod h1:HvkGJcA3naj4lOwnFXFDkFxVtSqQMB9sbB1usJ+xjQE= github.com/nxadm/tail v1.4.4/go.mod h1:kenIhsEOeOJmVchQTgglprH7qJGnHDVpk1VPCcaMI8A= github.com/nxadm/tail v1.4.8 h1:nPr65rt6Y5JFSKQO7qToXr7pePgD6Gwiw05lkbyAQTE= github.com/nxadm/tail v1.4.8/go.mod h1:+ncqLTQzXmGhMZNUePPaPqPvBxHAIsmXswZKocGu+AU= @@ -781,12 +559,8 @@ github.com/oklog/ulid v1.3.1/go.mod h1:CirwcVhetQ6Lv90oh/F+FBtV6XMibvdAFo93nm5qn github.com/olekukonko/tablewriter v0.0.0-20170122224234-a0225b3f23b5/go.mod h1:vsDQFd/mU46D+Z4whnwzcISnGGzXWMclvtLoiIKAKIo= github.com/olekukonko/tablewriter v0.0.1/go.mod h1:vsDQFd/mU46D+Z4whnwzcISnGGzXWMclvtLoiIKAKIo= github.com/olekukonko/tablewriter v0.0.2-0.20190409134802-7e037d187b0c/go.mod h1:vsDQFd/mU46D+Z4whnwzcISnGGzXWMclvtLoiIKAKIo= -github.com/olekukonko/tablewriter v0.0.2/go.mod h1:rSAaSIOAGT9odnlyGlUfAJaoc5w2fSBUmeGDbRWPxyQ= -github.com/olekukonko/tablewriter v0.0.5 h1:P2Ga83D34wi1o9J6Wh1mRuqd4mF/x/lgBS7N7AbDhec= -github.com/olekukonko/tablewriter v0.0.5/go.mod h1:hPp6KlRPjbx+hW8ykQs1w3UBbZlj6HuIJcUGPhkA7kY= github.com/onsi/ginkgo v1.6.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= github.com/onsi/ginkgo v1.7.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= -github.com/onsi/ginkgo v1.10.3/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= github.com/onsi/ginkgo v1.12.1/go.mod h1:zj2OWP4+oCPe1qIXoGWkgMRwljMUYCdkwsT2108oapk= github.com/onsi/ginkgo v1.14.0/go.mod h1:iSB4RoI2tjJc9BBv4NKIKWKya62Rps+oPG/Lv9klQyY= github.com/onsi/ginkgo v1.16.2/go.mod h1:CObGmKUOKaSC0RjmoAK7tKyn4Azo5P2IWuoMnvwxz1E= @@ -825,12 +599,9 @@ github.com/pelletier/go-toml v1.2.0/go.mod h1:5z9KED0ma1S8pY6P1sdut58dfprrGBbd/9 github.com/pelletier/go-toml v1.9.3 h1:zeC5b1GviRUyKYd6OJPvBU/mcVDVoL1OhT17FCt5dSQ= github.com/pelletier/go-toml v1.9.3/go.mod h1:u1nR/EPcESfeI/szUZKdtJ0xRNbUoANCkoOuaOx1Y+c= github.com/performancecopilot/speed v3.0.0+incompatible/go.mod h1:/CLtqpZ5gBg1M9iaPbIdPPGyKcA8hKdoy6hAWba7Yac= -github.com/peterbourgon/diskv v2.0.1+incompatible/go.mod h1:uqqh8zWWbv1HBMNONnaR/tNboyR3/BZd58JJSHlUSCU= github.com/peterh/liner v1.1.1-0.20190123174540-a2c9a5303de7/go.mod h1:CRroGNssyjTd/qIG2FyxByd2S8JEAZXBl4qUrZf8GS0= github.com/petermattis/goid v0.0.0-20180202154549-b0b1615b78e5 h1:q2e307iGHPdTGp0hoxKjt1H5pDo6utceo3dQVK3I5XQ= github.com/petermattis/goid v0.0.0-20180202154549-b0b1615b78e5/go.mod h1:jvVRKCrJTQWu0XVbaOlby/2lO20uSCHEMzzplHXte1o= -github.com/phayes/checkstyle v0.0.0-20170904204023-bfd46e6a821d h1:CdDQnGF8Nq9ocOS/xlSptM1N3BbrA6/kmaep5ggwaIA= -github.com/phayes/checkstyle v0.0.0-20170904204023-bfd46e6a821d/go.mod h1:3OzsM7FXDQlpCiw2j81fOmAwQLnZnLGXVKUzeKQXIAw= github.com/pierrec/lz4 v1.0.2-0.20190131084431-473cd7ce01a1/go.mod h1:3/3N9NVKO0jef7pBehbT1qWhCMrIgbYNnFAZCqQ5LRc= github.com/pierrec/lz4 v2.0.5+incompatible/go.mod h1:pdkljMzZIN41W+lC3N2tnIh5sFi+IEE17M5jbnwPHcY= github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= @@ -839,11 +610,8 @@ github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4= github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/profile v1.2.1/go.mod h1:hJw3o1OdXxsrSjjVksARp5W95eeEaEfptyVZyv6JUPA= github.com/pkg/sftp v1.10.1/go.mod h1:lYOWFsE0bwd1+KfKJaKeuokY15vzFx25BLbzYYoAxZI= -github.com/pmezard/go-difflib v0.0.0-20151028094244-d8ed2627bdf0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= -github.com/polyfloyd/go-errorlint v0.0.0-20210722154253-910bb7978349 h1:Kq/3kL0k033ds3tyez5lFPrfQ74fNJ+OqCclRipubwA= -github.com/polyfloyd/go-errorlint v0.0.0-20210722154253-910bb7978349/go.mod h1:wi9BfjxjF/bwiZ701TzmfKu6UKC357IOAtNr0Td0Lvw= github.com/posener/complete v1.1.1/go.mod h1:em0nMJCgc9GFtwrmVmEMR/ZL6WyhyjMBndrE9hABlRI= github.com/prometheus/client_golang v0.9.1/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw= github.com/prometheus/client_golang v0.9.3-0.20190127221311-3c4408c8b829/go.mod h1:p2iRAGwDERtqlqzRXnrOVns+ignqQo//hLXqYxZYVNs= @@ -886,18 +654,6 @@ github.com/prometheus/procfs v0.6.0 h1:mxy4L2jP6qMonqmq+aTtOx1ifVWUgG/TAmntgbh3x github.com/prometheus/procfs v0.6.0/go.mod h1:cz+aTbrPOrUb4q7XlbU9ygM+/jj0fzG6c1xBZuNvfVA= github.com/prometheus/tsdb v0.6.2-0.20190402121629-4f204dcbc150/go.mod h1:qhTCs0VvXwvX/y3TZrWD7rabWM+ijKTux40TwIPHuXU= github.com/prometheus/tsdb v0.7.1/go.mod h1:qhTCs0VvXwvX/y3TZrWD7rabWM+ijKTux40TwIPHuXU= -github.com/pseudomuto/protoc-gen-doc v1.3.2/go.mod h1:y5+P6n3iGrbKG+9O04V5ld71in3v/bX88wUwgt+U8EA= -github.com/pseudomuto/protokit v0.2.0/go.mod h1:2PdH30hxVHsup8KpBTOXTBeMVhJZVio3Q8ViKSAXT0Q= -github.com/quasilyte/go-consistent v0.0.0-20190521200055-c6f3937de18c/go.mod h1:5STLWrekHfjyYwxBRVRXNOSewLJ3PWfDJd1VyTS21fI= -github.com/quasilyte/go-ruleguard v0.3.1-0.20210203134552-1b5a410e1cc8/go.mod h1:KsAh3x0e7Fkpgs+Q9pNLS5XpFSvYCEVl5gP9Pp1xp30= -github.com/quasilyte/go-ruleguard v0.3.4 h1:F6l5p6+7WBcTKS7foNQ4wqA39zjn2+RbdbyzGxIq1B0= -github.com/quasilyte/go-ruleguard v0.3.4/go.mod h1:57FZgMnoo6jqxkYKmVj5Fc8vOt0rVzoE/UNAmFFIPqA= -github.com/quasilyte/go-ruleguard/dsl v0.3.0/go.mod h1:KeCP03KrjuSO0H1kTuZQCWlQPulDV6YMIXmpQss17rU= -github.com/quasilyte/go-ruleguard/dsl v0.3.2/go.mod h1:KeCP03KrjuSO0H1kTuZQCWlQPulDV6YMIXmpQss17rU= -github.com/quasilyte/go-ruleguard/rules v0.0.0-20201231183845-9e62ed36efe1/go.mod h1:7JTjp89EGyU1d6XfBiXihJNG37wB2VRkd125Q1u7Plc= -github.com/quasilyte/go-ruleguard/rules v0.0.0-20210203162857-b223e0831f88/go.mod h1:4cgAphtvu7Ftv7vOT2ZOYhC6CvBxZixcasr8qIOTA50= -github.com/quasilyte/regex/syntax v0.0.0-20200407221936-30656e2c4a95 h1:L8QM9bvf68pVdQ3bCFZMDmnt9yqcMBro1pC7F+IPYMY= -github.com/quasilyte/regex/syntax v0.0.0-20200407221936-30656e2c4a95/go.mod h1:rlzQ04UMyJXu/aOvhd8qT+hvDrFpiwqp8MRXDY9szc0= github.com/rakyll/statik v0.1.7 h1:OF3QCZUuyPxuGEP7B4ypUa7sB/iHtqOTDYZXGM8KOdQ= github.com/rakyll/statik v0.1.7/go.mod h1:AlZONWzMtEnMs7W4e/1LURLiI49pIMmp6V9Unghqrcc= github.com/rcrowley/go-metrics v0.0.0-20181016184325-3113b8401b8a/go.mod h1:bCqnVzQkZxMG4s8nGwiZ5l3QUCyqpo9Y+/ZMZ9VjZe4= @@ -911,7 +667,6 @@ github.com/rjeczalik/notify v0.9.1/go.mod h1:rKwnCoCGeuQnwBtTSPL9Dad03Vh2n40ePRr github.com/rogpeppe/fastuuid v0.0.0-20150106093220-6724a57986af/go.mod h1:XWv6SoW27p1b0cqNHllgS5HIMJraePCO15w5zCzIWYg= github.com/rogpeppe/fastuuid v1.2.0/go.mod h1:jVj6XXZzXRy/MSR5jhDC/2q6DgLz+nrA6LYCDYWNEvQ= github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4= -github.com/rogpeppe/go-internal v1.6.2/go.mod h1:xXDCJY+GAPziupqXw64V24skbSoqbTEfhy4qGm1nDQc= github.com/rs/cors v0.0.0-20160617231935-a62a804a8a00/go.mod h1:gFx+x8UowdsKA9AchylcLynDq+nNFfI8FkUZdN/jGCU= github.com/rs/cors v1.7.0 h1:+88SsELBHx5r+hZ8TCkggzSstaWNbDvThkVK8H6f9ik= github.com/rs/cors v1.7.0/go.mod h1:gFx+x8UowdsKA9AchylcLynDq+nNFfI8FkUZdN/jGCU= @@ -921,45 +676,25 @@ github.com/rs/zerolog v1.25.0 h1:Rj7XygbUHKUlDPcVdoLyR91fJBsduXj5fRxyqIQj/II= github.com/rs/zerolog v1.25.0/go.mod h1:7KHcEGe0QZPOm2IE4Kpb5rTh6n1h2hIgS5OOnu1rUaI= github.com/russross/blackfriday v1.5.2/go.mod h1:JO/DiYxRf+HjHt06OyowR9PTA263kcR/rfWxYHBV53g= github.com/russross/blackfriday/v2 v2.0.1/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= -github.com/ryancurrah/gomodguard v1.2.3 h1:ww2fsjqocGCAFamzvv/b8IsRduuHHeK2MHTcTxZTQX8= -github.com/ryancurrah/gomodguard v1.2.3/go.mod h1:rYbA/4Tg5c54mV1sv4sQTP5WOPBcoLtnBZ7/TEhXAbg= -github.com/ryanrolds/sqlclosecheck v0.3.0 h1:AZx+Bixh8zdUBxUA1NxbxVAS78vTPq4rCb8OUZI9xFw= -github.com/ryanrolds/sqlclosecheck v0.3.0/go.mod h1:1gREqxyTGR3lVtpngyFo3hZAgk0KCtEdgEkHwDbigdA= github.com/ryanuber/columnize v0.0.0-20160712163229-9b3edd62028f/go.mod h1:sm1tb6uqfes/u+d4ooFouqFdy9/2g9QGwK3SQygK0Ts= github.com/samuel/go-zookeeper v0.0.0-20190923202752-2cc03de413da/go.mod h1:gi+0XIa01GRL2eRQVjQkKGqKF3SF9vZR/HnPullcV2E= -github.com/sanposhiho/wastedassign/v2 v2.0.6 h1:+6/hQIHKNJAUixEj6EmOngGIisyeI+T3335lYTyxRoA= -github.com/sanposhiho/wastedassign/v2 v2.0.6/go.mod h1:KyZ0MWTwxxBmfwn33zh3k1dmsbF2ud9pAAGfoLfjhtI= github.com/sasha-s/go-deadlock v0.2.1-0.20190427202633-1595213edefa h1:0U2s5loxrTy6/VgfVoLuVLFJcURKLH49ie0zSch7gh4= github.com/sasha-s/go-deadlock v0.2.1-0.20190427202633-1595213edefa/go.mod h1:F73l+cr82YSh10GxyRI6qZiCgK64VaZjwesgfQ1/iLM= github.com/sean-/seed v0.0.0-20170313163322-e2103e2c3529/go.mod h1:DxrIzT+xaE7yg65j358z/aeFdxmN0P9QXhEzd20vsDc= -github.com/securego/gosec/v2 v2.8.1 h1:Tyy/nsH39TYCOkqf5HAgRE+7B5D8sHDwPdXRgFWokh8= -github.com/securego/gosec/v2 v2.8.1/go.mod h1:pUmsq6+VyFEElJMUX+QB3p3LWNHXg1R3xh2ssVJPs8Q= github.com/segmentio/fasthash v1.0.3/go.mod h1:waKX8l2N8yckOgmSsXJi7x1ZfdKZ4x7KRMzBtS3oedY= -github.com/sergi/go-diff v1.1.0/go.mod h1:STckp+ISIX8hZLjrqAeVduY0gWCT9IjLuqbuNXdaHfM= -github.com/shazow/go-diff v0.0.0-20160112020656-b6b7b6733b8c h1:W65qqJCIOVP4jpqPQ0YvHYKwcMEMVWIzWC5iNQQfBTU= -github.com/shazow/go-diff v0.0.0-20160112020656-b6b7b6733b8c/go.mod h1:/PevMnwAxekIXwN8qQyfc5gl2NlkB3CQlkizAbOkeBs= github.com/shirou/gopsutil v2.20.5+incompatible/go.mod h1:5b4v6he4MtMOwMlS0TUMTu2PcXUg8+E1lC7eC3UO/RA= -github.com/shirou/gopsutil/v3 v3.21.7/go.mod h1:RGl11Y7XMTQPmHh8F0ayC6haKNBgH4PXMJuTAcMOlz4= -github.com/shurcooL/go v0.0.0-20180423040247-9e1955d9fb6e/go.mod h1:TDJrrUr11Vxrven61rcy3hJMUqaf/CLWYhHNPmT14Lk= -github.com/shurcooL/go-goon v0.0.0-20170922171312-37c2f522c041/go.mod h1:N5mDOmsrJOB+vfqUK+7DmDyjhSLIIBnXo9lvZJj3MWQ= github.com/shurcooL/sanitized_anchor_name v1.0.0/go.mod h1:1NzhyTcUVG4SuEtjjoZeVRXNmyL/1OwPU0+IJeTBvfc= github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo= github.com/sirupsen/logrus v1.4.2/go.mod h1:tLMulIdttU9McNUspp0xgXVQah82FyeX6MwdIuYE2rE= github.com/sirupsen/logrus v1.6.0/go.mod h1:7uNnSEd1DgxDLC74fIahvMZmmYsHGZGEOFrfsX/uA88= github.com/sirupsen/logrus v1.7.0/go.mod h1:yWOB1SBYBC5VeMP7gHvWumXLIWorT60ONWic61uBYv0= -github.com/sirupsen/logrus v1.8.1 h1:dJKuHgqk1NNQlqoA6BTlM1Wf9DOH3NBjQyu0h9+AZZE= -github.com/sirupsen/logrus v1.8.1/go.mod h1:yWOB1SBYBC5VeMP7gHvWumXLIWorT60ONWic61uBYv0= github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d h1:zE9ykElWQ6/NYmHa3jpm/yHnI4xSofP+UP6SpjHcSeM= github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d/go.mod h1:OnSkiWE9lh6wB0YB77sQom3nweQdgAjqCqsofrRNTgc= github.com/smartystreets/goconvey v1.6.4 h1:fv0U8FUIMPNf1L9lnHLvLhgicrIVChEkdzIKYqbNC9s= github.com/smartystreets/goconvey v1.6.4/go.mod h1:syvi0/a8iFYH4r/RixwvyeAJjdLS9QV7WQ/tjFTllLA= github.com/snikch/goodman v0.0.0-20171125024755-10e37e294daa/go.mod h1:oJyF+mSPHbB5mVY2iO9KV3pTt/QbIkGaO8gQ2WrDbP4= github.com/soheilhy/cmux v0.1.4/go.mod h1:IM3LyeVVIOuxMH7sFAkER9+bJ4dT7Ms6E4xg4kGIyLM= -github.com/sonatard/noctx v0.0.1 h1:VC1Qhl6Oxx9vvWo3UDgrGXYCeKCe3Wbw7qAWL6FrmTY= -github.com/sonatard/noctx v0.0.1/go.mod h1:9D2D/EoULe8Yy2joDHJj7bv3sZoq9AaSb8B4lqBjiZI= github.com/sony/gobreaker v0.4.1/go.mod h1:ZKptC7FHNvhBz7dN2LGjPVBz2sZJmc0/PkyDJOjmxWY= -github.com/sourcegraph/go-diff v0.6.1 h1:hmA1LzxW0n1c3Q4YbrFgg4P99GSnebYa3x8gr0HZqLQ= -github.com/sourcegraph/go-diff v0.6.1/go.mod h1:iBszgVvyxdc8SFZ7gm69go2KDdt3ag071iBaWPF6cjs= github.com/spaolacci/murmur3 v0.0.0-20180118202830-f09979ecbc72/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA= github.com/spaolacci/murmur3 v1.1.0 h1:7c1g84S4BPRrfL5Xrdp6fOJ206sU9y293DDHaoy0bLI= github.com/spaolacci/murmur3 v1.1.0/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA= @@ -987,8 +722,6 @@ github.com/spf13/viper v1.7.0/go.mod h1:8WkrPz2fc9jxqZNCJI/76HCieCp4Q8HaLFoCha5q github.com/spf13/viper v1.7.1/go.mod h1:8WkrPz2fc9jxqZNCJI/76HCieCp4Q8HaLFoCha5qpdg= github.com/spf13/viper v1.8.1 h1:Kq1fyeebqsBfbjZj4EL7gj2IO0mMaiyjYUWcUsl2O44= github.com/spf13/viper v1.8.1/go.mod h1:o0Pch8wJ9BVSWGQMbra6iw0oQ5oktSIBaujf1rJH9Ns= -github.com/ssgreg/nlreturn/v2 v2.1.0 h1:6/s4Rc49L6Uo6RLjhWZGBpWWjfzk2yrf1nIW8m4wgVA= -github.com/ssgreg/nlreturn/v2 v2.1.0/go.mod h1:E/iiPB78hV7Szg2YfRgyIrk1AD6JVMTRkkxBiELzh2I= github.com/status-im/keycard-go v0.0.0-20190316090335-8537d3370df4/go.mod h1:RZLeN1LMWmRsyYjvAu+I6Dm9QmlDaIIt+Y+4Kd7Tp+Q= github.com/steakknife/bloomfilter v0.0.0-20180922174646-6819c0d2a570/go.mod h1:8OR4w3TdeIHIh1g6EMY5p0gVNOovcWC+1vpc7naMuAw= github.com/steakknife/hamming v0.0.0-20180906055917-c99c65617cd3/go.mod h1:hpGUWaI9xL8pRQCTXQgocU38Qw1g0Us7n5PxxTwTCYU= @@ -999,8 +732,6 @@ github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+ github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/objx v0.2.0 h1:Hbg2NidpLE8veEBkEZTL3CvlkUIVzuU9jDplZO54c48= github.com/stretchr/objx v0.2.0/go.mod h1:qt09Ya8vawLte6SNmTgCsAVtYtaKzEcn8ATUoHMkEqE= -github.com/stretchr/testify v0.0.0-20170130113145-4d4bfba8f1d1/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= -github.com/stretchr/testify v1.1.4/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4= @@ -1012,8 +743,6 @@ github.com/subosito/gotenv v1.2.0 h1:Slr1R9HxAlEKefgq5jn9U+DnETlIUa6HfgEzj0g5d7s github.com/subosito/gotenv v1.2.0/go.mod h1:N0PQaV/YGNqwC0u51sEeR/aUtSLEXKX9iv69rRypqCw= github.com/syndtr/goleveldb v1.0.1-0.20200815110645-5c35d600f0ca h1:Ld/zXl5t4+D69SiV4JoN7kkfvJdOWlPpfxrzxpLMoUk= github.com/syndtr/goleveldb v1.0.1-0.20200815110645-5c35d600f0ca/go.mod h1:u2MKkTVTVJWe5D1rCvame8WqhBd88EuIwODJZ1VHCPM= -github.com/tdakkota/asciicheck v0.0.0-20200416200610-e657995f937b h1:HxLVTlqcHhFAz3nWUcuvpH7WuOMv8LQoCWmruLfFH2U= -github.com/tdakkota/asciicheck v0.0.0-20200416200610-e657995f937b/go.mod h1:yHp0ai0Z9gUljN3o0xMhYJnH/IcvkdTBOX2fmJ93JEM= github.com/tecbot/gorocksdb v0.0.0-20191217155057-f0fad39f321c h1:g+WoO5jjkqGAzHWCjJB1zZfXPIAaDpzXIEJ0eS6B5Ok= github.com/tecbot/gorocksdb v0.0.0-20191217155057-f0fad39f321c/go.mod h1:ahpPrc7HpcfEWDQRZEmnXMzHY03mLDYMCxeDzy46i+8= github.com/tendermint/btcd v0.1.1 h1:0VcxPfflS2zZ3RiOAHkBiFUcPvbtRj5O7zHmcJWHV7s= @@ -1027,24 +756,12 @@ github.com/tendermint/tendermint v0.34.12/go.mod h1:aeHL7alPh4uTBIJQ8mgFEE8VwJLX github.com/tendermint/tm-db v0.6.3/go.mod h1:lfA1dL9/Y/Y8wwyPp2NMLyn5P5Ptr/gvDFNWtrCWSf8= github.com/tendermint/tm-db v0.6.4 h1:3N2jlnYQkXNQclQwd/eKV/NzlqPlfK21cpRRIx80XXQ= github.com/tendermint/tm-db v0.6.4/go.mod h1:dptYhIpJ2M5kUuenLr+Yyf3zQOv1SgBZcl8/BmWlMBw= -github.com/tetafro/godot v1.4.9 h1:wsNd0RuUxISqqudFqchsSsMqsM188DoZVPBeKl87tP0= -github.com/tetafro/godot v1.4.9/go.mod h1:LR3CJpxDVGlYOWn3ZZg1PgNZdTUvzsZWu8xaEohUpn8= github.com/tidwall/gjson v1.6.7/go.mod h1:zeFuBCIqD4sN/gmqBzZ4j7Jd6UcA2Fc56x7QFsv+8fI= github.com/tidwall/match v1.0.3/go.mod h1:eRSPERbgtNPcGhD8UCthc6PmLEQXEWd3PRB5JTxsfmM= github.com/tidwall/pretty v1.0.2/go.mod h1:XNkn88O1ChpSDQmQeStsy+sBenx6DDtFZJxhVysOjyk= github.com/tidwall/sjson v1.1.4/go.mod h1:wXpKXu8CtDjKAZ+3DrKY5ROCorDFahq8l0tey/Lx1fg= -github.com/timakin/bodyclose v0.0.0-20200424151742-cb6215831a94 h1:ig99OeTyDwQWhPe2iw9lwfQVF1KB3Q4fpP3X7/2VBG8= -github.com/timakin/bodyclose v0.0.0-20200424151742-cb6215831a94/go.mod h1:Qimiffbc6q9tBWlVV6x0P9sat/ao1xEkREYPPj9hphk= -github.com/tklauser/go-sysconf v0.3.7/go.mod h1:JZIdXh4RmBvZDBZ41ld2bGxRV3n4daiiqA3skYhAoQ4= -github.com/tklauser/numcpus v0.2.3/go.mod h1:vpEPS/JC+oZGGQ/My/vJnNsvMDQL6PwOqt8dsCw5j+E= github.com/tmc/grpc-websocket-proxy v0.0.0-20170815181823-89b8d40f7ca8/go.mod h1:ncp9v5uamzpCO7NfCPTXjqaC+bZgJeR0sMTm6dMHP7U= github.com/tmc/grpc-websocket-proxy v0.0.0-20190109142713-0ad062ec5ee5/go.mod h1:ncp9v5uamzpCO7NfCPTXjqaC+bZgJeR0sMTm6dMHP7U= -github.com/tmc/grpc-websocket-proxy v0.0.0-20200427203606-3cfed13b9966/go.mod h1:ncp9v5uamzpCO7NfCPTXjqaC+bZgJeR0sMTm6dMHP7U= -github.com/tomarrell/wrapcheck/v2 v2.3.0 h1:i3DNjtyyL1xwaBQOsPPk8LAcpayWfQv2rxNi9b/eEx4= -github.com/tomarrell/wrapcheck/v2 v2.3.0/go.mod h1:aF5rnkdtqNWP/gC7vPUO5pKsB0Oac2FDTQP4F+dpZMU= -github.com/tomasen/realip v0.0.0-20180522021738-f0c99a92ddce/go.mod h1:o8v6yHRoik09Xen7gje4m9ERNah1d1PPsVq1VEx9vE4= -github.com/tommy-muehle/go-mnd/v2 v2.4.0 h1:1t0f8Uiaq+fqKteUR4N9Umr6E99R+lDnLnq7PwX2PPE= -github.com/tommy-muehle/go-mnd/v2 v2.4.0/go.mod h1:WsUAkMJMYww6l/ufffCD3m+P7LEvr8TnZn9lwVDlgzw= github.com/tv42/httpunix v0.0.0-20150427012821-b75d8614f926/go.mod h1:9ESjWnEqriFuLhtthL60Sar/7RFoluCcXsuvEwTV5KM= github.com/tyler-smith/go-bip39 v1.0.1-0.20181017060643-dbb3b84ba2ef/go.mod h1:sJ5fKU0s6JVwZjjcUEX2zFOnvq0ASQ2K9Zr6cf67kNs= github.com/tyler-smith/go-bip39 v1.0.2/go.mod h1:sJ5fKU0s6JVwZjjcUEX2zFOnvq0ASQ2K9Zr6cf67kNs= @@ -1053,31 +770,14 @@ github.com/ugorji/go v1.1.7/go.mod h1:kZn38zHttfInRq0xu/PH0az30d+z6vm202qpg1oXVM github.com/ugorji/go/codec v0.0.0-20181204163529-d75b2dcb6bc8/go.mod h1:VFNgLljTbGfSG7qAOspJ7OScBnGdDN/yBr0sguwnwf0= github.com/ugorji/go/codec v1.1.7 h1:2SvQaVZ1ouYrrKKwoSk2pzd4A9evlKJb9oTL+OaLUSs= github.com/ugorji/go/codec v1.1.7/go.mod h1:Ax+UKWsSmolVDwsd+7N3ZtXu+yMGCf907BLYF3GoBXY= -github.com/ultraware/funlen v0.0.3 h1:5ylVWm8wsNwH5aWo9438pwvsK0QiqVuUrt9bn7S/iLA= -github.com/ultraware/funlen v0.0.3/go.mod h1:Dp4UiAus7Wdb9KUZsYWZEWiRzGuM2kXM1lPbfaF6xhA= -github.com/ultraware/whitespace v0.0.4 h1:If7Va4cM03mpgrNH9k49/VOicWpGoG70XPBFFODYDsg= -github.com/ultraware/whitespace v0.0.4/go.mod h1:aVMh/gQve5Maj9hQ/hg+F75lr/X5A89uZnzAmWSineA= github.com/urfave/cli v1.20.0/go.mod h1:70zkFmudgCuE/ngEzBv17Jvp/497gISqfk5gWijbERA= github.com/urfave/cli v1.22.1/go.mod h1:Gos4lmkARVdJ6EkW0WaNv/tZAAMe9V7XWyB60NtXRu0= -github.com/uudashr/gocognit v1.0.5 h1:rrSex7oHr3/pPLQ0xoWq108XMU8s678FJcQ+aSfOHa4= -github.com/uudashr/gocognit v1.0.5/go.mod h1:wgYz0mitoKOTysqxTDMOUXg+Jb5SvtihkfmugIZYpEA= -github.com/valyala/bytebufferpool v1.0.0/go.mod h1:6bBcMArwyJ5K/AmCkWv1jt77kVWyCJ6HpOuEn7z0Csc= -github.com/valyala/fasthttp v1.16.0/go.mod h1:YOKImeEosDdBPnxc0gy7INqi3m1zK6A+xl6TwOBhHCA= -github.com/valyala/quicktemplate v1.6.3/go.mod h1:fwPzK2fHuYEODzJ9pkw0ipCPNHZ2tD5KW4lOuSdPKzY= -github.com/valyala/tcplisten v0.0.0-20161114210144-ceec8f93295a/go.mod h1:v3UYOV9WzVtRmSR+PDvWpU/qWl4Wa5LApYYX4ZtKbio= -github.com/viki-org/dnscache v0.0.0-20130720023526-c70c1f23c5d8/go.mod h1:dniwbG03GafCjFohMDmz6Zc6oCuiqgH6tGNyXTkHzXE= github.com/vmihailenco/msgpack/v5 v5.1.4/go.mod h1:C5gboKD0TJPqWDTVTtrQNfRbiBwHZGo8UTqP/9/XvLI= github.com/vmihailenco/tagparser v0.1.2/go.mod h1:OeAg3pn3UbLjkWt+rN9oFYB6u/cQgqMEUPoW2WPyhdI= github.com/wsddn/go-ecdh v0.0.0-20161211032359-48726bab9208/go.mod h1:IotVbo4F+mw0EzQ08zFqg7pK3FebNXpaMsRy2RT+Ees= github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2/go.mod h1:UETIi67q53MR2AWcXfiuqkDkRtnGDLqkBTpCHuJHxtU= -github.com/xo/terminfo v0.0.0-20210125001918-ca9a967f8778/go.mod h1:2MuV+tbUrU1zIOPMxZ5EncGwgmMJsa+9ucAQZXxsObs= github.com/xordataexchange/crypt v0.0.3-0.20170626215501-b2862e3d0a77/go.mod h1:aYKd//L2LvnjZzWKhF00oedf4jCCReLcmhLdhm1A27Q= github.com/ybbus/jsonrpc v2.1.2+incompatible/go.mod h1:XJrh1eMSzdIYFbM08flv0wp5G35eRniyeGut1z+LSiE= -github.com/yeya24/promlinter v0.1.0 h1:goWULN0jH5Yajmu/K+v1xCqIREeB+48OiJ2uu2ssc7U= -github.com/yeya24/promlinter v0.1.0/go.mod h1:rs5vtZzeBHqqMwXqFScncpCF6u06lezhZepno9AB1Oc= -github.com/yudai/gojsondiff v1.0.0/go.mod h1:AY32+k2cwILAkW1fbgxQ5mUmMiZFgLIV+FBNExI05xg= -github.com/yudai/golcs v0.0.0-20170316035057-ecda9a501e82/go.mod h1:lgjkn3NuSvDfVJdfcVVdX+jpBxNmX4rDAzaS45IcYoM= -github.com/yudai/pp v2.0.1+incompatible/go.mod h1:PuxR/8QJ7cyCkFp/aUDS+JY727OFEZkTdatxwunjIkc= github.com/yuin/goldmark v1.1.25/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.1.32/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= @@ -1087,15 +787,12 @@ github.com/zondax/hid v0.9.0 h1:eiT3P6vNxAEVxXMw66eZUAAnU2zD33JBkfG/EnfAKl8= github.com/zondax/hid v0.9.0/go.mod h1:l5wttcP0jwtdLjqjMMWFVEE7d1zO0jvSPA9OPZxWpEM= go.etcd.io/bbolt v1.3.2/go.mod h1:IbVyRI1SCnLcuJnV2u8VeU0CEYM7e686BmAb1XKL+uU= go.etcd.io/bbolt v1.3.3/go.mod h1:IbVyRI1SCnLcuJnV2u8VeU0CEYM7e686BmAb1XKL+uU= -go.etcd.io/bbolt v1.3.4/go.mod h1:G5EMThwa9y8QZGBClrRx5EY+Yw9kAhnjy3bSjsnlVTQ= go.etcd.io/bbolt v1.3.5 h1:XAzx9gjCb0Rxj7EoqcClPD1d5ZBxZJk0jbuoPHenBt0= go.etcd.io/bbolt v1.3.5/go.mod h1:G5EMThwa9y8QZGBClrRx5EY+Yw9kAhnjy3bSjsnlVTQ= go.etcd.io/etcd v0.0.0-20191023171146-3cf2f69b5738/go.mod h1:dnLIgRNXwCJa5e+c6mIZCrds/GIG4ncV9HhK5PX7jPg= -go.etcd.io/etcd v0.0.0-20200513171258-e048e166ab9c/go.mod h1:xCI7ZzBfRuGgBXyXO6yfWfDmlWd35khcWpUa4L0xI/k= go.etcd.io/etcd/api/v3 v3.5.0/go.mod h1:cbVKeC6lCfl7j/8jBhAK6aIYO9XOjdptoxU/nLQcPvs= go.etcd.io/etcd/client/pkg/v3 v3.5.0/go.mod h1:IJHfcCEKxYu1Os13ZdwCwIUTUVGYTSAM3YSwc9/Ac1g= go.etcd.io/etcd/client/v2 v2.305.0/go.mod h1:h9puh54ZTgAKtEbut2oe9P4L/oqKCVB6xsXlzd7alYQ= -go.mozilla.org/mozlog v0.0.0-20170222151521-4bb13139d403/go.mod h1:jHoPAGnDrCy6kaI2tAze5Prf0Nr0w/oNkROt2lw3n3o= go.opencensus.io v0.20.1/go.mod h1:6WKK9ahsWS3RSO+PY9ZHZUfv2irvY6gN279GOPZjmmk= go.opencensus.io v0.20.2/go.mod h1:6WKK9ahsWS3RSO+PY9ZHZUfv2irvY6gN279GOPZjmmk= go.opencensus.io v0.21.0/go.mod h1:mSImk1erAIZhrmZN+AvHh14ztQfjbGwt4TtuofqLduU= @@ -1111,14 +808,12 @@ go.uber.org/atomic v1.5.0/go.mod h1:sABNBOSYdrvTF6hTgEIbc7YasKWGhgEQZyfxyTvoXHQ= go.uber.org/atomic v1.7.0/go.mod h1:fEN4uk6kAWBTFdckzkM89CLk9XfWZrxpCo0nPH17wJc= go.uber.org/multierr v1.1.0/go.mod h1:wR5kodmAFQ0UK8QlbwjlSNy0Z68gJhDJUG5sjR94q/0= go.uber.org/multierr v1.3.0/go.mod h1:VgVr7evmIr6uPjLBxg28wmKNXyqE9akIJ5XnfpiKl+4= -go.uber.org/multierr v1.4.0/go.mod h1:VgVr7evmIr6uPjLBxg28wmKNXyqE9akIJ5XnfpiKl+4= go.uber.org/multierr v1.6.0/go.mod h1:cdWPpRnG4AhwMwsgIHip0KRBQjJy5kYEpYjJxpXp9iU= go.uber.org/tools v0.0.0-20190618225709-2cfd321de3ee/go.mod h1:vJERXedbb3MVM5f9Ejo0C68/HhF8uaILCdgjnY+goOA= go.uber.org/zap v1.10.0/go.mod h1:vwi/ZaCAaUcBkycHslxD9B2zi4UTXhF60s6SWpuDF0Q= go.uber.org/zap v1.13.0/go.mod h1:zwrFLgMcdUuIBviXEYEH1YKNaOBnKXsx2IPda5bBwHM= go.uber.org/zap v1.17.0/go.mod h1:MXVU+bhUf/A7Xi2HNOnopQOrmycQ5Ih87HtOu4q5SSo= golang.org/x/crypto v0.0.0-20170930174604-9419663f5a44/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= -golang.org/x/crypto v0.0.0-20180501155221-613d6eafa307/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20181029021203-45a5f77698d3/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20181203042331-505ab145d0a9/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= @@ -1138,7 +833,6 @@ golang.org/x/crypto v0.0.0-20200709230013-948cd5f35899/go.mod h1:LzIPMQfyMNhhGPh golang.org/x/crypto v0.0.0-20200728195943-123391ffb6de/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20200820211705-5c72a883971a/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20201117144127-c1f2f97bffc9/go.mod h1:jdWPYTVW3xRLrWPugEBEK3UY2ZEsg3UU495nc5E+M+I= -golang.org/x/crypto v0.0.0-20201221181555-eec23a3978ad/go.mod h1:jdWPYTVW3xRLrWPugEBEK3UY2ZEsg3UU495nc5E+M+I= golang.org/x/crypto v0.0.0-20210513164829-c07d793c2f9a h1:kr2P4QFmQr29mSLA43kwrOcgcReGTfbE9N577tCTuBc= golang.org/x/crypto v0.0.0-20210513164829-c07d793c2f9a/go.mod h1:P+XmwS30IXTQdn5tA2iutPOUgjI07+tq3H3K9MVA1s8= golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= @@ -1178,7 +872,6 @@ golang.org/x/mod v0.2.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.4.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.4.1/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= -golang.org/x/mod v0.4.2 h1:Gz96sIWK3OalVv/I/qNygP42zyoKp3xptRVCWRFEBvo= golang.org/x/mod v0.4.2/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/net v0.0.0-20180719180050-a680a1efc54d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= @@ -1201,8 +894,6 @@ golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLL golang.org/x/net v0.0.0-20190628185345-da137c7871d7/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20190724013045-ca1201d0de80/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20190813141303-74dc4d7220e7/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20190923162816-aa69164e4478/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20191002035440-2ec189313ef0/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20191209160850-c0dbc17a3553/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20200114155413-6afb5195e5aa/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20200202094626-16171245cfb2/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= @@ -1216,7 +907,6 @@ golang.org/x/net v0.0.0-20200506145744-7e3656a0809f/go.mod h1:qpuaurCH72eLCgpAm/ golang.org/x/net v0.0.0-20200513185701-a91f0712d120/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= golang.org/x/net v0.0.0-20200520004742-59133d7f0dd7/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= golang.org/x/net v0.0.0-20200520182314-0ba52f642ac2/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= -golang.org/x/net v0.0.0-20200602114024-627f9648deb9/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= golang.org/x/net v0.0.0-20200625001655-4c5254603344/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= golang.org/x/net v0.0.0-20200707034311-ab3426394381/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= golang.org/x/net v0.0.0-20200813134508-3edf25e44fcc/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= @@ -1250,7 +940,6 @@ golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJ golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20190227155943-e225da77a7e6/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20190412183630-56d357773e84/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20200317015054-43a5402ce75a/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= @@ -1268,7 +957,6 @@ golang.org/x/sys v0.0.0-20181122145206-62eef0e2fa9b/go.mod h1:STP8DvDyc/dI5b8T5h golang.org/x/sys v0.0.0-20181205085412-a5c9d58dba9a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190130150945-aca44879d564/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20190222072716-a9d3bda3a223/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190312061237-fead79001313/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190422165155-953cdadca894/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= @@ -1281,11 +969,8 @@ golang.org/x/sys v0.0.0-20190712062909-fae7ac547cb7/go.mod h1:h1NjWce9XRLGQEsW7w golang.org/x/sys v0.0.0-20190726091711-fc99dfbffb4e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190826190057-c7b8b68b1456/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190904154756-749cb33beabd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190916202348-b4ddaad3f8a3/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190924154521-2837fb4f24fe/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191001151750-bb3f8db39f24/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191005200804-aed5e4c7ecf9/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20191008105621-543471e840be/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191026070338-33540a1f6037/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191120155948-bd437916bb0e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191204072324-ce4227a45e2e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= @@ -1307,7 +992,6 @@ golang.org/x/sys v0.0.0-20200511232937-7e40ca221e25/go.mod h1:h1NjWce9XRLGQEsW7w golang.org/x/sys v0.0.0-20200515095857-1151b9dac4a9/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200519105757-fe76b779f299/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200523222454-059865788121/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200602225109-6fdc65e7d980/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200615200032-f1bc736245b1/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200625212154-ddb9806d33ae/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200803210538-64077c9b5642/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= @@ -1350,18 +1034,11 @@ golang.org/x/time v0.0.0-20180412165947-fbb02b2291d2/go.mod h1:tRJNPiyCQ0inRvYxb golang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20191024005414-555d28b269f0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= -golang.org/x/time v0.0.0-20200416051211-89c76fbcd5d1/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= -golang.org/x/tools v0.0.0-20180525024113-a5b4c53f6e8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= -golang.org/x/tools v0.0.0-20190110163146-51295c7ec13a/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3HoIrodX9oNMXvdceNzlUR8zjMvY= -golang.org/x/tools v0.0.0-20190307163923-6a08e3108db3/go.mod h1:25r3+/G6/xytQM8iWZKq3Hn0kr0rgFKPUNVEL/dr3z4= golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= -golang.org/x/tools v0.0.0-20190311215038-5c2858a9cfe5/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= golang.org/x/tools v0.0.0-20190312151545-0bb0c0a6e846/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= golang.org/x/tools v0.0.0-20190312170243-e65039ee4138/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= -golang.org/x/tools v0.0.0-20190321232350-e250d351ecad/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= -golang.org/x/tools v0.0.0-20190322203728-c1a832b0ad89/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= golang.org/x/tools v0.0.0-20190328211700-ab21143f2384/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= golang.org/x/tools v0.0.0-20190425150028-36563e24a262/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= golang.org/x/tools v0.0.0-20190506145303-2d16b83fe98c/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= @@ -1370,27 +1047,21 @@ golang.org/x/tools v0.0.0-20190606124116-d0a3d012864b/go.mod h1:/rFqwRUd4F7ZHNgw golang.org/x/tools v0.0.0-20190621195816-6e04913cbbac/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= golang.org/x/tools v0.0.0-20190628153133-6cdbf07be9d0/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= golang.org/x/tools v0.0.0-20190816200558-6889da9d5479/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20190910044552-dd2b5c81c578/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20190911174233-4f2ddba30aff/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20190916130336-e45ffcd953cc/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20191010075000-0337d82405ff/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191012152004-8de300cfc20a/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191029041327-9cc4af7d6b2c/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191029190741-b9c20aec41a5/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20191108193012-7d206e10da11/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191112195655-aa38f8e97acc/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191113191852-77e3bb0ad9e7/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191115202509-3a792d9c32b2/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191125144606-a911d9008d1f/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191130070609-6e064ea0cf2d/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20191216052735-49a3e744a425/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= golang.org/x/tools v0.0.0-20191216173652-a0e659d51361/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= golang.org/x/tools v0.0.0-20191227053925-7b8e75db28f4/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= golang.org/x/tools v0.0.0-20200103221440-774c71fcf114/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= golang.org/x/tools v0.0.0-20200117012304-6edc0a871e69/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= golang.org/x/tools v0.0.0-20200117161641-43d50277825c/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200117220505-0cba7a3a9ee9/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= golang.org/x/tools v0.0.0-20200122220014-bf1340f18c4a/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= golang.org/x/tools v0.0.0-20200130002326-2f3ba24bd6e7/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= golang.org/x/tools v0.0.0-20200204074204-1cc6d1ef6c74/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= @@ -1400,54 +1071,27 @@ golang.org/x/tools v0.0.0-20200224181240-023911ca70b2/go.mod h1:TB2adYChydJhpapK golang.org/x/tools v0.0.0-20200227222343-706bc42d1f0d/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= golang.org/x/tools v0.0.0-20200304193943-95d2e580d8eb/go.mod h1:o4KQGtdN14AW+yjsvvwRTJJuXz8XRtIHtEnmAXLyFUw= golang.org/x/tools v0.0.0-20200312045724-11d5b4c81c7d/go.mod h1:o4KQGtdN14AW+yjsvvwRTJJuXz8XRtIHtEnmAXLyFUw= -golang.org/x/tools v0.0.0-20200324003944-a576cf524670/go.mod h1:Sl4aGygMT6LrqrWclx+PTx3U+LnKx/seiNR+3G19Ar8= -golang.org/x/tools v0.0.0-20200329025819-fd4102a86c65/go.mod h1:Sl4aGygMT6LrqrWclx+PTx3U+LnKx/seiNR+3G19Ar8= golang.org/x/tools v0.0.0-20200331025713-a30bf2db82d4/go.mod h1:Sl4aGygMT6LrqrWclx+PTx3U+LnKx/seiNR+3G19Ar8= -golang.org/x/tools v0.0.0-20200414032229-332987a829c3/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= -golang.org/x/tools v0.0.0-20200422022333-3d57cf2e726e/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= -golang.org/x/tools v0.0.0-20200426102838-f3a5411a4c3b/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= golang.org/x/tools v0.0.0-20200501065659-ab2804fb9c9d/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= golang.org/x/tools v0.0.0-20200512131952-2bc93b1c0c88/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= golang.org/x/tools v0.0.0-20200515010526-7d3b6ebf133d/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= golang.org/x/tools v0.0.0-20200522201501-cb1345f3a375/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= golang.org/x/tools v0.0.0-20200618134242-20370b0cb4b2/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= golang.org/x/tools v0.0.0-20200619180055-7c47624df98f/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= -golang.org/x/tools v0.0.0-20200622203043-20e05c1c8ffa/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= -golang.org/x/tools v0.0.0-20200624225443-88f3c62a19ff/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= -golang.org/x/tools v0.0.0-20200625211823-6506e20df31f/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= -golang.org/x/tools v0.0.0-20200626171337-aa94e735be7f/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= -golang.org/x/tools v0.0.0-20200630154851-b2d8b0336632/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= -golang.org/x/tools v0.0.0-20200706234117-b22de6825cf7/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= golang.org/x/tools v0.0.0-20200717024301-6ddee64345a6/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= -golang.org/x/tools v0.0.0-20200724022722-7017fd6b1305/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= golang.org/x/tools v0.0.0-20200729194436-6467de6f59a7/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= golang.org/x/tools v0.0.0-20200804011535-6c149bb5ef0d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= -golang.org/x/tools v0.0.0-20200812195022-5ae4c3c160a0/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= -golang.org/x/tools v0.0.0-20200820010801-b793a1359eac/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= golang.org/x/tools v0.0.0-20200825202427-b303f430e36d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= -golang.org/x/tools v0.0.0-20200831203904-5a2aa26beb65/go.mod h1:Cj7w3i3Rnn0Xh82ur9kSqwfTHTeVxaDqrfMjpcNT6bE= golang.org/x/tools v0.0.0-20200904185747-39188db58858/go.mod h1:Cj7w3i3Rnn0Xh82ur9kSqwfTHTeVxaDqrfMjpcNT6bE= -golang.org/x/tools v0.0.0-20201001104356-43ebab892c4c/go.mod h1:z6u4i615ZeAfBE4XtMziQW1fSVJXACjjbWkB/mvPzlU= -golang.org/x/tools v0.0.0-20201002184944-ecd9fd270d5d/go.mod h1:z6u4i615ZeAfBE4XtMziQW1fSVJXACjjbWkB/mvPzlU= -golang.org/x/tools v0.0.0-20201023174141-c8cfbd0f21e6/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= -golang.org/x/tools v0.0.0-20201028025901-8cd080b735b3/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.0.0-20201110124207-079ba7bd75cd/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= -golang.org/x/tools v0.0.0-20201114224030-61ea331ec02b/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= -golang.org/x/tools v0.0.0-20201118003311-bd56c0adb394/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.0.0-20201201161351-ac6f37ff4c2a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.0.0-20201208233053-a543418bbed2/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.0.0-20201224043029-2b0845dc783e/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= -golang.org/x/tools v0.0.0-20201230224404-63754364767c/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= -golang.org/x/tools v0.0.0-20210101214203-2dba1e4ea05c/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= -golang.org/x/tools v0.0.0-20210104081019-d8d6ddbec6ee/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.0.0-20210105154028-b0ab187a4818/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.0.0-20210106214847-113979e3529a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.1.0/go.mod h1:xkSsbof2nBLbhDlRMhhhyNLN/zl3eTqcnHD5viDpcZ0= golang.org/x/tools v0.1.1/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= golang.org/x/tools v0.1.2/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= -golang.org/x/tools v0.1.3/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= -golang.org/x/tools v0.1.4/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= -golang.org/x/tools v0.1.5 h1:ouewzE6p+/VEB31YYnTbEJdi8pFqKp4P4n85vwo3DHA= golang.org/x/tools v0.1.5/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= @@ -1459,7 +1103,6 @@ google.golang.org/api v0.4.0/go.mod h1:8k5glujaEP+g9n7WNsDg8QP6cUVNI86fCNMcbazEt google.golang.org/api v0.7.0/go.mod h1:WtwebWUNSVBH/HAw79HIFXZNqEvBhG+Ra+ax0hx3E3M= google.golang.org/api v0.8.0/go.mod h1:o4eAsZoiT+ibD93RtjEohWalFOjRDx6CVaqeizhEnKg= google.golang.org/api v0.9.0/go.mod h1:o4eAsZoiT+ibD93RtjEohWalFOjRDx6CVaqeizhEnKg= -google.golang.org/api v0.10.0/go.mod h1:o4eAsZoiT+ibD93RtjEohWalFOjRDx6CVaqeizhEnKg= google.golang.org/api v0.13.0/go.mod h1:iLdEw5Ide6rF15KTC1Kkl0iskquN2gFfn9o9XIsbkAI= google.golang.org/api v0.14.0/go.mod h1:iLdEw5Ide6rF15KTC1Kkl0iskquN2gFfn9o9XIsbkAI= google.golang.org/api v0.15.0/go.mod h1:iLdEw5Ide6rF15KTC1Kkl0iskquN2gFfn9o9XIsbkAI= @@ -1482,14 +1125,11 @@ google.golang.org/appengine v1.2.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7 google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= google.golang.org/appengine v1.5.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= google.golang.org/appengine v1.6.1/go.mod h1:i06prIuMbXzDqacNJfV5OdTW448YApPu5ww/cMBSeb0= -google.golang.org/appengine v1.6.2/go.mod h1:i06prIuMbXzDqacNJfV5OdTW448YApPu5ww/cMBSeb0= google.golang.org/appengine v1.6.5/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= google.golang.org/appengine v1.6.6/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= google.golang.org/appengine v1.6.7/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= -google.golang.org/genproto v0.0.0-20170818010345-ee236bd376b0/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= google.golang.org/genproto v0.0.0-20180831171423-11092d34479b/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= -google.golang.org/genproto v0.0.0-20181107211654-5fc9ac540362/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= google.golang.org/genproto v0.0.0-20190307195333-5fe7a883aa19/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= google.golang.org/genproto v0.0.0-20190418145605-e7d98fc518a7/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= google.golang.org/genproto v0.0.0-20190425155659-357c62f0e4bb/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= @@ -1498,7 +1138,6 @@ google.golang.org/genproto v0.0.0-20190530194941-fb225487d101/go.mod h1:z3L6/3dT google.golang.org/genproto v0.0.0-20190801165951-fa694d86fc64/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc= google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc= google.golang.org/genproto v0.0.0-20190911173649-1774047e7e51/go.mod h1:IbNlFCBrqXvoKpeg0TB2l7cyZUmoaFKYIwrEpbDKLA8= -google.golang.org/genproto v0.0.0-20190927181202-20e1ac93f88c/go.mod h1:IbNlFCBrqXvoKpeg0TB2l7cyZUmoaFKYIwrEpbDKLA8= google.golang.org/genproto v0.0.0-20191108220845-16a3f7862a1a/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= google.golang.org/genproto v0.0.0-20191115194625-c23dd37a84c9/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= google.golang.org/genproto v0.0.0-20191216164720-4f79533eabd1/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= @@ -1520,8 +1159,6 @@ google.golang.org/genproto v0.0.0-20200513103714-09dca8ec2884/go.mod h1:55QSHmfG google.golang.org/genproto v0.0.0-20200515170657-fc4c6c6a6587/go.mod h1:YsZOwe1myG/8QRHRsmBRE1LrgQY60beZKjly0O1fX9U= google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013/go.mod h1:NbSheEEYHJ7i3ixzK3sjbqSGDJWnxyFXZblF3eUsNvo= google.golang.org/genproto v0.0.0-20200618031413-b414f8b61790/go.mod h1:jDfRM7FcilCzHH/e9qn6dsT145K34l5v+OpcnNgKAAA= -google.golang.org/genproto v0.0.0-20200626011028-ee7919e894b5/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20200707001353-8e8330bf89df/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20200729003335-053ba62fc06f/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20200804131852-c06518451d9c/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20200825200019-8632dd797987/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= @@ -1564,7 +1201,6 @@ gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8 gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f h1:BLraFXnmrev5lT+xlilqcH8XK9/i0At2xKjWk4p6zsU= gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/cheggaaa/pb.v1 v1.0.25/go.mod h1:V/YB90LKu/1FcN3WVnfiiE5oMCibMjukxqG/qStrOgw= -gopkg.in/cheggaaa/pb.v1 v1.0.28/go.mod h1:V/YB90LKu/1FcN3WVnfiiE5oMCibMjukxqG/qStrOgw= gopkg.in/errgo.v2 v2.1.0/go.mod h1:hNsd1EY+bozCKY1Ytp96fpM3vjJbqLJn88ws8XvfDNI= gopkg.in/fsnotify.v1 v1.4.7/go.mod h1:Tz8NjZHkW78fSQdbUxIjBTcgA1z1m8ZHf0WmKUhAMys= gopkg.in/gcfg.v1 v1.2.3/go.mod h1:yesOnuUOFQAhST5vPY4nbZsb/huCgGGXlipJsBn0b3o= @@ -1584,7 +1220,6 @@ gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.3/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.4/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.5/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= -gopkg.in/yaml.v2 v2.2.6/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.8/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.3.0/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY= @@ -1600,16 +1235,6 @@ honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod h1:rf3lG4BRIbNafJWh honnef.co/go/tools v0.0.1-2019.2.3/go.mod h1:a3bituU0lyd329TUQxRnasdCoJDkEUEAqEt0JzvZhAg= honnef.co/go/tools v0.0.1-2020.1.3/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= honnef.co/go/tools v0.0.1-2020.1.4/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= -honnef.co/go/tools v0.2.1 h1:/EPr//+UMMXwMTkXvCCoaJDq8cpjMO80Ou+L4PDo2mY= -honnef.co/go/tools v0.2.1/go.mod h1:lPVVZ2BS5TfnjLyizF7o7hv7j9/L+8cZY2hLyjP9cGY= -mvdan.cc/gofumpt v0.1.1 h1:bi/1aS/5W00E2ny5q65w9SnKpWEF/UIOqDYBILpo9rA= -mvdan.cc/gofumpt v0.1.1/go.mod h1:yXG1r1WqZVKWbVRtBWKWX9+CxGYfA51nSomhM0woR48= -mvdan.cc/interfacer v0.0.0-20180901003855-c20040233aed h1:WX1yoOaKQfddO/mLzdV4wptyWgoH/6hwLs7QHTixo0I= -mvdan.cc/interfacer v0.0.0-20180901003855-c20040233aed/go.mod h1:Xkxe497xwlCKkIaQYRfC7CSLworTXY9RMqwhhCm+8Nc= -mvdan.cc/lint v0.0.0-20170908181259-adc824a0674b h1:DxJ5nJdkhDlLok9K6qO+5290kphDJbHOQO1DFFFTeBo= -mvdan.cc/lint v0.0.0-20170908181259-adc824a0674b/go.mod h1:2odslEg/xrtNQqCYg2/jCoyKnw3vv5biOc3JnIcYfL4= -mvdan.cc/unparam v0.0.0-20210104141923-aac4ce9116a7 h1:HT3e4Krq+IE44tiN36RvVEb6tvqeIdtsVSsxmNPqlFU= -mvdan.cc/unparam v0.0.0-20210104141923-aac4ce9116a7/go.mod h1:hBpJkZE8H/sb+VRFvw2+rBpHNsTBcvSpk61hr8mzXZE= nhooyr.io/websocket v1.8.6 h1:s+C3xAMLwGmlI31Nyn/eAehUlZPwfYZu2JXM621Q5/k= nhooyr.io/websocket v1.8.6/go.mod h1:B70DZP8IakI65RVQ51MsWP/8jndNma26DVA/nFSCgW0= rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8= diff --git a/x/auth/types/query.pb.go b/x/auth/types/query.pb.go index 3267ab07d12b..a0c621434008 100644 --- a/x/auth/types/query.pb.go +++ b/x/auth/types/query.pb.go @@ -470,49 +470,6 @@ type AddressBytesToStringRequest struct { AddressBytes []byte `protobuf:"bytes,1,opt,name=address_bytes,json=addressBytes,proto3" json:"address_bytes,omitempty"` } -func init() { proto.RegisterFile("cosmos/auth/v1beta1/query.proto", fileDescriptor_c451370b3929a27c) } - -var fileDescriptor_c451370b3929a27c = []byte{ - // 617 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x93, 0x4f, 0x6f, 0x12, 0x41, - 0x18, 0xc6, 0x77, 0x6b, 0x6d, 0x71, 0x6a, 0x3c, 0x4c, 0x31, 0xc1, 0xa5, 0x5d, 0x9a, 0x55, 0x0b, - 0x34, 0x32, 0x63, 0xf1, 0xa4, 0x31, 0x26, 0xa0, 0xd1, 0x78, 0x30, 0x41, 0xea, 0xc9, 0x83, 0xcd, - 0x00, 0xeb, 0x96, 0x58, 0x76, 0xb6, 0xcc, 0xae, 0x91, 0x18, 0x13, 0xe3, 0xa9, 0x37, 0x4d, 0xfc, - 0x02, 0xf8, 0x1d, 0xf8, 0x10, 0x4d, 0xbd, 0x34, 0x7a, 0xf1, 0x64, 0x0c, 0x78, 0xf0, 0x63, 0x18, - 0x66, 0xde, 0x41, 0xb6, 0xd9, 0x0a, 0x27, 0x76, 0x66, 0xde, 0xe7, 0x7d, 0x7e, 0xef, 0x1f, 0x50, - 0xae, 0xc9, 0x45, 0x87, 0x0b, 0xca, 0xa2, 0x70, 0x8f, 0xbe, 0xde, 0x6e, 0xb8, 0x21, 0xdb, 0xa6, - 0x07, 0x91, 0xdb, 0xed, 0x91, 0xa0, 0xcb, 0x43, 0x8e, 0x57, 0x55, 0x00, 0x19, 0x07, 0x10, 0x08, - 0xb0, 0xb6, 0x40, 0xd5, 0x60, 0xc2, 0x55, 0xd1, 0x13, 0x6d, 0xc0, 0xbc, 0xb6, 0xcf, 0xc2, 0x36, - 0xf7, 0x55, 0x02, 0x2b, 0xed, 0x71, 0x8f, 0xcb, 0x4f, 0x3a, 0xfe, 0x82, 0xdb, 0x2b, 0x1e, 0xe7, - 0xde, 0xbe, 0x4b, 0xe5, 0xa9, 0x11, 0xbd, 0xa4, 0xcc, 0x07, 0x47, 0x6b, 0x0d, 0x9e, 0x58, 0xd0, - 0xa6, 0xcc, 0xf7, 0x79, 0x28, 0xb3, 0x09, 0x78, 0xb5, 0x93, 0x80, 0x25, 0x1c, 0x24, 0x56, 0xef, - 0xbb, 0xca, 0x11, 0xe0, 0xe5, 0xc1, 0x79, 0x81, 0xd2, 0x4f, 0xc7, 0xac, 0x95, 0x66, 0x93, 0x47, - 0x7e, 0x28, 0xea, 0xee, 0x41, 0xe4, 0x8a, 0x10, 0x3f, 0x44, 0xe8, 0x1f, 0x75, 0xc6, 0xdc, 0x30, - 0x0b, 0x2b, 0xe5, 0x4d, 0x02, 0xd2, 0x71, 0x89, 0x44, 0x35, 0x04, 0xdc, 0x48, 0x8d, 0x79, 0x2e, - 0x68, 0xeb, 0x53, 0x4a, 0xa7, 0x6f, 0xa2, 0xcb, 0xa7, 0x0c, 0x44, 0xc0, 0x7d, 0xe1, 0xe2, 0x7b, - 0x28, 0xc5, 0xe0, 0x2e, 0x63, 0x6e, 0x9c, 0x2b, 0xac, 0x94, 0xd3, 0x44, 0x55, 0x49, 0x74, 0x03, - 0x48, 0xc5, 0xef, 0x55, 0x2f, 0x1e, 0x0f, 0x4a, 0x29, 0x50, 0x3f, 0xae, 0x4f, 0x34, 0xf8, 0x51, - 0x8c, 0x70, 0x41, 0x12, 0xe6, 0x67, 0x12, 0x2a, 0xf3, 0x18, 0xe2, 0x0e, 0x5a, 0x9d, 0x26, 0xd4, - 0x1d, 0x28, 0xa3, 0x65, 0xd6, 0x6a, 0x75, 0x5d, 0x21, 0x64, 0xf9, 0x17, 0xaa, 0x99, 0x6f, 0x83, - 0x52, 0x1a, 0xf2, 0x57, 0xd4, 0xcb, 0x4e, 0xd8, 0x6d, 0xfb, 0x5e, 0x5d, 0x07, 0xde, 0x49, 0x1d, - 0xf6, 0x73, 0xc6, 0x9f, 0x7e, 0xce, 0x70, 0x9e, 0xc5, 0xfb, 0x3a, 0xa9, 0xfa, 0x2e, 0x5a, 0x86, - 0x0a, 0xa0, 0xa9, 0xf3, 0x14, 0xad, 0x25, 0x4e, 0x1a, 0x61, 0x99, 0xb5, 0xc6, 0xba, 0xac, 0xa3, - 0x67, 0xe5, 0xd4, 0xa0, 0x00, 0x7d, 0x0b, 0x56, 0xb7, 0xd1, 0x52, 0x20, 0x6f, 0xc0, 0x29, 0x4b, - 0x12, 0xd6, 0x96, 0x28, 0x51, 0x75, 0xf1, 0xe8, 0x67, 0xce, 0xa8, 0x83, 0xc0, 0x59, 0x43, 0x96, - 0xcc, 0xf8, 0x84, 0xb7, 0xa2, 0x7d, 0xf7, 0xd4, 0x6e, 0x38, 0x4d, 0x94, 0x4d, 0x7c, 0x05, 0xdf, - 0x07, 0x73, 0x0e, 0x16, 0x1f, 0x0f, 0x4a, 0x97, 0x62, 0x39, 0xa6, 0xc6, 0x5b, 0xfe, 0xba, 0x88, - 0xce, 0x4b, 0x17, 0x7c, 0x68, 0x22, 0xdd, 0x0a, 0x81, 0x8b, 0x89, 0x45, 0x24, 0xad, 0xb0, 0xb5, - 0x35, 0x4f, 0xa8, 0x62, 0x76, 0xae, 0x7f, 0xf8, 0xfe, 0xfb, 0xf3, 0x42, 0x0e, 0xaf, 0xd3, 0xc4, - 0xbf, 0x92, 0x76, 0xff, 0x68, 0xa2, 0x65, 0xd0, 0xe2, 0xc2, 0xcc, 0xf4, 0x1a, 0xa4, 0x38, 0x47, - 0x24, 0x70, 0x50, 0xc9, 0x51, 0xc4, 0xf9, 0xff, 0x72, 0xd0, 0xb7, 0xb0, 0x70, 0xef, 0xf0, 0x7b, - 0x13, 0x2d, 0xa9, 0x11, 0xe2, 0xfc, 0xd9, 0x36, 0xb1, 0x7d, 0xb1, 0x0a, 0xb3, 0x03, 0x01, 0xe7, - 0xaa, 0xc4, 0x59, 0xc7, 0xd9, 0x44, 0x1c, 0xb5, 0x2c, 0xf8, 0x8b, 0x89, 0xe2, 0x63, 0x14, 0x98, - 0x9e, 0xed, 0x90, 0xb8, 0x52, 0xd6, 0xcd, 0xf9, 0x05, 0x80, 0x76, 0x43, 0xa2, 0x6d, 0xe2, 0x6b, - 0x89, 0x68, 0x1d, 0x29, 0xda, 0xd5, 0x0d, 0xab, 0xde, 0x3f, 0x1a, 0xda, 0xe6, 0xc9, 0xd0, 0x36, - 0x7f, 0x0d, 0x6d, 0xf3, 0xd3, 0xc8, 0x36, 0x4e, 0x46, 0xb6, 0xf1, 0x63, 0x64, 0x1b, 0xcf, 0x8b, - 0x5e, 0x3b, 0xdc, 0x8b, 0x1a, 0xa4, 0xc9, 0x3b, 0x3a, 0x93, 0xfa, 0x29, 0x89, 0xd6, 0x2b, 0xfa, - 0x46, 0xa5, 0x0d, 0x7b, 0x81, 0x2b, 0x1a, 0x4b, 0x72, 0x7d, 0x6f, 0xfd, 0x0d, 0x00, 0x00, 0xff, - 0xff, 0xf7, 0x29, 0xbb, 0x35, 0x20, 0x06, 0x00, 0x00, func (m *AddressBytesToStringRequest) Reset() { *m = AddressBytesToStringRequest{} } func (m *AddressBytesToStringRequest) String() string { return proto.CompactTextString(m) } func (*AddressBytesToStringRequest) ProtoMessage() {} @@ -708,58 +665,58 @@ func init() { func init() { proto.RegisterFile("cosmos/auth/v1beta1/query.proto", fileDescriptor_c451370b3929a27c) } var fileDescriptor_c451370b3929a27c = []byte{ - // 801 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x95, 0x41, 0x4f, 0x13, 0x4d, - 0x18, 0xc7, 0xbb, 0xbc, 0xef, 0x0b, 0x7d, 0x87, 0xc2, 0x61, 0x28, 0x09, 0x6e, 0xa1, 0x25, 0x8b, - 0x40, 0x8b, 0x74, 0x57, 0x8a, 0x17, 0xd4, 0x98, 0x50, 0x50, 0xe3, 0xc1, 0xa4, 0x56, 0x4e, 0x1e, - 0x6c, 0x66, 0xdb, 0x61, 0x69, 0xa4, 0x3b, 0xa5, 0xb3, 0x35, 0x34, 0x86, 0xc4, 0x78, 0xe2, 0xa6, - 0x89, 0x5f, 0x00, 0xbf, 0x81, 0x26, 0x5c, 0xbd, 0x13, 0x4e, 0x24, 0x5e, 0x3c, 0x19, 0x03, 0x1e, - 0xfc, 0x18, 0xa6, 0x33, 0xcf, 0xb6, 0x5d, 0x32, 0x6d, 0xd7, 0x13, 0xdd, 0x99, 0xe7, 0xff, 0x7f, - 0x7e, 0xf3, 0x3c, 0xf3, 0x0c, 0x28, 0x55, 0x66, 0xbc, 0xc6, 0xb8, 0x45, 0x9a, 0xde, 0x9e, 0xf5, - 0x7a, 0xcd, 0xa6, 0x1e, 0x59, 0xb3, 0x0e, 0x9a, 0xb4, 0xd1, 0x32, 0xeb, 0x0d, 0xe6, 0x31, 0x3c, - 0x25, 0x03, 0xcc, 0x76, 0x80, 0x09, 0x01, 0xfa, 0x0a, 0xa8, 0x6c, 0xc2, 0xa9, 0x8c, 0xee, 0x68, - 0xeb, 0xc4, 0xa9, 0xba, 0xc4, 0xab, 0x32, 0x57, 0x1a, 0xe8, 0x71, 0x87, 0x39, 0x4c, 0xfc, 0xb4, - 0xda, 0xbf, 0x60, 0xf5, 0x86, 0xc3, 0x98, 0xb3, 0x4f, 0x2d, 0xf1, 0x65, 0x37, 0x77, 0x2d, 0xe2, - 0x42, 0x46, 0x7d, 0x16, 0xb6, 0x48, 0xbd, 0x6a, 0x11, 0xd7, 0x65, 0x9e, 0x70, 0xe3, 0xb0, 0x9b, - 0x54, 0x01, 0x0b, 0x38, 0x30, 0x96, 0xfb, 0x25, 0x99, 0x11, 0xe0, 0xc5, 0x87, 0xf1, 0x12, 0xc5, - 0x9f, 0xb5, 0x59, 0x37, 0xcb, 0x65, 0xd6, 0x74, 0x3d, 0x5e, 0xa4, 0x07, 0x4d, 0xca, 0x3d, 0xfc, - 0x08, 0xa1, 0x2e, 0xf5, 0x8c, 0x36, 0xaf, 0xa5, 0xc7, 0x73, 0x4b, 0x26, 0x48, 0xdb, 0x47, 0x34, - 0x65, 0x41, 0x20, 0x9b, 0x59, 0x20, 0x0e, 0x05, 0x6d, 0xb1, 0x47, 0x69, 0x9c, 0x68, 0x68, 0xfa, - 0x5a, 0x02, 0x5e, 0x67, 0x2e, 0xa7, 0xf8, 0x01, 0x8a, 0x12, 0x58, 0x9b, 0xd1, 0xe6, 0xff, 0x49, - 0x8f, 0xe7, 0xe2, 0xa6, 0x3c, 0xa5, 0xe9, 0x17, 0xc0, 0xdc, 0x74, 0x5b, 0xf9, 0xd8, 0xf9, 0x69, - 0x36, 0x0a, 0xea, 0x27, 0xc5, 0x8e, 0x06, 0x3f, 0x0e, 0x10, 0x8e, 0x08, 0xc2, 0xe5, 0xa1, 0x84, - 0x32, 0x79, 0x00, 0x71, 0x03, 0x4d, 0xf5, 0x12, 0xfa, 0x15, 0x98, 0x41, 0x63, 0xa4, 0x52, 0x69, - 0x50, 0xce, 0xc5, 0xf1, 0xff, 0x2f, 0xfa, 0x9f, 0x77, 0xa3, 0xc7, 0x27, 0xa9, 0xc8, 0xef, 0x93, - 0x54, 0xc4, 0x98, 0x45, 0xba, 0x90, 0x3e, 0x65, 0x95, 0xe6, 0x3e, 0xbd, 0x56, 0x43, 0xa3, 0x00, - 0xc6, 0x05, 0xd2, 0x20, 0xb5, 0xee, 0xc1, 0x37, 0xd0, 0x68, 0x5d, 0xac, 0x40, 0x59, 0x13, 0xa6, - 0xe2, 0x3a, 0x99, 0x52, 0x94, 0xff, 0xf7, 0xec, 0x47, 0x2a, 0x52, 0x04, 0x81, 0xb1, 0x13, 0xec, - 0x56, 0xc7, 0xf2, 0x3e, 0x1a, 0x83, 0xba, 0x80, 0x67, 0x98, 0x52, 0xfa, 0x12, 0x23, 0x8e, 0x70, - 0x80, 0x53, 0xd2, 0x97, 0x51, 0x42, 0x79, 0x36, 0x48, 0xb9, 0x1d, 0xb2, 0x7d, 0xf8, 0xfc, 0x34, - 0x3b, 0x19, 0xf0, 0xe8, 0x69, 0xa2, 0x31, 0x8d, 0xa6, 0xf2, 0xb4, 0xbc, 0xb7, 0x9e, 0x2b, 0x34, - 0xe8, 0x6e, 0xf5, 0xd0, 0xcf, 0x7d, 0x0f, 0xc5, 0x83, 0xcb, 0x90, 0x74, 0x01, 0x4d, 0xd8, 0x62, - 0xbd, 0x54, 0x17, 0x1b, 0xd0, 0x99, 0x98, 0xdd, 0x13, 0x6c, 0xe4, 0x51, 0x62, 0x53, 0x76, 0x2a, - 0xdf, 0xf2, 0x28, 0xdf, 0x61, 0xcf, 0xbd, 0x46, 0xd5, 0x75, 0xfc, 0xbe, 0x2e, 0xa0, 0x09, 0x68, - 0x64, 0xc9, 0x6e, 0xef, 0x0b, 0x8f, 0x58, 0x31, 0x46, 0x7a, 0x34, 0xc6, 0x43, 0x34, 0xab, 0xf6, - 0x00, 0x90, 0x45, 0x34, 0xe9, 0x9b, 0x70, 0xb1, 0x03, 0x24, 0xbe, 0xb5, 0x0c, 0x37, 0xb6, 0x3b, - 0x28, 0x72, 0x61, 0x87, 0x09, 0x3b, 0x1f, 0x25, 0xa4, 0xcb, 0x56, 0x07, 0xe6, 0x9a, 0x4b, 0xb7, - 0x2a, 0x43, 0x4f, 0x94, 0xfb, 0x1a, 0x45, 0xff, 0x89, 0x7e, 0xe2, 0x63, 0x0d, 0xf9, 0x97, 0x80, - 0xe3, 0x8c, 0xf2, 0xf2, 0xa9, 0x9e, 0x04, 0x7d, 0x25, 0x4c, 0xa8, 0x44, 0x32, 0x16, 0xdf, 0x7d, - 0xfb, 0xf5, 0x71, 0x24, 0x85, 0xe7, 0x2c, 0xe5, 0xd3, 0xe4, 0x67, 0x7f, 0xaf, 0xa1, 0x31, 0xd0, - 0xe2, 0xf4, 0x50, 0x7b, 0x1f, 0x24, 0x13, 0x22, 0x12, 0x38, 0x2c, 0xc1, 0x91, 0xc1, 0xcb, 0x03, - 0x39, 0xac, 0x37, 0x50, 0xaa, 0x23, 0xfc, 0x56, 0x43, 0xa3, 0x72, 0x0e, 0xf0, 0x72, 0xff, 0x34, - 0x81, 0x49, 0xd1, 0xd3, 0xc3, 0x03, 0x01, 0x67, 0x41, 0xe0, 0xcc, 0xe1, 0x84, 0x12, 0x47, 0x0e, - 0x39, 0xfe, 0xa4, 0xa1, 0xe0, 0xc0, 0x70, 0x6c, 0xf5, 0xcf, 0xa0, 0x7c, 0x7a, 0xf4, 0xdb, 0xe1, - 0x05, 0x80, 0xb6, 0x2a, 0xd0, 0x96, 0xf0, 0x4d, 0x25, 0x5a, 0x4d, 0x88, 0x4a, 0x9d, 0xc6, 0x1d, - 0x6b, 0x28, 0xd6, 0x3b, 0xa1, 0x7d, 0xba, 0xa7, 0x98, 0xed, 0x3e, 0xdd, 0x53, 0x8d, 0xfb, 0x90, - 0x72, 0xc9, 0xa1, 0xc7, 0x9f, 0x35, 0x14, 0x57, 0xcd, 0x2a, 0x56, 0xd7, 0x60, 0xc0, 0xd3, 0xa0, - 0xaf, 0xfd, 0x85, 0x02, 0x10, 0xd7, 0x05, 0x62, 0x16, 0xdf, 0x1a, 0x80, 0xd8, 0xb9, 0x5e, 0x72, - 0x3c, 0x8f, 0xf0, 0x97, 0x2e, 0x72, 0x60, 0xa2, 0x07, 0x23, 0xab, 0x9e, 0x90, 0xc1, 0xc8, 0xca, - 0xe7, 0xc2, 0xb8, 0x23, 0x90, 0x4d, 0xbc, 0x1a, 0x0a, 0x59, 0x3e, 0x4c, 0x47, 0xf9, 0xad, 0xb3, - 0xcb, 0xa4, 0x76, 0x71, 0x99, 0xd4, 0x7e, 0x5e, 0x26, 0xb5, 0x0f, 0x57, 0xc9, 0xc8, 0xc5, 0x55, - 0x32, 0xf2, 0xfd, 0x2a, 0x19, 0x79, 0x91, 0x71, 0xaa, 0xde, 0x5e, 0xd3, 0x36, 0xcb, 0xac, 0xe6, - 0x3b, 0xca, 0x3f, 0x59, 0x5e, 0x79, 0x65, 0x1d, 0x4a, 0x7b, 0xaf, 0x55, 0xa7, 0xdc, 0x1e, 0x15, - 0xff, 0x1a, 0xd6, 0xff, 0x04, 0x00, 0x00, 0xff, 0xff, 0x5d, 0xa7, 0x72, 0x0c, 0x62, 0x09, 0x00, - 0x00, + // 814 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x95, 0xcf, 0x4f, 0x13, 0x4d, + 0x18, 0xc7, 0xbb, 0xbc, 0xef, 0x0b, 0x7d, 0x87, 0xc2, 0x61, 0x28, 0x09, 0xef, 0x16, 0x5a, 0xb2, + 0xbc, 0x40, 0x8b, 0x74, 0x57, 0x8a, 0x17, 0x7f, 0xc4, 0x84, 0x82, 0x1a, 0x0f, 0x26, 0xb5, 0x70, + 0xf2, 0x60, 0x33, 0xdb, 0x0e, 0x4b, 0x23, 0xdd, 0x29, 0x9d, 0xad, 0xa1, 0x31, 0x24, 0xc6, 0x13, + 0x37, 0x4d, 0xfc, 0x07, 0xf0, 0x3f, 0xd0, 0x84, 0xab, 0x77, 0xc2, 0x89, 0xe8, 0xc5, 0x93, 0x31, + 0xe0, 0xc1, 0x3f, 0xc3, 0x74, 0xe6, 0xd9, 0xb6, 0x4b, 0xa6, 0xed, 0x7a, 0xa2, 0x3b, 0xf3, 0x7c, + 0xbf, 0xcf, 0x67, 0x9e, 0x67, 0x9e, 0x01, 0xa5, 0xca, 0x8c, 0xd7, 0x18, 0xb7, 0x48, 0xd3, 0xdb, + 0xb3, 0x5e, 0xae, 0xd9, 0xd4, 0x23, 0x6b, 0xd6, 0x41, 0x93, 0x36, 0x5a, 0x66, 0xbd, 0xc1, 0x3c, + 0x86, 0xa7, 0x64, 0x80, 0xd9, 0x0e, 0x30, 0x21, 0x40, 0x5f, 0x01, 0x95, 0x4d, 0x38, 0x95, 0xd1, + 0x1d, 0x6d, 0x9d, 0x38, 0x55, 0x97, 0x78, 0x55, 0xe6, 0x4a, 0x03, 0x3d, 0xee, 0x30, 0x87, 0x89, + 0x9f, 0x56, 0xfb, 0x17, 0xac, 0xfe, 0xe7, 0x30, 0xe6, 0xec, 0x53, 0x4b, 0x7c, 0xd9, 0xcd, 0x5d, + 0x8b, 0xb8, 0x90, 0x51, 0x9f, 0x85, 0x2d, 0x52, 0xaf, 0x5a, 0xc4, 0x75, 0x99, 0x27, 0xdc, 0x38, + 0xec, 0x26, 0x55, 0xc0, 0x02, 0x0e, 0x8c, 0xe5, 0x7e, 0x49, 0x66, 0x04, 0x78, 0xf1, 0x61, 0x3c, + 0x47, 0xf1, 0xa7, 0x6d, 0xd6, 0x8d, 0x72, 0x99, 0x35, 0x5d, 0x8f, 0x17, 0xe9, 0x41, 0x93, 0x72, + 0x0f, 0x3f, 0x44, 0xa8, 0x4b, 0x3d, 0xa3, 0xcd, 0x6b, 0xe9, 0xf1, 0xdc, 0x92, 0x09, 0xd2, 0xf6, + 0x11, 0x4d, 0x59, 0x10, 0xc8, 0x66, 0x16, 0x88, 0x43, 0x41, 0x5b, 0xec, 0x51, 0x1a, 0x27, 0x1a, + 0x9a, 0xbe, 0x96, 0x80, 0xd7, 0x99, 0xcb, 0x29, 0xbe, 0x8f, 0xa2, 0x04, 0xd6, 0x66, 0xb4, 0xf9, + 0xbf, 0xd2, 0xe3, 0xb9, 0xb8, 0x29, 0x4f, 0x69, 0xfa, 0x05, 0x30, 0x37, 0xdc, 0x56, 0x3e, 0x76, + 0x7e, 0x9a, 0x8d, 0x82, 0xfa, 0x71, 0xb1, 0xa3, 0xc1, 0x8f, 0x02, 0x84, 0x23, 0x82, 0x70, 0x79, + 0x28, 0xa1, 0x4c, 0x1e, 0x40, 0xdc, 0x46, 0x53, 0xbd, 0x84, 0x7e, 0x05, 0x72, 0x68, 0x8c, 0x54, + 0x2a, 0x0d, 0xca, 0xb9, 0x38, 0xfe, 0xbf, 0xf9, 0x99, 0x2f, 0xa7, 0xd9, 0x38, 0xf8, 0x6f, 0xc8, + 0x9d, 0x6d, 0xaf, 0x51, 0x75, 0x9d, 0xa2, 0x1f, 0x78, 0x27, 0x7a, 0x7c, 0x92, 0x8a, 0xfc, 0x3a, + 0x49, 0x45, 0x8c, 0x59, 0xa4, 0x0b, 0xd3, 0x27, 0xac, 0xd2, 0xdc, 0xa7, 0xd7, 0xaa, 0x6b, 0x14, + 0x20, 0x65, 0x81, 0x34, 0x48, 0xad, 0x5b, 0x92, 0xdb, 0x68, 0xb4, 0x2e, 0x56, 0xa0, 0xe0, 0x09, + 0x53, 0x71, 0xd1, 0x4c, 0x29, 0xca, 0xff, 0x7d, 0xf6, 0x3d, 0x15, 0x29, 0x82, 0xc0, 0xd8, 0x09, + 0xf6, 0xb1, 0x63, 0x79, 0x0f, 0x8d, 0x41, 0xc5, 0xc0, 0x33, 0x4c, 0x91, 0x7d, 0x89, 0x11, 0x47, + 0x38, 0xc0, 0x29, 0xe9, 0xcb, 0x28, 0xa1, 0x3c, 0x1b, 0xa4, 0xdc, 0x0a, 0xd9, 0x58, 0x7c, 0x7e, + 0x9a, 0x9d, 0x0c, 0x78, 0xf4, 0xb4, 0xd7, 0x98, 0x46, 0x53, 0x79, 0x5a, 0xde, 0x5b, 0xcf, 0x15, + 0x1a, 0x74, 0xb7, 0x7a, 0xe8, 0xe7, 0xbe, 0x8b, 0xe2, 0xc1, 0x65, 0x48, 0xba, 0x80, 0x26, 0x6c, + 0xb1, 0x5e, 0xaa, 0x8b, 0x0d, 0xd9, 0xb3, 0x62, 0xcc, 0xee, 0x09, 0x36, 0xf2, 0x28, 0x01, 0x8d, + 0xcb, 0xb7, 0x3c, 0xca, 0x77, 0x18, 0xf4, 0x0f, 0x3a, 0xbe, 0x80, 0x26, 0xa0, 0x91, 0x25, 0xbb, + 0xbd, 0x2f, 0x3c, 0x62, 0xc5, 0x18, 0xe9, 0xd1, 0x18, 0x0f, 0xd0, 0xac, 0xda, 0x03, 0x40, 0x16, + 0xd1, 0xa4, 0x6f, 0xc2, 0xc5, 0x0e, 0x90, 0xf8, 0xd6, 0x32, 0xdc, 0xd8, 0xea, 0xa0, 0xc8, 0x85, + 0x1d, 0x26, 0xec, 0x7c, 0x94, 0x90, 0x2e, 0x9b, 0x1d, 0x98, 0x6b, 0x2e, 0xdd, 0xaa, 0x0c, 0x3d, + 0x51, 0xee, 0x73, 0x14, 0xfd, 0x23, 0xfa, 0x89, 0x8f, 0x35, 0xe4, 0x5f, 0x02, 0x8e, 0x33, 0xca, + 0xcb, 0xa7, 0x7a, 0x2c, 0xf4, 0x95, 0x30, 0xa1, 0x12, 0xc9, 0x58, 0x7c, 0xf3, 0xf5, 0xe7, 0xfb, + 0x91, 0x14, 0x9e, 0xb3, 0x94, 0x8f, 0x96, 0x9f, 0xfd, 0xad, 0x86, 0xc6, 0x40, 0x8b, 0xd3, 0x43, + 0xed, 0x7d, 0x90, 0x4c, 0x88, 0x48, 0xe0, 0xb0, 0x04, 0x47, 0x06, 0x2f, 0x0f, 0xe4, 0xb0, 0x5e, + 0x41, 0xa9, 0x8e, 0xf0, 0x6b, 0x0d, 0x8d, 0xca, 0x39, 0xc0, 0xcb, 0xfd, 0xd3, 0x04, 0x26, 0x45, + 0x4f, 0x0f, 0x0f, 0x04, 0x9c, 0x05, 0x81, 0x33, 0x87, 0x13, 0x4a, 0x1c, 0x39, 0xe4, 0xf8, 0x83, + 0x86, 0x82, 0x03, 0xc3, 0xb1, 0xd5, 0x3f, 0x83, 0xf2, 0xe9, 0xd1, 0x6f, 0x86, 0x17, 0x00, 0xda, + 0xaa, 0x40, 0x5b, 0xc2, 0xff, 0x2b, 0xd1, 0x6a, 0x42, 0x54, 0xea, 0x34, 0xee, 0x58, 0x43, 0xb1, + 0xde, 0x09, 0xed, 0xd3, 0x3d, 0xc5, 0x6c, 0xf7, 0xe9, 0x9e, 0x6a, 0xdc, 0x87, 0x94, 0x4b, 0x0e, + 0x3d, 0xfe, 0xa8, 0xa1, 0xb8, 0x6a, 0x56, 0xb1, 0xba, 0x06, 0x03, 0x9e, 0x06, 0x7d, 0xed, 0x0f, + 0x14, 0x80, 0xb8, 0x2e, 0x10, 0xb3, 0xf8, 0xc6, 0x00, 0xc4, 0xce, 0xf5, 0x92, 0xe3, 0x79, 0x84, + 0x3f, 0x75, 0x91, 0x03, 0x13, 0x3d, 0x18, 0x59, 0xf5, 0x84, 0x0c, 0x46, 0x56, 0x3e, 0x17, 0xc6, + 0x2d, 0x81, 0x6c, 0xe2, 0xd5, 0x50, 0xc8, 0xf2, 0x61, 0x3a, 0xca, 0x6f, 0x9e, 0x5d, 0x26, 0xb5, + 0x8b, 0xcb, 0xa4, 0xf6, 0xe3, 0x32, 0xa9, 0xbd, 0xbb, 0x4a, 0x46, 0x2e, 0xae, 0x92, 0x91, 0x6f, + 0x57, 0xc9, 0xc8, 0xb3, 0x8c, 0x53, 0xf5, 0xf6, 0x9a, 0xb6, 0x59, 0x66, 0x35, 0xdf, 0x51, 0xfe, + 0xc9, 0xf2, 0xca, 0x0b, 0xeb, 0x50, 0xda, 0x7b, 0xad, 0x3a, 0xe5, 0xf6, 0xa8, 0xf8, 0xd7, 0xb0, + 0xfe, 0x3b, 0x00, 0x00, 0xff, 0xff, 0x15, 0x47, 0x58, 0x91, 0x7c, 0x09, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/auth/vesting/types/tx.pb.go b/x/auth/vesting/types/tx.pb.go index 651a1ce8941c..2a2cceaa27d0 100644 --- a/x/auth/vesting/types/tx.pb.go +++ b/x/auth/vesting/types/tx.pb.go @@ -266,35 +266,42 @@ func init() { func init() { proto.RegisterFile("cosmos/vesting/v1beta1/tx.proto", fileDescriptor_5338ca97811f9792) } var fileDescriptor_5338ca97811f9792 = []byte{ - // 434 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x92, 0x3f, 0x6f, 0xd3, 0x40, - 0x18, 0xc6, 0x7d, 0x75, 0xe9, 0x9f, 0x2b, 0x12, 0xc2, 0x8d, 0xc0, 0xcd, 0xe0, 0x33, 0x9e, 0xbc, - 0xe4, 0x8e, 0x94, 0x01, 0xa9, 0x5b, 0xdd, 0x11, 0xba, 0x18, 0xc4, 0xc0, 0x12, 0x9d, 0xed, 0xc3, - 0xb5, 0xa8, 0xef, 0x22, 0xdf, 0xa5, 0x6a, 0x36, 0x46, 0x46, 0x3e, 0x02, 0x33, 0x33, 0x1f, 0x22, - 0x63, 0xc4, 0xc4, 0x64, 0x50, 0xb2, 0x30, 0xa2, 0x7c, 0x02, 0x64, 0xdf, 0x39, 0x30, 0x24, 0x48, - 0x9d, 0xec, 0xbb, 0xe7, 0x79, 0x7e, 0x7e, 0xf5, 0xf8, 0x85, 0x28, 0x15, 0xb2, 0x14, 0x92, 0xdc, - 0x30, 0xa9, 0x0a, 0x9e, 0x93, 0x9b, 0x61, 0xc2, 0x14, 0x1d, 0x12, 0x75, 0x8b, 0xc7, 0x95, 0x50, - 0xc2, 0x79, 0xa4, 0x0d, 0xd8, 0x18, 0xb0, 0x31, 0xf4, 0x7b, 0xb9, 0xc8, 0x45, 0x6b, 0x21, 0xcd, - 0x9b, 0x76, 0xf7, 0x3d, 0x83, 0x4b, 0xa8, 0x64, 0x6b, 0x56, 0x2a, 0x0a, 0x6e, 0xf4, 0x13, 0xad, - 0x8f, 0x74, 0xd0, 0xa0, 0xdb, 0x43, 0xf0, 0x7b, 0x07, 0x3e, 0xbe, 0x94, 0xf9, 0x45, 0xc5, 0xa8, - 0x62, 0x6f, 0xf4, 0xd7, 0xce, 0xd3, 0x54, 0x4c, 0xb8, 0x72, 0x62, 0x78, 0xff, 0x5d, 0x25, 0xca, - 0x11, 0xcd, 0xb2, 0x8a, 0x49, 0xe9, 0x02, 0x1f, 0x84, 0x87, 0x11, 0x59, 0xd5, 0xe8, 0x78, 0x4a, - 0xcb, 0xeb, 0xb3, 0xe0, 0x5f, 0x35, 0xf8, 0xf6, 0x75, 0xd0, 0x33, 0xe8, 0x73, 0x7d, 0xf5, 0x4a, - 0x55, 0x05, 0xcf, 0xe3, 0xa3, 0xc6, 0x66, 0xae, 0x9c, 0x97, 0x10, 0x2a, 0xb1, 0x26, 0xee, 0xb4, - 0xc4, 0xc1, 0xaa, 0x46, 0x0f, 0x35, 0xf1, 0xaf, 0xb6, 0x9d, 0x77, 0xa8, 0x44, 0x47, 0x4b, 0xe1, - 0x1e, 0x2d, 0x9b, 0x59, 0x5d, 0xdb, 0xb7, 0xc3, 0xa3, 0xd3, 0x13, 0x6c, 0x12, 0x4d, 0x13, 0x5d, - 0x69, 0xf8, 0x42, 0x14, 0x3c, 0x7a, 0x3a, 0xab, 0x91, 0xf5, 0xe5, 0x07, 0x0a, 0xf3, 0x42, 0x5d, - 0x4d, 0x12, 0x9c, 0x8a, 0xd2, 0x34, 0x61, 0x1e, 0x03, 0x99, 0xbd, 0x27, 0x6a, 0x3a, 0x66, 0xb2, - 0x0d, 0xc8, 0xd8, 0xa0, 0x1d, 0x0c, 0x0f, 0x18, 0xcf, 0x46, 0xaa, 0x28, 0x99, 0xbb, 0xeb, 0x83, - 0xd0, 0x8e, 0x8e, 0x57, 0x35, 0x7a, 0xa0, 0x07, 0xee, 0x94, 0x20, 0xde, 0x67, 0x3c, 0x7b, 0x5d, - 0x94, 0xcc, 0x71, 0xe1, 0x7e, 0xc6, 0xae, 0xe9, 0x94, 0x65, 0xee, 0x3d, 0x1f, 0x84, 0x07, 0x71, - 0x77, 0x3c, 0xdb, 0xfd, 0xf5, 0x19, 0x81, 0xe0, 0x09, 0x44, 0x5b, 0x1a, 0x8f, 0x99, 0x1c, 0x0b, - 0x2e, 0xd9, 0xe9, 0x47, 0x00, 0xed, 0x4b, 0x99, 0x3b, 0x1f, 0x00, 0xec, 0x6d, 0xfc, 0x35, 0x04, - 0x6f, 0x5e, 0x10, 0xbc, 0x85, 0xdc, 0x7f, 0x7e, 0xc7, 0x40, 0x37, 0x4a, 0xf4, 0x62, 0xb6, 0xf0, - 0xc0, 0x7c, 0xe1, 0x81, 0x9f, 0x0b, 0x0f, 0x7c, 0x5a, 0x7a, 0xd6, 0x7c, 0xe9, 0x59, 0xdf, 0x97, - 0x9e, 0xf5, 0x76, 0xf8, 0xdf, 0x26, 0x6f, 0x09, 0x9d, 0xa8, 0xab, 0xf5, 0x86, 0xb7, 0xc5, 0x26, - 0x7b, 0xed, 0xd2, 0x3d, 0xfb, 0x13, 0x00, 0x00, 0xff, 0xff, 0x93, 0xb3, 0x24, 0x8f, 0x00, 0x03, - 0x00, 0x00, + // 559 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x54, 0x31, 0x6f, 0xd3, 0x4e, + 0x1c, 0xf5, 0xc5, 0xf9, 0xb7, 0xcd, 0xf5, 0x2f, 0x2a, 0xdc, 0x40, 0xdd, 0x08, 0xd9, 0xc1, 0x42, + 0xc2, 0x0c, 0xb1, 0x49, 0xa9, 0x84, 0x94, 0x05, 0xd5, 0x1d, 0x21, 0x12, 0x32, 0x88, 0x81, 0x25, + 0x72, 0xec, 0xc3, 0x3d, 0x51, 0xfb, 0x22, 0xdf, 0xa5, 0x6a, 0x36, 0x3e, 0x02, 0x23, 0x13, 0x42, + 0x62, 0x63, 0xe6, 0x43, 0x74, 0xac, 0x98, 0x98, 0x02, 0x4a, 0x16, 0x46, 0x94, 0x4f, 0x80, 0x7c, + 0x77, 0x4e, 0x03, 0xb2, 0x5b, 0xc1, 0x94, 0xf8, 0xde, 0xfb, 0x3d, 0x3f, 0xbf, 0x77, 0x77, 0xd0, + 0x0c, 0x09, 0x4d, 0x08, 0x75, 0x4f, 0x10, 0x65, 0x38, 0x8d, 0xdd, 0x93, 0xee, 0x10, 0xb1, 0xa0, + 0xeb, 0xb2, 0x53, 0x67, 0x94, 0x11, 0x46, 0xb4, 0x9b, 0x82, 0xe0, 0x48, 0x82, 0x23, 0x09, 0xad, + 0x66, 0x4c, 0x62, 0xc2, 0x29, 0x6e, 0xfe, 0x4f, 0xb0, 0x5b, 0x86, 0x94, 0x1b, 0x06, 0x14, 0x2d, + 0xb5, 0x42, 0x82, 0x53, 0x89, 0xef, 0x0a, 0x7c, 0x20, 0x06, 0xa5, 0xb4, 0x80, 0xee, 0x54, 0x38, + 0x29, 0x5e, 0xcc, 0x59, 0xd6, 0xcf, 0x1a, 0xdc, 0xe9, 0xd3, 0xf8, 0x30, 0x43, 0x01, 0x43, 0x2f, + 0x04, 0x74, 0x10, 0x86, 0x64, 0x9c, 0x32, 0xcd, 0x87, 0xff, 0xbf, 0xca, 0x48, 0x32, 0x08, 0xa2, + 0x28, 0x43, 0x94, 0xea, 0xa0, 0x0d, 0xec, 0x86, 0xe7, 0x2e, 0xa6, 0xe6, 0xf6, 0x24, 0x48, 0x8e, + 0x7b, 0xd6, 0x2a, 0x6a, 0x7d, 0xf9, 0xdc, 0x69, 0x4a, 0x03, 0x07, 0x62, 0xe9, 0x19, 0xcb, 0x70, + 0x1a, 0xfb, 0x9b, 0x39, 0x4d, 0x2e, 0x69, 0x4f, 0x20, 0x64, 0x64, 0xa9, 0x58, 0xe3, 0x8a, 0x9d, + 0xc5, 0xd4, 0xbc, 0x2e, 0x14, 0x2f, 0xb0, 0x6a, 0xbd, 0x06, 0x23, 0x85, 0x5a, 0x08, 0xd7, 0x82, + 0x24, 0xf7, 0xaa, 0xab, 0x6d, 0xd5, 0xde, 0xdc, 0xdb, 0x75, 0xe4, 0x44, 0x9e, 0x57, 0x11, 0xad, + 0x73, 0x48, 0x70, 0xea, 0xdd, 0x3f, 0x9b, 0x9a, 0xca, 0xa7, 0x6f, 0xa6, 0x1d, 0x63, 0x76, 0x34, + 0x1e, 0x3a, 0x21, 0x49, 0x64, 0x5e, 0xf2, 0xa7, 0x43, 0xa3, 0xd7, 0x2e, 0x9b, 0x8c, 0x10, 0xe5, + 0x03, 0xd4, 0x97, 0xd2, 0x9a, 0x03, 0x37, 0x50, 0x1a, 0x0d, 0x18, 0x4e, 0x90, 0x5e, 0x6f, 0x03, + 0x5b, 0xf5, 0xb6, 0x17, 0x53, 0x73, 0x4b, 0x18, 0x2e, 0x10, 0xcb, 0x5f, 0x47, 0x69, 0xf4, 0x1c, + 0x27, 0x48, 0xd3, 0xe1, 0x7a, 0x84, 0x8e, 0x83, 0x09, 0x8a, 0xf4, 0xff, 0xda, 0xc0, 0xde, 0xf0, + 0x8b, 0xc7, 0x5e, 0xfd, 0xc7, 0x07, 0x13, 0x58, 0xb7, 0xa1, 0x59, 0x91, 0xb8, 0x8f, 0xe8, 0x88, + 0xa4, 0x14, 0x59, 0xef, 0x6b, 0x2b, 0x9c, 0xa7, 0x28, 0xc3, 0x24, 0xc2, 0xe1, 0x1f, 0xed, 0xf4, + 0x4a, 0xdb, 0xd9, 0xa9, 0x68, 0xe7, 0xf7, 0x16, 0xf6, 0x4b, 0x5a, 0xb8, 0x51, 0xda, 0xc2, 0x6a, + 0xda, 0xfb, 0x10, 0x52, 0x16, 0x64, 0x4c, 0x44, 0xa1, 0xf2, 0x28, 0x56, 0xa6, 0x2e, 0x30, 0xcb, + 0x6f, 0xf0, 0x07, 0x1e, 0x47, 0x1f, 0x6e, 0xc9, 0x2d, 0x37, 0x18, 0xf1, 0x2f, 0xa1, 0x7a, 0x9d, + 0x97, 0x65, 0x38, 0xe5, 0x47, 0xc1, 0x11, 0x1f, 0xec, 0xd5, 0xf3, 0xc6, 0xfc, 0x6b, 0x12, 0x15, + 0x8b, 0x94, 0x67, 0xa8, 0x58, 0xf7, 0xe0, 0xdd, 0x2b, 0xf2, 0x29, 0xb2, 0xdc, 0xfb, 0x58, 0x83, + 0x6a, 0x9f, 0xc6, 0xda, 0x1b, 0x00, 0x9b, 0xa5, 0xdb, 0xdc, 0xad, 0xf2, 0x51, 0xd1, 0x52, 0xeb, + 0xe1, 0x5f, 0x0e, 0x14, 0x56, 0xb4, 0x77, 0x00, 0xde, 0xba, 0xb4, 0xd3, 0xab, 0x95, 0xcb, 0x07, + 0x5b, 0x8f, 0xfe, 0x71, 0xb0, 0xb0, 0xe6, 0x3d, 0x3e, 0x9b, 0x19, 0xe0, 0x7c, 0x66, 0x80, 0xef, + 0x33, 0x03, 0xbc, 0x9d, 0x1b, 0xca, 0xf9, 0xdc, 0x50, 0xbe, 0xce, 0x0d, 0xe5, 0x65, 0xf7, 0xd2, + 0x03, 0x73, 0xea, 0x06, 0x63, 0x76, 0xb4, 0xbc, 0x64, 0xf8, 0xf9, 0x19, 0xae, 0xf1, 0xbb, 0xe5, + 0xc1, 0xaf, 0x00, 0x00, 0x00, 0xff, 0xff, 0xe3, 0x1b, 0x2d, 0xe5, 0x0d, 0x05, 0x00, 0x00, } func (this *MsgCreateVestingAccount) Equal(that interface{}) bool { diff --git a/x/nft/genesis.pb.go b/x/nft/genesis.pb.go index 3212c3a14d2d..d9102acd9de2 100644 --- a/x/nft/genesis.pb.go +++ b/x/nft/genesis.pb.go @@ -78,8 +78,10 @@ func (m *GenesisState) GetEntries() []*Entry { // Entry Defines all nft owned by a person type Entry struct { + // owner is the owner address of the following nft Owner string `protobuf:"bytes,1,opt,name=owner,proto3" json:"owner,omitempty"` - Nfts []*NFT `protobuf:"bytes,2,rep,name=nfts,proto3" json:"nfts,omitempty"` + // nfts is a group of nfts of the same owner + Nfts []*NFT `protobuf:"bytes,2,rep,name=nfts,proto3" json:"nfts,omitempty"` } func (m *Entry) Reset() { *m = Entry{} } diff --git a/x/nft/nft.pb.go b/x/nft/nft.pb.go index 53a89503df59..468cb1e58c3a 100644 --- a/x/nft/nft.pb.go +++ b/x/nft/nft.pb.go @@ -25,11 +25,18 @@ const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package // Class defines the class of the nft type. type Class struct { - Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` - Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"` - Symbol string `protobuf:"bytes,3,opt,name=symbol,proto3" json:"symbol,omitempty"` + // id defines the unique identifier of the NFT classification, similar to the contract address of ERC721 + Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` + // name defines the human-readable name of the NFT classification + Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"` + // symbol is an abbreviated name for nft classification + Symbol string `protobuf:"bytes,3,opt,name=symbol,proto3" json:"symbol,omitempty"` + // description is a brief description of nft classification Description string `protobuf:"bytes,4,opt,name=description,proto3" json:"description,omitempty"` - Uri string `protobuf:"bytes,5,opt,name=uri,proto3" json:"uri,omitempty"` + // uri is a URI may point to a JSON file that conforms to the nft classification Metadata JSON Schema. + Uri string `protobuf:"bytes,5,opt,name=uri,proto3" json:"uri,omitempty"` + // uri_hash is a hash of the document pointed to uri + UriHash string `protobuf:"bytes,6,opt,name=uri_hash,json=uriHash,proto3" json:"uri_hash,omitempty"` } func (m *Class) Reset() { *m = Class{} } @@ -100,12 +107,25 @@ func (m *Class) GetUri() string { return "" } -// NFT defines the nft. +func (m *Class) GetUriHash() string { + if m != nil { + return m.UriHash + } + return "" +} + +// NFT defines the NFT. type NFT struct { - ClassId string `protobuf:"bytes,1,opt,name=class_id,json=classId,proto3" json:"class_id,omitempty"` - Id string `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"` - Uri string `protobuf:"bytes,3,opt,name=uri,proto3" json:"uri,omitempty"` - Data *types.Any `protobuf:"bytes,10,opt,name=data,proto3" json:"data,omitempty"` + // class_id defines the unique identifier of the NFT classification, similar to the contract address of ERC721 + ClassId string `protobuf:"bytes,1,opt,name=class_id,json=classId,proto3" json:"class_id,omitempty"` + // id defines the unique identification of NFT + Id string `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"` + // uri defines NFT's metadata storage address outside the chain + Uri string `protobuf:"bytes,3,opt,name=uri,proto3" json:"uri,omitempty"` + // uri_hash is a hash of the document pointed to uri + UriHash string `protobuf:"bytes,4,opt,name=uri_hash,json=uriHash,proto3" json:"uri_hash,omitempty"` + // data is the metadata of the NFT + Data *types.Any `protobuf:"bytes,10,opt,name=data,proto3" json:"data,omitempty"` } func (m *NFT) Reset() { *m = NFT{} } @@ -162,6 +182,13 @@ func (m *NFT) GetUri() string { return "" } +func (m *NFT) GetUriHash() string { + if m != nil { + return m.UriHash + } + return "" +} + func (m *NFT) GetData() *types.Any { if m != nil { return m.Data @@ -177,25 +204,27 @@ func init() { func init() { proto.RegisterFile("cosmos/nft/v1beta1/nft.proto", fileDescriptor_eb8ebf8e8053172c) } var fileDescriptor_eb8ebf8e8053172c = []byte{ - // 285 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x4c, 0x50, 0x3f, 0x4b, 0xc4, 0x30, - 0x1c, 0x6d, 0xda, 0xde, 0xa9, 0x39, 0x10, 0x09, 0x22, 0x39, 0x91, 0x50, 0x3a, 0x75, 0x31, 0xe1, - 0x74, 0x75, 0x51, 0x41, 0x70, 0x71, 0x38, 0x9c, 0x5c, 0x24, 0x6d, 0x7a, 0x35, 0xd8, 0x36, 0x47, - 0x93, 0xaa, 0xfd, 0x16, 0x7e, 0x2c, 0xc7, 0x1b, 0x1d, 0xa5, 0xfd, 0x22, 0xd2, 0xb4, 0x16, 0xa7, - 0xdf, 0xfb, 0xbd, 0xf7, 0x78, 0xbf, 0x3f, 0xf0, 0x2c, 0x51, 0xba, 0x50, 0x9a, 0x95, 0x1b, 0xc3, - 0xde, 0x56, 0x71, 0x6a, 0xf8, 0xaa, 0xc7, 0x74, 0x5b, 0x29, 0xa3, 0x10, 0x1a, 0x54, 0xda, 0x33, - 0xa3, 0x7a, 0xba, 0xcc, 0x94, 0xca, 0xf2, 0x94, 0x59, 0x47, 0x5c, 0x6f, 0x18, 0x2f, 0x9b, 0xc1, - 0x1e, 0xbe, 0xc3, 0xd9, 0x6d, 0xce, 0xb5, 0x46, 0x87, 0xd0, 0x95, 0x02, 0x83, 0x00, 0x44, 0x07, - 0x6b, 0x57, 0x0a, 0x84, 0xa0, 0x5f, 0xf2, 0x22, 0xc5, 0xae, 0x65, 0x2c, 0x46, 0x27, 0x70, 0xae, - 0x9b, 0x22, 0x56, 0x39, 0xf6, 0x2c, 0x3b, 0x76, 0x28, 0x80, 0x0b, 0x91, 0xea, 0xa4, 0x92, 0x5b, - 0x23, 0x55, 0x89, 0x7d, 0x2b, 0xfe, 0xa7, 0xd0, 0x11, 0xf4, 0xea, 0x4a, 0xe2, 0x99, 0x55, 0x7a, - 0x18, 0xe6, 0xd0, 0x7b, 0xb8, 0x7b, 0x44, 0x4b, 0xb8, 0x9f, 0xf4, 0xf3, 0x9f, 0xa7, 0xe1, 0x7b, - 0xb6, 0xbf, 0x17, 0xe3, 0x46, 0xee, 0xb4, 0xd1, 0x98, 0xe1, 0x4d, 0x19, 0x28, 0x82, 0xbe, 0xe0, - 0x86, 0x63, 0x18, 0x80, 0x68, 0x71, 0x71, 0x4c, 0x87, 0x33, 0xe9, 0xdf, 0x99, 0xf4, 0xba, 0x6c, - 0xd6, 0xd6, 0x71, 0x73, 0xf5, 0xd5, 0x12, 0xb0, 0x6b, 0x09, 0xf8, 0x69, 0x09, 0xf8, 0xec, 0x88, - 0xb3, 0xeb, 0x88, 0xf3, 0xdd, 0x11, 0xe7, 0x29, 0xcc, 0xa4, 0x79, 0xa9, 0x63, 0x9a, 0xa8, 0x82, - 0x8d, 0x8f, 0x1d, 0xca, 0xb9, 0x16, 0xaf, 0xec, 0xa3, 0xff, 0x6c, 0x3c, 0xb7, 0x89, 0x97, 0xbf, - 0x01, 0x00, 0x00, 0xff, 0xff, 0xf6, 0xc1, 0xa5, 0xbb, 0x7a, 0x01, 0x00, 0x00, + // 312 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x6c, 0x51, 0xc1, 0x4b, 0xfb, 0x30, + 0x18, 0x5d, 0xda, 0x6e, 0xfb, 0xfd, 0x32, 0x10, 0x09, 0x22, 0x99, 0x48, 0x18, 0x3b, 0xed, 0x62, + 0xc2, 0xf4, 0xea, 0x45, 0x05, 0xd1, 0x8b, 0x87, 0xe1, 0xc9, 0xcb, 0x48, 0x9b, 0x6e, 0x0d, 0xb6, + 0xcd, 0x68, 0x52, 0xb1, 0x7f, 0x81, 0x57, 0xf1, 0xaf, 0xf2, 0xb8, 0xa3, 0x47, 0x69, 0xff, 0x11, + 0x49, 0x5a, 0x87, 0x82, 0xa7, 0xef, 0x7d, 0xef, 0x3d, 0x1e, 0x8f, 0xef, 0x83, 0xc7, 0x91, 0xd2, + 0x99, 0xd2, 0x2c, 0x5f, 0x19, 0xf6, 0x34, 0x0f, 0x63, 0xc3, 0xe7, 0x16, 0xd3, 0x4d, 0xa1, 0x8c, + 0x42, 0xa8, 0x55, 0xa9, 0x65, 0x3a, 0xf5, 0x68, 0xbc, 0x56, 0x6a, 0x9d, 0xc6, 0xcc, 0x39, 0xc2, + 0x72, 0xc5, 0x78, 0x5e, 0xb5, 0xf6, 0xe9, 0x1b, 0x80, 0xfd, 0xab, 0x94, 0x6b, 0x8d, 0xf6, 0xa0, + 0x27, 0x05, 0x06, 0x13, 0x30, 0xfb, 0xbf, 0xf0, 0xa4, 0x40, 0x08, 0x06, 0x39, 0xcf, 0x62, 0xec, + 0x39, 0xc6, 0x61, 0x74, 0x08, 0x07, 0xba, 0xca, 0x42, 0x95, 0x62, 0xdf, 0xb1, 0xdd, 0x86, 0x26, + 0x70, 0x24, 0x62, 0x1d, 0x15, 0x72, 0x63, 0xa4, 0xca, 0x71, 0xe0, 0xc4, 0x9f, 0x14, 0xda, 0x87, + 0x7e, 0x59, 0x48, 0xdc, 0x77, 0x8a, 0x85, 0x68, 0x0c, 0xff, 0x95, 0x85, 0x5c, 0x26, 0x5c, 0x27, + 0x78, 0xe0, 0xe8, 0x61, 0x59, 0xc8, 0x1b, 0xae, 0x93, 0xe9, 0x0b, 0x80, 0xfe, 0xdd, 0xf5, 0xbd, + 0xb5, 0x44, 0xb6, 0xdb, 0x72, 0x57, 0x6c, 0xe8, 0xf6, 0x5b, 0xd1, 0xb5, 0xf5, 0x76, 0x6d, 0xbb, + 0x7c, 0xff, 0xef, 0xfc, 0xe0, 0x57, 0x3e, 0x9a, 0xc1, 0x40, 0x70, 0xc3, 0x31, 0x9c, 0x80, 0xd9, + 0xe8, 0xf4, 0x80, 0xb6, 0xe7, 0xa1, 0xdf, 0xe7, 0xa1, 0x17, 0x79, 0xb5, 0x70, 0x8e, 0xcb, 0xf3, + 0xf7, 0x9a, 0x80, 0x6d, 0x4d, 0xc0, 0x67, 0x4d, 0xc0, 0x6b, 0x43, 0x7a, 0xdb, 0x86, 0xf4, 0x3e, + 0x1a, 0xd2, 0x7b, 0x98, 0xae, 0xa5, 0x49, 0xca, 0x90, 0x46, 0x2a, 0x63, 0xdd, 0x43, 0xda, 0x71, + 0xa2, 0xc5, 0x23, 0x7b, 0xb6, 0x1f, 0x09, 0x07, 0x2e, 0xf1, 0xec, 0x2b, 0x00, 0x00, 0xff, 0xff, + 0x2e, 0x0d, 0x3c, 0x9b, 0xb2, 0x01, 0x00, 0x00, } func (m *Class) Marshal() (dAtA []byte, err error) { @@ -218,6 +247,13 @@ func (m *Class) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l + if len(m.UriHash) > 0 { + i -= len(m.UriHash) + copy(dAtA[i:], m.UriHash) + i = encodeVarintNft(dAtA, i, uint64(len(m.UriHash))) + i-- + dAtA[i] = 0x32 + } if len(m.Uri) > 0 { i -= len(m.Uri) copy(dAtA[i:], m.Uri) @@ -288,6 +324,13 @@ func (m *NFT) MarshalToSizedBuffer(dAtA []byte) (int, error) { i-- dAtA[i] = 0x52 } + if len(m.UriHash) > 0 { + i -= len(m.UriHash) + copy(dAtA[i:], m.UriHash) + i = encodeVarintNft(dAtA, i, uint64(len(m.UriHash))) + i-- + dAtA[i] = 0x22 + } if len(m.Uri) > 0 { i -= len(m.Uri) copy(dAtA[i:], m.Uri) @@ -349,6 +392,10 @@ func (m *Class) Size() (n int) { if l > 0 { n += 1 + l + sovNft(uint64(l)) } + l = len(m.UriHash) + if l > 0 { + n += 1 + l + sovNft(uint64(l)) + } return n } @@ -370,6 +417,10 @@ func (m *NFT) Size() (n int) { if l > 0 { n += 1 + l + sovNft(uint64(l)) } + l = len(m.UriHash) + if l > 0 { + n += 1 + l + sovNft(uint64(l)) + } if m.Data != nil { l = m.Data.Size() n += 1 + l + sovNft(uint64(l)) @@ -572,6 +623,38 @@ func (m *Class) Unmarshal(dAtA []byte) error { } m.Uri = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex + case 6: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field UriHash", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowNft + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthNft + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthNft + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.UriHash = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipNft(dAtA[iNdEx:]) @@ -718,6 +801,38 @@ func (m *NFT) Unmarshal(dAtA []byte) error { } m.Uri = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex + case 4: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field UriHash", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowNft + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthNft + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthNft + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.UriHash = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex case 10: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Data", wireType) diff --git a/x/nft/query.pb.go b/x/nft/query.pb.go index 6d70ce94c688..6622888491a2 100644 --- a/x/nft/query.pb.go +++ b/x/nft/query.pb.go @@ -801,7 +801,7 @@ type QueryClient interface { Balance(ctx context.Context, in *QueryBalanceRequest, opts ...grpc.CallOption) (*QueryBalanceResponse, error) // Owner queries the owner of the NFT based on its class and id, same as ownerOf in ERC721 Owner(ctx context.Context, in *QueryOwnerRequest, opts ...grpc.CallOption) (*QueryOwnerResponse, error) - // Supply queries the number of nft based on the class, same as totalSupply of ERC721 + // Supply queries the number of NFTs from the given class, same as totalSupply of ERC721. Supply(ctx context.Context, in *QuerySupplyRequest, opts ...grpc.CallOption) (*QuerySupplyResponse, error) // NFTsOfClass queries all NFTs of a given class or optional owner, similar to tokenByIndex in ERC721Enumerable NFTsOfClass(ctx context.Context, in *QueryNFTsOfClassRequest, opts ...grpc.CallOption) (*QueryNFTsOfClassResponse, error) @@ -890,7 +890,7 @@ type QueryServer interface { Balance(context.Context, *QueryBalanceRequest) (*QueryBalanceResponse, error) // Owner queries the owner of the NFT based on its class and id, same as ownerOf in ERC721 Owner(context.Context, *QueryOwnerRequest) (*QueryOwnerResponse, error) - // Supply queries the number of nft based on the class, same as totalSupply of ERC721 + // Supply queries the number of NFTs from the given class, same as totalSupply of ERC721. Supply(context.Context, *QuerySupplyRequest) (*QuerySupplyResponse, error) // NFTsOfClass queries all NFTs of a given class or optional owner, similar to tokenByIndex in ERC721Enumerable NFTsOfClass(context.Context, *QueryNFTsOfClassRequest) (*QueryNFTsOfClassResponse, error) diff --git a/x/nft/tx.pb.go b/x/nft/tx.pb.go index de57a71e124f..f2a78068a90e 100644 --- a/x/nft/tx.pb.go +++ b/x/nft/tx.pb.go @@ -29,9 +29,13 @@ const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package // MsgSend represents a message to send a nft from one account to another account. type MsgSend struct { - ClassId string `protobuf:"bytes,1,opt,name=class_id,json=classId,proto3" json:"class_id,omitempty"` - Id string `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"` - Sender string `protobuf:"bytes,3,opt,name=sender,proto3" json:"sender,omitempty"` + // class_id defines the unique identifier of the nft classification, similar to the contract address of ERC721 + ClassId string `protobuf:"bytes,1,opt,name=class_id,json=classId,proto3" json:"class_id,omitempty"` + // id defines the unique identification of nft + Id string `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"` + // sender is the address of the owner of nft + Sender string `protobuf:"bytes,3,opt,name=sender,proto3" json:"sender,omitempty"` + // receiver is the receiver address of nft Receiver string `protobuf:"bytes,4,opt,name=receiver,proto3" json:"receiver,omitempty"` } From fa0f0f117ec5a8d01a625b3fb81eeecf90e806bc Mon Sep 17 00:00:00 2001 From: Andrei Ivasko Date: Thu, 16 Sep 2021 14:23:34 +0300 Subject: [PATCH 27/34] update go.mod and protocgen.sh --- go.mod | 2 ++ scripts/protocgen.sh | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/go.mod b/go.mod index addc5a93bec5..4864e8b8a2fe 100644 --- a/go.mod +++ b/go.mod @@ -65,3 +65,5 @@ replace github.com/gogo/protobuf => github.com/regen-network/protobuf v1.3.3-alp replace github.com/tendermint/tendermint => github.com/tendermint/tendermint v0.34.12 replace github.com/99designs/keyring => github.com/cosmos/keyring v1.1.7-0.20210622111912-ef00f8ac3d76 + +replace github.com/cosmos/cosmos-proto => github.com/cosmos/cosmos-proto v0.0.0-20210720184750-6af320ed3523 diff --git a/scripts/protocgen.sh b/scripts/protocgen.sh index fd0a69746911..315e0df182d0 100755 --- a/scripts/protocgen.sh +++ b/scripts/protocgen.sh @@ -8,7 +8,7 @@ protoc_gen_gocosmos() { return 1 fi - go get github.com/regen-network/cosmos-proto/protoc-gen-gocosmos@latest 2>/dev/null + go get github.com/cosmos/cosmos-proto/protoc-gen-gocosmos@latest 2>/dev/null } protoc_gen_gocosmos @@ -35,7 +35,7 @@ buf protoc \ go mod tidy # generate codec/testdata proto code -buf protoc -I "proto" -I "third_party/proto" -I "testutil/testdata" --gocosmos_out=plugins=grpc,\ +buf protoc -I "proto" -I "third_party/proto" -I "testutil/testdata" --gocosmos_out=plugins=interfacetype+grpc,\ Mgoogle/protobuf/any.proto=github.com/cosmos/cosmos-sdk/codec/types:. ./testutil/testdata/*.proto # move proto files to the right places From 0532c9213d894f1581c022460f9eedd4c966bb2d Mon Sep 17 00:00:00 2001 From: Andrei Ivasko Date: Thu, 16 Sep 2021 14:27:41 +0300 Subject: [PATCH 28/34] remove interfacetype from protocgen.sh --- scripts/protocgen.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/protocgen.sh b/scripts/protocgen.sh index 315e0df182d0..40d7b5d22518 100755 --- a/scripts/protocgen.sh +++ b/scripts/protocgen.sh @@ -35,7 +35,7 @@ buf protoc \ go mod tidy # generate codec/testdata proto code -buf protoc -I "proto" -I "third_party/proto" -I "testutil/testdata" --gocosmos_out=plugins=interfacetype+grpc,\ +buf protoc -I "proto" -I "third_party/proto" -I "testutil/testdata" --gocosmos_out=plugins=grpc,\ Mgoogle/protobuf/any.proto=github.com/cosmos/cosmos-sdk/codec/types:. ./testutil/testdata/*.proto # move proto files to the right places From acf2615a4d0ccf59b89dddf58f81e37ea515ec72 Mon Sep 17 00:00:00 2001 From: Andrei Ivasko Date: Thu, 16 Sep 2021 14:49:25 +0300 Subject: [PATCH 29/34] scripts/protocgen.sh --- scripts/protocgen.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/protocgen.sh b/scripts/protocgen.sh index 40d7b5d22518..fd0a69746911 100755 --- a/scripts/protocgen.sh +++ b/scripts/protocgen.sh @@ -8,7 +8,7 @@ protoc_gen_gocosmos() { return 1 fi - go get github.com/cosmos/cosmos-proto/protoc-gen-gocosmos@latest 2>/dev/null + go get github.com/regen-network/cosmos-proto/protoc-gen-gocosmos@latest 2>/dev/null } protoc_gen_gocosmos From 7a3123d3d19ad88275da0b171aaa71adbb639ea7 Mon Sep 17 00:00:00 2001 From: Andrei Ivasko Date: Thu, 16 Sep 2021 14:53:43 +0300 Subject: [PATCH 30/34] make test-all works properly --- go.mod | 4 +--- go.sum | 4 ++-- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/go.mod b/go.mod index 4864e8b8a2fe..e277a1a863c7 100644 --- a/go.mod +++ b/go.mod @@ -10,7 +10,7 @@ require ( github.com/btcsuite/btcutil v1.0.3-0.20201208143702-a53e38424cce github.com/coinbase/rosetta-sdk-go v0.6.10 github.com/confio/ics23/go v0.6.6 - github.com/cosmos/cosmos-proto v0.0.0-20210720184750-6af320ed3523 + github.com/cosmos/cosmos-proto v0.0.0-20210914142853-23ed61ac79ce github.com/cosmos/go-bip39 v1.0.0 github.com/cosmos/iavl v0.17.1 github.com/cosmos/ledger-cosmos-go v0.11.1 @@ -65,5 +65,3 @@ replace github.com/gogo/protobuf => github.com/regen-network/protobuf v1.3.3-alp replace github.com/tendermint/tendermint => github.com/tendermint/tendermint v0.34.12 replace github.com/99designs/keyring => github.com/cosmos/keyring v1.1.7-0.20210622111912-ef00f8ac3d76 - -replace github.com/cosmos/cosmos-proto => github.com/cosmos/cosmos-proto v0.0.0-20210720184750-6af320ed3523 diff --git a/go.sum b/go.sum index c679754ee4a0..c9eb3ed60a56 100644 --- a/go.sum +++ b/go.sum @@ -157,8 +157,8 @@ github.com/coreos/go-systemd v0.0.0-20190321100706-95778dfbb74e/go.mod h1:F5haX7 github.com/coreos/go-systemd/v22 v22.3.2/go.mod h1:Y58oyj3AT4RCenI/lSvhwexgC+NSVTIJ3seZv2GcEnc= github.com/coreos/pkg v0.0.0-20160727233714-3ac0863d7acf/go.mod h1:E3G3o1h8I7cfcXa63jLwjI0eiQQMgzzUDFVpN/nH/eA= github.com/coreos/pkg v0.0.0-20180928190104-399ea9e2e55f/go.mod h1:E3G3o1h8I7cfcXa63jLwjI0eiQQMgzzUDFVpN/nH/eA= -github.com/cosmos/cosmos-proto v0.0.0-20210720184750-6af320ed3523 h1:JyrkE8NX6q+SGRQ8B9wgDeE4ecDPfWAxAdHtPwVRVZg= -github.com/cosmos/cosmos-proto v0.0.0-20210720184750-6af320ed3523/go.mod h1:g2Q3cd94kOBVRAv7ahdtO27yUc4cpNuHGnI40qanl1k= +github.com/cosmos/cosmos-proto v0.0.0-20210914142853-23ed61ac79ce h1:nin7WtIMETZ8LezEYa5e9/iqyEgQka1x0cQYqgUeTGM= +github.com/cosmos/cosmos-proto v0.0.0-20210914142853-23ed61ac79ce/go.mod h1:g2Q3cd94kOBVRAv7ahdtO27yUc4cpNuHGnI40qanl1k= github.com/cosmos/go-bip39 v0.0.0-20180819234021-555e2067c45d/go.mod h1:tSxLoYXyBmiFeKpvmq4dzayMdCjCnu8uqmCysIGBT2Y= github.com/cosmos/go-bip39 v1.0.0 h1:pcomnQdrdH22njcAatO0yWojsUnCO3y2tNoV1cb6hHY= github.com/cosmos/go-bip39 v1.0.0/go.mod h1:RNJv0H/pOIVgxw6KS7QeX2a0Uo0aKUlfhZ4xuwvCdJw= From 41f81dea95517c35e293249f0ea8f2e567ce7f52 Mon Sep 17 00:00:00 2001 From: Andrei Ivasko Date: Sat, 18 Sep 2021 15:09:23 +0300 Subject: [PATCH 31/34] add changelog entry --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 75fbea1283e7..1252b77478e0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -39,6 +39,7 @@ Ref: https://keepachangelog.com/en/1.0.0/ ### Features +* [\#9933](https://github.com/cosmos/cosmos-sdk/pull/9933) Introduces the notion of a Cosmos "Scalar" type, which would just be simple aliases that give human-understable meaning to the underlying type, both in Go code and in Proto definitions. * [\#9884](https://github.com/cosmos/cosmos-sdk/pull/9884) Provide a new gRPC query handler, `/cosmos/params/v1beta1/subspaces`, that allows the ability to query for all registered subspaces and their respective keys. * [\#9860](https://github.com/cosmos/cosmos-sdk/pull/9860) Emit transaction fee in ante handler fee decorator. The event type is `tx` and the attribute is `fee`. * [\#9776](https://github.com/cosmos/cosmos-sdk/pull/9776) Add flag `staking-bond-denom` to specify the staking bond denomination value when initializing a new chain. From aa7e5298bb6e5785d5853a0a51991b95e1246f45 Mon Sep 17 00:00:00 2001 From: Andrei Ivasko Date: Mon, 20 Sep 2021 14:57:50 +0300 Subject: [PATCH 32/34] Update scripts/protocgen.sh Co-authored-by: Amaury <1293565+amaurym@users.noreply.github.com> --- scripts/protocgen.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/protocgen.sh b/scripts/protocgen.sh index fd0a69746911..c31da1d47c9e 100755 --- a/scripts/protocgen.sh +++ b/scripts/protocgen.sh @@ -18,7 +18,7 @@ for dir in $proto_dirs; do buf protoc \ -I "proto" \ -I "third_party/proto" \ - --gocosmos_out=plugins=grpc,\ + --gocosmos_out=plugins=grpc,\ Mgoogle/protobuf/any.proto=github.com/cosmos/cosmos-sdk/codec/types:. \ --grpc-gateway_out=logtostderr=true,allow_colon_final_segments=true:. \ $(find "${dir}" -maxdepth 1 -name '*.proto') From c4213124a21753c6ea177eddee6d13084ff55c16 Mon Sep 17 00:00:00 2001 From: Andrei Ivasko Date: Mon, 20 Sep 2021 14:58:40 +0300 Subject: [PATCH 33/34] add comments to cosmos.proto --- third_party/proto/cosmos_proto/cosmos.proto | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/third_party/proto/cosmos_proto/cosmos.proto b/third_party/proto/cosmos_proto/cosmos.proto index e6c42c623d57..641ae4639cfe 100644 --- a/third_party/proto/cosmos_proto/cosmos.proto +++ b/third_party/proto/cosmos_proto/cosmos.proto @@ -6,11 +6,13 @@ import "google/protobuf/descriptor.proto"; option go_package = "github.com/cosmos/cosmos-proto"; extend google.protobuf.MessageOptions { + // implements_interface is used to annotate interface implementations string implements_interface = 93001; } extend google.protobuf.FieldOptions { + // accepts_interface is used to annote fields that accept interfaces string accepts_interface = 93001; - + // scalar is used to define scalar types string scalar = 93002; -} +} \ No newline at end of file From d1ed91ccf925ac52d2634e1478ab901543d251f4 Mon Sep 17 00:00:00 2001 From: Amaury <1293565+amaurym@users.noreply.github.com> Date: Tue, 21 Sep 2021 11:36:47 +0200 Subject: [PATCH 34/34] Update CHANGELOG.md Co-authored-by: atheeshp <59333759+atheeshp@users.noreply.github.com> --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 95e86bc088c2..071922a343ee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -39,7 +39,7 @@ Ref: https://keepachangelog.com/en/1.0.0/ ### Features -* [\#9933](https://github.com/cosmos/cosmos-sdk/pull/9933) Introduces the notion of a Cosmos "Scalar" type, which would just be simple aliases that give human-understable meaning to the underlying type, both in Go code and in Proto definitions. +* [\#9933](https://github.com/cosmos/cosmos-sdk/pull/9933) Introduces the notion of a Cosmos "Scalar" type, which would just be simple aliases that give human-understandable meaning to the underlying type, both in Go code and in Proto definitions. * [\#9884](https://github.com/cosmos/cosmos-sdk/pull/9884) Provide a new gRPC query handler, `/cosmos/params/v1beta1/subspaces`, that allows the ability to query for all registered subspaces and their respective keys. * [\#9860](https://github.com/cosmos/cosmos-sdk/pull/9860) Emit transaction fee in ante handler fee decorator. The event type is `tx` and the attribute is `fee`. * [\#9776](https://github.com/cosmos/cosmos-sdk/pull/9776) Add flag `staking-bond-denom` to specify the staking bond denomination value when initializing a new chain.