From 873b90867ab5026b67068fbc3740bebd08e1738e Mon Sep 17 00:00:00 2001 From: Sergio Mena Date: Sun, 24 Jul 2022 17:43:42 +0200 Subject: [PATCH] make proto-gen --- abci/types/types.pb.go | 1138 ++++++++++++++++++++++++++++++++-------- 1 file changed, 906 insertions(+), 232 deletions(-) diff --git a/abci/types/types.pb.go b/abci/types/types.pb.go index 54f4333ed..35303587c 100644 --- a/abci/types/types.pb.go +++ b/abci/types/types.pb.go @@ -120,7 +120,7 @@ func (x ResponseOfferSnapshot_Result) String() string { } func (ResponseOfferSnapshot_Result) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{31, 0} + return fileDescriptor_252557cfdd89a31a, []int{32, 0} } type ResponseApplySnapshotChunk_Result int32 @@ -157,7 +157,35 @@ func (x ResponseApplySnapshotChunk_Result) String() string { } func (ResponseApplySnapshotChunk_Result) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{33, 0} + return fileDescriptor_252557cfdd89a31a, []int{34, 0} +} + +type ResponseProcessProposal_Result int32 + +const ( + ResponseProcessProposal_UNKNOWN ResponseProcessProposal_Result = 0 + ResponseProcessProposal_ACCEPT ResponseProcessProposal_Result = 1 + ResponseProcessProposal_REJECT ResponseProcessProposal_Result = 2 +) + +var ResponseProcessProposal_Result_name = map[int32]string{ + 0: "UNKNOWN", + 1: "ACCEPT", + 2: "REJECT", +} + +var ResponseProcessProposal_Result_value = map[string]int32{ + "UNKNOWN": 0, + "ACCEPT": 1, + "REJECT": 2, +} + +func (x ResponseProcessProposal_Result) String() string { + return proto.EnumName(ResponseProcessProposal_Result_name, int32(x)) +} + +func (ResponseProcessProposal_Result) EnumDescriptor() ([]byte, []int) { + return fileDescriptor_252557cfdd89a31a, []int{36, 0} } type Request struct { @@ -178,6 +206,7 @@ type Request struct { // *Request_LoadSnapshotChunk // *Request_ApplySnapshotChunk // *Request_PrepareProposal + // *Request_ProcessProposal Value isRequest_Value `protobuf_oneof:"value"` } @@ -268,6 +297,9 @@ type Request_ApplySnapshotChunk struct { type Request_PrepareProposal struct { PrepareProposal *RequestPrepareProposal `protobuf:"bytes,16,opt,name=prepare_proposal,json=prepareProposal,proto3,oneof" json:"prepare_proposal,omitempty"` } +type Request_ProcessProposal struct { + ProcessProposal *RequestProcessProposal `protobuf:"bytes,17,opt,name=process_proposal,json=processProposal,proto3,oneof" json:"process_proposal,omitempty"` +} func (*Request_Echo) isRequest_Value() {} func (*Request_Flush) isRequest_Value() {} @@ -285,6 +317,7 @@ func (*Request_OfferSnapshot) isRequest_Value() {} func (*Request_LoadSnapshotChunk) isRequest_Value() {} func (*Request_ApplySnapshotChunk) isRequest_Value() {} func (*Request_PrepareProposal) isRequest_Value() {} +func (*Request_ProcessProposal) isRequest_Value() {} func (m *Request) GetValue() isRequest_Value { if m != nil { @@ -405,6 +438,13 @@ func (m *Request) GetPrepareProposal() *RequestPrepareProposal { return nil } +func (m *Request) GetProcessProposal() *RequestProcessProposal { + if x, ok := m.GetValue().(*Request_ProcessProposal); ok { + return x.ProcessProposal + } + return nil +} + // XXX_OneofWrappers is for the internal use of the proto package. func (*Request) XXX_OneofWrappers() []interface{} { return []interface{}{ @@ -424,6 +464,7 @@ func (*Request) XXX_OneofWrappers() []interface{} { (*Request_LoadSnapshotChunk)(nil), (*Request_ApplySnapshotChunk)(nil), (*Request_PrepareProposal)(nil), + (*Request_ProcessProposal)(nil), } } @@ -1284,6 +1325,58 @@ func (m *RequestPrepareProposal) GetBlockDataSize() int64 { return 0 } +type RequestProcessProposal struct { + Header types1.Header `protobuf:"bytes,1,opt,name=header,proto3" json:"header"` + Txs [][]byte `protobuf:"bytes,2,rep,name=txs,proto3" json:"txs,omitempty"` +} + +func (m *RequestProcessProposal) Reset() { *m = RequestProcessProposal{} } +func (m *RequestProcessProposal) String() string { return proto.CompactTextString(m) } +func (*RequestProcessProposal) ProtoMessage() {} +func (*RequestProcessProposal) Descriptor() ([]byte, []int) { + return fileDescriptor_252557cfdd89a31a, []int{17} +} +func (m *RequestProcessProposal) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *RequestProcessProposal) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_RequestProcessProposal.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 *RequestProcessProposal) XXX_Merge(src proto.Message) { + xxx_messageInfo_RequestProcessProposal.Merge(m, src) +} +func (m *RequestProcessProposal) XXX_Size() int { + return m.Size() +} +func (m *RequestProcessProposal) XXX_DiscardUnknown() { + xxx_messageInfo_RequestProcessProposal.DiscardUnknown(m) +} + +var xxx_messageInfo_RequestProcessProposal proto.InternalMessageInfo + +func (m *RequestProcessProposal) GetHeader() types1.Header { + if m != nil { + return m.Header + } + return types1.Header{} +} + +func (m *RequestProcessProposal) GetTxs() [][]byte { + if m != nil { + return m.Txs + } + return nil +} + type Response struct { // Types that are valid to be assigned to Value: // *Response_Exception @@ -1303,6 +1396,7 @@ type Response struct { // *Response_LoadSnapshotChunk // *Response_ApplySnapshotChunk // *Response_PrepareProposal + // *Response_ProcessProposal Value isResponse_Value `protobuf_oneof:"value"` } @@ -1310,7 +1404,7 @@ func (m *Response) Reset() { *m = Response{} } func (m *Response) String() string { return proto.CompactTextString(m) } func (*Response) ProtoMessage() {} func (*Response) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{17} + return fileDescriptor_252557cfdd89a31a, []int{18} } func (m *Response) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1396,6 +1490,9 @@ type Response_ApplySnapshotChunk struct { type Response_PrepareProposal struct { PrepareProposal *ResponsePrepareProposal `protobuf:"bytes,17,opt,name=prepare_proposal,json=prepareProposal,proto3,oneof" json:"prepare_proposal,omitempty"` } +type Response_ProcessProposal struct { + ProcessProposal *ResponseProcessProposal `protobuf:"bytes,18,opt,name=process_proposal,json=processProposal,proto3,oneof" json:"process_proposal,omitempty"` +} func (*Response_Exception) isResponse_Value() {} func (*Response_Echo) isResponse_Value() {} @@ -1414,6 +1511,7 @@ func (*Response_OfferSnapshot) isResponse_Value() {} func (*Response_LoadSnapshotChunk) isResponse_Value() {} func (*Response_ApplySnapshotChunk) isResponse_Value() {} func (*Response_PrepareProposal) isResponse_Value() {} +func (*Response_ProcessProposal) isResponse_Value() {} func (m *Response) GetValue() isResponse_Value { if m != nil { @@ -1541,6 +1639,13 @@ func (m *Response) GetPrepareProposal() *ResponsePrepareProposal { return nil } +func (m *Response) GetProcessProposal() *ResponseProcessProposal { + if x, ok := m.GetValue().(*Response_ProcessProposal); ok { + return x.ProcessProposal + } + return nil +} + // XXX_OneofWrappers is for the internal use of the proto package. func (*Response) XXX_OneofWrappers() []interface{} { return []interface{}{ @@ -1561,6 +1666,7 @@ func (*Response) XXX_OneofWrappers() []interface{} { (*Response_LoadSnapshotChunk)(nil), (*Response_ApplySnapshotChunk)(nil), (*Response_PrepareProposal)(nil), + (*Response_ProcessProposal)(nil), } } @@ -1573,7 +1679,7 @@ func (m *ResponseException) Reset() { *m = ResponseException{} } func (m *ResponseException) String() string { return proto.CompactTextString(m) } func (*ResponseException) ProtoMessage() {} func (*ResponseException) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{18} + return fileDescriptor_252557cfdd89a31a, []int{19} } func (m *ResponseException) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1617,7 +1723,7 @@ func (m *ResponseEcho) Reset() { *m = ResponseEcho{} } func (m *ResponseEcho) String() string { return proto.CompactTextString(m) } func (*ResponseEcho) ProtoMessage() {} func (*ResponseEcho) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{19} + return fileDescriptor_252557cfdd89a31a, []int{20} } func (m *ResponseEcho) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1660,7 +1766,7 @@ func (m *ResponseFlush) Reset() { *m = ResponseFlush{} } func (m *ResponseFlush) String() string { return proto.CompactTextString(m) } func (*ResponseFlush) ProtoMessage() {} func (*ResponseFlush) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{20} + return fileDescriptor_252557cfdd89a31a, []int{21} } func (m *ResponseFlush) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1701,7 +1807,7 @@ func (m *ResponseInfo) Reset() { *m = ResponseInfo{} } func (m *ResponseInfo) String() string { return proto.CompactTextString(m) } func (*ResponseInfo) ProtoMessage() {} func (*ResponseInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{21} + return fileDescriptor_252557cfdd89a31a, []int{22} } func (m *ResponseInfo) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1777,7 +1883,7 @@ func (m *ResponseSetOption) Reset() { *m = ResponseSetOption{} } func (m *ResponseSetOption) String() string { return proto.CompactTextString(m) } func (*ResponseSetOption) ProtoMessage() {} func (*ResponseSetOption) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{22} + return fileDescriptor_252557cfdd89a31a, []int{23} } func (m *ResponseSetOption) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1837,7 +1943,7 @@ func (m *ResponseInitChain) Reset() { *m = ResponseInitChain{} } func (m *ResponseInitChain) String() string { return proto.CompactTextString(m) } func (*ResponseInitChain) ProtoMessage() {} func (*ResponseInitChain) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{23} + return fileDescriptor_252557cfdd89a31a, []int{24} } func (m *ResponseInitChain) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1904,7 +2010,7 @@ func (m *ResponseQuery) Reset() { *m = ResponseQuery{} } func (m *ResponseQuery) String() string { return proto.CompactTextString(m) } func (*ResponseQuery) ProtoMessage() {} func (*ResponseQuery) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{24} + return fileDescriptor_252557cfdd89a31a, []int{25} } func (m *ResponseQuery) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2004,7 +2110,7 @@ func (m *ResponseBeginBlock) Reset() { *m = ResponseBeginBlock{} } func (m *ResponseBeginBlock) String() string { return proto.CompactTextString(m) } func (*ResponseBeginBlock) ProtoMessage() {} func (*ResponseBeginBlock) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{25} + return fileDescriptor_252557cfdd89a31a, []int{26} } func (m *ResponseBeginBlock) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2060,7 +2166,7 @@ func (m *ResponseCheckTx) Reset() { *m = ResponseCheckTx{} } func (m *ResponseCheckTx) String() string { return proto.CompactTextString(m) } func (*ResponseCheckTx) ProtoMessage() {} func (*ResponseCheckTx) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{26} + return fileDescriptor_252557cfdd89a31a, []int{27} } func (m *ResponseCheckTx) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2181,7 +2287,7 @@ func (m *ResponseDeliverTx) Reset() { *m = ResponseDeliverTx{} } func (m *ResponseDeliverTx) String() string { return proto.CompactTextString(m) } func (*ResponseDeliverTx) ProtoMessage() {} func (*ResponseDeliverTx) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{27} + return fileDescriptor_252557cfdd89a31a, []int{28} } func (m *ResponseDeliverTx) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2276,7 +2382,7 @@ func (m *ResponseEndBlock) Reset() { *m = ResponseEndBlock{} } func (m *ResponseEndBlock) String() string { return proto.CompactTextString(m) } func (*ResponseEndBlock) ProtoMessage() {} func (*ResponseEndBlock) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{28} + return fileDescriptor_252557cfdd89a31a, []int{29} } func (m *ResponseEndBlock) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2336,7 +2442,7 @@ func (m *ResponseCommit) Reset() { *m = ResponseCommit{} } func (m *ResponseCommit) String() string { return proto.CompactTextString(m) } func (*ResponseCommit) ProtoMessage() {} func (*ResponseCommit) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{29} + return fileDescriptor_252557cfdd89a31a, []int{30} } func (m *ResponseCommit) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2387,7 +2493,7 @@ func (m *ResponseListSnapshots) Reset() { *m = ResponseListSnapshots{} } func (m *ResponseListSnapshots) String() string { return proto.CompactTextString(m) } func (*ResponseListSnapshots) ProtoMessage() {} func (*ResponseListSnapshots) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{30} + return fileDescriptor_252557cfdd89a31a, []int{31} } func (m *ResponseListSnapshots) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2431,7 +2537,7 @@ func (m *ResponseOfferSnapshot) Reset() { *m = ResponseOfferSnapshot{} } func (m *ResponseOfferSnapshot) String() string { return proto.CompactTextString(m) } func (*ResponseOfferSnapshot) ProtoMessage() {} func (*ResponseOfferSnapshot) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{31} + return fileDescriptor_252557cfdd89a31a, []int{32} } func (m *ResponseOfferSnapshot) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2475,7 +2581,7 @@ func (m *ResponseLoadSnapshotChunk) Reset() { *m = ResponseLoadSnapshotC func (m *ResponseLoadSnapshotChunk) String() string { return proto.CompactTextString(m) } func (*ResponseLoadSnapshotChunk) ProtoMessage() {} func (*ResponseLoadSnapshotChunk) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{32} + return fileDescriptor_252557cfdd89a31a, []int{33} } func (m *ResponseLoadSnapshotChunk) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2521,7 +2627,7 @@ func (m *ResponseApplySnapshotChunk) Reset() { *m = ResponseApplySnapsho func (m *ResponseApplySnapshotChunk) String() string { return proto.CompactTextString(m) } func (*ResponseApplySnapshotChunk) ProtoMessage() {} func (*ResponseApplySnapshotChunk) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{33} + return fileDescriptor_252557cfdd89a31a, []int{34} } func (m *ResponseApplySnapshotChunk) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2579,7 +2685,7 @@ func (m *ResponsePrepareProposal) Reset() { *m = ResponsePrepareProposal func (m *ResponsePrepareProposal) String() string { return proto.CompactTextString(m) } func (*ResponsePrepareProposal) ProtoMessage() {} func (*ResponsePrepareProposal) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{34} + return fileDescriptor_252557cfdd89a31a, []int{35} } func (m *ResponsePrepareProposal) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2615,6 +2721,58 @@ func (m *ResponsePrepareProposal) GetBlockData() [][]byte { return nil } +type ResponseProcessProposal struct { + Result ResponseProcessProposal_Result `protobuf:"varint,1,opt,name=result,proto3,enum=tendermint.abci.ResponseProcessProposal_Result" json:"result,omitempty"` + Evidence [][]byte `protobuf:"bytes,2,rep,name=evidence,proto3" json:"evidence,omitempty"` +} + +func (m *ResponseProcessProposal) Reset() { *m = ResponseProcessProposal{} } +func (m *ResponseProcessProposal) String() string { return proto.CompactTextString(m) } +func (*ResponseProcessProposal) ProtoMessage() {} +func (*ResponseProcessProposal) Descriptor() ([]byte, []int) { + return fileDescriptor_252557cfdd89a31a, []int{36} +} +func (m *ResponseProcessProposal) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *ResponseProcessProposal) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_ResponseProcessProposal.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 *ResponseProcessProposal) XXX_Merge(src proto.Message) { + xxx_messageInfo_ResponseProcessProposal.Merge(m, src) +} +func (m *ResponseProcessProposal) XXX_Size() int { + return m.Size() +} +func (m *ResponseProcessProposal) XXX_DiscardUnknown() { + xxx_messageInfo_ResponseProcessProposal.DiscardUnknown(m) +} + +var xxx_messageInfo_ResponseProcessProposal proto.InternalMessageInfo + +func (m *ResponseProcessProposal) GetResult() ResponseProcessProposal_Result { + if m != nil { + return m.Result + } + return ResponseProcessProposal_UNKNOWN +} + +func (m *ResponseProcessProposal) GetEvidence() [][]byte { + if m != nil { + return m.Evidence + } + return nil +} + // ConsensusParams contains all consensus-relevant parameters // that can be adjusted by the abci app type ConsensusParams struct { @@ -2628,7 +2786,7 @@ func (m *ConsensusParams) Reset() { *m = ConsensusParams{} } func (m *ConsensusParams) String() string { return proto.CompactTextString(m) } func (*ConsensusParams) ProtoMessage() {} func (*ConsensusParams) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{35} + return fileDescriptor_252557cfdd89a31a, []int{37} } func (m *ConsensusParams) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2697,7 +2855,7 @@ func (m *BlockParams) Reset() { *m = BlockParams{} } func (m *BlockParams) String() string { return proto.CompactTextString(m) } func (*BlockParams) ProtoMessage() {} func (*BlockParams) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{36} + return fileDescriptor_252557cfdd89a31a, []int{38} } func (m *BlockParams) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2749,7 +2907,7 @@ func (m *LastCommitInfo) Reset() { *m = LastCommitInfo{} } func (m *LastCommitInfo) String() string { return proto.CompactTextString(m) } func (*LastCommitInfo) ProtoMessage() {} func (*LastCommitInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{37} + return fileDescriptor_252557cfdd89a31a, []int{39} } func (m *LastCommitInfo) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2804,7 +2962,7 @@ func (m *Event) Reset() { *m = Event{} } func (m *Event) String() string { return proto.CompactTextString(m) } func (*Event) ProtoMessage() {} func (*Event) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{38} + return fileDescriptor_252557cfdd89a31a, []int{40} } func (m *Event) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2858,7 +3016,7 @@ func (m *EventAttribute) Reset() { *m = EventAttribute{} } func (m *EventAttribute) String() string { return proto.CompactTextString(m) } func (*EventAttribute) ProtoMessage() {} func (*EventAttribute) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{39} + return fileDescriptor_252557cfdd89a31a, []int{41} } func (m *EventAttribute) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2922,7 +3080,7 @@ func (m *TxResult) Reset() { *m = TxResult{} } func (m *TxResult) String() string { return proto.CompactTextString(m) } func (*TxResult) ProtoMessage() {} func (*TxResult) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{40} + return fileDescriptor_252557cfdd89a31a, []int{42} } func (m *TxResult) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2990,7 +3148,7 @@ func (m *Validator) Reset() { *m = Validator{} } func (m *Validator) String() string { return proto.CompactTextString(m) } func (*Validator) ProtoMessage() {} func (*Validator) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{41} + return fileDescriptor_252557cfdd89a31a, []int{43} } func (m *Validator) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3043,7 +3201,7 @@ func (m *ValidatorUpdate) Reset() { *m = ValidatorUpdate{} } func (m *ValidatorUpdate) String() string { return proto.CompactTextString(m) } func (*ValidatorUpdate) ProtoMessage() {} func (*ValidatorUpdate) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{42} + return fileDescriptor_252557cfdd89a31a, []int{44} } func (m *ValidatorUpdate) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3096,7 +3254,7 @@ func (m *VoteInfo) Reset() { *m = VoteInfo{} } func (m *VoteInfo) String() string { return proto.CompactTextString(m) } func (*VoteInfo) ProtoMessage() {} func (*VoteInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{43} + return fileDescriptor_252557cfdd89a31a, []int{45} } func (m *VoteInfo) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3157,7 +3315,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_252557cfdd89a31a, []int{44} + return fileDescriptor_252557cfdd89a31a, []int{46} } func (m *Evidence) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3233,7 +3391,7 @@ func (m *Snapshot) Reset() { *m = Snapshot{} } func (m *Snapshot) String() string { return proto.CompactTextString(m) } func (*Snapshot) ProtoMessage() {} func (*Snapshot) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{45} + return fileDescriptor_252557cfdd89a31a, []int{47} } func (m *Snapshot) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3302,6 +3460,7 @@ func init() { proto.RegisterEnum("tendermint.abci.EvidenceType", EvidenceType_name, EvidenceType_value) proto.RegisterEnum("tendermint.abci.ResponseOfferSnapshot_Result", ResponseOfferSnapshot_Result_name, ResponseOfferSnapshot_Result_value) proto.RegisterEnum("tendermint.abci.ResponseApplySnapshotChunk_Result", ResponseApplySnapshotChunk_Result_name, ResponseApplySnapshotChunk_Result_value) + proto.RegisterEnum("tendermint.abci.ResponseProcessProposal_Result", ResponseProcessProposal_Result_name, ResponseProcessProposal_Result_value) proto.RegisterType((*Request)(nil), "tendermint.abci.Request") proto.RegisterType((*RequestEcho)(nil), "tendermint.abci.RequestEcho") proto.RegisterType((*RequestFlush)(nil), "tendermint.abci.RequestFlush") @@ -3319,6 +3478,7 @@ func init() { proto.RegisterType((*RequestLoadSnapshotChunk)(nil), "tendermint.abci.RequestLoadSnapshotChunk") proto.RegisterType((*RequestApplySnapshotChunk)(nil), "tendermint.abci.RequestApplySnapshotChunk") proto.RegisterType((*RequestPrepareProposal)(nil), "tendermint.abci.RequestPrepareProposal") + proto.RegisterType((*RequestProcessProposal)(nil), "tendermint.abci.RequestProcessProposal") proto.RegisterType((*Response)(nil), "tendermint.abci.Response") proto.RegisterType((*ResponseException)(nil), "tendermint.abci.ResponseException") proto.RegisterType((*ResponseEcho)(nil), "tendermint.abci.ResponseEcho") @@ -3337,6 +3497,7 @@ func init() { proto.RegisterType((*ResponseLoadSnapshotChunk)(nil), "tendermint.abci.ResponseLoadSnapshotChunk") proto.RegisterType((*ResponseApplySnapshotChunk)(nil), "tendermint.abci.ResponseApplySnapshotChunk") proto.RegisterType((*ResponsePrepareProposal)(nil), "tendermint.abci.ResponsePrepareProposal") + proto.RegisterType((*ResponseProcessProposal)(nil), "tendermint.abci.ResponseProcessProposal") proto.RegisterType((*ConsensusParams)(nil), "tendermint.abci.ConsensusParams") proto.RegisterType((*BlockParams)(nil), "tendermint.abci.BlockParams") proto.RegisterType((*LastCommitInfo)(nil), "tendermint.abci.LastCommitInfo") @@ -3353,188 +3514,195 @@ func init() { func init() { proto.RegisterFile("tendermint/abci/types.proto", fileDescriptor_252557cfdd89a31a) } var fileDescriptor_252557cfdd89a31a = []byte{ - // 2894 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x5a, 0xcd, 0x73, 0x23, 0xc5, - 0x15, 0xd7, 0xb7, 0x34, 0x4f, 0xd6, 0x87, 0x7b, 0x97, 0x5d, 0x31, 0xec, 0xda, 0xcb, 0x50, 0xc0, - 0xb2, 0x80, 0x1d, 0x4c, 0x41, 0x96, 0x40, 0x02, 0x96, 0x56, 0x8b, 0x8c, 0x8d, 0xed, 0x8c, 0xb5, - 0x4b, 0xbe, 0xd8, 0x61, 0xa4, 0x69, 0x4b, 0xc3, 0x4a, 0x33, 0xc3, 0x4c, 0xcb, 0xd8, 0x7b, 0x4c, - 0x25, 0x17, 0x72, 0xe1, 0x98, 0x0b, 0xff, 0x47, 0x0e, 0xa9, 0x5c, 0x72, 0xa1, 0x2a, 0x17, 0x8e, - 0x39, 0xa4, 0x48, 0x8a, 0x3d, 0xa4, 0x92, 0x7f, 0x20, 0xa7, 0x54, 0x52, 0xfd, 0x31, 0x5f, 0x92, - 0xc6, 0x92, 0x21, 0xb7, 0xdc, 0xba, 0x5f, 0xbf, 0xf7, 0x66, 0xba, 0xa7, 0xfb, 0xf7, 0x7e, 0xef, - 0xf5, 0xc0, 0x53, 0x04, 0x5b, 0x06, 0x76, 0xc7, 0xa6, 0x45, 0x36, 0xf5, 0x5e, 0xdf, 0xdc, 0x24, - 0x67, 0x0e, 0xf6, 0x36, 0x1c, 0xd7, 0x26, 0x36, 0xaa, 0x85, 0x83, 0x1b, 0x74, 0x50, 0xbe, 0x1e, - 0xd1, 0xee, 0xbb, 0x67, 0x0e, 0xb1, 0x37, 0x1d, 0xd7, 0xb6, 0x8f, 0xb9, 0xbe, 0x7c, 0x2d, 0x32, - 0xcc, 0xfc, 0x44, 0xbd, 0xc5, 0x46, 0x85, 0xf1, 0x43, 0x7c, 0xe6, 0x8f, 0x5e, 0x9f, 0xb1, 0x75, - 0x74, 0x57, 0x1f, 0xfb, 0xc3, 0xeb, 0x03, 0xdb, 0x1e, 0x8c, 0xf0, 0x26, 0xeb, 0xf5, 0x26, 0xc7, - 0x9b, 0xc4, 0x1c, 0x63, 0x8f, 0xe8, 0x63, 0x47, 0x28, 0x5c, 0x1e, 0xd8, 0x03, 0x9b, 0x35, 0x37, - 0x69, 0x8b, 0x4b, 0x95, 0xbf, 0x97, 0xa0, 0xa8, 0xe2, 0x4f, 0x26, 0xd8, 0x23, 0x68, 0x0b, 0x72, - 0xb8, 0x3f, 0xb4, 0x1b, 0xe9, 0x1b, 0xe9, 0x9b, 0xe5, 0xad, 0x6b, 0x1b, 0x53, 0x93, 0xdb, 0x10, - 0x7a, 0xed, 0xfe, 0xd0, 0xee, 0xa4, 0x54, 0xa6, 0x8b, 0x5e, 0x83, 0xfc, 0xf1, 0x68, 0xe2, 0x0d, - 0x1b, 0x19, 0x66, 0x74, 0x3d, 0xc9, 0xe8, 0x2e, 0x55, 0xea, 0xa4, 0x54, 0xae, 0x4d, 0x1f, 0x65, - 0x5a, 0xc7, 0x76, 0x23, 0x7b, 0xfe, 0xa3, 0x76, 0xac, 0x63, 0xf6, 0x28, 0xaa, 0x8b, 0x9a, 0x00, - 0x1e, 0x26, 0x9a, 0xed, 0x10, 0xd3, 0xb6, 0x1a, 0x39, 0x66, 0xf9, 0x74, 0x92, 0xe5, 0x11, 0x26, - 0x07, 0x4c, 0xb1, 0x93, 0x52, 0x25, 0xcf, 0xef, 0x50, 0x1f, 0xa6, 0x65, 0x12, 0xad, 0x3f, 0xd4, - 0x4d, 0xab, 0x91, 0x3f, 0xdf, 0xc7, 0x8e, 0x65, 0x92, 0x16, 0x55, 0xa4, 0x3e, 0x4c, 0xbf, 0x43, - 0xa7, 0xfc, 0xc9, 0x04, 0xbb, 0x67, 0x8d, 0xc2, 0xf9, 0x53, 0xfe, 0x31, 0x55, 0xa2, 0x53, 0x66, - 0xda, 0xa8, 0x0d, 0xe5, 0x1e, 0x1e, 0x98, 0x96, 0xd6, 0x1b, 0xd9, 0xfd, 0x87, 0x8d, 0x22, 0x33, - 0x56, 0x92, 0x8c, 0x9b, 0x54, 0xb5, 0x49, 0x35, 0x3b, 0x29, 0x15, 0x7a, 0x41, 0x0f, 0xbd, 0x05, - 0xa5, 0xfe, 0x10, 0xf7, 0x1f, 0x6a, 0xe4, 0xb4, 0x51, 0x62, 0x3e, 0xd6, 0x93, 0x7c, 0xb4, 0xa8, - 0x5e, 0xf7, 0xb4, 0x93, 0x52, 0x8b, 0x7d, 0xde, 0xa4, 0xf3, 0x37, 0xf0, 0xc8, 0x3c, 0xc1, 0x2e, - 0xb5, 0x97, 0xce, 0x9f, 0xff, 0x1d, 0xae, 0xc9, 0x3c, 0x48, 0x86, 0xdf, 0x41, 0x6f, 0x83, 0x84, - 0x2d, 0x43, 0x4c, 0x03, 0x98, 0x8b, 0x1b, 0x89, 0x7b, 0xc5, 0x32, 0xfc, 0x49, 0x94, 0xb0, 0x68, - 0xa3, 0xdb, 0x50, 0xe8, 0xdb, 0xe3, 0xb1, 0x49, 0x1a, 0x65, 0x66, 0xbd, 0x96, 0x38, 0x01, 0xa6, - 0xd5, 0x49, 0xa9, 0x42, 0x1f, 0xed, 0x43, 0x75, 0x64, 0x7a, 0x44, 0xf3, 0x2c, 0xdd, 0xf1, 0x86, - 0x36, 0xf1, 0x1a, 0x2b, 0xcc, 0xc3, 0xb3, 0x49, 0x1e, 0xf6, 0x4c, 0x8f, 0x1c, 0xf9, 0xca, 0x9d, - 0x94, 0x5a, 0x19, 0x45, 0x05, 0xd4, 0x9f, 0x7d, 0x7c, 0x8c, 0xdd, 0xc0, 0x61, 0xa3, 0x72, 0xbe, - 0xbf, 0x03, 0xaa, 0xed, 0xdb, 0x53, 0x7f, 0x76, 0x54, 0x80, 0x7e, 0x0e, 0x97, 0x46, 0xb6, 0x6e, - 0x04, 0xee, 0xb4, 0xfe, 0x70, 0x62, 0x3d, 0x6c, 0x54, 0x99, 0xd3, 0x17, 0x12, 0x5f, 0xd2, 0xd6, - 0x0d, 0xdf, 0x45, 0x8b, 0x1a, 0x74, 0x52, 0xea, 0xea, 0x68, 0x5a, 0x88, 0x1e, 0xc0, 0x65, 0xdd, - 0x71, 0x46, 0x67, 0xd3, 0xde, 0x6b, 0xcc, 0xfb, 0xad, 0x24, 0xef, 0xdb, 0xd4, 0x66, 0xda, 0x3d, - 0xd2, 0x67, 0xa4, 0xa8, 0x0b, 0x75, 0xc7, 0xc5, 0x8e, 0xee, 0x62, 0xcd, 0x71, 0x6d, 0xc7, 0xf6, - 0xf4, 0x51, 0xa3, 0xce, 0x7c, 0x3f, 0x9f, 0xe4, 0xfb, 0x90, 0xeb, 0x1f, 0x0a, 0xf5, 0x4e, 0x4a, - 0xad, 0x39, 0x71, 0x51, 0xb3, 0x08, 0xf9, 0x13, 0x7d, 0x34, 0xc1, 0xca, 0xf3, 0x50, 0x8e, 0x00, - 0x08, 0x6a, 0x40, 0x71, 0x8c, 0x3d, 0x4f, 0x1f, 0x60, 0x86, 0x37, 0x92, 0xea, 0x77, 0x95, 0x2a, - 0xac, 0x44, 0x41, 0x43, 0x19, 0x07, 0x86, 0x14, 0x0e, 0xa8, 0xe1, 0x09, 0x76, 0x3d, 0x8a, 0x01, - 0xc2, 0x50, 0x74, 0xd1, 0x33, 0x50, 0x61, 0x9b, 0x52, 0xf3, 0xc7, 0x29, 0x26, 0xe5, 0xd4, 0x15, - 0x26, 0xbc, 0x2f, 0x94, 0xd6, 0xa1, 0xec, 0x6c, 0x39, 0x81, 0x4a, 0x96, 0xa9, 0x80, 0xb3, 0xe5, - 0x08, 0x05, 0xe5, 0x07, 0x50, 0x9f, 0xc6, 0x10, 0x54, 0x87, 0xec, 0x43, 0x7c, 0x26, 0x9e, 0x47, - 0x9b, 0xe8, 0xb2, 0x98, 0x16, 0x7b, 0x86, 0xa4, 0x8a, 0x39, 0xfe, 0x29, 0x13, 0x18, 0x07, 0xe0, - 0x81, 0x6e, 0x43, 0x8e, 0x62, 0xb1, 0x80, 0x55, 0x79, 0x83, 0x03, 0xf5, 0x86, 0x0f, 0xd4, 0x1b, - 0x5d, 0x1f, 0xa8, 0x9b, 0xa5, 0x2f, 0xbf, 0x5e, 0x4f, 0x7d, 0xfe, 0xd7, 0xf5, 0xb4, 0xca, 0x2c, - 0xd0, 0x93, 0xf4, 0xac, 0xeb, 0xa6, 0xa5, 0x99, 0x86, 0x78, 0x4e, 0x91, 0xf5, 0x77, 0x0c, 0xb4, - 0x0b, 0xf5, 0xbe, 0x6d, 0x79, 0xd8, 0xf2, 0x26, 0x9e, 0xc6, 0x03, 0x81, 0x00, 0xd3, 0xd9, 0xb3, - 0xd8, 0xf2, 0x15, 0x0f, 0x99, 0x9e, 0x5a, 0xeb, 0xc7, 0x05, 0xe8, 0x2e, 0xc0, 0x89, 0x3e, 0x32, - 0x0d, 0x9d, 0xd8, 0xae, 0xd7, 0xc8, 0xdd, 0xc8, 0xce, 0x75, 0x73, 0xdf, 0x57, 0xb9, 0xe7, 0x18, - 0x3a, 0xc1, 0xcd, 0x1c, 0x7d, 0x5b, 0x35, 0x62, 0x89, 0x9e, 0x83, 0x9a, 0xee, 0x38, 0x9a, 0x47, - 0x74, 0x82, 0xb5, 0xde, 0x19, 0xc1, 0x1e, 0x83, 0xd8, 0x15, 0xb5, 0xa2, 0x3b, 0xce, 0x11, 0x95, - 0x36, 0xa9, 0x10, 0x3d, 0x0b, 0x55, 0x0a, 0xa7, 0xa6, 0x3e, 0xd2, 0x86, 0xd8, 0x1c, 0x0c, 0x09, - 0x83, 0xd2, 0xac, 0x5a, 0x11, 0xd2, 0x0e, 0x13, 0x2a, 0x46, 0xb0, 0x11, 0x18, 0x94, 0x22, 0x04, - 0x39, 0x43, 0x27, 0x3a, 0x5b, 0xc8, 0x15, 0x95, 0xb5, 0xa9, 0xcc, 0xd1, 0xc9, 0x50, 0x2c, 0x0f, - 0x6b, 0xa3, 0x2b, 0x50, 0x10, 0x6e, 0xb3, 0xcc, 0xad, 0xe8, 0xd1, 0x6f, 0xe6, 0xb8, 0xf6, 0x09, - 0x66, 0xb1, 0xa3, 0xa4, 0xf2, 0x8e, 0xf2, 0xab, 0x0c, 0xac, 0xce, 0x80, 0x2e, 0xf5, 0x3b, 0xd4, - 0xbd, 0xa1, 0xff, 0x2c, 0xda, 0x46, 0xaf, 0x53, 0xbf, 0xba, 0x81, 0x5d, 0x11, 0xec, 0x1a, 0xd1, - 0x25, 0xe2, 0x81, 0xbc, 0xc3, 0xc6, 0xc5, 0xd2, 0x08, 0x6d, 0x74, 0x00, 0xf5, 0x91, 0xee, 0x11, - 0x8d, 0x83, 0x98, 0x16, 0x09, 0x7c, 0xb3, 0xd0, 0xbd, 0xa7, 0xfb, 0xb0, 0x47, 0x37, 0xbb, 0x70, - 0x54, 0x1d, 0xc5, 0xa4, 0x48, 0x85, 0xcb, 0xbd, 0xb3, 0x47, 0xba, 0x45, 0x4c, 0x0b, 0x6b, 0x33, - 0x5f, 0xee, 0xc9, 0x19, 0xa7, 0xed, 0x13, 0xd3, 0xc0, 0x56, 0xdf, 0xff, 0x64, 0x97, 0x02, 0xe3, - 0xe0, 0x93, 0x7a, 0x8a, 0x0a, 0xd5, 0x78, 0xd8, 0x40, 0x55, 0xc8, 0x90, 0x53, 0xb1, 0x00, 0x19, - 0x72, 0x8a, 0xbe, 0x07, 0x39, 0x3a, 0x49, 0x36, 0xf9, 0xea, 0x9c, 0x98, 0x2d, 0xec, 0xba, 0x67, - 0x0e, 0x56, 0x99, 0xa6, 0xa2, 0x04, 0xa7, 0x21, 0x08, 0x25, 0xd3, 0x5e, 0x95, 0x17, 0xa0, 0x36, - 0x15, 0x2b, 0x22, 0xdf, 0x2f, 0x1d, 0xfd, 0x7e, 0x4a, 0x0d, 0x2a, 0xb1, 0xc0, 0xa0, 0x5c, 0x81, - 0xcb, 0xf3, 0x70, 0x5e, 0x19, 0x06, 0xf2, 0x18, 0x5e, 0xa3, 0xd7, 0xa0, 0x14, 0x00, 0x3d, 0x3f, - 0x8d, 0xb3, 0x6b, 0xe5, 0x2b, 0xab, 0x81, 0x2a, 0x3d, 0x86, 0x74, 0x5b, 0xb3, 0xfd, 0x90, 0x61, - 0x2f, 0x5e, 0xd4, 0x1d, 0xa7, 0xa3, 0x7b, 0x43, 0xe5, 0x23, 0x68, 0x24, 0x81, 0xf8, 0xd4, 0x34, - 0x72, 0xc1, 0x36, 0xbc, 0x02, 0x85, 0x63, 0xdb, 0x1d, 0xeb, 0x84, 0x39, 0xab, 0xa8, 0xa2, 0x47, - 0xb7, 0x27, 0x07, 0xf4, 0x2c, 0x13, 0xf3, 0x8e, 0xa2, 0xc1, 0x93, 0x89, 0x40, 0x4e, 0x4d, 0x4c, - 0xcb, 0xc0, 0x7c, 0x3d, 0x2b, 0x2a, 0xef, 0x84, 0x8e, 0xf8, 0xcb, 0xf2, 0x0e, 0x7d, 0xac, 0xc7, - 0xe6, 0xca, 0xfc, 0x4b, 0xaa, 0xe8, 0x29, 0x1a, 0x5c, 0x99, 0x8f, 0xe6, 0xe8, 0x3a, 0x00, 0xc7, - 0x53, 0x71, 0xea, 0xb2, 0x37, 0x57, 0x54, 0x89, 0x49, 0xee, 0xd0, 0xa3, 0xf7, 0x1c, 0xd4, 0xc2, - 0x61, 0xcd, 0x33, 0x1f, 0xf1, 0xad, 0x91, 0x55, 0x2b, 0x81, 0xce, 0x91, 0xf9, 0x08, 0x2b, 0xbf, - 0x97, 0xa0, 0xa4, 0x62, 0xcf, 0xa1, 0xa0, 0x83, 0x9a, 0x20, 0xe1, 0xd3, 0x3e, 0xe6, 0x1c, 0x2e, - 0x9d, 0xc8, 0x81, 0xb8, 0x76, 0xdb, 0xd7, 0xa4, 0x04, 0x24, 0x30, 0x43, 0xaf, 0x0a, 0x9e, 0x9a, - 0x4c, 0x39, 0x85, 0x79, 0x94, 0xa8, 0xbe, 0xee, 0x13, 0xd5, 0x6c, 0x22, 0xe7, 0xe0, 0x56, 0x53, - 0x4c, 0xf5, 0x55, 0xc1, 0x54, 0x73, 0x0b, 0x1e, 0x16, 0xa3, 0xaa, 0xad, 0x18, 0x55, 0xcd, 0x2f, - 0x98, 0x66, 0x02, 0x57, 0x6d, 0xc5, 0xb8, 0x6a, 0x61, 0x81, 0x93, 0x04, 0xb2, 0xfa, 0xba, 0x4f, - 0x56, 0x8b, 0x0b, 0xa6, 0x3d, 0xc5, 0x56, 0xef, 0xc6, 0xd9, 0x2a, 0x67, 0x9a, 0xcf, 0x24, 0x5a, - 0x27, 0xd2, 0xd5, 0x1f, 0x46, 0xe8, 0xaa, 0x94, 0xc8, 0x15, 0xb9, 0x93, 0x39, 0x7c, 0xb5, 0x15, - 0xe3, 0xab, 0xb0, 0x60, 0x0d, 0x12, 0x08, 0xeb, 0x3b, 0x51, 0xc2, 0x5a, 0x4e, 0xe4, 0xbc, 0x62, - 0xd3, 0xcc, 0x63, 0xac, 0x6f, 0x04, 0x8c, 0x75, 0x25, 0x91, 0x72, 0x8b, 0x39, 0x4c, 0x53, 0xd6, - 0x83, 0x19, 0xca, 0xca, 0x29, 0xe6, 0x73, 0x89, 0x2e, 0x16, 0x70, 0xd6, 0x83, 0x19, 0xce, 0x5a, - 0x5d, 0xe0, 0x70, 0x01, 0x69, 0xfd, 0xc5, 0x7c, 0xd2, 0x9a, 0x4c, 0x2b, 0xc5, 0x6b, 0x2e, 0xc7, - 0x5a, 0xb5, 0x04, 0xd6, 0xca, 0x99, 0xe5, 0x8b, 0x89, 0xee, 0x97, 0xa6, 0xad, 0xf7, 0xe6, 0xd0, - 0xd6, 0x55, 0xe6, 0xfc, 0x66, 0xa2, 0xf3, 0x8b, 0xf0, 0xd6, 0x17, 0x28, 0x3d, 0x98, 0xc2, 0x23, - 0x0a, 0xb1, 0xd8, 0x75, 0x6d, 0x57, 0x50, 0x42, 0xde, 0x51, 0x6e, 0x52, 0xc2, 0x12, 0x62, 0xcf, - 0x39, 0x1c, 0x97, 0x85, 0xb2, 0x08, 0xde, 0x28, 0xbf, 0x4b, 0x87, 0xb6, 0x2c, 0xc6, 0x47, 0xc9, - 0x8e, 0x24, 0xc8, 0x4e, 0x84, 0xfa, 0x66, 0xe2, 0xd4, 0x77, 0x1d, 0xca, 0x34, 0x44, 0x4d, 0xb1, - 0x5a, 0xdd, 0xf1, 0x59, 0x2d, 0xba, 0x05, 0xab, 0x8c, 0x83, 0x70, 0xc4, 0x16, 0x71, 0x29, 0xc7, - 0xe0, 0xba, 0x46, 0x07, 0xf8, 0x9e, 0xe7, 0x01, 0xea, 0x65, 0xb8, 0x14, 0xd1, 0x0d, 0x42, 0x1f, - 0xa7, 0x72, 0xf5, 0x40, 0x7b, 0x5b, 0xc4, 0xc0, 0xf7, 0xc3, 0x05, 0x0a, 0x19, 0x33, 0x82, 0x5c, - 0xdf, 0x36, 0xb0, 0x08, 0x4c, 0xac, 0x4d, 0x59, 0xf4, 0xc8, 0x1e, 0x88, 0xf0, 0x43, 0x9b, 0x54, - 0x2b, 0x00, 0x57, 0x89, 0x63, 0xa7, 0xf2, 0xc7, 0x74, 0xe8, 0x2f, 0x24, 0xd1, 0xf3, 0xf8, 0x6e, - 0xfa, 0x7f, 0xc3, 0x77, 0x33, 0xdf, 0x9a, 0xef, 0x46, 0x89, 0x41, 0x36, 0x4e, 0x0c, 0xfe, 0x95, - 0x0e, 0xbf, 0x70, 0xc0, 0x5e, 0xbf, 0xdd, 0x8a, 0x84, 0x51, 0x3e, 0xcf, 0xbe, 0x97, 0x88, 0xf2, - 0x22, 0x27, 0x29, 0xb0, 0xe7, 0xc6, 0x73, 0x92, 0x22, 0x8f, 0xfb, 0xac, 0x83, 0x6e, 0x83, 0xc4, - 0x4a, 0x50, 0x9a, 0xed, 0x78, 0x02, 0xc7, 0x9f, 0x8a, 0xce, 0x95, 0x57, 0x9a, 0x36, 0x0e, 0xa9, - 0xce, 0x81, 0xe3, 0xa9, 0x25, 0x47, 0xb4, 0x22, 0x04, 0x46, 0x8a, 0xf1, 0xe8, 0x6b, 0x20, 0xd1, - 0xb7, 0xf7, 0x1c, 0xbd, 0x8f, 0x19, 0x26, 0x4b, 0x6a, 0x28, 0x50, 0x1e, 0x00, 0x9a, 0x8d, 0x0a, - 0xa8, 0x03, 0x05, 0x7c, 0x82, 0x2d, 0xe2, 0x31, 0x1e, 0x51, 0xde, 0xba, 0x32, 0x87, 0xa4, 0x62, - 0x8b, 0x34, 0x1b, 0x74, 0x91, 0xff, 0xf9, 0xf5, 0x7a, 0x9d, 0x6b, 0xbf, 0x64, 0x8f, 0x4d, 0x82, - 0xc7, 0x0e, 0x39, 0x53, 0x85, 0xbd, 0xf2, 0x97, 0x0c, 0x65, 0x8c, 0xb1, 0x88, 0x31, 0x77, 0x6d, - 0xfd, 0x03, 0x94, 0x89, 0x64, 0x0b, 0xcb, 0xad, 0xf7, 0x1a, 0xc0, 0x40, 0xf7, 0xb4, 0x4f, 0x75, - 0x8b, 0x60, 0x43, 0x2c, 0x7a, 0x44, 0x82, 0x64, 0x28, 0xd1, 0xde, 0xc4, 0xc3, 0x86, 0x48, 0x5c, - 0x82, 0x7e, 0x64, 0x9e, 0xc5, 0xef, 0x36, 0xcf, 0xf8, 0x2a, 0x97, 0xa6, 0x56, 0x39, 0xc2, 0xe6, - 0xa4, 0x28, 0x9b, 0xa3, 0xef, 0xe6, 0xb8, 0xa6, 0xed, 0x9a, 0xe4, 0x8c, 0x7d, 0x9a, 0xac, 0x1a, - 0xf4, 0x69, 0x7e, 0x3c, 0xc6, 0x63, 0xc7, 0xb6, 0x47, 0x1a, 0x07, 0xaf, 0x32, 0x33, 0x5d, 0x11, - 0xc2, 0x36, 0xc3, 0xb0, 0x5f, 0x67, 0xc2, 0xe3, 0x17, 0xb2, 0xf6, 0xff, 0xbb, 0x05, 0x56, 0x7e, - 0xc3, 0x52, 0xf9, 0x38, 0x27, 0x40, 0x47, 0xb0, 0x1a, 0x1c, 0x7f, 0x6d, 0xc2, 0x60, 0xc1, 0xdf, - 0xd0, 0xcb, 0xe2, 0x47, 0xfd, 0x24, 0x2e, 0xf6, 0xd0, 0x4f, 0xe0, 0xea, 0x14, 0xb4, 0x05, 0xae, - 0x33, 0x4b, 0x22, 0xdc, 0x13, 0x71, 0x84, 0xf3, 0x3d, 0x87, 0x6b, 0x95, 0xfd, 0x8e, 0x87, 0x6e, - 0x87, 0x66, 0x87, 0x51, 0x86, 0x33, 0xf7, 0xeb, 0x3f, 0x03, 0x15, 0x17, 0x13, 0xdd, 0xb4, 0xb4, - 0x58, 0xfe, 0xbd, 0xc2, 0x85, 0x22, 0xab, 0x3f, 0x84, 0x27, 0xe6, 0x32, 0x1d, 0xf4, 0x7d, 0x90, - 0x42, 0x92, 0x94, 0x4e, 0x48, 0x65, 0x83, 0xf4, 0x2c, 0xd4, 0x55, 0xfe, 0x90, 0x0e, 0x5d, 0xc6, - 0x13, 0xbe, 0x36, 0x14, 0x5c, 0xec, 0x4d, 0x46, 0x3c, 0x05, 0xab, 0x6e, 0xbd, 0xbc, 0x1c, 0x47, - 0xa2, 0xd2, 0xc9, 0x88, 0xa8, 0xc2, 0x58, 0x79, 0x00, 0x05, 0x2e, 0x41, 0x65, 0x28, 0xde, 0xdb, - 0xdf, 0xdd, 0x3f, 0xf8, 0x60, 0xbf, 0x9e, 0x42, 0x00, 0x85, 0xed, 0x56, 0xab, 0x7d, 0xd8, 0xad, - 0xa7, 0x91, 0x04, 0xf9, 0xed, 0xe6, 0x81, 0xda, 0xad, 0x67, 0xa8, 0x58, 0x6d, 0xbf, 0xd7, 0x6e, - 0x75, 0xeb, 0x59, 0xb4, 0x0a, 0x15, 0xde, 0xd6, 0xee, 0x1e, 0xa8, 0xef, 0x6f, 0x77, 0xeb, 0xb9, - 0x88, 0xe8, 0xa8, 0xbd, 0x7f, 0xa7, 0xad, 0xd6, 0xf3, 0xca, 0x2b, 0x34, 0xc7, 0x4b, 0x60, 0x55, - 0x61, 0x36, 0x97, 0x8e, 0x64, 0x73, 0xca, 0x6f, 0x33, 0x20, 0x27, 0x53, 0x25, 0xf4, 0xde, 0xd4, - 0xc4, 0xb7, 0x2e, 0xc0, 0xb3, 0xa6, 0x66, 0x8f, 0x9e, 0x85, 0xaa, 0x8b, 0x8f, 0x31, 0xe9, 0x0f, - 0x39, 0x75, 0xe3, 0x11, 0xb3, 0xa2, 0x56, 0x84, 0x94, 0x19, 0x79, 0x5c, 0xed, 0x63, 0xdc, 0x27, - 0x1a, 0x87, 0x22, 0xbe, 0xe9, 0x24, 0xaa, 0x46, 0xa5, 0x47, 0x5c, 0xa8, 0x7c, 0x74, 0xa1, 0xb5, - 0x94, 0x20, 0xaf, 0xb6, 0xbb, 0xea, 0x4f, 0xeb, 0x59, 0x84, 0xa0, 0xca, 0x9a, 0xda, 0xd1, 0xfe, - 0xf6, 0xe1, 0x51, 0xe7, 0x80, 0xae, 0xe5, 0x25, 0xa8, 0xf9, 0x6b, 0xe9, 0x0b, 0xf3, 0xca, 0x6d, - 0xb8, 0x9a, 0xc0, 0xf3, 0x16, 0x64, 0xb4, 0xca, 0x7f, 0xd2, 0x50, 0x9b, 0x3a, 0x5a, 0x68, 0x0b, - 0xf2, 0x3c, 0x71, 0x48, 0xba, 0x15, 0x61, 0xc8, 0x20, 0xce, 0x21, 0x57, 0x45, 0x6f, 0x41, 0x09, - 0x8b, 0x92, 0xcb, 0xbc, 0x23, 0xcc, 0x4b, 0x45, 0x7e, 0x51, 0x46, 0x98, 0x06, 0x16, 0xe8, 0x6d, - 0x90, 0x02, 0x8c, 0x10, 0xd9, 0xea, 0xd3, 0xb3, 0xe6, 0x01, 0xba, 0x08, 0xfb, 0xd0, 0x06, 0xbd, - 0x11, 0xd2, 0xc4, 0xdc, 0x6c, 0xba, 0x22, 0xcc, 0xb9, 0x82, 0x30, 0xf6, 0xf5, 0x95, 0x16, 0x94, - 0x23, 0xf3, 0x41, 0x4f, 0x81, 0x34, 0xd6, 0x4f, 0x45, 0x29, 0x8f, 0x17, 0x63, 0x4a, 0x63, 0xfd, - 0x94, 0x57, 0xf1, 0xae, 0x42, 0x91, 0x0e, 0x0e, 0x74, 0x4f, 0xe4, 0xfd, 0x85, 0xb1, 0x7e, 0xfa, - 0xae, 0xee, 0x29, 0x1f, 0x42, 0x35, 0x5e, 0xc6, 0xa2, 0x7b, 0xd8, 0xb5, 0x27, 0x96, 0xc1, 0x7c, - 0xe4, 0x55, 0xde, 0x41, 0xaf, 0x41, 0xfe, 0xc4, 0xe6, 0x30, 0x37, 0xff, 0xb0, 0xdf, 0xb7, 0x09, - 0x8e, 0x94, 0xc1, 0xb8, 0xb6, 0xf2, 0x08, 0xf2, 0x0c, 0xb6, 0x28, 0x04, 0xb1, 0x82, 0x94, 0xa0, - 0xc8, 0xb4, 0x8d, 0x3e, 0x04, 0xd0, 0x09, 0x71, 0xcd, 0xde, 0x24, 0x74, 0xbc, 0x3e, 0x1f, 0xf6, - 0xb6, 0x7d, 0xbd, 0xe6, 0x35, 0x81, 0x7f, 0x97, 0x43, 0xd3, 0x08, 0x06, 0x46, 0x1c, 0x2a, 0xfb, - 0x50, 0x8d, 0xdb, 0x46, 0x4b, 0xc3, 0x2b, 0x73, 0x4a, 0xc3, 0x01, 0x0d, 0x0b, 0x48, 0x5c, 0x96, - 0x17, 0x1f, 0x59, 0x47, 0xf9, 0x2c, 0x0d, 0xa5, 0xee, 0xa9, 0x38, 0x10, 0x09, 0x75, 0xaf, 0xd0, - 0x34, 0x13, 0xad, 0xf2, 0xf0, 0x42, 0x5a, 0x36, 0x28, 0xcf, 0xbd, 0x13, 0x1c, 0xf9, 0xdc, 0xb2, - 0x69, 0xb2, 0x5f, 0xa7, 0x14, 0x30, 0xf7, 0x26, 0x48, 0xc1, 0xae, 0xa2, 0xb9, 0x86, 0x6e, 0x18, - 0x2e, 0xf6, 0x3c, 0x31, 0x37, 0xbf, 0xcb, 0xca, 0xa8, 0xf6, 0xa7, 0xa2, 0x8e, 0x94, 0x55, 0x79, - 0x47, 0x31, 0xa0, 0x36, 0x15, 0xf0, 0xd0, 0x9b, 0x50, 0x74, 0x26, 0x3d, 0xcd, 0x5f, 0x9e, 0xa9, - 0xc3, 0xe3, 0xf3, 0xce, 0x49, 0x6f, 0x64, 0xf6, 0x77, 0xf1, 0x99, 0xff, 0x32, 0xce, 0xa4, 0xb7, - 0xcb, 0x57, 0x91, 0x3f, 0x25, 0x13, 0x7d, 0xca, 0x09, 0x94, 0xfc, 0x4d, 0x81, 0x7e, 0x14, 0x3d, - 0x27, 0x7e, 0x71, 0x3d, 0x31, 0x08, 0x0b, 0xf7, 0x91, 0x63, 0x72, 0x0b, 0x56, 0x3d, 0x73, 0x60, - 0x61, 0x43, 0x0b, 0xb3, 0x1d, 0xf6, 0xb4, 0x92, 0x5a, 0xe3, 0x03, 0x7b, 0x7e, 0xaa, 0xa3, 0xfc, - 0x3b, 0x0d, 0x25, 0xff, 0xc0, 0xa2, 0x57, 0x22, 0xfb, 0xae, 0x3a, 0xa7, 0x24, 0xe4, 0x2b, 0x86, - 0x95, 0xd0, 0xf8, 0xbb, 0x66, 0x2e, 0xfe, 0xae, 0x49, 0x25, 0x6d, 0xff, 0x6e, 0x21, 0x77, 0xe1, - 0xbb, 0x85, 0x97, 0x00, 0x11, 0x9b, 0xe8, 0x23, 0xed, 0xc4, 0x26, 0xa6, 0x35, 0xd0, 0xf8, 0x62, - 0x73, 0x2e, 0x56, 0x67, 0x23, 0xf7, 0xd9, 0xc0, 0x21, 0x5b, 0xf7, 0x5f, 0xa6, 0xa1, 0x14, 0x44, - 0xd5, 0x8b, 0x16, 0x36, 0xaf, 0x40, 0x41, 0x04, 0x0e, 0x5e, 0xd9, 0x14, 0xbd, 0xa0, 0xc6, 0x9e, - 0x8b, 0xd4, 0xd8, 0x65, 0x28, 0x8d, 0x31, 0xd1, 0x19, 0x3e, 0xf3, 0x84, 0x33, 0xe8, 0xdf, 0x7a, - 0x03, 0xca, 0x91, 0x1a, 0x33, 0x3d, 0x79, 0xfb, 0xed, 0x0f, 0xea, 0x29, 0xb9, 0xf8, 0xd9, 0x17, - 0x37, 0xb2, 0xfb, 0xf8, 0x53, 0xba, 0x67, 0xd5, 0x76, 0xab, 0xd3, 0x6e, 0xed, 0xd6, 0xd3, 0x72, - 0xf9, 0xb3, 0x2f, 0x6e, 0x14, 0x55, 0xcc, 0x2a, 0x49, 0xb7, 0x3a, 0xb0, 0x12, 0xfd, 0x2a, 0xf1, - 0xd8, 0x83, 0xa0, 0x7a, 0xe7, 0xde, 0xe1, 0xde, 0x4e, 0x6b, 0xbb, 0xdb, 0xd6, 0xee, 0x1f, 0x74, - 0xdb, 0xf5, 0x34, 0xba, 0x0a, 0x97, 0xf6, 0x76, 0xde, 0xed, 0x74, 0xb5, 0xd6, 0xde, 0x4e, 0x7b, - 0xbf, 0xab, 0x6d, 0x77, 0xbb, 0xdb, 0xad, 0xdd, 0x7a, 0x66, 0xeb, 0x1f, 0x00, 0xb5, 0xed, 0x66, - 0x6b, 0x87, 0xc6, 0x4d, 0xb3, 0xaf, 0x8b, 0x4a, 0x5d, 0x8e, 0xe5, 0xfb, 0xe7, 0x5e, 0x99, 0xcb, - 0xe7, 0x17, 0x2a, 0xd1, 0x5d, 0xc8, 0xb3, 0x52, 0x00, 0x3a, 0xff, 0x0e, 0x5d, 0x5e, 0x50, 0xb9, - 0xa4, 0x2f, 0xc3, 0x8e, 0xc7, 0xb9, 0x97, 0xea, 0xf2, 0xf9, 0x85, 0x4c, 0xa4, 0x82, 0x14, 0xe6, - 0xf2, 0x8b, 0x2f, 0xd9, 0xe5, 0x25, 0x8a, 0x9b, 0xd4, 0x67, 0x98, 0x50, 0x2c, 0xbe, 0x74, 0x96, - 0x97, 0x00, 0x30, 0xb4, 0x07, 0x45, 0x3f, 0x07, 0x5c, 0x74, 0x0d, 0x2e, 0x2f, 0x2c, 0x3c, 0xd2, - 0x4f, 0xc0, 0x73, 0xf5, 0xf3, 0xef, 0xf4, 0xe5, 0x05, 0x55, 0x54, 0xb4, 0x03, 0x05, 0xc1, 0x92, - 0x17, 0x5c, 0x6d, 0xcb, 0x8b, 0x0a, 0x89, 0x74, 0xd1, 0xc2, 0x22, 0xc8, 0xe2, 0x3f, 0x15, 0xe4, - 0x25, 0x0a, 0xc4, 0xe8, 0x1e, 0x40, 0x24, 0x33, 0x5f, 0xe2, 0x17, 0x04, 0x79, 0x99, 0xc2, 0x2f, - 0x3a, 0x80, 0x52, 0x90, 0x28, 0x2d, 0xfc, 0x21, 0x40, 0x5e, 0x5c, 0x81, 0x45, 0x0f, 0xa0, 0x12, - 0xcf, 0x10, 0x96, 0xbb, 0xe6, 0x97, 0x97, 0x2c, 0xad, 0x52, 0xff, 0xf1, 0x74, 0x61, 0xb9, 0x6b, - 0x7f, 0x79, 0xc9, 0x4a, 0x2b, 0xfa, 0x18, 0x56, 0x67, 0xe9, 0xfc, 0xf2, 0x7f, 0x01, 0xc8, 0x17, - 0xa8, 0xbd, 0xa2, 0x31, 0xa0, 0x39, 0x69, 0xc0, 0x05, 0x7e, 0x0a, 0x90, 0x2f, 0x52, 0x8a, 0x45, - 0x06, 0xd4, 0xa6, 0xb9, 0xf5, 0xb2, 0x3f, 0x09, 0xc8, 0x4b, 0x97, 0x65, 0x9b, 0xed, 0x2f, 0xbf, - 0x59, 0x4b, 0x7f, 0xf5, 0xcd, 0x5a, 0xfa, 0x6f, 0xdf, 0xac, 0xa5, 0x3f, 0x7f, 0xbc, 0x96, 0xfa, - 0xea, 0xf1, 0x5a, 0xea, 0xcf, 0x8f, 0xd7, 0x52, 0x3f, 0x7b, 0x71, 0x60, 0x92, 0xe1, 0xa4, 0xb7, - 0xd1, 0xb7, 0xc7, 0x9b, 0xd1, 0xff, 0xa2, 0xe6, 0xfd, 0xab, 0xd5, 0x2b, 0xb0, 0x70, 0xf8, 0xea, - 0x7f, 0x03, 0x00, 0x00, 0xff, 0xff, 0x5c, 0x29, 0x35, 0x72, 0xcb, 0x25, 0x00, 0x00, + // 2993 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x5a, 0x4b, 0x77, 0x23, 0xc5, + 0xf5, 0xd7, 0x5b, 0xea, 0x2b, 0xeb, 0xe1, 0x9a, 0x61, 0x46, 0x34, 0x33, 0xf6, 0xd0, 0x1c, 0x60, + 0x18, 0xc0, 0xfe, 0x63, 0x0e, 0xfc, 0x87, 0x40, 0x02, 0x96, 0x46, 0x83, 0xcc, 0x18, 0xdb, 0x69, + 0xcb, 0x43, 0x5e, 0x4c, 0xd3, 0x52, 0x97, 0xa5, 0x66, 0xa4, 0xee, 0xa6, 0xbb, 0x64, 0xec, 0x59, + 0xe6, 0x24, 0x1b, 0xb2, 0xe1, 0x9c, 0x6c, 0xb2, 0xe1, 0x23, 0x64, 0x9f, 0x4d, 0xb2, 0xc9, 0x86, + 0x73, 0xb2, 0x08, 0xcb, 0x2c, 0x72, 0x48, 0x0e, 0xb3, 0xcb, 0x17, 0xc8, 0x2a, 0x27, 0x39, 0xf5, + 0xe8, 0x97, 0xa4, 0xb6, 0x64, 0xc8, 0x2e, 0xbb, 0xaa, 0xdb, 0xf7, 0xfe, 0xaa, 0xab, 0xba, 0xea, + 0xde, 0xdf, 0xbd, 0x5d, 0xf0, 0x14, 0xc1, 0x96, 0x81, 0xdd, 0xb1, 0x69, 0x91, 0x4d, 0xbd, 0xd7, + 0x37, 0x37, 0xc9, 0x99, 0x83, 0xbd, 0x0d, 0xc7, 0xb5, 0x89, 0x8d, 0x6a, 0xe1, 0xc3, 0x0d, 0xfa, + 0x50, 0xbe, 0x1e, 0xd1, 0xee, 0xbb, 0x67, 0x0e, 0xb1, 0x37, 0x1d, 0xd7, 0xb6, 0x8f, 0xb9, 0xbe, + 0x7c, 0x2d, 0xf2, 0x98, 0xe1, 0x44, 0xd1, 0x62, 0x4f, 0x85, 0xf1, 0x43, 0x7c, 0xe6, 0x3f, 0xbd, + 0x3e, 0x63, 0xeb, 0xe8, 0xae, 0x3e, 0xf6, 0x1f, 0xaf, 0x0f, 0x6c, 0x7b, 0x30, 0xc2, 0x9b, 0xac, + 0xd7, 0x9b, 0x1c, 0x6f, 0x12, 0x73, 0x8c, 0x3d, 0xa2, 0x8f, 0x1d, 0xa1, 0x70, 0x79, 0x60, 0x0f, + 0x6c, 0xd6, 0xdc, 0xa4, 0x2d, 0x2e, 0x55, 0x7e, 0x2f, 0x41, 0x51, 0xc5, 0x9f, 0x4c, 0xb0, 0x47, + 0xd0, 0x16, 0xe4, 0x70, 0x7f, 0x68, 0x37, 0xd2, 0x37, 0xd2, 0x37, 0xcb, 0x5b, 0xd7, 0x36, 0xa6, + 0x26, 0xb7, 0x21, 0xf4, 0xda, 0xfd, 0xa1, 0xdd, 0x49, 0xa9, 0x4c, 0x17, 0xbd, 0x06, 0xf9, 0xe3, + 0xd1, 0xc4, 0x1b, 0x36, 0x32, 0xcc, 0xe8, 0x7a, 0x92, 0xd1, 0x5d, 0xaa, 0xd4, 0x49, 0xa9, 0x5c, + 0x9b, 0x0e, 0x65, 0x5a, 0xc7, 0x76, 0x23, 0x7b, 0xfe, 0x50, 0x3b, 0xd6, 0x31, 0x1b, 0x8a, 0xea, + 0xa2, 0x26, 0x80, 0x87, 0x89, 0x66, 0x3b, 0xc4, 0xb4, 0xad, 0x46, 0x8e, 0x59, 0x3e, 0x9d, 0x64, + 0x79, 0x88, 0xc9, 0x3e, 0x53, 0xec, 0xa4, 0x54, 0xc9, 0xf3, 0x3b, 0x14, 0xc3, 0xb4, 0x4c, 0xa2, + 0xf5, 0x87, 0xba, 0x69, 0x35, 0xf2, 0xe7, 0x63, 0xec, 0x58, 0x26, 0x69, 0x51, 0x45, 0x8a, 0x61, + 0xfa, 0x1d, 0x3a, 0xe5, 0x4f, 0x26, 0xd8, 0x3d, 0x6b, 0x14, 0xce, 0x9f, 0xf2, 0x0f, 0xa9, 0x12, + 0x9d, 0x32, 0xd3, 0x46, 0x6d, 0x28, 0xf7, 0xf0, 0xc0, 0xb4, 0xb4, 0xde, 0xc8, 0xee, 0x3f, 0x6c, + 0x14, 0x99, 0xb1, 0x92, 0x64, 0xdc, 0xa4, 0xaa, 0x4d, 0xaa, 0xd9, 0x49, 0xa9, 0xd0, 0x0b, 0x7a, + 0xe8, 0x2d, 0x28, 0xf5, 0x87, 0xb8, 0xff, 0x50, 0x23, 0xa7, 0x8d, 0x12, 0xc3, 0x58, 0x4f, 0xc2, + 0x68, 0x51, 0xbd, 0xee, 0x69, 0x27, 0xa5, 0x16, 0xfb, 0xbc, 0x49, 0xe7, 0x6f, 0xe0, 0x91, 0x79, + 0x82, 0x5d, 0x6a, 0x2f, 0x9d, 0x3f, 0xff, 0x3b, 0x5c, 0x93, 0x21, 0x48, 0x86, 0xdf, 0x41, 0x6f, + 0x83, 0x84, 0x2d, 0x43, 0x4c, 0x03, 0x18, 0xc4, 0x8d, 0xc4, 0xbd, 0x62, 0x19, 0xfe, 0x24, 0x4a, + 0x58, 0xb4, 0xd1, 0x6d, 0x28, 0xf4, 0xed, 0xf1, 0xd8, 0x24, 0x8d, 0x32, 0xb3, 0x5e, 0x4b, 0x9c, + 0x00, 0xd3, 0xea, 0xa4, 0x54, 0xa1, 0x8f, 0xf6, 0xa0, 0x3a, 0x32, 0x3d, 0xa2, 0x79, 0x96, 0xee, + 0x78, 0x43, 0x9b, 0x78, 0x8d, 0x15, 0x86, 0xf0, 0x6c, 0x12, 0xc2, 0xae, 0xe9, 0x91, 0x43, 0x5f, + 0xb9, 0x93, 0x52, 0x2b, 0xa3, 0xa8, 0x80, 0xe2, 0xd9, 0xc7, 0xc7, 0xd8, 0x0d, 0x00, 0x1b, 0x95, + 0xf3, 0xf1, 0xf6, 0xa9, 0xb6, 0x6f, 0x4f, 0xf1, 0xec, 0xa8, 0x00, 0xfd, 0x14, 0x2e, 0x8d, 0x6c, + 0xdd, 0x08, 0xe0, 0xb4, 0xfe, 0x70, 0x62, 0x3d, 0x6c, 0x54, 0x19, 0xe8, 0x0b, 0x89, 0x2f, 0x69, + 0xeb, 0x86, 0x0f, 0xd1, 0xa2, 0x06, 0x9d, 0x94, 0xba, 0x3a, 0x9a, 0x16, 0xa2, 0x07, 0x70, 0x59, + 0x77, 0x9c, 0xd1, 0xd9, 0x34, 0x7a, 0x8d, 0xa1, 0xdf, 0x4a, 0x42, 0xdf, 0xa6, 0x36, 0xd3, 0xf0, + 0x48, 0x9f, 0x91, 0xa2, 0x2e, 0xd4, 0x1d, 0x17, 0x3b, 0xba, 0x8b, 0x35, 0xc7, 0xb5, 0x1d, 0xdb, + 0xd3, 0x47, 0x8d, 0x3a, 0xc3, 0x7e, 0x3e, 0x09, 0xfb, 0x80, 0xeb, 0x1f, 0x08, 0xf5, 0x4e, 0x4a, + 0xad, 0x39, 0x71, 0x11, 0x47, 0xb5, 0xfb, 0xd8, 0xf3, 0x42, 0xd4, 0xd5, 0x45, 0xa8, 0x4c, 0x3f, + 0x8e, 0x1a, 0x13, 0x35, 0x8b, 0x90, 0x3f, 0xd1, 0x47, 0x13, 0xac, 0x3c, 0x0f, 0xe5, 0x88, 0x5b, + 0x42, 0x0d, 0x28, 0x8e, 0xb1, 0xe7, 0xe9, 0x03, 0xcc, 0xbc, 0x98, 0xa4, 0xfa, 0x5d, 0xa5, 0x0a, + 0x2b, 0x51, 0x57, 0xa4, 0x8c, 0x03, 0x43, 0xea, 0x64, 0xa8, 0xe1, 0x09, 0x76, 0x3d, 0xea, 0x59, + 0x84, 0xa1, 0xe8, 0xa2, 0x67, 0xa0, 0xc2, 0xb6, 0xba, 0xe6, 0x3f, 0xa7, 0x9e, 0x2e, 0xa7, 0xae, + 0x30, 0xe1, 0x7d, 0xa1, 0xb4, 0x0e, 0x65, 0x67, 0xcb, 0x09, 0x54, 0xb2, 0x4c, 0x05, 0x9c, 0x2d, + 0x47, 0x28, 0x28, 0xdf, 0x83, 0xfa, 0xb4, 0x67, 0x42, 0x75, 0xc8, 0x3e, 0xc4, 0x67, 0x62, 0x3c, + 0xda, 0x44, 0x97, 0xc5, 0xb4, 0xd8, 0x18, 0x92, 0x2a, 0xe6, 0xf8, 0xa7, 0x4c, 0x60, 0x1c, 0xb8, + 0x24, 0x74, 0x1b, 0x72, 0xd4, 0xc3, 0x0b, 0x67, 0x2d, 0x6f, 0x70, 0xf7, 0xbf, 0xe1, 0xbb, 0xff, + 0x8d, 0xae, 0xef, 0xfe, 0x9b, 0xa5, 0x2f, 0xbf, 0x5e, 0x4f, 0x7d, 0xfe, 0xb7, 0xf5, 0xb4, 0xca, + 0x2c, 0xd0, 0x93, 0xd4, 0x83, 0xe8, 0xa6, 0xa5, 0x99, 0x86, 0x18, 0xa7, 0xc8, 0xfa, 0x3b, 0x06, + 0xba, 0x07, 0xf5, 0xbe, 0x6d, 0x79, 0xd8, 0xf2, 0x26, 0x9e, 0xc6, 0xc3, 0x8b, 0x70, 0xd1, 0xb3, + 0x27, 0xbc, 0xe5, 0x2b, 0x1e, 0x30, 0x3d, 0xb5, 0xd6, 0x8f, 0x0b, 0xd0, 0x5d, 0x80, 0x13, 0x7d, + 0x64, 0x1a, 0x3a, 0xb1, 0x5d, 0xaf, 0x91, 0xbb, 0x91, 0x9d, 0x0b, 0x73, 0xdf, 0x57, 0x39, 0x72, + 0x0c, 0x9d, 0xe0, 0x66, 0x8e, 0xbe, 0xad, 0x1a, 0xb1, 0x44, 0xcf, 0x41, 0x4d, 0x77, 0x1c, 0xcd, + 0x23, 0x3a, 0xc1, 0x5a, 0xef, 0x8c, 0x60, 0x8f, 0x39, 0xee, 0x15, 0xb5, 0xa2, 0x3b, 0xce, 0x21, + 0x95, 0x36, 0xa9, 0x10, 0x3d, 0x0b, 0x55, 0xea, 0xa4, 0x4d, 0x7d, 0xa4, 0x0d, 0xb1, 0x39, 0x18, + 0x12, 0xe6, 0xa0, 0xb3, 0x6a, 0x45, 0x48, 0x3b, 0x4c, 0xa8, 0x18, 0xc1, 0x46, 0x60, 0x0e, 0x1a, + 0x21, 0xc8, 0x19, 0x3a, 0xd1, 0xd9, 0x42, 0xae, 0xa8, 0xac, 0x4d, 0x65, 0x8e, 0x4e, 0x86, 0x62, + 0x79, 0x58, 0x1b, 0x5d, 0x81, 0x82, 0x80, 0xcd, 0x32, 0x58, 0xd1, 0xa3, 0xdf, 0xcc, 0x71, 0xed, + 0x13, 0xcc, 0x22, 0x52, 0x49, 0xe5, 0x1d, 0xe5, 0x17, 0x19, 0x58, 0x9d, 0x71, 0xe5, 0x14, 0x77, + 0xa8, 0x7b, 0x43, 0x7f, 0x2c, 0xda, 0x46, 0xaf, 0x53, 0x5c, 0xdd, 0xc0, 0xae, 0x08, 0xa1, 0x8d, + 0xe8, 0x12, 0x71, 0x7a, 0xd0, 0x61, 0xcf, 0xc5, 0xd2, 0x08, 0x6d, 0xb4, 0x0f, 0xf5, 0x91, 0xee, + 0x11, 0x8d, 0xbb, 0x46, 0x2d, 0x12, 0x4e, 0x67, 0x03, 0xc2, 0xae, 0xee, 0x3b, 0x53, 0xba, 0xd9, + 0x05, 0x50, 0x75, 0x14, 0x93, 0x22, 0x15, 0x2e, 0xf7, 0xce, 0x1e, 0xe9, 0x16, 0x31, 0x2d, 0xac, + 0xcd, 0x7c, 0xb9, 0x27, 0x67, 0x40, 0xdb, 0x27, 0xa6, 0x81, 0xad, 0xbe, 0xff, 0xc9, 0x2e, 0x05, + 0xc6, 0xc1, 0x27, 0xf5, 0x14, 0x15, 0xaa, 0xf1, 0x60, 0x84, 0xaa, 0x90, 0x21, 0xa7, 0x62, 0x01, + 0x32, 0xe4, 0x14, 0xfd, 0x1f, 0xe4, 0xe8, 0x24, 0xd9, 0xe4, 0xab, 0x73, 0x98, 0x80, 0xb0, 0xeb, + 0x9e, 0x39, 0x58, 0x65, 0x9a, 0x8a, 0x12, 0x9c, 0x86, 0x20, 0x40, 0x4d, 0xa3, 0x2a, 0x2f, 0x40, + 0x6d, 0x2a, 0x02, 0x45, 0xbe, 0x5f, 0x3a, 0xfa, 0xfd, 0x94, 0x1a, 0x54, 0x62, 0xe1, 0x46, 0xb9, + 0x02, 0x97, 0xe7, 0x45, 0x0f, 0x65, 0x18, 0xc8, 0x63, 0x51, 0x00, 0xbd, 0x06, 0xa5, 0x20, 0x7c, + 0xf0, 0xd3, 0x38, 0xbb, 0x56, 0xbe, 0xb2, 0x1a, 0xa8, 0xd2, 0x63, 0x48, 0xb7, 0x35, 0xdb, 0x0f, + 0x19, 0xf6, 0xe2, 0x45, 0xdd, 0x71, 0x3a, 0xba, 0x37, 0x54, 0x3e, 0x82, 0x46, 0x52, 0x68, 0x98, + 0x9a, 0x46, 0x2e, 0xd8, 0x86, 0x57, 0xa0, 0x70, 0x6c, 0xbb, 0x63, 0x9d, 0x30, 0xb0, 0x8a, 0x2a, + 0x7a, 0x74, 0x7b, 0xf2, 0x30, 0x91, 0x65, 0x62, 0xde, 0x51, 0x34, 0x78, 0x32, 0x31, 0x3c, 0x50, + 0x13, 0xd3, 0x32, 0x30, 0x5f, 0xcf, 0x8a, 0xca, 0x3b, 0x21, 0x10, 0x7f, 0x59, 0xde, 0xa1, 0xc3, + 0x7a, 0x6c, 0xae, 0x0c, 0x5f, 0x52, 0x45, 0x4f, 0xd1, 0xe0, 0xca, 0xfc, 0x18, 0x81, 0xae, 0x03, + 0x70, 0x7f, 0x2a, 0x4e, 0x5d, 0xf6, 0xe6, 0x8a, 0x2a, 0x31, 0xc9, 0x1d, 0x7a, 0xf4, 0x9e, 0x83, + 0x5a, 0xf8, 0x58, 0xf3, 0xcc, 0x47, 0x7c, 0x6b, 0x64, 0xd5, 0x4a, 0xa0, 0x73, 0x68, 0x3e, 0xc2, + 0x4a, 0x2f, 0x32, 0x40, 0x2c, 0x36, 0x44, 0x0e, 0x54, 0xfa, 0x42, 0x07, 0xaa, 0x0e, 0x59, 0x72, + 0xea, 0x35, 0x32, 0xec, 0x8d, 0x68, 0x53, 0xf9, 0x35, 0x40, 0x49, 0xc5, 0x9e, 0x43, 0x1d, 0x1b, + 0x6a, 0x82, 0x84, 0x4f, 0xfb, 0x98, 0xb3, 0xcf, 0x74, 0x22, 0x7b, 0xe3, 0xda, 0x6d, 0x5f, 0x93, + 0x52, 0xa7, 0xc0, 0x0c, 0xbd, 0x2a, 0x18, 0x76, 0x32, 0x59, 0x16, 0xe6, 0x51, 0x8a, 0xfd, 0xba, + 0x4f, 0xb1, 0xb3, 0x89, 0x6c, 0x89, 0x5b, 0x4d, 0x71, 0xec, 0x57, 0x05, 0xc7, 0xce, 0x2d, 0x18, + 0x2c, 0x46, 0xb2, 0x5b, 0x31, 0x92, 0x9d, 0x5f, 0x30, 0xcd, 0x04, 0x96, 0xdd, 0x8a, 0xb1, 0xec, + 0xc2, 0x02, 0x90, 0x04, 0x9a, 0xfd, 0xba, 0x4f, 0xb3, 0x8b, 0x0b, 0xa6, 0x3d, 0xc5, 0xb3, 0xef, + 0xc6, 0x79, 0x36, 0xe7, 0xc8, 0xcf, 0x24, 0x5a, 0x27, 0x12, 0xed, 0xef, 0x47, 0x88, 0xb6, 0x94, + 0xc8, 0x72, 0x39, 0xc8, 0x1c, 0xa6, 0xdd, 0x8a, 0x31, 0x6d, 0x58, 0xb0, 0x06, 0x09, 0x54, 0xfb, + 0x9d, 0x28, 0xd5, 0x2e, 0x27, 0xb2, 0x75, 0xb1, 0x69, 0xe6, 0x71, 0xed, 0x37, 0x02, 0xae, 0xbd, + 0x92, 0x98, 0x2c, 0x88, 0x39, 0x4c, 0x93, 0xed, 0xfd, 0x19, 0xb2, 0xcd, 0xc9, 0xf1, 0x73, 0x89, + 0x10, 0x0b, 0xd8, 0xf6, 0xfe, 0x0c, 0xdb, 0xae, 0x2e, 0x00, 0x5c, 0x40, 0xb7, 0x7f, 0x36, 0x9f, + 0x6e, 0x27, 0x13, 0x62, 0xf1, 0x9a, 0xcb, 0xf1, 0x6d, 0x2d, 0x81, 0x6f, 0x73, 0x4e, 0xfc, 0x62, + 0x22, 0xfc, 0xd2, 0x84, 0xfb, 0x68, 0x0e, 0xe1, 0xe6, 0xd4, 0xf8, 0x66, 0x22, 0xf8, 0x12, 0x8c, + 0xfb, 0x68, 0x0e, 0xe3, 0x46, 0x0b, 0x61, 0x97, 0xa7, 0xdc, 0x2f, 0x50, 0x66, 0x33, 0xe5, 0xe6, + 0x68, 0x74, 0xc0, 0xae, 0x6b, 0xbb, 0x82, 0xcd, 0xf2, 0x8e, 0x72, 0x93, 0x72, 0xad, 0xd0, 0xa5, + 0x9d, 0x43, 0xcf, 0x59, 0x14, 0x8e, 0xb8, 0x31, 0xe5, 0x77, 0xe9, 0xd0, 0x96, 0xd1, 0x93, 0x28, + 0x4f, 0x93, 0x04, 0x4f, 0x8b, 0xb0, 0xf6, 0x4c, 0x9c, 0xb5, 0xaf, 0x43, 0x99, 0x46, 0xd7, 0x29, + 0x42, 0xae, 0x3b, 0x3e, 0x21, 0x47, 0xb7, 0x60, 0x95, 0xd1, 0x27, 0x1e, 0x6c, 0x44, 0x48, 0xcd, + 0xb1, 0x48, 0x53, 0xa3, 0x0f, 0xf8, 0x51, 0xe2, 0xb1, 0xf5, 0x65, 0xb8, 0x14, 0xd1, 0x0d, 0xa2, + 0x36, 0x67, 0xa1, 0xf5, 0x40, 0x7b, 0x5b, 0x84, 0xef, 0xf7, 0xc3, 0x05, 0x0a, 0xc9, 0x3e, 0x82, + 0x5c, 0xdf, 0x36, 0xb0, 0x88, 0xa9, 0xac, 0x4d, 0x23, 0xce, 0xc8, 0x1e, 0x88, 0xc8, 0x49, 0x9b, + 0x54, 0x2b, 0xf0, 0xd9, 0x12, 0x77, 0xc9, 0xca, 0x1f, 0xd3, 0x21, 0x5e, 0xc8, 0xff, 0xe7, 0x51, + 0xf5, 0xf4, 0x7f, 0x87, 0xaa, 0x67, 0xbe, 0x35, 0x55, 0x8f, 0x72, 0x9a, 0x6c, 0x9c, 0xd3, 0xfc, + 0x33, 0x1d, 0x7e, 0xe1, 0x80, 0x78, 0x7f, 0xbb, 0x15, 0x09, 0x09, 0x4a, 0x9e, 0x7d, 0x2f, 0x41, + 0x50, 0x44, 0x3a, 0x55, 0x60, 0xe3, 0xc6, 0xd3, 0xa9, 0x22, 0xa7, 0x2c, 0xac, 0x83, 0x6e, 0x83, + 0xc4, 0x6a, 0x72, 0x9a, 0xed, 0x78, 0x22, 0x3c, 0x3c, 0x15, 0x9d, 0x2b, 0x2f, 0xbd, 0x6d, 0x1c, + 0x50, 0x9d, 0x7d, 0xc7, 0x53, 0x4b, 0x8e, 0x68, 0x45, 0xb8, 0x97, 0x14, 0x4b, 0x01, 0xae, 0x81, + 0x44, 0xdf, 0xde, 0x73, 0xf4, 0x3e, 0x66, 0xae, 0x5e, 0x52, 0x43, 0x81, 0xf2, 0x00, 0xd0, 0x6c, + 0xb0, 0x41, 0x1d, 0x28, 0xe0, 0x13, 0x6c, 0x11, 0x8f, 0x51, 0xa0, 0xf2, 0xd6, 0x95, 0x39, 0xfc, + 0x1a, 0x5b, 0xa4, 0xd9, 0xa0, 0x8b, 0xfc, 0x8f, 0xaf, 0xd7, 0xeb, 0x5c, 0xfb, 0x25, 0x7b, 0x6c, + 0x12, 0x3c, 0x76, 0xc8, 0x99, 0x2a, 0xec, 0x95, 0xbf, 0x66, 0x28, 0xd9, 0x8d, 0x05, 0xa2, 0xb9, + 0x6b, 0xeb, 0x1f, 0xa0, 0x4c, 0x24, 0xd1, 0x59, 0x6e, 0xbd, 0xd7, 0x00, 0x06, 0xba, 0xa7, 0x7d, + 0xaa, 0x5b, 0x04, 0x1b, 0x62, 0xd1, 0x23, 0x12, 0x24, 0x43, 0x89, 0xf6, 0x26, 0x1e, 0x36, 0x44, + 0xce, 0x15, 0xf4, 0x23, 0xf3, 0x2c, 0x7e, 0xb7, 0x79, 0xc6, 0x57, 0xb9, 0x34, 0xb5, 0xca, 0x11, + 0x22, 0x2a, 0x45, 0x89, 0x28, 0x7d, 0x37, 0xc7, 0x35, 0x6d, 0xd7, 0x24, 0x67, 0xec, 0xd3, 0x64, + 0xd5, 0xa0, 0x4f, 0x53, 0xfb, 0x31, 0x1e, 0x3b, 0xb6, 0x3d, 0xd2, 0xb8, 0xf3, 0x2a, 0x33, 0xd3, + 0x15, 0x21, 0x6c, 0x33, 0x1f, 0xf6, 0xcb, 0x4c, 0x78, 0xfc, 0xc2, 0x84, 0xe3, 0x7f, 0x6e, 0x81, + 0x95, 0x5f, 0xb1, 0x2a, 0x44, 0x9c, 0x6a, 0xa0, 0x43, 0x58, 0x0d, 0x8e, 0xbf, 0x36, 0x61, 0x6e, + 0xc1, 0xdf, 0xd0, 0xcb, 0xfa, 0x8f, 0xfa, 0x49, 0x5c, 0xec, 0xa1, 0x1f, 0xc1, 0xd5, 0x29, 0xd7, + 0x16, 0x40, 0x67, 0x96, 0xf4, 0x70, 0x4f, 0xc4, 0x3d, 0x9c, 0x8f, 0x1c, 0xae, 0x55, 0xf6, 0x3b, + 0x1e, 0xba, 0x1d, 0x9a, 0xd8, 0x46, 0x89, 0xd3, 0xdc, 0xaf, 0xff, 0x0c, 0x54, 0x5c, 0x4c, 0x74, + 0xd3, 0xd2, 0x62, 0xa5, 0x83, 0x15, 0x2e, 0x14, 0x05, 0x89, 0x03, 0x78, 0x62, 0x2e, 0x81, 0x42, + 0xff, 0x0f, 0x52, 0xc8, 0xbd, 0xd2, 0x09, 0x59, 0x78, 0x90, 0x59, 0x86, 0xba, 0xca, 0x1f, 0xd2, + 0x21, 0x64, 0x3c, 0x57, 0x6d, 0x43, 0xc1, 0xc5, 0xde, 0x64, 0xc4, 0xb3, 0xc7, 0xea, 0xd6, 0xcb, + 0xcb, 0x51, 0x2f, 0x2a, 0x9d, 0x8c, 0x88, 0x2a, 0x8c, 0x95, 0x07, 0x50, 0xe0, 0x12, 0x54, 0x86, + 0xe2, 0xd1, 0xde, 0xbd, 0xbd, 0xfd, 0x0f, 0xf6, 0xea, 0x29, 0x04, 0x50, 0xd8, 0x6e, 0xb5, 0xda, + 0x07, 0xdd, 0x7a, 0x1a, 0x49, 0x90, 0xdf, 0x6e, 0xee, 0xab, 0xdd, 0x7a, 0x86, 0x8a, 0xd5, 0xf6, + 0x7b, 0xed, 0x56, 0xb7, 0x9e, 0x45, 0xab, 0x50, 0xe1, 0x6d, 0xed, 0xee, 0xbe, 0xfa, 0xfe, 0x76, + 0xb7, 0x9e, 0x8b, 0x88, 0x0e, 0xdb, 0x7b, 0x77, 0xda, 0x6a, 0x3d, 0xaf, 0xbc, 0x42, 0xd3, 0xd3, + 0x04, 0xb2, 0x16, 0x26, 0xa2, 0xe9, 0x48, 0x22, 0xaa, 0xfc, 0x26, 0x03, 0x72, 0x32, 0x03, 0x43, + 0xef, 0x4d, 0x4d, 0x7c, 0xeb, 0x02, 0xf4, 0x6d, 0x6a, 0xf6, 0xe8, 0x59, 0xa8, 0xba, 0xf8, 0x18, + 0x93, 0xfe, 0x90, 0x33, 0x42, 0x1e, 0x31, 0x2b, 0x6a, 0x45, 0x48, 0x99, 0x91, 0xc7, 0xd5, 0x3e, + 0xc6, 0x7d, 0xa2, 0x71, 0x57, 0xc4, 0x37, 0x9d, 0x44, 0xd5, 0xa8, 0xf4, 0x90, 0x0b, 0x95, 0x8f, + 0x2e, 0xb4, 0x96, 0x12, 0xe4, 0xd5, 0x76, 0x57, 0xfd, 0x71, 0x3d, 0x8b, 0x10, 0x54, 0x59, 0x53, + 0x3b, 0xdc, 0xdb, 0x3e, 0x38, 0xec, 0xec, 0xd3, 0xb5, 0xbc, 0x04, 0x35, 0x7f, 0x2d, 0x7d, 0x61, + 0x5e, 0xb9, 0x0d, 0x57, 0x13, 0xe8, 0xe3, 0x82, 0x64, 0x5c, 0xf9, 0x6d, 0x3a, 0x6a, 0x1a, 0x4f, + 0xb3, 0xdf, 0x9d, 0x5a, 0xd1, 0xcd, 0x65, 0xc9, 0xe5, 0xf4, 0x72, 0xca, 0x50, 0xc2, 0xa2, 0x94, + 0x24, 0x92, 0xef, 0xa0, 0xaf, 0xbc, 0xbc, 0x78, 0x71, 0xc2, 0xdd, 0x95, 0x51, 0xfe, 0x9d, 0x86, + 0xda, 0x94, 0x2b, 0x40, 0x5b, 0x90, 0xe7, 0xf9, 0x53, 0xd2, 0x6f, 0x2d, 0xe6, 0xc9, 0x84, 0xdf, + 0xe0, 0xaa, 0xe8, 0xad, 0xd8, 0x2b, 0xcd, 0xb8, 0x1c, 0x5e, 0x44, 0xf0, 0xeb, 0x5f, 0xc2, 0x34, + 0xb0, 0x40, 0x6f, 0x83, 0x14, 0xf8, 0x34, 0x91, 0xb4, 0x3f, 0x3d, 0x6b, 0x1e, 0x78, 0x43, 0x61, + 0x1f, 0xda, 0xa0, 0x37, 0x42, 0x5a, 0x9b, 0x9b, 0xcd, 0xda, 0x84, 0x39, 0x57, 0x10, 0xc6, 0xbe, + 0xbe, 0xd2, 0x82, 0x72, 0x64, 0x3e, 0xe8, 0x29, 0x90, 0xc6, 0xfa, 0xa9, 0xa8, 0x9a, 0xf2, 0xba, + 0x57, 0x69, 0xac, 0x9f, 0xf2, 0x82, 0xe9, 0x55, 0x28, 0xd2, 0x87, 0x03, 0xdd, 0x13, 0x25, 0x96, + 0xc2, 0x58, 0x3f, 0x7d, 0x57, 0xf7, 0x94, 0x0f, 0xa1, 0x1a, 0xaf, 0x18, 0xd2, 0x33, 0xe7, 0xda, + 0x13, 0xcb, 0x60, 0x18, 0x79, 0x95, 0x77, 0xd0, 0x6b, 0x90, 0x3f, 0xb1, 0xb9, 0x5b, 0x9e, 0xef, + 0x9c, 0xee, 0xdb, 0x04, 0x47, 0x2a, 0x8e, 0x5c, 0x5b, 0x79, 0x04, 0x79, 0xe6, 0x66, 0xa9, 0xcb, + 0x64, 0xb5, 0x3f, 0x41, 0xe9, 0x69, 0x1b, 0x7d, 0x08, 0xa0, 0x13, 0xe2, 0x9a, 0xbd, 0x49, 0x08, + 0xbc, 0x3e, 0xdf, 0x4d, 0x6f, 0xfb, 0x7a, 0xcd, 0x6b, 0xc2, 0x5f, 0x5f, 0x0e, 0x4d, 0x23, 0x3e, + 0x3b, 0x02, 0xa8, 0xec, 0x41, 0x35, 0x6e, 0x1b, 0xad, 0xc2, 0xaf, 0xcc, 0xa9, 0xc2, 0x07, 0xb4, + 0x31, 0x20, 0x9d, 0x59, 0x5e, 0xe7, 0x65, 0x1d, 0xe5, 0xb3, 0x34, 0x94, 0xba, 0xa7, 0x62, 0x8f, + 0x26, 0x94, 0x18, 0x43, 0xd3, 0x4c, 0xb4, 0xa0, 0xc6, 0x6b, 0x96, 0xd9, 0xa0, 0x12, 0xfa, 0x4e, + 0x70, 0xa0, 0x72, 0xcb, 0x56, 0x0b, 0xfc, 0x0a, 0x96, 0x70, 0xcb, 0x6f, 0x82, 0x14, 0xec, 0x2a, + 0x9a, 0x1b, 0xe9, 0x86, 0xe1, 0x62, 0xcf, 0x13, 0x73, 0xf3, 0xbb, 0xac, 0x62, 0x6d, 0x7f, 0x2a, + 0x4a, 0x76, 0x59, 0x95, 0x77, 0x14, 0x03, 0x6a, 0x53, 0x01, 0x1a, 0xbd, 0x09, 0x45, 0x67, 0xd2, + 0xd3, 0xfc, 0xe5, 0x99, 0x3a, 0x3c, 0x3e, 0x4f, 0x9e, 0xf4, 0x46, 0x66, 0xff, 0x1e, 0x3e, 0xf3, + 0x5f, 0xc6, 0x99, 0xf4, 0xee, 0xf1, 0x55, 0xe4, 0xa3, 0x64, 0xa2, 0xa3, 0x9c, 0x40, 0xc9, 0xdf, + 0x14, 0xe8, 0x07, 0xd1, 0x73, 0xe2, 0xff, 0xc7, 0x48, 0x24, 0x0d, 0x02, 0x3e, 0x72, 0x4c, 0x6e, + 0xc1, 0xaa, 0x67, 0x0e, 0x2c, 0x6c, 0x68, 0x61, 0x76, 0xc6, 0x46, 0x2b, 0xa9, 0x35, 0xfe, 0x60, + 0xd7, 0x4f, 0xcd, 0x94, 0x7f, 0xa5, 0xa1, 0xe4, 0x1f, 0x58, 0xf4, 0x4a, 0x64, 0xdf, 0x55, 0xe7, + 0x54, 0xc6, 0x7c, 0xc5, 0xb0, 0xe8, 0x1c, 0x7f, 0xd7, 0xcc, 0xc5, 0xdf, 0x35, 0xe9, 0xef, 0x81, + 0xff, 0x1b, 0x27, 0x77, 0xe1, 0xdf, 0x38, 0x2f, 0x01, 0x22, 0x36, 0xd1, 0x47, 0xda, 0x89, 0x4d, + 0x4c, 0x6b, 0xa0, 0xf1, 0xc5, 0xe6, 0xdc, 0xb1, 0xce, 0x9e, 0xdc, 0x67, 0x0f, 0x0e, 0xd8, 0xba, + 0xff, 0x3c, 0x0d, 0xa5, 0x80, 0x05, 0x5c, 0xb4, 0x86, 0x7c, 0x05, 0x0a, 0x22, 0xd0, 0xf1, 0x22, + 0xb2, 0xe8, 0x05, 0xbf, 0x33, 0x72, 0x91, 0xdf, 0x19, 0x32, 0x94, 0xc6, 0x98, 0xe8, 0x2c, 0x9e, + 0xf0, 0x04, 0x39, 0xe8, 0xdf, 0x7a, 0x03, 0xca, 0x91, 0x72, 0x3e, 0x3d, 0x79, 0x7b, 0xed, 0x0f, + 0xea, 0x29, 0xb9, 0xf8, 0xd9, 0x17, 0x37, 0xb2, 0x7b, 0xf8, 0x53, 0xba, 0x67, 0xd5, 0x76, 0xab, + 0xd3, 0x6e, 0xdd, 0xab, 0xa7, 0xe5, 0xf2, 0x67, 0x5f, 0xdc, 0x28, 0xaa, 0x98, 0x15, 0xd4, 0x6e, + 0x75, 0x60, 0x25, 0xfa, 0x55, 0xe2, 0xe1, 0x00, 0x41, 0xf5, 0xce, 0xd1, 0xc1, 0xee, 0x4e, 0x6b, + 0xbb, 0xdb, 0xd6, 0xee, 0xef, 0x77, 0xdb, 0xf5, 0x34, 0xba, 0x0a, 0x97, 0x76, 0x77, 0xde, 0xed, + 0x74, 0xb5, 0xd6, 0xee, 0x4e, 0x7b, 0xaf, 0xab, 0x6d, 0x77, 0xbb, 0xdb, 0xad, 0x7b, 0xf5, 0xcc, + 0xd6, 0x9f, 0xcb, 0x50, 0xdb, 0x6e, 0xb6, 0x76, 0x68, 0x9c, 0x37, 0xfb, 0xba, 0x28, 0x58, 0xe6, + 0x58, 0x7d, 0xe2, 0xdc, 0x3b, 0x0f, 0xf2, 0xf9, 0xf5, 0x5a, 0x74, 0x17, 0xf2, 0xac, 0x74, 0x81, + 0xce, 0xbf, 0x04, 0x21, 0x2f, 0x28, 0xe0, 0xd2, 0x97, 0x61, 0xc7, 0xe3, 0xdc, 0x5b, 0x11, 0xf2, + 0xf9, 0xf5, 0x5c, 0xa4, 0x82, 0x14, 0xd6, 0x1e, 0x16, 0xdf, 0x92, 0x90, 0x97, 0xa8, 0xf1, 0x52, + 0xcc, 0x30, 0x01, 0x5a, 0x7c, 0x6b, 0x40, 0x5e, 0xc2, 0x81, 0xa1, 0x5d, 0x28, 0xfa, 0x39, 0xeb, + 0xa2, 0x7b, 0x0c, 0xf2, 0xc2, 0xfa, 0x2b, 0xfd, 0x04, 0xbc, 0xb6, 0x70, 0xfe, 0xa5, 0x0c, 0x79, + 0x41, 0x31, 0x19, 0xed, 0x40, 0x41, 0xb0, 0xfa, 0x05, 0x77, 0x13, 0xe4, 0x45, 0xf5, 0x54, 0xba, + 0x68, 0x61, 0xd1, 0x66, 0xf1, 0x55, 0x13, 0x79, 0x89, 0x3a, 0x39, 0x3a, 0x02, 0x88, 0x54, 0x12, + 0x96, 0xb8, 0x43, 0x22, 0x2f, 0x53, 0xff, 0x46, 0xfb, 0x50, 0x0a, 0x12, 0xbb, 0x85, 0x37, 0x3a, + 0xe4, 0xc5, 0x85, 0x68, 0xf4, 0x00, 0x2a, 0xf1, 0x8c, 0x66, 0xb9, 0x7b, 0x1a, 0xf2, 0x92, 0x15, + 0x66, 0x8a, 0x1f, 0x4f, 0x6f, 0x96, 0xbb, 0xb7, 0x21, 0x2f, 0x59, 0x70, 0x46, 0x1f, 0xc3, 0xea, + 0x6c, 0xfa, 0xb1, 0xfc, 0x35, 0x0e, 0xf9, 0x02, 0x25, 0x68, 0x34, 0x06, 0x34, 0x27, 0x6d, 0xb9, + 0xc0, 0xad, 0x0e, 0xf9, 0x22, 0x15, 0x69, 0x64, 0x40, 0x6d, 0x3a, 0x17, 0x58, 0xf6, 0x96, 0x87, + 0xbc, 0x74, 0x75, 0x9a, 0x8f, 0x12, 0x4f, 0x1b, 0x96, 0xbd, 0xf5, 0x21, 0x2f, 0x5d, 0xac, 0x6e, + 0xb6, 0xbf, 0xfc, 0x66, 0x2d, 0xfd, 0xd5, 0x37, 0x6b, 0xe9, 0xbf, 0x7f, 0xb3, 0x96, 0xfe, 0xfc, + 0xf1, 0x5a, 0xea, 0xab, 0xc7, 0x6b, 0xa9, 0xbf, 0x3c, 0x5e, 0x4b, 0xfd, 0xe4, 0xc5, 0x81, 0x49, + 0x86, 0x93, 0xde, 0x46, 0xdf, 0x1e, 0x6f, 0x46, 0xaf, 0xcf, 0xcd, 0xbb, 0xd2, 0xd7, 0x2b, 0xb0, + 0xa0, 0xfb, 0xea, 0x7f, 0x02, 0x00, 0x00, 0xff, 0xff, 0x88, 0x9f, 0xf2, 0x5c, 0xf2, 0x27, 0x00, + 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -3565,6 +3733,7 @@ type ABCIApplicationClient interface { LoadSnapshotChunk(ctx context.Context, in *RequestLoadSnapshotChunk, opts ...grpc.CallOption) (*ResponseLoadSnapshotChunk, error) ApplySnapshotChunk(ctx context.Context, in *RequestApplySnapshotChunk, opts ...grpc.CallOption) (*ResponseApplySnapshotChunk, error) PrepareProposal(ctx context.Context, in *RequestPrepareProposal, opts ...grpc.CallOption) (*ResponsePrepareProposal, error) + ProcessProposal(ctx context.Context, in *RequestProcessProposal, opts ...grpc.CallOption) (*ResponseProcessProposal, error) } type aBCIApplicationClient struct { @@ -3719,6 +3888,15 @@ func (c *aBCIApplicationClient) PrepareProposal(ctx context.Context, in *Request return out, nil } +func (c *aBCIApplicationClient) ProcessProposal(ctx context.Context, in *RequestProcessProposal, opts ...grpc.CallOption) (*ResponseProcessProposal, error) { + out := new(ResponseProcessProposal) + err := c.cc.Invoke(ctx, "/tendermint.abci.ABCIApplication/ProcessProposal", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + // ABCIApplicationServer is the server API for ABCIApplication service. type ABCIApplicationServer interface { Echo(context.Context, *RequestEcho) (*ResponseEcho, error) @@ -3737,6 +3915,7 @@ type ABCIApplicationServer interface { LoadSnapshotChunk(context.Context, *RequestLoadSnapshotChunk) (*ResponseLoadSnapshotChunk, error) ApplySnapshotChunk(context.Context, *RequestApplySnapshotChunk) (*ResponseApplySnapshotChunk, error) PrepareProposal(context.Context, *RequestPrepareProposal) (*ResponsePrepareProposal, error) + ProcessProposal(context.Context, *RequestProcessProposal) (*ResponseProcessProposal, error) } // UnimplementedABCIApplicationServer can be embedded to have forward compatible implementations. @@ -3791,6 +3970,9 @@ func (*UnimplementedABCIApplicationServer) ApplySnapshotChunk(ctx context.Contex func (*UnimplementedABCIApplicationServer) PrepareProposal(ctx context.Context, req *RequestPrepareProposal) (*ResponsePrepareProposal, error) { return nil, status.Errorf(codes.Unimplemented, "method PrepareProposal not implemented") } +func (*UnimplementedABCIApplicationServer) ProcessProposal(ctx context.Context, req *RequestProcessProposal) (*ResponseProcessProposal, error) { + return nil, status.Errorf(codes.Unimplemented, "method ProcessProposal not implemented") +} func RegisterABCIApplicationServer(s *grpc.Server, srv ABCIApplicationServer) { s.RegisterService(&_ABCIApplication_serviceDesc, srv) @@ -4084,6 +4266,24 @@ func _ABCIApplication_PrepareProposal_Handler(srv interface{}, ctx context.Conte return interceptor(ctx, in, info, handler) } +func _ABCIApplication_ProcessProposal_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(RequestProcessProposal) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(ABCIApplicationServer).ProcessProposal(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/tendermint.abci.ABCIApplication/ProcessProposal", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(ABCIApplicationServer).ProcessProposal(ctx, req.(*RequestProcessProposal)) + } + return interceptor(ctx, in, info, handler) +} + var _ABCIApplication_serviceDesc = grpc.ServiceDesc{ ServiceName: "tendermint.abci.ABCIApplication", HandlerType: (*ABCIApplicationServer)(nil), @@ -4152,6 +4352,10 @@ var _ABCIApplication_serviceDesc = grpc.ServiceDesc{ MethodName: "PrepareProposal", Handler: _ABCIApplication_PrepareProposal_Handler, }, + { + MethodName: "ProcessProposal", + Handler: _ABCIApplication_ProcessProposal_Handler, + }, }, Streams: []grpc.StreamDesc{}, Metadata: "tendermint/abci/types.proto", @@ -4527,6 +4731,29 @@ func (m *Request_PrepareProposal) MarshalToSizedBuffer(dAtA []byte) (int, error) } return len(dAtA) - i, nil } +func (m *Request_ProcessProposal) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *Request_ProcessProposal) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + if m.ProcessProposal != nil { + { + size, err := m.ProcessProposal.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTypes(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x1 + i-- + dAtA[i] = 0x8a + } + return len(dAtA) - i, nil +} func (m *RequestEcho) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -4722,12 +4949,12 @@ func (m *RequestInitChain) MarshalToSizedBuffer(dAtA []byte) (int, error) { i-- dAtA[i] = 0x12 } - n18, err18 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.Time, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.Time):]) - if err18 != nil { - return 0, err18 + n19, err19 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.Time, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.Time):]) + if err19 != nil { + return 0, err19 } - i -= n18 - i = encodeVarintTypes(dAtA, i, uint64(n18)) + i -= n19 + i = encodeVarintTypes(dAtA, i, uint64(n19)) i-- dAtA[i] = 0xa return len(dAtA) - i, nil @@ -5147,6 +5374,48 @@ func (m *RequestPrepareProposal) MarshalToSizedBuffer(dAtA []byte) (int, error) return len(dAtA) - i, nil } +func (m *RequestProcessProposal) 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 *RequestProcessProposal) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *RequestProcessProposal) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.Txs) > 0 { + for iNdEx := len(m.Txs) - 1; iNdEx >= 0; iNdEx-- { + i -= len(m.Txs[iNdEx]) + copy(dAtA[i:], m.Txs[iNdEx]) + i = encodeVarintTypes(dAtA, i, uint64(len(m.Txs[iNdEx]))) + i-- + dAtA[i] = 0x12 + } + } + { + size, err := m.Header.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTypes(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0xa + return len(dAtA) - i, nil +} + func (m *Response) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -5540,6 +5809,29 @@ func (m *Response_PrepareProposal) MarshalToSizedBuffer(dAtA []byte) (int, error } return len(dAtA) - i, nil } +func (m *Response_ProcessProposal) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *Response_ProcessProposal) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + if m.ProcessProposal != nil { + { + size, err := m.ProcessProposal.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTypes(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x1 + i-- + dAtA[i] = 0x92 + } + return len(dAtA) - i, nil +} func (m *ResponseException) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -6299,20 +6591,20 @@ func (m *ResponseApplySnapshotChunk) MarshalToSizedBuffer(dAtA []byte) (int, err } } if len(m.RefetchChunks) > 0 { - dAtA43 := make([]byte, len(m.RefetchChunks)*10) - var j42 int + dAtA46 := make([]byte, len(m.RefetchChunks)*10) + var j45 int for _, num := range m.RefetchChunks { for num >= 1<<7 { - dAtA43[j42] = uint8(uint64(num)&0x7f | 0x80) + dAtA46[j45] = uint8(uint64(num)&0x7f | 0x80) num >>= 7 - j42++ + j45++ } - dAtA43[j42] = uint8(num) - j42++ + dAtA46[j45] = uint8(num) + j45++ } - i -= j42 - copy(dAtA[i:], dAtA43[:j42]) - i = encodeVarintTypes(dAtA, i, uint64(j42)) + i -= j45 + copy(dAtA[i:], dAtA46[:j45]) + i = encodeVarintTypes(dAtA, i, uint64(j45)) i-- dAtA[i] = 0x12 } @@ -6356,6 +6648,43 @@ func (m *ResponsePrepareProposal) MarshalToSizedBuffer(dAtA []byte) (int, error) return len(dAtA) - i, nil } +func (m *ResponseProcessProposal) 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 *ResponseProcessProposal) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *ResponseProcessProposal) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.Evidence) > 0 { + for iNdEx := len(m.Evidence) - 1; iNdEx >= 0; iNdEx-- { + i -= len(m.Evidence[iNdEx]) + copy(dAtA[i:], m.Evidence[iNdEx]) + i = encodeVarintTypes(dAtA, i, uint64(len(m.Evidence[iNdEx]))) + i-- + dAtA[i] = 0x12 + } + } + if m.Result != 0 { + i = encodeVarintTypes(dAtA, i, uint64(m.Result)) + i-- + dAtA[i] = 0x8 + } + return len(dAtA) - i, nil +} + func (m *ConsensusParams) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -6784,12 +7113,12 @@ func (m *Evidence) MarshalToSizedBuffer(dAtA []byte) (int, error) { i-- dAtA[i] = 0x28 } - n51, err51 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.Time, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.Time):]) - if err51 != nil { - return 0, err51 + n54, err54 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.Time, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.Time):]) + if err54 != nil { + return 0, err54 } - i -= n51 - i = encodeVarintTypes(dAtA, i, uint64(n51)) + i -= n54 + i = encodeVarintTypes(dAtA, i, uint64(n54)) i-- dAtA[i] = 0x22 if m.Height != 0 { @@ -7082,6 +7411,18 @@ func (m *Request_PrepareProposal) Size() (n int) { } return n } +func (m *Request_ProcessProposal) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.ProcessProposal != nil { + l = m.ProcessProposal.Size() + n += 2 + l + sovTypes(uint64(l)) + } + return n +} func (m *RequestEcho) Size() (n int) { if m == nil { return 0 @@ -7350,6 +7691,23 @@ func (m *RequestPrepareProposal) Size() (n int) { return n } +func (m *RequestProcessProposal) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = m.Header.Size() + n += 1 + l + sovTypes(uint64(l)) + if len(m.Txs) > 0 { + for _, b := range m.Txs { + l = len(b) + n += 1 + l + sovTypes(uint64(l)) + } + } + return n +} + func (m *Response) Size() (n int) { if m == nil { return 0 @@ -7566,6 +7924,18 @@ func (m *Response_PrepareProposal) Size() (n int) { } return n } +func (m *Response_ProcessProposal) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.ProcessProposal != nil { + l = m.ProcessProposal.Size() + n += 2 + l + sovTypes(uint64(l)) + } + return n +} func (m *ResponseException) Size() (n int) { if m == nil { return 0 @@ -7940,6 +8310,24 @@ func (m *ResponsePrepareProposal) Size() (n int) { return n } +func (m *ResponseProcessProposal) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.Result != 0 { + n += 1 + sovTypes(uint64(m.Result)) + } + if len(m.Evidence) > 0 { + for _, b := range m.Evidence { + l = len(b) + n += 1 + l + sovTypes(uint64(l)) + } + } + return n +} + func (m *ConsensusParams) Size() (n int) { if m == nil { return 0 @@ -8745,6 +9133,41 @@ func (m *Request) Unmarshal(dAtA []byte) error { } m.Value = &Request_PrepareProposal{v} iNdEx = postIndex + case 17: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field ProcessProposal", 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 + } + v := &RequestProcessProposal{} + if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + m.Value = &Request_ProcessProposal{v} + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipTypes(dAtA[iNdEx:]) @@ -10528,6 +10951,121 @@ func (m *RequestPrepareProposal) Unmarshal(dAtA []byte) error { } return nil } +func (m *RequestProcessProposal) 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: RequestProcessProposal: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: RequestProcessProposal: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Header", 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 := m.Header.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Txs", 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.Txs = append(m.Txs, make([]byte, postIndex-iNdEx)) + copy(m.Txs[len(m.Txs)-1], dAtA[iNdEx:postIndex]) + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipTypes(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthTypes + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func (m *Response) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 @@ -11152,6 +11690,41 @@ func (m *Response) Unmarshal(dAtA []byte) error { } m.Value = &Response_PrepareProposal{v} iNdEx = postIndex + case 18: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field ProcessProposal", 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 + } + v := &ResponseProcessProposal{} + if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + m.Value = &Response_ProcessProposal{v} + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipTypes(dAtA[iNdEx:]) @@ -13629,6 +14202,107 @@ func (m *ResponsePrepareProposal) Unmarshal(dAtA []byte) error { } return nil } +func (m *ResponseProcessProposal) 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: ResponseProcessProposal: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: ResponseProcessProposal: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Result", wireType) + } + m.Result = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.Result |= ResponseProcessProposal_Result(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Evidence", 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.Evidence = append(m.Evidence, make([]byte, postIndex-iNdEx)) + copy(m.Evidence[len(m.Evidence)-1], dAtA[iNdEx:postIndex]) + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipTypes(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthTypes + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func (m *ConsensusParams) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0