From 60e0842ef9a87c840d0bf95eea7b54a1e3d312b3 Mon Sep 17 00:00:00 2001 From: Ethan Buchman Date: Wed, 16 Nov 2016 16:11:36 -0500 Subject: [PATCH] Header.LastBlockID --- types/types.pb.go | 287 ++++++++++++++++++++++++---------------------- types/types.proto | 18 +-- 2 files changed, 164 insertions(+), 141 deletions(-) diff --git a/types/types.pb.go b/types/types.pb.go index 3eafb4832..0b3248a35 100644 --- a/types/types.pb.go +++ b/types/types.pb.go @@ -38,6 +38,7 @@ It has these top-level messages: LastBlockInfo ConfigInfo Header + BlockID PartSetHeader Validator */ @@ -1501,7 +1502,7 @@ func (m *TMSPInfo) GetVersion() string { } type LastBlockInfo struct { - BlockHeight uint64 `protobuf:"varint,1,opt,name=block_height,json=blockHeight" json:"block_height,omitempty"` + BlockHeight int32 `protobuf:"varint,1,opt,name=block_height,json=blockHeight" json:"block_height,omitempty"` BlockHash []byte `protobuf:"bytes,2,opt,name=block_hash,json=blockHash,proto3" json:"block_hash,omitempty"` AppHash []byte `protobuf:"bytes,3,opt,name=app_hash,json=appHash,proto3" json:"app_hash,omitempty"` } @@ -1511,7 +1512,7 @@ func (m *LastBlockInfo) String() string { return proto.CompactTextStr func (*LastBlockInfo) ProtoMessage() {} func (*LastBlockInfo) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{26} } -func (m *LastBlockInfo) GetBlockHeight() uint64 { +func (m *LastBlockInfo) GetBlockHeight() int32 { if m != nil { return m.BlockHeight } @@ -1549,16 +1550,15 @@ func (m *ConfigInfo) GetMaxBlockSize() uint64 { } type Header struct { - ChainId string `protobuf:"bytes,1,opt,name=chain_id,json=chainId" json:"chain_id,omitempty"` - Height uint64 `protobuf:"varint,2,opt,name=height" json:"height,omitempty"` - Time uint64 `protobuf:"varint,3,opt,name=time" json:"time,omitempty"` - NumTxs uint64 `protobuf:"varint,4,opt,name=num_txs,json=numTxs" json:"num_txs,omitempty"` - LastBlockHash []byte `protobuf:"bytes,5,opt,name=last_block_hash,json=lastBlockHash,proto3" json:"last_block_hash,omitempty"` - LastBlockParts *PartSetHeader `protobuf:"bytes,6,opt,name=last_block_parts,json=lastBlockParts" json:"last_block_parts,omitempty"` - LastCommitHash []byte `protobuf:"bytes,7,opt,name=last_commit_hash,json=lastCommitHash,proto3" json:"last_commit_hash,omitempty"` - DataHash []byte `protobuf:"bytes,8,opt,name=data_hash,json=dataHash,proto3" json:"data_hash,omitempty"` - ValidatorsHash []byte `protobuf:"bytes,9,opt,name=validators_hash,json=validatorsHash,proto3" json:"validators_hash,omitempty"` - AppHash []byte `protobuf:"bytes,10,opt,name=app_hash,json=appHash,proto3" json:"app_hash,omitempty"` + ChainId string `protobuf:"bytes,1,opt,name=chain_id,json=chainId" json:"chain_id,omitempty"` + Height int32 `protobuf:"varint,2,opt,name=height" json:"height,omitempty"` + Time uint64 `protobuf:"varint,3,opt,name=time" json:"time,omitempty"` + NumTxs uint64 `protobuf:"varint,4,opt,name=num_txs,json=numTxs" json:"num_txs,omitempty"` + LastBlockId *BlockID `protobuf:"bytes,5,opt,name=last_block_id,json=lastBlockId" json:"last_block_id,omitempty"` + LastCommitHash []byte `protobuf:"bytes,6,opt,name=last_commit_hash,json=lastCommitHash,proto3" json:"last_commit_hash,omitempty"` + DataHash []byte `protobuf:"bytes,7,opt,name=data_hash,json=dataHash,proto3" json:"data_hash,omitempty"` + ValidatorsHash []byte `protobuf:"bytes,8,opt,name=validators_hash,json=validatorsHash,proto3" json:"validators_hash,omitempty"` + AppHash []byte `protobuf:"bytes,9,opt,name=app_hash,json=appHash,proto3" json:"app_hash,omitempty"` } func (m *Header) Reset() { *m = Header{} } @@ -1573,7 +1573,7 @@ func (m *Header) GetChainId() string { return "" } -func (m *Header) GetHeight() uint64 { +func (m *Header) GetHeight() int32 { if m != nil { return m.Height } @@ -1594,16 +1594,9 @@ func (m *Header) GetNumTxs() uint64 { return 0 } -func (m *Header) GetLastBlockHash() []byte { +func (m *Header) GetLastBlockId() *BlockID { if m != nil { - return m.LastBlockHash - } - return nil -} - -func (m *Header) GetLastBlockParts() *PartSetHeader { - if m != nil { - return m.LastBlockParts + return m.LastBlockId } return nil } @@ -1636,6 +1629,30 @@ func (m *Header) GetAppHash() []byte { return nil } +type BlockID struct { + Hash []byte `protobuf:"bytes,1,opt,name=hash,proto3" json:"hash,omitempty"` + Parts *PartSetHeader `protobuf:"bytes,2,opt,name=parts" json:"parts,omitempty"` +} + +func (m *BlockID) Reset() { *m = BlockID{} } +func (m *BlockID) String() string { return proto.CompactTextString(m) } +func (*BlockID) ProtoMessage() {} +func (*BlockID) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{29} } + +func (m *BlockID) GetHash() []byte { + if m != nil { + return m.Hash + } + return nil +} + +func (m *BlockID) GetParts() *PartSetHeader { + if m != nil { + return m.Parts + } + return nil +} + type PartSetHeader struct { Total uint64 `protobuf:"varint,1,opt,name=total" json:"total,omitempty"` Hash []byte `protobuf:"bytes,2,opt,name=hash,proto3" json:"hash,omitempty"` @@ -1644,7 +1661,7 @@ type PartSetHeader struct { func (m *PartSetHeader) Reset() { *m = PartSetHeader{} } func (m *PartSetHeader) String() string { return proto.CompactTextString(m) } func (*PartSetHeader) ProtoMessage() {} -func (*PartSetHeader) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{29} } +func (*PartSetHeader) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{30} } func (m *PartSetHeader) GetTotal() uint64 { if m != nil { @@ -1668,7 +1685,7 @@ type Validator struct { func (m *Validator) Reset() { *m = Validator{} } func (m *Validator) String() string { return proto.CompactTextString(m) } func (*Validator) ProtoMessage() {} -func (*Validator) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{30} } +func (*Validator) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{31} } func (m *Validator) GetPubKey() []byte { if m != nil { @@ -1714,6 +1731,7 @@ func init() { proto.RegisterType((*LastBlockInfo)(nil), "types.LastBlockInfo") proto.RegisterType((*ConfigInfo)(nil), "types.ConfigInfo") proto.RegisterType((*Header)(nil), "types.Header") + proto.RegisterType((*BlockID)(nil), "types.BlockID") proto.RegisterType((*PartSetHeader)(nil), "types.PartSetHeader") proto.RegisterType((*Validator)(nil), "types.Validator") proto.RegisterEnum("types.MessageType", MessageType_name, MessageType_value) @@ -2125,114 +2143,115 @@ var _TMSPApplication_serviceDesc = grpc.ServiceDesc{ func init() { proto.RegisterFile("types/types.proto", fileDescriptor0) } var fileDescriptor0 = []byte{ - // 1732 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xac, 0x58, 0x49, 0x73, 0x1b, 0xc7, - 0x15, 0x26, 0x40, 0xac, 0x0f, 0x20, 0xd8, 0x7c, 0xdc, 0x20, 0x24, 0xa9, 0x92, 0x27, 0xb2, 0x4d, - 0x3a, 0x2a, 0x29, 0x45, 0x95, 0x5d, 0x52, 0x9c, 0x72, 0x95, 0x28, 0xd3, 0x02, 0xcb, 0x91, 0xc4, - 0x8c, 0x64, 0x1d, 0xb2, 0x14, 0x6a, 0x88, 0x69, 0x00, 0x13, 0x0e, 0x66, 0x46, 0x33, 0x3d, 0x32, - 0xa8, 0x7f, 0xe0, 0x7f, 0x93, 0x4b, 0x2e, 0xb9, 0xe6, 0x94, 0x7d, 0xb9, 0xe6, 0xcf, 0xb8, 0x5e, - 0x77, 0xcf, 0xca, 0x81, 0x4f, 0xba, 0xa0, 0xe6, 0xad, 0xdd, 0xfd, 0x96, 0xaf, 0x5f, 0x03, 0x76, - 0xc4, 0x75, 0xc0, 0xa3, 0xfb, 0xf2, 0xf7, 0x5e, 0x10, 0xfa, 0xc2, 0xc7, 0xa6, 0x24, 0x8c, 0xbf, - 0x34, 0xa0, 0x6d, 0xf2, 0x37, 0x31, 0x8f, 0x04, 0x1e, 0x41, 0x83, 0x4f, 0x17, 0xfe, 0xb0, 0x76, - 0xbb, 0x76, 0xd4, 0x3b, 0xc1, 0x7b, 0x4a, 0x5d, 0x4b, 0xcf, 0xa6, 0x0b, 0x7f, 0xbc, 0x61, 0x4a, - 0x0d, 0xfc, 0x19, 0x34, 0x67, 0x6e, 0x1c, 0x2d, 0x86, 0x75, 0xa9, 0xba, 0x5b, 0x54, 0xfd, 0x8a, - 0x44, 0xe3, 0x0d, 0x53, 0xe9, 0x90, 0x5b, 0xc7, 0x9b, 0xf9, 0xc3, 0xcd, 0x2a, 0xb7, 0xe7, 0xde, - 0x4c, 0xba, 0x25, 0x0d, 0x7c, 0x08, 0x10, 0x71, 0x31, 0xf1, 0x03, 0xe1, 0xf8, 0xde, 0xb0, 0x21, - 0xf5, 0x0f, 0x8b, 0xfa, 0x2f, 0xb9, 0x78, 0x21, 0xc5, 0xe3, 0x0d, 0xb3, 0x1b, 0x25, 0x04, 0x7e, - 0x0a, 0x5d, 0x2b, 0x08, 0xb8, 0x67, 0x4f, 0xc4, 0x6a, 0xd8, 0x94, 0x86, 0x07, 0x45, 0xc3, 0xc7, - 0x52, 0xfc, 0x6a, 0x35, 0xde, 0x30, 0x3b, 0x96, 0xfe, 0xc6, 0x13, 0xe8, 0x4c, 0x17, 0x7c, 0x7a, - 0x45, 0x56, 0x2d, 0x69, 0xb5, 0x5f, 0xb4, 0x7a, 0x42, 0x52, 0x69, 0xd4, 0x9e, 0xaa, 0x4f, 0xbc, - 0x07, 0xad, 0xa9, 0xbf, 0x5c, 0x3a, 0x62, 0xd8, 0x96, 0x16, 0x7b, 0x25, 0x0b, 0x29, 0x1b, 0x6f, - 0x98, 0x5a, 0x8b, 0x62, 0xf5, 0x26, 0xe6, 0xe1, 0xf5, 0xb0, 0x53, 0x15, 0xab, 0x5f, 0x93, 0x88, - 0x62, 0x25, 0x75, 0x28, 0x02, 0x8e, 0xe7, 0x88, 0xc9, 0x74, 0x61, 0x39, 0xde, 0xb0, 0x5b, 0x15, - 0x81, 0x73, 0xcf, 0x11, 0x4f, 0x48, 0x4c, 0x11, 0x70, 0x12, 0x02, 0x3f, 0x87, 0xde, 0x25, 0x9f, - 0x3b, 0xde, 0xe4, 0xd2, 0xf5, 0xa7, 0x57, 0x43, 0x90, 0xa6, 0xc3, 0xa2, 0xe9, 0x29, 0x29, 0x9c, - 0x92, 0x7c, 0xbc, 0x61, 0xc2, 0x65, 0x4a, 0x51, 0xf8, 0x28, 0x76, 0xca, 0xb4, 0x57, 0x15, 0xbe, - 0x33, 0xcf, 0x4e, 0x0c, 0x3b, 0x5c, 0x7f, 0x9f, 0xb6, 0xa1, 0xf9, 0xd6, 0x72, 0x63, 0x6e, 0x7c, - 0x0c, 0xbd, 0x5c, 0x99, 0xe0, 0x10, 0xda, 0x4b, 0x1e, 0x45, 0xd6, 0x9c, 0xcb, 0x5a, 0xea, 0x9a, - 0x09, 0x69, 0x0c, 0xa0, 0x9f, 0x2f, 0x12, 0x63, 0x2b, 0x35, 0xa4, 0x42, 0x30, 0x7e, 0x01, 0xac, - 0x9c, 0x67, 0x64, 0xb0, 0x79, 0xc5, 0xaf, 0xb5, 0x23, 0xfa, 0xc4, 0x3d, 0xbd, 0xac, 0xac, 0xbe, - 0xae, 0xa9, 0xf7, 0xf0, 0x01, 0x6c, 0x97, 0x52, 0x8d, 0x03, 0xa8, 0x8b, 0x95, 0xb4, 0xec, 0x9b, - 0x75, 0xb1, 0x32, 0x6e, 0xc3, 0xa0, 0x98, 0xd7, 0x1b, 0x1a, 0x77, 0xd2, 0xfd, 0xc9, 0xc4, 0xd0, - 0x52, 0x2a, 0x79, 0x4a, 0x45, 0x11, 0xc6, 0x36, 0x6c, 0x15, 0xb2, 0x6d, 0x7c, 0x99, 0xee, 0x3b, - 0xcd, 0x0e, 0xfe, 0x1c, 0xe0, 0xad, 0xe5, 0x3a, 0xb6, 0x25, 0xfc, 0x30, 0x1a, 0xd6, 0x6e, 0x6f, - 0x1e, 0xf5, 0x4e, 0x98, 0x0e, 0xea, 0xeb, 0x44, 0x60, 0xe6, 0x74, 0x8c, 0xe7, 0xb0, 0x73, 0x23, - 0x51, 0x88, 0xd0, 0x58, 0x58, 0xd1, 0x42, 0x6f, 0x40, 0x7e, 0xe3, 0x87, 0xd0, 0x5a, 0x70, 0xcb, - 0xe6, 0xa1, 0xee, 0xbf, 0x2d, 0xed, 0x76, 0x2c, 0x99, 0xa6, 0x16, 0x1a, 0xc7, 0x69, 0x44, 0x92, - 0xec, 0xe1, 0x01, 0x59, 0x3a, 0xf3, 0x85, 0x90, 0xfe, 0x1a, 0xa6, 0xa6, 0x8c, 0xef, 0x9a, 0xd0, - 0x31, 0x79, 0x14, 0xf8, 0x5e, 0xc4, 0xf1, 0x21, 0x74, 0xf9, 0x6a, 0xca, 0x55, 0x17, 0xd6, 0x4a, - 0x85, 0xa4, 0x74, 0xce, 0x12, 0x39, 0x15, 0x61, 0xaa, 0x8c, 0xc7, 0x1a, 0x41, 0xca, 0xb0, 0xa0, - 0x8d, 0xf2, 0x10, 0x72, 0x37, 0x81, 0x90, 0xcd, 0x52, 0x17, 0x29, 0xdd, 0x12, 0x86, 0x1c, 0x6b, - 0x0c, 0x69, 0x54, 0x3a, 0x2e, 0x80, 0xc8, 0xa3, 0x02, 0x88, 0x34, 0x2b, 0xb7, 0xbf, 0x06, 0x45, - 0x3e, 0xcb, 0xa3, 0x48, 0xab, 0xd4, 0x7c, 0xca, 0xb2, 0x12, 0x46, 0x1e, 0xe4, 0x60, 0xa4, 0x5d, - 0xea, 0x1e, 0x65, 0x56, 0x81, 0x23, 0xf7, 0x53, 0x1c, 0xe9, 0x94, 0x90, 0x47, 0x9b, 0x94, 0x81, - 0xe4, 0x6e, 0x52, 0x8b, 0xdd, 0xca, 0x88, 0x95, 0x90, 0xe4, 0x51, 0x01, 0x49, 0xa0, 0x32, 0x0c, - 0x6b, 0xa0, 0xe4, 0x97, 0x45, 0x28, 0x51, 0x78, 0x70, 0xab, 0x64, 0xbb, 0x16, 0x4b, 0x3e, 0xcb, - 0x63, 0x49, 0xbf, 0x32, 0x88, 0x3f, 0x0c, 0x26, 0xc7, 0xd4, 0x06, 0xa5, 0x32, 0xa3, 0x46, 0xe4, - 0x61, 0xe8, 0x87, 0x1a, 0x07, 0x14, 0x61, 0x1c, 0x51, 0xbb, 0x66, 0xc5, 0xf5, 0x03, 0xc0, 0x23, - 0x5b, 0x36, 0x57, 0x5a, 0xc6, 0x1f, 0x6b, 0x99, 0x2d, 0xd5, 0x0f, 0x35, 0x9a, 0x2c, 0x31, 0x65, - 0xa8, 0x6a, 0xe9, 0x2e, 0x74, 0xc5, 0x32, 0x0a, 0x26, 0x52, 0xa0, 0x8a, 0x7a, 0x5b, 0x9f, 0xe5, - 0xd5, 0xb3, 0x97, 0x17, 0x64, 0x67, 0x76, 0x48, 0x43, 0x7a, 0x78, 0x00, 0xe0, 0x5a, 0x91, 0xd0, - 0x47, 0x2f, 0xd6, 0xf5, 0xaf, 0xac, 0x48, 0xc8, 0x73, 0x4a, 0x9b, 0xae, 0x9b, 0x90, 0x78, 0x4c, - 0x65, 0xe0, 0xcd, 0x9c, 0xb9, 0xae, 0xed, 0x1d, 0x6d, 0xf0, 0x44, 0x32, 0xa5, 0xb6, 0x56, 0x30, - 0x3e, 0xcc, 0x02, 0x53, 0x80, 0x47, 0xd7, 0x9f, 0x27, 0xf0, 0xe8, 0xfa, 0x73, 0xe3, 0xf7, 0x04, - 0x46, 0xc5, 0x6a, 0xc5, 0x9f, 0x42, 0x63, 0xea, 0xdb, 0x2a, 0x2a, 0x83, 0xf4, 0x0c, 0x4f, 0x7c, - 0x9b, 0xbf, 0xba, 0x0e, 0xb8, 0x29, 0x85, 0x14, 0x01, 0xdb, 0x12, 0x96, 0x3c, 0x68, 0xdf, 0x94, - 0xdf, 0x89, 0xfb, 0xcd, 0xcc, 0xfd, 0xef, 0x08, 0x55, 0x0a, 0x55, 0xfd, 0x3e, 0xbd, 0xff, 0x26, - 0xcb, 0x93, 0x42, 0xe0, 0xf7, 0xe8, 0xfb, 0xb7, 0x04, 0xff, 0xf9, 0xe6, 0x7a, 0x9f, 0xce, 0x77, - 0xb3, 0xe4, 0xa4, 0x6d, 0x65, 0xec, 0x01, 0xde, 0xec, 0x17, 0x75, 0xcb, 0x15, 0x3b, 0x01, 0x3f, - 0x82, 0xa6, 0xed, 0xcc, 0x66, 0xd1, 0xb0, 0xb1, 0xe6, 0xa2, 0x50, 0x62, 0xe3, 0x0e, 0x74, 0x92, - 0xca, 0xa3, 0x6a, 0x7f, 0xcd, 0xc3, 0x28, 0x41, 0xe9, 0xae, 0x99, 0x90, 0x86, 0x0b, 0x5b, 0x85, - 0x82, 0xc3, 0x0f, 0xa0, 0x2f, 0xab, 0x72, 0x52, 0x40, 0xff, 0x9e, 0xe4, 0x8d, 0x25, 0x0b, 0x7f, - 0x02, 0xa0, 0x55, 0x2c, 0x3d, 0xd8, 0xf5, 0xcd, 0xae, 0x52, 0xa0, 0x3b, 0xe7, 0x16, 0x10, 0xde, - 0x29, 0xe1, 0xa6, 0x14, 0xb6, 0xad, 0x20, 0x20, 0x91, 0x71, 0x02, 0x90, 0x55, 0x2b, 0xde, 0x81, - 0xc1, 0xd2, 0x5a, 0xa9, 0x26, 0x98, 0x44, 0xce, 0x3b, 0xae, 0x17, 0xeb, 0x2f, 0xad, 0x95, 0xdc, - 0xd0, 0x4b, 0xe7, 0x1d, 0x37, 0xfe, 0x5f, 0x87, 0x96, 0xba, 0xae, 0xc8, 0xb3, 0x04, 0xa9, 0x89, - 0x63, 0x27, 0xe7, 0x90, 0xf4, 0xb9, 0x9d, 0xbb, 0xae, 0xea, 0xf9, 0xeb, 0x8a, 0x52, 0x22, 0x9c, - 0x25, 0x97, 0x1b, 0x69, 0x98, 0xf2, 0x1b, 0x0f, 0xa1, 0xed, 0xc5, 0xcb, 0x89, 0x58, 0x45, 0xb2, - 0x93, 0x1a, 0x66, 0xcb, 0x8b, 0x97, 0xaf, 0x56, 0x11, 0x7e, 0x04, 0xdb, 0x59, 0x5b, 0xaa, 0x03, - 0x34, 0xe5, 0x01, 0xb6, 0xd2, 0x2e, 0x94, 0x27, 0xfc, 0x02, 0x58, 0x4e, 0x2f, 0xb0, 0x42, 0x11, - 0xe9, 0x4b, 0x20, 0x69, 0xe2, 0x0b, 0x2b, 0xa4, 0xc1, 0x44, 0x5f, 0xb3, 0x83, 0xd4, 0x9c, 0xf8, - 0x11, 0x1e, 0x69, 0x7b, 0x05, 0xd7, 0x6a, 0xa1, 0xb6, 0x5c, 0x48, 0x6a, 0x6a, 0x3c, 0xa7, 0x95, - 0x7e, 0x04, 0x5d, 0xaa, 0x22, 0xa5, 0xd2, 0x91, 0x2a, 0x1d, 0x62, 0x48, 0xe1, 0xc7, 0xb0, 0x9d, - 0xcd, 0x04, 0x4a, 0xa5, 0xab, 0xbc, 0x64, 0xec, 0x1b, 0x19, 0x81, 0x62, 0x46, 0x1e, 0xc1, 0x56, - 0x61, 0xaf, 0x04, 0x9f, 0xc2, 0x17, 0x96, 0xab, 0x73, 0xa1, 0x88, 0x74, 0xb6, 0xa8, 0x67, 0xb3, - 0x85, 0xf1, 0x08, 0xba, 0x69, 0xd1, 0x51, 0xfc, 0x83, 0xf8, 0xf2, 0x6b, 0x9e, 0xcc, 0x3f, 0x9a, - 0x22, 0x77, 0x81, 0xff, 0xad, 0x9e, 0x3f, 0x1a, 0xa6, 0x22, 0x3e, 0xf9, 0x73, 0x0d, 0x7a, 0xcf, - 0x14, 0xde, 0x52, 0xfb, 0xe0, 0x36, 0xf4, 0x9e, 0xc7, 0xae, 0xab, 0x59, 0x6c, 0x03, 0x3b, 0xd0, - 0x20, 0x98, 0x66, 0x35, 0xec, 0x42, 0x53, 0xc2, 0x30, 0xab, 0x13, 0x93, 0xea, 0x86, 0x6d, 0xe2, - 0x16, 0x74, 0x53, 0x5c, 0x63, 0x0d, 0x22, 0x53, 0xfc, 0x67, 0x4d, 0xec, 0x43, 0x27, 0x81, 0x33, - 0xb6, 0x83, 0x3d, 0x68, 0x6b, 0xf4, 0x61, 0x88, 0x00, 0x2d, 0x15, 0x5d, 0xb6, 0x4b, 0x9e, 0x25, - 0x70, 0xb0, 0x3d, 0x72, 0x90, 0xb6, 0x22, 0xdb, 0xc7, 0x01, 0x40, 0xd6, 0x84, 0xec, 0x80, 0x1c, - 0x26, 0xed, 0xc7, 0x0e, 0x3f, 0xf9, 0x53, 0x13, 0x3a, 0x49, 0xe3, 0x63, 0x0b, 0xea, 0x2f, 0xbe, - 0x66, 0x1b, 0xb8, 0x03, 0x5b, 0xe7, 0x9e, 0xe0, 0xa1, 0x67, 0xb9, 0x67, 0x74, 0xe1, 0xb0, 0x1a, - 0xb1, 0xce, 0xbc, 0xa9, 0x6f, 0x3b, 0xde, 0x5c, 0xb1, 0xea, 0xe4, 0xe8, 0xd4, 0xb2, 0x9f, 0xfb, - 0xde, 0x94, 0xb3, 0x4d, 0x64, 0xd0, 0xff, 0xc6, 0xb3, 0x62, 0xb1, 0xf0, 0x43, 0xe7, 0x1d, 0xb7, - 0x59, 0x03, 0xf7, 0x61, 0xe7, 0xdc, 0x8b, 0xe2, 0xd9, 0xcc, 0x99, 0x3a, 0xdc, 0x13, 0x5f, 0xc5, - 0x9e, 0x1d, 0xb1, 0x26, 0x22, 0x0c, 0xbe, 0xf1, 0xae, 0x3c, 0xff, 0x5b, 0x4f, 0x4f, 0x69, 0xac, - 0x85, 0x43, 0xd8, 0x3b, 0xb5, 0x22, 0xfe, 0x65, 0x1c, 0xb8, 0xce, 0xd4, 0x12, 0xfc, 0xb1, 0x6d, - 0x87, 0x3c, 0x8a, 0x18, 0x27, 0x27, 0x24, 0x29, 0xae, 0x3d, 0x4b, 0x0c, 0x0a, 0xfe, 0x39, 0x8f, - 0xd8, 0x1c, 0x6f, 0xc1, 0xfe, 0x0d, 0x89, 0x5c, 0x79, 0x81, 0x3f, 0x86, 0x61, 0x59, 0xf4, 0xd4, - 0x8a, 0x2e, 0x42, 0x67, 0xca, 0x99, 0x83, 0x7b, 0xc0, 0x94, 0x54, 0xd6, 0xdb, 0xb9, 0x17, 0xc4, - 0x82, 0xfd, 0x21, 0x59, 0x5f, 0x73, 0x5f, 0xc4, 0x82, 0xd8, 0x57, 0x25, 0xf6, 0x85, 0x2c, 0x0f, - 0xe6, 0xe2, 0x21, 0xec, 0xe6, 0xd8, 0x2f, 0xe9, 0x7c, 0x14, 0x9d, 0x65, 0xb6, 0x5f, 0x25, 0x70, - 0xe6, 0x9e, 0x25, 0xe2, 0x90, 0x33, 0x0f, 0x0f, 0x00, 0x49, 0xa2, 0x43, 0x92, 0x1c, 0xdc, 0x4f, - 0x56, 0xd0, 0x7c, 0xbd, 0x42, 0x50, 0x66, 0xbb, 0xf1, 0xdc, 0xf1, 0xd8, 0x1b, 0xdc, 0x07, 0xf6, - 0xd4, 0x7f, 0xab, 0xb9, 0x67, 0x9e, 0x70, 0xc4, 0x35, 0xfb, 0x6b, 0x0d, 0xf7, 0x60, 0x3b, 0x63, - 0x3f, 0x0d, 0xfd, 0x38, 0x60, 0x7f, 0xab, 0xe1, 0x21, 0x60, 0xc6, 0xbd, 0x08, 0xfd, 0xc0, 0x8f, - 0x2c, 0x97, 0xfd, 0xbd, 0x86, 0x07, 0xb0, 0xf3, 0xd4, 0x7f, 0x9b, 0x66, 0x41, 0x19, 0xfc, 0x23, - 0x31, 0x48, 0xf9, 0xcf, 0xf8, 0xf2, 0x92, 0x87, 0xec, 0x9f, 0x35, 0xbc, 0x05, 0x7b, 0x79, 0x41, - 0xea, 0xeb, 0x5f, 0x35, 0xbd, 0xa3, 0x54, 0xf4, 0xda, 0x17, 0x9c, 0xfd, 0x3b, 0x61, 0xeb, 0x38, - 0x68, 0x47, 0xff, 0xa9, 0xe1, 0x2e, 0x0c, 0x32, 0xb6, 0xd4, 0xfd, 0x6f, 0x0d, 0x47, 0xb0, 0x5f, - 0x60, 0x3a, 0xde, 0xfc, 0x82, 0x3a, 0x8e, 0xfd, 0xaf, 0x76, 0xf2, 0x5d, 0x13, 0xb6, 0xe9, 0x46, - 0x78, 0x1c, 0xa8, 0x05, 0x68, 0x26, 0xb8, 0xaf, 0xfa, 0x0c, 0x2b, 0x9e, 0xf0, 0xa3, 0xaa, 0xa1, - 0x1c, 0x4f, 0x74, 0x3b, 0x62, 0xd5, 0x4b, 0x7e, 0x54, 0x39, 0x9b, 0xd3, 0x22, 0x6a, 0x6e, 0xba, - 0xf9, 0xa0, 0x1f, 0x55, 0x0d, 0xe8, 0xf8, 0x45, 0xae, 0xbd, 0x71, 0xdd, 0xb3, 0x7e, 0xb4, 0x76, - 0x54, 0xc7, 0xcf, 0x33, 0x00, 0xc0, 0x35, 0x8f, 0xfb, 0xd1, 0xba, 0x71, 0x1d, 0x1f, 0xa6, 0x78, - 0x81, 0xd5, 0x4f, 0xfc, 0xd1, 0x9a, 0x91, 0x9d, 0x62, 0xa3, 0x26, 0x91, 0xaa, 0x97, 0xfb, 0xa8, - 0x72, 0x0a, 0xc7, 0x4f, 0x13, 0x40, 0xc2, 0xca, 0x7f, 0x07, 0x46, 0xd5, 0xb3, 0x3e, 0x45, 0x28, - 0x7b, 0x3f, 0xae, 0x7b, 0xf6, 0x8f, 0xd6, 0x4e, 0xf1, 0xf8, 0x38, 0x8f, 0x70, 0xb8, 0xf6, 0xf1, - 0x3f, 0x5a, 0x3f, 0xcb, 0x53, 0x90, 0xb3, 0xc7, 0x62, 0xf5, 0x5f, 0x00, 0xa3, 0x75, 0xe3, 0xfc, - 0x65, 0x4b, 0xfe, 0xb5, 0xf4, 0xe0, 0xfb, 0x00, 0x00, 0x00, 0xff, 0xff, 0x70, 0x47, 0x17, 0xd1, - 0x6f, 0x12, 0x00, 0x00, + // 1746 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xac, 0x58, 0x49, 0x73, 0xdb, 0xc8, + 0x15, 0x16, 0x29, 0x6e, 0x78, 0xa4, 0xa8, 0xd6, 0xd3, 0x46, 0x33, 0x49, 0x95, 0x07, 0xf1, 0x64, + 0x24, 0xc7, 0x65, 0xa7, 0xe4, 0x9a, 0x29, 0x3b, 0x93, 0x4a, 0x95, 0x65, 0x6b, 0x2c, 0xd5, 0xc4, + 0xb6, 0x02, 0x7b, 0x7c, 0xc8, 0x52, 0x2c, 0x88, 0x68, 0x92, 0x88, 0x40, 0x00, 0x06, 0x1a, 0x1a, + 0xca, 0xff, 0x60, 0x7e, 0x49, 0xae, 0xb9, 0xe4, 0x92, 0x6b, 0x4e, 0xd9, 0x97, 0x5f, 0x34, 0xf5, + 0xba, 0x1b, 0x00, 0x01, 0x81, 0x3e, 0xf9, 0xc2, 0xc2, 0x5b, 0xbb, 0xfb, 0x2d, 0x5f, 0xbf, 0x26, + 0x6c, 0x89, 0xeb, 0x90, 0xc7, 0x0f, 0xe4, 0xef, 0xfd, 0x30, 0x0a, 0x44, 0x80, 0x4d, 0x49, 0x98, + 0x7f, 0x6d, 0x40, 0xdb, 0xe2, 0xef, 0x12, 0x1e, 0x0b, 0x3c, 0x80, 0x06, 0x1f, 0xcf, 0x82, 0x41, + 0xed, 0x76, 0xed, 0xa0, 0x7b, 0x84, 0xf7, 0x95, 0xba, 0x96, 0x9e, 0x8c, 0x67, 0xc1, 0xe9, 0x9a, + 0x25, 0x35, 0xf0, 0xa7, 0xd0, 0x9c, 0x78, 0x49, 0x3c, 0x1b, 0xd4, 0xa5, 0xea, 0x76, 0x51, 0xf5, + 0x2b, 0x12, 0x9d, 0xae, 0x59, 0x4a, 0x87, 0xdc, 0xba, 0xfe, 0x24, 0x18, 0xac, 0x57, 0xb9, 0x3d, + 0xf3, 0x27, 0xd2, 0x2d, 0x69, 0xe0, 0x23, 0x80, 0x98, 0x8b, 0x51, 0x10, 0x0a, 0x37, 0xf0, 0x07, + 0x0d, 0xa9, 0xbf, 0x5f, 0xd4, 0x7f, 0xcd, 0xc5, 0x2b, 0x29, 0x3e, 0x5d, 0xb3, 0x8c, 0x38, 0x25, + 0xf0, 0x73, 0x30, 0xec, 0x30, 0xe4, 0xbe, 0x33, 0x12, 0x8b, 0x41, 0x53, 0x1a, 0xee, 0x15, 0x0d, + 0x9f, 0x48, 0xf1, 0x9b, 0xc5, 0xe9, 0x9a, 0xd5, 0xb1, 0xf5, 0x37, 0x1e, 0x41, 0x67, 0x3c, 0xe3, + 0xe3, 0x4b, 0xb2, 0x6a, 0x49, 0xab, 0xdd, 0xa2, 0xd5, 0x53, 0x92, 0x4a, 0xa3, 0xf6, 0x58, 0x7d, + 0xe2, 0x7d, 0x68, 0x8d, 0x83, 0xf9, 0xdc, 0x15, 0x83, 0xb6, 0xb4, 0xd8, 0x29, 0x59, 0x48, 0xd9, + 0xe9, 0x9a, 0xa5, 0xb5, 0x28, 0x56, 0xef, 0x12, 0x1e, 0x5d, 0x0f, 0x3a, 0x55, 0xb1, 0xfa, 0x35, + 0x89, 0x28, 0x56, 0x52, 0x87, 0x22, 0xe0, 0xfa, 0xae, 0x18, 0x8d, 0x67, 0xb6, 0xeb, 0x0f, 0x8c, + 0xaa, 0x08, 0x9c, 0xf9, 0xae, 0x78, 0x4a, 0x62, 0x8a, 0x80, 0x9b, 0x12, 0xf8, 0x25, 0x74, 0x2f, + 0xf8, 0xd4, 0xf5, 0x47, 0x17, 0x5e, 0x30, 0xbe, 0x1c, 0x80, 0x34, 0x1d, 0x14, 0x4d, 0x8f, 0x49, + 0xe1, 0x98, 0xe4, 0xa7, 0x6b, 0x16, 0x5c, 0x64, 0x14, 0x85, 0x8f, 0x62, 0xa7, 0x4c, 0xbb, 0x55, + 0xe1, 0x3b, 0xf1, 0x9d, 0xd4, 0xb0, 0xc3, 0xf5, 0xf7, 0x71, 0x1b, 0x9a, 0x57, 0xb6, 0x97, 0x70, + 0xf3, 0x33, 0xe8, 0x2e, 0x95, 0x09, 0x0e, 0xa0, 0x3d, 0xe7, 0x71, 0x6c, 0x4f, 0xb9, 0xac, 0x25, + 0xc3, 0x4a, 0x49, 0xb3, 0x0f, 0xbd, 0xe5, 0x22, 0x31, 0x37, 0x32, 0x43, 0x2a, 0x04, 0xf3, 0xe7, + 0xc0, 0xca, 0x79, 0x46, 0x06, 0xeb, 0x97, 0xfc, 0x5a, 0x3b, 0xa2, 0x4f, 0xdc, 0xd1, 0xcb, 0xca, + 0xea, 0x33, 0x2c, 0xbd, 0x87, 0x4f, 0x60, 0xb3, 0x94, 0x6a, 0xec, 0x43, 0x5d, 0x2c, 0xa4, 0x65, + 0xcf, 0xaa, 0x8b, 0x85, 0x79, 0x1b, 0xfa, 0xc5, 0xbc, 0xde, 0xd0, 0xb8, 0x93, 0xed, 0x4f, 0x26, + 0x86, 0x96, 0x52, 0xc9, 0x53, 0x2a, 0x8a, 0x30, 0x37, 0x61, 0xa3, 0x90, 0x6d, 0xf3, 0x59, 0xb6, + 0xef, 0x2c, 0x3b, 0xf8, 0x33, 0x80, 0x2b, 0xdb, 0x73, 0x1d, 0x5b, 0x04, 0x51, 0x3c, 0xa8, 0xdd, + 0x5e, 0x3f, 0xe8, 0x1e, 0x31, 0x1d, 0xd4, 0xb7, 0xa9, 0xc0, 0x5a, 0xd2, 0x31, 0x5f, 0xc2, 0xd6, + 0x8d, 0x44, 0x21, 0x42, 0x63, 0x66, 0xc7, 0x33, 0xbd, 0x01, 0xf9, 0x8d, 0x9f, 0x42, 0x6b, 0xc6, + 0x6d, 0x87, 0x47, 0xba, 0xff, 0x36, 0xb4, 0xdb, 0x53, 0xc9, 0xb4, 0xb4, 0xd0, 0x3c, 0xcc, 0x22, + 0x92, 0x66, 0x0f, 0xf7, 0xc8, 0xd2, 0x9d, 0xce, 0x84, 0xf4, 0xd7, 0xb0, 0x34, 0x65, 0x7e, 0xd7, + 0x84, 0x8e, 0xc5, 0xe3, 0x30, 0xf0, 0x63, 0x8e, 0x8f, 0xc0, 0xe0, 0x8b, 0x31, 0x57, 0x5d, 0x58, + 0x2b, 0x15, 0x92, 0xd2, 0x39, 0x49, 0xe5, 0x54, 0x84, 0x99, 0x32, 0x1e, 0x6a, 0x04, 0x29, 0xc3, + 0x82, 0x36, 0x5a, 0x86, 0x90, 0x7b, 0x29, 0x84, 0xac, 0x97, 0xba, 0x48, 0xe9, 0x96, 0x30, 0xe4, + 0x50, 0x63, 0x48, 0xa3, 0xd2, 0x71, 0x01, 0x44, 0x1e, 0x17, 0x40, 0xa4, 0x59, 0xb9, 0xfd, 0x15, + 0x28, 0xf2, 0xc5, 0x32, 0x8a, 0xb4, 0x4a, 0xcd, 0xa7, 0x2c, 0x2b, 0x61, 0xe4, 0xe1, 0x12, 0x8c, + 0xb4, 0x4b, 0xdd, 0xa3, 0xcc, 0x2a, 0x70, 0xe4, 0x41, 0x86, 0x23, 0x9d, 0x12, 0xf2, 0x68, 0x93, + 0x32, 0x90, 0xdc, 0x4b, 0x6b, 0xd1, 0xa8, 0x8c, 0x58, 0x09, 0x49, 0x1e, 0x17, 0x90, 0x04, 0x2a, + 0xc3, 0xb0, 0x02, 0x4a, 0x7e, 0x51, 0x84, 0x12, 0x85, 0x07, 0xb7, 0x4a, 0xb6, 0x2b, 0xb1, 0xe4, + 0x8b, 0x65, 0x2c, 0xe9, 0x55, 0x06, 0xf1, 0xc3, 0x60, 0x72, 0x48, 0x6d, 0x50, 0x2a, 0x33, 0x6a, + 0x44, 0x1e, 0x45, 0x41, 0xa4, 0x71, 0x40, 0x11, 0xe6, 0x01, 0xb5, 0x6b, 0x5e, 0x5c, 0x1f, 0x00, + 0x1e, 0xd9, 0xb2, 0x4b, 0xa5, 0x65, 0xfe, 0xa9, 0x96, 0xdb, 0x52, 0xfd, 0x50, 0xa3, 0xc9, 0x12, + 0x53, 0x86, 0xaa, 0x96, 0xee, 0x81, 0x21, 0xe6, 0x71, 0x38, 0x92, 0x02, 0x55, 0xd4, 0x9b, 0xfa, + 0x2c, 0x6f, 0x5e, 0xbc, 0x3e, 0x27, 0x3b, 0xab, 0x43, 0x1a, 0xd2, 0xc3, 0x43, 0x00, 0xcf, 0x8e, + 0x85, 0x3e, 0x7a, 0xb1, 0xae, 0x7f, 0x65, 0xc7, 0x42, 0x9e, 0x53, 0xda, 0x18, 0x5e, 0x4a, 0xe2, + 0x21, 0x95, 0x81, 0x3f, 0x71, 0xa7, 0xba, 0xb6, 0xb7, 0xb4, 0xc1, 0x53, 0xc9, 0x94, 0xda, 0x5a, + 0xc1, 0xfc, 0x34, 0x0f, 0x4c, 0x01, 0x1e, 0xbd, 0x60, 0x9a, 0xc2, 0xa3, 0x17, 0x4c, 0xcd, 0xdf, + 0x13, 0x18, 0x15, 0xab, 0x15, 0x7f, 0x0c, 0x8d, 0x71, 0xe0, 0xa8, 0xa8, 0xf4, 0xb3, 0x33, 0x3c, + 0x0d, 0x1c, 0xfe, 0xe6, 0x3a, 0xe4, 0x96, 0x14, 0x52, 0x04, 0x1c, 0x5b, 0xd8, 0xf2, 0xa0, 0x3d, + 0x4b, 0x7e, 0xa7, 0xee, 0xd7, 0x73, 0xf7, 0xbf, 0x23, 0x54, 0x29, 0x54, 0xf5, 0xc7, 0xf4, 0xfe, + 0x9b, 0x3c, 0x4f, 0x0a, 0x81, 0x3f, 0xa2, 0xef, 0xdf, 0x12, 0xfc, 0x2f, 0x37, 0xd7, 0xc7, 0x74, + 0xbe, 0x9d, 0x27, 0x27, 0x6b, 0x2b, 0x73, 0x07, 0xf0, 0x66, 0xbf, 0xa8, 0x5b, 0xae, 0xd8, 0x09, + 0xf8, 0x13, 0x68, 0x3a, 0xee, 0x64, 0x12, 0x0f, 0x1a, 0x2b, 0x2e, 0x0a, 0x25, 0x36, 0xef, 0x40, + 0x27, 0xad, 0x3c, 0xaa, 0xf6, 0xb7, 0x3c, 0x8a, 0x53, 0x94, 0x36, 0xac, 0x94, 0x34, 0x3d, 0xd8, + 0x28, 0x14, 0x1c, 0x7e, 0x02, 0x3d, 0x59, 0x95, 0xa3, 0x25, 0xf4, 0x6f, 0x5a, 0x5d, 0xc9, 0x3b, + 0x95, 0x2c, 0xfc, 0x11, 0x80, 0x56, 0xb1, 0xf5, 0x60, 0xd7, 0xb3, 0x0c, 0xa5, 0x40, 0x77, 0xce, + 0x2d, 0x20, 0xbc, 0x53, 0xc2, 0x75, 0x29, 0x6c, 0xdb, 0x61, 0x48, 0x22, 0xf3, 0x08, 0x20, 0xaf, + 0x56, 0xbc, 0x03, 0xfd, 0xb9, 0xbd, 0x50, 0x4d, 0x30, 0x8a, 0xdd, 0xf7, 0x5c, 0x5f, 0x35, 0xbd, + 0xb9, 0xbd, 0x90, 0x1b, 0x7a, 0xed, 0xbe, 0xe7, 0xe6, 0x1f, 0xeb, 0xd0, 0x52, 0xd7, 0x15, 0x79, + 0x96, 0x20, 0x35, 0x72, 0x9d, 0xf4, 0x1c, 0x92, 0x3e, 0x73, 0x96, 0xae, 0xab, 0xba, 0xdc, 0xb0, + 0xa6, 0x28, 0x25, 0xc2, 0x9d, 0x73, 0xb9, 0x91, 0x86, 0x25, 0xbf, 0x71, 0x1f, 0xda, 0x7e, 0x32, + 0x1f, 0x89, 0x45, 0x2c, 0x3b, 0xa9, 0x61, 0xb5, 0xfc, 0x64, 0xfe, 0x66, 0x11, 0xe3, 0x11, 0x6c, + 0xe4, 0x6d, 0x49, 0x8b, 0xa8, 0x3b, 0xa1, 0xaf, 0x43, 0xac, 0x82, 0xf4, 0xcc, 0xea, 0x66, 0x3d, + 0x79, 0xe6, 0xe0, 0x01, 0x30, 0x69, 0xa3, 0xa0, 0x57, 0x9d, 0xba, 0x25, 0x4f, 0xdd, 0x27, 0xbe, + 0xc6, 0x66, 0x8a, 0xcb, 0x0f, 0xc0, 0xa0, 0x8a, 0x50, 0x2a, 0x6d, 0xa9, 0xd2, 0x21, 0x86, 0x14, + 0x7e, 0x06, 0x9b, 0xf9, 0xfd, 0xae, 0x54, 0x3a, 0xca, 0x4b, 0xce, 0xbe, 0x11, 0x5d, 0xa3, 0x18, + 0xdd, 0x33, 0x68, 0xeb, 0x2d, 0x56, 0xce, 0x02, 0x77, 0xa1, 0x19, 0xda, 0x91, 0x88, 0x35, 0x3c, + 0xa5, 0x78, 0x73, 0x6e, 0x47, 0x34, 0x43, 0xe9, 0x89, 0x40, 0xa9, 0x98, 0x8f, 0x61, 0xa3, 0xc0, + 0x27, 0x54, 0x15, 0x81, 0xb0, 0x3d, 0x9d, 0x22, 0x45, 0x64, 0xcb, 0xd4, 0xf3, 0x65, 0xcc, 0xc7, + 0x60, 0x64, 0xb5, 0x48, 0x69, 0x09, 0x93, 0x8b, 0xaf, 0x79, 0x3a, 0x16, 0x69, 0x8a, 0xdc, 0x85, + 0xc1, 0xb7, 0x7a, 0x2c, 0x69, 0x58, 0x8a, 0xb8, 0xfb, 0x97, 0x1a, 0x74, 0x5f, 0x28, 0x18, 0xa6, + 0xae, 0xc2, 0x4d, 0xe8, 0xbe, 0x4c, 0x3c, 0x4f, 0xb3, 0xd8, 0x1a, 0x76, 0xa0, 0x41, 0xe8, 0xcd, + 0x6a, 0x68, 0x40, 0x53, 0xa2, 0x33, 0xab, 0x13, 0x93, 0xca, 0x89, 0xad, 0xe3, 0x06, 0x18, 0x19, + 0xdc, 0xb1, 0x06, 0x91, 0xd9, 0xb5, 0xc0, 0x9a, 0xd8, 0x83, 0x4e, 0x8a, 0x72, 0x6c, 0x0b, 0xbb, + 0xd0, 0xd6, 0xa0, 0xc4, 0x10, 0x01, 0x5a, 0x2a, 0x51, 0x6c, 0x9b, 0x3c, 0x4b, 0x3c, 0x61, 0x3b, + 0xe4, 0x20, 0xeb, 0x50, 0xb6, 0x8b, 0x7d, 0x80, 0xbc, 0x37, 0xd9, 0x1e, 0x39, 0x4c, 0xbb, 0x92, + 0xed, 0xdf, 0xfd, 0x73, 0x13, 0x3a, 0x29, 0x1e, 0x60, 0x0b, 0xea, 0xaf, 0xbe, 0x66, 0x6b, 0xb8, + 0x05, 0x1b, 0x67, 0xbe, 0xe0, 0x91, 0x6f, 0x7b, 0x27, 0x74, 0x0f, 0xb1, 0x1a, 0xb1, 0x4e, 0xfc, + 0x71, 0xe0, 0xb8, 0xfe, 0x54, 0xb1, 0xea, 0xe4, 0xe8, 0xd8, 0x76, 0x5e, 0x06, 0xfe, 0x98, 0xb3, + 0x75, 0x64, 0xd0, 0xfb, 0xc6, 0xb7, 0x13, 0x31, 0x0b, 0x22, 0xf7, 0x3d, 0x77, 0x58, 0x03, 0x77, + 0x61, 0xeb, 0xcc, 0x8f, 0x93, 0xc9, 0xc4, 0x1d, 0xbb, 0xdc, 0x17, 0x5f, 0x25, 0xbe, 0x13, 0xb3, + 0x26, 0x22, 0xf4, 0xbf, 0xf1, 0x2f, 0xfd, 0xe0, 0x5b, 0x5f, 0x0f, 0x6f, 0xac, 0x85, 0x03, 0xd8, + 0x39, 0xb6, 0x63, 0xfe, 0x2c, 0x09, 0x3d, 0x77, 0x6c, 0x0b, 0xfe, 0xc4, 0x71, 0x22, 0x1e, 0xc7, + 0x8c, 0x93, 0x13, 0x92, 0x14, 0xd7, 0x9e, 0xa4, 0x06, 0x05, 0xff, 0x9c, 0xc7, 0x6c, 0x8a, 0xb7, + 0x60, 0xf7, 0x86, 0x44, 0xae, 0x3c, 0xc3, 0x1f, 0xc2, 0xa0, 0x2c, 0x7a, 0x6e, 0xc7, 0xe7, 0x91, + 0x3b, 0xe6, 0xcc, 0xc5, 0x1d, 0x60, 0x4a, 0x2a, 0x4b, 0xf7, 0xcc, 0x0f, 0x13, 0xc1, 0xfe, 0x90, + 0xae, 0xaf, 0xb9, 0xaf, 0x12, 0x41, 0xec, 0xcb, 0x12, 0xfb, 0x5c, 0x96, 0x07, 0xf3, 0x70, 0x1f, + 0xb6, 0x97, 0xd8, 0xaf, 0xe9, 0x7c, 0x14, 0x9d, 0x79, 0xbe, 0x5f, 0x25, 0x70, 0xa7, 0xbe, 0x2d, + 0x92, 0x88, 0x33, 0x1f, 0xf7, 0x00, 0x49, 0xa2, 0x43, 0x92, 0x1e, 0x3c, 0x48, 0x57, 0xd0, 0x7c, + 0xbd, 0x42, 0x58, 0x66, 0x7b, 0xc9, 0xd4, 0xf5, 0xd9, 0x3b, 0xdc, 0x05, 0xf6, 0x3c, 0xb8, 0xd2, + 0xdc, 0x13, 0x5f, 0xb8, 0xe2, 0x9a, 0xfd, 0xad, 0x86, 0x3b, 0xb0, 0x99, 0xb3, 0x9f, 0x47, 0x41, + 0x12, 0xb2, 0xbf, 0xd7, 0x70, 0x1f, 0x30, 0xe7, 0x9e, 0x47, 0x41, 0x18, 0xc4, 0xb6, 0xc7, 0xfe, + 0x51, 0xc3, 0x3d, 0xd8, 0x7a, 0x1e, 0x5c, 0x65, 0x59, 0x50, 0x06, 0xff, 0x4c, 0x0d, 0x32, 0xfe, + 0x0b, 0x3e, 0xbf, 0xe0, 0x11, 0xfb, 0x57, 0x0d, 0x6f, 0xc1, 0xce, 0xb2, 0x20, 0xf3, 0xf5, 0xef, + 0x9a, 0xde, 0x51, 0x26, 0x7a, 0x1b, 0x08, 0xce, 0xfe, 0x93, 0xb2, 0x75, 0x1c, 0xb4, 0xa3, 0xff, + 0xd6, 0x70, 0x1b, 0xfa, 0x39, 0x5b, 0xea, 0xfe, 0xaf, 0x86, 0x43, 0xd8, 0x2d, 0x30, 0x5d, 0x7f, + 0x7a, 0x4e, 0x1d, 0xc7, 0xfe, 0x5f, 0x3b, 0xfa, 0xae, 0x09, 0x9b, 0x74, 0x51, 0x3c, 0x09, 0xd5, + 0x02, 0x34, 0x2a, 0x3c, 0x50, 0x7d, 0x86, 0x15, 0x2f, 0xfb, 0x61, 0xd5, 0xac, 0x8e, 0x47, 0xba, + 0x1d, 0xb1, 0xea, 0x81, 0x3f, 0xac, 0x1c, 0xd9, 0x69, 0x11, 0x35, 0x4e, 0xdd, 0x7c, 0xe7, 0x0f, + 0xab, 0xe6, 0x76, 0xfc, 0xe5, 0x52, 0x7b, 0xe3, 0xaa, 0xd7, 0xfe, 0x70, 0xe5, 0x04, 0x8f, 0x5f, + 0xe6, 0x00, 0x80, 0x2b, 0xde, 0xfc, 0xc3, 0x55, 0x53, 0x3c, 0x3e, 0xca, 0xf0, 0x02, 0xab, 0x5f, + 0xfe, 0xc3, 0x15, 0x93, 0x3c, 0xc5, 0x46, 0x0d, 0x28, 0x55, 0x0f, 0xfa, 0x61, 0xe5, 0x70, 0x8e, + 0x9f, 0xa7, 0x80, 0x84, 0x95, 0x7f, 0x1a, 0x0c, 0xab, 0x9f, 0x00, 0x14, 0xa1, 0xfc, 0x59, 0xb9, + 0xea, 0xdf, 0x80, 0xe1, 0xca, 0xe1, 0x1e, 0x9f, 0x2c, 0x23, 0x1c, 0xae, 0xfc, 0x4f, 0x60, 0xb8, + 0x7a, 0xc4, 0xa7, 0x20, 0xe7, 0x6f, 0xc8, 0xea, 0x7f, 0x06, 0x86, 0xab, 0xa6, 0xfc, 0x8b, 0x96, + 0xfc, 0xc7, 0xe9, 0xe1, 0xf7, 0x01, 0x00, 0x00, 0xff, 0xff, 0xa1, 0x0f, 0x72, 0x7a, 0x86, 0x12, + 0x00, 0x00, } diff --git a/types/types.proto b/types/types.proto index 6633d4e3c..db25fbba3 100644 --- a/types/types.proto +++ b/types/types.proto @@ -233,15 +233,19 @@ message ConfigInfo { message Header { string chain_id = 1; - uint64 height = 2; + int32 height = 2; uint64 time = 3; uint64 num_txs = 4; - bytes last_block_hash = 5; - PartSetHeader last_block_parts = 6; - bytes last_commit_hash = 7; - bytes data_hash = 8; - bytes validators_hash = 9; - bytes app_hash = 10; + BlockID last_block_id = 5; + bytes last_commit_hash = 6; + bytes data_hash = 7; + bytes validators_hash = 8; + bytes app_hash = 9; +} + +message BlockID { + bytes hash = 1; + PartSetHeader parts = 2; } message PartSetHeader {