From 884574d59e8448d60f816b347e33871257f726e1 Mon Sep 17 00:00:00 2001 From: Duong Minh Ngoc <153509244+minhngoc274@users.noreply.github.com> Date: Fri, 8 Mar 2024 07:45:26 +0700 Subject: [PATCH] feat: add title and description to msg incentive pool send (#1255) * add title and description to msg incentive pool send * rebase main --- docs/swagger.yml | 24 ++- proto/quicksilver/airdrop/v1/messages.proto | 2 + x/airdrop/keeper/msg_server_test.go | 16 +- x/airdrop/types/messages.pb.go | 180 +++++++++++++++----- x/interchainquery/types/messages.pb.go | 8 +- x/interchainstaking/types/messages.pb.go | 34 ++-- x/participationrewards/types/messages.pb.go | 64 +++---- 7 files changed, 220 insertions(+), 108 deletions(-) diff --git a/docs/swagger.yml b/docs/swagger.yml index 321e4855e..5090e6577 100644 --- a/docs/swagger.yml +++ b/docs/swagger.yml @@ -159,6 +159,10 @@ paths: method signatures required by gogoproto. + title: + type: string + description: + type: string description: >- MsgIncentivePoolSpend represents a message to send coins from one account to another. @@ -1647,7 +1651,10 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely + used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) @@ -1692,6 +1699,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -1731,7 +1742,6 @@ paths: name "y.z". - JSON ==== @@ -1958,7 +1968,10 @@ paths: protobuf release, and it is not used for type URLs beginning with - type.googleapis.com. + type.googleapis.com. As of May 2023, there are no widely + used type server + + implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) @@ -2003,6 +2016,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -2042,7 +2059,6 @@ paths: name "y.z". - JSON ==== diff --git a/proto/quicksilver/airdrop/v1/messages.proto b/proto/quicksilver/airdrop/v1/messages.proto index 43b1354a7..594111915 100644 --- a/proto/quicksilver/airdrop/v1/messages.proto +++ b/proto/quicksilver/airdrop/v1/messages.proto @@ -59,6 +59,8 @@ message MsgIncentivePoolSpend { (gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins" ]; + string title = 4; + string description = 5; } // MsgIncentivePoolSpendResponse defines the MsgIncentivePoolSpend response type. diff --git a/x/airdrop/keeper/msg_server_test.go b/x/airdrop/keeper/msg_server_test.go index 93120962b..279fb7df6 100644 --- a/x/airdrop/keeper/msg_server_test.go +++ b/x/airdrop/keeper/msg_server_test.go @@ -514,9 +514,11 @@ func (suite *KeeperTestSuite) Test_msgServer_IncentivePoolSpend() { name: "invalid authority", malleate: func() { msg = types.MsgIncentivePoolSpend{ - Authority: "invalid", - ToAddress: userAddress, - Amount: coins, + Authority: "invalid", + ToAddress: userAddress, + Amount: coins, + Title: "Invalid Incentive Pool Spend Title", + Description: "Invalid Incentive Pool Spend Description", } }, want: nil, @@ -526,9 +528,11 @@ func (suite *KeeperTestSuite) Test_msgServer_IncentivePoolSpend() { name: "valid", malleate: func() { msg = types.MsgIncentivePoolSpend{ - Authority: modAccAddr, - ToAddress: userAddress, - Amount: coins, + Authority: modAccAddr, + ToAddress: userAddress, + Amount: coins, + Title: "Valid Incentive Pool Spend Title", + Description: "Valid Incentive Pool Spend Description", } }, want: &types.MsgIncentivePoolSpendResponse{}, diff --git a/x/airdrop/types/messages.pb.go b/x/airdrop/types/messages.pb.go index 04c0d1a38..3509cf722 100644 --- a/x/airdrop/types/messages.pb.go +++ b/x/airdrop/types/messages.pb.go @@ -113,9 +113,11 @@ var xxx_messageInfo_MsgClaimResponse proto.InternalMessageInfo // MsgIncentivePoolSpend represents a message to send coins from one account to another. type MsgIncentivePoolSpend struct { - Authority string `protobuf:"bytes,1,opt,name=authority,proto3" json:"authority,omitempty"` - ToAddress string `protobuf:"bytes,2,opt,name=to_address,json=toAddress,proto3" json:"to_address,omitempty"` - Amount github_com_cosmos_cosmos_sdk_types.Coins `protobuf:"bytes,3,rep,name=amount,proto3,castrepeated=github.com/cosmos/cosmos-sdk/types.Coins" json:"amount"` + Authority string `protobuf:"bytes,1,opt,name=authority,proto3" json:"authority,omitempty"` + ToAddress string `protobuf:"bytes,2,opt,name=to_address,json=toAddress,proto3" json:"to_address,omitempty"` + Amount github_com_cosmos_cosmos_sdk_types.Coins `protobuf:"bytes,3,rep,name=amount,proto3,castrepeated=github.com/cosmos/cosmos-sdk/types.Coins" json:"amount"` + Title string `protobuf:"bytes,4,opt,name=title,proto3" json:"title,omitempty"` + Description string `protobuf:"bytes,5,opt,name=description,proto3" json:"description,omitempty"` } func (m *MsgIncentivePoolSpend) Reset() { *m = MsgIncentivePoolSpend{} } @@ -200,48 +202,50 @@ func init() { } var fileDescriptor_2b0828c7de1949a1 = []byte{ - // 654 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x54, 0xbb, 0x6f, 0x13, 0x4f, - 0x10, 0xf6, 0xd9, 0xf9, 0xe5, 0xb1, 0x3f, 0xf1, 0x3a, 0x42, 0x70, 0x2c, 0xf0, 0x59, 0x87, 0x22, - 0x19, 0x23, 0xdf, 0xc5, 0xe1, 0x11, 0xc9, 0x1d, 0x0e, 0x4d, 0x8a, 0xa0, 0xe0, 0x74, 0x34, 0xd6, - 0xfa, 0x6e, 0xd9, 0xac, 0xe2, 0xdb, 0x39, 0x6e, 0xd7, 0x56, 0x42, 0x85, 0x22, 0x21, 0x51, 0x22, - 0xf1, 0x0f, 0xa4, 0xa6, 0xa2, 0x40, 0xf4, 0x74, 0x29, 0x23, 0x68, 0xa8, 0x0c, 0x4a, 0x90, 0xa0, - 0xce, 0x5f, 0x80, 0x6e, 0x6f, 0xcf, 0x39, 0x8b, 0x90, 0x88, 0xca, 0x7b, 0x33, 0xdf, 0x37, 0x8f, - 0x6f, 0x66, 0x8c, 0x16, 0x9e, 0xf7, 0x99, 0xb7, 0x25, 0x58, 0x6f, 0x40, 0x22, 0x17, 0xb3, 0xc8, - 0x8f, 0x20, 0x74, 0x07, 0x0d, 0x37, 0x20, 0x42, 0x60, 0x4a, 0x84, 0x13, 0x46, 0x20, 0xc1, 0x9c, - 0xcb, 0xc0, 0x1c, 0x0d, 0x73, 0x06, 0x8d, 0x52, 0xd9, 0x03, 0x11, 0x80, 0x70, 0xbb, 0x58, 0x10, - 0x77, 0xd0, 0xe8, 0x12, 0x89, 0x1b, 0xae, 0x07, 0x8c, 0x27, 0xbc, 0xd2, 0x75, 0xed, 0x0f, 0x04, - 0x55, 0x51, 0x05, 0xd5, 0x8e, 0xf9, 0xc4, 0xd1, 0x51, 0x5f, 0x6e, 0xf2, 0xa1, 0x5d, 0xb3, 0x14, - 0x28, 0x24, 0xf6, 0xf8, 0xa5, 0xad, 0x37, 0x28, 0x00, 0xed, 0x11, 0x17, 0x87, 0xcc, 0xc5, 0x9c, - 0x83, 0xc4, 0x92, 0x01, 0x4f, 0x39, 0x8b, 0xd9, 0x36, 0xbc, 0x1e, 0x66, 0x81, 0x08, 0x30, 0xc7, - 0x94, 0x44, 0x71, 0xda, 0x31, 0x43, 0xc2, 0xb0, 0x5f, 0xe5, 0xd1, 0xf4, 0x9a, 0xa0, 0x2b, 0xb1, - 0xcb, 0x74, 0xd0, 0xb4, 0xb7, 0x89, 0x19, 0xef, 0x30, 0xbf, 0x68, 0x54, 0x8c, 0xea, 0x4c, 0xeb, - 0xea, 0xf1, 0xd0, 0xba, 0xb4, 0x83, 0x83, 0x5e, 0xd3, 0x4e, 0x3d, 0x76, 0x7b, 0x4a, 0x3d, 0x57, - 0x7d, 0xf3, 0x36, 0x9a, 0xc4, 0x5e, 0x9c, 0xbf, 0x98, 0xaf, 0x18, 0xd5, 0x42, 0xeb, 0xca, 0xf1, - 0xd0, 0xba, 0x90, 0xa0, 0x13, 0xbb, 0xdd, 0xd6, 0x00, 0xf3, 0x11, 0x9a, 0xc2, 0xbe, 0x1f, 0x11, - 0x21, 0x8a, 0x05, 0x15, 0xb9, 0x76, 0x3c, 0xb4, 0x2e, 0x6a, 0x6c, 0xe2, 0xb0, 0x3f, 0x7f, 0xa8, - 0xcf, 0x6a, 0x09, 0x1e, 0x26, 0xa6, 0x0d, 0x19, 0x31, 0x4e, 0xdb, 0x29, 0xd5, 0x7c, 0x8c, 0x26, - 0xc3, 0x08, 0xe0, 0x99, 0x28, 0x4e, 0x54, 0x0a, 0xd5, 0xff, 0x97, 0x6e, 0x39, 0xd9, 0x81, 0x8c, - 0xf7, 0x37, 0x68, 0x38, 0xeb, 0x31, 0x36, 0x5b, 0x55, 0x42, 0xb6, 0xdb, 0x3a, 0x4a, 0x73, 0xfa, - 0xf5, 0x9e, 0x95, 0xfb, 0xb5, 0x67, 0xe5, 0xec, 0x15, 0x74, 0x39, 0x95, 0xa1, 0x4d, 0x44, 0x08, - 0x5c, 0x10, 0xd5, 0x5e, 0x00, 0x7d, 0x2e, 0x95, 0x18, 0x13, 0x63, 0xed, 0x29, 0x7b, 0xdc, 0x9e, - 0x7a, 0x34, 0x27, 0xe2, 0x40, 0xb1, 0x98, 0xd7, 0xd6, 0x04, 0x5d, 0xe5, 0x1e, 0xe1, 0x92, 0x0d, - 0xc8, 0x3a, 0x40, 0x6f, 0x23, 0x24, 0xdc, 0x37, 0x1f, 0xa0, 0x19, 0xdc, 0x97, 0x9b, 0x10, 0x31, - 0xb9, 0xa3, 0xa5, 0x2d, 0xfe, 0xb5, 0xdd, 0x13, 0xa8, 0xb9, 0x8c, 0x90, 0x84, 0x4e, 0xaa, 0x5c, - 0xfe, 0x3c, 0xa2, 0x04, 0x6d, 0x30, 0xbd, 0x51, 0xed, 0x05, 0xa5, 0xd4, 0xbc, 0xa3, 0x19, 0xf1, - 0x8a, 0x3a, 0x7a, 0x45, 0x9d, 0x15, 0x60, 0xbc, 0xb5, 0xb8, 0x3f, 0xb4, 0x72, 0xef, 0xbe, 0x59, - 0x55, 0xca, 0xe4, 0x66, 0xbf, 0xeb, 0x78, 0x10, 0xe8, 0x4d, 0xd4, 0x3f, 0x75, 0xe1, 0x6f, 0xb9, - 0x72, 0x27, 0x24, 0x42, 0x11, 0xc4, 0xa8, 0xeb, 0xb9, 0x54, 0xbe, 0xdd, 0x9f, 0xef, 0x6b, 0x27, - 0x55, 0xdb, 0x16, 0xba, 0x79, 0xaa, 0x0c, 0xa9, 0xb2, 0x4b, 0x9f, 0xf2, 0xa8, 0xb0, 0x26, 0xa8, - 0xf9, 0xd2, 0x40, 0xff, 0x25, 0xab, 0x57, 0x71, 0x4e, 0x3f, 0x2d, 0x27, 0x9d, 0x4a, 0xa9, 0x7a, - 0x1e, 0x22, 0x8d, 0x6e, 0xdf, 0xd9, 0xfd, 0xf2, 0xe3, 0x6d, 0x7e, 0xc1, 0xae, 0xb8, 0xd9, 0x73, - 0x90, 0xdb, 0xf1, 0x0d, 0xa4, 0xb7, 0xad, 0x76, 0xa5, 0x69, 0xd4, 0xcc, 0x8f, 0x06, 0x32, 0x4f, - 0x19, 0x58, 0xfd, 0x8c, 0x6c, 0x7f, 0xc2, 0x4b, 0xf7, 0xff, 0x09, 0x3e, 0xaa, 0xb4, 0xa9, 0x2a, - 0xbd, 0x67, 0xbb, 0x67, 0x54, 0xca, 0x52, 0x7a, 0x27, 0x04, 0xe8, 0x75, 0x44, 0x1c, 0xa0, 0x69, - 0xd4, 0x5a, 0x4f, 0xf6, 0x0f, 0xcb, 0xc6, 0xc1, 0x61, 0xd9, 0xf8, 0x7e, 0x58, 0x36, 0xde, 0x1c, - 0x95, 0x73, 0x07, 0x47, 0xe5, 0xdc, 0xd7, 0xa3, 0x72, 0xee, 0xe9, 0x72, 0x66, 0x90, 0x99, 0xb8, - 0xf5, 0x17, 0xc0, 0xc9, 0x58, 0xa2, 0xed, 0x51, 0x12, 0x35, 0xdd, 0xee, 0xa4, 0xfa, 0x4f, 0xb8, - 0xfb, 0x3b, 0x00, 0x00, 0xff, 0xff, 0xd7, 0xb2, 0xd0, 0x7c, 0x0e, 0x05, 0x00, 0x00, + // 684 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x54, 0xbd, 0x6f, 0xd3, 0x4e, + 0x18, 0x8e, 0x93, 0xf4, 0xeb, 0xaa, 0xdf, 0x07, 0xa6, 0x94, 0x34, 0x02, 0x3b, 0x32, 0xaa, 0x14, + 0x8a, 0x62, 0x37, 0xe5, 0xa3, 0x52, 0x36, 0x52, 0x96, 0x0e, 0x45, 0x25, 0xdd, 0x58, 0xa2, 0x8b, + 0x7d, 0xb8, 0xa7, 0xda, 0xf7, 0x1a, 0xdf, 0x25, 0x6a, 0x99, 0x50, 0x25, 0x24, 0x46, 0x24, 0xfe, + 0x81, 0xce, 0x4c, 0x0c, 0x88, 0x8d, 0x81, 0xad, 0x63, 0x05, 0x0b, 0x53, 0x40, 0x2d, 0x12, 0xcc, + 0xfd, 0x0b, 0x90, 0xcf, 0xe7, 0xd6, 0x11, 0xa5, 0x15, 0x93, 0xef, 0xde, 0xf7, 0x79, 0xbf, 0x9e, + 0xf7, 0x39, 0xa3, 0xf9, 0xa7, 0x7d, 0xea, 0x6e, 0x71, 0x1a, 0x0c, 0x48, 0xec, 0x60, 0x1a, 0x7b, + 0x31, 0x44, 0xce, 0xa0, 0xe9, 0x84, 0x84, 0x73, 0xec, 0x13, 0x6e, 0x47, 0x31, 0x08, 0xd0, 0x67, + 0x73, 0x30, 0x5b, 0xc1, 0xec, 0x41, 0xb3, 0x6a, 0xb8, 0xc0, 0x43, 0xe0, 0x4e, 0x0f, 0x73, 0xe2, + 0x0c, 0x9a, 0x3d, 0x22, 0x70, 0xd3, 0x71, 0x81, 0xb2, 0x34, 0xae, 0x7a, 0x55, 0xf9, 0x43, 0xee, + 0xcb, 0xac, 0xdc, 0x57, 0x8e, 0xb9, 0xd4, 0xd1, 0x95, 0x37, 0x27, 0xbd, 0x28, 0xd7, 0x8c, 0x0f, + 0x3e, 0xa4, 0xf6, 0xe4, 0xa4, 0xac, 0xd7, 0x7c, 0x00, 0x3f, 0x20, 0x0e, 0x8e, 0xa8, 0x83, 0x19, + 0x03, 0x81, 0x05, 0x05, 0x96, 0xc5, 0x2c, 0xe6, 0xc7, 0x70, 0x03, 0x4c, 0x43, 0x1e, 0x62, 0x86, + 0x7d, 0x12, 0x27, 0x65, 0x47, 0x0c, 0x69, 0x84, 0xf5, 0xa2, 0x88, 0x26, 0xd7, 0xb8, 0xbf, 0x92, + 0xb8, 0x74, 0x1b, 0x4d, 0xba, 0x9b, 0x98, 0xb2, 0x2e, 0xf5, 0x2a, 0x5a, 0x4d, 0xab, 0x4f, 0xb5, + 0x2f, 0x1f, 0x0f, 0xcd, 0xff, 0x76, 0x70, 0x18, 0xb4, 0xac, 0xcc, 0x63, 0x75, 0x26, 0xe4, 0x71, + 0xd5, 0xd3, 0x6f, 0xa2, 0x71, 0xec, 0x26, 0xf5, 0x2b, 0xc5, 0x9a, 0x56, 0x2f, 0xb5, 0x2f, 0x1d, + 0x0f, 0xcd, 0x7f, 0x52, 0x74, 0x6a, 0xb7, 0x3a, 0x0a, 0xa0, 0x3f, 0x40, 0x13, 0xd8, 0xf3, 0x62, + 0xc2, 0x79, 0xa5, 0x24, 0x33, 0x2f, 0x1c, 0x0f, 0xcd, 0x7f, 0x15, 0x36, 0x75, 0x58, 0x9f, 0xde, + 0x35, 0x66, 0x14, 0x05, 0xf7, 0x53, 0xd3, 0x86, 0x88, 0x29, 0xf3, 0x3b, 0x59, 0xa8, 0xfe, 0x10, + 0x8d, 0x47, 0x31, 0xc0, 0x13, 0x5e, 0x29, 0xd7, 0x4a, 0xf5, 0xe9, 0xa5, 0x1b, 0x76, 0x7e, 0x21, + 0xa3, 0xf3, 0x0d, 0x9a, 0xf6, 0x7a, 0x82, 0xcd, 0x77, 0x95, 0x06, 0x5b, 0x1d, 0x95, 0xa5, 0x35, + 0xf9, 0x72, 0xcf, 0x2c, 0xfc, 0xdc, 0x33, 0x0b, 0xd6, 0x0a, 0xfa, 0x3f, 0xa3, 0xa1, 0x43, 0x78, + 0x04, 0x8c, 0x13, 0x39, 0x5e, 0x08, 0x7d, 0x26, 0x24, 0x19, 0xe5, 0x91, 0xf1, 0xa4, 0x3d, 0x19, + 0x4f, 0x1e, 0x5a, 0xe5, 0x24, 0x91, 0xf5, 0xa1, 0x88, 0xae, 0xac, 0x71, 0x7f, 0x95, 0xb9, 0x84, + 0x09, 0x3a, 0x20, 0xeb, 0x00, 0xc1, 0x46, 0x44, 0x98, 0xa7, 0xdf, 0x43, 0x53, 0xb8, 0x2f, 0x36, + 0x21, 0xa6, 0x62, 0x47, 0x51, 0x5b, 0xf9, 0xe3, 0xb8, 0xa7, 0x50, 0x7d, 0x19, 0x21, 0x01, 0xdd, + 0x8c, 0xb9, 0xe2, 0x45, 0x81, 0x02, 0x94, 0x41, 0x77, 0x4f, 0x7a, 0x2f, 0x49, 0xa6, 0xe6, 0x6c, + 0x15, 0x91, 0x48, 0xd4, 0x56, 0x12, 0xb5, 0x57, 0x80, 0xb2, 0xf6, 0xe2, 0xfe, 0xd0, 0x2c, 0xbc, + 0xf9, 0x6a, 0xd6, 0x7d, 0x2a, 0x36, 0xfb, 0x3d, 0xdb, 0x85, 0x50, 0x29, 0x51, 0x7d, 0x1a, 0xdc, + 0xdb, 0x72, 0xc4, 0x4e, 0x44, 0xb8, 0x0c, 0xe0, 0xd9, 0xd4, 0xfa, 0x0c, 0x1a, 0x13, 0x54, 0x04, + 0xa4, 0x52, 0x4e, 0x1a, 0xeb, 0xa4, 0x17, 0xbd, 0x86, 0xa6, 0x3d, 0xc2, 0xdd, 0x98, 0x46, 0x52, + 0x1a, 0x63, 0xd2, 0x97, 0x37, 0xb5, 0x66, 0x33, 0xda, 0x77, 0x7f, 0xbc, 0x5d, 0x38, 0x9d, 0xd6, + 0x32, 0xd1, 0xf5, 0x33, 0xe9, 0xcb, 0x36, 0xb2, 0xf4, 0xb1, 0x88, 0x4a, 0x6b, 0xdc, 0xd7, 0x9f, + 0x6b, 0x68, 0x2c, 0x95, 0x6c, 0xcd, 0x3e, 0xfb, 0x49, 0xda, 0xd9, 0x36, 0xab, 0xf5, 0x8b, 0x10, + 0x59, 0x76, 0xeb, 0xd6, 0xee, 0xe7, 0xef, 0xaf, 0x8b, 0xf3, 0x2d, 0x6d, 0xc1, 0xaa, 0x39, 0xf9, + 0x97, 0x24, 0xb6, 0x93, 0xe7, 0x93, 0xfd, 0x16, 0xa4, 0xcc, 0xf4, 0xf7, 0x1a, 0xd2, 0xcf, 0x58, + 0x74, 0xe3, 0x9c, 0x6a, 0xbf, 0xc3, 0xab, 0x77, 0xff, 0x0a, 0x7e, 0xd2, 0x69, 0x4b, 0x76, 0x7a, + 0x27, 0xe9, 0xd4, 0x39, 0xa7, 0x53, 0x9a, 0x65, 0xe8, 0x46, 0x00, 0x41, 0x97, 0x27, 0x39, 0xda, + 0x8f, 0xf6, 0x0f, 0x0d, 0xed, 0xe0, 0xd0, 0xd0, 0xbe, 0x1d, 0x1a, 0xda, 0xab, 0x23, 0xa3, 0x70, + 0x70, 0x64, 0x14, 0xbe, 0x1c, 0x19, 0x85, 0xc7, 0xcb, 0x39, 0x01, 0xe4, 0x92, 0x36, 0x9e, 0x01, + 0x23, 0x23, 0x55, 0xb6, 0x4f, 0x2a, 0x48, 0x55, 0xf4, 0xc6, 0xe5, 0xbf, 0xe4, 0xf6, 0xaf, 0x00, + 0x00, 0x00, 0xff, 0xff, 0x39, 0xec, 0x3d, 0x88, 0x46, 0x05, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -464,6 +468,20 @@ func (m *MsgIncentivePoolSpend) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l + if len(m.Description) > 0 { + i -= len(m.Description) + copy(dAtA[i:], m.Description) + i = encodeVarintMessages(dAtA, i, uint64(len(m.Description))) + i-- + dAtA[i] = 0x2a + } + if len(m.Title) > 0 { + i -= len(m.Title) + copy(dAtA[i:], m.Title) + i = encodeVarintMessages(dAtA, i, uint64(len(m.Title))) + i-- + dAtA[i] = 0x22 + } if len(m.Amount) > 0 { for iNdEx := len(m.Amount) - 1; iNdEx >= 0; iNdEx-- { { @@ -587,6 +605,14 @@ func (m *MsgIncentivePoolSpend) Size() (n int) { n += 1 + l + sovMessages(uint64(l)) } } + l = len(m.Title) + if l > 0 { + n += 1 + l + sovMessages(uint64(l)) + } + l = len(m.Description) + if l > 0 { + n += 1 + l + sovMessages(uint64(l)) + } return n } @@ -968,6 +994,70 @@ func (m *MsgIncentivePoolSpend) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex + case 4: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Title", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowMessages + } + 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 ErrInvalidLengthMessages + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthMessages + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Title = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 5: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Description", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowMessages + } + 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 ErrInvalidLengthMessages + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthMessages + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Description = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipMessages(dAtA[iNdEx:]) diff --git a/x/interchainquery/types/messages.pb.go b/x/interchainquery/types/messages.pb.go index 5723a80ef..1b170fce0 100644 --- a/x/interchainquery/types/messages.pb.go +++ b/x/interchainquery/types/messages.pb.go @@ -149,12 +149,12 @@ var fileDescriptor_0640fcbc3e895a79 = []byte{ 0x82, 0x9d, 0x94, 0xce, 0xa4, 0x76, 0xf9, 0xcd, 0xd4, 0x2b, 0xbc, 0x9f, 0x7a, 0xe0, 0xe7, 0xd4, 0x2b, 0xf8, 0x35, 0xcb, 0x5d, 0xff, 0xab, 0xf3, 0xb3, 0xf5, 0x19, 0x58, 0xc5, 0x7d, 0x49, 0xec, 0x8f, 0xc0, 0xda, 0x5d, 0xf7, 0x24, 0xf7, 0xe0, 0xbf, 0x97, 0x07, 0xae, 0xcf, 0x5f, 0x7d, 0xf0, - 0x7f, 0x71, 0xf9, 0xe9, 0xb7, 0x5e, 0x7f, 0xfd, 0xf1, 0x6e, 0xe3, 0x8e, 0x7f, 0xf3, 0xcc, 0x7e, - 0xab, 0x63, 0x34, 0x6e, 0xf6, 0xb0, 0x0a, 0x9b, 0x48, 0xea, 0x04, 0x5a, 0x6e, 0x83, 0xdb, 0x9d, + 0x7f, 0x71, 0xf9, 0xe9, 0xb7, 0x5e, 0x7f, 0xfd, 0xf1, 0x6e, 0xe3, 0x4e, 0x1b, 0xdc, 0xf6, 0x6f, + 0x9e, 0x59, 0x71, 0x75, 0x8c, 0xc6, 0xcd, 0x1e, 0x56, 0x61, 0x13, 0x49, 0x9d, 0x43, 0xcb, 0x9d, 0xe7, 0x9f, 0xe6, 0x2e, 0x38, 0x99, 0xbb, 0xe0, 0xfb, 0xdc, 0x05, 0x6f, 0x17, 0x6e, 0xe1, 0x64, 0xe1, 0x16, 0xbe, 0x2d, 0xdc, 0xc2, 0x8b, 0x87, 0x84, 0xaa, 0xc1, 0xa8, 0x07, 0xfb, 0x3c, 0x46, - 0x2b, 0x7d, 0x35, 0x5e, 0x71, 0x86, 0x57, 0x05, 0x74, 0x7c, 0xb6, 0xdc, 0x24, 0xc1, 0xb2, 0x57, - 0xd2, 0xbb, 0x7b, 0xf7, 0x77, 0x00, 0x00, 0x00, 0xff, 0xff, 0x4a, 0xd0, 0x97, 0x34, 0x7a, 0x03, + 0x2b, 0x7d, 0x35, 0x5e, 0x71, 0x86, 0x57, 0x05, 0x74, 0x7c, 0xb6, 0xd6, 0x24, 0xc1, 0xb2, 0x57, + 0xd2, 0xbb, 0x7b, 0xf7, 0x77, 0x00, 0x00, 0x00, 0xff, 0xff, 0xa3, 0xc4, 0x93, 0xfb, 0x7a, 0x03, 0x00, 0x00, } diff --git a/x/interchainstaking/types/messages.pb.go b/x/interchainstaking/types/messages.pb.go index 189d51d48..d53cf6b26 100644 --- a/x/interchainstaking/types/messages.pb.go +++ b/x/interchainstaking/types/messages.pb.go @@ -286,7 +286,7 @@ func init() { } var fileDescriptor_ee484030fa140a82 = []byte{ - // 761 bytes of a gzipped FileDescriptorProto + // 760 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x96, 0x4f, 0x4f, 0x1b, 0x47, 0x18, 0xc6, 0x3d, 0xd0, 0x16, 0x18, 0x68, 0xa1, 0x0b, 0x52, 0xf1, 0x0a, 0xad, 0xe9, 0x9e, 0x50, 0x5b, 0x76, 0xb1, 0x69, 0x69, 0x6b, 0x0a, 0x12, 0x76, 0x25, 0x44, 0x55, 0x1f, 0xba, 0xdc, 0xda, @@ -319,22 +319,22 @@ var fileDescriptor_ee484030fa140a82 = []byte{ 0xf6, 0xb4, 0xa0, 0x1a, 0x9d, 0x2d, 0x77, 0xd5, 0xa9, 0x3c, 0xfe, 0xee, 0x4a, 0xee, 0x4e, 0x7f, 0x4a, 0x4f, 0x26, 0xf0, 0x68, 0x8d, 0xdb, 0xd2, 0x73, 0x84, 0xbf, 0xbd, 0x3e, 0xee, 0x6b, 0xda, 0x4d, 0x77, 0x59, 0x1b, 0x34, 0x36, 0xf2, 0xe6, 0x70, 0xba, 0xee, 0xb8, 0xad, 0xdd, 0x7f, 0xf5, - 0xee, 0xf1, 0xc8, 0x8a, 0xfa, 0x63, 0xdf, 0x8f, 0x8f, 0x38, 0x88, 0xee, 0xea, 0xf5, 0x0b, 0x1c, - 0x80, 0x05, 0xe0, 0x95, 0xd1, 0x0f, 0xd2, 0x31, 0xc2, 0x53, 0x7d, 0xc7, 0x53, 0xcc, 0x14, 0xa4, - 0x57, 0x22, 0xff, 0x7e, 0x6b, 0xc9, 0x90, 0xb1, 0x93, 0x43, 0x8e, 0x62, 0xbf, 0x46, 0x78, 0x26, - 0x99, 0xe3, 0x9e, 0xde, 0xaf, 0x67, 0xca, 0x31, 0x78, 0xfc, 0xe5, 0xea, 0x67, 0x88, 0xbb, 0x38, - 0x5b, 0x31, 0xce, 0xba, 0xba, 0x96, 0x09, 0xc7, 0x8c, 0xcd, 0xea, 0x41, 0xd7, 0x27, 0x22, 0x7b, - 0x81, 0xf0, 0xf4, 0x36, 0x0b, 0xab, 0x2e, 0xe3, 0x50, 0x6d, 0x12, 0x4a, 0xc1, 0x95, 0x7e, 0xce, - 0x94, 0xed, 0x8a, 0x4a, 0xfe, 0x63, 0x18, 0x55, 0x17, 0x65, 0x23, 0x46, 0xf9, 0x55, 0x2d, 0x65, - 0x43, 0x89, 0x2c, 0xea, 0x66, 0xe2, 0x11, 0x61, 0x9c, 0x20, 0x3c, 0xb3, 0xcd, 0x42, 0x03, 0x98, - 0x0f, 0xb4, 0xc3, 0xf1, 0x4b, 0xd6, 0x44, 0x7d, 0x32, 0x79, 0x63, 0x28, 0x59, 0x97, 0x64, 0x33, - 0x26, 0xf9, 0x4d, 0x5d, 0xcd, 0x78, 0x35, 0x22, 0x8f, 0x5e, 0x94, 0x67, 0x08, 0x7f, 0xbd, 0xcd, - 0xc2, 0x5d, 0x10, 0x7f, 0x73, 0xaf, 0x4a, 0x7c, 0x2e, 0x95, 0xb2, 0x06, 0xba, 0xd4, 0xc8, 0xe5, - 0xdb, 0x6b, 0xee, 0x8a, 0xa0, 0xf2, 0xdf, 0xc9, 0x99, 0x82, 0x4e, 0xcf, 0x14, 0xf4, 0xf6, 0x4c, - 0x41, 0x0f, 0xcf, 0x95, 0xdc, 0xe9, 0xb9, 0x92, 0x7b, 0x73, 0xae, 0xe4, 0xfe, 0xdd, 0xb2, 0x1d, - 0xd1, 0x6c, 0x35, 0x34, 0x93, 0x79, 0xbd, 0xde, 0xcb, 0xf7, 0x18, 0x85, 0xbe, 0x8f, 0x1d, 0x0c, - 0xf8, 0x90, 0x38, 0xf4, 0x81, 0x37, 0xbe, 0x8a, 0xff, 0x00, 0xac, 0x7e, 0x0c, 0x00, 0x00, 0xff, - 0xff, 0x6f, 0xce, 0x36, 0x50, 0xf6, 0x08, 0x00, 0x00, + 0xee, 0xf1, 0xc8, 0x4a, 0x19, 0xfd, 0xa0, 0xfe, 0xd8, 0xf7, 0xfb, 0x23, 0x0e, 0xa2, 0xeb, 0x7a, + 0xfd, 0x0e, 0x07, 0x60, 0x01, 0x78, 0xd2, 0x31, 0xc2, 0x53, 0x7d, 0xc7, 0x53, 0xcc, 0x14, 0xa4, + 0x57, 0x22, 0xff, 0x7e, 0x6b, 0xc9, 0xf0, 0xb1, 0x93, 0x73, 0x96, 0x5e, 0x23, 0x3c, 0x93, 0xcc, + 0x71, 0x4f, 0xef, 0xd7, 0x33, 0xe5, 0x18, 0x3c, 0xfe, 0x72, 0xf5, 0x33, 0xc4, 0x5d, 0x9c, 0xad, + 0x18, 0x67, 0x3d, 0xc2, 0x59, 0xcb, 0x84, 0x63, 0xc6, 0x7e, 0xf5, 0xe0, 0x12, 0xe2, 0x05, 0xc2, + 0xd3, 0xdb, 0x2c, 0xac, 0xba, 0x8c, 0x43, 0xb5, 0x49, 0x28, 0x05, 0x57, 0xfa, 0x39, 0x53, 0xb6, + 0x2b, 0x2a, 0xf9, 0x8f, 0x61, 0x54, 0x5d, 0x94, 0x8d, 0x18, 0xe5, 0xd7, 0x08, 0xa5, 0x94, 0x0d, + 0x25, 0x72, 0xa9, 0x9b, 0x69, 0xe4, 0x13, 0x84, 0x67, 0xb6, 0x59, 0x68, 0x00, 0xf3, 0x81, 0x76, + 0x38, 0x7e, 0xc9, 0x9a, 0xa8, 0x4f, 0x26, 0x6f, 0x0c, 0x25, 0xeb, 0x92, 0x6c, 0xc6, 0x24, 0xbf, + 0x45, 0x24, 0xab, 0x19, 0xaf, 0x46, 0x64, 0xd3, 0x45, 0x79, 0x86, 0xf0, 0xd7, 0xdb, 0x2c, 0xdc, + 0x05, 0xf1, 0x37, 0xf7, 0xaa, 0xc4, 0xe7, 0x52, 0x29, 0x6b, 0xa0, 0x4b, 0x8d, 0x5c, 0xbe, 0xbd, + 0xe6, 0xae, 0x08, 0x2a, 0xff, 0x9d, 0x9c, 0x29, 0xe8, 0xf4, 0x4c, 0x41, 0x6f, 0xcf, 0x14, 0xf4, + 0xf0, 0x5c, 0xc9, 0x9d, 0x9e, 0x2b, 0xb9, 0x37, 0xe7, 0x4a, 0xee, 0xdf, 0x2d, 0xdb, 0x11, 0xcd, + 0x56, 0x43, 0x33, 0x99, 0xd7, 0x6b, 0xbc, 0x7c, 0x8f, 0x51, 0xe8, 0xfb, 0xd2, 0xc1, 0x80, 0xaf, + 0x88, 0x43, 0x1f, 0x78, 0xe3, 0xab, 0xf8, 0x0f, 0xc0, 0xea, 0xc7, 0x00, 0x00, 0x00, 0xff, 0xff, + 0x96, 0x7f, 0x1e, 0x07, 0xf6, 0x08, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/participationrewards/types/messages.pb.go b/x/participationrewards/types/messages.pb.go index 2d7a43fa4..5596f44f0 100644 --- a/x/participationrewards/types/messages.pb.go +++ b/x/participationrewards/types/messages.pb.go @@ -122,38 +122,38 @@ func init() { var fileDescriptor_b87e3ea017f90b50 = []byte{ // 513 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x93, 0x41, 0x6b, 0x13, 0x41, - 0x14, 0xc7, 0x33, 0x49, 0x2d, 0x75, 0x2a, 0x3d, 0x0c, 0x55, 0xd6, 0x20, 0xdb, 0x90, 0x1e, 0x0c, - 0x85, 0xec, 0x9a, 0xe4, 0x22, 0x89, 0x82, 0xd6, 0x6a, 0x4f, 0x85, 0xb2, 0xf5, 0xe4, 0xc1, 0x30, - 0xd9, 0x8c, 0xe3, 0xe0, 0xee, 0xbe, 0x71, 0x66, 0xb2, 0xb6, 0x1e, 0x3d, 0x79, 0x12, 0xc1, 0x2f, - 0xd0, 0xab, 0x77, 0x2f, 0x7e, 0x03, 0x8f, 0x45, 0x2f, 0x1e, 0x25, 0x51, 0xf0, 0x63, 0xc8, 0x4e, - 0xb6, 0x65, 0x17, 0x82, 0x04, 0xbd, 0xcd, 0xbc, 0x9d, 0xdf, 0x7b, 0xff, 0xff, 0x7b, 0x6f, 0x71, - 0xf7, 0xe5, 0x44, 0x84, 0x2f, 0xb4, 0x88, 0x52, 0xa6, 0x7c, 0x49, 0x95, 0x11, 0xa1, 0x90, 0xd4, - 0x08, 0x48, 0x14, 0x7b, 0x45, 0xd5, 0x58, 0xfb, 0x69, 0xc7, 0x8f, 0x99, 0xd6, 0x94, 0x33, 0xed, - 0x49, 0x05, 0x06, 0xc8, 0x76, 0x81, 0xf1, 0x16, 0x31, 0x5e, 0xda, 0xa9, 0x5f, 0x0f, 0x41, 0xc7, - 0xa0, 0x87, 0x16, 0xf1, 0xe7, 0x97, 0x39, 0x5f, 0xdf, 0xe4, 0xc0, 0x61, 0x1e, 0xcf, 0x4e, 0x79, - 0xf4, 0x06, 0x07, 0xe0, 0x11, 0xf3, 0xa9, 0x14, 0x3e, 0x4d, 0x12, 0x30, 0x36, 0xe3, 0x39, 0x73, - 0xab, 0xa8, 0x33, 0x8c, 0xa8, 0x88, 0x75, 0x4c, 0x13, 0xca, 0x99, 0xca, 0x04, 0x96, 0x02, 0x39, - 0xd1, 0x5b, 0xc6, 0x99, 0x54, 0x20, 0x41, 0xd3, 0x28, 0x2f, 0xd3, 0x7c, 0x57, 0xc5, 0x1b, 0x07, - 0x9a, 0x1f, 0x4d, 0x46, 0xb1, 0x30, 0x0f, 0xb2, 0xac, 0xe4, 0x0e, 0xbe, 0x32, 0xd1, 0x4c, 0x0d, - 0xe9, 0x78, 0xac, 0x98, 0xd6, 0x0e, 0x6a, 0xa0, 0xd6, 0xe5, 0x5d, 0xe7, 0xeb, 0xa7, 0xf6, 0x66, - 0xee, 0xea, 0xfe, 0xfc, 0xcb, 0x91, 0x51, 0x22, 0xe1, 0x41, 0xe9, 0x35, 0x21, 0x78, 0xe5, 0x35, - 0x24, 0xcc, 0xa9, 0x66, 0x54, 0x60, 0xcf, 0xa4, 0x8e, 0xd7, 0xb4, 0x0a, 0x87, 0x36, 0x5e, 0xb3, - 0xf1, 0x8b, 0x3b, 0xd9, 0xc7, 0xd8, 0x9a, 0x19, 0x9a, 0x13, 0xc9, 0x9c, 0x95, 0x06, 0x6a, 0x6d, - 0x74, 0x6f, 0x7a, 0xc5, 0x86, 0x97, 0xbd, 0xa6, 0x1d, 0xcf, 0xca, 0x7c, 0x7c, 0x22, 0x59, 0x50, - 0x40, 0xc9, 0x00, 0xaf, 0x4a, 0x05, 0xf0, 0x4c, 0x3b, 0x97, 0x1a, 0xb5, 0xd6, 0x7a, 0x77, 0xfb, - 0xef, 0x49, 0x0e, 0xb3, 0xb7, 0x41, 0x8e, 0xf4, 0xd7, 0xde, 0x9e, 0x6e, 0x55, 0x7e, 0x9f, 0x6e, - 0x55, 0x9a, 0x0e, 0xbe, 0x56, 0xee, 0x47, 0xc0, 0xb4, 0x84, 0x44, 0xb3, 0xee, 0xc7, 0x1a, 0xae, - 0x1d, 0x68, 0x4e, 0x3e, 0x23, 0xbc, 0x5e, 0xec, 0x57, 0xcf, 0x5b, 0x62, 0x3d, 0xbc, 0x72, 0xd2, - 0xfa, 0xe0, 0x1f, 0xa0, 0x73, 0x25, 0xcd, 0xdb, 0x6f, 0xbe, 0xfd, 0xfc, 0x50, 0xed, 0x36, 0xdb, - 0x7e, 0x71, 0xe4, 0xe6, 0xd8, 0x0e, 0x78, 0xd1, 0xe0, 0xad, 0xfb, 0x3e, 0xda, 0x21, 0xbf, 0x10, - 0xbe, 0xba, 0x0f, 0x69, 0xc0, 0x62, 0x48, 0xd9, 0x61, 0xb6, 0x01, 0x21, 0x44, 0x7b, 0xd4, 0x50, - 0x72, 0x77, 0x59, 0x41, 0x0b, 0xf1, 0xfa, 0xc3, 0xff, 0xc2, 0x2f, 0x9c, 0x3d, 0xb2, 0xce, 0xee, - 0x35, 0x07, 0xcb, 0x3a, 0x53, 0x36, 0xd7, 0xfc, 0xa7, 0x0b, 0x21, 0x1a, 0x53, 0x43, 0xfb, 0x68, - 0x67, 0xf7, 0xe9, 0x97, 0xa9, 0x8b, 0xce, 0xa6, 0x2e, 0xfa, 0x31, 0x75, 0xd1, 0xfb, 0x99, 0x5b, - 0x39, 0x9b, 0xb9, 0x95, 0xef, 0x33, 0xb7, 0xf2, 0x64, 0x8f, 0x0b, 0xf3, 0x7c, 0x32, 0xf2, 0x42, - 0x88, 0x8b, 0x35, 0xda, 0xd9, 0x32, 0x96, 0x8a, 0x1e, 0x2f, 0x2e, 0x98, 0xed, 0x9a, 0x1e, 0xad, - 0xda, 0x82, 0xbd, 0x3f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x88, 0xb9, 0xa5, 0xbf, 0x4e, 0x04, 0x00, + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x93, 0xb1, 0x6f, 0xd3, 0x4e, + 0x14, 0xc7, 0xe3, 0xa4, 0xbf, 0xaa, 0xbf, 0x2b, 0xea, 0x70, 0x2a, 0xc8, 0x58, 0xc8, 0x8d, 0xd2, + 0x81, 0x08, 0x29, 0x36, 0x71, 0x16, 0xd4, 0x80, 0x04, 0xa5, 0xd0, 0xa9, 0x52, 0xe5, 0x32, 0x31, + 0x10, 0x5d, 0x9c, 0xe3, 0x38, 0x61, 0xfb, 0x1d, 0x77, 0x17, 0xd3, 0x32, 0x32, 0x31, 0x21, 0x24, + 0xfe, 0x81, 0xae, 0xec, 0x2c, 0xfc, 0x07, 0x8c, 0x15, 0x2c, 0x8c, 0x28, 0x01, 0x89, 0x3f, 0x03, + 0xf9, 0xec, 0x56, 0xb6, 0x14, 0xa1, 0x08, 0xb6, 0xbb, 0xe7, 0xfb, 0xbc, 0xf7, 0xfd, 0xbe, 0xf7, + 0x8c, 0x82, 0x17, 0x53, 0x1e, 0x3d, 0x57, 0x3c, 0xce, 0xa8, 0xf4, 0x05, 0x91, 0x9a, 0x47, 0x5c, + 0x10, 0xcd, 0x21, 0x95, 0xf4, 0x25, 0x91, 0x13, 0xe5, 0x67, 0x7d, 0x3f, 0xa1, 0x4a, 0x11, 0x46, + 0x95, 0x27, 0x24, 0x68, 0xc0, 0xdb, 0x15, 0xc6, 0x5b, 0xc4, 0x78, 0x59, 0xdf, 0xb9, 0x1a, 0x81, + 0x4a, 0x40, 0x8d, 0x0c, 0xe2, 0x17, 0x97, 0x82, 0x77, 0x36, 0x19, 0x30, 0x28, 0xe2, 0xf9, 0xa9, + 0x8c, 0x5e, 0x63, 0x00, 0x2c, 0xa6, 0x3e, 0x11, 0xdc, 0x27, 0x69, 0x0a, 0xda, 0x64, 0x3c, 0x67, + 0x6e, 0x56, 0x75, 0x46, 0x31, 0xe1, 0x89, 0x4a, 0x48, 0x4a, 0x18, 0x95, 0xb9, 0xc0, 0x5a, 0xa0, + 0x24, 0x06, 0xcb, 0x38, 0x13, 0x12, 0x04, 0x28, 0x12, 0x97, 0x65, 0x3a, 0x6f, 0x9b, 0x68, 0xe3, + 0x40, 0xb1, 0xa3, 0xe9, 0x38, 0xe1, 0xfa, 0x7e, 0x9e, 0x15, 0xdf, 0x46, 0x97, 0xa6, 0x8a, 0xca, + 0x11, 0x99, 0x4c, 0x24, 0x55, 0xca, 0xb6, 0xda, 0x56, 0xf7, 0xff, 0x5d, 0xfb, 0xcb, 0xc7, 0xde, + 0x66, 0xe9, 0xea, 0x5e, 0xf1, 0xe5, 0x48, 0x4b, 0x9e, 0xb2, 0xb0, 0xf6, 0x1a, 0x63, 0xb4, 0xf2, + 0x0a, 0x52, 0x6a, 0x37, 0x73, 0x2a, 0x34, 0x67, 0xec, 0xa0, 0x35, 0x25, 0xa3, 0x91, 0x89, 0xb7, + 0x4c, 0xfc, 0xe2, 0x8e, 0xf7, 0x11, 0x32, 0x66, 0x46, 0xfa, 0x44, 0x50, 0x7b, 0xa5, 0x6d, 0x75, + 0x37, 0x82, 0xeb, 0x5e, 0xb5, 0xe1, 0x75, 0xaf, 0x59, 0xdf, 0x33, 0x32, 0x1f, 0x9d, 0x08, 0x1a, + 0x56, 0x50, 0x3c, 0x44, 0xab, 0x42, 0x02, 0x3c, 0x55, 0xf6, 0x7f, 0xed, 0x56, 0x77, 0x3d, 0xd8, + 0xfe, 0x73, 0x92, 0xc3, 0xfc, 0x6d, 0x58, 0x22, 0x3b, 0x6b, 0x6f, 0x4e, 0xb7, 0x1a, 0xbf, 0x4e, + 0xb7, 0x1a, 0x1d, 0x1b, 0x5d, 0xa9, 0xf7, 0x23, 0xa4, 0x4a, 0x40, 0xaa, 0x68, 0xf0, 0xa1, 0x85, + 0x5a, 0x07, 0x8a, 0xe1, 0x4f, 0x16, 0x5a, 0xaf, 0xf6, 0x6b, 0xe0, 0x2d, 0xb1, 0x1e, 0x5e, 0x3d, + 0xa9, 0x33, 0xfc, 0x0b, 0xe8, 0x5c, 0x49, 0xe7, 0xd6, 0xeb, 0xaf, 0x3f, 0xde, 0x37, 0x83, 0x1d, + 0xeb, 0x46, 0xa7, 0xe7, 0x57, 0xa7, 0xae, 0x8f, 0xcd, 0x8c, 0x17, 0xcd, 0xde, 0x34, 0x00, 0xff, + 0xb4, 0xd0, 0xe5, 0x7d, 0xc8, 0x42, 0x9a, 0x40, 0x46, 0x0f, 0xf3, 0x0d, 0x88, 0x20, 0xde, 0x23, + 0x9a, 0xe0, 0x3b, 0xcb, 0x0a, 0x5a, 0x88, 0x3b, 0x0f, 0xfe, 0x09, 0xbf, 0x70, 0xf6, 0xd0, 0x38, + 0xbb, 0x9b, 0x3b, 0x1b, 0x2e, 0xeb, 0x4c, 0x9a, 0x74, 0xc5, 0x7f, 0x17, 0x41, 0x3c, 0x21, 0x9a, + 0xec, 0x3e, 0xf9, 0x3c, 0x73, 0xad, 0xb3, 0x99, 0x6b, 0x7d, 0x9f, 0xb9, 0xd6, 0xbb, 0xb9, 0xdb, + 0x38, 0x9b, 0xbb, 0x8d, 0x6f, 0x73, 0xb7, 0xf1, 0x78, 0x8f, 0x71, 0xfd, 0x6c, 0x3a, 0xf6, 0x22, + 0x48, 0xaa, 0x05, 0x7a, 0xf9, 0x32, 0xd6, 0x2a, 0x1e, 0x2f, 0xae, 0x96, 0xef, 0x9a, 0x1a, 0xaf, + 0x9a, 0x6a, 0x83, 0xdf, 0x01, 0x00, 0x00, 0xff, 0xff, 0xe2, 0xd7, 0x14, 0x51, 0x4e, 0x04, 0x00, 0x00, }