From 400a8f8cdd94ea56942cfa04e0bec9554eaaec39 Mon Sep 17 00:00:00 2001 From: bernd-m <43466467+bermuell@users.noreply.github.com> Date: Wed, 28 Aug 2024 10:55:40 +0200 Subject: [PATCH] fix: proposal MsgChangeRewardDenoms (#2166) --- .../ccv/provider/v1/tx.proto | 1 + tests/e2e/actions.go | 10 +- tests/e2e/test_driver.go | 3 +- x/ccv/provider/types/tx.pb.go | 257 ++++++++++-------- 4 files changed, 155 insertions(+), 116 deletions(-) diff --git a/proto/interchain_security/ccv/provider/v1/tx.proto b/proto/interchain_security/ccv/provider/v1/tx.proto index b0f3fc58c2..113923b11c 100644 --- a/proto/interchain_security/ccv/provider/v1/tx.proto +++ b/proto/interchain_security/ccv/provider/v1/tx.proto @@ -30,6 +30,7 @@ service Msg { rpc OptOut(MsgOptOut) returns (MsgOptOutResponse); rpc SetConsumerCommissionRate(MsgSetConsumerCommissionRate) returns (MsgSetConsumerCommissionRateResponse); rpc ConsumerModification(MsgConsumerModification) returns (MsgConsumerModificationResponse); + rpc ChangeRewardDenoms(MsgChangeRewardDenoms) returns (MsgChangeRewardDenomsResponse); } diff --git a/tests/e2e/actions.go b/tests/e2e/actions.go index 22333aad8c..1ba117b3cc 100644 --- a/tests/e2e/actions.go +++ b/tests/e2e/actions.go @@ -2227,8 +2227,8 @@ func (tr Chain) submitChangeRewardDenomsProposal(action SubmitChangeRewardDenoms "messages": [ { "@type": "/interchain_security.ccv.provider.v1.MsgChangeRewardDenoms", - "denoms_to_add": %s, - "denoms_to_remove": %s, + "denoms_to_add": ["%s"], + "denoms_to_remove": ["%s"], "authority": "cosmos10d07y265gmmuvt4z0w9aw880jnsr700j6zn9kn" } ], @@ -2239,15 +2239,15 @@ func (tr Chain) submitChangeRewardDenomsProposal(action SubmitChangeRewardDenoms "expedited": false }` - denomsToAdd := []string{action.Denom} - denomsToRemove := []string{"stake"} + denomsToAdd := action.Denom + denomsToRemove := "stake" jsonStr := fmt.Sprintf(template, denomsToAdd, denomsToRemove, action.Deposit) //#nosec G204 -- bypass unsafe quoting warning (no production code) - proposalFile := "/consumer-addition.proposal" + proposalFile := "/change-reward.proposal" bz, err := tr.target.ExecCommand( "/bin/bash", "-c", fmt.Sprintf(`echo '%s' > %s`, jsonStr, proposalFile), ).CombinedOutput() diff --git a/tests/e2e/test_driver.go b/tests/e2e/test_driver.go index e25b27f330..f65ddfe6ab 100644 --- a/tests/e2e/test_driver.go +++ b/tests/e2e/test_driver.go @@ -221,7 +221,8 @@ func (td *DefaultDriver) runAction(action interface{}) error { target.startConsumerEvidenceDetector(action, td.verbose) case SubmitChangeRewardDenomsProposalAction: target = td.getTargetDriver(action.Chain) - if semver.Compare(semver.Major(target.testConfig.providerVersion), "v5") < 0 { + version := target.testConfig.providerVersion + if semver.IsValid(version) && semver.Compare(semver.Major(version), "v5") < 0 { target.submitChangeRewardDenomsLegacyProposal(action, td.verbose) } else { target.submitChangeRewardDenomsProposal(action, td.verbose) diff --git a/x/ccv/provider/types/tx.pb.go b/x/ccv/provider/types/tx.pb.go index 146475a32d..292e870a9b 100644 --- a/x/ccv/provider/types/tx.pb.go +++ b/x/ccv/provider/types/tx.pb.go @@ -1333,117 +1333,118 @@ func init() { } var fileDescriptor_43221a4391e9fbf4 = []byte{ - // 1746 bytes of a gzipped FileDescriptorProto + // 1764 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x58, 0xcd, 0x8f, 0x1c, 0x47, - 0x15, 0xdf, 0xde, 0x2f, 0xcf, 0xbc, 0xd9, 0xcf, 0xde, 0x35, 0x3b, 0x3b, 0x76, 0x66, 0xd6, 0x4b, - 0x48, 0x56, 0x26, 0xdb, 0x1d, 0x1b, 0x92, 0x80, 0x15, 0x04, 0xfb, 0x61, 0xf0, 0x06, 0xd6, 0x5e, - 0xda, 0xc6, 0x48, 0x20, 0xd1, 0xaa, 0xe9, 0x2e, 0xf7, 0x94, 0xdc, 0xdd, 0xd5, 0xaa, 0xaa, 0x19, - 0x67, 0x6e, 0x51, 0x4e, 0x48, 0x48, 0x28, 0xdc, 0x10, 0xa7, 0x1c, 0x10, 0x12, 0x12, 0x20, 0x1f, - 0x72, 0xe2, 0xc6, 0xcd, 0x07, 0x0e, 0x51, 0xc4, 0x01, 0xe5, 0x60, 0x90, 0x7d, 0x08, 0x67, 0xfe, - 0x02, 0x54, 0xd5, 0xd5, 0x3d, 0x3d, 0xfb, 0x31, 0xe9, 0x1d, 0x87, 0x43, 0x2e, 0xa3, 0xe9, 0x7a, - 0xbf, 0xf7, 0xab, 0xdf, 0x7b, 0xd5, 0xf5, 0x5e, 0x55, 0xc3, 0x6b, 0x24, 0x16, 0x98, 0x79, 0x1d, - 0x44, 0x62, 0x97, 0x63, 0xaf, 0xcb, 0x88, 0xe8, 0xdb, 0x9e, 0xd7, 0xb3, 0x13, 0x46, 0x7b, 0xc4, - 0xc7, 0xcc, 0xee, 0x5d, 0xb3, 0xc5, 0xbb, 0x56, 0xc2, 0xa8, 0xa0, 0xe6, 0x57, 0x4f, 0x41, 0x5b, - 0x9e, 0xd7, 0xb3, 0x32, 0xb4, 0xd5, 0xbb, 0xd6, 0x58, 0x46, 0x11, 0x89, 0xa9, 0xad, 0x7e, 0x53, - 0xbf, 0xc6, 0xe5, 0x80, 0xd2, 0x20, 0xc4, 0x36, 0x4a, 0x88, 0x8d, 0xe2, 0x98, 0x0a, 0x24, 0x08, - 0x8d, 0xb9, 0xb6, 0xb6, 0xb4, 0x55, 0x3d, 0xb5, 0xbb, 0x0f, 0x6c, 0x41, 0x22, 0xcc, 0x05, 0x8a, - 0x12, 0x0d, 0x68, 0x1e, 0x07, 0xf8, 0x5d, 0xa6, 0x18, 0xb4, 0x7d, 0xfd, 0xb8, 0x1d, 0xc5, 0x7d, - 0x6d, 0x5a, 0x0d, 0x68, 0x40, 0xd5, 0x5f, 0x5b, 0xfe, 0xcb, 0x1c, 0x3c, 0xca, 0x23, 0xca, 0xdd, - 0xd4, 0x90, 0x3e, 0x68, 0xd3, 0x5a, 0xfa, 0x64, 0x47, 0x3c, 0x90, 0xa1, 0x47, 0x3c, 0xc8, 0x54, - 0x92, 0xb6, 0x67, 0x7b, 0x94, 0x61, 0xdb, 0x0b, 0x09, 0x8e, 0x85, 0xb4, 0xa6, 0xff, 0x34, 0xe0, - 0x7a, 0x99, 0x54, 0xe6, 0x89, 0x4a, 0x7d, 0x6c, 0x49, 0x1a, 0x92, 0xa0, 0x23, 0x52, 0x2a, 0x6e, - 0x0b, 0x1c, 0xfb, 0x98, 0x45, 0x24, 0x9d, 0x60, 0xf0, 0x94, 0xa9, 0x28, 0xd8, 0x45, 0x3f, 0xc1, - 0xdc, 0xc6, 0x92, 0x2f, 0xf6, 0x70, 0x0a, 0xd8, 0xfc, 0x87, 0x01, 0xab, 0x87, 0x3c, 0xd8, 0xe1, - 0x9c, 0x04, 0xf1, 0x1e, 0x8d, 0x79, 0x37, 0xc2, 0xec, 0x87, 0xb8, 0x6f, 0xae, 0x43, 0x25, 0xd5, - 0x46, 0xfc, 0xba, 0xb1, 0x61, 0x6c, 0x55, 0x9d, 0x0b, 0xea, 0xf9, 0xc0, 0x37, 0xdf, 0x82, 0xf9, - 0x4c, 0x97, 0x8b, 0x7c, 0x9f, 0xd5, 0x27, 0xa5, 0x7d, 0xd7, 0xfc, 0xef, 0xd3, 0xd6, 0x42, 0x1f, - 0x45, 0xe1, 0x8d, 0x4d, 0x39, 0x8a, 0x39, 0xdf, 0x74, 0xe6, 0x32, 0xe0, 0x8e, 0xef, 0x33, 0xf3, - 0x0a, 0xcc, 0x79, 0x7a, 0x0a, 0xf7, 0x21, 0xee, 0xd7, 0xa7, 0x14, 0x6f, 0xcd, 0x2b, 0x4c, 0xfb, - 0x3a, 0xcc, 0x4a, 0x25, 0x98, 0xd5, 0xa7, 0x15, 0x69, 0xfd, 0x93, 0x8f, 0xb6, 0x57, 0x75, 0xc6, - 0x77, 0x52, 0xd6, 0xbb, 0x82, 0x91, 0x38, 0x70, 0x34, 0xee, 0xc6, 0xca, 0x2f, 0x3f, 0x6c, 0x4d, - 0xfc, 0xe7, 0xc3, 0xd6, 0xc4, 0xfb, 0x9f, 0x3d, 0xbe, 0xaa, 0x07, 0x37, 0x9b, 0x70, 0xf9, 0xb4, - 0xa8, 0x1c, 0xcc, 0x13, 0x1a, 0x73, 0xbc, 0xf9, 0x37, 0x03, 0x5e, 0x3a, 0xe4, 0xc1, 0xdd, 0x6e, - 0x3b, 0x22, 0x22, 0x03, 0x1c, 0x12, 0xde, 0xc6, 0x1d, 0xd4, 0x23, 0xb4, 0xcb, 0xcc, 0x37, 0xa1, - 0xca, 0x95, 0x55, 0x60, 0x96, 0x26, 0x60, 0x84, 0x96, 0x01, 0xd4, 0x3c, 0x82, 0xb9, 0xa8, 0xc0, - 0xa3, 0x72, 0x53, 0xbb, 0xfe, 0x9a, 0x45, 0xda, 0x9e, 0x55, 0x5c, 0x39, 0xab, 0xb0, 0x56, 0xbd, - 0x6b, 0x56, 0x71, 0x6e, 0x67, 0x88, 0xe1, 0xc6, 0x57, 0x8a, 0x01, 0x0e, 0x66, 0xda, 0x7c, 0x15, - 0xbe, 0x36, 0x32, 0x84, 0x3c, 0xd8, 0xc7, 0x93, 0xa7, 0x04, 0xbb, 0x4f, 0xbb, 0xed, 0x10, 0xdf, - 0xa7, 0x82, 0xc4, 0xc1, 0xd8, 0xc1, 0xba, 0xb0, 0xe6, 0x77, 0x93, 0x90, 0x78, 0x48, 0x60, 0xb7, - 0x47, 0x05, 0x76, 0xb3, 0xd7, 0x4b, 0xc7, 0xfd, 0x6a, 0x31, 0x4c, 0xf5, 0x02, 0x5a, 0xfb, 0x99, - 0xc3, 0x7d, 0x2a, 0xf0, 0x4d, 0x0d, 0x77, 0x2e, 0xfa, 0xa7, 0x0d, 0x9b, 0xbf, 0x80, 0x35, 0x12, - 0x3f, 0x60, 0xc8, 0x93, 0xdb, 0xd7, 0x6d, 0x87, 0xd4, 0x7b, 0xe8, 0x76, 0x30, 0xf2, 0x31, 0x53, - 0x2f, 0x4f, 0xed, 0xfa, 0x2b, 0x9f, 0x97, 0xd8, 0x5b, 0x0a, 0xed, 0x5c, 0x1c, 0xd0, 0xec, 0x4a, - 0x96, 0x74, 0xf8, 0x5c, 0xb9, 0x2d, 0x66, 0x2c, 0xcf, 0xed, 0xef, 0x0d, 0x58, 0x3c, 0xe4, 0xc1, - 0x4f, 0x12, 0x1f, 0x09, 0x7c, 0x84, 0x18, 0x8a, 0xb8, 0xcc, 0x26, 0xea, 0x8a, 0x0e, 0x95, 0x3b, - 0xfa, 0xf3, 0xb3, 0x99, 0x43, 0xcd, 0x03, 0x98, 0x4d, 0x14, 0x83, 0x4e, 0xde, 0xd7, 0xad, 0x12, - 0xf5, 0xd3, 0x4a, 0x27, 0xdd, 0x9d, 0x7e, 0xf2, 0xb4, 0x35, 0xe1, 0x68, 0x82, 0x1b, 0x0b, 0x2a, - 0x9e, 0x9c, 0x7a, 0x73, 0x1d, 0xd6, 0x8e, 0xa9, 0xcc, 0x23, 0xf8, 0xb4, 0x02, 0x2b, 0x87, 0x3c, - 0xc8, 0xa2, 0xdc, 0xf1, 0x7d, 0x22, 0xb3, 0x34, 0xaa, 0x00, 0xfc, 0x00, 0x16, 0x48, 0x4c, 0x04, - 0x41, 0xa1, 0xdb, 0xc1, 0x32, 0xf5, 0x5a, 0x70, 0x43, 0x2d, 0x86, 0x2c, 0x7a, 0x96, 0x2e, 0x75, - 0x6a, 0x01, 0x24, 0x42, 0xeb, 0x9b, 0xd7, 0x7e, 0xe9, 0xa0, 0x2c, 0x08, 0x01, 0x8e, 0x31, 0x27, - 0xdc, 0xed, 0x20, 0xde, 0x51, 0x6b, 0x3a, 0xe7, 0xd4, 0xf4, 0xd8, 0x2d, 0xc4, 0x3b, 0x66, 0x0b, - 0x6a, 0x6d, 0x12, 0x23, 0xd6, 0x4f, 0x11, 0xd3, 0x0a, 0x01, 0xe9, 0x90, 0x02, 0xec, 0x01, 0xf0, - 0x04, 0x3d, 0x8a, 0x5d, 0xd9, 0x06, 0xea, 0x33, 0x5a, 0x48, 0x5a, 0xe2, 0xad, 0xac, 0xc4, 0x5b, - 0xf7, 0xb2, 0x1e, 0xb1, 0x5b, 0x91, 0x42, 0x3e, 0xf8, 0x57, 0xcb, 0x70, 0xaa, 0xca, 0x4f, 0x5a, - 0xcc, 0xdb, 0xb0, 0xd4, 0x8d, 0xdb, 0x34, 0xf6, 0x49, 0x1c, 0xb8, 0x09, 0x66, 0x84, 0xfa, 0xf5, - 0x59, 0x45, 0xb5, 0x7e, 0x82, 0x6a, 0x5f, 0x77, 0x93, 0x94, 0xe9, 0xb7, 0x92, 0x69, 0x31, 0x77, - 0x3e, 0x52, 0xbe, 0xe6, 0x8f, 0xc1, 0xf4, 0xbc, 0x9e, 0x92, 0x44, 0xbb, 0x22, 0x63, 0xbc, 0x50, - 0x9e, 0x71, 0xc9, 0xf3, 0x7a, 0xf7, 0x52, 0x6f, 0x4d, 0xf9, 0x73, 0x58, 0x13, 0x0c, 0xc5, 0xfc, - 0x01, 0x66, 0xc7, 0x79, 0x2b, 0xe5, 0x79, 0x2f, 0x66, 0x1c, 0xc3, 0xe4, 0xb7, 0x60, 0x23, 0xaf, - 0xcc, 0x0c, 0xfb, 0x84, 0x0b, 0x46, 0xda, 0x5d, 0xb5, 0xe9, 0xb2, 0x6d, 0x53, 0xaf, 0xaa, 0x97, - 0xa0, 0x99, 0xe1, 0x9c, 0x21, 0xd8, 0xf7, 0x35, 0xca, 0xbc, 0x03, 0x2f, 0xab, 0x6d, 0xca, 0xa5, - 0x38, 0x77, 0x88, 0x49, 0x4d, 0x1d, 0x11, 0xce, 0x25, 0x1b, 0x6c, 0x18, 0x5b, 0x53, 0xce, 0x95, - 0x14, 0x7b, 0x84, 0xd9, 0x7e, 0x01, 0x79, 0xaf, 0x00, 0x34, 0xb7, 0xc1, 0xec, 0x10, 0x2e, 0x28, - 0x23, 0x1e, 0x0a, 0x5d, 0x1c, 0x0b, 0x46, 0x30, 0xaf, 0xd7, 0x94, 0xfb, 0xf2, 0xc0, 0x72, 0x33, - 0x35, 0x98, 0xef, 0xc0, 0x95, 0x33, 0x27, 0x75, 0xbd, 0x0e, 0x8a, 0x63, 0x1c, 0xd6, 0xe7, 0x54, - 0x28, 0x2d, 0xff, 0x8c, 0x39, 0xf7, 0x52, 0x98, 0xb9, 0x02, 0x33, 0x82, 0x26, 0xee, 0xed, 0xfa, - 0xfc, 0x86, 0xb1, 0x35, 0xef, 0x4c, 0x0b, 0x9a, 0xdc, 0x36, 0x5f, 0x87, 0xd5, 0x1e, 0x0a, 0x89, - 0x8f, 0x04, 0x65, 0xdc, 0x4d, 0xe8, 0x23, 0xcc, 0x5c, 0x0f, 0x25, 0xf5, 0x05, 0x85, 0x31, 0x07, - 0xb6, 0x23, 0x69, 0xda, 0x43, 0x89, 0x79, 0x15, 0x96, 0xf3, 0x51, 0x97, 0x63, 0xa1, 0xe0, 0x8b, - 0x0a, 0xbe, 0x98, 0x1b, 0xee, 0x62, 0x21, 0xb1, 0x97, 0xa1, 0x8a, 0xc2, 0x90, 0x3e, 0x0a, 0x09, - 0x17, 0xf5, 0xa5, 0x8d, 0xa9, 0xad, 0xaa, 0x33, 0x18, 0x30, 0x1b, 0x50, 0xf1, 0x71, 0xdc, 0x57, - 0xc6, 0x65, 0x65, 0xcc, 0x9f, 0x87, 0xab, 0x8e, 0x59, 0xbe, 0xea, 0x5c, 0x82, 0x6a, 0x24, 0xeb, - 0x8b, 0x40, 0x0f, 0x71, 0x7d, 0x65, 0xc3, 0xd8, 0x9a, 0x76, 0x2a, 0x11, 0x89, 0xef, 0xca, 0x67, - 0xd3, 0x82, 0x15, 0x35, 0xbb, 0x4b, 0x62, 0xb9, 0xbe, 0x3d, 0xec, 0xf6, 0x50, 0xc8, 0xeb, 0xab, - 0x1b, 0xc6, 0x56, 0xc5, 0x59, 0x56, 0xa6, 0x03, 0x6d, 0xb9, 0x8f, 0xc2, 0x93, 0x75, 0xe7, 0x25, - 0xb8, 0x74, 0x4a, 0x6d, 0xc9, 0x6b, 0xcf, 0x5f, 0x0d, 0x30, 0x0b, 0x76, 0x07, 0x47, 0xb4, 0x87, - 0xc2, 0x51, 0xa5, 0x67, 0x07, 0xaa, 0x5c, 0xae, 0x89, 0xda, 0xec, 0x93, 0xe7, 0xd8, 0xec, 0x15, - 0xe9, 0xa6, 0xf6, 0xfa, 0x50, 0xa2, 0xa6, 0x4a, 0x27, 0xea, 0x44, 0x6c, 0x97, 0xa1, 0x71, 0x52, - 0x7b, 0x1e, 0xda, 0x9f, 0x0d, 0xb8, 0x28, 0xcd, 0x1d, 0x14, 0x07, 0xd8, 0xc1, 0x8f, 0x10, 0xf3, - 0xf7, 0x71, 0x4c, 0x23, 0x6e, 0x6e, 0xc2, 0xbc, 0xaf, 0xfe, 0xb9, 0x82, 0xca, 0xf3, 0x53, 0xdd, - 0x50, 0x2b, 0x59, 0x4b, 0x07, 0xef, 0xd1, 0x1d, 0xdf, 0x37, 0xb7, 0x60, 0x69, 0x80, 0x61, 0x92, - 0x5a, 0x46, 0x2b, 0x61, 0x0b, 0x19, 0x4c, 0x4d, 0xf8, 0xc5, 0x45, 0xd3, 0x52, 0x67, 0x84, 0x93, - 0x72, 0xf3, 0x80, 0x9e, 0x18, 0x50, 0x39, 0xe4, 0xc1, 0x9d, 0x44, 0x1c, 0xc4, 0x5f, 0xf2, 0xd3, - 0xa1, 0x09, 0x4b, 0x59, 0x24, 0x79, 0x78, 0x7f, 0x30, 0xa0, 0x9a, 0x0e, 0xde, 0xe9, 0x8a, 0xff, - 0x4b, 0x7c, 0x03, 0xf1, 0x53, 0x2f, 0x22, 0x7e, 0x05, 0x96, 0x73, 0x9d, 0xb9, 0xfa, 0xf7, 0x26, - 0xd5, 0x81, 0x57, 0x16, 0x11, 0x9d, 0xae, 0x3d, 0x1a, 0xe9, 0x6a, 0xe6, 0x20, 0x81, 0x4f, 0xaa, - 0x36, 0x4a, 0xaa, 0x2e, 0x66, 0x62, 0x72, 0x38, 0x13, 0x37, 0x61, 0x9a, 0x21, 0x81, 0x75, 0x38, - 0xd7, 0xe4, 0x56, 0xfb, 0xf4, 0x69, 0xeb, 0x52, 0x1a, 0x12, 0xf7, 0x1f, 0x5a, 0x84, 0xda, 0x11, - 0x12, 0x1d, 0xeb, 0x47, 0x38, 0x40, 0x5e, 0x7f, 0x1f, 0x7b, 0x9f, 0x7c, 0xb4, 0x0d, 0x3a, 0xe2, - 0x7d, 0xec, 0x39, 0xca, 0xfd, 0x8b, 0x5a, 0xd4, 0x57, 0xe0, 0xe5, 0x51, 0x19, 0xc8, 0x53, 0xf5, - 0x97, 0x29, 0x75, 0x16, 0xca, 0x4f, 0xcc, 0xd4, 0x27, 0x0f, 0xe4, 0xc1, 0x53, 0xf6, 0x9a, 0x55, - 0x98, 0x11, 0x44, 0x84, 0x58, 0xaf, 0x79, 0xfa, 0x60, 0x6e, 0x40, 0xcd, 0xc7, 0xdc, 0x63, 0x24, - 0x51, 0x7d, 0x30, 0xcd, 0x42, 0x71, 0x68, 0x28, 0x49, 0x53, 0xc3, 0x49, 0xca, 0x7b, 0xc8, 0x74, - 0x89, 0x1e, 0x32, 0x73, 0xbe, 0x1e, 0x32, 0x5b, 0xa2, 0x87, 0x5c, 0x18, 0xd5, 0x43, 0x2a, 0xa3, - 0x7a, 0x48, 0x75, 0xcc, 0x1e, 0x02, 0xe5, 0x7a, 0x48, 0xad, 0x6c, 0x0f, 0xb9, 0x02, 0xad, 0x33, - 0xd6, 0x2b, 0x5b, 0xd3, 0xeb, 0x7f, 0xaf, 0xc1, 0xd4, 0x21, 0x0f, 0xcc, 0xdf, 0x18, 0xb0, 0x7c, - 0xf2, 0x2a, 0xfb, 0xed, 0x52, 0xe7, 0xe8, 0xd3, 0xee, 0x8b, 0x8d, 0x9d, 0xb1, 0x5d, 0x33, 0x6d, - 0xe6, 0x9f, 0x0c, 0x68, 0x8c, 0xb8, 0x67, 0xee, 0x96, 0x9d, 0xe1, 0x6c, 0x8e, 0xc6, 0x3b, 0x2f, - 0xce, 0x31, 0x42, 0xee, 0xd0, 0x4d, 0x71, 0x4c, 0xb9, 0x45, 0x8e, 0x71, 0xe5, 0x9e, 0x76, 0xff, - 0x32, 0x7f, 0x6d, 0xc0, 0xd2, 0x89, 0xab, 0xcb, 0xb7, 0xca, 0x4e, 0x70, 0xdc, 0xb3, 0xf1, 0xbd, - 0x71, 0x3d, 0x73, 0x41, 0xbf, 0x32, 0x60, 0xf1, 0xf8, 0x79, 0xe6, 0xad, 0xf3, 0xb2, 0x6a, 0xc7, - 0xc6, 0x77, 0xc7, 0x74, 0xcc, 0xd5, 0xbc, 0x6f, 0xc0, 0xdc, 0xd0, 0xdd, 0xf4, 0x9b, 0x65, 0x19, - 0x8b, 0x5e, 0x8d, 0xb7, 0xc7, 0xf1, 0xca, 0x45, 0x44, 0x30, 0x93, 0x9e, 0x1a, 0xb6, 0xcb, 0xd2, - 0x28, 0x78, 0xe3, 0x8d, 0x73, 0xc1, 0xf3, 0xe9, 0x12, 0x98, 0xd5, 0x5d, 0xdc, 0x3a, 0x07, 0xc1, - 0x9d, 0xae, 0x68, 0xbc, 0x79, 0x3e, 0x7c, 0x3e, 0xe3, 0x1f, 0x0d, 0x58, 0x3f, 0xbb, 0xf5, 0x96, - 0xae, 0x21, 0x67, 0x52, 0x34, 0x0e, 0x5e, 0x98, 0x22, 0xd7, 0xfa, 0x3b, 0x03, 0x56, 0x4f, 0xed, - 0x7d, 0x6f, 0x9f, 0xf7, 0x5d, 0x2b, 0x7a, 0x37, 0xf6, 0x5f, 0xc4, 0x3b, 0x13, 0xd7, 0x98, 0x79, - 0xef, 0xb3, 0xc7, 0x57, 0x8d, 0xdd, 0x9f, 0x3e, 0x79, 0xd6, 0x34, 0x3e, 0x7e, 0xd6, 0x34, 0xfe, - 0xfd, 0xac, 0x69, 0x7c, 0xf0, 0xbc, 0x39, 0xf1, 0xf1, 0xf3, 0xe6, 0xc4, 0x3f, 0x9f, 0x37, 0x27, - 0x7e, 0xf6, 0x9d, 0x80, 0x88, 0x4e, 0xb7, 0x6d, 0x79, 0x34, 0xd2, 0xdf, 0x61, 0xed, 0xc1, 0xbc, - 0xdb, 0xf9, 0x67, 0xd4, 0xde, 0x1b, 0xf6, 0xbb, 0xc3, 0xdf, 0x52, 0xd5, 0xb7, 0xa7, 0xf6, 0xac, - 0xba, 0x22, 0x7c, 0xe3, 0x7f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x84, 0x6b, 0xca, 0xd4, 0xc7, 0x16, - 0x00, 0x00, + 0x15, 0xdf, 0xf6, 0x7e, 0x78, 0xe6, 0xcd, 0x7e, 0xf6, 0xae, 0xd9, 0xd9, 0xb6, 0x33, 0xb3, 0x5e, + 0x42, 0xb2, 0x32, 0xd9, 0xee, 0xd8, 0x90, 0x04, 0x56, 0x41, 0xb0, 0x1f, 0x06, 0x6f, 0x60, 0xed, + 0xa5, 0x6d, 0x8c, 0x04, 0x12, 0xad, 0x9a, 0xee, 0x72, 0x4f, 0xc9, 0xdd, 0x5d, 0xad, 0xae, 0x9a, + 0x71, 0xe6, 0x16, 0xe5, 0x84, 0x84, 0x84, 0x82, 0xc4, 0x01, 0x71, 0xca, 0x01, 0x21, 0x21, 0x01, + 0xf2, 0x21, 0x27, 0x6e, 0xdc, 0x7c, 0x8c, 0x22, 0x0e, 0x28, 0x07, 0x83, 0xec, 0x43, 0x38, 0xf3, + 0x17, 0xa0, 0xaa, 0xae, 0xee, 0xe9, 0xd9, 0x99, 0x9d, 0xf4, 0x8e, 0xc3, 0x21, 0x97, 0xd1, 0x74, + 0xbd, 0xdf, 0xfb, 0xd5, 0xef, 0xbd, 0xea, 0x7a, 0xaf, 0xaa, 0xe1, 0x35, 0x12, 0x71, 0x9c, 0xb8, + 0x6d, 0x44, 0x22, 0x87, 0x61, 0xb7, 0x93, 0x10, 0xde, 0xb3, 0x5c, 0xb7, 0x6b, 0xc5, 0x09, 0xed, + 0x12, 0x0f, 0x27, 0x56, 0xf7, 0xba, 0xc5, 0xdf, 0x35, 0xe3, 0x84, 0x72, 0xaa, 0x7f, 0x75, 0x04, + 0xda, 0x74, 0xdd, 0xae, 0x99, 0xa1, 0xcd, 0xee, 0x75, 0x63, 0x05, 0x85, 0x24, 0xa2, 0x96, 0xfc, + 0x4d, 0xfd, 0x8c, 0x2b, 0x3e, 0xa5, 0x7e, 0x80, 0x2d, 0x14, 0x13, 0x0b, 0x45, 0x11, 0xe5, 0x88, + 0x13, 0x1a, 0x31, 0x65, 0x6d, 0x2a, 0xab, 0x7c, 0x6a, 0x75, 0x1e, 0x58, 0x9c, 0x84, 0x98, 0x71, + 0x14, 0xc6, 0x0a, 0xd0, 0x38, 0x0d, 0xf0, 0x3a, 0x89, 0x64, 0x50, 0xf6, 0x8d, 0xd3, 0x76, 0x14, + 0xf5, 0x94, 0x69, 0xcd, 0xa7, 0x3e, 0x95, 0x7f, 0x2d, 0xf1, 0x2f, 0x73, 0x70, 0x29, 0x0b, 0x29, + 0x73, 0x52, 0x43, 0xfa, 0xa0, 0x4c, 0xeb, 0xe9, 0x93, 0x15, 0x32, 0x5f, 0x84, 0x1e, 0x32, 0x3f, + 0x53, 0x49, 0x5a, 0xae, 0xe5, 0xd2, 0x04, 0x5b, 0x6e, 0x40, 0x70, 0xc4, 0x85, 0x35, 0xfd, 0xa7, + 0x00, 0x37, 0xca, 0xa4, 0x32, 0x4f, 0x54, 0xea, 0x63, 0x09, 0xd2, 0x80, 0xf8, 0x6d, 0x9e, 0x52, + 0x31, 0x8b, 0xe3, 0xc8, 0xc3, 0x49, 0x48, 0xd2, 0x09, 0xfa, 0x4f, 0x99, 0x8a, 0x82, 0x9d, 0xf7, + 0x62, 0xcc, 0x2c, 0x2c, 0xf8, 0x22, 0x17, 0xa7, 0x80, 0xad, 0x7f, 0x68, 0xb0, 0x76, 0xcc, 0xfc, + 0x3d, 0xc6, 0x88, 0x1f, 0x1d, 0xd0, 0x88, 0x75, 0x42, 0x9c, 0xfc, 0x10, 0xf7, 0xf4, 0x0d, 0xa8, + 0xa4, 0xda, 0x88, 0x57, 0xd7, 0x36, 0xb5, 0xed, 0xaa, 0x7d, 0x51, 0x3e, 0x1f, 0x79, 0xfa, 0x5b, + 0xb0, 0x90, 0xe9, 0x72, 0x90, 0xe7, 0x25, 0xf5, 0x0b, 0xc2, 0xbe, 0xaf, 0xff, 0xf7, 0x69, 0x73, + 0xb1, 0x87, 0xc2, 0x60, 0x77, 0x4b, 0x8c, 0x62, 0xc6, 0xb6, 0xec, 0xf9, 0x0c, 0xb8, 0xe7, 0x79, + 0x89, 0x7e, 0x15, 0xe6, 0x5d, 0x35, 0x85, 0xf3, 0x10, 0xf7, 0xea, 0xd3, 0x92, 0xb7, 0xe6, 0x16, + 0xa6, 0x7d, 0x1d, 0xe6, 0x84, 0x12, 0x9c, 0xd4, 0x67, 0x24, 0x69, 0xfd, 0x93, 0x8f, 0x76, 0xd6, + 0x54, 0xc6, 0xf7, 0x52, 0xd6, 0xbb, 0x3c, 0x21, 0x91, 0x6f, 0x2b, 0xdc, 0xee, 0xea, 0x2f, 0x3f, + 0x6c, 0x4e, 0xfd, 0xe7, 0xc3, 0xe6, 0xd4, 0xfb, 0x9f, 0x3d, 0xbe, 0xa6, 0x06, 0xb7, 0x1a, 0x70, + 0x65, 0x54, 0x54, 0x36, 0x66, 0x31, 0x8d, 0x18, 0xde, 0xfa, 0xbb, 0x06, 0x2f, 0x1d, 0x33, 0xff, + 0x6e, 0xa7, 0x15, 0x12, 0x9e, 0x01, 0x8e, 0x09, 0x6b, 0xe1, 0x36, 0xea, 0x12, 0xda, 0x49, 0xf4, + 0x37, 0xa1, 0xca, 0xa4, 0x95, 0xe3, 0x24, 0x4d, 0xc0, 0x18, 0x2d, 0x7d, 0xa8, 0x7e, 0x02, 0xf3, + 0x61, 0x81, 0x47, 0xe6, 0xa6, 0x76, 0xe3, 0x35, 0x93, 0xb4, 0x5c, 0xb3, 0xb8, 0x72, 0x66, 0x61, + 0xad, 0xba, 0xd7, 0xcd, 0xe2, 0xdc, 0xf6, 0x00, 0xc3, 0xee, 0x57, 0x8a, 0x01, 0xf6, 0x67, 0xda, + 0x7a, 0x15, 0xbe, 0x36, 0x36, 0x84, 0x3c, 0xd8, 0xc7, 0x17, 0x46, 0x04, 0x7b, 0x48, 0x3b, 0xad, + 0x00, 0xdf, 0xa7, 0x9c, 0x44, 0xfe, 0xc4, 0xc1, 0x3a, 0xb0, 0xee, 0x75, 0xe2, 0x80, 0xb8, 0x88, + 0x63, 0xa7, 0x4b, 0x39, 0x76, 0xb2, 0xd7, 0x4b, 0xc5, 0xfd, 0x6a, 0x31, 0x4c, 0xf9, 0x02, 0x9a, + 0x87, 0x99, 0xc3, 0x7d, 0xca, 0xf1, 0x4d, 0x05, 0xb7, 0x2f, 0x79, 0xa3, 0x86, 0xf5, 0x5f, 0xc0, + 0x3a, 0x89, 0x1e, 0x24, 0xc8, 0x15, 0xdb, 0xd7, 0x69, 0x05, 0xd4, 0x7d, 0xe8, 0xb4, 0x31, 0xf2, + 0x70, 0x22, 0x5f, 0x9e, 0xda, 0x8d, 0x57, 0x3e, 0x2f, 0xb1, 0xb7, 0x24, 0xda, 0xbe, 0xd4, 0xa7, + 0xd9, 0x17, 0x2c, 0xe9, 0xf0, 0xb9, 0x72, 0x5b, 0xcc, 0x58, 0x9e, 0xdb, 0x3f, 0x68, 0xb0, 0x74, + 0xcc, 0xfc, 0x9f, 0xc4, 0x1e, 0xe2, 0xf8, 0x04, 0x25, 0x28, 0x64, 0x22, 0x9b, 0xa8, 0xc3, 0xdb, + 0x54, 0xec, 0xe8, 0xcf, 0xcf, 0x66, 0x0e, 0xd5, 0x8f, 0x60, 0x2e, 0x96, 0x0c, 0x2a, 0x79, 0x5f, + 0x37, 0x4b, 0xd4, 0x4f, 0x33, 0x9d, 0x74, 0x7f, 0xe6, 0xc9, 0xd3, 0xe6, 0x94, 0xad, 0x08, 0x76, + 0x17, 0x65, 0x3c, 0x39, 0xf5, 0xd6, 0x06, 0xac, 0x9f, 0x52, 0x99, 0x47, 0xf0, 0x69, 0x05, 0x56, + 0x8f, 0x99, 0x9f, 0x45, 0xb9, 0xe7, 0x79, 0x44, 0x64, 0x69, 0x5c, 0x01, 0xf8, 0x01, 0x2c, 0x92, + 0x88, 0x70, 0x82, 0x02, 0xa7, 0x8d, 0x45, 0xea, 0x95, 0x60, 0x43, 0x2e, 0x86, 0x28, 0x7a, 0xa6, + 0x2a, 0x75, 0x72, 0x01, 0x04, 0x42, 0xe9, 0x5b, 0x50, 0x7e, 0xe9, 0xa0, 0x28, 0x08, 0x3e, 0x8e, + 0x30, 0x23, 0xcc, 0x69, 0x23, 0xd6, 0x96, 0x6b, 0x3a, 0x6f, 0xd7, 0xd4, 0xd8, 0x2d, 0xc4, 0xda, + 0x7a, 0x13, 0x6a, 0x2d, 0x12, 0xa1, 0xa4, 0x97, 0x22, 0x66, 0x24, 0x02, 0xd2, 0x21, 0x09, 0x38, + 0x00, 0x60, 0x31, 0x7a, 0x14, 0x39, 0xa2, 0x0d, 0xd4, 0x67, 0x95, 0x90, 0xb4, 0xc4, 0x9b, 0x59, + 0x89, 0x37, 0xef, 0x65, 0x3d, 0x62, 0xbf, 0x22, 0x84, 0x7c, 0xf0, 0xaf, 0xa6, 0x66, 0x57, 0xa5, + 0x9f, 0xb0, 0xe8, 0xb7, 0x61, 0xb9, 0x13, 0xb5, 0x68, 0xe4, 0x91, 0xc8, 0x77, 0x62, 0x9c, 0x10, + 0xea, 0xd5, 0xe7, 0x24, 0xd5, 0xc6, 0x10, 0xd5, 0xa1, 0xea, 0x26, 0x29, 0xd3, 0xef, 0x04, 0xd3, + 0x52, 0xee, 0x7c, 0x22, 0x7d, 0xf5, 0x1f, 0x83, 0xee, 0xba, 0x5d, 0x29, 0x89, 0x76, 0x78, 0xc6, + 0x78, 0xb1, 0x3c, 0xe3, 0xb2, 0xeb, 0x76, 0xef, 0xa5, 0xde, 0x8a, 0xf2, 0xe7, 0xb0, 0xce, 0x13, + 0x14, 0xb1, 0x07, 0x38, 0x39, 0xcd, 0x5b, 0x29, 0xcf, 0x7b, 0x29, 0xe3, 0x18, 0x24, 0xbf, 0x05, + 0x9b, 0x79, 0x65, 0x4e, 0xb0, 0x47, 0x18, 0x4f, 0x48, 0xab, 0x23, 0x37, 0x5d, 0xb6, 0x6d, 0xea, + 0x55, 0xf9, 0x12, 0x34, 0x32, 0x9c, 0x3d, 0x00, 0xfb, 0xbe, 0x42, 0xe9, 0x77, 0xe0, 0x65, 0xb9, + 0x4d, 0x99, 0x10, 0xe7, 0x0c, 0x30, 0xc9, 0xa9, 0x43, 0xc2, 0x98, 0x60, 0x83, 0x4d, 0x6d, 0x7b, + 0xda, 0xbe, 0x9a, 0x62, 0x4f, 0x70, 0x72, 0x58, 0x40, 0xde, 0x2b, 0x00, 0xf5, 0x1d, 0xd0, 0xdb, + 0x84, 0x71, 0x9a, 0x10, 0x17, 0x05, 0x0e, 0x8e, 0x78, 0x42, 0x30, 0xab, 0xd7, 0xa4, 0xfb, 0x4a, + 0xdf, 0x72, 0x33, 0x35, 0xe8, 0xef, 0xc0, 0xd5, 0x33, 0x27, 0x75, 0xdc, 0x36, 0x8a, 0x22, 0x1c, + 0xd4, 0xe7, 0x65, 0x28, 0x4d, 0xef, 0x8c, 0x39, 0x0f, 0x52, 0x98, 0xbe, 0x0a, 0xb3, 0x9c, 0xc6, + 0xce, 0xed, 0xfa, 0xc2, 0xa6, 0xb6, 0xbd, 0x60, 0xcf, 0x70, 0x1a, 0xdf, 0xd6, 0x5f, 0x87, 0xb5, + 0x2e, 0x0a, 0x88, 0x87, 0x38, 0x4d, 0x98, 0x13, 0xd3, 0x47, 0x38, 0x71, 0x5c, 0x14, 0xd7, 0x17, + 0x25, 0x46, 0xef, 0xdb, 0x4e, 0x84, 0xe9, 0x00, 0xc5, 0xfa, 0x35, 0x58, 0xc9, 0x47, 0x1d, 0x86, + 0xb9, 0x84, 0x2f, 0x49, 0xf8, 0x52, 0x6e, 0xb8, 0x8b, 0xb9, 0xc0, 0x5e, 0x81, 0x2a, 0x0a, 0x02, + 0xfa, 0x28, 0x20, 0x8c, 0xd7, 0x97, 0x37, 0xa7, 0xb7, 0xab, 0x76, 0x7f, 0x40, 0x37, 0xa0, 0xe2, + 0xe1, 0xa8, 0x27, 0x8d, 0x2b, 0xd2, 0x98, 0x3f, 0x0f, 0x56, 0x1d, 0xbd, 0x7c, 0xd5, 0xb9, 0x0c, + 0xd5, 0x50, 0xd4, 0x17, 0x8e, 0x1e, 0xe2, 0xfa, 0xea, 0xa6, 0xb6, 0x3d, 0x63, 0x57, 0x42, 0x12, + 0xdd, 0x15, 0xcf, 0xba, 0x09, 0xab, 0x72, 0x76, 0x87, 0x44, 0x62, 0x7d, 0xbb, 0xd8, 0xe9, 0xa2, + 0x80, 0xd5, 0xd7, 0x36, 0xb5, 0xed, 0x8a, 0xbd, 0x22, 0x4d, 0x47, 0xca, 0x72, 0x1f, 0x05, 0xc3, + 0x75, 0xe7, 0x25, 0xb8, 0x3c, 0xa2, 0xb6, 0xe4, 0xb5, 0xe7, 0x6f, 0x1a, 0xe8, 0x05, 0xbb, 0x8d, + 0x43, 0xda, 0x45, 0xc1, 0xb8, 0xd2, 0xb3, 0x07, 0x55, 0x26, 0xd6, 0x44, 0x6e, 0xf6, 0x0b, 0xe7, + 0xd8, 0xec, 0x15, 0xe1, 0x26, 0xf7, 0xfa, 0x40, 0xa2, 0xa6, 0x4b, 0x27, 0x6a, 0x28, 0xb6, 0x2b, + 0x60, 0x0c, 0x6b, 0xcf, 0x43, 0xfb, 0x8b, 0x06, 0x97, 0x84, 0xb9, 0x8d, 0x22, 0x1f, 0xdb, 0xf8, + 0x11, 0x4a, 0xbc, 0x43, 0x1c, 0xd1, 0x90, 0xe9, 0x5b, 0xb0, 0xe0, 0xc9, 0x7f, 0x0e, 0xa7, 0xe2, + 0xfc, 0x54, 0xd7, 0xe4, 0x4a, 0xd6, 0xd2, 0xc1, 0x7b, 0x74, 0xcf, 0xf3, 0xf4, 0x6d, 0x58, 0xee, + 0x63, 0x12, 0x41, 0x2d, 0xa2, 0x15, 0xb0, 0xc5, 0x0c, 0x26, 0x27, 0xfc, 0xe2, 0xa2, 0x69, 0xca, + 0x33, 0xc2, 0xb0, 0xdc, 0x3c, 0xa0, 0x27, 0x1a, 0x54, 0x8e, 0x99, 0x7f, 0x27, 0xe6, 0x47, 0xd1, + 0x97, 0xfc, 0x74, 0xa8, 0xc3, 0x72, 0x16, 0x49, 0x1e, 0xde, 0x1f, 0x35, 0xa8, 0xa6, 0x83, 0x77, + 0x3a, 0xfc, 0xff, 0x12, 0x5f, 0x5f, 0xfc, 0xf4, 0x8b, 0x88, 0x5f, 0x85, 0x95, 0x5c, 0x67, 0xae, + 0xfe, 0xbd, 0x0b, 0xf2, 0xc0, 0x2b, 0x8a, 0x88, 0x4a, 0xd7, 0x01, 0x0d, 0x55, 0x35, 0xb3, 0x11, + 0xc7, 0xc3, 0xaa, 0xb5, 0x92, 0xaa, 0x8b, 0x99, 0xb8, 0x30, 0x98, 0x89, 0x9b, 0x30, 0x93, 0x20, + 0x8e, 0x55, 0x38, 0xd7, 0xc5, 0x56, 0xfb, 0xf4, 0x69, 0xf3, 0x72, 0x1a, 0x12, 0xf3, 0x1e, 0x9a, + 0x84, 0x5a, 0x21, 0xe2, 0x6d, 0xf3, 0x47, 0xd8, 0x47, 0x6e, 0xef, 0x10, 0xbb, 0x9f, 0x7c, 0xb4, + 0x03, 0x2a, 0xe2, 0x43, 0xec, 0xda, 0xd2, 0xfd, 0x8b, 0x5a, 0xd4, 0x57, 0xe0, 0xe5, 0x71, 0x19, + 0xc8, 0x53, 0xf5, 0xd7, 0x69, 0x79, 0x16, 0xca, 0x4f, 0xcc, 0xd4, 0x23, 0x0f, 0xc4, 0xc1, 0x53, + 0xf4, 0x9a, 0x35, 0x98, 0xe5, 0x84, 0x07, 0x58, 0xad, 0x79, 0xfa, 0xa0, 0x6f, 0x42, 0xcd, 0xc3, + 0xcc, 0x4d, 0x48, 0x2c, 0xfb, 0x60, 0x9a, 0x85, 0xe2, 0xd0, 0x40, 0x92, 0xa6, 0x07, 0x93, 0x94, + 0xf7, 0x90, 0x99, 0x12, 0x3d, 0x64, 0xf6, 0x7c, 0x3d, 0x64, 0xae, 0x44, 0x0f, 0xb9, 0x38, 0xae, + 0x87, 0x54, 0xc6, 0xf5, 0x90, 0xea, 0x84, 0x3d, 0x04, 0xca, 0xf5, 0x90, 0x5a, 0xd9, 0x1e, 0x72, + 0x15, 0x9a, 0x67, 0xac, 0x57, 0xb6, 0xa6, 0x37, 0x9e, 0xcf, 0xc3, 0xf4, 0x31, 0xf3, 0xf5, 0xdf, + 0x68, 0xb0, 0x32, 0x7c, 0x95, 0xfd, 0x76, 0xa9, 0x73, 0xf4, 0xa8, 0xfb, 0xa2, 0xb1, 0x37, 0xb1, + 0x6b, 0xa6, 0x4d, 0xff, 0xb3, 0x06, 0xc6, 0x98, 0x7b, 0xe6, 0x7e, 0xd9, 0x19, 0xce, 0xe6, 0x30, + 0xde, 0x79, 0x71, 0x8e, 0x31, 0x72, 0x07, 0x6e, 0x8a, 0x13, 0xca, 0x2d, 0x72, 0x4c, 0x2a, 0x77, + 0xd4, 0xfd, 0x4b, 0xff, 0xb5, 0x06, 0xcb, 0x43, 0x57, 0x97, 0x6f, 0x95, 0x9d, 0xe0, 0xb4, 0xa7, + 0xf1, 0xbd, 0x49, 0x3d, 0x73, 0x41, 0xbf, 0xd2, 0x60, 0xe9, 0xf4, 0x79, 0xe6, 0xad, 0xf3, 0xb2, + 0x2a, 0x47, 0xe3, 0xbb, 0x13, 0x3a, 0xe6, 0x6a, 0xde, 0xd7, 0x60, 0x7e, 0xe0, 0x6e, 0xfa, 0xcd, + 0xb2, 0x8c, 0x45, 0x2f, 0xe3, 0xed, 0x49, 0xbc, 0x72, 0x11, 0x21, 0xcc, 0xa6, 0xa7, 0x86, 0x9d, + 0xb2, 0x34, 0x12, 0x6e, 0xbc, 0x71, 0x2e, 0x78, 0x3e, 0x5d, 0x0c, 0x73, 0xaa, 0x8b, 0x9b, 0xe7, + 0x20, 0xb8, 0xd3, 0xe1, 0xc6, 0x9b, 0xe7, 0xc3, 0xe7, 0x33, 0xfe, 0x49, 0x83, 0x8d, 0xb3, 0x5b, + 0x6f, 0xe9, 0x1a, 0x72, 0x26, 0x85, 0x71, 0xf4, 0xc2, 0x14, 0xb9, 0xd6, 0xdf, 0x6b, 0xb0, 0x36, + 0xb2, 0xf7, 0xbd, 0x7d, 0xde, 0x77, 0xad, 0xe8, 0x6d, 0x1c, 0xbe, 0x88, 0x77, 0x2e, 0xee, 0xb7, + 0x1a, 0xe8, 0x23, 0x4e, 0xcc, 0xbb, 0xa5, 0xc9, 0x87, 0x7c, 0x8d, 0xfd, 0xc9, 0x7d, 0x33, 0x59, + 0xc6, 0xec, 0x7b, 0x9f, 0x3d, 0xbe, 0xa6, 0xed, 0xff, 0xf4, 0xc9, 0xb3, 0x86, 0xf6, 0xf1, 0xb3, + 0x86, 0xf6, 0xef, 0x67, 0x0d, 0xed, 0x83, 0xe7, 0x8d, 0xa9, 0x8f, 0x9f, 0x37, 0xa6, 0xfe, 0xf9, + 0xbc, 0x31, 0xf5, 0xb3, 0xef, 0xf8, 0x84, 0xb7, 0x3b, 0x2d, 0xd3, 0xa5, 0xa1, 0xfa, 0x3c, 0x6c, + 0xf5, 0x67, 0xdd, 0xc9, 0xbf, 0xee, 0x76, 0xdf, 0xb0, 0xde, 0x1d, 0xfc, 0xc4, 0x2b, 0x3f, 0x89, + 0xb5, 0xe6, 0xe4, 0xcd, 0xe5, 0x1b, 0xff, 0x0b, 0x00, 0x00, 0xff, 0xff, 0x88, 0x80, 0xb2, 0x2a, + 0x5e, 0x17, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -1468,6 +1469,7 @@ type MsgClient interface { OptOut(ctx context.Context, in *MsgOptOut, opts ...grpc.CallOption) (*MsgOptOutResponse, error) SetConsumerCommissionRate(ctx context.Context, in *MsgSetConsumerCommissionRate, opts ...grpc.CallOption) (*MsgSetConsumerCommissionRateResponse, error) ConsumerModification(ctx context.Context, in *MsgConsumerModification, opts ...grpc.CallOption) (*MsgConsumerModificationResponse, error) + ChangeRewardDenoms(ctx context.Context, in *MsgChangeRewardDenoms, opts ...grpc.CallOption) (*MsgChangeRewardDenomsResponse, error) } type msgClient struct { @@ -1568,6 +1570,15 @@ func (c *msgClient) ConsumerModification(ctx context.Context, in *MsgConsumerMod return out, nil } +func (c *msgClient) ChangeRewardDenoms(ctx context.Context, in *MsgChangeRewardDenoms, opts ...grpc.CallOption) (*MsgChangeRewardDenomsResponse, error) { + out := new(MsgChangeRewardDenomsResponse) + err := c.cc.Invoke(ctx, "/interchain_security.ccv.provider.v1.Msg/ChangeRewardDenoms", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + // MsgServer is the server API for Msg service. type MsgServer interface { AssignConsumerKey(context.Context, *MsgAssignConsumerKey) (*MsgAssignConsumerKeyResponse, error) @@ -1580,6 +1591,7 @@ type MsgServer interface { OptOut(context.Context, *MsgOptOut) (*MsgOptOutResponse, error) SetConsumerCommissionRate(context.Context, *MsgSetConsumerCommissionRate) (*MsgSetConsumerCommissionRateResponse, error) ConsumerModification(context.Context, *MsgConsumerModification) (*MsgConsumerModificationResponse, error) + ChangeRewardDenoms(context.Context, *MsgChangeRewardDenoms) (*MsgChangeRewardDenomsResponse, error) } // UnimplementedMsgServer can be embedded to have forward compatible implementations. @@ -1616,6 +1628,9 @@ func (*UnimplementedMsgServer) SetConsumerCommissionRate(ctx context.Context, re func (*UnimplementedMsgServer) ConsumerModification(ctx context.Context, req *MsgConsumerModification) (*MsgConsumerModificationResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method ConsumerModification not implemented") } +func (*UnimplementedMsgServer) ChangeRewardDenoms(ctx context.Context, req *MsgChangeRewardDenoms) (*MsgChangeRewardDenomsResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method ChangeRewardDenoms not implemented") +} func RegisterMsgServer(s grpc1.Server, srv MsgServer) { s.RegisterService(&_Msg_serviceDesc, srv) @@ -1801,6 +1816,24 @@ func _Msg_ConsumerModification_Handler(srv interface{}, ctx context.Context, dec return interceptor(ctx, in, info, handler) } +func _Msg_ChangeRewardDenoms_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(MsgChangeRewardDenoms) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(MsgServer).ChangeRewardDenoms(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/interchain_security.ccv.provider.v1.Msg/ChangeRewardDenoms", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(MsgServer).ChangeRewardDenoms(ctx, req.(*MsgChangeRewardDenoms)) + } + return interceptor(ctx, in, info, handler) +} + var _Msg_serviceDesc = grpc.ServiceDesc{ ServiceName: "interchain_security.ccv.provider.v1.Msg", HandlerType: (*MsgServer)(nil), @@ -1845,6 +1878,10 @@ var _Msg_serviceDesc = grpc.ServiceDesc{ MethodName: "ConsumerModification", Handler: _Msg_ConsumerModification_Handler, }, + { + MethodName: "ChangeRewardDenoms", + Handler: _Msg_ChangeRewardDenoms_Handler, + }, }, Streams: []grpc.StreamDesc{}, Metadata: "interchain_security/ccv/provider/v1/tx.proto",