From b4b6fd4de855efc9a5d46c2ec2ea17a6ec603aca Mon Sep 17 00:00:00 2001 From: folex <0xdxdy@gmail.com> Date: Tue, 8 Oct 2019 14:48:39 +0300 Subject: [PATCH] Regenerate abci/types/types.pb.go --- abci/types/types.pb.go | 985 ++++++++++++++++++++++++++++++++++------- 1 file changed, 820 insertions(+), 165 deletions(-) diff --git a/abci/types/types.pb.go b/abci/types/types.pb.go index 48d15c2a..2f99c8f2 100644 --- a/abci/types/types.pb.go +++ b/abci/types/types.pb.go @@ -2693,6 +2693,7 @@ func (m *ValidatorUpdate) GetPower() int64 { type VoteInfo struct { Validator Validator `protobuf:"bytes,1,opt,name=validator,proto3" json:"validator"` SignedLastBlock bool `protobuf:"varint,2,opt,name=signed_last_block,json=signedLastBlock,proto3" json:"signed_last_block,omitempty"` + FullVote *Vote `protobuf:"bytes,3,opt,name=full_vote,json=fullVote,proto3" json:"full_vote,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -2745,6 +2746,120 @@ func (m *VoteInfo) GetSignedLastBlock() bool { return false } +func (m *VoteInfo) GetFullVote() *Vote { + if m != nil { + return m.FullVote + } + return nil +} + +// Validator's vote for a block +type Vote struct { + Type int32 `protobuf:"varint,1,opt,name=type,proto3" json:"type,omitempty"` + // TODO: maybe remove height cause it could be derived from BeginBlock? + Height int64 `protobuf:"varint,2,opt,name=height,proto3" json:"height,omitempty"` + Round int32 `protobuf:"varint,3,opt,name=round,proto3" json:"round,omitempty"` + // TODO: maybe remove block id cause it's already in the header as last_block_id? + BlockId *BlockID `protobuf:"bytes,4,opt,name=block_id,proto3" json:"block_id,omitempty"` + Timestamp time.Time `protobuf:"bytes,5,opt,name=timestamp,proto3,stdtime" json:"timestamp"` + // TODO: maybe remove validator address cause it's already in VoteInfo.validator? + ValidatorAddress []byte `protobuf:"bytes,6,opt,name=validator_address,proto3" json:"validator_address,omitempty"` + ValidatorIndex int32 `protobuf:"varint,7,opt,name=validator_index,proto3" json:"validator_index,omitempty"` + Signature []byte `protobuf:"bytes,8,opt,name=signature,proto3" json:"signature,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *Vote) Reset() { *m = Vote{} } +func (m *Vote) String() string { return proto.CompactTextString(m) } +func (*Vote) ProtoMessage() {} +func (*Vote) Descriptor() ([]byte, []int) { + return fileDescriptor_9f1eaa49c51fa1ac, []int{38} +} +func (m *Vote) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *Vote) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_Vote.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *Vote) XXX_Merge(src proto.Message) { + xxx_messageInfo_Vote.Merge(m, src) +} +func (m *Vote) XXX_Size() int { + return m.Size() +} +func (m *Vote) XXX_DiscardUnknown() { + xxx_messageInfo_Vote.DiscardUnknown(m) +} + +var xxx_messageInfo_Vote proto.InternalMessageInfo + +func (m *Vote) GetType() int32 { + if m != nil { + return m.Type + } + return 0 +} + +func (m *Vote) GetHeight() int64 { + if m != nil { + return m.Height + } + return 0 +} + +func (m *Vote) GetRound() int32 { + if m != nil { + return m.Round + } + return 0 +} + +func (m *Vote) GetBlockId() *BlockID { + if m != nil { + return m.BlockId + } + return nil +} + +func (m *Vote) GetTimestamp() time.Time { + if m != nil { + return m.Timestamp + } + return time.Time{} +} + +func (m *Vote) GetValidatorAddress() []byte { + if m != nil { + return m.ValidatorAddress + } + return nil +} + +func (m *Vote) GetValidatorIndex() int32 { + if m != nil { + return m.ValidatorIndex + } + return 0 +} + +func (m *Vote) GetSignature() []byte { + if m != nil { + return m.Signature + } + return nil +} + type PubKey struct { Type string `protobuf:"bytes,1,opt,name=type,proto3" json:"type,omitempty"` Data []byte `protobuf:"bytes,2,opt,name=data,proto3" json:"data,omitempty"` @@ -2757,7 +2872,7 @@ func (m *PubKey) Reset() { *m = PubKey{} } func (m *PubKey) String() string { return proto.CompactTextString(m) } func (*PubKey) ProtoMessage() {} func (*PubKey) Descriptor() ([]byte, []int) { - return fileDescriptor_9f1eaa49c51fa1ac, []int{38} + return fileDescriptor_9f1eaa49c51fa1ac, []int{39} } func (m *PubKey) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2815,7 +2930,7 @@ func (m *Evidence) Reset() { *m = Evidence{} } func (m *Evidence) String() string { return proto.CompactTextString(m) } func (*Evidence) ProtoMessage() {} func (*Evidence) Descriptor() ([]byte, []int) { - return fileDescriptor_9f1eaa49c51fa1ac, []int{39} + return fileDescriptor_9f1eaa49c51fa1ac, []int{40} } func (m *Evidence) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2958,6 +3073,8 @@ func init() { golang_proto.RegisterType((*ValidatorUpdate)(nil), "types.ValidatorUpdate") proto.RegisterType((*VoteInfo)(nil), "types.VoteInfo") golang_proto.RegisterType((*VoteInfo)(nil), "types.VoteInfo") + proto.RegisterType((*Vote)(nil), "types.Vote") + golang_proto.RegisterType((*Vote)(nil), "types.Vote") proto.RegisterType((*PubKey)(nil), "types.PubKey") golang_proto.RegisterType((*PubKey)(nil), "types.PubKey") proto.RegisterType((*Evidence)(nil), "types.Evidence") @@ -2968,150 +3085,157 @@ func init() { proto.RegisterFile("abci/types/types.proto", fileDescriptor_9f1eaa func init() { golang_proto.RegisterFile("abci/types/types.proto", fileDescriptor_9f1eaa49c51fa1ac) } var fileDescriptor_9f1eaa49c51fa1ac = []byte{ - // 2279 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x58, 0xcd, 0x73, 0x1c, 0x47, - 0x15, 0xd7, 0xec, 0xf7, 0xbc, 0xd5, 0x7e, 0xb8, 0x2d, 0xdb, 0xeb, 0xc5, 0x48, 0xae, 0x31, 0x38, - 0x52, 0xe2, 0xac, 0x12, 0x05, 0x53, 0x32, 0x0e, 0xa9, 0xd2, 0xda, 0x06, 0xa9, 0x62, 0x82, 0x18, - 0xdb, 0xe2, 0x42, 0xd5, 0x54, 0xef, 0x4e, 0x7b, 0x77, 0xca, 0xbb, 0x33, 0x93, 0x99, 0x5e, 0x79, - 0xc5, 0x91, 0x73, 0x0e, 0x39, 0xf0, 0x27, 0x70, 0xe0, 0x4f, 0xc8, 0x91, 0x13, 0x95, 0x23, 0x07, - 0xce, 0x06, 0x44, 0x71, 0xa1, 0x8a, 0x33, 0x70, 0xa3, 0xfa, 0x75, 0xcf, 0xa7, 0x66, 0x4d, 0x62, - 0xb8, 0xe5, 0x22, 0x4d, 0xf7, 0xfb, 0xbd, 0xde, 0x7e, 0xdd, 0xef, 0xbd, 0xdf, 0x7b, 0x0d, 0x57, - 0xe9, 0x68, 0xec, 0xec, 0xf2, 0x33, 0x9f, 0x85, 0xf2, 0xef, 0xc0, 0x0f, 0x3c, 0xee, 0x91, 0x2a, - 0x0e, 0xfa, 0xef, 0x4e, 0x1c, 0x3e, 0x5d, 0x8c, 0x06, 0x63, 0x6f, 0xbe, 0x3b, 0xf1, 0x26, 0xde, - 0x2e, 0x4a, 0x47, 0x8b, 0xe7, 0x38, 0xc2, 0x01, 0x7e, 0x49, 0xad, 0xfe, 0xfd, 0x14, 0x9c, 0x33, - 0xd7, 0x66, 0xc1, 0xdc, 0x71, 0x79, 0xfa, 0x73, 0x1c, 0x9c, 0xf9, 0xdc, 0xdb, 0x9d, 0xb3, 0xe0, - 0xc5, 0x8c, 0xa9, 0x7f, 0x4a, 0x79, 0xff, 0xbf, 0x2a, 0xcf, 0x9c, 0x51, 0xb8, 0x3b, 0xf6, 0xe6, - 0x73, 0xcf, 0x4d, 0x6f, 0xb6, 0xbf, 0x35, 0xf1, 0xbc, 0xc9, 0x8c, 0x25, 0x9b, 0xe3, 0xce, 0x9c, - 0x85, 0x9c, 0xce, 0x7d, 0x09, 0x30, 0x7e, 0x5f, 0x81, 0xba, 0xc9, 0x3e, 0x5d, 0xb0, 0x90, 0x93, - 0x6d, 0xa8, 0xb0, 0xf1, 0xd4, 0xeb, 0x95, 0x6e, 0x6a, 0xdb, 0xcd, 0x3d, 0x32, 0x90, 0x0b, 0x29, - 0xe9, 0xa3, 0xf1, 0xd4, 0x3b, 0x5c, 0x33, 0x11, 0x41, 0xde, 0x81, 0xea, 0xf3, 0xd9, 0x22, 0x9c, - 0xf6, 0xca, 0x08, 0xbd, 0x9c, 0x85, 0xfe, 0x48, 0x88, 0x0e, 0xd7, 0x4c, 0x89, 0x11, 0xcb, 0x3a, - 0xee, 0x73, 0xaf, 0x57, 0x29, 0x5a, 0xf6, 0xc8, 0x7d, 0x8e, 0xcb, 0x0a, 0x04, 0xd9, 0x07, 0x08, - 0x19, 0xb7, 0x3c, 0x9f, 0x3b, 0x9e, 0xdb, 0xab, 0x22, 0xfe, 0x5a, 0x16, 0xff, 0x84, 0xf1, 0x9f, - 0xa2, 0xf8, 0x70, 0xcd, 0xd4, 0xc3, 0x68, 0x20, 0x34, 0x1d, 0xd7, 0xe1, 0xd6, 0x78, 0x4a, 0x1d, - 0xb7, 0x57, 0x2b, 0xd2, 0x3c, 0x72, 0x1d, 0xfe, 0x40, 0x88, 0x85, 0xa6, 0x13, 0x0d, 0x84, 0x29, - 0x9f, 0x2e, 0x58, 0x70, 0xd6, 0xab, 0x17, 0x99, 0xf2, 0x33, 0x21, 0x12, 0xa6, 0x20, 0x86, 0xdc, - 0x87, 0xe6, 0x88, 0x4d, 0x1c, 0xd7, 0x1a, 0xcd, 0xbc, 0xf1, 0x8b, 0x5e, 0x03, 0x55, 0x7a, 0x59, - 0x95, 0xa1, 0x00, 0x0c, 0x85, 0xfc, 0x70, 0xcd, 0x84, 0x51, 0x3c, 0x22, 0x7b, 0xd0, 0x18, 0x4f, - 0xd9, 0xf8, 0x85, 0xc5, 0x97, 0x3d, 0x1d, 0x35, 0xaf, 0x64, 0x35, 0x1f, 0x08, 0xe9, 0xd3, 0xe5, - 0xe1, 0x9a, 0x59, 0x1f, 0xcb, 0x4f, 0x61, 0x97, 0xcd, 0x66, 0xce, 0x29, 0x0b, 0x84, 0xd6, 0xe5, - 0x22, 0xbb, 0x1e, 0x4a, 0x39, 0xea, 0xe9, 0x76, 0x34, 0x20, 0x77, 0x41, 0x67, 0xae, 0xad, 0x36, - 0xda, 0x44, 0xc5, 0xab, 0xb9, 0x1b, 0x75, 0xed, 0x68, 0x9b, 0x0d, 0xa6, 0xbe, 0xc9, 0x00, 0x6a, - 0xc2, 0x8d, 0x1c, 0xde, 0x5b, 0x47, 0x9d, 0x8d, 0xdc, 0x16, 0x51, 0x76, 0xb8, 0x66, 0x2a, 0xd4, - 0xb0, 0x0e, 0xd5, 0x53, 0x3a, 0x5b, 0x30, 0xe3, 0x2d, 0x68, 0xa6, 0x3c, 0x85, 0xf4, 0xa0, 0x3e, - 0x67, 0x61, 0x48, 0x27, 0xac, 0xa7, 0xdd, 0xd4, 0xb6, 0x75, 0x33, 0x1a, 0x1a, 0x6d, 0x58, 0x4f, - 0xfb, 0x89, 0x31, 0x8f, 0x15, 0x85, 0x2f, 0x08, 0xc5, 0x53, 0x16, 0x84, 0xc2, 0x01, 0x94, 0xa2, - 0x1a, 0x92, 0x5b, 0xd0, 0x42, 0x6b, 0xac, 0x48, 0x2e, 0xfc, 0xb4, 0x62, 0xae, 0xe3, 0xe4, 0x89, - 0x02, 0x6d, 0x41, 0xd3, 0xdf, 0xf3, 0x63, 0x48, 0x19, 0x21, 0xe0, 0xef, 0xf9, 0x0a, 0x60, 0xfc, - 0x00, 0xba, 0x79, 0x57, 0x22, 0x5d, 0x28, 0xbf, 0x60, 0x67, 0xea, 0xf7, 0xc4, 0x27, 0xd9, 0x50, - 0x66, 0xe1, 0x6f, 0xe8, 0xa6, 0xb2, 0xf1, 0xf3, 0x52, 0xac, 0x1c, 0x7b, 0x13, 0xd9, 0x87, 0x8a, - 0x08, 0x2a, 0xd4, 0x6e, 0xee, 0xf5, 0x07, 0x32, 0xe2, 0x06, 0x51, 0xc4, 0x0d, 0x9e, 0x46, 0x11, - 0x37, 0x6c, 0x7c, 0xf9, 0x6a, 0x6b, 0xed, 0xf3, 0x3f, 0x6d, 0x69, 0x26, 0x6a, 0x90, 0xeb, 0xc2, - 0x21, 0xa8, 0xe3, 0x5a, 0x8e, 0xad, 0x7e, 0xa7, 0x8e, 0xe3, 0x23, 0x9b, 0x1c, 0x40, 0x77, 0xec, - 0xb9, 0x21, 0x73, 0xc3, 0x45, 0x68, 0xf9, 0x34, 0xa0, 0xf3, 0x50, 0xc5, 0x5a, 0x74, 0x89, 0x0f, - 0x22, 0xf1, 0x31, 0x4a, 0xcd, 0xce, 0x38, 0x3b, 0x41, 0x3e, 0x04, 0x38, 0xa5, 0x33, 0xc7, 0xa6, - 0xdc, 0x0b, 0xc2, 0x5e, 0xe5, 0x66, 0x39, 0xa5, 0x7c, 0x12, 0x09, 0x9e, 0xf9, 0x36, 0xe5, 0x6c, - 0x58, 0x11, 0x3b, 0x33, 0x53, 0x78, 0x72, 0x1b, 0x3a, 0xd4, 0xf7, 0xad, 0x90, 0x53, 0xce, 0xac, - 0xd1, 0x19, 0x67, 0x21, 0xc6, 0xe3, 0xba, 0xd9, 0xa2, 0xbe, 0xff, 0x44, 0xcc, 0x0e, 0xc5, 0xa4, - 0x61, 0xc7, 0xb7, 0x89, 0xa1, 0x42, 0x08, 0x54, 0x6c, 0xca, 0x29, 0x9e, 0xc6, 0xba, 0x89, 0xdf, - 0x62, 0xce, 0xa7, 0x7c, 0xaa, 0x6c, 0xc4, 0x6f, 0x72, 0x15, 0x6a, 0x53, 0xe6, 0x4c, 0xa6, 0x1c, - 0xcd, 0x2a, 0x9b, 0x6a, 0x24, 0x0e, 0xde, 0x0f, 0xbc, 0x53, 0x86, 0xd9, 0xa2, 0x61, 0xca, 0x81, - 0xf1, 0x37, 0x0d, 0x2e, 0x5d, 0x08, 0x2f, 0xb1, 0xee, 0x94, 0x86, 0xd3, 0xe8, 0xb7, 0xc4, 0x37, - 0x79, 0x47, 0xac, 0x4b, 0x6d, 0x16, 0xa8, 0x2c, 0xd6, 0x52, 0x16, 0x1f, 0xe2, 0xa4, 0x32, 0x54, - 0x41, 0xc8, 0x23, 0xe8, 0xce, 0x68, 0xc8, 0x2d, 0xe9, 0xcb, 0x16, 0x66, 0xa9, 0x72, 0x26, 0x32, - 0x1f, 0xd3, 0xc8, 0xe7, 0x85, 0x73, 0x2a, 0xf5, 0xf6, 0x2c, 0x33, 0x4b, 0x0e, 0x61, 0x63, 0x74, - 0xf6, 0x4b, 0xea, 0x72, 0xc7, 0x65, 0xd6, 0x85, 0x33, 0xef, 0xa8, 0xa5, 0x1e, 0x9d, 0x3a, 0x36, - 0x73, 0xc7, 0xd1, 0x61, 0x5f, 0x8e, 0x55, 0xe2, 0xcb, 0x08, 0x8d, 0x43, 0x68, 0x67, 0x73, 0x01, - 0x69, 0x43, 0x89, 0x2f, 0x95, 0x85, 0x25, 0xbe, 0x24, 0xb7, 0xa1, 0x22, 0x96, 0x43, 0xeb, 0xda, - 0x71, 0x32, 0x55, 0xe8, 0xa7, 0x67, 0x3e, 0x33, 0x51, 0x6e, 0x18, 0xb1, 0xa7, 0xc6, 0xf9, 0x21, - 0xbf, 0x96, 0xb1, 0x03, 0x9d, 0x5c, 0x2a, 0x48, 0x5d, 0x8b, 0x96, 0xbe, 0x16, 0xa3, 0x03, 0xad, - 0x4c, 0x06, 0x30, 0x3e, 0xab, 0x42, 0xc3, 0x64, 0xa1, 0x2f, 0x9c, 0x8e, 0xec, 0x83, 0xce, 0x96, - 0x63, 0x26, 0xd3, 0xb6, 0x96, 0x4b, 0x8a, 0x12, 0xf3, 0x28, 0x92, 0x8b, 0x2c, 0x15, 0x83, 0xc9, - 0x4e, 0x86, 0x72, 0x2e, 0xe7, 0x95, 0xd2, 0x9c, 0x73, 0x27, 0xcb, 0x39, 0x1b, 0x39, 0x6c, 0x8e, - 0x74, 0x76, 0x32, 0xa4, 0x93, 0x5f, 0x38, 0xc3, 0x3a, 0xf7, 0x0a, 0x58, 0x27, 0xbf, 0xfd, 0x15, - 0xb4, 0x73, 0xaf, 0x80, 0x76, 0x7a, 0x17, 0x7e, 0xab, 0x90, 0x77, 0xee, 0x64, 0x79, 0x27, 0x6f, - 0x4e, 0x8e, 0x78, 0x3e, 0x2c, 0x22, 0x9e, 0xeb, 0x39, 0x9d, 0x95, 0xcc, 0xf3, 0xc1, 0x05, 0xe6, - 0xb9, 0x9a, 0x53, 0x2d, 0xa0, 0x9e, 0x7b, 0x19, 0xea, 0x81, 0x42, 0xdb, 0x56, 0x70, 0xcf, 0xf7, - 0x2f, 0x72, 0xcf, 0xb5, 0xfc, 0xd5, 0x16, 0x91, 0xcf, 0x6e, 0x8e, 0x7c, 0xae, 0xe4, 0x77, 0xb9, - 0x92, 0x7d, 0x76, 0x44, 0x7e, 0xc8, 0x79, 0x9a, 0xc8, 0x25, 0x2c, 0x08, 0xbc, 0x40, 0x25, 0x76, - 0x39, 0x30, 0xb6, 0x45, 0xc6, 0x4a, 0xfc, 0xeb, 0x35, 0x4c, 0x85, 0x4e, 0x9f, 0xf2, 0x2e, 0xe3, - 0x0b, 0x2d, 0xd1, 0xc5, 0xc8, 0x4f, 0x67, 0x3b, 0x5d, 0x65, 0xbb, 0x14, 0x81, 0x95, 0xb2, 0x04, - 0xb6, 0x05, 0x4d, 0x91, 0x53, 0x73, 0xdc, 0x44, 0xfd, 0x88, 0x9b, 0xc8, 0xdb, 0x70, 0x09, 0xf3, - 0x91, 0xa4, 0x39, 0x15, 0x88, 0x15, 0x0c, 0xc4, 0x8e, 0x10, 0xc8, 0x13, 0x93, 0x89, 0xf2, 0x5d, - 0xb8, 0x9c, 0xc2, 0x8a, 0x75, 0x31, 0x17, 0xca, 0x24, 0xdd, 0x8d, 0xd1, 0x07, 0xbe, 0x7f, 0x48, - 0xc3, 0xa9, 0xf1, 0x93, 0xe4, 0x80, 0x12, 0xde, 0x23, 0x50, 0x19, 0x7b, 0xb6, 0xb4, 0xbb, 0x65, - 0xe2, 0xb7, 0xe0, 0xc2, 0x99, 0x37, 0xc1, 0xcd, 0xe9, 0xa6, 0xf8, 0x14, 0xa8, 0x38, 0x94, 0x74, - 0x19, 0x33, 0xc6, 0xaf, 0xb5, 0x64, 0xbd, 0x84, 0x0a, 0x8b, 0x58, 0x4b, 0xfb, 0x5f, 0x58, 0xab, - 0xf4, 0xf5, 0x58, 0xcb, 0x38, 0xd7, 0x92, 0x2b, 0x8b, 0xf9, 0xe8, 0xcd, 0x4c, 0x14, 0xde, 0xe3, - 0xb8, 0x36, 0x5b, 0xe2, 0x91, 0x96, 0x4d, 0x39, 0x88, 0x4a, 0x85, 0x1a, 0x1e, 0x73, 0xb6, 0x54, - 0xa8, 0xe3, 0x9c, 0x1c, 0x90, 0x5b, 0xc8, 0x63, 0xde, 0x73, 0x15, 0xaa, 0xad, 0x81, 0x2a, 0xe8, - 0x8f, 0xc5, 0xa4, 0x29, 0x65, 0xa9, 0x6c, 0xab, 0x67, 0x48, 0xf0, 0x06, 0xe8, 0x62, 0xa3, 0xa1, - 0x4f, 0xc7, 0x0c, 0x23, 0x4f, 0x37, 0x93, 0x09, 0xe3, 0x29, 0x90, 0x8b, 0x11, 0x4f, 0x3e, 0x82, - 0x1a, 0x3b, 0x65, 0x2e, 0x17, 0x27, 0x2e, 0x0e, 0x6d, 0x3d, 0xa6, 0x1d, 0xe6, 0xf2, 0x61, 0x4f, - 0x1c, 0xd5, 0xdf, 0x5f, 0x6d, 0x75, 0x25, 0xe6, 0x8e, 0x37, 0x77, 0x38, 0x9b, 0xfb, 0xfc, 0xcc, - 0x54, 0x5a, 0xc6, 0x3f, 0x35, 0xc1, 0x06, 0x99, 0x6c, 0x50, 0x78, 0x78, 0x91, 0xcb, 0x97, 0x52, - 0x04, 0xff, 0xd5, 0x0e, 0xf4, 0xdb, 0x00, 0x13, 0x1a, 0x5a, 0x2f, 0xa9, 0xcb, 0x99, 0xad, 0x4e, - 0x55, 0x9f, 0xd0, 0xf0, 0xe7, 0x38, 0x21, 0xaa, 0x21, 0x21, 0x5e, 0x84, 0xcc, 0xc6, 0xe3, 0x2d, - 0x9b, 0xf5, 0x09, 0x0d, 0x9f, 0x85, 0xcc, 0x4e, 0xd9, 0x56, 0x7f, 0x13, 0xdb, 0xb2, 0xe7, 0xd9, - 0xc8, 0x9f, 0xe7, 0xbf, 0x53, 0xbe, 0x9c, 0x90, 0xe5, 0x37, 0xc3, 0xf6, 0x7f, 0x68, 0xa2, 0x4e, - 0xc8, 0xa6, 0x64, 0x72, 0x04, 0x97, 0xe2, 0x98, 0xb2, 0x16, 0x18, 0x6b, 0x91, 0x57, 0xbd, 0x3e, - 0x14, 0xbb, 0xa7, 0xd9, 0xe9, 0x90, 0x7c, 0x02, 0xd7, 0x72, 0x19, 0x21, 0x5e, 0xb0, 0xf4, 0xda, - 0xc4, 0x70, 0x25, 0x9b, 0x18, 0xa2, 0xf5, 0x92, 0xd3, 0x28, 0xbf, 0x91, 0x97, 0x7f, 0x47, 0x14, - 0x58, 0x69, 0x32, 0x29, 0xba, 0x53, 0xe3, 0x37, 0x1a, 0x74, 0x72, 0x1b, 0x22, 0xdb, 0x50, 0x95, - 0x7c, 0xa6, 0x65, 0xda, 0x58, 0x3c, 0x31, 0xb5, 0x67, 0x09, 0x20, 0xef, 0x43, 0x83, 0xa9, 0x5a, - 0x4f, 0x19, 0x79, 0x25, 0x57, 0x02, 0x2a, 0x7c, 0x0c, 0x23, 0xdf, 0x03, 0x3d, 0x3e, 0xba, 0x5c, - 0x9d, 0x1f, 0x9f, 0xb4, 0x52, 0x4a, 0x80, 0xc6, 0x03, 0x68, 0xa6, 0x7e, 0x9e, 0x7c, 0x0b, 0xf4, - 0x39, 0x5d, 0xaa, 0x62, 0x5d, 0x96, 0x6f, 0x8d, 0x39, 0x5d, 0x62, 0x9d, 0x4e, 0xae, 0x41, 0x5d, - 0x08, 0x27, 0x54, 0x1e, 0x7c, 0xd9, 0xac, 0xcd, 0xe9, 0xf2, 0xc7, 0x34, 0x34, 0x76, 0xa0, 0x9d, - 0xdd, 0x56, 0x04, 0x8d, 0x08, 0x51, 0x42, 0x0f, 0x26, 0xcc, 0xb8, 0x0b, 0x9d, 0xdc, 0x6e, 0x88, - 0x01, 0x2d, 0x7f, 0x31, 0xb2, 0x5e, 0xb0, 0x33, 0x0b, 0xb7, 0x8b, 0x6e, 0xa2, 0x9b, 0x4d, 0x7f, - 0x31, 0xfa, 0x98, 0x9d, 0x89, 0x7a, 0x34, 0x34, 0x9e, 0x40, 0x3b, 0x5b, 0x46, 0x8b, 0x94, 0x19, - 0x78, 0x0b, 0xd7, 0xc6, 0xf5, 0xab, 0xa6, 0x1c, 0x88, 0x4e, 0xfc, 0xd4, 0x93, 0x9e, 0x91, 0xae, - 0x9b, 0x4f, 0x3c, 0xce, 0x52, 0xc5, 0xb7, 0xc4, 0x18, 0x0e, 0x54, 0xf1, 0xce, 0xc5, 0xfd, 0x61, - 0x41, 0xac, 0x28, 0x58, 0x7c, 0x93, 0xc7, 0x00, 0x94, 0xf3, 0xc0, 0x19, 0x2d, 0x92, 0xe5, 0xda, - 0x03, 0xf9, 0x3c, 0x32, 0xf8, 0xf8, 0xe4, 0x98, 0x3a, 0xc1, 0xf0, 0x86, 0xf2, 0x95, 0x8d, 0x04, - 0x99, 0xf2, 0x97, 0x94, 0xbe, 0xf1, 0xab, 0x2a, 0xd4, 0x64, 0xfb, 0x40, 0x06, 0xd9, 0xe6, 0x54, - 0xac, 0xaa, 0x36, 0x29, 0x67, 0xd5, 0x1e, 0x63, 0xc6, 0xbf, 0x9d, 0xef, 0xf0, 0x86, 0xcd, 0xf3, - 0x57, 0x5b, 0x75, 0x64, 0xcb, 0xa3, 0x87, 0x49, 0xbb, 0xb7, 0xaa, 0x1b, 0x8a, 0x7a, 0xcb, 0xca, - 0xd7, 0xee, 0x2d, 0xaf, 0x41, 0xdd, 0x5d, 0xcc, 0x2d, 0xbe, 0x0c, 0x55, 0xb6, 0xa9, 0xb9, 0x8b, - 0xf9, 0xd3, 0x25, 0x7a, 0x09, 0xf7, 0x38, 0x9d, 0xa1, 0x48, 0xe6, 0x9a, 0x06, 0x4e, 0x08, 0xe1, - 0x3e, 0xb4, 0x52, 0x45, 0x85, 0x63, 0xab, 0xe2, 0xb4, 0x9d, 0x76, 0xf6, 0xa3, 0x87, 0xca, 0xca, - 0x66, 0x5c, 0x64, 0x1c, 0xd9, 0x64, 0x3b, 0xdb, 0x4a, 0x61, 0x2d, 0xd2, 0xc0, 0x90, 0x4a, 0x75, - 0x4b, 0xa2, 0x12, 0x11, 0x1b, 0x10, 0x41, 0x26, 0x21, 0x3a, 0x42, 0x1a, 0x62, 0x02, 0x85, 0x6f, - 0x41, 0x27, 0xa1, 0x73, 0x09, 0x01, 0xb9, 0x4a, 0x32, 0x8d, 0xc0, 0xf7, 0x60, 0xc3, 0x65, 0x4b, - 0x6e, 0xe5, 0xd1, 0x4d, 0x44, 0x13, 0x21, 0x3b, 0xc9, 0x6a, 0x7c, 0x17, 0xda, 0x49, 0x2a, 0x42, - 0xec, 0xba, 0x6c, 0x68, 0xe3, 0x59, 0x84, 0x5d, 0x87, 0x46, 0x5c, 0x4c, 0xb5, 0x10, 0x50, 0xa7, - 0xb2, 0x86, 0x8a, 0xcb, 0xb3, 0x80, 0x85, 0x8b, 0x19, 0x57, 0x8b, 0xb4, 0x11, 0x83, 0xe5, 0x99, - 0x29, 0xe7, 0x11, 0x7b, 0x0b, 0x5a, 0x51, 0x74, 0x4b, 0x5c, 0x07, 0x71, 0xeb, 0xd1, 0x24, 0x82, - 0x76, 0xa0, 0xeb, 0x07, 0x9e, 0xef, 0x85, 0x2c, 0xb0, 0xa8, 0x6d, 0x07, 0x2c, 0x0c, 0x7b, 0x5d, - 0xb9, 0x5e, 0x34, 0x7f, 0x20, 0xa7, 0x8d, 0xf7, 0xa1, 0x1e, 0x55, 0x89, 0x1b, 0x50, 0x1d, 0xc6, - 0x99, 0xa8, 0x62, 0xca, 0x81, 0xe0, 0xa1, 0x03, 0xdf, 0x57, 0x6f, 0x22, 0xe2, 0xd3, 0xf8, 0x05, - 0xd4, 0xd5, 0x85, 0x15, 0x76, 0xca, 0x3f, 0x84, 0x75, 0x9f, 0x06, 0xc2, 0x8c, 0x74, 0xbf, 0x1c, - 0xf5, 0x21, 0xc7, 0x34, 0xe0, 0x4f, 0x18, 0xcf, 0xb4, 0xcd, 0x4d, 0xc4, 0xcb, 0x29, 0xe3, 0x1e, - 0xb4, 0x32, 0x18, 0xb1, 0x2d, 0xf4, 0xa3, 0x28, 0xa8, 0x71, 0x10, 0xff, 0x72, 0x29, 0xf9, 0x65, - 0xe3, 0x3e, 0xe8, 0xf1, 0xdd, 0x88, 0x72, 0x39, 0x32, 0x5d, 0x53, 0xc7, 0x2d, 0x87, 0xf8, 0x14, - 0xe0, 0xbd, 0x64, 0x81, 0x8a, 0x09, 0x39, 0x30, 0x9e, 0xa5, 0x92, 0x90, 0x64, 0x05, 0x72, 0x07, - 0xea, 0x2a, 0x09, 0xa9, 0xa8, 0x8c, 0x9a, 0xfe, 0x63, 0xcc, 0x42, 0x51, 0xd3, 0x2f, 0x73, 0x52, - 0xb2, 0x6c, 0x29, 0xbd, 0xec, 0x0c, 0x1a, 0x51, 0xa2, 0xc9, 0x66, 0x63, 0xb9, 0x62, 0x37, 0x9f, - 0x8d, 0xd5, 0xa2, 0x09, 0x50, 0x78, 0x47, 0xe8, 0x4c, 0x5c, 0x66, 0x5b, 0x49, 0x08, 0xe1, 0x6f, - 0x34, 0xcc, 0x8e, 0x14, 0x3c, 0x8e, 0xe2, 0xc5, 0x78, 0x0f, 0x6a, 0x72, 0x6f, 0x85, 0xe9, 0xab, - 0x88, 0x92, 0xfe, 0xa8, 0x41, 0x23, 0xca, 0xd3, 0x85, 0x4a, 0x99, 0x4d, 0x97, 0xbe, 0xea, 0xa6, - 0xff, 0xff, 0x89, 0xe7, 0x0e, 0x10, 0x99, 0x5f, 0x4e, 0x3d, 0xee, 0xb8, 0x13, 0x4b, 0x9e, 0xb5, - 0xcc, 0x41, 0x5d, 0x94, 0x9c, 0xa0, 0xe0, 0x58, 0xcc, 0xbf, 0x7d, 0x0b, 0x9a, 0xa9, 0xb7, 0x0b, - 0x52, 0x87, 0xf2, 0x27, 0xec, 0x65, 0x77, 0x8d, 0x34, 0xa1, 0x6e, 0x32, 0xec, 0x44, 0xbb, 0xda, - 0xde, 0x67, 0x55, 0xe8, 0x1c, 0x0c, 0x1f, 0x1c, 0x1d, 0xf8, 0xfe, 0xcc, 0x19, 0x53, 0x6c, 0x5d, - 0x76, 0xa1, 0x82, 0xdd, 0x5b, 0xc1, 0x2b, 0x75, 0xbf, 0xe8, 0x19, 0x81, 0xec, 0x41, 0x15, 0x9b, - 0x38, 0x52, 0xf4, 0x58, 0xdd, 0x2f, 0x7c, 0x4d, 0x10, 0x3f, 0x22, 0xdb, 0xbc, 0x8b, 0x6f, 0xd6, - 0xfd, 0xa2, 0x27, 0x05, 0xf2, 0x11, 0xe8, 0x49, 0x77, 0xb5, 0xea, 0xe5, 0xba, 0xbf, 0xf2, 0x71, - 0x41, 0xe8, 0x27, 0x15, 0xe8, 0xaa, 0x77, 0xde, 0xfe, 0xca, 0x2e, 0x9c, 0xec, 0x43, 0x3d, 0xaa, - 0xdd, 0x8b, 0xdf, 0x96, 0xfb, 0x2b, 0x1a, 0x7f, 0x71, 0x3c, 0xb2, 0x61, 0x2a, 0x7a, 0x00, 0xef, - 0x17, 0xbe, 0x4e, 0x90, 0xbb, 0x50, 0x53, 0x45, 0x54, 0xe1, 0x2b, 0x71, 0xbf, 0xb8, 0x7d, 0x17, - 0x46, 0x26, 0x2d, 0xe3, 0xaa, 0x47, 0xfa, 0xfe, 0xca, 0x67, 0x14, 0x72, 0x00, 0x90, 0xea, 0x7b, - 0x56, 0xbe, 0xbe, 0xf7, 0x57, 0x3f, 0x8f, 0x90, 0xfb, 0xd0, 0x48, 0x9e, 0xbc, 0x8a, 0x5f, 0xc5, - 0xfb, 0xab, 0x5e, 0x2c, 0x86, 0x37, 0xfe, 0xf5, 0x97, 0x4d, 0xed, 0xb7, 0xe7, 0x9b, 0xda, 0x17, - 0xe7, 0x9b, 0xda, 0x97, 0xe7, 0x9b, 0xda, 0x1f, 0xce, 0x37, 0xb5, 0x3f, 0x9f, 0x6f, 0x6a, 0xbf, - 0xfb, 0xeb, 0xa6, 0x36, 0xaa, 0x61, 0x8c, 0x7c, 0xf0, 0x9f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x46, - 0x07, 0xcf, 0xb8, 0x3f, 0x1a, 0x00, 0x00, + // 2388 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x59, 0xcf, 0x73, 0x1b, 0x49, + 0xf5, 0xf7, 0xe8, 0x87, 0xa5, 0x79, 0xb2, 0x7e, 0x6c, 0xc7, 0x49, 0xb4, 0xfa, 0xe6, 0x6b, 0xa7, + 0x26, 0x90, 0xb5, 0xb3, 0x5e, 0x79, 0xd7, 0x4b, 0x28, 0x87, 0x2c, 0x5b, 0x65, 0x25, 0x01, 0xbb, + 0x36, 0x2c, 0x66, 0x92, 0x98, 0x0b, 0x55, 0x53, 0x2d, 0x4d, 0x5b, 0x9a, 0x8a, 0x34, 0x33, 0x3b, + 0xd3, 0x72, 0x64, 0x8e, 0x9c, 0xf7, 0xb0, 0x07, 0x8a, 0xbf, 0x80, 0x03, 0x27, 0xce, 0x7b, 0xe4, + 0x44, 0xed, 0x91, 0x03, 0xe7, 0x00, 0xa6, 0xb8, 0x50, 0xc5, 0x19, 0xb8, 0x51, 0xfd, 0xba, 0xe7, + 0xa7, 0x47, 0x21, 0x1b, 0xb8, 0x71, 0xb1, 0xbb, 0xfb, 0xbd, 0xd7, 0xd3, 0x3f, 0xde, 0xfb, 0x7c, + 0xde, 0x6b, 0xc1, 0x35, 0x3a, 0x1c, 0x39, 0xbb, 0xfc, 0xdc, 0x67, 0xa1, 0xfc, 0xdb, 0xf7, 0x03, + 0x8f, 0x7b, 0xa4, 0x8a, 0x9d, 0xde, 0x7b, 0x63, 0x87, 0x4f, 0xe6, 0xc3, 0xfe, 0xc8, 0x9b, 0xed, + 0x8e, 0xbd, 0xb1, 0xb7, 0x8b, 0xd2, 0xe1, 0xfc, 0x14, 0x7b, 0xd8, 0xc1, 0x96, 0xb4, 0xea, 0xdd, + 0x4f, 0xa9, 0x73, 0xe6, 0xda, 0x2c, 0x98, 0x39, 0x2e, 0x4f, 0x37, 0x47, 0xc1, 0xb9, 0xcf, 0xbd, + 0xdd, 0x19, 0x0b, 0x9e, 0x4f, 0x99, 0xfa, 0xa7, 0x8c, 0xf7, 0xff, 0xad, 0xf1, 0xd4, 0x19, 0x86, + 0xbb, 0x23, 0x6f, 0x36, 0xf3, 0xdc, 0xf4, 0x62, 0x7b, 0x9b, 0x63, 0xcf, 0x1b, 0x4f, 0x59, 0xb2, + 0x38, 0xee, 0xcc, 0x58, 0xc8, 0xe9, 0xcc, 0x97, 0x0a, 0xc6, 0x6f, 0x2b, 0x50, 0x33, 0xd9, 0x67, + 0x73, 0x16, 0x72, 0xb2, 0x05, 0x15, 0x36, 0x9a, 0x78, 0xdd, 0xd2, 0x4d, 0x6d, 0xab, 0xb1, 0x47, + 0xfa, 0x72, 0x22, 0x25, 0x7d, 0x34, 0x9a, 0x78, 0x87, 0x2b, 0x26, 0x6a, 0x90, 0x77, 0xa1, 0x7a, + 0x3a, 0x9d, 0x87, 0x93, 0x6e, 0x19, 0x55, 0xaf, 0x64, 0x55, 0xbf, 0x27, 0x44, 0x87, 0x2b, 0xa6, + 0xd4, 0x11, 0xd3, 0x3a, 0xee, 0xa9, 0xd7, 0xad, 0x14, 0x4d, 0x7b, 0xe4, 0x9e, 0xe2, 0xb4, 0x42, + 0x83, 0xec, 0x03, 0x84, 0x8c, 0x5b, 0x9e, 0xcf, 0x1d, 0xcf, 0xed, 0x56, 0x51, 0xff, 0x7a, 0x56, + 0xff, 0x09, 0xe3, 0x3f, 0x44, 0xf1, 0xe1, 0x8a, 0xa9, 0x87, 0x51, 0x47, 0x58, 0x3a, 0xae, 0xc3, + 0xad, 0xd1, 0x84, 0x3a, 0x6e, 0x77, 0xb5, 0xc8, 0xf2, 0xc8, 0x75, 0xf8, 0x03, 0x21, 0x16, 0x96, + 0x4e, 0xd4, 0x11, 0x5b, 0xf9, 0x6c, 0xce, 0x82, 0xf3, 0x6e, 0xad, 0x68, 0x2b, 0x3f, 0x12, 0x22, + 0xb1, 0x15, 0xd4, 0x21, 0xf7, 0xa1, 0x31, 0x64, 0x63, 0xc7, 0xb5, 0x86, 0x53, 0x6f, 0xf4, 0xbc, + 0x5b, 0x47, 0x93, 0x6e, 0xd6, 0x64, 0x20, 0x14, 0x06, 0x42, 0x7e, 0xb8, 0x62, 0xc2, 0x30, 0xee, + 0x91, 0x3d, 0xa8, 0x8f, 0x26, 0x6c, 0xf4, 0xdc, 0xe2, 0x8b, 0xae, 0x8e, 0x96, 0x57, 0xb3, 0x96, + 0x0f, 0x84, 0xf4, 0xe9, 0xe2, 0x70, 0xc5, 0xac, 0x8d, 0x64, 0x53, 0xec, 0xcb, 0x66, 0x53, 0xe7, + 0x8c, 0x05, 0xc2, 0xea, 0x4a, 0xd1, 0xbe, 0x1e, 0x4a, 0x39, 0xda, 0xe9, 0x76, 0xd4, 0x21, 0x77, + 0x41, 0x67, 0xae, 0xad, 0x16, 0xda, 0x40, 0xc3, 0x6b, 0xb9, 0x1b, 0x75, 0xed, 0x68, 0x99, 0x75, + 0xa6, 0xda, 0xa4, 0x0f, 0xab, 0xc2, 0x8d, 0x1c, 0xde, 0x5d, 0x43, 0x9b, 0xf5, 0xdc, 0x12, 0x51, + 0x76, 0xb8, 0x62, 0x2a, 0xad, 0x41, 0x0d, 0xaa, 0x67, 0x74, 0x3a, 0x67, 0xc6, 0x3b, 0xd0, 0x48, + 0x79, 0x0a, 0xe9, 0x42, 0x6d, 0xc6, 0xc2, 0x90, 0x8e, 0x59, 0x57, 0xbb, 0xa9, 0x6d, 0xe9, 0x66, + 0xd4, 0x35, 0x5a, 0xb0, 0x96, 0xf6, 0x13, 0x63, 0x16, 0x1b, 0x0a, 0x5f, 0x10, 0x86, 0x67, 0x2c, + 0x08, 0x85, 0x03, 0x28, 0x43, 0xd5, 0x25, 0xb7, 0xa0, 0x89, 0xbb, 0xb1, 0x22, 0xb9, 0xf0, 0xd3, + 0x8a, 0xb9, 0x86, 0x83, 0x27, 0x4a, 0x69, 0x13, 0x1a, 0xfe, 0x9e, 0x1f, 0xab, 0x94, 0x51, 0x05, + 0xfc, 0x3d, 0x5f, 0x29, 0x18, 0xdf, 0x81, 0x4e, 0xde, 0x95, 0x48, 0x07, 0xca, 0xcf, 0xd9, 0xb9, + 0xfa, 0x9e, 0x68, 0x92, 0x75, 0xb5, 0x2d, 0xfc, 0x86, 0x6e, 0xaa, 0x3d, 0x7e, 0x51, 0x8a, 0x8d, + 0x63, 0x6f, 0x22, 0xfb, 0x50, 0x11, 0x41, 0x85, 0xd6, 0x8d, 0xbd, 0x5e, 0x5f, 0x46, 0x5c, 0x3f, + 0x8a, 0xb8, 0xfe, 0xd3, 0x28, 0xe2, 0x06, 0xf5, 0xaf, 0x5e, 0x6e, 0xae, 0x7c, 0xf1, 0x87, 0x4d, + 0xcd, 0x44, 0x0b, 0xf2, 0xb6, 0x70, 0x08, 0xea, 0xb8, 0x96, 0x63, 0xab, 0xef, 0xd4, 0xb0, 0x7f, + 0x64, 0x93, 0x03, 0xe8, 0x8c, 0x3c, 0x37, 0x64, 0x6e, 0x38, 0x0f, 0x2d, 0x9f, 0x06, 0x74, 0x16, + 0xaa, 0x58, 0x8b, 0x2e, 0xf1, 0x41, 0x24, 0x3e, 0x46, 0xa9, 0xd9, 0x1e, 0x65, 0x07, 0xc8, 0x47, + 0x00, 0x67, 0x74, 0xea, 0xd8, 0x94, 0x7b, 0x41, 0xd8, 0xad, 0xdc, 0x2c, 0xa7, 0x8c, 0x4f, 0x22, + 0xc1, 0x33, 0xdf, 0xa6, 0x9c, 0x0d, 0x2a, 0x62, 0x65, 0x66, 0x4a, 0x9f, 0xdc, 0x86, 0x36, 0xf5, + 0x7d, 0x2b, 0xe4, 0x94, 0x33, 0x6b, 0x78, 0xce, 0x59, 0x88, 0xf1, 0xb8, 0x66, 0x36, 0xa9, 0xef, + 0x3f, 0x11, 0xa3, 0x03, 0x31, 0x68, 0xd8, 0xf1, 0x6d, 0x62, 0xa8, 0x10, 0x02, 0x15, 0x9b, 0x72, + 0x8a, 0xa7, 0xb1, 0x66, 0x62, 0x5b, 0x8c, 0xf9, 0x94, 0x4f, 0xd4, 0x1e, 0xb1, 0x4d, 0xae, 0xc1, + 0xea, 0x84, 0x39, 0xe3, 0x09, 0xc7, 0x6d, 0x95, 0x4d, 0xd5, 0x13, 0x07, 0xef, 0x07, 0xde, 0x19, + 0x43, 0xb4, 0xa8, 0x9b, 0xb2, 0x63, 0xfc, 0x45, 0x83, 0xb7, 0x2e, 0x85, 0x97, 0x98, 0x77, 0x42, + 0xc3, 0x49, 0xf4, 0x2d, 0xd1, 0x26, 0xef, 0x8a, 0x79, 0xa9, 0xcd, 0x02, 0x85, 0x62, 0x4d, 0xb5, + 0xe3, 0x43, 0x1c, 0x54, 0x1b, 0x55, 0x2a, 0xe4, 0x11, 0x74, 0xa6, 0x34, 0xe4, 0x96, 0xf4, 0x65, + 0x0b, 0x51, 0xaa, 0x9c, 0x89, 0xcc, 0xc7, 0x34, 0xf2, 0x79, 0xe1, 0x9c, 0xca, 0xbc, 0x35, 0xcd, + 0x8c, 0x92, 0x43, 0x58, 0x1f, 0x9e, 0xff, 0x94, 0xba, 0xdc, 0x71, 0x99, 0x75, 0xe9, 0xcc, 0xdb, + 0x6a, 0xaa, 0x47, 0x67, 0x8e, 0xcd, 0xdc, 0x51, 0x74, 0xd8, 0x57, 0x62, 0x93, 0xf8, 0x32, 0x42, + 0xe3, 0x10, 0x5a, 0x59, 0x2c, 0x20, 0x2d, 0x28, 0xf1, 0x85, 0xda, 0x61, 0x89, 0x2f, 0xc8, 0x6d, + 0xa8, 0x88, 0xe9, 0x70, 0x77, 0xad, 0x18, 0x4c, 0x95, 0xf6, 0xd3, 0x73, 0x9f, 0x99, 0x28, 0x37, + 0x8c, 0xd8, 0x53, 0x63, 0x7c, 0xc8, 0xcf, 0x65, 0x6c, 0x43, 0x3b, 0x07, 0x05, 0xa9, 0x6b, 0xd1, + 0xd2, 0xd7, 0x62, 0xb4, 0xa1, 0x99, 0x41, 0x00, 0xe3, 0xf3, 0x2a, 0xd4, 0x4d, 0x16, 0xfa, 0xc2, + 0xe9, 0xc8, 0x3e, 0xe8, 0x6c, 0x31, 0x62, 0x12, 0xb6, 0xb5, 0x1c, 0x28, 0x4a, 0x9d, 0x47, 0x91, + 0x5c, 0xa0, 0x54, 0xac, 0x4c, 0xb6, 0x33, 0x94, 0x73, 0x25, 0x6f, 0x94, 0xe6, 0x9c, 0x9d, 0x2c, + 0xe7, 0xac, 0xe7, 0x74, 0x73, 0xa4, 0xb3, 0x9d, 0x21, 0x9d, 0xfc, 0xc4, 0x19, 0xd6, 0xb9, 0x57, + 0xc0, 0x3a, 0xf9, 0xe5, 0x2f, 0xa1, 0x9d, 0x7b, 0x05, 0xb4, 0xd3, 0xbd, 0xf4, 0xad, 0x42, 0xde, + 0xd9, 0xc9, 0xf2, 0x4e, 0x7e, 0x3b, 0x39, 0xe2, 0xf9, 0xa8, 0x88, 0x78, 0xde, 0xce, 0xd9, 0x2c, + 0x65, 0x9e, 0x0f, 0x2f, 0x31, 0xcf, 0xb5, 0x9c, 0x69, 0x01, 0xf5, 0xdc, 0xcb, 0x50, 0x0f, 0x14, + 0xee, 0x6d, 0x09, 0xf7, 0x7c, 0xfb, 0x32, 0xf7, 0x5c, 0xcf, 0x5f, 0x6d, 0x11, 0xf9, 0xec, 0xe6, + 0xc8, 0xe7, 0x6a, 0x7e, 0x95, 0x4b, 0xd9, 0x67, 0x5b, 0xe0, 0x43, 0xce, 0xd3, 0x04, 0x96, 0xb0, + 0x20, 0xf0, 0x02, 0x05, 0xec, 0xb2, 0x63, 0x6c, 0x09, 0xc4, 0x4a, 0xfc, 0xeb, 0x15, 0x4c, 0x85, + 0x4e, 0x9f, 0xf2, 0x2e, 0xe3, 0x4b, 0x2d, 0xb1, 0xc5, 0xc8, 0x4f, 0xa3, 0x9d, 0xae, 0xd0, 0x2e, + 0x45, 0x60, 0xa5, 0x2c, 0x81, 0x6d, 0x42, 0x43, 0x60, 0x6a, 0x8e, 0x9b, 0xa8, 0x1f, 0x71, 0x13, + 0xb9, 0x03, 0x6f, 0x21, 0x1e, 0x49, 0x9a, 0x53, 0x81, 0x58, 0xc1, 0x40, 0x6c, 0x0b, 0x81, 0x3c, + 0x31, 0x09, 0x94, 0xef, 0xc1, 0x95, 0x94, 0xae, 0x98, 0x17, 0xb1, 0x50, 0x82, 0x74, 0x27, 0xd6, + 0x3e, 0xf0, 0xfd, 0x43, 0x1a, 0x4e, 0x8c, 0x1f, 0x24, 0x07, 0x94, 0xf0, 0x1e, 0x81, 0xca, 0xc8, + 0xb3, 0xe5, 0xbe, 0x9b, 0x26, 0xb6, 0x05, 0x17, 0x4e, 0xbd, 0x31, 0x2e, 0x4e, 0x37, 0x45, 0x53, + 0x68, 0xc5, 0xa1, 0xa4, 0xcb, 0x98, 0x31, 0x7e, 0xae, 0x25, 0xf3, 0x25, 0x54, 0x58, 0xc4, 0x5a, + 0xda, 0x7f, 0xc2, 0x5a, 0xa5, 0xaf, 0xc7, 0x5a, 0xc6, 0x85, 0x96, 0x5c, 0x59, 0xcc, 0x47, 0x6f, + 0xb6, 0x45, 0xe1, 0x3d, 0x8e, 0x6b, 0xb3, 0x05, 0x1e, 0x69, 0xd9, 0x94, 0x9d, 0x28, 0x55, 0x58, + 0xc5, 0x63, 0xce, 0xa6, 0x0a, 0x35, 0x1c, 0x93, 0x1d, 0x72, 0x0b, 0x79, 0xcc, 0x3b, 0x55, 0xa1, + 0xda, 0xec, 0xab, 0x84, 0xfe, 0x58, 0x0c, 0x9a, 0x52, 0x96, 0x42, 0x5b, 0x3d, 0x43, 0x82, 0x37, + 0x40, 0x17, 0x0b, 0x0d, 0x7d, 0x3a, 0x62, 0x18, 0x79, 0xba, 0x99, 0x0c, 0x18, 0x4f, 0x81, 0x5c, + 0x8e, 0x78, 0xf2, 0x31, 0xac, 0xb2, 0x33, 0xe6, 0x72, 0x71, 0xe2, 0xe2, 0xd0, 0xd6, 0x62, 0xda, + 0x61, 0x2e, 0x1f, 0x74, 0xc5, 0x51, 0xfd, 0xf5, 0xe5, 0x66, 0x47, 0xea, 0xec, 0x78, 0x33, 0x87, + 0xb3, 0x99, 0xcf, 0xcf, 0x4d, 0x65, 0x65, 0xfc, 0x5d, 0x13, 0x6c, 0x90, 0x41, 0x83, 0xc2, 0xc3, + 0x8b, 0x5c, 0xbe, 0x94, 0x22, 0xf8, 0xd7, 0x3b, 0xd0, 0xff, 0x07, 0x18, 0xd3, 0xd0, 0x7a, 0x41, + 0x5d, 0xce, 0x6c, 0x75, 0xaa, 0xfa, 0x98, 0x86, 0x3f, 0xc6, 0x01, 0x91, 0x0d, 0x09, 0xf1, 0x3c, + 0x64, 0x36, 0x1e, 0x6f, 0xd9, 0xac, 0x8d, 0x69, 0xf8, 0x2c, 0x64, 0x76, 0x6a, 0x6f, 0xb5, 0x37, + 0xd9, 0x5b, 0xf6, 0x3c, 0xeb, 0xf9, 0xf3, 0xfc, 0x67, 0xca, 0x97, 0x13, 0xb2, 0xfc, 0xdf, 0xd8, + 0xfb, 0xdf, 0x34, 0x91, 0x27, 0x64, 0x21, 0x99, 0x1c, 0xc1, 0x5b, 0x71, 0x4c, 0x59, 0x73, 0x8c, + 0xb5, 0xc8, 0xab, 0x5e, 0x1d, 0x8a, 0x9d, 0xb3, 0xec, 0x70, 0x48, 0x3e, 0x85, 0xeb, 0x39, 0x44, + 0x88, 0x27, 0x2c, 0xbd, 0x12, 0x18, 0xae, 0x66, 0x81, 0x21, 0x9a, 0x2f, 0x39, 0x8d, 0xf2, 0x1b, + 0x79, 0xf9, 0x37, 0x44, 0x82, 0x95, 0x26, 0x93, 0xa2, 0x3b, 0x35, 0x7e, 0xa9, 0x41, 0x3b, 0xb7, + 0x20, 0xb2, 0x05, 0x55, 0xc9, 0x67, 0x5a, 0xa6, 0x8c, 0xc5, 0x13, 0x53, 0x6b, 0x96, 0x0a, 0xe4, + 0x03, 0xa8, 0x33, 0x95, 0xeb, 0xa9, 0x4d, 0x5e, 0xcd, 0xa5, 0x80, 0x4a, 0x3f, 0x56, 0x23, 0xdf, + 0x02, 0x3d, 0x3e, 0xba, 0x5c, 0x9e, 0x1f, 0x9f, 0xb4, 0x32, 0x4a, 0x14, 0x8d, 0x07, 0xd0, 0x48, + 0x7d, 0x9e, 0xfc, 0x1f, 0xe8, 0x33, 0xba, 0x50, 0xc9, 0xba, 0x4c, 0xdf, 0xea, 0x33, 0xba, 0xc0, + 0x3c, 0x9d, 0x5c, 0x87, 0x9a, 0x10, 0x8e, 0xa9, 0x3c, 0xf8, 0xb2, 0xb9, 0x3a, 0xa3, 0x8b, 0xef, + 0xd3, 0xd0, 0xd8, 0x86, 0x56, 0x76, 0x59, 0x91, 0x6a, 0x44, 0x88, 0x52, 0xf5, 0x60, 0xcc, 0x8c, + 0xbb, 0xd0, 0xce, 0xad, 0x86, 0x18, 0xd0, 0xf4, 0xe7, 0x43, 0xeb, 0x39, 0x3b, 0xb7, 0x70, 0xb9, + 0xe8, 0x26, 0xba, 0xd9, 0xf0, 0xe7, 0xc3, 0x4f, 0xd8, 0xb9, 0xc8, 0x47, 0x43, 0xe3, 0x09, 0xb4, + 0xb2, 0x69, 0xb4, 0x80, 0xcc, 0xc0, 0x9b, 0xbb, 0x36, 0xce, 0x5f, 0x35, 0x65, 0x47, 0x54, 0xe2, + 0x67, 0x9e, 0xf4, 0x8c, 0x74, 0xde, 0x7c, 0xe2, 0x71, 0x96, 0x4a, 0xbe, 0xa5, 0x8e, 0xe1, 0x40, + 0x15, 0xef, 0x5c, 0xdc, 0x1f, 0x26, 0xc4, 0x8a, 0x82, 0x45, 0x9b, 0x3c, 0x06, 0xa0, 0x9c, 0x07, + 0xce, 0x70, 0x9e, 0x4c, 0xd7, 0xea, 0xcb, 0xe7, 0x91, 0xfe, 0x27, 0x27, 0xc7, 0xd4, 0x09, 0x06, + 0x37, 0x94, 0xaf, 0xac, 0x27, 0x9a, 0x29, 0x7f, 0x49, 0xd9, 0x1b, 0x3f, 0xab, 0xc2, 0xaa, 0x2c, + 0x1f, 0x48, 0x3f, 0x5b, 0x9c, 0x8a, 0x59, 0xd5, 0x22, 0xe5, 0xa8, 0x5a, 0x63, 0xcc, 0xf8, 0xb7, + 0xf3, 0x15, 0xde, 0xa0, 0x71, 0xf1, 0x72, 0xb3, 0x86, 0x6c, 0x79, 0xf4, 0x30, 0x29, 0xf7, 0x96, + 0x55, 0x43, 0x51, 0x6d, 0x59, 0xf9, 0xda, 0xb5, 0xe5, 0x75, 0xa8, 0xb9, 0xf3, 0x99, 0xc5, 0x17, + 0xa1, 0x42, 0x9b, 0x55, 0x77, 0x3e, 0x7b, 0xba, 0x40, 0x2f, 0xe1, 0x1e, 0xa7, 0x53, 0x14, 0x49, + 0xac, 0xa9, 0xe3, 0x80, 0x10, 0xee, 0x43, 0x33, 0x95, 0x54, 0x38, 0xb6, 0x4a, 0x4e, 0x5b, 0x69, + 0x67, 0x3f, 0x7a, 0xa8, 0x76, 0xd9, 0x88, 0x93, 0x8c, 0x23, 0x9b, 0x6c, 0x65, 0x4b, 0x29, 0xcc, + 0x45, 0xea, 0x18, 0x52, 0xa9, 0x6a, 0x49, 0x64, 0x22, 0x62, 0x01, 0x22, 0xc8, 0xa4, 0x8a, 0x8e, + 0x2a, 0x75, 0x31, 0x80, 0xc2, 0x77, 0xa0, 0x9d, 0xd0, 0xb9, 0x54, 0x01, 0x39, 0x4b, 0x32, 0x8c, + 0x8a, 0xef, 0xc3, 0xba, 0xcb, 0x16, 0xdc, 0xca, 0x6b, 0x37, 0x50, 0x9b, 0x08, 0xd9, 0x49, 0xd6, + 0xe2, 0x9b, 0xd0, 0x4a, 0xa0, 0x08, 0x75, 0xd7, 0x64, 0x41, 0x1b, 0x8f, 0xa2, 0xda, 0xdb, 0x50, + 0x8f, 0x93, 0xa9, 0x26, 0x2a, 0xd4, 0xa8, 0xcc, 0xa1, 0xe2, 0xf4, 0x2c, 0x60, 0xe1, 0x7c, 0xca, + 0xd5, 0x24, 0x2d, 0xd4, 0xc1, 0xf4, 0xcc, 0x94, 0xe3, 0xa8, 0x7b, 0x0b, 0x9a, 0x51, 0x74, 0x4b, + 0xbd, 0x36, 0xea, 0xad, 0x45, 0x83, 0xa8, 0xb4, 0x0d, 0x1d, 0x3f, 0xf0, 0x7c, 0x2f, 0x64, 0x81, + 0x45, 0x6d, 0x3b, 0x60, 0x61, 0xd8, 0xed, 0xc8, 0xf9, 0xa2, 0xf1, 0x03, 0x39, 0x6c, 0x7c, 0x00, + 0xb5, 0x28, 0x4b, 0x5c, 0x87, 0xea, 0x20, 0x46, 0xa2, 0x8a, 0x29, 0x3b, 0x82, 0x87, 0x0e, 0x7c, + 0x5f, 0xbd, 0x89, 0x88, 0xa6, 0xf1, 0x13, 0xa8, 0xa9, 0x0b, 0x2b, 0xac, 0x94, 0xbf, 0x0b, 0x6b, + 0x3e, 0x0d, 0xc4, 0x36, 0xd2, 0xf5, 0x72, 0x54, 0x87, 0x1c, 0xd3, 0x80, 0x3f, 0x61, 0x3c, 0x53, + 0x36, 0x37, 0x50, 0x5f, 0x0e, 0x19, 0xf7, 0xa0, 0x99, 0xd1, 0x11, 0xcb, 0x42, 0x3f, 0x8a, 0x82, + 0x1a, 0x3b, 0xf1, 0x97, 0x4b, 0xc9, 0x97, 0x8d, 0xfb, 0xa0, 0xc7, 0x77, 0x23, 0xd2, 0xe5, 0x68, + 0xeb, 0x9a, 0x3a, 0x6e, 0xd9, 0xc5, 0xa7, 0x00, 0xef, 0x05, 0x0b, 0x54, 0x4c, 0xc8, 0x8e, 0xf1, + 0x2c, 0x05, 0x42, 0x92, 0x15, 0xc8, 0x0e, 0xd4, 0x14, 0x08, 0xa9, 0xa8, 0x8c, 0x8a, 0xfe, 0x63, + 0x44, 0xa1, 0xa8, 0xe8, 0x97, 0x98, 0x94, 0x4c, 0x5b, 0x4a, 0x4f, 0xfb, 0x0b, 0x0d, 0xea, 0x11, + 0xd2, 0x64, 0xe1, 0x58, 0x4e, 0xd9, 0xc9, 0xc3, 0xb1, 0x9a, 0x35, 0x51, 0x14, 0xee, 0x11, 0x3a, + 0x63, 0x97, 0xd9, 0x56, 0x12, 0x43, 0xf8, 0x91, 0xba, 0xd9, 0x96, 0x82, 0xc7, 0x51, 0xc0, 0x90, + 0x2d, 0xd0, 0x4f, 0xe7, 0xd3, 0xa9, 0x25, 0xc0, 0x4c, 0x01, 0x7e, 0x23, 0x85, 0x77, 0x66, 0x5d, + 0x48, 0x45, 0xcb, 0xf8, 0x75, 0x09, 0x2a, 0xa2, 0x91, 0x01, 0xba, 0xaa, 0x02, 0xba, 0x04, 0x37, + 0x4a, 0xf9, 0x57, 0x14, 0x09, 0xb0, 0xe5, 0x34, 0xc0, 0xde, 0x81, 0x7a, 0x1c, 0xd8, 0x95, 0xa2, + 0xc0, 0x36, 0x63, 0x39, 0x19, 0x80, 0x1e, 0x3f, 0x15, 0xab, 0x9a, 0xf8, 0xf5, 0xe0, 0x27, 0x31, + 0x23, 0x3b, 0xe9, 0x3c, 0x22, 0xba, 0x64, 0x99, 0x39, 0x5f, 0x16, 0x90, 0xad, 0x54, 0xe8, 0x5b, + 0x32, 0xf3, 0xae, 0xe1, 0xea, 0xf3, 0xc3, 0x22, 0xa5, 0x11, 0xe7, 0x49, 0xf9, 0x3c, 0x60, 0x0a, + 0x64, 0x92, 0x01, 0xe3, 0x7d, 0x58, 0x95, 0xf7, 0x5e, 0x48, 0x0d, 0x45, 0x74, 0xff, 0x7b, 0x0d, + 0xea, 0x11, 0x07, 0x16, 0x1a, 0x65, 0xfc, 0xa1, 0xf4, 0xba, 0xfe, 0xf0, 0xdf, 0x07, 0xf5, 0x1d, + 0x20, 0x12, 0xbb, 0xcf, 0x3c, 0xee, 0xb8, 0x63, 0x4b, 0xfa, 0xb1, 0xc4, 0xf7, 0x0e, 0x4a, 0x4e, + 0x50, 0x70, 0x2c, 0xc6, 0xef, 0xdc, 0x82, 0x46, 0xea, 0x5d, 0x88, 0xd4, 0xa0, 0xfc, 0x29, 0x7b, + 0xd1, 0x59, 0x21, 0x0d, 0xa8, 0x99, 0x0c, 0xab, 0xfc, 0x8e, 0xb6, 0xf7, 0x79, 0x15, 0xda, 0x07, + 0x83, 0x07, 0x47, 0x07, 0xbe, 0x3f, 0x75, 0x46, 0x14, 0xcb, 0xc2, 0x5d, 0xa8, 0x60, 0x65, 0x5c, + 0xf0, 0x0b, 0x40, 0xaf, 0xe8, 0x89, 0x86, 0xec, 0x41, 0x15, 0x0b, 0x64, 0x52, 0xf4, 0x43, 0x40, + 0xaf, 0xf0, 0xa5, 0x46, 0x7c, 0x44, 0x96, 0xd0, 0x97, 0x7f, 0x0f, 0xe8, 0x15, 0x3d, 0xd7, 0x90, + 0x8f, 0x41, 0x4f, 0x2a, 0xd7, 0x65, 0xbf, 0x0a, 0xf4, 0x96, 0x3e, 0xdc, 0x08, 0xfb, 0x24, 0xbb, + 0x5f, 0xf6, 0x86, 0xde, 0x5b, 0xfa, 0xc2, 0x41, 0xf6, 0xa1, 0x16, 0xd5, 0x45, 0xc5, 0xef, 0xf6, + 0xbd, 0x25, 0x8f, 0x2a, 0xe2, 0x78, 0x64, 0x31, 0x5a, 0xf4, 0xe3, 0x42, 0xaf, 0xf0, 0xe5, 0x87, + 0xdc, 0x85, 0x55, 0x95, 0xa0, 0x16, 0xbe, 0xc0, 0xf7, 0x8a, 0x9f, 0x46, 0xc4, 0x26, 0x93, 0x72, + 0x7c, 0xd9, 0x0f, 0x20, 0xbd, 0xa5, 0x4f, 0x54, 0xe4, 0x00, 0x20, 0x55, 0x53, 0x2e, 0xfd, 0x65, + 0xa3, 0xb7, 0xfc, 0xe9, 0x89, 0xdc, 0x87, 0x7a, 0xf2, 0x9c, 0x58, 0xfc, 0x8b, 0x43, 0x6f, 0xd9, + 0x6b, 0xd0, 0xe0, 0xc6, 0x3f, 0xfe, 0xb4, 0xa1, 0xfd, 0xea, 0x62, 0x43, 0xfb, 0xf2, 0x62, 0x43, + 0xfb, 0xea, 0x62, 0x43, 0xfb, 0xdd, 0xc5, 0x86, 0xf6, 0xc7, 0x8b, 0x0d, 0xed, 0x37, 0x7f, 0xde, + 0xd0, 0x86, 0xab, 0x18, 0x23, 0x1f, 0xfe, 0x2b, 0x00, 0x00, 0xff, 0xff, 0xc4, 0xff, 0xad, 0x9f, + 0x9b, 0x1b, 0x00, 0x00, } func (this *Request) Equal(that interface{}) bool { @@ -4958,6 +5082,57 @@ func (this *VoteInfo) Equal(that interface{}) bool { if this.SignedLastBlock != that1.SignedLastBlock { return false } + if !this.FullVote.Equal(that1.FullVote) { + return false + } + if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { + return false + } + return true +} +func (this *Vote) Equal(that interface{}) bool { + if that == nil { + return this == nil + } + + that1, ok := that.(*Vote) + if !ok { + that2, ok := that.(Vote) + if ok { + that1 = &that2 + } else { + return false + } + } + if that1 == nil { + return this == nil + } else if this == nil { + return false + } + if this.Type != that1.Type { + return false + } + if this.Height != that1.Height { + return false + } + if this.Round != that1.Round { + return false + } + if !this.BlockId.Equal(that1.BlockId) { + return false + } + if !this.Timestamp.Equal(that1.Timestamp) { + return false + } + if !bytes.Equal(this.ValidatorAddress, that1.ValidatorAddress) { + return false + } + if this.ValidatorIndex != that1.ValidatorIndex { + return false + } + if !bytes.Equal(this.Signature, that1.Signature) { + return false + } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } @@ -7764,6 +7939,18 @@ func (m *VoteInfo) MarshalToSizedBuffer(dAtA []byte) (int, error) { i -= len(m.XXX_unrecognized) copy(dAtA[i:], m.XXX_unrecognized) } + if m.FullVote != nil { + { + size, err := m.FullVote.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTypes(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x1a + } if m.SignedLastBlock { i-- if m.SignedLastBlock { @@ -7787,6 +7974,87 @@ func (m *VoteInfo) MarshalToSizedBuffer(dAtA []byte) (int, error) { return len(dAtA) - i, nil } +func (m *Vote) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *Vote) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *Vote) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.XXX_unrecognized != nil { + i -= len(m.XXX_unrecognized) + copy(dAtA[i:], m.XXX_unrecognized) + } + if len(m.Signature) > 0 { + i -= len(m.Signature) + copy(dAtA[i:], m.Signature) + i = encodeVarintTypes(dAtA, i, uint64(len(m.Signature))) + i-- + dAtA[i] = 0x42 + } + if m.ValidatorIndex != 0 { + i = encodeVarintTypes(dAtA, i, uint64(m.ValidatorIndex)) + i-- + dAtA[i] = 0x38 + } + if len(m.ValidatorAddress) > 0 { + i -= len(m.ValidatorAddress) + copy(dAtA[i:], m.ValidatorAddress) + i = encodeVarintTypes(dAtA, i, uint64(len(m.ValidatorAddress))) + i-- + dAtA[i] = 0x32 + } + n41, err41 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.Timestamp, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.Timestamp):]) + if err41 != nil { + return 0, err41 + } + i -= n41 + i = encodeVarintTypes(dAtA, i, uint64(n41)) + i-- + dAtA[i] = 0x2a + if m.BlockId != nil { + { + size, err := m.BlockId.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTypes(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x22 + } + if m.Round != 0 { + i = encodeVarintTypes(dAtA, i, uint64(m.Round)) + i-- + dAtA[i] = 0x18 + } + if m.Height != 0 { + i = encodeVarintTypes(dAtA, i, uint64(m.Height)) + i-- + dAtA[i] = 0x10 + } + if m.Type != 0 { + i = encodeVarintTypes(dAtA, i, uint64(m.Type)) + i-- + dAtA[i] = 0x8 + } + return len(dAtA) - i, nil +} + func (m *PubKey) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -7857,12 +8125,12 @@ func (m *Evidence) MarshalToSizedBuffer(dAtA []byte) (int, error) { i-- dAtA[i] = 0x28 } - n40, err40 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.Time, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.Time):]) - if err40 != nil { - return 0, err40 + n43, err43 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.Time, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.Time):]) + if err43 != nil { + return 0, err43 } - i -= n40 - i = encodeVarintTypes(dAtA, i, uint64(n40)) + i -= n43 + i = encodeVarintTypes(dAtA, i, uint64(n43)) i-- dAtA[i] = 0x22 if m.Height != 0 { @@ -8716,8 +8984,50 @@ func NewPopulatedVoteInfo(r randyTypes, easy bool) *VoteInfo { v53 := NewPopulatedValidator(r, easy) this.Validator = *v53 this.SignedLastBlock = bool(bool(r.Intn(2) == 0)) + if r.Intn(5) != 0 { + this.FullVote = NewPopulatedVote(r, easy) + } if !easy && r.Intn(10) != 0 { - this.XXX_unrecognized = randUnrecognizedTypes(r, 3) + this.XXX_unrecognized = randUnrecognizedTypes(r, 4) + } + return this +} + +func NewPopulatedVote(r randyTypes, easy bool) *Vote { + this := &Vote{} + this.Type = int32(r.Int31()) + if r.Intn(2) == 0 { + this.Type *= -1 + } + this.Height = int64(r.Int63()) + if r.Intn(2) == 0 { + this.Height *= -1 + } + this.Round = int32(r.Int31()) + if r.Intn(2) == 0 { + this.Round *= -1 + } + if r.Intn(5) != 0 { + this.BlockId = NewPopulatedBlockID(r, easy) + } + v54 := github_com_gogo_protobuf_types.NewPopulatedStdTime(r, easy) + this.Timestamp = *v54 + v55 := r.Intn(100) + this.ValidatorAddress = make([]byte, v55) + for i := 0; i < v55; i++ { + this.ValidatorAddress[i] = byte(r.Intn(256)) + } + this.ValidatorIndex = int32(r.Int31()) + if r.Intn(2) == 0 { + this.ValidatorIndex *= -1 + } + v56 := r.Intn(100) + this.Signature = make([]byte, v56) + for i := 0; i < v56; i++ { + this.Signature[i] = byte(r.Intn(256)) + } + if !easy && r.Intn(10) != 0 { + this.XXX_unrecognized = randUnrecognizedTypes(r, 9) } return this } @@ -8725,9 +9035,9 @@ func NewPopulatedVoteInfo(r randyTypes, easy bool) *VoteInfo { func NewPopulatedPubKey(r randyTypes, easy bool) *PubKey { this := &PubKey{} this.Type = string(randStringTypes(r)) - v54 := r.Intn(100) - this.Data = make([]byte, v54) - for i := 0; i < v54; i++ { + v57 := r.Intn(100) + this.Data = make([]byte, v57) + for i := 0; i < v57; i++ { this.Data[i] = byte(r.Intn(256)) } if !easy && r.Intn(10) != 0 { @@ -8739,14 +9049,14 @@ func NewPopulatedPubKey(r randyTypes, easy bool) *PubKey { func NewPopulatedEvidence(r randyTypes, easy bool) *Evidence { this := &Evidence{} this.Type = string(randStringTypes(r)) - v55 := NewPopulatedValidator(r, easy) - this.Validator = *v55 + v58 := NewPopulatedValidator(r, easy) + this.Validator = *v58 this.Height = int64(r.Int63()) if r.Intn(2) == 0 { this.Height *= -1 } - v56 := github_com_gogo_protobuf_types.NewPopulatedStdTime(r, easy) - this.Time = *v56 + v59 := github_com_gogo_protobuf_types.NewPopulatedStdTime(r, easy) + this.Time = *v59 this.TotalVotingPower = int64(r.Int63()) if r.Intn(2) == 0 { this.TotalVotingPower *= -1 @@ -8776,9 +9086,9 @@ func randUTF8RuneTypes(r randyTypes) rune { return rune(ru + 61) } func randStringTypes(r randyTypes) string { - v57 := r.Intn(100) - tmps := make([]rune, v57) - for i := 0; i < v57; i++ { + v60 := r.Intn(100) + tmps := make([]rune, v60) + for i := 0; i < v60; i++ { tmps[i] = randUTF8RuneTypes(r) } return string(tmps) @@ -8800,11 +9110,11 @@ func randFieldTypes(dAtA []byte, r randyTypes, fieldNumber int, wire int) []byte switch wire { case 0: dAtA = encodeVarintPopulateTypes(dAtA, uint64(key)) - v58 := r.Int63() + v61 := r.Int63() if r.Intn(2) == 0 { - v58 *= -1 + v61 *= -1 } - dAtA = encodeVarintPopulateTypes(dAtA, uint64(v58)) + dAtA = encodeVarintPopulateTypes(dAtA, uint64(v61)) case 1: dAtA = encodeVarintPopulateTypes(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) @@ -9950,6 +10260,48 @@ func (m *VoteInfo) Size() (n int) { if m.SignedLastBlock { n += 2 } + if m.FullVote != nil { + l = m.FullVote.Size() + n += 1 + l + sovTypes(uint64(l)) + } + if m.XXX_unrecognized != nil { + n += len(m.XXX_unrecognized) + } + return n +} + +func (m *Vote) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.Type != 0 { + n += 1 + sovTypes(uint64(m.Type)) + } + if m.Height != 0 { + n += 1 + sovTypes(uint64(m.Height)) + } + if m.Round != 0 { + n += 1 + sovTypes(uint64(m.Round)) + } + if m.BlockId != nil { + l = m.BlockId.Size() + n += 1 + l + sovTypes(uint64(l)) + } + l = github_com_gogo_protobuf_types.SizeOfStdTime(m.Timestamp) + n += 1 + l + sovTypes(uint64(l)) + l = len(m.ValidatorAddress) + if l > 0 { + n += 1 + l + sovTypes(uint64(l)) + } + if m.ValidatorIndex != 0 { + n += 1 + sovTypes(uint64(m.ValidatorIndex)) + } + l = len(m.Signature) + if l > 0 { + n += 1 + l + sovTypes(uint64(l)) + } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } @@ -15870,6 +16222,309 @@ func (m *VoteInfo) Unmarshal(dAtA []byte) error { } } m.SignedLastBlock = bool(v != 0) + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field FullVote", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.FullVote == nil { + m.FullVote = &Vote{} + } + if err := m.FullVote.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipTypes(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthTypes + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthTypes + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *Vote) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: Vote: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: Vote: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Type", wireType) + } + m.Type = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.Type |= int32(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 2: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Height", wireType) + } + m.Height = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.Height |= int64(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 3: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Round", wireType) + } + m.Round = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.Round |= int32(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 4: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field BlockId", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.BlockId == nil { + m.BlockId = &BlockID{} + } + if err := m.BlockId.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 5: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Timestamp", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if err := github_com_gogo_protobuf_types.StdTimeUnmarshal(&m.Timestamp, dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 6: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field ValidatorAddress", wireType) + } + var byteLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + byteLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if byteLen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.ValidatorAddress = append(m.ValidatorAddress[:0], dAtA[iNdEx:postIndex]...) + if m.ValidatorAddress == nil { + m.ValidatorAddress = []byte{} + } + iNdEx = postIndex + case 7: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field ValidatorIndex", wireType) + } + m.ValidatorIndex = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.ValidatorIndex |= int32(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 8: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Signature", wireType) + } + var byteLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + byteLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if byteLen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Signature = append(m.Signature[:0], dAtA[iNdEx:postIndex]...) + if m.Signature == nil { + m.Signature = []byte{} + } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipTypes(dAtA[iNdEx:])