From 2eb8ddac69bfee0a64527f3611c2b791c398c880 Mon Sep 17 00:00:00 2001
From: Philip Offtermatt
Date: Tue, 16 Jul 2024 11:39:02 +0200
Subject: [PATCH] Handle minStake and maxRank in Msgs
---
.../ccv/provider/v1/tx.proto | 8 +
x/ccv/provider/keeper/legacy_proposal.go | 2 +
x/ccv/provider/keeper/legacy_proposal_test.go | 4 +-
x/ccv/provider/keeper/proposal.go | 2 +
x/ccv/provider/keeper/proposal_test.go | 4 +
x/ccv/provider/types/tx.pb.go | 365 +++++++++++++-----
6 files changed, 276 insertions(+), 109 deletions(-)
diff --git a/proto/interchain_security/ccv/provider/v1/tx.proto b/proto/interchain_security/ccv/provider/v1/tx.proto
index 4f8aaaf9ad..1a8cb054cd 100644
--- a/proto/interchain_security/ccv/provider/v1/tx.proto
+++ b/proto/interchain_security/ccv/provider/v1/tx.proto
@@ -183,6 +183,10 @@ message MsgConsumerAddition {
repeated string denylist = 17;
// signer address
string authority = 18 [(cosmos_proto.scalar) = "cosmos.AddressString"];
+ // Corresponds to the minimal amount of (provider chain) stake required to validate on the consumer chain.
+ int64 min_stake = 19;
+ // Corresponds to the maximal rank in the provider chain validator set that a validator can have to validate on the consumer chain.
+ int32 max_rank = 20;
}
// MsgConsumerAdditionResponse defines response type for MsgConsumerAddition messages
@@ -320,6 +324,10 @@ message MsgConsumerModification {
repeated string denylist = 8;
// signer address
string authority = 9 [(cosmos_proto.scalar) = "cosmos.AddressString"];
+ // Corresponds to the minimal amount of (provider chain) stake required to validate on the consumer chain.
+ int64 min_stake = 10;
+ // Corresponds to the maximal rank in the provider chain validator set that a validator can have to validate on the consumer chain.
+ int32 max_rank = 11;
}
message MsgConsumerModificationResponse {}
diff --git a/x/ccv/provider/keeper/legacy_proposal.go b/x/ccv/provider/keeper/legacy_proposal.go
index 19ad553038..c35f9fd73f 100644
--- a/x/ccv/provider/keeper/legacy_proposal.go
+++ b/x/ccv/provider/keeper/legacy_proposal.go
@@ -92,6 +92,8 @@ func (k Keeper) HandleLegacyConsumerModificationProposal(ctx sdk.Context, p *typ
k.SetTopN(ctx, p.ChainId, p.Top_N)
k.SetValidatorsPowerCap(ctx, p.ChainId, p.ValidatorsPowerCap)
k.SetValidatorSetCap(ctx, p.ChainId, p.ValidatorSetCap)
+ k.SetMinStake(ctx, p.ChainId, p.MinStake)
+ k.SetMaxValidatorRank(ctx, p.ChainId, p.MaxRank)
k.DeleteAllowlist(ctx, p.ChainId)
for _, address := range p.Allowlist {
diff --git a/x/ccv/provider/keeper/legacy_proposal_test.go b/x/ccv/provider/keeper/legacy_proposal_test.go
index 0de2a9e5e2..c2d4f243ad 100644
--- a/x/ccv/provider/keeper/legacy_proposal_test.go
+++ b/x/ccv/provider/keeper/legacy_proposal_test.go
@@ -294,8 +294,8 @@ func TestHandleConsumerModificationProposal(t *testing.T) {
expectedValidatorSetCap := uint32(20)
expectedAllowlistedValidator := "cosmosvalcons1wpex7anfv3jhystyv3eq20r35a"
expectedDenylistedValidator := "cosmosvalcons1nx7n5uh0ztxsynn4sje6eyq2ud6rc6klc96w39"
- expectedMinStake := 0
- expectedMaxValidatorRank := 20
+ expectedMinStake := int64(0)
+ expectedMaxValidatorRank := int32(20)
proposal := providertypes.NewConsumerModificationProposal("title", "description", chainID,
expectedTopN,
expectedValidatorsPowerCap,
diff --git a/x/ccv/provider/keeper/proposal.go b/x/ccv/provider/keeper/proposal.go
index c3a347290b..df600e0a5c 100644
--- a/x/ccv/provider/keeper/proposal.go
+++ b/x/ccv/provider/keeper/proposal.go
@@ -78,6 +78,8 @@ func (k Keeper) HandleConsumerModificationProposal(ctx sdk.Context, proposal *ty
ValidatorSetCap: proposal.ValidatorSetCap,
Allowlist: proposal.Allowlist,
Denylist: proposal.Denylist,
+ MinStake: proposal.MinStake,
+ MaxRank: proposal.MaxRank,
}
return k.HandleLegacyConsumerModificationProposal(ctx, &p)
diff --git a/x/ccv/provider/keeper/proposal_test.go b/x/ccv/provider/keeper/proposal_test.go
index ff7660019a..225d73282c 100644
--- a/x/ccv/provider/keeper/proposal_test.go
+++ b/x/ccv/provider/keeper/proposal_test.go
@@ -930,6 +930,10 @@ func TestBeginBlockInit(t *testing.T) {
valAddr, _ := sdk.ValAddressFromBech32(validator.GetOperator())
mocks.MockStakingKeeper.EXPECT().GetLastValidatorPower(gomock.Any(), valAddr).Return(int64(1), nil).AnyTimes()
+
+ // for each validator, expect a call to GetValidatorByConsAddr with its consensus address
+ mocks.MockStakingKeeper.EXPECT().GetValidatorByConsAddr(gomock.Any(), consAddr).Return(validator, nil).AnyTimes()
+
providerKeeper.SetOptedIn(ctx, pendingProps[4].ChainId, providertypes.NewProviderConsAddress(consAddr))
providerKeeper.BeginBlockInit(ctx)
diff --git a/x/ccv/provider/types/tx.pb.go b/x/ccv/provider/types/tx.pb.go
index a297ccbfb7..3e77c7058e 100644
--- a/x/ccv/provider/types/tx.pb.go
+++ b/x/ccv/provider/types/tx.pb.go
@@ -447,6 +447,10 @@ type MsgConsumerAddition struct {
Denylist []string `protobuf:"bytes,17,rep,name=denylist,proto3" json:"denylist,omitempty"`
// signer address
Authority string `protobuf:"bytes,18,opt,name=authority,proto3" json:"authority,omitempty"`
+ // Corresponds to the minimal amount of (provider chain) stake required to validate on the consumer chain.
+ MinStake int64 `protobuf:"varint,19,opt,name=min_stake,json=minStake,proto3" json:"min_stake,omitempty"`
+ // Corresponds to the maximal rank in the provider chain validator set that a validator can have to validate on the consumer chain.
+ MaxRank int32 `protobuf:"varint,20,opt,name=max_rank,json=maxRank,proto3" json:"max_rank,omitempty"`
}
func (m *MsgConsumerAddition) Reset() { *m = MsgConsumerAddition{} }
@@ -608,6 +612,20 @@ func (m *MsgConsumerAddition) GetAuthority() string {
return ""
}
+func (m *MsgConsumerAddition) GetMinStake() int64 {
+ if m != nil {
+ return m.MinStake
+ }
+ return 0
+}
+
+func (m *MsgConsumerAddition) GetMaxRank() int32 {
+ if m != nil {
+ return m.MaxRank
+ }
+ return 0
+}
+
// MsgConsumerAdditionResponse defines response type for MsgConsumerAddition messages
type MsgConsumerAdditionResponse struct {
}
@@ -1131,6 +1149,10 @@ type MsgConsumerModification struct {
Denylist []string `protobuf:"bytes,8,rep,name=denylist,proto3" json:"denylist,omitempty"`
// signer address
Authority string `protobuf:"bytes,9,opt,name=authority,proto3" json:"authority,omitempty"`
+ // Corresponds to the minimal amount of (provider chain) stake required to validate on the consumer chain.
+ MinStake int64 `protobuf:"varint,10,opt,name=min_stake,json=minStake,proto3" json:"min_stake,omitempty"`
+ // Corresponds to the maximal rank in the provider chain validator set that a validator can have to validate on the consumer chain.
+ MaxRank int32 `protobuf:"varint,11,opt,name=max_rank,json=maxRank,proto3" json:"max_rank,omitempty"`
}
func (m *MsgConsumerModification) Reset() { *m = MsgConsumerModification{} }
@@ -1229,6 +1251,20 @@ func (m *MsgConsumerModification) GetAuthority() string {
return ""
}
+func (m *MsgConsumerModification) GetMinStake() int64 {
+ if m != nil {
+ return m.MinStake
+ }
+ return 0
+}
+
+func (m *MsgConsumerModification) GetMaxRank() int32 {
+ if m != nil {
+ return m.MaxRank
+ }
+ return 0
+}
+
type MsgConsumerModificationResponse struct {
}
@@ -1295,113 +1331,116 @@ func init() {
}
var fileDescriptor_43221a4391e9fbf4 = []byte{
- // 1689 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x58, 0xcf, 0x6f, 0xe4, 0x48,
- 0x15, 0x8e, 0xf3, 0x6b, 0xba, 0xab, 0xf3, 0xd3, 0x93, 0x90, 0x8e, 0x37, 0xdb, 0x9d, 0x34, 0xcb,
- 0x6e, 0x34, 0x6c, 0xec, 0x9d, 0xc0, 0xce, 0x42, 0xb4, 0x08, 0x92, 0xf4, 0xc2, 0x64, 0x20, 0x93,
- 0xe0, 0x09, 0x8b, 0x04, 0x12, 0x56, 0xb5, 0x5d, 0x71, 0x97, 0xc6, 0x76, 0x59, 0x55, 0xd5, 0x9d,
- 0xed, 0x1b, 0xda, 0x13, 0x12, 0x02, 0x2d, 0x37, 0xc4, 0x69, 0x0f, 0x08, 0x81, 0x04, 0xd2, 0x1c,
- 0xf6, 0xc4, 0x8d, 0xdb, 0x1c, 0x38, 0x2c, 0x2b, 0x0e, 0x88, 0xc3, 0x80, 0x66, 0x0e, 0xcb, 0x99,
- 0xbf, 0x00, 0x55, 0xb9, 0xec, 0x76, 0x27, 0x9d, 0xde, 0xee, 0x0e, 0x1c, 0xb8, 0xb4, 0xda, 0xf5,
- 0xbe, 0xf7, 0xd5, 0xf7, 0x3d, 0xbb, 0x5e, 0x95, 0x0d, 0x5e, 0xc7, 0x11, 0x47, 0xd4, 0x6d, 0x42,
- 0x1c, 0x39, 0x0c, 0xb9, 0x2d, 0x8a, 0x79, 0xc7, 0x72, 0xdd, 0xb6, 0x15, 0x53, 0xd2, 0xc6, 0x1e,
- 0xa2, 0x56, 0xfb, 0xae, 0xc5, 0xdf, 0x33, 0x63, 0x4a, 0x38, 0xd1, 0x3f, 0xdf, 0x07, 0x6d, 0xba,
- 0x6e, 0xdb, 0x4c, 0xd1, 0x66, 0xfb, 0xae, 0xb1, 0x0c, 0x43, 0x1c, 0x11, 0x4b, 0xfe, 0x26, 0x79,
- 0xc6, 0x86, 0x4f, 0x88, 0x1f, 0x20, 0x0b, 0xc6, 0xd8, 0x82, 0x51, 0x44, 0x38, 0xe4, 0x98, 0x44,
- 0x4c, 0x45, 0xab, 0x2a, 0x2a, 0xaf, 0x1a, 0xad, 0x73, 0x8b, 0xe3, 0x10, 0x31, 0x0e, 0xc3, 0x58,
- 0x01, 0x2a, 0x97, 0x01, 0x5e, 0x8b, 0x4a, 0x06, 0x15, 0x5f, 0xbf, 0x1c, 0x87, 0x51, 0x47, 0x85,
- 0x56, 0x7c, 0xe2, 0x13, 0xf9, 0xd7, 0x12, 0xff, 0xd2, 0x04, 0x97, 0xb0, 0x90, 0x30, 0x27, 0x09,
- 0x24, 0x17, 0x2a, 0xb4, 0x96, 0x5c, 0x59, 0x21, 0xf3, 0x85, 0xf5, 0x90, 0xf9, 0xa9, 0x4a, 0xdc,
- 0x70, 0x2d, 0x97, 0x50, 0x64, 0xb9, 0x01, 0x46, 0x11, 0x17, 0xd1, 0xe4, 0x9f, 0x02, 0xec, 0x0e,
- 0x53, 0xca, 0xac, 0x50, 0x49, 0x8e, 0x25, 0x48, 0x03, 0xec, 0x37, 0x79, 0x42, 0xc5, 0x2c, 0x8e,
- 0x22, 0x0f, 0xd1, 0x10, 0x27, 0x13, 0x74, 0xaf, 0x52, 0x15, 0xb9, 0x38, 0xef, 0xc4, 0x88, 0x59,
- 0x48, 0xf0, 0x45, 0x2e, 0x4a, 0x00, 0xb5, 0xbf, 0x6a, 0x60, 0xe5, 0x98, 0xf9, 0xfb, 0x8c, 0x61,
- 0x3f, 0x3a, 0x24, 0x11, 0x6b, 0x85, 0x88, 0x7e, 0x1b, 0x75, 0xf4, 0x75, 0x50, 0x48, 0xb4, 0x61,
- 0xaf, 0xac, 0x6d, 0x6a, 0xdb, 0x45, 0xfb, 0x96, 0xbc, 0x3e, 0xf2, 0xf4, 0xb7, 0xc0, 0x7c, 0xaa,
- 0xcb, 0x81, 0x9e, 0x47, 0xcb, 0x93, 0x22, 0x7e, 0xa0, 0xff, 0xfb, 0x59, 0x75, 0xa1, 0x03, 0xc3,
- 0x60, 0xaf, 0x26, 0x46, 0x11, 0x63, 0x35, 0x7b, 0x2e, 0x05, 0xee, 0x7b, 0x1e, 0xd5, 0xb7, 0xc0,
- 0x9c, 0xab, 0xa6, 0x70, 0x1e, 0xa3, 0x4e, 0x79, 0x4a, 0xf2, 0x96, 0xdc, 0xdc, 0xb4, 0x6f, 0x80,
- 0x59, 0xa1, 0x04, 0xd1, 0xf2, 0xb4, 0x24, 0x2d, 0x7f, 0xf2, 0xd1, 0xce, 0x8a, 0xaa, 0xf8, 0x7e,
- 0xc2, 0xfa, 0x88, 0x53, 0x1c, 0xf9, 0xb6, 0xc2, 0xed, 0xdd, 0xfe, 0xc9, 0x87, 0xd5, 0x89, 0x7f,
- 0x7d, 0x58, 0x9d, 0x78, 0xff, 0xd3, 0x27, 0x77, 0xd4, 0x60, 0xad, 0x02, 0x36, 0xfa, 0xb9, 0xb2,
- 0x11, 0x8b, 0x49, 0xc4, 0x50, 0xed, 0x4f, 0x1a, 0x78, 0xf9, 0x98, 0xf9, 0x8f, 0x5a, 0x8d, 0x10,
- 0xf3, 0x14, 0x70, 0x8c, 0x59, 0x03, 0x35, 0x61, 0x1b, 0x93, 0x16, 0xd5, 0xef, 0x81, 0x22, 0x93,
- 0x51, 0x8e, 0x68, 0x52, 0x80, 0x01, 0x5a, 0xba, 0x50, 0xfd, 0x14, 0xcc, 0x85, 0x39, 0x1e, 0x59,
- 0x9b, 0xd2, 0xee, 0xeb, 0x26, 0x6e, 0xb8, 0x66, 0xfe, 0xce, 0x99, 0xb9, 0x7b, 0xd5, 0xbe, 0x6b,
- 0xe6, 0xe7, 0xb6, 0x7b, 0x18, 0xf6, 0x3e, 0x97, 0x37, 0xd8, 0x9d, 0xa9, 0xf6, 0x1a, 0xf8, 0xc2,
- 0x40, 0x0b, 0x99, 0xd9, 0x27, 0x93, 0x7d, 0xcc, 0xd6, 0x49, 0xab, 0x11, 0xa0, 0x77, 0x09, 0xc7,
- 0x91, 0x3f, 0xb6, 0x59, 0x07, 0xac, 0x79, 0xad, 0x38, 0xc0, 0x2e, 0xe4, 0xc8, 0x69, 0x13, 0x8e,
- 0x9c, 0xf4, 0xf1, 0x52, 0xbe, 0x5f, 0xcb, 0xdb, 0x94, 0x0f, 0xa0, 0x59, 0x4f, 0x13, 0xde, 0x25,
- 0x1c, 0xbd, 0xa3, 0xe0, 0xf6, 0xaa, 0xd7, 0x6f, 0x58, 0xff, 0x11, 0x58, 0xc3, 0xd1, 0x39, 0x85,
- 0xae, 0x58, 0xbe, 0x4e, 0x23, 0x20, 0xee, 0x63, 0xa7, 0x89, 0xa0, 0x87, 0xa8, 0x7c, 0x78, 0x4a,
- 0xbb, 0xaf, 0x7e, 0x56, 0x61, 0xef, 0x4b, 0xb4, 0xbd, 0xda, 0xa5, 0x39, 0x10, 0x2c, 0xc9, 0xf0,
- 0x48, 0xb5, 0xcd, 0x57, 0x2c, 0xab, 0xed, 0xaf, 0x35, 0xb0, 0x78, 0xcc, 0xfc, 0xef, 0xc5, 0x1e,
- 0xe4, 0xe8, 0x14, 0x52, 0x18, 0x32, 0x51, 0x4d, 0xd8, 0xe2, 0x4d, 0x22, 0x56, 0xf4, 0x67, 0x57,
- 0x33, 0x83, 0xea, 0x47, 0x60, 0x36, 0x96, 0x0c, 0xaa, 0x78, 0x5f, 0x34, 0x87, 0xe8, 0x9f, 0x66,
- 0x32, 0xe9, 0xc1, 0xf4, 0xd3, 0x67, 0xd5, 0x09, 0x5b, 0x11, 0xec, 0x2d, 0x48, 0x3f, 0x19, 0x75,
- 0x6d, 0x1d, 0xac, 0x5d, 0x52, 0x99, 0x39, 0xf8, 0x59, 0x01, 0xdc, 0x3e, 0x66, 0x7e, 0xea, 0x72,
- 0xdf, 0xf3, 0xb0, 0xa8, 0xd2, 0xa0, 0x06, 0xf0, 0x2d, 0xb0, 0x80, 0x23, 0xcc, 0x31, 0x0c, 0x9c,
- 0x26, 0x12, 0xa5, 0x57, 0x82, 0x0d, 0x79, 0x33, 0x44, 0xd3, 0x33, 0x55, 0xab, 0x93, 0x37, 0x40,
- 0x20, 0x94, 0xbe, 0x79, 0x95, 0x97, 0x0c, 0x8a, 0x86, 0xe0, 0xa3, 0x08, 0x31, 0xcc, 0x9c, 0x26,
- 0x64, 0x4d, 0x79, 0x4f, 0xe7, 0xec, 0x92, 0x1a, 0xbb, 0x0f, 0x59, 0x53, 0xaf, 0x82, 0x52, 0x03,
- 0x47, 0x90, 0x76, 0x12, 0xc4, 0xb4, 0x44, 0x80, 0x64, 0x48, 0x02, 0x0e, 0x01, 0x60, 0x31, 0xbc,
- 0x88, 0x1c, 0xb1, 0x0d, 0x94, 0x67, 0x94, 0x90, 0xa4, 0xc5, 0x9b, 0x69, 0x8b, 0x37, 0xcf, 0xd2,
- 0x3d, 0xe2, 0xa0, 0x20, 0x84, 0x7c, 0xf0, 0x8f, 0xaa, 0x66, 0x17, 0x65, 0x9e, 0x88, 0xe8, 0x0f,
- 0xc1, 0x52, 0x2b, 0x6a, 0x90, 0xc8, 0xc3, 0x91, 0xef, 0xc4, 0x88, 0x62, 0xe2, 0x95, 0x67, 0x25,
- 0xd5, 0xfa, 0x15, 0xaa, 0xba, 0xda, 0x4d, 0x12, 0xa6, 0x5f, 0x0a, 0xa6, 0xc5, 0x2c, 0xf9, 0x54,
- 0xe6, 0xea, 0xdf, 0x05, 0xba, 0xeb, 0xb6, 0xa5, 0x24, 0xd2, 0xe2, 0x29, 0xe3, 0xad, 0xe1, 0x19,
- 0x97, 0x5c, 0xb7, 0x7d, 0x96, 0x64, 0x2b, 0xca, 0x1f, 0x82, 0x35, 0x4e, 0x61, 0xc4, 0xce, 0x11,
- 0xbd, 0xcc, 0x5b, 0x18, 0x9e, 0x77, 0x35, 0xe5, 0xe8, 0x25, 0xbf, 0x0f, 0x36, 0xb3, 0xce, 0x4c,
- 0x91, 0x87, 0x19, 0xa7, 0xb8, 0xd1, 0x92, 0x8b, 0x2e, 0x5d, 0x36, 0xe5, 0xa2, 0x7c, 0x08, 0x2a,
- 0x29, 0xce, 0xee, 0x81, 0x7d, 0x53, 0xa1, 0xf4, 0x13, 0xf0, 0x8a, 0x5c, 0xa6, 0x4c, 0x88, 0x73,
- 0x7a, 0x98, 0xe4, 0xd4, 0x21, 0x66, 0x4c, 0xb0, 0x81, 0x4d, 0x6d, 0x7b, 0xca, 0xde, 0x4a, 0xb0,
- 0xa7, 0x88, 0xd6, 0x73, 0xc8, 0xb3, 0x1c, 0x50, 0xdf, 0x01, 0x7a, 0x13, 0x33, 0x4e, 0x28, 0x76,
- 0x61, 0xe0, 0xa0, 0x88, 0x53, 0x8c, 0x58, 0xb9, 0x24, 0xd3, 0x97, 0xbb, 0x91, 0x77, 0x92, 0x80,
- 0xfe, 0x00, 0x6c, 0x5d, 0x3b, 0xa9, 0xe3, 0x36, 0x61, 0x14, 0xa1, 0xa0, 0x3c, 0x27, 0xad, 0x54,
- 0xbd, 0x6b, 0xe6, 0x3c, 0x4c, 0x60, 0xfa, 0x6d, 0x30, 0xc3, 0x49, 0xec, 0x3c, 0x2c, 0xcf, 0x6f,
- 0x6a, 0xdb, 0xf3, 0xf6, 0x34, 0x27, 0xf1, 0x43, 0xfd, 0x0d, 0xb0, 0xd2, 0x86, 0x01, 0xf6, 0x20,
- 0x27, 0x94, 0x39, 0x31, 0xb9, 0x40, 0xd4, 0x71, 0x61, 0x5c, 0x5e, 0x90, 0x18, 0xbd, 0x1b, 0x3b,
- 0x15, 0xa1, 0x43, 0x18, 0xeb, 0x77, 0xc0, 0x72, 0x36, 0xea, 0x30, 0xc4, 0x25, 0x7c, 0x51, 0xc2,
- 0x17, 0xb3, 0xc0, 0x23, 0xc4, 0x05, 0x76, 0x03, 0x14, 0x61, 0x10, 0x90, 0x8b, 0x00, 0x33, 0x5e,
- 0x5e, 0xda, 0x9c, 0xda, 0x2e, 0xda, 0xdd, 0x01, 0xdd, 0x00, 0x05, 0x0f, 0x45, 0x1d, 0x19, 0x5c,
- 0x96, 0xc1, 0xec, 0xba, 0xb7, 0xeb, 0xe8, 0x43, 0x77, 0x9d, 0x2b, 0xad, 0xe2, 0x65, 0xf0, 0x52,
- 0x9f, 0x76, 0x90, 0xb5, 0x8b, 0x3f, 0x6a, 0x40, 0xcf, 0xc5, 0x6d, 0x14, 0x92, 0x36, 0x0c, 0x06,
- 0x75, 0x8b, 0x7d, 0x50, 0x64, 0xa2, 0x8c, 0x72, 0x7d, 0x4e, 0x8e, 0xb0, 0x3e, 0x0b, 0x22, 0x4d,
- 0x2e, 0xcf, 0x1e, 0x6f, 0x53, 0xe3, 0x7b, 0xdb, 0x00, 0xc6, 0x55, 0xed, 0x99, 0xb5, 0x3f, 0x68,
- 0x60, 0x55, 0x84, 0x9b, 0x30, 0xf2, 0x91, 0x8d, 0x2e, 0x20, 0xf5, 0xea, 0x28, 0x22, 0x21, 0xd3,
- 0x6b, 0x60, 0xde, 0x93, 0xff, 0x1c, 0x4e, 0xc4, 0x91, 0xa7, 0xac, 0xc9, 0xe2, 0x97, 0x92, 0xc1,
- 0x33, 0xb2, 0xef, 0x79, 0xfa, 0x36, 0x58, 0xea, 0x62, 0xa8, 0xa0, 0x16, 0x6e, 0x05, 0x6c, 0x21,
- 0x85, 0xc9, 0x09, 0xff, 0x7b, 0x6e, 0xaa, 0x72, 0x5b, 0xbf, 0x2a, 0x37, 0x33, 0xf4, 0x54, 0x03,
- 0x85, 0x63, 0xe6, 0x9f, 0xc4, 0xfc, 0x28, 0xfa, 0x3f, 0x3f, 0xd0, 0xe9, 0x60, 0x29, 0x75, 0x92,
- 0xd9, 0xfb, 0x8d, 0x06, 0x8a, 0xc9, 0xe0, 0x49, 0x8b, 0xff, 0x4f, 0xfc, 0x75, 0xc5, 0x4f, 0xdd,
- 0x44, 0xfc, 0x6d, 0xb0, 0x9c, 0xe9, 0xcc, 0xdf, 0x1c, 0x71, 0x46, 0x15, 0xeb, 0x5e, 0x95, 0xeb,
- 0x90, 0x84, 0xaa, 0x01, 0xd9, 0x90, 0xa3, 0xab, 0xaa, 0xb5, 0x21, 0x55, 0xe7, 0x2b, 0x31, 0xd9,
- 0x5b, 0x89, 0x07, 0x60, 0x9a, 0x42, 0x8e, 0x94, 0x9d, 0x7b, 0x62, 0xa9, 0xfd, 0xfd, 0x59, 0xf5,
- 0xa5, 0xc4, 0x12, 0xf3, 0x1e, 0x9b, 0x98, 0x58, 0x21, 0xe4, 0x4d, 0xf3, 0x3b, 0xc8, 0x87, 0x6e,
- 0xa7, 0x8e, 0xdc, 0x4f, 0x3e, 0xda, 0x01, 0xca, 0x71, 0x1d, 0xb9, 0xbf, 0xfd, 0xf4, 0xc9, 0x1d,
- 0xcd, 0x96, 0x1c, 0x7b, 0x85, 0xd4, 0x6a, 0xed, 0x55, 0xf0, 0xca, 0x20, 0x27, 0x99, 0xe5, 0xbf,
- 0x4c, 0xca, 0x63, 0x48, 0x76, 0x58, 0x25, 0x1e, 0x3e, 0x17, 0x67, 0x3e, 0xd1, 0xe6, 0x57, 0xc0,
- 0x0c, 0xc7, 0x3c, 0x40, 0xea, 0xde, 0x25, 0x17, 0xfa, 0x26, 0x28, 0x79, 0x88, 0xb9, 0x14, 0xc7,
- 0x72, 0x0b, 0x4a, 0xdc, 0xe4, 0x87, 0x7a, 0xcc, 0x4e, 0xf5, 0x9a, 0xcd, 0xda, 0xf7, 0xf4, 0x10,
- 0xed, 0x7b, 0x66, 0xb4, 0xf6, 0x3d, 0x3b, 0x44, 0xfb, 0xbe, 0x35, 0xa8, 0x7d, 0x17, 0x06, 0xb5,
- 0xef, 0xe2, 0xd0, 0x4d, 0xa1, 0xb6, 0x05, 0xaa, 0xd7, 0x94, 0x34, 0x2d, 0xfb, 0xee, 0x9f, 0x4b,
- 0x60, 0xea, 0x98, 0xf9, 0xfa, 0x2f, 0x34, 0xb0, 0x7c, 0xf5, 0x45, 0xef, 0xab, 0x43, 0x9d, 0x32,
- 0xfb, 0xbd, 0x4d, 0x19, 0xfb, 0x63, 0xa7, 0xa6, 0xda, 0xf4, 0xdf, 0x6b, 0xc0, 0x18, 0xf0, 0x16,
- 0x76, 0x30, 0xec, 0x0c, 0xd7, 0x73, 0x18, 0x0f, 0x6e, 0xce, 0x31, 0x40, 0x6e, 0xcf, 0x7b, 0xd4,
- 0x98, 0x72, 0xf3, 0x1c, 0xe3, 0xca, 0xed, 0xf7, 0x76, 0xa2, 0xff, 0x5c, 0x03, 0x4b, 0x57, 0x0e,
- 0xf6, 0x5f, 0x19, 0x76, 0x82, 0xcb, 0x99, 0xc6, 0x37, 0xc6, 0xcd, 0xcc, 0x04, 0xfd, 0x54, 0x03,
- 0x8b, 0x97, 0x8f, 0x0e, 0x6f, 0x8d, 0xca, 0xaa, 0x12, 0x8d, 0xaf, 0x8f, 0x99, 0x98, 0xa9, 0x79,
- 0x5f, 0x03, 0x73, 0x3d, 0x6f, 0x6e, 0x5f, 0x1e, 0x96, 0x31, 0x9f, 0x65, 0xbc, 0x3d, 0x4e, 0x56,
- 0x26, 0x22, 0x04, 0x33, 0xc9, 0x06, 0xbd, 0x33, 0x2c, 0x8d, 0x84, 0x1b, 0x6f, 0x8e, 0x04, 0xcf,
- 0xa6, 0x8b, 0xc1, 0xac, 0xda, 0x30, 0xcd, 0x11, 0x08, 0x4e, 0x5a, 0xdc, 0xb8, 0x37, 0x1a, 0x3e,
- 0x9b, 0xf1, 0x77, 0x1a, 0x58, 0xbf, 0x7e, 0x97, 0x1b, 0xba, 0x87, 0x5c, 0x4b, 0x61, 0x1c, 0xdd,
- 0x98, 0x22, 0xd3, 0xfa, 0x2b, 0x0d, 0xac, 0xf4, 0xdd, 0x9e, 0xde, 0x1e, 0xf5, 0x59, 0xcb, 0x67,
- 0x1b, 0xf5, 0x9b, 0x64, 0xa7, 0xe2, 0x8c, 0x99, 0x1f, 0x8b, 0xdd, 0xf7, 0xe0, 0xfb, 0x4f, 0x9f,
- 0x57, 0xb4, 0x8f, 0x9f, 0x57, 0xb4, 0x7f, 0x3e, 0xaf, 0x68, 0x1f, 0xbc, 0xa8, 0x4c, 0x7c, 0xfc,
- 0xa2, 0x32, 0xf1, 0xb7, 0x17, 0x95, 0x89, 0x1f, 0x7c, 0xcd, 0xc7, 0xbc, 0xd9, 0x6a, 0x98, 0x2e,
- 0x09, 0xd5, 0x57, 0x4a, 0xab, 0x3b, 0xef, 0x4e, 0xf6, 0x91, 0xb1, 0xfd, 0xa6, 0xf5, 0x5e, 0xef,
- 0x97, 0x46, 0xf9, 0x65, 0xa6, 0x31, 0x2b, 0x4f, 0xe3, 0x5f, 0xfa, 0x4f, 0x00, 0x00, 0x00, 0xff,
- 0xff, 0xcb, 0x72, 0xac, 0x84, 0xe5, 0x15, 0x00, 0x00,
+ // 1740 bytes of a gzipped FileDescriptorProto
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x58, 0xcd, 0x8f, 0x1b, 0x49,
+ 0x15, 0x9f, 0xce, 0x7c, 0xc4, 0x7e, 0x9e, 0xcf, 0x9e, 0x09, 0xe3, 0x71, 0xb2, 0xf6, 0xc4, 0x2c,
+ 0xbb, 0xa3, 0xb0, 0xd3, 0xbd, 0x09, 0x6c, 0x16, 0x46, 0x8b, 0x60, 0x3e, 0x16, 0x92, 0xc0, 0x24,
+ 0x43, 0x27, 0x2c, 0x12, 0x48, 0xb4, 0xca, 0xdd, 0x95, 0x76, 0x69, 0xdc, 0x55, 0xad, 0xaa, 0xb2,
+ 0x13, 0xdf, 0xd0, 0x9e, 0x40, 0x48, 0x68, 0xb9, 0x21, 0x4e, 0x7b, 0x40, 0x08, 0x24, 0x90, 0x72,
+ 0xd8, 0x13, 0x37, 0x0e, 0x48, 0x39, 0x70, 0x58, 0xad, 0x38, 0x20, 0x0e, 0x01, 0x25, 0x87, 0xe5,
+ 0xcc, 0x5f, 0x80, 0xaa, 0xba, 0xba, 0xdd, 0x9e, 0x0f, 0xaf, 0x67, 0x02, 0x07, 0x2e, 0x96, 0xab,
+ 0xde, 0xef, 0xfd, 0xde, 0xfb, 0xbd, 0xea, 0x7a, 0x55, 0xdd, 0xf0, 0x06, 0xa1, 0x12, 0xf3, 0xa0,
+ 0x8d, 0x08, 0xf5, 0x05, 0x0e, 0xba, 0x9c, 0xc8, 0xbe, 0x1b, 0x04, 0x3d, 0x37, 0xe1, 0xac, 0x47,
+ 0x42, 0xcc, 0xdd, 0xde, 0x75, 0x57, 0x3e, 0x76, 0x12, 0xce, 0x24, 0xb3, 0x3f, 0x7f, 0x02, 0xda,
+ 0x09, 0x82, 0x9e, 0x93, 0xa1, 0x9d, 0xde, 0xf5, 0xda, 0x12, 0x8a, 0x09, 0x65, 0xae, 0xfe, 0x4d,
+ 0xfd, 0x6a, 0x57, 0x22, 0xc6, 0xa2, 0x0e, 0x76, 0x51, 0x42, 0x5c, 0x44, 0x29, 0x93, 0x48, 0x12,
+ 0x46, 0x85, 0xb1, 0x36, 0x8c, 0x55, 0x8f, 0x5a, 0xdd, 0x87, 0xae, 0x24, 0x31, 0x16, 0x12, 0xc5,
+ 0x89, 0x01, 0xd4, 0x8f, 0x02, 0xc2, 0x2e, 0xd7, 0x0c, 0xc6, 0xbe, 0x76, 0xd4, 0x8e, 0x68, 0xdf,
+ 0x98, 0x56, 0x22, 0x16, 0x31, 0xfd, 0xd7, 0x55, 0xff, 0x32, 0x87, 0x80, 0x89, 0x98, 0x09, 0x3f,
+ 0x35, 0xa4, 0x03, 0x63, 0x5a, 0x4d, 0x47, 0x6e, 0x2c, 0x22, 0x25, 0x3d, 0x16, 0x51, 0x96, 0x25,
+ 0x69, 0x05, 0x6e, 0xc0, 0x38, 0x76, 0x83, 0x0e, 0xc1, 0x54, 0x2a, 0x6b, 0xfa, 0xcf, 0x00, 0x6e,
+ 0x8c, 0x53, 0xca, 0xbc, 0x50, 0xa9, 0x8f, 0xab, 0x48, 0x3b, 0x24, 0x6a, 0xcb, 0x94, 0x4a, 0xb8,
+ 0x12, 0xd3, 0x10, 0xf3, 0x98, 0xa4, 0x01, 0x06, 0xa3, 0x2c, 0x8b, 0x82, 0x5d, 0xf6, 0x13, 0x2c,
+ 0x5c, 0xac, 0xf8, 0x68, 0x80, 0x53, 0x40, 0xf3, 0xaf, 0x16, 0xac, 0xec, 0x8b, 0x68, 0x5b, 0x08,
+ 0x12, 0xd1, 0x5d, 0x46, 0x45, 0x37, 0xc6, 0xfc, 0xdb, 0xb8, 0x6f, 0xaf, 0x41, 0x29, 0xcd, 0x8d,
+ 0x84, 0x55, 0x6b, 0xdd, 0xda, 0x28, 0x7b, 0x17, 0xf5, 0xf8, 0x76, 0x68, 0xbf, 0x0d, 0x73, 0x59,
+ 0x5e, 0x3e, 0x0a, 0x43, 0x5e, 0xbd, 0xa0, 0xec, 0x3b, 0xf6, 0xbf, 0x9f, 0x35, 0xe6, 0xfb, 0x28,
+ 0xee, 0x6c, 0x35, 0xd5, 0x2c, 0x16, 0xa2, 0xe9, 0xcd, 0x66, 0xc0, 0xed, 0x30, 0xe4, 0xf6, 0x55,
+ 0x98, 0x0d, 0x4c, 0x08, 0xff, 0x10, 0xf7, 0xab, 0x93, 0x9a, 0xb7, 0x12, 0x14, 0xc2, 0xbe, 0x09,
+ 0x33, 0x2a, 0x13, 0xcc, 0xab, 0x53, 0x9a, 0xb4, 0xfa, 0xc9, 0x47, 0x9b, 0x2b, 0xa6, 0xe2, 0xdb,
+ 0x29, 0xeb, 0x7d, 0xc9, 0x09, 0x8d, 0x3c, 0x83, 0xdb, 0x5a, 0xfe, 0xc9, 0x87, 0x8d, 0x89, 0x7f,
+ 0x7d, 0xd8, 0x98, 0x78, 0xff, 0xd3, 0x27, 0xd7, 0xcc, 0x64, 0xb3, 0x0e, 0x57, 0x4e, 0x52, 0xe5,
+ 0x61, 0x91, 0x30, 0x2a, 0x70, 0xf3, 0x4f, 0x16, 0xbc, 0xb2, 0x2f, 0xa2, 0xfb, 0xdd, 0x56, 0x4c,
+ 0x64, 0x06, 0xd8, 0x27, 0xa2, 0x85, 0xdb, 0xa8, 0x47, 0x58, 0x97, 0xdb, 0x37, 0xa1, 0x2c, 0xb4,
+ 0x55, 0x62, 0x9e, 0x16, 0x60, 0x44, 0x2e, 0x03, 0xa8, 0x7d, 0x00, 0xb3, 0x71, 0x81, 0x47, 0xd7,
+ 0xa6, 0x72, 0xe3, 0x0d, 0x87, 0xb4, 0x02, 0xa7, 0xb8, 0x72, 0x4e, 0x61, 0xad, 0x7a, 0xd7, 0x9d,
+ 0x62, 0x6c, 0x6f, 0x88, 0x61, 0xeb, 0x73, 0x45, 0x81, 0x83, 0x48, 0xcd, 0xd7, 0xe1, 0x0b, 0x23,
+ 0x25, 0xe4, 0x62, 0x9f, 0x5c, 0x38, 0x41, 0xec, 0x1e, 0xeb, 0xb6, 0x3a, 0xf8, 0x3d, 0x26, 0x09,
+ 0x8d, 0xce, 0x2d, 0xd6, 0x87, 0xd5, 0xb0, 0x9b, 0x74, 0x48, 0x80, 0x24, 0xf6, 0x7b, 0x4c, 0x62,
+ 0x3f, 0x7b, 0xbc, 0x8c, 0xee, 0xd7, 0x8b, 0x32, 0xf5, 0x03, 0xe8, 0xec, 0x65, 0x0e, 0xef, 0x31,
+ 0x89, 0xdf, 0x35, 0x70, 0xef, 0x52, 0x78, 0xd2, 0xb4, 0xfd, 0x23, 0x58, 0x25, 0xf4, 0x21, 0x47,
+ 0x81, 0xda, 0xbe, 0x7e, 0xab, 0xc3, 0x82, 0x43, 0xbf, 0x8d, 0x51, 0x88, 0xb9, 0x7e, 0x78, 0x2a,
+ 0x37, 0x5e, 0xfb, 0xac, 0xc2, 0xde, 0xd2, 0x68, 0xef, 0xd2, 0x80, 0x66, 0x47, 0xb1, 0xa4, 0xd3,
+ 0x67, 0xaa, 0x6d, 0xb1, 0x62, 0x79, 0x6d, 0x7f, 0x6d, 0xc1, 0xc2, 0xbe, 0x88, 0xbe, 0x97, 0x84,
+ 0x48, 0xe2, 0x03, 0xc4, 0x51, 0x2c, 0x54, 0x35, 0x51, 0x57, 0xb6, 0x99, 0xda, 0xd1, 0x9f, 0x5d,
+ 0xcd, 0x1c, 0x6a, 0xdf, 0x86, 0x99, 0x44, 0x33, 0x98, 0xe2, 0x7d, 0xd1, 0x19, 0xa3, 0x7f, 0x3a,
+ 0x69, 0xd0, 0x9d, 0xa9, 0xa7, 0xcf, 0x1a, 0x13, 0x9e, 0x21, 0xd8, 0x9a, 0xd7, 0x7a, 0x72, 0xea,
+ 0xe6, 0x1a, 0xac, 0x1e, 0xc9, 0x32, 0x57, 0xf0, 0xe7, 0x12, 0x2c, 0xef, 0x8b, 0x28, 0x53, 0xb9,
+ 0x1d, 0x86, 0x44, 0x55, 0x69, 0x54, 0x03, 0xf8, 0x16, 0xcc, 0x13, 0x4a, 0x24, 0x41, 0x1d, 0xbf,
+ 0x8d, 0x55, 0xe9, 0x4d, 0xc2, 0x35, 0xbd, 0x18, 0xaa, 0xe9, 0x39, 0xa6, 0xd5, 0xe9, 0x05, 0x50,
+ 0x08, 0x93, 0xdf, 0x9c, 0xf1, 0x4b, 0x27, 0x55, 0x43, 0x88, 0x30, 0xc5, 0x82, 0x08, 0xbf, 0x8d,
+ 0x44, 0x5b, 0xaf, 0xe9, 0xac, 0x57, 0x31, 0x73, 0xb7, 0x90, 0x68, 0xdb, 0x0d, 0xa8, 0xb4, 0x08,
+ 0x45, 0xbc, 0x9f, 0x22, 0xa6, 0x34, 0x02, 0xd2, 0x29, 0x0d, 0xd8, 0x05, 0x10, 0x09, 0x7a, 0x44,
+ 0x7d, 0x75, 0x0c, 0x54, 0xa7, 0x4d, 0x22, 0x69, 0x8b, 0x77, 0xb2, 0x16, 0xef, 0x3c, 0xc8, 0xce,
+ 0x88, 0x9d, 0x92, 0x4a, 0xe4, 0x83, 0x7f, 0x34, 0x2c, 0xaf, 0xac, 0xfd, 0x94, 0xc5, 0xbe, 0x0b,
+ 0x8b, 0x5d, 0xda, 0x62, 0x34, 0x24, 0x34, 0xf2, 0x13, 0xcc, 0x09, 0x0b, 0xab, 0x33, 0x9a, 0x6a,
+ 0xed, 0x18, 0xd5, 0x9e, 0x39, 0x4d, 0x52, 0xa6, 0x5f, 0x2a, 0xa6, 0x85, 0xdc, 0xf9, 0x40, 0xfb,
+ 0xda, 0xdf, 0x05, 0x3b, 0x08, 0x7a, 0x3a, 0x25, 0xd6, 0x95, 0x19, 0xe3, 0xc5, 0xf1, 0x19, 0x17,
+ 0x83, 0xa0, 0xf7, 0x20, 0xf5, 0x36, 0x94, 0x3f, 0x84, 0x55, 0xc9, 0x11, 0x15, 0x0f, 0x31, 0x3f,
+ 0xca, 0x5b, 0x1a, 0x9f, 0xf7, 0x52, 0xc6, 0x31, 0x4c, 0x7e, 0x0b, 0xd6, 0xf3, 0xce, 0xcc, 0x71,
+ 0x48, 0x84, 0xe4, 0xa4, 0xd5, 0xd5, 0x9b, 0x2e, 0xdb, 0x36, 0xd5, 0xb2, 0x7e, 0x08, 0xea, 0x19,
+ 0xce, 0x1b, 0x82, 0x7d, 0xd3, 0xa0, 0xec, 0x7b, 0xf0, 0xaa, 0xde, 0xa6, 0x42, 0x25, 0xe7, 0x0f,
+ 0x31, 0xe9, 0xd0, 0x31, 0x11, 0x42, 0xb1, 0xc1, 0xba, 0xb5, 0x31, 0xe9, 0x5d, 0x4d, 0xb1, 0x07,
+ 0x98, 0xef, 0x15, 0x90, 0x0f, 0x0a, 0x40, 0x7b, 0x13, 0xec, 0x36, 0x11, 0x92, 0x71, 0x12, 0xa0,
+ 0x8e, 0x8f, 0xa9, 0xe4, 0x04, 0x8b, 0x6a, 0x45, 0xbb, 0x2f, 0x0d, 0x2c, 0xef, 0xa6, 0x06, 0xfb,
+ 0x0e, 0x5c, 0x3d, 0x35, 0xa8, 0x1f, 0xb4, 0x11, 0xa5, 0xb8, 0x53, 0x9d, 0xd5, 0x52, 0x1a, 0xe1,
+ 0x29, 0x31, 0x77, 0x53, 0x98, 0xbd, 0x0c, 0xd3, 0x92, 0x25, 0xfe, 0xdd, 0xea, 0xdc, 0xba, 0xb5,
+ 0x31, 0xe7, 0x4d, 0x49, 0x96, 0xdc, 0xb5, 0xdf, 0x84, 0x95, 0x1e, 0xea, 0x90, 0x10, 0x49, 0xc6,
+ 0x85, 0x9f, 0xb0, 0x47, 0x98, 0xfb, 0x01, 0x4a, 0xaa, 0xf3, 0x1a, 0x63, 0x0f, 0x6c, 0x07, 0xca,
+ 0xb4, 0x8b, 0x12, 0xfb, 0x1a, 0x2c, 0xe5, 0xb3, 0xbe, 0xc0, 0x52, 0xc3, 0x17, 0x34, 0x7c, 0x21,
+ 0x37, 0xdc, 0xc7, 0x52, 0x61, 0xaf, 0x40, 0x19, 0x75, 0x3a, 0xec, 0x51, 0x87, 0x08, 0x59, 0x5d,
+ 0x5c, 0x9f, 0xdc, 0x28, 0x7b, 0x83, 0x09, 0xbb, 0x06, 0xa5, 0x10, 0xd3, 0xbe, 0x36, 0x2e, 0x69,
+ 0x63, 0x3e, 0x1e, 0xee, 0x3a, 0xf6, 0xf8, 0x5d, 0xe7, 0x32, 0x94, 0x63, 0xd5, 0x5f, 0x24, 0x3a,
+ 0xc4, 0xd5, 0x65, 0x5d, 0xd6, 0x52, 0x4c, 0xe8, 0x7d, 0x35, 0x56, 0x4d, 0x20, 0x46, 0x8f, 0x7d,
+ 0x8e, 0xe8, 0x61, 0x75, 0x65, 0xdd, 0xda, 0x98, 0xf6, 0x2e, 0xc6, 0xe8, 0xb1, 0x87, 0xe8, 0xe1,
+ 0xb1, 0x16, 0xf3, 0x0a, 0x5c, 0x3e, 0xa1, 0x8d, 0xe4, 0x6d, 0xe6, 0x8f, 0x16, 0xd8, 0x05, 0xbb,
+ 0x87, 0x63, 0xd6, 0x43, 0x9d, 0x51, 0x5d, 0x66, 0x1b, 0xca, 0x42, 0x95, 0x5f, 0xef, 0xeb, 0x0b,
+ 0x67, 0xd8, 0xd7, 0x25, 0xe5, 0xa6, 0xb7, 0xf5, 0x50, 0x4d, 0x26, 0xc7, 0xae, 0xc9, 0x31, 0x6d,
+ 0x57, 0xa0, 0x76, 0x3c, 0xf7, 0x5c, 0xda, 0x1f, 0x2c, 0xb8, 0xa4, 0xcc, 0x6d, 0x44, 0x23, 0xec,
+ 0xe1, 0x47, 0x88, 0x87, 0x7b, 0x98, 0xb2, 0x58, 0xd8, 0x4d, 0x98, 0x0b, 0xf5, 0x3f, 0x5f, 0x32,
+ 0x75, 0x55, 0xaa, 0x5a, 0x7a, 0xd1, 0x2a, 0xe9, 0xe4, 0x03, 0xb6, 0x1d, 0x86, 0xf6, 0x06, 0x2c,
+ 0x0e, 0x30, 0x5c, 0x51, 0x2b, 0xb5, 0x0a, 0x36, 0x9f, 0xc1, 0x74, 0xc0, 0xff, 0x9e, 0x9a, 0x86,
+ 0xbe, 0x0e, 0x1c, 0x4f, 0x37, 0x17, 0xf4, 0xd4, 0x82, 0xd2, 0xbe, 0x88, 0xee, 0x25, 0xf2, 0x36,
+ 0xfd, 0x3f, 0xbf, 0x08, 0xda, 0xb0, 0x98, 0x29, 0xc9, 0xe5, 0xfd, 0xc6, 0x82, 0x72, 0x3a, 0x79,
+ 0xaf, 0x2b, 0xff, 0x27, 0xfa, 0x06, 0xc9, 0x4f, 0xbe, 0x4c, 0xf2, 0xcb, 0xb0, 0x94, 0xe7, 0x59,
+ 0x5c, 0x1c, 0x75, 0xb7, 0x55, 0xfd, 0xc2, 0x94, 0x6b, 0x97, 0xc5, 0xa6, 0x71, 0x79, 0x48, 0xe2,
+ 0xe3, 0x59, 0x5b, 0x63, 0x66, 0x5d, 0xac, 0xc4, 0x85, 0xe1, 0x4a, 0xdc, 0x81, 0x29, 0x8e, 0x24,
+ 0x36, 0x72, 0x6e, 0xaa, 0xad, 0xf6, 0xf7, 0x67, 0x8d, 0xcb, 0xa9, 0x24, 0x11, 0x1e, 0x3a, 0x84,
+ 0xb9, 0x31, 0x92, 0x6d, 0xe7, 0x3b, 0x38, 0x42, 0x41, 0x7f, 0x0f, 0x07, 0x9f, 0x7c, 0xb4, 0x09,
+ 0x46, 0xf1, 0x1e, 0x0e, 0x7e, 0xfb, 0xe9, 0x93, 0x6b, 0x96, 0xa7, 0x39, 0xb6, 0x4a, 0x99, 0xd4,
+ 0xe6, 0x6b, 0xf0, 0xea, 0x28, 0x25, 0xb9, 0xe4, 0x9f, 0x4e, 0xea, 0xeb, 0x4b, 0x7e, 0xc9, 0x65,
+ 0x21, 0x79, 0xa8, 0xee, 0x8a, 0xea, 0x78, 0x58, 0x81, 0x69, 0x49, 0x64, 0x07, 0x9b, 0xb5, 0x4b,
+ 0x07, 0xf6, 0x3a, 0x54, 0x42, 0x2c, 0x02, 0x4e, 0x12, 0x7d, 0x74, 0xa5, 0x6a, 0x8a, 0x53, 0x43,
+ 0x62, 0x27, 0x87, 0xc5, 0xe6, 0x6d, 0x7f, 0x6a, 0x8c, 0xb6, 0x3f, 0x7d, 0xb6, 0xb6, 0x3f, 0x33,
+ 0x46, 0xdb, 0xbf, 0x38, 0xaa, 0xed, 0x97, 0x46, 0xb5, 0xfd, 0xf2, 0x39, 0xdb, 0x3e, 0x8c, 0x68,
+ 0xfb, 0x95, 0xa1, 0xb6, 0xdf, 0xbc, 0x0a, 0x8d, 0x53, 0x96, 0x22, 0x5b, 0xae, 0x1b, 0x7f, 0xa9,
+ 0xc0, 0xe4, 0xbe, 0x88, 0xec, 0x5f, 0x58, 0xb0, 0x74, 0xfc, 0xc5, 0xf2, 0xab, 0x63, 0xdd, 0x6a,
+ 0x4f, 0x7a, 0x7b, 0xab, 0x6d, 0x9f, 0xdb, 0x35, 0xcb, 0xcd, 0xfe, 0xbd, 0x05, 0xb5, 0x11, 0x6f,
+ 0x7d, 0x3b, 0xe3, 0x46, 0x38, 0x9d, 0xa3, 0x76, 0xe7, 0xe5, 0x39, 0x46, 0xa4, 0x3b, 0xf4, 0xde,
+ 0x76, 0xce, 0x74, 0x8b, 0x1c, 0xe7, 0x4d, 0xf7, 0xa4, 0xb7, 0x21, 0xfb, 0xe7, 0x16, 0x2c, 0x1e,
+ 0x7b, 0x91, 0xf8, 0xca, 0xb8, 0x01, 0x8e, 0x7a, 0xd6, 0xbe, 0x71, 0x5e, 0xcf, 0x3c, 0xa1, 0x9f,
+ 0x59, 0xb0, 0x70, 0xf4, 0xca, 0xf1, 0xf6, 0x59, 0x59, 0x8d, 0x63, 0xed, 0xeb, 0xe7, 0x74, 0xcc,
+ 0xb3, 0x79, 0xdf, 0x82, 0xd9, 0xa1, 0x37, 0xc5, 0x2f, 0x8f, 0xcb, 0x58, 0xf4, 0xaa, 0xbd, 0x73,
+ 0x1e, 0xaf, 0x3c, 0x89, 0x18, 0xa6, 0xd3, 0x83, 0x7d, 0x73, 0x5c, 0x1a, 0x0d, 0xaf, 0xbd, 0x75,
+ 0x26, 0x78, 0x1e, 0x2e, 0x81, 0x19, 0x73, 0xd0, 0x3a, 0x67, 0x20, 0xb8, 0xd7, 0x95, 0xb5, 0x9b,
+ 0x67, 0xc3, 0xe7, 0x11, 0x7f, 0x67, 0xc1, 0xda, 0xe9, 0xa7, 0xe3, 0xd8, 0x3d, 0xe4, 0x54, 0x8a,
+ 0xda, 0xed, 0x97, 0xa6, 0xc8, 0x73, 0xfd, 0x95, 0x05, 0x2b, 0x27, 0x1e, 0x6b, 0xef, 0x9c, 0xf5,
+ 0x59, 0x2b, 0x7a, 0xd7, 0xf6, 0x5e, 0xc6, 0x3b, 0x4b, 0xae, 0x36, 0xfd, 0x63, 0x75, 0x6a, 0xef,
+ 0x7c, 0xff, 0xe9, 0xf3, 0xba, 0xf5, 0xf1, 0xf3, 0xba, 0xf5, 0xcf, 0xe7, 0x75, 0xeb, 0x83, 0x17,
+ 0xf5, 0x89, 0x8f, 0x5f, 0xd4, 0x27, 0xfe, 0xf6, 0xa2, 0x3e, 0xf1, 0x83, 0xaf, 0x45, 0x44, 0xb6,
+ 0xbb, 0x2d, 0x27, 0x60, 0xb1, 0xf9, 0x2a, 0xea, 0x0e, 0xe2, 0x6e, 0xe6, 0x1f, 0x35, 0x7b, 0x6f,
+ 0xb9, 0x8f, 0x87, 0xbf, 0x6c, 0xea, 0x2f, 0x41, 0xad, 0x19, 0x7d, 0x8b, 0xff, 0xd2, 0x7f, 0x02,
+ 0x00, 0x00, 0xff, 0xff, 0x20, 0x80, 0x9a, 0xb0, 0x55, 0x16, 0x00, 0x00,
}
// Reference imports to suppress errors if they are not otherwise used.
@@ -2107,6 +2146,20 @@ func (m *MsgConsumerAddition) MarshalToSizedBuffer(dAtA []byte) (int, error) {
_ = i
var l int
_ = l
+ if m.MaxRank != 0 {
+ i = encodeVarintTx(dAtA, i, uint64(m.MaxRank))
+ i--
+ dAtA[i] = 0x1
+ i--
+ dAtA[i] = 0xa0
+ }
+ if m.MinStake != 0 {
+ i = encodeVarintTx(dAtA, i, uint64(m.MinStake))
+ i--
+ dAtA[i] = 0x1
+ i--
+ dAtA[i] = 0x98
+ }
if len(m.Authority) > 0 {
i -= len(m.Authority)
copy(dAtA[i:], m.Authority)
@@ -2636,6 +2689,16 @@ func (m *MsgConsumerModification) MarshalToSizedBuffer(dAtA []byte) (int, error)
_ = i
var l int
_ = l
+ if m.MaxRank != 0 {
+ i = encodeVarintTx(dAtA, i, uint64(m.MaxRank))
+ i--
+ dAtA[i] = 0x58
+ }
+ if m.MinStake != 0 {
+ i = encodeVarintTx(dAtA, i, uint64(m.MinStake))
+ i--
+ dAtA[i] = 0x50
+ }
if len(m.Authority) > 0 {
i -= len(m.Authority)
copy(dAtA[i:], m.Authority)
@@ -2915,6 +2978,12 @@ func (m *MsgConsumerAddition) Size() (n int) {
if l > 0 {
n += 2 + l + sovTx(uint64(l))
}
+ if m.MinStake != 0 {
+ n += 2 + sovTx(uint64(m.MinStake))
+ }
+ if m.MaxRank != 0 {
+ n += 2 + sovTx(uint64(m.MaxRank))
+ }
return n
}
@@ -3124,6 +3193,12 @@ func (m *MsgConsumerModification) Size() (n int) {
if l > 0 {
n += 1 + l + sovTx(uint64(l))
}
+ if m.MinStake != 0 {
+ n += 1 + sovTx(uint64(m.MinStake))
+ }
+ if m.MaxRank != 0 {
+ n += 1 + sovTx(uint64(m.MaxRank))
+ }
return n
}
@@ -4456,6 +4531,44 @@ func (m *MsgConsumerAddition) Unmarshal(dAtA []byte) error {
}
m.Authority = string(dAtA[iNdEx:postIndex])
iNdEx = postIndex
+ case 19:
+ if wireType != 0 {
+ return fmt.Errorf("proto: wrong wireType = %d for field MinStake", wireType)
+ }
+ m.MinStake = 0
+ for shift := uint(0); ; shift += 7 {
+ if shift >= 64 {
+ return ErrIntOverflowTx
+ }
+ if iNdEx >= l {
+ return io.ErrUnexpectedEOF
+ }
+ b := dAtA[iNdEx]
+ iNdEx++
+ m.MinStake |= int64(b&0x7F) << shift
+ if b < 0x80 {
+ break
+ }
+ }
+ case 20:
+ if wireType != 0 {
+ return fmt.Errorf("proto: wrong wireType = %d for field MaxRank", wireType)
+ }
+ m.MaxRank = 0
+ for shift := uint(0); ; shift += 7 {
+ if shift >= 64 {
+ return ErrIntOverflowTx
+ }
+ if iNdEx >= l {
+ return io.ErrUnexpectedEOF
+ }
+ b := dAtA[iNdEx]
+ iNdEx++
+ m.MaxRank |= int32(b&0x7F) << shift
+ if b < 0x80 {
+ break
+ }
+ }
default:
iNdEx = preIndex
skippy, err := skipTx(dAtA[iNdEx:])
@@ -5820,6 +5933,44 @@ func (m *MsgConsumerModification) Unmarshal(dAtA []byte) error {
}
m.Authority = string(dAtA[iNdEx:postIndex])
iNdEx = postIndex
+ case 10:
+ if wireType != 0 {
+ return fmt.Errorf("proto: wrong wireType = %d for field MinStake", wireType)
+ }
+ m.MinStake = 0
+ for shift := uint(0); ; shift += 7 {
+ if shift >= 64 {
+ return ErrIntOverflowTx
+ }
+ if iNdEx >= l {
+ return io.ErrUnexpectedEOF
+ }
+ b := dAtA[iNdEx]
+ iNdEx++
+ m.MinStake |= int64(b&0x7F) << shift
+ if b < 0x80 {
+ break
+ }
+ }
+ case 11:
+ if wireType != 0 {
+ return fmt.Errorf("proto: wrong wireType = %d for field MaxRank", wireType)
+ }
+ m.MaxRank = 0
+ for shift := uint(0); ; shift += 7 {
+ if shift >= 64 {
+ return ErrIntOverflowTx
+ }
+ if iNdEx >= l {
+ return io.ErrUnexpectedEOF
+ }
+ b := dAtA[iNdEx]
+ iNdEx++
+ m.MaxRank |= int32(b&0x7F) << shift
+ if b < 0x80 {
+ break
+ }
+ }
default:
iNdEx = preIndex
skippy, err := skipTx(dAtA[iNdEx:])