diff --git a/Documentation/dev-guide/api_reference_v3.md b/Documentation/dev-guide/api_reference_v3.md index 8e7592a53..368b6110b 100644 --- a/Documentation/dev-guide/api_reference_v3.md +++ b/Documentation/dev-guide/api_reference_v3.md @@ -427,6 +427,7 @@ Empty field. | ----- | ----------- | ---- | | key | key is the first key to delete in the range. | bytes | | range_end | range_end is the key following the last key to delete for the range [key, range_end). If range_end is not given, the range is defined to contain only the key argument. If range_end is '\0', the range is all keys greater than or equal to the key argument. | bytes | +| prev_kv | If prev_kv is set, etcd gets the previous key-value pairs before deleting it. The previous key-value pairs will be returned in the delte response. | bool | @@ -436,6 +437,7 @@ Empty field. | ----- | ----------- | ---- | | header | | ResponseHeader | | deleted | deleted is the number of keys deleted by the delete range request. | int64 | +| prev_kvs | if prev_kv is set in the request, the previous key-value pairs will be returned. | (slice of) mvccpb.KeyValue | @@ -591,6 +593,7 @@ Empty field. | key | key is the key, in bytes, to put into the key-value store. | bytes | | value | value is the value, in bytes, to associate with the key in the key-value store. | bytes | | lease | lease is the lease ID to associate with the key in the key-value store. A lease value of 0 indicates no lease. | int64 | +| prev_kv | If prev_kv is set, etcd gets the previous key-value pair before changing it. The previous key-value pair will be returned in the put response. | bool | @@ -599,6 +602,7 @@ Empty field. | Field | Description | Type | | ----- | ----------- | ---- | | header | | ResponseHeader | +| prev_kv | if prev_kv is set in the request, the previous key-value pair will be returned. | mvccpb.KeyValue | diff --git a/Documentation/dev-guide/apispec/swagger/rpc.swagger.json b/Documentation/dev-guide/apispec/swagger/rpc.swagger.json index ee1c659e8..147236f5b 100644 --- a/Documentation/dev-guide/apispec/swagger/rpc.swagger.json +++ b/Documentation/dev-guide/apispec/swagger/rpc.swagger.json @@ -1474,6 +1474,11 @@ "format": "byte", "description": "key is the first key to delete in the range." }, + "prev_kv": { + "type": "boolean", + "format": "boolean", + "description": "If prev_kv is set, etcd gets the previous key-value pairs before deleting it.\nThe previous key-value pairs will be returned in the delte response." + }, "range_end": { "type": "string", "format": "byte", @@ -1491,6 +1496,13 @@ }, "header": { "$ref": "#/definitions/etcdserverpbResponseHeader" + }, + "prev_kvs": { + "type": "array", + "items": { + "$ref": "#/definitions/mvccpbKeyValue" + }, + "description": "if prev_kv is set in the request, the previous key-value pairs will be returned." } } }, @@ -1724,6 +1736,11 @@ "format": "int64", "description": "lease is the lease ID to associate with the key in the key-value store. A lease\nvalue of 0 indicates no lease." }, + "prev_kv": { + "type": "boolean", + "format": "boolean", + "description": "If prev_kv is set, etcd gets the previous key-value pair before changing it.\nThe previous key-value pair will be returned in the put response." + }, "value": { "type": "string", "format": "byte", @@ -1736,6 +1753,10 @@ "properties": { "header": { "$ref": "#/definitions/etcdserverpbResponseHeader" + }, + "prev_kv": { + "$ref": "#/definitions/mvccpbKeyValue", + "description": "if prev_kv is set in the request, the previous key-value pair will be returned." } } }, diff --git a/auth/authpb/auth.pb.go b/auth/authpb/auth.pb.go index 448e1eaa0..bafa775d5 100644 --- a/auth/authpb/auth.pb.go +++ b/auth/authpb/auth.pb.go @@ -21,9 +21,9 @@ import ( proto "github.com/golang/protobuf/proto" math "math" -) -import io "io" + io "io" +) // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal diff --git a/etcdserver/etcdserverpb/etcdserver.pb.go b/etcdserver/etcdserverpb/etcdserver.pb.go index 746e9a116..ac4be4f6c 100644 --- a/etcdserver/etcdserverpb/etcdserver.pb.go +++ b/etcdserver/etcdserverpb/etcdserver.pb.go @@ -102,9 +102,9 @@ import ( proto "github.com/golang/protobuf/proto" math "math" -) -import io "io" + io "io" +) // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal diff --git a/etcdserver/etcdserverpb/raft_internal.pb.go b/etcdserver/etcdserverpb/raft_internal.pb.go index 068aefff0..a82e2b235 100644 --- a/etcdserver/etcdserverpb/raft_internal.pb.go +++ b/etcdserver/etcdserverpb/raft_internal.pb.go @@ -10,9 +10,9 @@ import ( proto "github.com/golang/protobuf/proto" math "math" -) -import io "io" + io "io" +) // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal diff --git a/etcdserver/etcdserverpb/rpc.pb.go b/etcdserver/etcdserverpb/rpc.pb.go index 213d54426..c57824048 100644 --- a/etcdserver/etcdserverpb/rpc.pb.go +++ b/etcdserver/etcdserverpb/rpc.pb.go @@ -11,16 +11,15 @@ import ( math "math" + mvccpb "github.com/coreos/etcd/mvcc/mvccpb" + authpb "github.com/coreos/etcd/auth/authpb" - io "io" -) - -import mvccpb "github.com/coreos/etcd/mvcc/mvccpb" - -import ( context "golang.org/x/net/context" + grpc "google.golang.org/grpc" + + io "io" ) // Reference imports to suppress errors if they are not otherwise used. @@ -271,6 +270,9 @@ type PutRequest struct { // lease is the lease ID to associate with the key in the key-value store. A lease // value of 0 indicates no lease. Lease int64 `protobuf:"varint,3,opt,name=lease,proto3" json:"lease,omitempty"` + // If prev_kv is set, etcd gets the previous key-value pair before changing it. + // The previous key-value pair will be returned in the put response. + PrevKv bool `protobuf:"varint,4,opt,name=prev_kv,json=prevKv,proto3" json:"prev_kv,omitempty"` } func (m *PutRequest) Reset() { *m = PutRequest{} } @@ -280,6 +282,8 @@ func (*PutRequest) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []in type PutResponse struct { Header *ResponseHeader `protobuf:"bytes,1,opt,name=header" json:"header,omitempty"` + // if prev_kv is set in the request, the previous key-value pair will be returned. + PrevKv *mvccpb.KeyValue `protobuf:"bytes,2,opt,name=prev_kv,json=prevKv" json:"prev_kv,omitempty"` } func (m *PutResponse) Reset() { *m = PutResponse{} } @@ -294,6 +298,13 @@ func (m *PutResponse) GetHeader() *ResponseHeader { return nil } +func (m *PutResponse) GetPrevKv() *mvccpb.KeyValue { + if m != nil { + return m.PrevKv + } + return nil +} + type DeleteRangeRequest struct { // key is the first key to delete in the range. Key []byte `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"` @@ -301,6 +312,9 @@ type DeleteRangeRequest struct { // If range_end is not given, the range is defined to contain only the key argument. // If range_end is '\0', the range is all keys greater than or equal to the key argument. RangeEnd []byte `protobuf:"bytes,2,opt,name=range_end,json=rangeEnd,proto3" json:"range_end,omitempty"` + // If prev_kv is set, etcd gets the previous key-value pairs before deleting it. + // The previous key-value pairs will be returned in the delte response. + PrevKv bool `protobuf:"varint,3,opt,name=prev_kv,json=prevKv,proto3" json:"prev_kv,omitempty"` } func (m *DeleteRangeRequest) Reset() { *m = DeleteRangeRequest{} } @@ -312,6 +326,8 @@ type DeleteRangeResponse struct { Header *ResponseHeader `protobuf:"bytes,1,opt,name=header" json:"header,omitempty"` // deleted is the number of keys deleted by the delete range request. Deleted int64 `protobuf:"varint,2,opt,name=deleted,proto3" json:"deleted,omitempty"` + // if prev_kv is set in the request, the previous key-value pairs will be returned. + PrevKvs []*mvccpb.KeyValue `protobuf:"bytes,3,rep,name=prev_kvs,json=prevKvs" json:"prev_kvs,omitempty"` } func (m *DeleteRangeResponse) Reset() { *m = DeleteRangeResponse{} } @@ -326,6 +342,13 @@ func (m *DeleteRangeResponse) GetHeader() *ResponseHeader { return nil } +func (m *DeleteRangeResponse) GetPrevKvs() []*mvccpb.KeyValue { + if m != nil { + return m.PrevKvs + } + return nil +} + type RequestOp struct { // request is a union of request types accepted by a transaction. // @@ -3765,6 +3788,16 @@ func (m *PutRequest) MarshalTo(data []byte) (int, error) { i++ i = encodeVarintRpc(data, i, uint64(m.Lease)) } + if m.PrevKv { + data[i] = 0x20 + i++ + if m.PrevKv { + data[i] = 1 + } else { + data[i] = 0 + } + i++ + } return i, nil } @@ -3793,6 +3826,16 @@ func (m *PutResponse) MarshalTo(data []byte) (int, error) { } i += n2 } + if m.PrevKv != nil { + data[i] = 0x12 + i++ + i = encodeVarintRpc(data, i, uint64(m.PrevKv.Size())) + n3, err := m.PrevKv.MarshalTo(data[i:]) + if err != nil { + return 0, err + } + i += n3 + } return i, nil } @@ -3823,6 +3866,16 @@ func (m *DeleteRangeRequest) MarshalTo(data []byte) (int, error) { i = encodeVarintRpc(data, i, uint64(len(m.RangeEnd))) i += copy(data[i:], m.RangeEnd) } + if m.PrevKv { + data[i] = 0x18 + i++ + if m.PrevKv { + data[i] = 1 + } else { + data[i] = 0 + } + i++ + } return i, nil } @@ -3845,17 +3898,29 @@ func (m *DeleteRangeResponse) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintRpc(data, i, uint64(m.Header.Size())) - n3, err := m.Header.MarshalTo(data[i:]) + n4, err := m.Header.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n3 + i += n4 } if m.Deleted != 0 { data[i] = 0x10 i++ i = encodeVarintRpc(data, i, uint64(m.Deleted)) } + if len(m.PrevKvs) > 0 { + for _, msg := range m.PrevKvs { + data[i] = 0x1a + i++ + i = encodeVarintRpc(data, i, uint64(msg.Size())) + n, err := msg.MarshalTo(data[i:]) + if err != nil { + return 0, err + } + i += n + } + } return i, nil } @@ -3875,11 +3940,11 @@ func (m *RequestOp) MarshalTo(data []byte) (int, error) { var l int _ = l if m.Request != nil { - nn4, err := m.Request.MarshalTo(data[i:]) + nn5, err := m.Request.MarshalTo(data[i:]) if err != nil { return 0, err } - i += nn4 + i += nn5 } return i, nil } @@ -3890,11 +3955,11 @@ func (m *RequestOp_RequestRange) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintRpc(data, i, uint64(m.RequestRange.Size())) - n5, err := m.RequestRange.MarshalTo(data[i:]) + n6, err := m.RequestRange.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n5 + i += n6 } return i, nil } @@ -3904,11 +3969,11 @@ func (m *RequestOp_RequestPut) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintRpc(data, i, uint64(m.RequestPut.Size())) - n6, err := m.RequestPut.MarshalTo(data[i:]) + n7, err := m.RequestPut.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n6 + i += n7 } return i, nil } @@ -3918,11 +3983,11 @@ func (m *RequestOp_RequestDeleteRange) MarshalTo(data []byte) (int, error) { data[i] = 0x1a i++ i = encodeVarintRpc(data, i, uint64(m.RequestDeleteRange.Size())) - n7, err := m.RequestDeleteRange.MarshalTo(data[i:]) + n8, err := m.RequestDeleteRange.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n7 + i += n8 } return i, nil } @@ -3942,11 +4007,11 @@ func (m *ResponseOp) MarshalTo(data []byte) (int, error) { var l int _ = l if m.Response != nil { - nn8, err := m.Response.MarshalTo(data[i:]) + nn9, err := m.Response.MarshalTo(data[i:]) if err != nil { return 0, err } - i += nn8 + i += nn9 } return i, nil } @@ -3957,11 +4022,11 @@ func (m *ResponseOp_ResponseRange) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintRpc(data, i, uint64(m.ResponseRange.Size())) - n9, err := m.ResponseRange.MarshalTo(data[i:]) + n10, err := m.ResponseRange.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n9 + i += n10 } return i, nil } @@ -3971,11 +4036,11 @@ func (m *ResponseOp_ResponsePut) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintRpc(data, i, uint64(m.ResponsePut.Size())) - n10, err := m.ResponsePut.MarshalTo(data[i:]) + n11, err := m.ResponsePut.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n10 + i += n11 } return i, nil } @@ -3985,11 +4050,11 @@ func (m *ResponseOp_ResponseDeleteRange) MarshalTo(data []byte) (int, error) { data[i] = 0x1a i++ i = encodeVarintRpc(data, i, uint64(m.ResponseDeleteRange.Size())) - n11, err := m.ResponseDeleteRange.MarshalTo(data[i:]) + n12, err := m.ResponseDeleteRange.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n11 + i += n12 } return i, nil } @@ -4025,11 +4090,11 @@ func (m *Compare) MarshalTo(data []byte) (int, error) { i += copy(data[i:], m.Key) } if m.TargetUnion != nil { - nn12, err := m.TargetUnion.MarshalTo(data[i:]) + nn13, err := m.TargetUnion.MarshalTo(data[i:]) if err != nil { return 0, err } - i += nn12 + i += nn13 } return i, nil } @@ -4138,11 +4203,11 @@ func (m *TxnResponse) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintRpc(data, i, uint64(m.Header.Size())) - n13, err := m.Header.MarshalTo(data[i:]) + n14, err := m.Header.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n13 + i += n14 } if m.Succeeded { data[i] = 0x10 @@ -4221,11 +4286,11 @@ func (m *CompactionResponse) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintRpc(data, i, uint64(m.Header.Size())) - n14, err := m.Header.MarshalTo(data[i:]) + n15, err := m.Header.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n14 + i += n15 } return i, nil } @@ -4267,11 +4332,11 @@ func (m *HashResponse) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintRpc(data, i, uint64(m.Header.Size())) - n15, err := m.Header.MarshalTo(data[i:]) + n16, err := m.Header.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n15 + i += n16 } if m.Hash != 0 { data[i] = 0x10 @@ -4318,11 +4383,11 @@ func (m *SnapshotResponse) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintRpc(data, i, uint64(m.Header.Size())) - n16, err := m.Header.MarshalTo(data[i:]) + n17, err := m.Header.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n16 + i += n17 } if m.RemainingBytes != 0 { data[i] = 0x10 @@ -4354,11 +4419,11 @@ func (m *WatchRequest) MarshalTo(data []byte) (int, error) { var l int _ = l if m.RequestUnion != nil { - nn17, err := m.RequestUnion.MarshalTo(data[i:]) + nn18, err := m.RequestUnion.MarshalTo(data[i:]) if err != nil { return 0, err } - i += nn17 + i += nn18 } return i, nil } @@ -4369,11 +4434,11 @@ func (m *WatchRequest_CreateRequest) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintRpc(data, i, uint64(m.CreateRequest.Size())) - n18, err := m.CreateRequest.MarshalTo(data[i:]) + n19, err := m.CreateRequest.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n18 + i += n19 } return i, nil } @@ -4383,11 +4448,11 @@ func (m *WatchRequest_CancelRequest) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintRpc(data, i, uint64(m.CancelRequest.Size())) - n19, err := m.CancelRequest.MarshalTo(data[i:]) + n20, err := m.CancelRequest.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n19 + i += n20 } return i, nil } @@ -4478,11 +4543,11 @@ func (m *WatchResponse) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintRpc(data, i, uint64(m.Header.Size())) - n20, err := m.Header.MarshalTo(data[i:]) + n21, err := m.Header.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n20 + i += n21 } if m.WatchId != 0 { data[i] = 0x10 @@ -4576,11 +4641,11 @@ func (m *LeaseGrantResponse) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintRpc(data, i, uint64(m.Header.Size())) - n21, err := m.Header.MarshalTo(data[i:]) + n22, err := m.Header.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n21 + i += n22 } if m.ID != 0 { data[i] = 0x10 @@ -4643,11 +4708,11 @@ func (m *LeaseRevokeResponse) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintRpc(data, i, uint64(m.Header.Size())) - n22, err := m.Header.MarshalTo(data[i:]) + n23, err := m.Header.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n22 + i += n23 } return i, nil } @@ -4694,11 +4759,11 @@ func (m *LeaseKeepAliveResponse) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintRpc(data, i, uint64(m.Header.Size())) - n23, err := m.Header.MarshalTo(data[i:]) + n24, err := m.Header.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n23 + i += n24 } if m.ID != 0 { data[i] = 0x10 @@ -4824,21 +4889,21 @@ func (m *MemberAddResponse) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintRpc(data, i, uint64(m.Header.Size())) - n24, err := m.Header.MarshalTo(data[i:]) + n25, err := m.Header.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n24 + i += n25 } if m.Member != nil { data[i] = 0x12 i++ i = encodeVarintRpc(data, i, uint64(m.Member.Size())) - n25, err := m.Member.MarshalTo(data[i:]) + n26, err := m.Member.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n25 + i += n26 } return i, nil } @@ -4885,11 +4950,11 @@ func (m *MemberRemoveResponse) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintRpc(data, i, uint64(m.Header.Size())) - n26, err := m.Header.MarshalTo(data[i:]) + n27, err := m.Header.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n26 + i += n27 } return i, nil } @@ -4951,11 +5016,11 @@ func (m *MemberUpdateResponse) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintRpc(data, i, uint64(m.Header.Size())) - n27, err := m.Header.MarshalTo(data[i:]) + n28, err := m.Header.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n27 + i += n28 } return i, nil } @@ -4997,11 +5062,11 @@ func (m *MemberListResponse) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintRpc(data, i, uint64(m.Header.Size())) - n28, err := m.Header.MarshalTo(data[i:]) + n29, err := m.Header.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n28 + i += n29 } if len(m.Members) > 0 { for _, msg := range m.Members { @@ -5055,11 +5120,11 @@ func (m *DefragmentResponse) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintRpc(data, i, uint64(m.Header.Size())) - n29, err := m.Header.MarshalTo(data[i:]) + n30, err := m.Header.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n29 + i += n30 } return i, nil } @@ -5144,11 +5209,11 @@ func (m *AlarmResponse) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintRpc(data, i, uint64(m.Header.Size())) - n30, err := m.Header.MarshalTo(data[i:]) + n31, err := m.Header.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n30 + i += n31 } if len(m.Alarms) > 0 { for _, msg := range m.Alarms { @@ -5202,11 +5267,11 @@ func (m *StatusResponse) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintRpc(data, i, uint64(m.Header.Size())) - n31, err := m.Header.MarshalTo(data[i:]) + n32, err := m.Header.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n31 + i += n32 } if len(m.Version) > 0 { data[i] = 0x12 @@ -5604,11 +5669,11 @@ func (m *AuthRoleGrantPermissionRequest) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintRpc(data, i, uint64(m.Perm.Size())) - n32, err := m.Perm.MarshalTo(data[i:]) + n33, err := m.Perm.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n32 + i += n33 } return i, nil } @@ -5668,11 +5733,11 @@ func (m *AuthEnableResponse) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintRpc(data, i, uint64(m.Header.Size())) - n33, err := m.Header.MarshalTo(data[i:]) + n34, err := m.Header.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n33 + i += n34 } return i, nil } @@ -5696,11 +5761,11 @@ func (m *AuthDisableResponse) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintRpc(data, i, uint64(m.Header.Size())) - n34, err := m.Header.MarshalTo(data[i:]) + n35, err := m.Header.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n34 + i += n35 } return i, nil } @@ -5724,11 +5789,11 @@ func (m *AuthenticateResponse) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintRpc(data, i, uint64(m.Header.Size())) - n35, err := m.Header.MarshalTo(data[i:]) + n36, err := m.Header.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n35 + i += n36 } if len(m.Token) > 0 { data[i] = 0x12 @@ -5758,11 +5823,11 @@ func (m *AuthUserAddResponse) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintRpc(data, i, uint64(m.Header.Size())) - n36, err := m.Header.MarshalTo(data[i:]) + n37, err := m.Header.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n36 + i += n37 } return i, nil } @@ -5786,11 +5851,11 @@ func (m *AuthUserGetResponse) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintRpc(data, i, uint64(m.Header.Size())) - n37, err := m.Header.MarshalTo(data[i:]) + n38, err := m.Header.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n37 + i += n38 } if len(m.Roles) > 0 { for _, s := range m.Roles { @@ -5829,11 +5894,11 @@ func (m *AuthUserDeleteResponse) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintRpc(data, i, uint64(m.Header.Size())) - n38, err := m.Header.MarshalTo(data[i:]) + n39, err := m.Header.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n38 + i += n39 } return i, nil } @@ -5857,11 +5922,11 @@ func (m *AuthUserChangePasswordResponse) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintRpc(data, i, uint64(m.Header.Size())) - n39, err := m.Header.MarshalTo(data[i:]) + n40, err := m.Header.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n39 + i += n40 } return i, nil } @@ -5885,11 +5950,11 @@ func (m *AuthUserGrantRoleResponse) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintRpc(data, i, uint64(m.Header.Size())) - n40, err := m.Header.MarshalTo(data[i:]) + n41, err := m.Header.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n40 + i += n41 } return i, nil } @@ -5913,11 +5978,11 @@ func (m *AuthUserRevokeRoleResponse) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintRpc(data, i, uint64(m.Header.Size())) - n41, err := m.Header.MarshalTo(data[i:]) + n42, err := m.Header.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n41 + i += n42 } return i, nil } @@ -5941,11 +6006,11 @@ func (m *AuthRoleAddResponse) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintRpc(data, i, uint64(m.Header.Size())) - n42, err := m.Header.MarshalTo(data[i:]) + n43, err := m.Header.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n42 + i += n43 } return i, nil } @@ -5969,11 +6034,11 @@ func (m *AuthRoleGetResponse) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintRpc(data, i, uint64(m.Header.Size())) - n43, err := m.Header.MarshalTo(data[i:]) + n44, err := m.Header.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n43 + i += n44 } if len(m.Perm) > 0 { for _, msg := range m.Perm { @@ -6009,11 +6074,11 @@ func (m *AuthRoleListResponse) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintRpc(data, i, uint64(m.Header.Size())) - n44, err := m.Header.MarshalTo(data[i:]) + n45, err := m.Header.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n44 + i += n45 } if len(m.Roles) > 0 { for _, s := range m.Roles { @@ -6052,11 +6117,11 @@ func (m *AuthUserListResponse) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintRpc(data, i, uint64(m.Header.Size())) - n45, err := m.Header.MarshalTo(data[i:]) + n46, err := m.Header.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n45 + i += n46 } if len(m.Users) > 0 { for _, s := range m.Users { @@ -6095,11 +6160,11 @@ func (m *AuthRoleDeleteResponse) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintRpc(data, i, uint64(m.Header.Size())) - n46, err := m.Header.MarshalTo(data[i:]) + n47, err := m.Header.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n46 + i += n47 } return i, nil } @@ -6123,11 +6188,11 @@ func (m *AuthRoleGrantPermissionResponse) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintRpc(data, i, uint64(m.Header.Size())) - n47, err := m.Header.MarshalTo(data[i:]) + n48, err := m.Header.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n47 + i += n48 } return i, nil } @@ -6151,11 +6216,11 @@ func (m *AuthRoleRevokePermissionResponse) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintRpc(data, i, uint64(m.Header.Size())) - n48, err := m.Header.MarshalTo(data[i:]) + n49, err := m.Header.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n48 + i += n49 } return i, nil } @@ -6276,6 +6341,9 @@ func (m *PutRequest) Size() (n int) { if m.Lease != 0 { n += 1 + sovRpc(uint64(m.Lease)) } + if m.PrevKv { + n += 2 + } return n } @@ -6286,6 +6354,10 @@ func (m *PutResponse) Size() (n int) { l = m.Header.Size() n += 1 + l + sovRpc(uint64(l)) } + if m.PrevKv != nil { + l = m.PrevKv.Size() + n += 1 + l + sovRpc(uint64(l)) + } return n } @@ -6300,6 +6372,9 @@ func (m *DeleteRangeRequest) Size() (n int) { if l > 0 { n += 1 + l + sovRpc(uint64(l)) } + if m.PrevKv { + n += 2 + } return n } @@ -6313,6 +6388,12 @@ func (m *DeleteRangeResponse) Size() (n int) { if m.Deleted != 0 { n += 1 + sovRpc(uint64(m.Deleted)) } + if len(m.PrevKvs) > 0 { + for _, e := range m.PrevKvs { + l = e.Size() + n += 1 + l + sovRpc(uint64(l)) + } + } return n } @@ -7923,6 +8004,26 @@ func (m *PutRequest) Unmarshal(data []byte) error { break } } + case 4: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field PrevKv", wireType) + } + var v int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRpc + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := data[iNdEx] + iNdEx++ + v |= (int(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + m.PrevKv = bool(v != 0) default: iNdEx = preIndex skippy, err := skipRpc(data[iNdEx:]) @@ -8006,6 +8107,39 @@ func (m *PutResponse) Unmarshal(data []byte) error { return err } iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field PrevKv", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRpc + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := data[iNdEx] + iNdEx++ + msglen |= (int(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthRpc + } + postIndex := iNdEx + msglen + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.PrevKv == nil { + m.PrevKv = &mvccpb.KeyValue{} + } + if err := m.PrevKv.Unmarshal(data[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipRpc(data[iNdEx:]) @@ -8118,6 +8252,26 @@ func (m *DeleteRangeRequest) Unmarshal(data []byte) error { m.RangeEnd = []byte{} } iNdEx = postIndex + case 3: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field PrevKv", wireType) + } + var v int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRpc + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := data[iNdEx] + iNdEx++ + v |= (int(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + m.PrevKv = bool(v != 0) default: iNdEx = preIndex skippy, err := skipRpc(data[iNdEx:]) @@ -8220,6 +8374,37 @@ func (m *DeleteRangeResponse) Unmarshal(data []byte) error { break } } + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field PrevKvs", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRpc + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := data[iNdEx] + iNdEx++ + msglen |= (int(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthRpc + } + postIndex := iNdEx + msglen + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.PrevKvs = append(m.PrevKvs, &mvccpb.KeyValue{}) + if err := m.PrevKvs[len(m.PrevKvs)-1].Unmarshal(data[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipRpc(data[iNdEx:]) @@ -15125,203 +15310,205 @@ var ( ) var fileDescriptorRpc = []byte{ - // 3154 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xb4, 0x5a, 0xcd, 0x72, 0xe3, 0xc6, - 0xf1, 0x17, 0x48, 0x4a, 0x14, 0x9b, 0x14, 0xc5, 0x1d, 0x69, 0xd7, 0x14, 0x56, 0xab, 0xd5, 0xce, - 0x7e, 0xc9, 0x6b, 0x5b, 0xb4, 0x65, 0xff, 0xff, 0x87, 0x4d, 0xca, 0x55, 0x92, 0xc8, 0xac, 0x64, - 0xc9, 0xd2, 0x1a, 0xd2, 0xca, 0x4e, 0x55, 0x2a, 0x2a, 0x88, 0x9c, 0x25, 0x59, 0x22, 0x01, 0x1a, - 0x00, 0xb9, 0x2b, 0x27, 0xa9, 0x4a, 0xb9, 0xe2, 0x43, 0x72, 0xf5, 0x21, 0x5f, 0xc7, 0x3c, 0x43, - 0x6e, 0x79, 0x80, 0x54, 0x2e, 0x71, 0x55, 0x5e, 0x20, 0xb5, 0xc9, 0x21, 0x87, 0xdc, 0x53, 0x39, - 0xa4, 0x92, 0x9a, 0x2f, 0x60, 0x00, 0x02, 0x94, 0x1c, 0xc4, 0x17, 0x09, 0xd3, 0xd3, 0xd3, 0xbf, - 0x9e, 0x9e, 0xe9, 0x46, 0x77, 0x83, 0x50, 0x70, 0x06, 0xcd, 0xf5, 0x81, 0x63, 0x7b, 0x36, 0x2a, - 0x11, 0xaf, 0xd9, 0x72, 0x89, 0x33, 0x22, 0xce, 0xe0, 0x4c, 0x5f, 0x6c, 0xdb, 0x6d, 0x9b, 0x4d, - 0xd4, 0xe8, 0x13, 0xe7, 0xd1, 0x97, 0x28, 0x4f, 0xad, 0x3f, 0x6a, 0x36, 0xd9, 0x9f, 0xc1, 0x59, - 0xed, 0x7c, 0x24, 0xa6, 0x6e, 0xb2, 0x29, 0x73, 0xe8, 0x75, 0xd8, 0x9f, 0xc1, 0x19, 0xfb, 0x27, - 0x26, 0x97, 0xdb, 0xb6, 0xdd, 0xee, 0x91, 0x9a, 0x39, 0xe8, 0xd6, 0x4c, 0xcb, 0xb2, 0x3d, 0xd3, - 0xeb, 0xda, 0x96, 0xcb, 0x67, 0xf1, 0x17, 0x1a, 0x94, 0x0d, 0xe2, 0x0e, 0x6c, 0xcb, 0x25, 0x3b, - 0xc4, 0x6c, 0x11, 0x07, 0xdd, 0x02, 0x68, 0xf6, 0x86, 0xae, 0x47, 0x9c, 0xd3, 0x6e, 0xab, 0xaa, - 0xad, 0x6a, 0x6b, 0x39, 0xa3, 0x20, 0x28, 0xbb, 0x2d, 0x74, 0x13, 0x0a, 0x7d, 0xd2, 0x3f, 0xe3, - 0xb3, 0x19, 0x36, 0x3b, 0xcb, 0x09, 0xbb, 0x2d, 0xa4, 0xc3, 0xac, 0x43, 0x46, 0x5d, 0xb7, 0x6b, - 0x5b, 0xd5, 0xec, 0xaa, 0xb6, 0x96, 0x35, 0xfc, 0x31, 0x5d, 0xe8, 0x98, 0xcf, 0xbd, 0x53, 0x8f, - 0x38, 0xfd, 0x6a, 0x8e, 0x2f, 0xa4, 0x84, 0x63, 0xe2, 0xf4, 0xf1, 0x57, 0x59, 0x28, 0x19, 0xa6, - 0xd5, 0x26, 0x06, 0xf9, 0x74, 0x48, 0x5c, 0x0f, 0x55, 0x20, 0x7b, 0x4e, 0x2e, 0x18, 0x7c, 0xc9, - 0xa0, 0x8f, 0x7c, 0xbd, 0xd5, 0x26, 0xa7, 0xc4, 0xe2, 0xc0, 0x25, 0xba, 0xde, 0x6a, 0x93, 0x86, - 0xd5, 0x42, 0x8b, 0x30, 0xdd, 0xeb, 0xf6, 0xbb, 0x9e, 0x40, 0xe5, 0x83, 0x90, 0x3a, 0xb9, 0x88, - 0x3a, 0xdb, 0x00, 0xae, 0xed, 0x78, 0xa7, 0xb6, 0xd3, 0x22, 0x4e, 0x75, 0x7a, 0x55, 0x5b, 0x2b, - 0x6f, 0xdc, 0x5b, 0x57, 0x0f, 0x62, 0x5d, 0x55, 0x68, 0xfd, 0xc8, 0x76, 0xbc, 0x43, 0xca, 0x6b, - 0x14, 0x5c, 0xf9, 0x88, 0xbe, 0x03, 0x45, 0x26, 0xc4, 0x33, 0x9d, 0x36, 0xf1, 0xaa, 0x33, 0x4c, - 0xca, 0xfd, 0x4b, 0xa4, 0x1c, 0x33, 0x66, 0x83, 0xc1, 0xf3, 0x67, 0x84, 0xa1, 0xe4, 0x12, 0xa7, - 0x6b, 0xf6, 0xba, 0x9f, 0x99, 0x67, 0x3d, 0x52, 0xcd, 0xaf, 0x6a, 0x6b, 0xb3, 0x46, 0x88, 0x46, - 0xf7, 0x7f, 0x4e, 0x2e, 0xdc, 0x53, 0xdb, 0xea, 0x5d, 0x54, 0x67, 0x19, 0xc3, 0x2c, 0x25, 0x1c, - 0x5a, 0xbd, 0x0b, 0x76, 0x68, 0xf6, 0xd0, 0xf2, 0xf8, 0x6c, 0x81, 0xcd, 0x16, 0x18, 0x85, 0x4e, - 0xe3, 0x75, 0x28, 0xf8, 0xfa, 0xa3, 0x59, 0xc8, 0x1d, 0x1c, 0x1e, 0x34, 0x2a, 0x53, 0x08, 0x60, - 0x66, 0xf3, 0x68, 0xbb, 0x71, 0x50, 0xaf, 0x68, 0xa8, 0x08, 0xf9, 0x7a, 0x83, 0x0f, 0x32, 0x78, - 0x0b, 0x20, 0xd0, 0x14, 0xe5, 0x21, 0xbb, 0xd7, 0xf8, 0x6e, 0x65, 0x8a, 0xf2, 0x9c, 0x34, 0x8c, - 0xa3, 0xdd, 0xc3, 0x83, 0x8a, 0x46, 0x17, 0x6f, 0x1b, 0x8d, 0xcd, 0xe3, 0x46, 0x25, 0x43, 0x39, - 0x3e, 0x3c, 0xac, 0x57, 0xb2, 0xa8, 0x00, 0xd3, 0x27, 0x9b, 0xfb, 0xcf, 0x1a, 0x95, 0x1c, 0xfe, - 0x52, 0x83, 0x39, 0xb1, 0x77, 0x7e, 0xbf, 0xd0, 0x7b, 0x30, 0xd3, 0x61, 0x77, 0x8c, 0x1d, 0x6b, - 0x71, 0x63, 0x39, 0x62, 0xa8, 0xd0, 0x3d, 0x34, 0x04, 0x2f, 0xc2, 0x90, 0x3d, 0x1f, 0xb9, 0xd5, - 0xcc, 0x6a, 0x76, 0xad, 0xb8, 0x51, 0x59, 0xe7, 0x97, 0x7f, 0x7d, 0x8f, 0x5c, 0x9c, 0x98, 0xbd, - 0x21, 0x31, 0xe8, 0x24, 0x42, 0x90, 0xeb, 0xdb, 0x0e, 0x61, 0xa7, 0x3f, 0x6b, 0xb0, 0x67, 0x7a, - 0x25, 0x98, 0x01, 0xc4, 0xc9, 0xf3, 0x01, 0xfe, 0x00, 0xe0, 0xe9, 0xd0, 0x4b, 0xbe, 0x65, 0x8b, - 0x30, 0x3d, 0xa2, 0x72, 0xc5, 0x0d, 0xe3, 0x03, 0x76, 0xbd, 0x88, 0xe9, 0x12, 0xff, 0x7a, 0xd1, - 0x01, 0xde, 0x86, 0x22, 0x93, 0x95, 0x66, 0x7b, 0x78, 0x1b, 0x50, 0x9d, 0xf4, 0x88, 0x47, 0x52, - 0x5c, 0x7f, 0x4c, 0x60, 0x21, 0x24, 0x24, 0x95, 0xc1, 0xab, 0x90, 0x6f, 0x31, 0x61, 0x1c, 0x27, - 0x6b, 0xc8, 0x21, 0xfe, 0xbb, 0x06, 0x05, 0xa1, 0xe1, 0xe1, 0x00, 0x6d, 0xc2, 0x9c, 0xc3, 0x07, - 0xa7, 0x4c, 0x11, 0x01, 0xa2, 0x27, 0x5f, 0xff, 0x9d, 0x29, 0xa3, 0x24, 0x96, 0x30, 0x32, 0xfa, - 0x16, 0x14, 0xa5, 0x88, 0xc1, 0xd0, 0x63, 0x70, 0xc5, 0x8d, 0x6a, 0x58, 0x40, 0x70, 0x5c, 0x3b, - 0x53, 0x06, 0x08, 0xf6, 0xa7, 0x43, 0x0f, 0x1d, 0xc3, 0xa2, 0x5c, 0xcc, 0x15, 0x14, 0x6a, 0x64, - 0x99, 0x94, 0xd5, 0xb0, 0x94, 0x71, 0x1b, 0xef, 0x4c, 0x19, 0x48, 0xac, 0x57, 0x26, 0xb7, 0x0a, - 0x90, 0x17, 0x54, 0xfc, 0x0f, 0x0d, 0x40, 0xda, 0xe8, 0x70, 0x80, 0xea, 0x50, 0x76, 0xc4, 0x28, - 0xb4, 0xe1, 0x9b, 0xb1, 0x1b, 0x16, 0xa6, 0x9d, 0x32, 0xe6, 0xe4, 0x22, 0xbe, 0xe5, 0xf7, 0xa1, - 0xe4, 0x4b, 0x09, 0xf6, 0xbc, 0x14, 0xb3, 0x67, 0x5f, 0x42, 0x51, 0x2e, 0xa0, 0xbb, 0xfe, 0x18, - 0xae, 0xfb, 0xeb, 0x63, 0xb6, 0x7d, 0x67, 0xc2, 0xb6, 0x7d, 0x81, 0x0b, 0x52, 0x82, 0xba, 0x71, - 0xa0, 0xc1, 0x92, 0x93, 0xf1, 0xaf, 0xb2, 0x90, 0xdf, 0xb6, 0xfb, 0x03, 0xd3, 0xa1, 0x67, 0x34, - 0xe3, 0x10, 0x77, 0xd8, 0xf3, 0xd8, 0x76, 0xcb, 0x1b, 0x77, 0xc3, 0x08, 0x82, 0x4d, 0xfe, 0x37, - 0x18, 0xab, 0x21, 0x96, 0xd0, 0xc5, 0x22, 0x36, 0x66, 0xae, 0xb0, 0x58, 0x44, 0x46, 0xb1, 0x44, - 0x3a, 0x41, 0x36, 0x70, 0x02, 0x1d, 0xf2, 0x23, 0xe2, 0x04, 0xf1, 0x7c, 0x67, 0xca, 0x90, 0x04, - 0xf4, 0x3a, 0xcc, 0x37, 0x1d, 0x62, 0x52, 0x7b, 0xc8, 0x98, 0x3f, 0x2d, 0x78, 0xca, 0x7c, 0xc2, - 0x90, 0xb1, 0xff, 0x2e, 0x94, 0xfa, 0x76, 0x2b, 0xe0, 0x9b, 0x11, 0x7c, 0xc5, 0xbe, 0xdd, 0xf2, - 0x99, 0x6e, 0xc8, 0x48, 0x40, 0x83, 0x71, 0x69, 0x67, 0x4a, 0xc4, 0x02, 0xfc, 0x0e, 0xcc, 0x85, - 0xf6, 0x4a, 0x63, 0x5e, 0xe3, 0xa3, 0x67, 0x9b, 0xfb, 0x3c, 0x40, 0x3e, 0x61, 0x31, 0xd1, 0xa8, - 0x68, 0x34, 0xce, 0xee, 0x37, 0x8e, 0x8e, 0x2a, 0x19, 0xfc, 0x6d, 0x7f, 0x89, 0x88, 0xa8, 0x4a, - 0x20, 0x9d, 0x52, 0x02, 0xa9, 0x26, 0x03, 0x69, 0x26, 0x08, 0xa4, 0xd9, 0xad, 0x32, 0x94, 0xb8, - 0x41, 0x4e, 0x87, 0x56, 0xd7, 0xb6, 0xf0, 0x6f, 0x34, 0x80, 0xe3, 0x97, 0x96, 0x0c, 0x15, 0x35, - 0xc8, 0x37, 0xb9, 0xf0, 0xaa, 0xc6, 0x62, 0xe4, 0xf5, 0x58, 0x1b, 0x1b, 0x92, 0x0b, 0xbd, 0x03, - 0x79, 0x77, 0xd8, 0x6c, 0x12, 0x57, 0x06, 0xd5, 0xd7, 0xa2, 0x61, 0x41, 0x78, 0xb8, 0x21, 0xf9, - 0xe8, 0x92, 0xe7, 0x66, 0xb7, 0x37, 0x64, 0x21, 0x76, 0xf2, 0x12, 0xc1, 0x87, 0x7f, 0xa9, 0x41, - 0x91, 0x69, 0x99, 0x2a, 0x16, 0x2d, 0x43, 0x81, 0xe9, 0x40, 0x5a, 0x22, 0x1a, 0xcd, 0x1a, 0x01, - 0x01, 0xfd, 0x3f, 0x14, 0xe4, 0x95, 0x75, 0x85, 0x62, 0xd5, 0x78, 0xb1, 0x87, 0x03, 0x23, 0x60, - 0xc5, 0x7b, 0x70, 0x8d, 0x59, 0xa5, 0x49, 0x53, 0x21, 0x69, 0x47, 0x35, 0x59, 0xd0, 0x22, 0xc9, - 0x82, 0x0e, 0xb3, 0x83, 0xce, 0x85, 0xdb, 0x6d, 0x9a, 0x3d, 0xa1, 0x85, 0x3f, 0xc6, 0x1f, 0x00, - 0x52, 0x85, 0xa5, 0x7a, 0x19, 0xcc, 0x41, 0x71, 0xc7, 0x74, 0x3b, 0x42, 0x25, 0xfc, 0x09, 0x94, - 0xf8, 0x30, 0x95, 0x0d, 0x11, 0xe4, 0x3a, 0xa6, 0xdb, 0x61, 0x8a, 0xcf, 0x19, 0xec, 0x19, 0x5f, - 0x83, 0xf9, 0x23, 0xcb, 0x1c, 0xb8, 0x1d, 0x5b, 0x06, 0x57, 0x9a, 0x0a, 0x56, 0x02, 0x5a, 0x2a, - 0xc4, 0x87, 0x30, 0xef, 0x90, 0xbe, 0xd9, 0xb5, 0xba, 0x56, 0xfb, 0xf4, 0xec, 0xc2, 0x23, 0xae, - 0xc8, 0x14, 0xcb, 0x3e, 0x79, 0x8b, 0x52, 0xa9, 0x6a, 0x67, 0x3d, 0xfb, 0x4c, 0xb8, 0x38, 0x7b, - 0xc6, 0xbf, 0xd5, 0xa0, 0xf4, 0xb1, 0xe9, 0x35, 0xa5, 0x15, 0xd0, 0x2e, 0x94, 0x7d, 0xc7, 0x66, - 0x14, 0xa1, 0x4b, 0x24, 0xc2, 0xb3, 0x35, 0xdb, 0xc2, 0xd1, 0x65, 0x84, 0x9f, 0x6b, 0xaa, 0x04, - 0x26, 0xca, 0xb4, 0x9a, 0xa4, 0xe7, 0x8b, 0xca, 0x24, 0x8b, 0x62, 0x8c, 0xaa, 0x28, 0x95, 0xb0, - 0x35, 0x1f, 0xbc, 0xfd, 0xb8, 0x5b, 0x7e, 0xa9, 0x01, 0x1a, 0xd7, 0xe1, 0xeb, 0x26, 0xb2, 0xf7, - 0xa1, 0xec, 0x7a, 0xa6, 0xe3, 0x9d, 0x46, 0xf2, 0xe8, 0x39, 0x46, 0xf5, 0x83, 0xd3, 0x43, 0x98, - 0x1f, 0x38, 0x76, 0xdb, 0x21, 0xae, 0x7b, 0x6a, 0xd9, 0x5e, 0xf7, 0xf9, 0x05, 0x0b, 0x88, 0xb3, - 0x46, 0x59, 0x92, 0x0f, 0x18, 0x15, 0xd7, 0xa4, 0x52, 0xaa, 0xf2, 0x68, 0x09, 0x66, 0x5f, 0x50, - 0xaa, 0xcc, 0xf0, 0xb3, 0x46, 0x9e, 0x8d, 0x77, 0x5b, 0xf8, 0x6f, 0x1a, 0xcc, 0x09, 0xf3, 0xa7, - 0xba, 0x03, 0x2a, 0x44, 0x26, 0x04, 0x41, 0x13, 0x0c, 0x7e, 0x2c, 0x2d, 0x91, 0xb0, 0xc9, 0x21, - 0xf5, 0x33, 0x6e, 0x65, 0xd2, 0x12, 0xfb, 0xf1, 0xc7, 0xe8, 0x75, 0xa8, 0x34, 0xb9, 0x9f, 0x45, - 0x02, 0xbc, 0x31, 0x2f, 0xe8, 0xbe, 0x75, 0xee, 0xc3, 0x0c, 0x19, 0x11, 0xcb, 0x73, 0xab, 0x45, - 0x16, 0x14, 0xe6, 0x64, 0xd6, 0xd8, 0xa0, 0x54, 0x43, 0x4c, 0xe2, 0xff, 0x83, 0x6b, 0xfb, 0x34, - 0x91, 0x7b, 0xe2, 0x98, 0x96, 0x9a, 0x12, 0x1e, 0x1f, 0xef, 0x0b, 0xab, 0x64, 0xbd, 0xe3, 0x7d, - 0x54, 0x86, 0xcc, 0x6e, 0x5d, 0xec, 0x21, 0xd3, 0xad, 0xe3, 0xcf, 0x35, 0x40, 0xea, 0xba, 0x54, - 0x66, 0x8a, 0x08, 0x97, 0xf0, 0xd9, 0x00, 0x7e, 0x11, 0xa6, 0x89, 0xe3, 0xd8, 0x0e, 0x33, 0x48, - 0xc1, 0xe0, 0x03, 0x7c, 0x4f, 0xe8, 0x60, 0x90, 0x91, 0x7d, 0xee, 0x5f, 0x36, 0x2e, 0x4d, 0xf3, - 0x55, 0xdd, 0x83, 0x85, 0x10, 0x57, 0xaa, 0xe0, 0xf4, 0x10, 0xae, 0x33, 0x61, 0x7b, 0x84, 0x0c, - 0x36, 0x7b, 0xdd, 0x51, 0x22, 0xea, 0x00, 0x6e, 0x44, 0x19, 0xbf, 0x59, 0x1b, 0xe1, 0x0e, 0xcc, - 0x7c, 0xc8, 0x6a, 0x50, 0x45, 0x97, 0x1c, 0xe3, 0x45, 0x90, 0xb3, 0xcc, 0x3e, 0x4f, 0xe7, 0x0b, - 0x06, 0x7b, 0x66, 0xd1, 0x9c, 0x10, 0xe7, 0x99, 0xb1, 0xcf, 0xdf, 0x1a, 0x05, 0xc3, 0x1f, 0xa3, - 0x15, 0x5a, 0xfd, 0x76, 0x89, 0xe5, 0xb1, 0xd9, 0x1c, 0x9b, 0x55, 0x28, 0x78, 0x1d, 0x2a, 0x1c, - 0x69, 0xb3, 0xd5, 0x52, 0xde, 0x1c, 0xbe, 0x3c, 0x2d, 0x2c, 0x0f, 0xbf, 0x80, 0x6b, 0x0a, 0x7f, - 0x2a, 0x33, 0xbc, 0x09, 0x33, 0xbc, 0xd0, 0x16, 0x41, 0x6b, 0x31, 0xbc, 0x8a, 0xc3, 0x18, 0x82, - 0x07, 0xdf, 0x87, 0x05, 0x41, 0x21, 0x7d, 0x3b, 0xee, 0xac, 0x98, 0x7d, 0xf0, 0x3e, 0x2c, 0x86, - 0xd9, 0x52, 0x5d, 0x91, 0x4d, 0x09, 0xfa, 0x6c, 0xd0, 0x52, 0x62, 0x60, 0xf4, 0x50, 0x54, 0x83, - 0x65, 0x22, 0x06, 0xf3, 0x15, 0x92, 0x22, 0x52, 0x29, 0xb4, 0x20, 0xcd, 0xbf, 0xdf, 0x75, 0xfd, - 0x37, 0xdd, 0x67, 0x80, 0x54, 0x62, 0xaa, 0x43, 0x59, 0x87, 0x3c, 0x37, 0xb8, 0x4c, 0xa6, 0xe2, - 0x4f, 0x45, 0x32, 0x51, 0x85, 0xea, 0xe4, 0xb9, 0x63, 0xb6, 0xfb, 0xc4, 0x8f, 0x39, 0x34, 0x85, - 0x50, 0x89, 0xa9, 0x76, 0xfc, 0x47, 0x0d, 0x4a, 0x9b, 0x3d, 0xd3, 0xe9, 0x4b, 0xe3, 0xbf, 0x0f, - 0x33, 0x3c, 0x37, 0x11, 0xf9, 0xfb, 0x83, 0xb0, 0x18, 0x95, 0x97, 0x0f, 0x36, 0x79, 0x26, 0x23, - 0x56, 0xd1, 0xc3, 0x12, 0xfd, 0x9d, 0x7a, 0xa4, 0xdf, 0x53, 0x47, 0x6f, 0xc1, 0xb4, 0x49, 0x97, - 0x30, 0x5f, 0x2c, 0x47, 0xb3, 0x42, 0x26, 0xed, 0xf8, 0x62, 0x40, 0x0c, 0xce, 0x85, 0xdf, 0x83, - 0xa2, 0x82, 0x40, 0x93, 0xdd, 0x27, 0x8d, 0xe3, 0xca, 0x14, 0x2a, 0xc1, 0xec, 0xe6, 0xf6, 0xf1, - 0xee, 0x09, 0xcf, 0x81, 0xcb, 0x00, 0xf5, 0x86, 0x3f, 0xce, 0xe0, 0x4f, 0xc4, 0x2a, 0xe1, 0xe1, - 0xaa, 0x3e, 0x5a, 0x92, 0x3e, 0x99, 0x2b, 0xe9, 0xf3, 0x12, 0xe6, 0xc4, 0xf6, 0x53, 0xdd, 0x81, - 0x77, 0x60, 0x86, 0xc9, 0x93, 0x57, 0x60, 0x29, 0x06, 0x56, 0x7a, 0x27, 0x67, 0xc4, 0xf3, 0x30, - 0x77, 0xe4, 0x99, 0xde, 0xd0, 0x95, 0x57, 0xe0, 0x0f, 0x1a, 0x94, 0x25, 0x25, 0x6d, 0xf5, 0x2e, - 0x4b, 0x24, 0x1e, 0xf3, 0xfc, 0x02, 0xe9, 0x06, 0xcc, 0xb4, 0xce, 0x8e, 0xba, 0x9f, 0xc9, 0x2e, - 0x86, 0x18, 0x51, 0x7a, 0x8f, 0xe3, 0xf0, 0xae, 0x9c, 0x18, 0xd1, 0xdc, 0xdb, 0x31, 0x9f, 0x7b, - 0xbb, 0x56, 0x8b, 0xbc, 0x64, 0x6f, 0xda, 0x9c, 0x11, 0x10, 0x58, 0xba, 0x2c, 0xba, 0x77, 0xac, - 0x7e, 0x52, 0xbb, 0x79, 0x0b, 0x70, 0x6d, 0x73, 0xe8, 0x75, 0x1a, 0x96, 0x79, 0xd6, 0x93, 0x41, - 0x00, 0x2f, 0x02, 0xa2, 0xc4, 0x7a, 0xd7, 0x55, 0xa9, 0x0d, 0x58, 0xa0, 0x54, 0x62, 0x79, 0xdd, - 0xa6, 0x12, 0x31, 0x64, 0xd8, 0xd6, 0x22, 0x61, 0xdb, 0x74, 0xdd, 0x17, 0xb6, 0xd3, 0x12, 0x5b, - 0xf3, 0xc7, 0xb8, 0xce, 0x85, 0x3f, 0x73, 0x43, 0x81, 0xf9, 0xeb, 0x4a, 0x59, 0x0b, 0xa4, 0x3c, - 0x21, 0xde, 0x04, 0x29, 0xf8, 0x0d, 0xb8, 0x2e, 0x39, 0x45, 0x0d, 0x3d, 0x81, 0xf9, 0x10, 0x6e, - 0x49, 0xe6, 0xed, 0x0e, 0x4d, 0xf4, 0x9e, 0x0a, 0xc0, 0xff, 0x56, 0xcf, 0x2d, 0xa8, 0xfa, 0x7a, - 0xb2, 0x1c, 0xc4, 0xee, 0xa9, 0x0a, 0x0c, 0x5d, 0x71, 0x67, 0x0a, 0x06, 0x7b, 0xa6, 0x34, 0xc7, - 0xee, 0xf9, 0x2f, 0x41, 0xfa, 0x8c, 0xb7, 0x61, 0x49, 0xca, 0x10, 0xd9, 0x41, 0x58, 0xc8, 0x98, - 0x42, 0x71, 0x42, 0x84, 0xc1, 0xe8, 0xd2, 0xc9, 0x66, 0x57, 0x39, 0xc3, 0xa6, 0x65, 0x32, 0x35, - 0x45, 0xe6, 0x75, 0x7e, 0x23, 0xa8, 0x62, 0x6a, 0xd0, 0x16, 0x64, 0x2a, 0x40, 0x25, 0x8b, 0x83, - 0xa0, 0xe4, 0xb1, 0x83, 0x18, 0x13, 0xfd, 0x3d, 0x58, 0xf1, 0x95, 0xa0, 0x76, 0x7b, 0x4a, 0x9c, - 0x7e, 0xd7, 0x75, 0x95, 0x22, 0x30, 0x6e, 0xe3, 0x0f, 0x20, 0x37, 0x20, 0x22, 0xa6, 0x14, 0x37, - 0xd0, 0x3a, 0xef, 0xb1, 0xaf, 0x2b, 0x8b, 0xd9, 0x3c, 0x6e, 0xc1, 0x6d, 0x29, 0x9d, 0x5b, 0x34, - 0x56, 0x7c, 0x54, 0x29, 0x59, 0x20, 0x70, 0xb3, 0x8e, 0x17, 0x08, 0x59, 0x7e, 0xf6, 0x7e, 0xab, - 0xef, 0x03, 0x6e, 0x48, 0xe9, 0x5b, 0xa9, 0xde, 0x15, 0x7b, 0xdc, 0xa6, 0xbe, 0x4b, 0xa6, 0x12, - 0x76, 0x06, 0x8b, 0x61, 0x4f, 0x4e, 0x15, 0xc6, 0x16, 0x61, 0xda, 0xb3, 0xcf, 0x89, 0x0c, 0x62, - 0x7c, 0x20, 0x15, 0xf6, 0xdd, 0x3c, 0x95, 0xc2, 0x66, 0x20, 0x8c, 0x5d, 0xc9, 0xb4, 0xfa, 0xd2, - 0xd3, 0x94, 0xf9, 0x0c, 0x1f, 0xe0, 0x03, 0xb8, 0x11, 0x0d, 0x13, 0xa9, 0x54, 0x3e, 0xe1, 0x17, - 0x38, 0x2e, 0x92, 0xa4, 0x92, 0xfb, 0x51, 0x10, 0x0c, 0x94, 0x80, 0x92, 0x4a, 0xa4, 0x01, 0x7a, - 0x5c, 0x7c, 0xf9, 0x5f, 0xdc, 0x57, 0x3f, 0xdc, 0xa4, 0x12, 0xe6, 0x06, 0xc2, 0xd2, 0x1f, 0x7f, - 0x10, 0x23, 0xb2, 0x13, 0x63, 0x84, 0x70, 0x92, 0x20, 0x8a, 0x7d, 0x03, 0x97, 0x4e, 0x60, 0x04, - 0x01, 0x34, 0x2d, 0x06, 0x7d, 0x87, 0xf8, 0x18, 0x6c, 0x20, 0x2f, 0xb6, 0x1a, 0x76, 0x53, 0x1d, - 0xc6, 0xc7, 0x41, 0xec, 0x1c, 0x8b, 0xcc, 0xa9, 0x04, 0x7f, 0x02, 0xab, 0xc9, 0x41, 0x39, 0x8d, - 0xe4, 0x47, 0x18, 0x0a, 0x7e, 0x42, 0xa9, 0x7c, 0x53, 0x2b, 0x42, 0xfe, 0xe0, 0xf0, 0xe8, 0xe9, - 0xe6, 0x76, 0xa3, 0xa2, 0x6d, 0xfc, 0x2b, 0x0b, 0x99, 0xbd, 0x13, 0xf4, 0x7d, 0x98, 0xe6, 0xcd, - 0xff, 0x09, 0xdf, 0x46, 0xf4, 0x49, 0x9f, 0x11, 0xf0, 0xf2, 0xe7, 0x7f, 0xfa, 0xeb, 0x97, 0x99, - 0x1b, 0xf8, 0x5a, 0x6d, 0xf4, 0xae, 0xd9, 0x1b, 0x74, 0xcc, 0xda, 0xf9, 0xa8, 0xc6, 0xde, 0x09, - 0x8f, 0xb5, 0x47, 0xe8, 0x04, 0xb2, 0x4f, 0x87, 0x1e, 0x4a, 0xfc, 0x70, 0xa2, 0x27, 0x7f, 0x5e, - 0xc0, 0x3a, 0x93, 0xbc, 0x88, 0xe7, 0x55, 0xc9, 0x83, 0xa1, 0x47, 0xe5, 0x8e, 0xa0, 0xa8, 0x7c, - 0x21, 0x40, 0x97, 0x7e, 0x52, 0xd1, 0x2f, 0xff, 0xfa, 0x80, 0x31, 0xc3, 0x5b, 0xc6, 0xaf, 0xa9, - 0x78, 0xfc, 0x43, 0x86, 0xba, 0x9f, 0xe3, 0x97, 0x56, 0x74, 0x3f, 0x41, 0xcf, 0x3b, 0xba, 0x1f, - 0xa5, 0xcf, 0x1c, 0xbf, 0x1f, 0xef, 0xa5, 0x45, 0xe5, 0xda, 0xe2, 0xab, 0x46, 0xd3, 0x43, 0xb7, - 0x63, 0x9a, 0xe4, 0x6a, 0x3b, 0x58, 0x5f, 0x4d, 0x66, 0x10, 0x48, 0x77, 0x18, 0xd2, 0x4d, 0x7c, - 0x43, 0x45, 0x6a, 0xfa, 0x7c, 0x8f, 0xb5, 0x47, 0x1b, 0x1d, 0x98, 0x66, 0xbd, 0x34, 0x74, 0x2a, - 0x1f, 0xf4, 0x98, 0x4e, 0x63, 0xc2, 0x0d, 0x08, 0x75, 0xe1, 0xf0, 0x12, 0x43, 0x5b, 0xc0, 0x65, - 0x1f, 0x8d, 0xb5, 0xd3, 0x1e, 0x6b, 0x8f, 0xd6, 0xb4, 0xb7, 0xb5, 0x8d, 0x7f, 0x66, 0x60, 0x9a, - 0x35, 0x5d, 0xd0, 0x00, 0x20, 0xe8, 0x4e, 0x45, 0xf7, 0x39, 0xd6, 0xef, 0x8a, 0xee, 0x73, 0xbc, - 0xb1, 0x85, 0x6f, 0x33, 0xe4, 0x25, 0xbc, 0xe8, 0x23, 0xb3, 0xcf, 0x9f, 0xb5, 0x36, 0xe5, 0xa2, - 0x66, 0x7d, 0x01, 0x45, 0xa5, 0xcb, 0x84, 0xe2, 0x24, 0x86, 0xda, 0x54, 0xd1, 0x6b, 0x12, 0xd3, - 0xa2, 0xc2, 0x77, 0x19, 0xe8, 0x2d, 0x5c, 0x55, 0x8d, 0xcb, 0x71, 0x1d, 0xc6, 0x49, 0x81, 0x7f, - 0xa2, 0x41, 0x39, 0xdc, 0x69, 0x42, 0x77, 0x63, 0x44, 0x47, 0x1b, 0x56, 0xfa, 0xbd, 0xc9, 0x4c, - 0x89, 0x2a, 0x70, 0xfc, 0x73, 0x42, 0x06, 0x26, 0xe5, 0x94, 0xb6, 0xff, 0x77, 0x16, 0xf2, 0xdb, - 0xfc, 0x07, 0x12, 0xc8, 0x83, 0x82, 0xdf, 0xef, 0x41, 0x2b, 0x71, 0xbd, 0x80, 0x20, 0x51, 0xd6, - 0x6f, 0x27, 0xce, 0x0b, 0x15, 0x1e, 0x30, 0x15, 0x56, 0xf1, 0x4d, 0x5f, 0x05, 0xf1, 0x43, 0x8c, - 0x1a, 0x2f, 0x79, 0x6b, 0x66, 0xab, 0x45, 0x0d, 0xf1, 0x63, 0x0d, 0x4a, 0x6a, 0x1b, 0x07, 0xdd, - 0x89, 0xed, 0x42, 0xa8, 0x9d, 0x20, 0x1d, 0x4f, 0x62, 0x11, 0xf8, 0xaf, 0x33, 0xfc, 0xbb, 0x78, - 0x25, 0x09, 0xdf, 0x61, 0xfc, 0x61, 0x15, 0x78, 0xe3, 0x26, 0x5e, 0x85, 0x50, 0x5f, 0x28, 0x5e, - 0x85, 0x70, 0xdf, 0xe7, 0x72, 0x15, 0x86, 0x8c, 0x9f, 0xaa, 0xf0, 0x12, 0x20, 0xe8, 0xeb, 0xa0, - 0x58, 0xe3, 0x2a, 0xa5, 0x43, 0xf4, 0xe6, 0x8f, 0xb7, 0x84, 0xf0, 0x43, 0x86, 0x7d, 0x07, 0x2f, - 0x27, 0x61, 0xf7, 0xba, 0x2e, 0xf5, 0x80, 0x8d, 0xdf, 0xe5, 0xa0, 0xf8, 0xa1, 0xd9, 0xb5, 0x3c, - 0x62, 0x99, 0x56, 0x93, 0xa0, 0x36, 0x4c, 0xb3, 0x77, 0x43, 0xd4, 0xdd, 0xd5, 0x66, 0x4b, 0xd4, - 0xdd, 0x43, 0x9d, 0x08, 0x7c, 0x9f, 0x41, 0xdf, 0xc6, 0xba, 0x0f, 0xdd, 0x0f, 0xe4, 0xd7, 0x58, - 0x17, 0x81, 0x6e, 0xf9, 0x1c, 0x66, 0x78, 0xd7, 0x00, 0x45, 0xa4, 0x85, 0xba, 0x0b, 0xfa, 0x72, - 0xfc, 0x64, 0xe2, 0x2d, 0x53, 0xb1, 0x5c, 0xc6, 0x4c, 0xc1, 0x7e, 0x00, 0x10, 0xb4, 0xa9, 0xa2, - 0xf6, 0x1d, 0xeb, 0x6a, 0xe9, 0xab, 0xc9, 0x0c, 0x02, 0xf8, 0x11, 0x03, 0xbe, 0x87, 0x6f, 0xc7, - 0x02, 0xb7, 0xfc, 0x05, 0x14, 0xbc, 0x09, 0xb9, 0x1d, 0xd3, 0xed, 0xa0, 0x48, 0xe8, 0x57, 0x3e, - 0x97, 0xe9, 0x7a, 0xdc, 0x94, 0x80, 0xba, 0xc7, 0xa0, 0x56, 0xf0, 0x52, 0x2c, 0x54, 0xc7, 0x74, - 0x69, 0x24, 0x45, 0x43, 0x98, 0x95, 0x9f, 0xc0, 0xd0, 0xad, 0x88, 0xcd, 0xc2, 0x9f, 0xcb, 0xf4, - 0x95, 0xa4, 0x69, 0x01, 0xb8, 0xc6, 0x00, 0x31, 0xbe, 0x15, 0x6f, 0x54, 0xc1, 0xfe, 0x58, 0x7b, - 0xf4, 0xb6, 0xb6, 0xf1, 0xb3, 0x0a, 0xe4, 0x68, 0x96, 0x42, 0x63, 0x77, 0x50, 0xdc, 0x45, 0x2d, - 0x3c, 0xd6, 0x52, 0x89, 0x5a, 0x78, 0xbc, 0x2e, 0x8c, 0x89, 0xdd, 0xec, 0x67, 0x62, 0x84, 0x71, - 0xd1, 0x1d, 0x7b, 0x50, 0x54, 0x4a, 0x40, 0x14, 0x23, 0x31, 0xdc, 0xb0, 0x89, 0xc6, 0xee, 0x98, - 0xfa, 0x11, 0xaf, 0x32, 0x50, 0x1d, 0x5f, 0x0f, 0x83, 0xb6, 0x38, 0x1b, 0x45, 0xfd, 0x21, 0x94, - 0xd4, 0x5a, 0x11, 0xc5, 0x08, 0x8d, 0x74, 0x84, 0xa2, 0xb1, 0x22, 0xae, 0xd4, 0x8c, 0x71, 0x1a, - 0xff, 0x47, 0x71, 0x92, 0x97, 0xa2, 0x7f, 0x0a, 0x79, 0x51, 0x41, 0xc6, 0xed, 0x37, 0xdc, 0x43, - 0x8a, 0xdb, 0x6f, 0xa4, 0xfc, 0x8c, 0x49, 0x04, 0x18, 0x2c, 0xcd, 0x94, 0x65, 0x80, 0x16, 0x90, - 0x4f, 0x88, 0x97, 0x04, 0x19, 0x74, 0x45, 0x92, 0x20, 0x95, 0x2a, 0x65, 0x22, 0x64, 0x9b, 0x78, - 0xe2, 0x2e, 0xcb, 0x12, 0x00, 0x25, 0x48, 0x54, 0xa3, 0x21, 0x9e, 0xc4, 0x92, 0x98, 0xbb, 0x05, - 0xa8, 0x22, 0x14, 0xa2, 0x1f, 0x01, 0x04, 0xe5, 0x6e, 0xf4, 0x75, 0x1c, 0xdb, 0x33, 0x8b, 0xbe, - 0x8e, 0xe3, 0x2b, 0xe6, 0x18, 0x0f, 0x0e, 0xc0, 0x79, 0xfe, 0x48, 0xe1, 0x7f, 0xae, 0x01, 0x1a, - 0x2f, 0x8f, 0xd1, 0x1b, 0xf1, 0x10, 0xb1, 0xed, 0x38, 0xfd, 0xcd, 0xab, 0x31, 0x27, 0x46, 0xcf, - 0x40, 0xaf, 0x26, 0x5b, 0x32, 0x78, 0x41, 0x35, 0xfb, 0x42, 0x83, 0xb9, 0x50, 0x81, 0x8d, 0x1e, - 0x24, 0x9c, 0x73, 0xa4, 0xa5, 0xa7, 0x3f, 0xbc, 0x94, 0x2f, 0x31, 0x63, 0x51, 0x6e, 0x85, 0xcc, - 0xd6, 0x7e, 0xaa, 0x41, 0x39, 0x5c, 0x95, 0xa3, 0x04, 0x80, 0xb1, 0xbe, 0xa0, 0xbe, 0x76, 0x39, - 0xe3, 0x15, 0x4e, 0x2b, 0x48, 0xe0, 0x3e, 0x85, 0xbc, 0x28, 0xe6, 0xe3, 0xdc, 0x22, 0xdc, 0x56, - 0x8c, 0x73, 0x8b, 0x48, 0x27, 0x20, 0xc9, 0x2d, 0x68, 0x5d, 0xac, 0x78, 0xa2, 0x28, 0xf9, 0x93, - 0x20, 0x27, 0x7b, 0x62, 0xa4, 0x5f, 0x30, 0x11, 0x32, 0xf0, 0x44, 0x59, 0xf0, 0xa3, 0x04, 0x89, - 0x97, 0x78, 0x62, 0xb4, 0x5f, 0x90, 0xe4, 0x89, 0x0c, 0x55, 0xf1, 0xc4, 0xa0, 0x3e, 0x8f, 0xf3, - 0xc4, 0xb1, 0xa6, 0x69, 0x9c, 0x27, 0x8e, 0x97, 0xf8, 0x49, 0x67, 0xcb, 0xc0, 0x43, 0x9e, 0xb8, - 0x10, 0x53, 0xcf, 0xa3, 0x37, 0x13, 0x6c, 0x1a, 0xdb, 0x90, 0xd5, 0xdf, 0xba, 0x22, 0xf7, 0x64, - 0x0f, 0xe0, 0xa7, 0x21, 0x3d, 0xe0, 0xd7, 0x1a, 0x2c, 0xc6, 0x35, 0x04, 0x50, 0x02, 0x58, 0x42, - 0x37, 0x57, 0x5f, 0xbf, 0x2a, 0xfb, 0x15, 0xec, 0xe6, 0xfb, 0xc4, 0x56, 0xe5, 0xf7, 0xaf, 0x56, - 0xb4, 0xaf, 0x5e, 0xad, 0x68, 0x7f, 0x7e, 0xb5, 0xa2, 0xfd, 0xe2, 0x2f, 0x2b, 0x53, 0x67, 0x33, - 0xec, 0xb7, 0xda, 0xef, 0xfe, 0x27, 0x00, 0x00, 0xff, 0xff, 0x45, 0x26, 0x54, 0x69, 0x32, 0x2e, - 0x00, 0x00, + // 3199 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xb4, 0x5a, 0xcb, 0x73, 0x1b, 0xc7, + 0xd1, 0xe7, 0x02, 0x20, 0x1e, 0x0d, 0x10, 0x84, 0x86, 0x94, 0x0c, 0xae, 0x24, 0x8a, 0x1a, 0xbd, + 0x28, 0xd9, 0x26, 0x6c, 0xda, 0xdf, 0x77, 0xd0, 0xf7, 0x95, 0xab, 0x28, 0x12, 0x11, 0x19, 0xd2, + 0xa4, 0xbc, 0xa4, 0x68, 0xa7, 0xca, 0x15, 0xd6, 0x12, 0x18, 0x01, 0x28, 0x02, 0xbb, 0xf0, 0xee, + 0x02, 0x12, 0x9d, 0xa4, 0x2a, 0xe5, 0x8a, 0x0f, 0xc9, 0x31, 0x3e, 0xe4, 0x75, 0xcc, 0xdf, 0x90, + 0x5b, 0xfe, 0x80, 0x54, 0x2e, 0x71, 0x55, 0xfe, 0x81, 0x94, 0x93, 0x43, 0x0e, 0xb9, 0xa7, 0x72, + 0x48, 0x25, 0x35, 0xaf, 0xdd, 0xd9, 0xc5, 0x2e, 0x48, 0x67, 0xe3, 0x0b, 0xb9, 0x33, 0xd3, 0xd3, + 0xbf, 0xee, 0x9e, 0xe9, 0xde, 0xee, 0x5e, 0x40, 0xc9, 0x19, 0xb6, 0xd6, 0x86, 0x8e, 0xed, 0xd9, + 0xa8, 0x42, 0xbc, 0x56, 0xdb, 0x25, 0xce, 0x98, 0x38, 0xc3, 0x53, 0x7d, 0xb1, 0x63, 0x77, 0x6c, + 0xb6, 0xd0, 0xa0, 0x4f, 0x9c, 0x46, 0x5f, 0xa2, 0x34, 0x8d, 0xc1, 0xb8, 0xd5, 0x62, 0x7f, 0x86, + 0xa7, 0x8d, 0xb3, 0xb1, 0x58, 0xba, 0xce, 0x96, 0xcc, 0x91, 0xd7, 0x65, 0x7f, 0x86, 0xa7, 0xec, + 0x9f, 0x58, 0xbc, 0xd1, 0xb1, 0xed, 0x4e, 0x9f, 0x34, 0xcc, 0x61, 0xaf, 0x61, 0x5a, 0x96, 0xed, + 0x99, 0x5e, 0xcf, 0xb6, 0x5c, 0xbe, 0x8a, 0x3f, 0xd7, 0xa0, 0x6a, 0x10, 0x77, 0x68, 0x5b, 0x2e, + 0xd9, 0x26, 0x66, 0x9b, 0x38, 0xe8, 0x26, 0x40, 0xab, 0x3f, 0x72, 0x3d, 0xe2, 0x9c, 0xf4, 0xda, + 0x75, 0x6d, 0x45, 0x5b, 0xcd, 0x19, 0x25, 0x31, 0xb3, 0xd3, 0x46, 0xd7, 0xa1, 0x34, 0x20, 0x83, + 0x53, 0xbe, 0x9a, 0x61, 0xab, 0x45, 0x3e, 0xb1, 0xd3, 0x46, 0x3a, 0x14, 0x1d, 0x32, 0xee, 0xb9, + 0x3d, 0xdb, 0xaa, 0x67, 0x57, 0xb4, 0xd5, 0xac, 0xe1, 0x8f, 0xe9, 0x46, 0xc7, 0x7c, 0xe1, 0x9d, + 0x78, 0xc4, 0x19, 0xd4, 0x73, 0x7c, 0x23, 0x9d, 0x38, 0x22, 0xce, 0x00, 0x7f, 0x99, 0x85, 0x8a, + 0x61, 0x5a, 0x1d, 0x62, 0x90, 0x4f, 0x46, 0xc4, 0xf5, 0x50, 0x0d, 0xb2, 0x67, 0xe4, 0x9c, 0xc1, + 0x57, 0x0c, 0xfa, 0xc8, 0xf7, 0x5b, 0x1d, 0x72, 0x42, 0x2c, 0x0e, 0x5c, 0xa1, 0xfb, 0xad, 0x0e, + 0x69, 0x5a, 0x6d, 0xb4, 0x08, 0xb3, 0xfd, 0xde, 0xa0, 0xe7, 0x09, 0x54, 0x3e, 0x08, 0x89, 0x93, + 0x8b, 0x88, 0xb3, 0x09, 0xe0, 0xda, 0x8e, 0x77, 0x62, 0x3b, 0x6d, 0xe2, 0xd4, 0x67, 0x57, 0xb4, + 0xd5, 0xea, 0xfa, 0xdd, 0x35, 0xf5, 0x20, 0xd6, 0x54, 0x81, 0xd6, 0x0e, 0x6d, 0xc7, 0x3b, 0xa0, + 0xb4, 0x46, 0xc9, 0x95, 0x8f, 0xe8, 0x5b, 0x50, 0x66, 0x4c, 0x3c, 0xd3, 0xe9, 0x10, 0xaf, 0x9e, + 0x67, 0x5c, 0xee, 0x5d, 0xc0, 0xe5, 0x88, 0x11, 0x1b, 0x0c, 0x9e, 0x3f, 0x23, 0x0c, 0x15, 0x97, + 0x38, 0x3d, 0xb3, 0xdf, 0xfb, 0xd4, 0x3c, 0xed, 0x93, 0x7a, 0x61, 0x45, 0x5b, 0x2d, 0x1a, 0xa1, + 0x39, 0xaa, 0xff, 0x19, 0x39, 0x77, 0x4f, 0x6c, 0xab, 0x7f, 0x5e, 0x2f, 0x32, 0x82, 0x22, 0x9d, + 0x38, 0xb0, 0xfa, 0xe7, 0xec, 0xd0, 0xec, 0x91, 0xe5, 0xf1, 0xd5, 0x12, 0x5b, 0x2d, 0xb1, 0x19, + 0xba, 0x8c, 0xd7, 0xa0, 0xe4, 0xcb, 0x8f, 0x8a, 0x90, 0xdb, 0x3f, 0xd8, 0x6f, 0xd6, 0x66, 0x10, + 0x40, 0x7e, 0xe3, 0x70, 0xb3, 0xb9, 0xbf, 0x55, 0xd3, 0x50, 0x19, 0x0a, 0x5b, 0x4d, 0x3e, 0xc8, + 0xe0, 0x27, 0x00, 0x81, 0xa4, 0xa8, 0x00, 0xd9, 0xdd, 0xe6, 0x77, 0x6a, 0x33, 0x94, 0xe6, 0xb8, + 0x69, 0x1c, 0xee, 0x1c, 0xec, 0xd7, 0x34, 0xba, 0x79, 0xd3, 0x68, 0x6e, 0x1c, 0x35, 0x6b, 0x19, + 0x4a, 0xf1, 0xfe, 0xc1, 0x56, 0x2d, 0x8b, 0x4a, 0x30, 0x7b, 0xbc, 0xb1, 0xf7, 0xbc, 0x59, 0xcb, + 0xe1, 0x2f, 0x34, 0x98, 0x13, 0xba, 0xf3, 0xfb, 0x85, 0xde, 0x85, 0x7c, 0x97, 0xdd, 0x31, 0x76, + 0xac, 0xe5, 0xf5, 0x1b, 0x11, 0x43, 0x85, 0xee, 0xa1, 0x21, 0x68, 0x11, 0x86, 0xec, 0xd9, 0xd8, + 0xad, 0x67, 0x56, 0xb2, 0xab, 0xe5, 0xf5, 0xda, 0x1a, 0xbf, 0xfc, 0x6b, 0xbb, 0xe4, 0xfc, 0xd8, + 0xec, 0x8f, 0x88, 0x41, 0x17, 0x11, 0x82, 0xdc, 0xc0, 0x76, 0x08, 0x3b, 0xfd, 0xa2, 0xc1, 0x9e, + 0xe9, 0x95, 0x60, 0x06, 0x10, 0x27, 0xcf, 0x07, 0xb8, 0x05, 0xf0, 0x6c, 0xe4, 0x25, 0xdf, 0xb2, + 0x45, 0x98, 0x1d, 0x53, 0xbe, 0xe2, 0x86, 0xf1, 0x01, 0xbb, 0x5e, 0xc4, 0x74, 0x89, 0x7f, 0xbd, + 0xe8, 0x00, 0xbd, 0x06, 0x85, 0xa1, 0x43, 0xc6, 0x27, 0x67, 0x63, 0x86, 0x51, 0x34, 0xf2, 0x74, + 0xb8, 0x3b, 0xc6, 0x16, 0x94, 0x19, 0x48, 0x2a, 0xbd, 0x1f, 0x06, 0xdc, 0x33, 0x6c, 0xdb, 0xa4, + 0xee, 0x12, 0xef, 0x63, 0x40, 0x5b, 0xa4, 0x4f, 0x3c, 0x92, 0xc6, 0x85, 0x14, 0x6d, 0xb2, 0x21, + 0x6d, 0x7e, 0xaa, 0xc1, 0x42, 0x88, 0x7d, 0x2a, 0xb5, 0xea, 0x50, 0x68, 0x33, 0x66, 0x5c, 0x82, + 0xac, 0x21, 0x87, 0xe8, 0x75, 0x28, 0x0a, 0x01, 0xdc, 0x7a, 0x36, 0xe1, 0xb4, 0x0b, 0x5c, 0x26, + 0x17, 0xff, 0x4d, 0x83, 0x92, 0x50, 0xf4, 0x60, 0x88, 0x36, 0x60, 0xce, 0xe1, 0x83, 0x13, 0xa6, + 0x8f, 0x90, 0x48, 0x4f, 0xf6, 0xc4, 0xed, 0x19, 0xa3, 0x22, 0xb6, 0xb0, 0x69, 0xf4, 0x7f, 0x50, + 0x96, 0x2c, 0x86, 0x23, 0x4f, 0x98, 0xbc, 0x1e, 0x66, 0x10, 0xdc, 0x9c, 0xed, 0x19, 0x03, 0x04, + 0xf9, 0xb3, 0x91, 0x87, 0x8e, 0x60, 0x51, 0x6e, 0xe6, 0xda, 0x08, 0x31, 0xb2, 0x8c, 0xcb, 0x4a, + 0x98, 0xcb, 0xe4, 0x51, 0x6d, 0xcf, 0x18, 0x48, 0xec, 0x57, 0x16, 0x9f, 0x94, 0xa0, 0x20, 0x66, + 0xf1, 0xdf, 0x35, 0x00, 0x69, 0xd0, 0x83, 0x21, 0xda, 0x82, 0xaa, 0x23, 0x46, 0x21, 0x85, 0xaf, + 0xc7, 0x2a, 0x2c, 0xce, 0x61, 0xc6, 0x98, 0x93, 0x9b, 0xb8, 0xca, 0xef, 0x41, 0xc5, 0xe7, 0x12, + 0xe8, 0xbc, 0x14, 0xa3, 0xb3, 0xcf, 0xa1, 0x2c, 0x37, 0x50, 0xad, 0x3f, 0x84, 0xab, 0xfe, 0xfe, + 0x18, 0xb5, 0x6f, 0x4f, 0x51, 0xdb, 0x67, 0xb8, 0x20, 0x39, 0xa8, 0x8a, 0x03, 0x8d, 0xdb, 0x7c, + 0x1a, 0xff, 0x32, 0x0b, 0x85, 0x4d, 0x7b, 0x30, 0x34, 0x1d, 0x7a, 0x46, 0x79, 0x87, 0xb8, 0xa3, + 0xbe, 0xc7, 0xd4, 0xad, 0xae, 0xdf, 0x09, 0x23, 0x08, 0x32, 0xf9, 0xdf, 0x60, 0xa4, 0x86, 0xd8, + 0x42, 0x37, 0x8b, 0x30, 0x9d, 0xb9, 0xc4, 0x66, 0x11, 0xa4, 0xc5, 0x16, 0xe9, 0x4b, 0xd9, 0xc0, + 0x97, 0x74, 0x28, 0x8c, 0x89, 0x13, 0xbc, 0x5a, 0xb6, 0x67, 0x0c, 0x39, 0x81, 0x1e, 0xc2, 0x7c, + 0xcb, 0x21, 0x26, 0xb5, 0x87, 0x7c, 0xfd, 0xcc, 0x0a, 0x9a, 0x2a, 0x5f, 0x30, 0xe4, 0x6b, 0xe8, + 0x0e, 0x54, 0x06, 0x76, 0x3b, 0xa0, 0xcb, 0x0b, 0xba, 0xf2, 0xc0, 0x6e, 0xfb, 0x44, 0xd7, 0x64, + 0x50, 0xa2, 0xef, 0x85, 0xca, 0xf6, 0x8c, 0x08, 0x4b, 0xf8, 0x6d, 0x98, 0x0b, 0xe9, 0x4a, 0xc3, + 0x6f, 0xf3, 0x83, 0xe7, 0x1b, 0x7b, 0x3c, 0x56, 0x3f, 0x65, 0xe1, 0xd9, 0xa8, 0x69, 0x34, 0xe4, + 0xef, 0x35, 0x0f, 0x0f, 0x6b, 0x19, 0xfc, 0xff, 0xfe, 0x16, 0x11, 0xdc, 0x95, 0x98, 0x3e, 0xa3, + 0xc4, 0x74, 0x4d, 0xc6, 0xf4, 0x4c, 0x10, 0xd3, 0xb3, 0x4f, 0xaa, 0x50, 0xe1, 0x06, 0x39, 0x19, + 0x59, 0x3d, 0xdb, 0xc2, 0xbf, 0xd6, 0x00, 0x8e, 0x5e, 0x59, 0x32, 0xe2, 0x34, 0xa0, 0xd0, 0xe2, + 0xcc, 0xeb, 0x1a, 0x73, 0xe0, 0xab, 0xb1, 0x36, 0x36, 0x24, 0x15, 0x7a, 0x1b, 0x0a, 0xee, 0xa8, + 0xd5, 0x22, 0xae, 0x8c, 0xef, 0xaf, 0x45, 0x63, 0x88, 0xf0, 0x70, 0x43, 0xd2, 0xd1, 0x2d, 0x2f, + 0xcc, 0x5e, 0x7f, 0xc4, 0xa2, 0xfd, 0xf4, 0x2d, 0x82, 0x0e, 0xff, 0x42, 0x83, 0x32, 0x93, 0x32, + 0x55, 0xe0, 0xba, 0x01, 0x25, 0x26, 0x03, 0x69, 0x8b, 0xd0, 0x55, 0x34, 0x82, 0x09, 0xf4, 0xbf, + 0x50, 0x92, 0x57, 0x56, 0x46, 0xaf, 0x7a, 0x3c, 0xdb, 0x83, 0xa1, 0x11, 0x90, 0xe2, 0x5d, 0xb8, + 0xc2, 0xac, 0xd2, 0xa2, 0x59, 0x99, 0xb4, 0xa3, 0x9a, 0xb7, 0x68, 0x91, 0xbc, 0x45, 0x87, 0xe2, + 0xb0, 0x7b, 0xee, 0xf6, 0x5a, 0x66, 0x5f, 0x48, 0xe1, 0x8f, 0xf1, 0xb7, 0x01, 0xa9, 0xcc, 0xd2, + 0xa8, 0x8b, 0xe7, 0xa0, 0xbc, 0x6d, 0xba, 0x5d, 0x21, 0x12, 0xfe, 0x08, 0x2a, 0x7c, 0x98, 0xca, + 0x86, 0x08, 0x72, 0x5d, 0xd3, 0xed, 0x32, 0xc1, 0xe7, 0x0c, 0xf6, 0x8c, 0xaf, 0xc0, 0xfc, 0xa1, + 0x65, 0x0e, 0xdd, 0xae, 0x2d, 0x83, 0x2b, 0xcd, 0x4a, 0x6b, 0xc1, 0x5c, 0x2a, 0xc4, 0x07, 0x30, + 0xef, 0x90, 0x81, 0xd9, 0xb3, 0x7a, 0x56, 0xe7, 0xe4, 0xf4, 0xdc, 0x23, 0xae, 0x48, 0x5a, 0xab, + 0xfe, 0xf4, 0x13, 0x3a, 0x4b, 0x45, 0x3b, 0xed, 0xdb, 0xa7, 0xc2, 0xc5, 0xd9, 0x33, 0xfe, 0x8d, + 0x06, 0x95, 0x0f, 0x4d, 0xaf, 0x25, 0xad, 0x80, 0x76, 0xa0, 0xea, 0x3b, 0x36, 0x9b, 0x11, 0xb2, + 0x44, 0x22, 0x3c, 0xdb, 0xb3, 0x29, 0x1c, 0x5d, 0x46, 0xf8, 0xb9, 0x96, 0x3a, 0xc1, 0x58, 0x99, + 0x56, 0x8b, 0xf4, 0x7d, 0x56, 0x99, 0x64, 0x56, 0x8c, 0x50, 0x65, 0xa5, 0x4e, 0x3c, 0x99, 0x0f, + 0xde, 0x7e, 0xdc, 0x2d, 0xbf, 0xd0, 0x00, 0x4d, 0xca, 0xf0, 0x75, 0x13, 0x82, 0x7b, 0x50, 0x75, + 0x3d, 0xd3, 0xf1, 0x4e, 0x22, 0x29, 0xfd, 0x1c, 0x9b, 0xf5, 0x83, 0xd3, 0x03, 0x98, 0x1f, 0x3a, + 0x76, 0xc7, 0x21, 0xae, 0x7b, 0x62, 0xd9, 0x5e, 0xef, 0xc5, 0xb9, 0xc8, 0x86, 0xaa, 0x72, 0x7a, + 0x9f, 0xcd, 0xe2, 0x86, 0x14, 0x4a, 0x15, 0x1e, 0x2d, 0x41, 0xf1, 0x25, 0x9d, 0x95, 0xc5, 0x46, + 0xd6, 0x28, 0xb0, 0xf1, 0x4e, 0x1b, 0xff, 0x55, 0x83, 0x39, 0x61, 0xfe, 0x54, 0x77, 0x40, 0x85, + 0xc8, 0x84, 0x20, 0x68, 0x36, 0xc2, 0x8f, 0xa5, 0x2d, 0x92, 0x1e, 0x39, 0xa4, 0x7e, 0xc6, 0xad, + 0x4c, 0xda, 0x42, 0x1f, 0x7f, 0x8c, 0x1e, 0x42, 0xad, 0xc5, 0xfd, 0x2c, 0x12, 0xe0, 0x8d, 0x79, + 0x31, 0xef, 0x5b, 0xe7, 0x1e, 0xe4, 0xc9, 0x98, 0x58, 0x9e, 0x5b, 0x2f, 0xb3, 0xa0, 0x30, 0x27, + 0x53, 0x9a, 0x26, 0x9d, 0x35, 0xc4, 0x22, 0xfe, 0x1f, 0xb8, 0xb2, 0x47, 0x73, 0xca, 0xa7, 0x8e, + 0x69, 0xa9, 0xd9, 0xe9, 0xd1, 0xd1, 0x9e, 0xb0, 0x4a, 0xd6, 0x3b, 0xda, 0x43, 0x55, 0xc8, 0xec, + 0x6c, 0x09, 0x1d, 0x32, 0xbd, 0x2d, 0xfc, 0x99, 0x06, 0x48, 0xdd, 0x97, 0xca, 0x4c, 0x11, 0xe6, + 0x12, 0x3e, 0x1b, 0xc0, 0x2f, 0xc2, 0x2c, 0x71, 0x1c, 0xdb, 0x61, 0x06, 0x29, 0x19, 0x7c, 0x80, + 0xef, 0x0a, 0x19, 0x0c, 0x32, 0xb6, 0xcf, 0xfc, 0xcb, 0xc6, 0xb9, 0x69, 0xbe, 0xa8, 0xbb, 0xb0, + 0x10, 0xa2, 0x4a, 0x15, 0x9c, 0x1e, 0xc0, 0x55, 0xc6, 0x6c, 0x97, 0x90, 0xe1, 0x46, 0xbf, 0x37, + 0x4e, 0x44, 0x1d, 0xc2, 0xb5, 0x28, 0xe1, 0x37, 0x6b, 0x23, 0xdc, 0x85, 0xfc, 0xfb, 0xac, 0x1c, + 0x56, 0x64, 0xc9, 0x31, 0x5a, 0x04, 0x39, 0xcb, 0x1c, 0xf0, 0xca, 0xa2, 0x64, 0xb0, 0x67, 0x16, + 0xcd, 0x09, 0x71, 0x9e, 0x1b, 0x7b, 0xfc, 0xad, 0x51, 0x32, 0xfc, 0x31, 0x5a, 0xa6, 0x85, 0x78, + 0x8f, 0x58, 0x1e, 0x5b, 0xcd, 0xb1, 0x55, 0x65, 0x06, 0xaf, 0x41, 0x8d, 0x23, 0x6d, 0xb4, 0xdb, + 0xca, 0x9b, 0xc3, 0xe7, 0xa7, 0x85, 0xf9, 0xe1, 0x97, 0x70, 0x45, 0xa1, 0x4f, 0x65, 0x86, 0x37, + 0x20, 0xcf, 0x6b, 0x7e, 0x11, 0xb4, 0x16, 0xc3, 0xbb, 0x38, 0x8c, 0x21, 0x68, 0xf0, 0x3d, 0x58, + 0x10, 0x33, 0x64, 0x60, 0xc7, 0x9d, 0x15, 0xb3, 0x0f, 0xde, 0x83, 0xc5, 0x30, 0x59, 0xaa, 0x2b, + 0xb2, 0x21, 0x41, 0x9f, 0x0f, 0xdb, 0x4a, 0x0c, 0x8c, 0x1e, 0x8a, 0x6a, 0xb0, 0x4c, 0xc4, 0x60, + 0xbe, 0x40, 0x92, 0x45, 0x2a, 0x81, 0x16, 0xa4, 0xf9, 0xf7, 0x7a, 0xae, 0xff, 0xa6, 0xfb, 0x14, + 0x90, 0x3a, 0x99, 0xea, 0x50, 0xd6, 0xa0, 0xc0, 0x0d, 0x2e, 0x93, 0xa9, 0xf8, 0x53, 0x91, 0x44, + 0x54, 0xa0, 0x2d, 0xf2, 0xc2, 0x31, 0x3b, 0x03, 0xe2, 0xc7, 0x1c, 0x9a, 0x42, 0xa8, 0x93, 0xa9, + 0x34, 0xfe, 0x83, 0x06, 0x95, 0x8d, 0xbe, 0xe9, 0x0c, 0xa4, 0xf1, 0xdf, 0x83, 0x3c, 0xcf, 0x4d, + 0x44, 0xfe, 0x7e, 0x3f, 0xcc, 0x46, 0xa5, 0xe5, 0x83, 0x0d, 0x9e, 0xc9, 0x88, 0x5d, 0xf4, 0xb0, + 0x44, 0xab, 0x69, 0x2b, 0xd2, 0x7a, 0xda, 0x42, 0x6f, 0xc2, 0xac, 0x49, 0xb7, 0x30, 0x5f, 0xac, + 0x46, 0xb3, 0x42, 0xc6, 0xed, 0xe8, 0x7c, 0x48, 0x0c, 0x4e, 0x85, 0xdf, 0x85, 0xb2, 0x82, 0x40, + 0x93, 0xdd, 0xa7, 0xcd, 0xa3, 0xda, 0x0c, 0xaa, 0x40, 0x71, 0x63, 0xf3, 0x68, 0xe7, 0x98, 0xe7, + 0xc0, 0x55, 0x80, 0xad, 0xa6, 0x3f, 0xce, 0xe0, 0x8f, 0xc4, 0x2e, 0xe1, 0xe1, 0xaa, 0x3c, 0x5a, + 0x92, 0x3c, 0x99, 0x4b, 0xc9, 0xf3, 0x0a, 0xe6, 0x84, 0xfa, 0xa9, 0xee, 0xc0, 0xdb, 0x90, 0x67, + 0xfc, 0xe4, 0x15, 0x58, 0x8a, 0x81, 0x95, 0xde, 0xc9, 0x09, 0xf1, 0x3c, 0xcc, 0x1d, 0x7a, 0xa6, + 0x37, 0x72, 0xe5, 0x15, 0xf8, 0xbd, 0x06, 0x55, 0x39, 0x93, 0xb6, 0xd4, 0x97, 0x25, 0x12, 0x8f, + 0x79, 0x7e, 0x81, 0x74, 0x0d, 0xf2, 0xed, 0xd3, 0xc3, 0xde, 0xa7, 0xb2, 0xa1, 0x22, 0x46, 0x74, + 0xbe, 0xcf, 0x71, 0x78, 0x83, 0x50, 0x8c, 0x68, 0xee, 0xed, 0x98, 0x2f, 0xbc, 0x1d, 0xab, 0x4d, + 0x5e, 0xb1, 0x37, 0x6d, 0xce, 0x08, 0x26, 0x58, 0xba, 0x2c, 0x1a, 0x89, 0xac, 0x7e, 0x52, 0x1b, + 0x8b, 0x0b, 0x70, 0x65, 0x63, 0xe4, 0x75, 0x9b, 0x96, 0x79, 0xda, 0x97, 0x41, 0x00, 0x2f, 0x02, + 0xa2, 0x93, 0x5b, 0x3d, 0x57, 0x9d, 0x6d, 0xc2, 0x02, 0x9d, 0x25, 0x96, 0xd7, 0x6b, 0x29, 0x11, + 0x43, 0x86, 0x6d, 0x2d, 0x12, 0xb6, 0x4d, 0xd7, 0x7d, 0x69, 0x3b, 0x6d, 0xa1, 0x9a, 0x3f, 0xc6, + 0x5b, 0x9c, 0xf9, 0x73, 0x37, 0x14, 0x98, 0xbf, 0x2e, 0x97, 0xd5, 0x80, 0xcb, 0x53, 0xe2, 0x4d, + 0xe1, 0x82, 0x5f, 0x87, 0xab, 0x92, 0x52, 0xd4, 0xd0, 0x53, 0x88, 0x0f, 0xe0, 0xa6, 0x24, 0xde, + 0xec, 0xd2, 0x44, 0xef, 0x99, 0x00, 0xfc, 0x4f, 0xe5, 0x7c, 0x02, 0x75, 0x5f, 0x4e, 0x96, 0x83, + 0xd8, 0x7d, 0x55, 0x80, 0x91, 0x2b, 0xee, 0x4c, 0xc9, 0x60, 0xcf, 0x74, 0xce, 0xb1, 0xfb, 0xfe, + 0x4b, 0x90, 0x3e, 0xe3, 0x4d, 0x58, 0x92, 0x3c, 0x44, 0x76, 0x10, 0x66, 0x32, 0x21, 0x50, 0x1c, + 0x13, 0x61, 0x30, 0xba, 0x75, 0xba, 0xd9, 0x55, 0xca, 0xb0, 0x69, 0x19, 0x4f, 0x4d, 0xe1, 0x79, + 0x95, 0xdf, 0x08, 0x2a, 0x98, 0x1a, 0xb4, 0xc5, 0x34, 0x65, 0xa0, 0x4e, 0x8b, 0x83, 0xa0, 0xd3, + 0x13, 0x07, 0x31, 0xc1, 0xfa, 0x63, 0x58, 0xf6, 0x85, 0xa0, 0x76, 0x7b, 0x46, 0x9c, 0x41, 0xcf, + 0x75, 0x95, 0x22, 0x30, 0x4e, 0xf1, 0xfb, 0x90, 0x1b, 0x12, 0x11, 0x53, 0xca, 0xeb, 0x68, 0x8d, + 0xb7, 0xfb, 0xd7, 0x94, 0xcd, 0x6c, 0x1d, 0xb7, 0xe1, 0x96, 0xe4, 0xce, 0x2d, 0x1a, 0xcb, 0x3e, + 0x2a, 0x94, 0x2c, 0x10, 0xb8, 0x59, 0x27, 0x0b, 0x84, 0x2c, 0x3f, 0x7b, 0x59, 0x20, 0xd0, 0x77, + 0x85, 0xea, 0x5b, 0xa9, 0xde, 0x15, 0xbb, 0xdc, 0xa6, 0xbe, 0x4b, 0xa6, 0x62, 0x76, 0x0a, 0x8b, + 0x61, 0x4f, 0x4e, 0x15, 0xc6, 0x16, 0x61, 0xd6, 0xb3, 0xcf, 0x88, 0x0c, 0x62, 0x7c, 0x20, 0x05, + 0xf6, 0xdd, 0x3c, 0x95, 0xc0, 0x66, 0xc0, 0x8c, 0x5d, 0xc9, 0xb4, 0xf2, 0xd2, 0xd3, 0x94, 0xf9, + 0x0c, 0x1f, 0xe0, 0x7d, 0xb8, 0x16, 0x0d, 0x13, 0xa9, 0x44, 0x3e, 0xe6, 0x17, 0x38, 0x2e, 0x92, + 0xa4, 0xe2, 0xfb, 0x41, 0x10, 0x0c, 0x94, 0x80, 0x92, 0x8a, 0xa5, 0x01, 0x7a, 0x5c, 0x7c, 0xf9, + 0x6f, 0xdc, 0x57, 0x3f, 0xdc, 0xa4, 0x62, 0xe6, 0x06, 0xcc, 0xd2, 0x1f, 0x7f, 0x10, 0x23, 0xb2, + 0x53, 0x63, 0x84, 0x70, 0x92, 0x20, 0x8a, 0x7d, 0x03, 0x97, 0x4e, 0x60, 0x04, 0x01, 0x34, 0x2d, + 0x06, 0x7d, 0x87, 0xf8, 0x18, 0x6c, 0x20, 0x2f, 0xb6, 0x1a, 0x76, 0x53, 0x1d, 0xc6, 0x87, 0x41, + 0xec, 0x9c, 0x88, 0xcc, 0xa9, 0x18, 0x7f, 0x04, 0x2b, 0xc9, 0x41, 0x39, 0x0d, 0xe7, 0x47, 0x18, + 0x4a, 0x7e, 0x42, 0xa9, 0x7c, 0xde, 0x2b, 0x43, 0x61, 0xff, 0xe0, 0xf0, 0xd9, 0xc6, 0x66, 0xb3, + 0xa6, 0xad, 0xff, 0x33, 0x0b, 0x99, 0xdd, 0x63, 0xf4, 0x5d, 0x98, 0xe5, 0xcd, 0xff, 0x29, 0xdf, + 0x46, 0xf4, 0x69, 0x9f, 0x11, 0xf0, 0x8d, 0xcf, 0xfe, 0xf8, 0x97, 0x2f, 0x32, 0xd7, 0xf0, 0x95, + 0xc6, 0xf8, 0x1d, 0xb3, 0x3f, 0xec, 0x9a, 0x8d, 0xb3, 0x71, 0x83, 0xbd, 0x13, 0x1e, 0x6b, 0x8f, + 0xd0, 0x31, 0x64, 0x9f, 0x8d, 0x3c, 0x94, 0xf8, 0xe1, 0x44, 0x4f, 0xfe, 0xbc, 0x80, 0x75, 0xc6, + 0x79, 0x11, 0xcf, 0xab, 0x9c, 0x87, 0x23, 0x8f, 0xf2, 0x1d, 0x43, 0x59, 0xf9, 0x42, 0x80, 0x2e, + 0xfc, 0xa4, 0xa2, 0x5f, 0xfc, 0xf5, 0x01, 0x63, 0x86, 0x77, 0x03, 0xbf, 0xa6, 0xe2, 0xf1, 0x0f, + 0x19, 0xaa, 0x3e, 0x47, 0xaf, 0xac, 0xa8, 0x3e, 0x41, 0xcf, 0x3b, 0xaa, 0x8f, 0xd2, 0x67, 0x8e, + 0xd7, 0xc7, 0x7b, 0x65, 0x51, 0xbe, 0xb6, 0xf8, 0xaa, 0xd1, 0xf2, 0xd0, 0xad, 0x98, 0x26, 0xb9, + 0xda, 0x0e, 0xd6, 0x57, 0x92, 0x09, 0x04, 0xd2, 0x6d, 0x86, 0x74, 0x1d, 0x5f, 0x53, 0x91, 0x5a, + 0x3e, 0xdd, 0x63, 0xed, 0xd1, 0x7a, 0x17, 0x66, 0x59, 0x2f, 0x0d, 0x9d, 0xc8, 0x07, 0x3d, 0xa6, + 0xd3, 0x98, 0x70, 0x03, 0x42, 0x5d, 0x38, 0xbc, 0xc4, 0xd0, 0x16, 0x70, 0xd5, 0x47, 0x63, 0xed, + 0xb4, 0xc7, 0xda, 0xa3, 0x55, 0xed, 0x2d, 0x6d, 0xfd, 0x1f, 0x19, 0x98, 0x65, 0x4d, 0x17, 0x34, + 0x04, 0x08, 0xba, 0x53, 0x51, 0x3d, 0x27, 0xfa, 0x5d, 0x51, 0x3d, 0x27, 0x1b, 0x5b, 0xf8, 0x16, + 0x43, 0x5e, 0xc2, 0x8b, 0x3e, 0x32, 0xfb, 0x12, 0xdb, 0xe8, 0x50, 0x2a, 0x6a, 0xd6, 0x97, 0x50, + 0x56, 0xba, 0x4c, 0x28, 0x8e, 0x63, 0xa8, 0x4d, 0x15, 0xbd, 0x26, 0x31, 0x2d, 0x2a, 0x7c, 0x87, + 0x81, 0xde, 0xc4, 0x75, 0xd5, 0xb8, 0x1c, 0xd7, 0x61, 0x94, 0x14, 0xf8, 0x47, 0x1a, 0x54, 0xc3, + 0x9d, 0x26, 0x74, 0x27, 0x86, 0x75, 0xb4, 0x61, 0xa5, 0xdf, 0x9d, 0x4e, 0x94, 0x28, 0x02, 0xc7, + 0x3f, 0x23, 0x64, 0x68, 0x52, 0x4a, 0x69, 0xfb, 0x7f, 0x65, 0xa1, 0xb0, 0xc9, 0x7f, 0xab, 0x81, + 0x3c, 0x28, 0xf9, 0xfd, 0x1e, 0xb4, 0x1c, 0xd7, 0x0b, 0x08, 0x12, 0x65, 0xfd, 0x56, 0xe2, 0xba, + 0x10, 0xe1, 0x3e, 0x13, 0x61, 0x05, 0x5f, 0xf7, 0x45, 0x10, 0xbf, 0x09, 0x69, 0xf0, 0x92, 0xb7, + 0x61, 0xb6, 0xdb, 0xd4, 0x10, 0x3f, 0xd4, 0xa0, 0xa2, 0xb6, 0x71, 0xd0, 0xed, 0xd8, 0x2e, 0x84, + 0xda, 0x09, 0xd2, 0xf1, 0x34, 0x12, 0x81, 0xff, 0x90, 0xe1, 0xdf, 0xc1, 0xcb, 0x49, 0xf8, 0x0e, + 0xa3, 0x0f, 0x8b, 0xc0, 0x1b, 0x37, 0xf1, 0x22, 0x84, 0xfa, 0x42, 0xf1, 0x22, 0x84, 0xfb, 0x3e, + 0x17, 0x8b, 0x30, 0x62, 0xf4, 0x54, 0x84, 0x57, 0x00, 0x41, 0x5f, 0x07, 0xc5, 0x1a, 0x57, 0x29, + 0x1d, 0xa2, 0x37, 0x7f, 0xb2, 0x25, 0x84, 0x1f, 0x30, 0xec, 0xdb, 0xf8, 0x46, 0x12, 0x76, 0xbf, + 0xe7, 0x52, 0x0f, 0x58, 0xff, 0x6d, 0x0e, 0xca, 0xef, 0x9b, 0x3d, 0xcb, 0x23, 0x96, 0x69, 0xb5, + 0x08, 0xea, 0xc0, 0x2c, 0x7b, 0x37, 0x44, 0xdd, 0x5d, 0x6d, 0xb6, 0x44, 0xdd, 0x3d, 0xd4, 0x89, + 0xc0, 0xf7, 0x18, 0xf4, 0x2d, 0xac, 0xfb, 0xd0, 0x83, 0x80, 0x7f, 0x83, 0x75, 0x11, 0xa8, 0xca, + 0x67, 0x90, 0xe7, 0x5d, 0x03, 0x14, 0xe1, 0x16, 0xea, 0x2e, 0xe8, 0x37, 0xe2, 0x17, 0x13, 0x6f, + 0x99, 0x8a, 0xe5, 0x32, 0x62, 0x0a, 0xf6, 0x3d, 0x80, 0xa0, 0x4d, 0x15, 0xb5, 0xef, 0x44, 0x57, + 0x4b, 0x5f, 0x49, 0x26, 0x10, 0xc0, 0x8f, 0x18, 0xf0, 0x5d, 0x7c, 0x2b, 0x16, 0xb8, 0xed, 0x6f, + 0xa0, 0xe0, 0x2d, 0xc8, 0x6d, 0x9b, 0x6e, 0x17, 0x45, 0x42, 0xbf, 0xf2, 0xb9, 0x4c, 0xd7, 0xe3, + 0x96, 0x04, 0xd4, 0x5d, 0x06, 0xb5, 0x8c, 0x97, 0x62, 0xa1, 0xba, 0xa6, 0x4b, 0x23, 0x29, 0x1a, + 0x41, 0x51, 0x7e, 0x02, 0x43, 0x37, 0x23, 0x36, 0x0b, 0x7f, 0x2e, 0xd3, 0x97, 0x93, 0x96, 0x05, + 0xe0, 0x2a, 0x03, 0xc4, 0xf8, 0x66, 0xbc, 0x51, 0x05, 0xf9, 0x63, 0xed, 0xd1, 0x5b, 0xda, 0xfa, + 0x4f, 0x6a, 0x90, 0xa3, 0x59, 0x0a, 0x8d, 0xdd, 0x41, 0x71, 0x17, 0xb5, 0xf0, 0x44, 0x4b, 0x25, + 0x6a, 0xe1, 0xc9, 0xba, 0x30, 0x26, 0x76, 0xb3, 0x5f, 0xac, 0x11, 0x46, 0x45, 0x35, 0xf6, 0xa0, + 0xac, 0x94, 0x80, 0x28, 0x86, 0x63, 0xb8, 0x61, 0x13, 0x8d, 0xdd, 0x31, 0xf5, 0x23, 0x5e, 0x61, + 0xa0, 0x3a, 0xbe, 0x1a, 0x06, 0x6d, 0x73, 0x32, 0x8a, 0xfa, 0x7d, 0xa8, 0xa8, 0xb5, 0x22, 0x8a, + 0x61, 0x1a, 0xe9, 0x08, 0x45, 0x63, 0x45, 0x5c, 0xa9, 0x19, 0xe3, 0x34, 0xfe, 0xef, 0xf3, 0x24, + 0x2d, 0x45, 0xff, 0x04, 0x0a, 0xa2, 0x82, 0x8c, 0xd3, 0x37, 0xdc, 0x43, 0x8a, 0xd3, 0x37, 0x52, + 0x7e, 0xc6, 0x24, 0x02, 0x0c, 0x96, 0x66, 0xca, 0x32, 0x40, 0x0b, 0xc8, 0xa7, 0xc4, 0x4b, 0x82, + 0x0c, 0xba, 0x22, 0x49, 0x90, 0x4a, 0x95, 0x32, 0x15, 0xb2, 0x43, 0x3c, 0x71, 0x97, 0x65, 0x09, + 0x80, 0x12, 0x38, 0xaa, 0xd1, 0x10, 0x4f, 0x23, 0x49, 0xcc, 0xdd, 0x02, 0x54, 0x11, 0x0a, 0xd1, + 0x0f, 0x00, 0x82, 0x72, 0x37, 0xfa, 0x3a, 0x8e, 0xed, 0x99, 0x45, 0x5f, 0xc7, 0xf1, 0x15, 0x73, + 0x8c, 0x07, 0x07, 0xe0, 0x3c, 0x7f, 0xa4, 0xf0, 0x3f, 0xd3, 0x00, 0x4d, 0x96, 0xc7, 0xe8, 0xf5, + 0x78, 0x88, 0xd8, 0x76, 0x9c, 0xfe, 0xc6, 0xe5, 0x88, 0x13, 0xa3, 0x67, 0x20, 0x57, 0x8b, 0x6d, + 0x19, 0xbe, 0xa4, 0x92, 0x7d, 0xae, 0xc1, 0x5c, 0xa8, 0xc0, 0x46, 0xf7, 0x13, 0xce, 0x39, 0xd2, + 0xd2, 0xd3, 0x1f, 0x5c, 0x48, 0x97, 0x98, 0xb1, 0x28, 0xb7, 0x42, 0x66, 0x6b, 0x3f, 0xd6, 0xa0, + 0x1a, 0xae, 0xca, 0x51, 0x02, 0xc0, 0x44, 0x5f, 0x50, 0x5f, 0xbd, 0x98, 0xf0, 0x12, 0xa7, 0x15, + 0x24, 0x70, 0x9f, 0x40, 0x41, 0x14, 0xf3, 0x71, 0x6e, 0x11, 0x6e, 0x2b, 0xc6, 0xb9, 0x45, 0xa4, + 0x13, 0x90, 0xe4, 0x16, 0xb4, 0x2e, 0x56, 0x3c, 0x51, 0x94, 0xfc, 0x49, 0x90, 0xd3, 0x3d, 0x31, + 0xd2, 0x2f, 0x98, 0x0a, 0x19, 0x78, 0xa2, 0x2c, 0xf8, 0x51, 0x02, 0xc7, 0x0b, 0x3c, 0x31, 0xda, + 0x2f, 0x48, 0xf2, 0x44, 0x86, 0xaa, 0x78, 0x62, 0x50, 0x9f, 0xc7, 0x79, 0xe2, 0x44, 0xd3, 0x34, + 0xce, 0x13, 0x27, 0x4b, 0xfc, 0xa4, 0xb3, 0x65, 0xe0, 0x21, 0x4f, 0x5c, 0x88, 0xa9, 0xe7, 0xd1, + 0x1b, 0x09, 0x36, 0x8d, 0x6d, 0xc8, 0xea, 0x6f, 0x5e, 0x92, 0x7a, 0xba, 0x07, 0xf0, 0xd3, 0x90, + 0x1e, 0xf0, 0x2b, 0x0d, 0x16, 0xe3, 0x1a, 0x02, 0x28, 0x01, 0x2c, 0xa1, 0x9b, 0xab, 0xaf, 0x5d, + 0x96, 0xfc, 0x12, 0x76, 0xf3, 0x7d, 0xe2, 0x49, 0xed, 0x77, 0x5f, 0x2d, 0x6b, 0x5f, 0x7e, 0xb5, + 0xac, 0xfd, 0xe9, 0xab, 0x65, 0xed, 0xe7, 0x7f, 0x5e, 0x9e, 0x39, 0xcd, 0xb3, 0x9f, 0x8d, 0xbf, + 0xf3, 0xef, 0x00, 0x00, 0x00, 0xff, 0xff, 0xaa, 0x65, 0xab, 0x8d, 0xbd, 0x2e, 0x00, 0x00, } diff --git a/etcdserver/etcdserverpb/rpc.proto b/etcdserver/etcdserverpb/rpc.proto index 04f08cb56..a15bfd603 100644 --- a/etcdserver/etcdserverpb/rpc.proto +++ b/etcdserver/etcdserverpb/rpc.proto @@ -396,10 +396,16 @@ message PutRequest { // lease is the lease ID to associate with the key in the key-value store. A lease // value of 0 indicates no lease. int64 lease = 3; + + // If prev_kv is set, etcd gets the previous key-value pair before changing it. + // The previous key-value pair will be returned in the put response. + bool prev_kv = 4; } message PutResponse { ResponseHeader header = 1; + // if prev_kv is set in the request, the previous key-value pair will be returned. + mvccpb.KeyValue prev_kv = 2; } message DeleteRangeRequest { @@ -409,12 +415,17 @@ message DeleteRangeRequest { // If range_end is not given, the range is defined to contain only the key argument. // If range_end is '\0', the range is all keys greater than or equal to the key argument. bytes range_end = 2; + // If prev_kv is set, etcd gets the previous key-value pairs before deleting it. + // The previous key-value pairs will be returned in the delte response. + bool prev_kv = 3; } message DeleteRangeResponse { ResponseHeader header = 1; // deleted is the number of keys deleted by the delete range request. int64 deleted = 2; + // if prev_kv is set in the request, the previous key-value pairs will be returned. + repeated mvccpb.KeyValue prev_kvs = 3; } message RequestOp { diff --git a/lease/leasepb/lease.pb.go b/lease/leasepb/lease.pb.go index 62115a3c9..dde5f286e 100644 --- a/lease/leasepb/lease.pb.go +++ b/lease/leasepb/lease.pb.go @@ -19,9 +19,9 @@ import ( proto "github.com/golang/protobuf/proto" math "math" -) -import io "io" + io "io" +) // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal diff --git a/mvcc/mvccpb/kv.pb.go b/mvcc/mvccpb/kv.pb.go index 2ab97270c..5f463a2cc 100644 --- a/mvcc/mvccpb/kv.pb.go +++ b/mvcc/mvccpb/kv.pb.go @@ -20,9 +20,9 @@ import ( proto "github.com/golang/protobuf/proto" math "math" -) -import io "io" + io "io" +) // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal diff --git a/raft/raftpb/raft.pb.go b/raft/raftpb/raft.pb.go index 6199ee816..664b5b828 100644 --- a/raft/raftpb/raft.pb.go +++ b/raft/raftpb/raft.pb.go @@ -25,9 +25,9 @@ import ( proto "github.com/golang/protobuf/proto" math "math" -) -import io "io" + io "io" +) // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal diff --git a/snap/snappb/snap.pb.go b/snap/snappb/snap.pb.go index 11c86dfea..f9ef5077d 100644 --- a/snap/snappb/snap.pb.go +++ b/snap/snappb/snap.pb.go @@ -19,9 +19,9 @@ import ( proto "github.com/golang/protobuf/proto" math "math" -) -import io "io" + io "io" +) // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal diff --git a/wal/walpb/record.pb.go b/wal/walpb/record.pb.go index bc715a818..0e86f363e 100644 --- a/wal/walpb/record.pb.go +++ b/wal/walpb/record.pb.go @@ -20,9 +20,9 @@ import ( proto "github.com/golang/protobuf/proto" math "math" -) -import io "io" + io "io" +) // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal