diff --git a/CHANGELOG.md b/CHANGELOG.md index 01106b5f3..492865e48 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## v0.2.6-hf.1 +This is a hotfix version to enable the chain to emit deposit events for user accounts and add local virtual group id for related events. + +Chores: +* [#489](https://github.com/bnb-chain/greenfield/pull/489) chore: add deposit event for user account +* [#490](https://github.com/bnb-chain/greenfield/pull/490) chore: add lvg id to related events + ## v0.2.6 This is a maintenance release to update the cosmos-sdk dependency to the latest version. diff --git a/proto/greenfield/storage/events.proto b/proto/greenfield/storage/events.proto index 6ab8a40bd..ebe222532 100644 --- a/proto/greenfield/storage/events.proto +++ b/proto/greenfield/storage/events.proto @@ -135,6 +135,8 @@ message EventCreateObject { SourceType source_type = 15; // checksums define the total checksums of the object which generated by redundancy repeated bytes checksums = 16; + // local_virtual_group_id defines the unique id of lvg which the object stored + uint32 local_virtual_group_id = 17; } // EventCancelCreateObject is emitted on MsgCancelCreateObject @@ -201,6 +203,8 @@ message EventCopyObject { (gogoproto.customtype) = "Uint", (gogoproto.nullable) = false ]; + // local_virtual_group_id defines the unique id of lvg which the object stored + uint32 local_virtual_group_id = 8; } // EventDeleteObject is emitted on MsgDeleteObject diff --git a/x/payment/keeper/stream_record.go b/x/payment/keeper/stream_record.go index 6c7771222..2956f7c97 100644 --- a/x/payment/keeper/stream_record.go +++ b/x/payment/keeper/stream_record.go @@ -186,6 +186,12 @@ func (k Keeper) UpdateStreamRecord(ctx sdk.Context, streamRecord *types.StreamRe ctx.Logger().Info("auto transfer failed", "account", streamRecord.Account, "err", err, "coins", coins) } else { streamRecord.StaticBalance = sdkmath.ZeroInt() + // emit event for self deposit of owner account + _ = ctx.EventManager().EmitTypedEvents(&types.EventDeposit{ + From: account.String(), + To: account.String(), + Amount: coins.AmountOf(params.FeeDenom), + }) } } } diff --git a/x/storage/keeper/keeper.go b/x/storage/keeper/keeper.go index 287898b87..cdcad3d5c 100644 --- a/x/storage/keeper/keeper.go +++ b/x/storage/keeper/keeper.go @@ -637,21 +637,22 @@ func (k Keeper) CreateObject( store.Set(types.GetObjectByIDKey(objectInfo.Id), obz) if err = ctx.EventManager().EmitTypedEvents(&types.EventCreateObject{ - Creator: operator.String(), - Owner: objectInfo.Owner, - BucketName: bucketInfo.BucketName, - ObjectName: objectInfo.ObjectName, - BucketId: bucketInfo.Id, - ObjectId: objectInfo.Id, - CreateAt: objectInfo.CreateAt, - PayloadSize: objectInfo.PayloadSize, - Visibility: objectInfo.Visibility, - PrimarySpId: sp.Id, - ContentType: objectInfo.ContentType, - Status: objectInfo.ObjectStatus, - RedundancyType: objectInfo.RedundancyType, - SourceType: objectInfo.SourceType, - Checksums: objectInfo.Checksums, + Creator: operator.String(), + Owner: objectInfo.Owner, + BucketName: bucketInfo.BucketName, + ObjectName: objectInfo.ObjectName, + BucketId: bucketInfo.Id, + ObjectId: objectInfo.Id, + CreateAt: objectInfo.CreateAt, + PayloadSize: objectInfo.PayloadSize, + Visibility: objectInfo.Visibility, + PrimarySpId: sp.Id, + ContentType: objectInfo.ContentType, + Status: objectInfo.ObjectStatus, + RedundancyType: objectInfo.RedundancyType, + SourceType: objectInfo.SourceType, + Checksums: objectInfo.Checksums, + LocalVirtualGroupId: objectInfo.LocalVirtualGroupId, }); err != nil { return objectInfo.Id, err } @@ -1071,13 +1072,14 @@ func (k Keeper) CopyObject( store.Set(types.GetObjectByIDKey(objectInfo.Id), obz) if err := ctx.EventManager().EmitTypedEvents(&types.EventCopyObject{ - Operator: operator.String(), - SrcBucketName: srcObjectInfo.BucketName, - SrcObjectName: srcObjectInfo.ObjectName, - DstBucketName: objectInfo.BucketName, - DstObjectName: objectInfo.ObjectName, - SrcObjectId: srcObjectInfo.Id, - DstObjectId: objectInfo.Id, + Operator: operator.String(), + SrcBucketName: srcObjectInfo.BucketName, + SrcObjectName: srcObjectInfo.ObjectName, + DstBucketName: objectInfo.BucketName, + DstObjectName: objectInfo.ObjectName, + SrcObjectId: srcObjectInfo.Id, + DstObjectId: objectInfo.Id, + LocalVirtualGroupId: objectInfo.LocalVirtualGroupId, }); err != nil { return sdkmath.ZeroUint(), err } diff --git a/x/storage/types/events.pb.go b/x/storage/types/events.pb.go index 118921cc1..b0837df3f 100644 --- a/x/storage/types/events.pb.go +++ b/x/storage/types/events.pb.go @@ -423,6 +423,8 @@ type EventCreateObject struct { SourceType SourceType `protobuf:"varint,15,opt,name=source_type,json=sourceType,proto3,enum=greenfield.storage.SourceType" json:"source_type,omitempty"` // checksums define the total checksums of the object which generated by redundancy Checksums [][]byte `protobuf:"bytes,16,rep,name=checksums,proto3" json:"checksums,omitempty"` + // local_virtual_group_id defines the unique id of lvg which the object stored + LocalVirtualGroupId uint32 `protobuf:"varint,17,opt,name=local_virtual_group_id,json=localVirtualGroupId,proto3" json:"local_virtual_group_id,omitempty"` } func (m *EventCreateObject) Reset() { *m = EventCreateObject{} } @@ -549,6 +551,13 @@ func (m *EventCreateObject) GetChecksums() [][]byte { return nil } +func (m *EventCreateObject) GetLocalVirtualGroupId() uint32 { + if m != nil { + return m.LocalVirtualGroupId + } + return 0 +} + // EventCancelCreateObject is emitted on MsgCancelCreateObject type EventCancelCreateObject struct { // operator define the account address of operator who cancel create object @@ -733,6 +742,8 @@ type EventCopyObject struct { SrcObjectId Uint `protobuf:"bytes,6,opt,name=src_object_id,json=srcObjectId,proto3,customtype=Uint" json:"src_object_id"` // dst_object_id define the u256 id for dst object DstObjectId Uint `protobuf:"bytes,7,opt,name=dst_object_id,json=dstObjectId,proto3,customtype=Uint" json:"dst_object_id"` + // local_virtual_group_id defines the unique id of lvg which the object stored + LocalVirtualGroupId uint32 `protobuf:"varint,8,opt,name=local_virtual_group_id,json=localVirtualGroupId,proto3" json:"local_virtual_group_id,omitempty"` } func (m *EventCopyObject) Reset() { *m = EventCopyObject{} } @@ -803,6 +814,13 @@ func (m *EventCopyObject) GetDstObjectName() string { return "" } +func (m *EventCopyObject) GetLocalVirtualGroupId() uint32 { + if m != nil { + return m.LocalVirtualGroupId + } + return 0 +} + // EventDeleteObject is emitted on MsgDeleteObject type EventDeleteObject struct { // operator define the account address of operator who delete the object @@ -2279,109 +2297,110 @@ func init() { func init() { proto.RegisterFile("greenfield/storage/events.proto", fileDescriptor_946dcba4f763ddc4) } var fileDescriptor_946dcba4f763ddc4 = []byte{ - // 1629 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xdc, 0x59, 0xcd, 0x8f, 0xdb, 0xc4, - 0x1b, 0x5e, 0x27, 0x4e, 0x76, 0x77, 0xb2, 0x49, 0xba, 0xfe, 0xed, 0xaf, 0x0d, 0xdb, 0x92, 0x4d, - 0x7d, 0x28, 0x5b, 0x44, 0x13, 0xb4, 0x05, 0xd4, 0x5b, 0xb5, 0x1f, 0x05, 0x45, 0xd0, 0x0f, 0xbc, - 0x6d, 0x0f, 0x5c, 0xac, 0x89, 0x3d, 0x9b, 0x35, 0xb5, 0x3d, 0xc6, 0x33, 0xd9, 0x36, 0xfd, 0x07, - 0x38, 0x21, 0xf5, 0x82, 0x04, 0x17, 0xce, 0x48, 0x08, 0x89, 0x43, 0xaf, 0xdc, 0xcb, 0xad, 0x94, - 0x0b, 0x1f, 0x52, 0x41, 0xed, 0xa9, 0x48, 0x08, 0xce, 0x9c, 0x90, 0x67, 0xc6, 0x8e, 0x1d, 0x67, - 0x9b, 0x75, 0xca, 0x76, 0xb7, 0xdc, 0xe2, 0xc9, 0x33, 0xe3, 0xf7, 0xe3, 0x99, 0xe7, 0x7d, 0x67, - 0x0c, 0x96, 0xba, 0x3e, 0x42, 0xee, 0x96, 0x85, 0x6c, 0xb3, 0x45, 0x28, 0xf6, 0x61, 0x17, 0xb5, - 0xd0, 0x0e, 0x72, 0x29, 0x69, 0x7a, 0x3e, 0xa6, 0x58, 0x51, 0x06, 0x80, 0xa6, 0x00, 0x2c, 0xbe, - 0x64, 0x60, 0xe2, 0x60, 0xa2, 0x33, 0x44, 0x8b, 0x3f, 0x70, 0xf8, 0xe2, 0x42, 0x17, 0x77, 0x31, - 0x1f, 0x0f, 0x7e, 0x89, 0xd1, 0xa5, 0x2e, 0xc6, 0x5d, 0x1b, 0xb5, 0xd8, 0x53, 0xa7, 0xb7, 0xd5, - 0xa2, 0x96, 0x83, 0x08, 0x85, 0x8e, 0x17, 0x01, 0xd2, 0x66, 0x18, 0xd8, 0x71, 0xb0, 0x2b, 0x00, - 0xf5, 0x11, 0x00, 0xda, 0xf7, 0x90, 0x78, 0xaf, 0xfa, 0x83, 0x0c, 0xe6, 0x2f, 0x04, 0x76, 0xaf, - 0xfb, 0x08, 0x52, 0xb4, 0xd6, 0x33, 0x6e, 0x20, 0xaa, 0x34, 0x41, 0x01, 0xdf, 0x74, 0x91, 0x5f, - 0x93, 0x1a, 0xd2, 0xf2, 0xec, 0x5a, 0xed, 0xc1, 0xdd, 0x33, 0x0b, 0xc2, 0xdc, 0x55, 0xd3, 0xf4, - 0x11, 0x21, 0x9b, 0xd4, 0xb7, 0xdc, 0xae, 0xc6, 0x61, 0xca, 0x12, 0x28, 0x75, 0xd8, 0x4c, 0xdd, - 0x85, 0x0e, 0xaa, 0xe5, 0x82, 0x59, 0x1a, 0xe0, 0x43, 0x97, 0xa0, 0x83, 0x94, 0x35, 0x00, 0x76, - 0x2c, 0x62, 0x75, 0x2c, 0xdb, 0xa2, 0xfd, 0x5a, 0xbe, 0x21, 0x2d, 0x57, 0x56, 0xd4, 0x66, 0x3a, - 0x44, 0xcd, 0xeb, 0x11, 0xea, 0x6a, 0xdf, 0x43, 0x5a, 0x6c, 0x96, 0x72, 0x1c, 0xcc, 0x1a, 0xcc, - 0x48, 0x1d, 0xd2, 0x9a, 0xdc, 0x90, 0x96, 0xf3, 0xda, 0x0c, 0x1f, 0x58, 0xa5, 0xca, 0x39, 0x30, - 0x2b, 0x2c, 0xb0, 0xcc, 0x5a, 0x81, 0x59, 0x7d, 0xfc, 0xde, 0xc3, 0xa5, 0xa9, 0x9f, 0x1f, 0x2e, - 0xc9, 0xd7, 0x2c, 0x97, 0x3e, 0xb8, 0x7b, 0xa6, 0x24, 0x3c, 0x08, 0x1e, 0xb5, 0x19, 0x8e, 0x6e, - 0x9b, 0xca, 0x79, 0x50, 0x22, 0xb8, 0xe7, 0x1b, 0x48, 0x0f, 0xe2, 0x52, 0x2b, 0x32, 0xdb, 0xea, - 0xa3, 0x6c, 0xdb, 0x64, 0x30, 0x6e, 0x17, 0x89, 0x7e, 0x2b, 0xaf, 0x01, 0xc5, 0xd8, 0x86, 0x7e, - 0x17, 0x99, 0xba, 0x8f, 0xa0, 0xa9, 0x7f, 0xd4, 0xc3, 0x14, 0xd6, 0xa6, 0x1b, 0xd2, 0xb2, 0xac, - 0x1d, 0x11, 0xff, 0x68, 0x08, 0x9a, 0xef, 0x07, 0xe3, 0xca, 0x2a, 0xa8, 0x7a, 0xb0, 0xef, 0x20, - 0x97, 0xea, 0x90, 0x87, 0xb2, 0x36, 0x33, 0x26, 0xc8, 0x15, 0x31, 0x41, 0x8c, 0x2a, 0x2a, 0x28, - 0x7b, 0xbe, 0xe5, 0x40, 0xbf, 0xaf, 0x13, 0x2f, 0xf0, 0x77, 0xb6, 0x21, 0x2d, 0x97, 0xb5, 0x92, - 0x18, 0xdc, 0xf4, 0xda, 0xa6, 0xb2, 0x06, 0xea, 0x5d, 0x1b, 0x77, 0xa0, 0xad, 0xef, 0x58, 0x3e, - 0xed, 0x41, 0x5b, 0xef, 0xfa, 0xb8, 0xe7, 0xe9, 0x5b, 0xd0, 0xb1, 0xec, 0x7e, 0x30, 0x09, 0xb0, - 0x49, 0x8b, 0x1c, 0x75, 0x9d, 0x83, 0xde, 0x09, 0x30, 0x6f, 0x33, 0x48, 0xdb, 0x54, 0xce, 0x81, - 0x22, 0xa1, 0x90, 0xf6, 0x48, 0xad, 0xc4, 0x82, 0xd2, 0x18, 0x15, 0x14, 0xce, 0x98, 0x4d, 0x86, - 0xd3, 0x04, 0x5e, 0xfd, 0x2c, 0x27, 0x58, 0xb5, 0x81, 0x6c, 0x14, 0xb1, 0xea, 0x0d, 0x30, 0x83, - 0x3d, 0xe4, 0x43, 0x8a, 0xc7, 0x13, 0x2b, 0x42, 0x0e, 0xb8, 0x98, 0x9b, 0x88, 0x8b, 0xf9, 0x14, - 0x17, 0x13, 0x54, 0x91, 0xb3, 0x50, 0x65, 0x7c, 0x50, 0x0b, 0xe3, 0x82, 0xaa, 0x7e, 0x9c, 0x07, - 0xff, 0x67, 0xa1, 0xb9, 0xe6, 0x99, 0xd1, 0x86, 0x6b, 0xbb, 0x5b, 0x78, 0xc2, 0xf0, 0x8c, 0xdd, - 0x7a, 0x09, 0x77, 0xf3, 0x59, 0xdc, 0x1d, 0x4d, 0x6c, 0x79, 0x17, 0x62, 0xbf, 0x92, 0x26, 0x36, - 0xdb, 0x87, 0x29, 0xfa, 0x26, 0xb5, 0xa0, 0x38, 0x91, 0x16, 0x8c, 0xcf, 0xc4, 0xf4, 0xd8, 0x4c, - 0x7c, 0x29, 0x81, 0xa3, 0x9c, 0xa4, 0x16, 0x31, 0xb0, 0x4b, 0x2d, 0xb7, 0x17, 0x32, 0x35, 0x11, - 0x33, 0x29, 0x4b, 0xcc, 0xc6, 0xa6, 0xe3, 0x28, 0x28, 0xfa, 0x08, 0x12, 0xec, 0x0a, 0x66, 0x8a, - 0xa7, 0x40, 0xdd, 0x4c, 0xb6, 0x59, 0x62, 0xea, 0xc6, 0x07, 0x56, 0xa9, 0xfa, 0xb0, 0x90, 0x50, - 0xe9, 0xcb, 0x9d, 0x0f, 0x91, 0x41, 0x95, 0x15, 0x30, 0xcd, 0xf4, 0x6f, 0x0f, 0x7c, 0x09, 0x81, - 0xff, 0xfe, 0x6e, 0x5a, 0x02, 0x25, 0xcc, 0xcc, 0xe1, 0x00, 0x99, 0x03, 0xf8, 0x50, 0x9a, 0x7f, - 0xc5, 0x2c, 0xb1, 0x3c, 0x07, 0x66, 0xc5, 0xd2, 0x22, 0x9f, 0xe3, 0x66, 0x72, 0x74, 0xdb, 0x4c, - 0x2b, 0xe4, 0x4c, 0x5a, 0x21, 0x4f, 0x82, 0x39, 0x0f, 0xf6, 0x6d, 0x0c, 0x4d, 0x9d, 0x58, 0xb7, - 0x11, 0x13, 0x51, 0x59, 0x2b, 0x89, 0xb1, 0x4d, 0xeb, 0xf6, 0x70, 0xd5, 0x02, 0x13, 0x31, 0xf5, - 0x24, 0x98, 0x0b, 0xc8, 0x15, 0x6c, 0x0b, 0x56, 0x5f, 0x4a, 0x2c, 0x40, 0x25, 0x31, 0xc6, 0x0a, - 0x48, 0xa2, 0xb0, 0xcd, 0xa5, 0x0a, 0x5b, 0x28, 0xc2, 0xe5, 0xdd, 0x45, 0x98, 0x13, 0x22, 0x29, - 0xc2, 0xca, 0xbb, 0xa0, 0xea, 0x23, 0xb3, 0xe7, 0x9a, 0xd0, 0x35, 0xfa, 0xfc, 0xe5, 0x95, 0xdd, - 0x5d, 0xd0, 0x22, 0x28, 0x73, 0xa1, 0xe2, 0x27, 0x9e, 0x87, 0xab, 0x64, 0x35, 0x73, 0x95, 0x3c, - 0x01, 0x66, 0x8d, 0x6d, 0x64, 0xdc, 0x20, 0x3d, 0x87, 0xd4, 0x8e, 0x34, 0xf2, 0xcb, 0x73, 0xda, - 0x60, 0x40, 0xfd, 0x53, 0x02, 0xc7, 0x38, 0xc1, 0xa1, 0x6b, 0x20, 0x3b, 0x41, 0xf3, 0x7d, 0xd2, - 0xc5, 0x21, 0xe2, 0xe6, 0x53, 0xc4, 0x4d, 0x91, 0x48, 0x4e, 0x93, 0x28, 0x41, 0xd1, 0x62, 0x06, - 0x8a, 0xaa, 0x4f, 0x72, 0xa0, 0xca, 0x3c, 0xde, 0x44, 0xd0, 0x3e, 0x60, 0x4f, 0x13, 0x5e, 0x14, - 0xb2, 0x6c, 0xb4, 0x01, 0x3b, 0x8b, 0x19, 0xd9, 0xf9, 0x26, 0x38, 0x36, 0x52, 0xc1, 0x23, 0xe9, - 0x5e, 0x48, 0x4b, 0x77, 0xdb, 0x54, 0xce, 0x82, 0xa3, 0x36, 0x36, 0x46, 0xcd, 0xe2, 0x5b, 0xfc, - 0x7f, 0xec, 0xdf, 0xe4, 0xa4, 0x41, 0xac, 0xd7, 0xb1, 0xd7, 0x7f, 0xa6, 0x58, 0x9f, 0x02, 0x55, - 0xe2, 0x1b, 0x7a, 0x3a, 0xde, 0x65, 0xe2, 0x1b, 0x6b, 0x83, 0x90, 0x0b, 0x5c, 0x3a, 0xec, 0x01, - 0xee, 0xf2, 0x20, 0xf2, 0xa7, 0x40, 0xd5, 0x24, 0x34, 0xb1, 0x1e, 0x57, 0xd0, 0xb2, 0x49, 0x68, - 0x72, 0xbd, 0x00, 0x17, 0x5f, 0xaf, 0x10, 0xe1, 0x62, 0xeb, 0x9d, 0x07, 0xe5, 0xd8, 0x7b, 0xf7, - 0xc6, 0xc9, 0x52, 0x64, 0x12, 0xeb, 0x86, 0xcb, 0xb1, 0x17, 0xed, 0x4d, 0x77, 0x4b, 0x91, 0x0d, - 0x6d, 0x53, 0xfd, 0x5b, 0x4a, 0xb4, 0x7e, 0x87, 0x89, 0xd9, 0x72, 0x16, 0x66, 0xef, 0x4e, 0xb4, - 0xc2, 0xee, 0x44, 0xfb, 0x4e, 0x12, 0xcd, 0x9d, 0x86, 0x18, 0xe5, 0x0f, 0xd9, 0xd6, 0xce, 0x12, - 0x80, 0x91, 0xed, 0x91, 0x70, 0x66, 0xc8, 0x2c, 0x69, 0x54, 0xcf, 0x39, 0x78, 0x6b, 0x2e, 0x4b, - 0xd8, 0x27, 0x6a, 0x8f, 0x3e, 0xc9, 0x25, 0x7a, 0x6a, 0xc1, 0xc5, 0x7d, 0xec, 0xa9, 0xf7, 0x91, - 0x77, 0xc9, 0x9e, 0xa3, 0x30, 0x49, 0xcf, 0xa1, 0xfe, 0x25, 0x81, 0x23, 0xb1, 0x76, 0x91, 0xb1, - 0x33, 0xf3, 0x99, 0xfe, 0x65, 0x00, 0x38, 0xe5, 0x63, 0x31, 0x98, 0x65, 0x23, 0xcc, 0xc3, 0xb7, - 0xc0, 0x4c, 0xb4, 0x23, 0xf6, 0x70, 0xaa, 0x98, 0xee, 0x0a, 0x01, 0x1f, 0x6a, 0x24, 0xe4, 0xcc, - 0x8d, 0xc4, 0x02, 0x28, 0xa0, 0x5b, 0xd4, 0x87, 0x42, 0x00, 0xf9, 0x83, 0xfa, 0x79, 0xe8, 0x32, - 0x97, 0x9d, 0x21, 0x97, 0x73, 0x93, 0xb8, 0x9c, 0x7f, 0x9a, 0xcb, 0xf2, 0xde, 0x5d, 0x56, 0x7f, - 0x92, 0x44, 0xf9, 0x79, 0x0f, 0xc1, 0x1d, 0x61, 0xda, 0x79, 0x50, 0x71, 0x90, 0xd3, 0x41, 0x7e, - 0x74, 0x58, 0x1a, 0x97, 0x96, 0x32, 0xc7, 0x87, 0xa7, 0xa8, 0x43, 0xe2, 0xdb, 0x1f, 0x39, 0xa1, - 0x12, 0x7c, 0xeb, 0x31, 0xe7, 0x2e, 0x32, 0x43, 0x9f, 0xd3, 0x71, 0x7f, 0x7f, 0xfc, 0x52, 0xae, - 0x84, 0xf9, 0x21, 0x3a, 0xc5, 0x41, 0x8e, 0x6a, 0x85, 0x46, 0x7e, 0xb9, 0xb4, 0xf2, 0xea, 0x28, - 0xa6, 0xb2, 0x00, 0xc4, 0x5c, 0xdf, 0x40, 0x14, 0x5a, 0xb6, 0x36, 0x27, 0x56, 0xb8, 0x8a, 0x57, - 0x4d, 0x53, 0xd9, 0x00, 0xf3, 0xb1, 0x15, 0xb9, 0x76, 0xd5, 0x8a, 0x8d, 0xfc, 0x53, 0x9d, 0xac, - 0x46, 0x4b, 0x70, 0x5e, 0xab, 0xbf, 0xe4, 0xa2, 0x0a, 0xe3, 0xa2, 0x9b, 0xff, 0x99, 0x70, 0x0f, - 0xa9, 0x42, 0x21, 0xb3, 0x2a, 0x6c, 0x80, 0x69, 0x11, 0x2a, 0x16, 0xd3, 0x6c, 0x89, 0x0a, 0xa7, - 0xaa, 0x9f, 0x86, 0x35, 0x2f, 0x85, 0x51, 0x5e, 0x07, 0x45, 0x8e, 0x1a, 0x1b, 0x5c, 0x81, 0x53, - 0xda, 0xa0, 0x8a, 0x6e, 0x79, 0x96, 0x0f, 0xa9, 0x85, 0x5d, 0x9d, 0x5a, 0x42, 0x45, 0x4b, 0x2b, - 0x8b, 0x4d, 0x7e, 0xad, 0xdb, 0x0c, 0xaf, 0x75, 0x9b, 0x57, 0xc3, 0x6b, 0xdd, 0x35, 0xf9, 0xce, - 0xaf, 0x4b, 0x92, 0x56, 0x19, 0x4c, 0x0c, 0xfe, 0x52, 0x7f, 0x97, 0x12, 0x05, 0x8e, 0x59, 0x77, - 0x21, 0xd0, 0xbd, 0x17, 0x3b, 0xeb, 0xa3, 0xa5, 0xfc, 0x5e, 0xd8, 0x41, 0x5e, 0xb4, 0x7c, 0x1f, - 0xfb, 0xcf, 0x74, 0x79, 0x98, 0xed, 0x76, 0x2c, 0xd3, 0x65, 0xa0, 0x0a, 0xca, 0x26, 0x22, 0x54, - 0x37, 0xb6, 0xa1, 0xe5, 0x0e, 0xfa, 0xc2, 0x52, 0x30, 0xb8, 0x1e, 0x8c, 0xb5, 0x4d, 0xf5, 0x9b, - 0xf0, 0x58, 0x1b, 0x77, 0x45, 0x43, 0xa4, 0x67, 0xd3, 0xa0, 0xd3, 0x11, 0x47, 0x27, 0x89, 0x4d, - 0x0c, 0x0f, 0x46, 0x07, 0x6c, 0xf2, 0x93, 0x64, 0xf4, 0x5f, 0xd8, 0xfe, 0x7d, 0x2f, 0xbe, 0x7e, - 0x9f, 0x4c, 0x0f, 0xf7, 0xf5, 0x59, 0xd3, 0x73, 0xc0, 0x3e, 0x7d, 0x1b, 0x36, 0x42, 0xdc, 0xa7, - 0x43, 0xd5, 0xfb, 0xa5, 0xec, 0x97, 0xd3, 0xf6, 0x7f, 0x15, 0x4a, 0x70, 0xcc, 0xfe, 0x31, 0x29, - 0x39, 0x40, 0x6b, 0x77, 0x04, 0x81, 0x36, 0x29, 0xb4, 0xd1, 0x15, 0x6c, 0x5b, 0x46, 0x7f, 0xdd, - 0x46, 0xd0, 0xed, 0x79, 0xca, 0x22, 0x98, 0xe9, 0xd8, 0xd8, 0xb8, 0x71, 0xa9, 0xe7, 0x30, 0x7b, - 0xf3, 0x5a, 0xf4, 0x1c, 0x94, 0x3b, 0x71, 0x9a, 0xb1, 0xdc, 0x2d, 0x2c, 0xca, 0xc2, 0xc8, 0x72, - 0xc7, 0xcb, 0x7e, 0x70, 0x96, 0xd1, 0x80, 0x19, 0xfd, 0x56, 0x1f, 0x48, 0x60, 0x41, 0x44, 0xa9, - 0xcb, 0xeb, 0xc4, 0x73, 0x94, 0xc9, 0x4c, 0x1f, 0x11, 0x4e, 0x83, 0x79, 0x93, 0x50, 0x7d, 0xd4, - 0x4d, 0x5a, 0xc5, 0x24, 0xf4, 0xca, 0xe0, 0x32, 0x4d, 0xfd, 0x5a, 0x02, 0x8b, 0xb1, 0x4b, 0xc0, - 0xc3, 0xee, 0x9a, 0xfa, 0x45, 0x0e, 0x9c, 0x10, 0xd7, 0x4a, 0x8e, 0x17, 0xa4, 0xe6, 0xd0, 0x27, - 0x63, 0xfc, 0x67, 0x13, 0x79, 0xec, 0x57, 0xc1, 0xd3, 0x60, 0x9e, 0xf8, 0xc6, 0x50, 0x42, 0xb9, - 0x10, 0x55, 0x88, 0x6f, 0xc4, 0x12, 0xba, 0xd6, 0xbe, 0xf7, 0xa8, 0x2e, 0xdd, 0x7f, 0x54, 0x97, - 0x7e, 0x7b, 0x54, 0x97, 0xee, 0x3c, 0xae, 0x4f, 0xdd, 0x7f, 0x5c, 0x9f, 0xfa, 0xf1, 0x71, 0x7d, - 0xea, 0x83, 0x56, 0xd7, 0xa2, 0xdb, 0xbd, 0x4e, 0xd3, 0xc0, 0x4e, 0xab, 0xe3, 0x76, 0xce, 0xb0, - 0x3d, 0xd6, 0x8a, 0x7d, 0xab, 0xbe, 0x95, 0xfc, 0x5a, 0xdd, 0x29, 0xb2, 0x5e, 0xe9, 0xec, 0x3f, - 0x01, 0x00, 0x00, 0xff, 0xff, 0x7f, 0x4a, 0xb4, 0xcd, 0x78, 0x1f, 0x00, 0x00, + // 1648 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xdc, 0x59, 0xcb, 0x6f, 0xdb, 0x46, + 0x1a, 0x37, 0x25, 0x4a, 0x96, 0x47, 0x96, 0x14, 0x73, 0xbd, 0x89, 0xd6, 0xc9, 0xca, 0x0a, 0x0f, + 0x59, 0x67, 0xb1, 0x91, 0x16, 0xce, 0xee, 0x22, 0xb7, 0xc0, 0x8f, 0xec, 0x42, 0xd8, 0xe6, 0x51, + 0x3a, 0xc9, 0xa1, 0x17, 0x62, 0x44, 0x8e, 0x65, 0x36, 0x24, 0x87, 0xe5, 0x8c, 0x9c, 0x28, 0xff, + 0x40, 0x4f, 0x05, 0x02, 0x14, 0x05, 0xda, 0x4b, 0xce, 0x05, 0x8a, 0x02, 0x3d, 0xe4, 0xda, 0x7b, + 0x7a, 0x4b, 0xd3, 0x4b, 0x1f, 0x40, 0x5a, 0x24, 0xa7, 0x14, 0x28, 0xda, 0x73, 0x4f, 0x05, 0x67, + 0x86, 0x14, 0x29, 0xca, 0x91, 0xa9, 0xd4, 0xb1, 0xd3, 0x9b, 0x38, 0xfa, 0x0d, 0xf9, 0x3d, 0x7e, + 0xdf, 0xef, 0xfb, 0x38, 0x04, 0xcb, 0x3d, 0x1f, 0x21, 0x77, 0xdb, 0x42, 0xb6, 0xd9, 0x26, 0x14, + 0xfb, 0xb0, 0x87, 0xda, 0x68, 0x17, 0xb9, 0x94, 0xb4, 0x3c, 0x1f, 0x53, 0xac, 0x28, 0x43, 0x40, + 0x4b, 0x00, 0x96, 0xfe, 0x62, 0x60, 0xe2, 0x60, 0xa2, 0x33, 0x44, 0x9b, 0x5f, 0x70, 0xf8, 0xd2, + 0x62, 0x0f, 0xf7, 0x30, 0x5f, 0x0f, 0x7e, 0x89, 0xd5, 0xe5, 0x1e, 0xc6, 0x3d, 0x1b, 0xb5, 0xd9, + 0x55, 0xb7, 0xbf, 0xdd, 0xa6, 0x96, 0x83, 0x08, 0x85, 0x8e, 0x17, 0x01, 0xd2, 0x66, 0x18, 0xd8, + 0x71, 0xb0, 0x2b, 0x00, 0x8d, 0x31, 0x00, 0x3a, 0xf0, 0x90, 0x78, 0xae, 0xfa, 0x95, 0x0c, 0x16, + 0x2e, 0x05, 0x76, 0x6f, 0xf8, 0x08, 0x52, 0xb4, 0xde, 0x37, 0x6e, 0x21, 0xaa, 0xb4, 0x40, 0x01, + 0xdf, 0x76, 0x91, 0x5f, 0x97, 0x9a, 0xd2, 0xca, 0xdc, 0x7a, 0xfd, 0xf1, 0x83, 0x73, 0x8b, 0xc2, + 0xdc, 0x35, 0xd3, 0xf4, 0x11, 0x21, 0x5b, 0xd4, 0xb7, 0xdc, 0x9e, 0xc6, 0x61, 0xca, 0x32, 0x28, + 0x77, 0xd9, 0x4e, 0xdd, 0x85, 0x0e, 0xaa, 0xe7, 0x82, 0x5d, 0x1a, 0xe0, 0x4b, 0x57, 0xa0, 0x83, + 0x94, 0x75, 0x00, 0x76, 0x2d, 0x62, 0x75, 0x2d, 0xdb, 0xa2, 0x83, 0x7a, 0xbe, 0x29, 0xad, 0x54, + 0x57, 0xd5, 0x56, 0x3a, 0x44, 0xad, 0x9b, 0x11, 0xea, 0xfa, 0xc0, 0x43, 0x5a, 0x6c, 0x97, 0x72, + 0x12, 0xcc, 0x19, 0xcc, 0x48, 0x1d, 0xd2, 0xba, 0xdc, 0x94, 0x56, 0xf2, 0x5a, 0x89, 0x2f, 0xac, + 0x51, 0xe5, 0x02, 0x98, 0x13, 0x16, 0x58, 0x66, 0xbd, 0xc0, 0xac, 0x3e, 0xf9, 0xf0, 0xc9, 0xf2, + 0xcc, 0xb7, 0x4f, 0x96, 0xe5, 0x1b, 0x96, 0x4b, 0x1f, 0x3f, 0x38, 0x57, 0x16, 0x1e, 0x04, 0x97, + 0x5a, 0x89, 0xa3, 0x3b, 0xa6, 0x72, 0x11, 0x94, 0x09, 0xee, 0xfb, 0x06, 0xd2, 0x83, 0xb8, 0xd4, + 0x8b, 0xcc, 0xb6, 0xc6, 0x38, 0xdb, 0xb6, 0x18, 0x8c, 0xdb, 0x45, 0xa2, 0xdf, 0xca, 0x3f, 0x80, + 0x62, 0xec, 0x40, 0xbf, 0x87, 0x4c, 0xdd, 0x47, 0xd0, 0xd4, 0xdf, 0xe9, 0x63, 0x0a, 0xeb, 0xb3, + 0x4d, 0x69, 0x45, 0xd6, 0x8e, 0x89, 0x7f, 0x34, 0x04, 0xcd, 0x37, 0x83, 0x75, 0x65, 0x0d, 0xd4, + 0x3c, 0x38, 0x70, 0x90, 0x4b, 0x75, 0xc8, 0x43, 0x59, 0x2f, 0x4d, 0x08, 0x72, 0x55, 0x6c, 0x10, + 0xab, 0x8a, 0x0a, 0x2a, 0x9e, 0x6f, 0x39, 0xd0, 0x1f, 0xe8, 0xc4, 0x0b, 0xfc, 0x9d, 0x6b, 0x4a, + 0x2b, 0x15, 0xad, 0x2c, 0x16, 0xb7, 0xbc, 0x8e, 0xa9, 0xac, 0x83, 0x46, 0xcf, 0xc6, 0x5d, 0x68, + 0xeb, 0xbb, 0x96, 0x4f, 0xfb, 0xd0, 0xd6, 0x7b, 0x3e, 0xee, 0x7b, 0xfa, 0x36, 0x74, 0x2c, 0x7b, + 0x10, 0x6c, 0x02, 0x6c, 0xd3, 0x12, 0x47, 0xdd, 0xe4, 0xa0, 0xff, 0x05, 0x98, 0xff, 0x32, 0x48, + 0xc7, 0x54, 0x2e, 0x80, 0x22, 0xa1, 0x90, 0xf6, 0x49, 0xbd, 0xcc, 0x82, 0xd2, 0x1c, 0x17, 0x14, + 0xce, 0x98, 0x2d, 0x86, 0xd3, 0x04, 0x5e, 0xfd, 0x30, 0x27, 0x58, 0xb5, 0x89, 0x6c, 0x14, 0xb1, + 0xea, 0x5f, 0xa0, 0x84, 0x3d, 0xe4, 0x43, 0x8a, 0x27, 0x13, 0x2b, 0x42, 0x0e, 0xb9, 0x98, 0x9b, + 0x8a, 0x8b, 0xf9, 0x14, 0x17, 0x13, 0x54, 0x91, 0xb3, 0x50, 0x65, 0x72, 0x50, 0x0b, 0x93, 0x82, + 0xaa, 0xbe, 0x9b, 0x07, 0x7f, 0x66, 0xa1, 0xb9, 0xe1, 0x99, 0x51, 0xc1, 0x75, 0xdc, 0x6d, 0x3c, + 0x65, 0x78, 0x26, 0x96, 0x5e, 0xc2, 0xdd, 0x7c, 0x16, 0x77, 0xc7, 0x13, 0x5b, 0xde, 0x83, 0xd8, + 0x7f, 0x4b, 0x13, 0x9b, 0xd5, 0x61, 0x8a, 0xbe, 0x49, 0x2d, 0x28, 0x4e, 0xa5, 0x05, 0x93, 0x33, + 0x31, 0x3b, 0x31, 0x13, 0x1f, 0x4b, 0xe0, 0x38, 0x27, 0xa9, 0x45, 0x0c, 0xec, 0x52, 0xcb, 0xed, + 0x87, 0x4c, 0x4d, 0xc4, 0x4c, 0xca, 0x12, 0xb3, 0x89, 0xe9, 0x38, 0x0e, 0x8a, 0x3e, 0x82, 0x04, + 0xbb, 0x82, 0x99, 0xe2, 0x2a, 0x50, 0x37, 0x93, 0x15, 0x4b, 0x4c, 0xdd, 0xf8, 0xc2, 0x1a, 0x55, + 0xdf, 0x2f, 0x26, 0x54, 0xfa, 0x6a, 0xf7, 0x6d, 0x64, 0x50, 0x65, 0x15, 0xcc, 0x32, 0xfd, 0xdb, + 0x07, 0x5f, 0x42, 0xe0, 0xef, 0x5f, 0x4d, 0xcb, 0xa0, 0x8c, 0x99, 0x39, 0x1c, 0x20, 0x73, 0x00, + 0x5f, 0x4a, 0xf3, 0xaf, 0x98, 0x25, 0x96, 0x17, 0xc0, 0x9c, 0xb8, 0xb5, 0xc8, 0xe7, 0xa4, 0x9d, + 0x1c, 0xdd, 0x31, 0xd3, 0x0a, 0x59, 0x4a, 0x2b, 0xe4, 0x69, 0x30, 0xef, 0xc1, 0x81, 0x8d, 0xa1, + 0xa9, 0x13, 0xeb, 0x2e, 0x62, 0x22, 0x2a, 0x6b, 0x65, 0xb1, 0xb6, 0x65, 0xdd, 0x1d, 0xed, 0x5a, + 0x60, 0x2a, 0xa6, 0x9e, 0x06, 0xf3, 0x01, 0xb9, 0x82, 0xb2, 0x60, 0xfd, 0xa5, 0xcc, 0x02, 0x54, + 0x16, 0x6b, 0xac, 0x81, 0x24, 0x1a, 0xdb, 0x7c, 0xaa, 0xb1, 0x85, 0x22, 0x5c, 0xd9, 0x5b, 0x84, + 0x39, 0x21, 0x92, 0x22, 0xac, 0xfc, 0x1f, 0xd4, 0x7c, 0x64, 0xf6, 0x5d, 0x13, 0xba, 0xc6, 0x80, + 0x3f, 0xbc, 0xba, 0xb7, 0x0b, 0x5a, 0x04, 0x65, 0x2e, 0x54, 0xfd, 0xc4, 0xf5, 0x68, 0x97, 0xac, + 0x65, 0xee, 0x92, 0xa7, 0xc0, 0x9c, 0xb1, 0x83, 0x8c, 0x5b, 0xa4, 0xef, 0x90, 0xfa, 0xb1, 0x66, + 0x7e, 0x65, 0x5e, 0x1b, 0x2e, 0x28, 0xe7, 0xc1, 0x71, 0x1b, 0x1b, 0xa9, 0x72, 0xb6, 0xcc, 0xfa, + 0x02, 0xcb, 0xdc, 0x9f, 0xd8, 0xbf, 0xf1, 0x32, 0xee, 0x98, 0xea, 0xcf, 0x12, 0x38, 0xc1, 0xab, + 0x02, 0xba, 0x06, 0xb2, 0x13, 0xb5, 0x71, 0x40, 0x62, 0x3a, 0xc2, 0xf6, 0x7c, 0x8a, 0xed, 0x29, + 0xe6, 0xc9, 0x69, 0xe6, 0x25, 0x78, 0x5d, 0xcc, 0xc0, 0x6b, 0xf5, 0x79, 0x0e, 0xd4, 0x98, 0xc7, + 0x5b, 0x08, 0xda, 0x87, 0xec, 0x69, 0xc2, 0x8b, 0x42, 0x96, 0xea, 0x1c, 0x52, 0xba, 0x98, 0x91, + 0xd2, 0xff, 0x06, 0x27, 0xc6, 0xca, 0x7e, 0xa4, 0xf7, 0x8b, 0x69, 0xbd, 0xef, 0x98, 0x2f, 0x60, + 0x57, 0x69, 0x6f, 0x76, 0xdd, 0xcf, 0x8b, 0x58, 0x6f, 0x60, 0x6f, 0xf0, 0x52, 0xb1, 0x3e, 0x03, + 0x6a, 0xc4, 0x37, 0xf4, 0x74, 0xbc, 0x2b, 0xc4, 0x37, 0xd6, 0x87, 0x21, 0x17, 0xb8, 0x74, 0xd8, + 0x03, 0xdc, 0xd5, 0x61, 0xe4, 0xcf, 0x80, 0x9a, 0x49, 0x68, 0xe2, 0x7e, 0x5c, 0x76, 0x2b, 0x26, + 0xa1, 0xc9, 0xfb, 0x05, 0xb8, 0xf8, 0xfd, 0x0a, 0x11, 0x2e, 0x76, 0xbf, 0x8b, 0xa0, 0x12, 0x7b, + 0xee, 0xfe, 0x38, 0x59, 0x8e, 0x4c, 0x62, 0x23, 0x74, 0x25, 0xf6, 0xa0, 0xfd, 0x89, 0x75, 0x39, + 0xb2, 0x61, 0xda, 0x04, 0xfd, 0x2a, 0x25, 0x86, 0xcc, 0xa3, 0x54, 0x0e, 0x72, 0x96, 0x72, 0xd8, + 0xdb, 0xf9, 0xc2, 0xde, 0xce, 0x7f, 0x21, 0x89, 0x31, 0x52, 0x43, 0xac, 0x4e, 0x8e, 0x98, 0x1e, + 0x64, 0x09, 0xc0, 0xd8, 0x41, 0x4c, 0x38, 0x33, 0x62, 0x96, 0x34, 0x6e, 0xba, 0x1d, 0x3e, 0x35, + 0x97, 0x25, 0xec, 0x53, 0x0d, 0x62, 0xef, 0xe5, 0x12, 0xd3, 0xbb, 0x20, 0xf0, 0x01, 0x4e, 0xef, + 0x07, 0xc8, 0xbb, 0xe4, 0x74, 0x53, 0x98, 0x66, 0xba, 0x51, 0x7f, 0x91, 0xc0, 0xb1, 0xd8, 0x60, + 0xca, 0xd8, 0x99, 0xf9, 0xf4, 0xe0, 0xaf, 0x00, 0x70, 0xca, 0xc7, 0x62, 0x30, 0xc7, 0x56, 0x98, + 0x87, 0xff, 0x01, 0xa5, 0xa8, 0x22, 0xf6, 0xf1, 0xfe, 0x32, 0xdb, 0x13, 0xaa, 0x3f, 0x32, 0xb2, + 0xc8, 0x99, 0x47, 0x96, 0x45, 0x50, 0x40, 0x77, 0xa8, 0x0f, 0x85, 0x6a, 0xf2, 0x0b, 0xf5, 0xa3, + 0xd0, 0x65, 0x2e, 0x3b, 0x23, 0x2e, 0xe7, 0xa6, 0x71, 0x39, 0xff, 0x22, 0x97, 0xe5, 0xfd, 0xbb, + 0xac, 0x7e, 0x23, 0x89, 0x9e, 0xf5, 0x06, 0x82, 0xbb, 0xc2, 0xb4, 0x8b, 0xa0, 0xea, 0x20, 0xa7, + 0x8b, 0xfc, 0xe8, 0xb5, 0x6c, 0x52, 0x5a, 0x2a, 0x1c, 0x1f, 0xbe, 0xaf, 0x1d, 0x11, 0xdf, 0x7e, + 0xca, 0x09, 0x95, 0xe0, 0xa5, 0xc7, 0x9c, 0xbb, 0xcc, 0x0c, 0x7d, 0x45, 0x07, 0x0b, 0x07, 0xe3, + 0x97, 0x72, 0x2d, 0xcc, 0x0f, 0xd1, 0x29, 0x0e, 0x72, 0x54, 0x2f, 0x34, 0xf3, 0x2b, 0xe5, 0xd5, + 0xbf, 0x8f, 0x63, 0x2a, 0x0b, 0x40, 0xcc, 0xf5, 0x4d, 0x44, 0xa1, 0x65, 0x6b, 0xf3, 0xe2, 0x0e, + 0xd7, 0xf1, 0x9a, 0x69, 0x2a, 0x9b, 0x60, 0x21, 0x76, 0x47, 0xae, 0x5d, 0xf5, 0x62, 0x33, 0xff, + 0x42, 0x27, 0x6b, 0xd1, 0x2d, 0x38, 0xaf, 0xd5, 0xef, 0x72, 0x51, 0x87, 0x71, 0xd1, 0xed, 0x3f, + 0x4c, 0xb8, 0x47, 0x54, 0xa1, 0x90, 0x59, 0x15, 0x36, 0xc1, 0xac, 0x08, 0x15, 0x8b, 0x69, 0xb6, + 0x44, 0x85, 0x5b, 0xd5, 0x0f, 0xc2, 0x9e, 0x97, 0xc2, 0x28, 0xff, 0x04, 0x45, 0x8e, 0x9a, 0x18, + 0x5c, 0x81, 0x53, 0x3a, 0xa0, 0x86, 0xee, 0x78, 0x96, 0x0f, 0xa9, 0x85, 0x5d, 0x9d, 0x5a, 0x42, + 0x45, 0xcb, 0xab, 0x4b, 0x2d, 0x7e, 0x80, 0xdc, 0x0a, 0x0f, 0x90, 0x5b, 0xd7, 0xc3, 0x03, 0xe4, + 0x75, 0xf9, 0xde, 0xf7, 0xcb, 0x92, 0x56, 0x1d, 0x6e, 0x0c, 0xfe, 0x52, 0x7f, 0x94, 0x12, 0x0d, + 0x8e, 0x59, 0x77, 0x29, 0xd0, 0xbd, 0xd7, 0x3b, 0xeb, 0xe3, 0xa5, 0xfc, 0x61, 0x38, 0x41, 0x5e, + 0xb6, 0x7c, 0x1f, 0xfb, 0x2f, 0x75, 0x4c, 0x99, 0xed, 0x1c, 0x2e, 0xd3, 0xb1, 0xa3, 0x0a, 0x2a, + 0x26, 0x22, 0x54, 0x37, 0x76, 0xa0, 0xe5, 0x0e, 0xe7, 0xc2, 0x72, 0xb0, 0xb8, 0x11, 0xac, 0x75, + 0x4c, 0xf5, 0xb3, 0xf0, 0x5d, 0x38, 0xee, 0x8a, 0x86, 0x48, 0xdf, 0xa6, 0xc1, 0xa4, 0x23, 0xde, + 0xb7, 0x24, 0xb6, 0x31, 0x7c, 0x9b, 0x3a, 0x64, 0x93, 0x9f, 0x27, 0xa3, 0xff, 0xda, 0xce, 0xef, + 0xfb, 0xf1, 0xf5, 0xcb, 0x64, 0x7a, 0xb8, 0xaf, 0x2f, 0x9b, 0x9e, 0x43, 0xf6, 0xe9, 0xf3, 0x70, + 0x10, 0xe2, 0x3e, 0x1d, 0xa9, 0xd9, 0x2f, 0x65, 0xbf, 0x9c, 0xb6, 0xff, 0x93, 0x50, 0x82, 0x63, + 0xf6, 0x4f, 0x48, 0xc9, 0x21, 0x5a, 0xbb, 0x2b, 0x08, 0xb4, 0x45, 0xa1, 0x8d, 0xae, 0x61, 0xdb, + 0x32, 0x06, 0x1b, 0x36, 0x82, 0x6e, 0xdf, 0x53, 0x96, 0x40, 0xa9, 0x6b, 0x63, 0xe3, 0xd6, 0x95, + 0xbe, 0xc3, 0xec, 0xcd, 0x6b, 0xd1, 0x75, 0xd0, 0xee, 0xc4, 0xdb, 0x8c, 0xe5, 0x6e, 0x63, 0xd1, + 0x16, 0xc6, 0xb6, 0x3b, 0xde, 0xf6, 0x83, 0x77, 0x19, 0x0d, 0x98, 0xd1, 0x6f, 0xf5, 0xb1, 0x04, + 0x16, 0x45, 0x94, 0x7a, 0xbc, 0x4f, 0xbc, 0x42, 0x99, 0xcc, 0xf4, 0xb9, 0xe2, 0x2c, 0x58, 0x30, + 0x09, 0xd5, 0xc7, 0x1d, 0xbf, 0x55, 0x4d, 0x42, 0xaf, 0x0d, 0x4f, 0xe0, 0xd4, 0x4f, 0x25, 0xb0, + 0x14, 0x3b, 0x39, 0x3c, 0xea, 0xae, 0xa9, 0xf7, 0x73, 0xe0, 0x94, 0x38, 0x8b, 0x72, 0xbc, 0x20, + 0x35, 0x47, 0x3e, 0x19, 0x93, 0x3f, 0xd0, 0xc8, 0x13, 0xbf, 0x3f, 0x9e, 0x05, 0x0b, 0xc4, 0x37, + 0x46, 0x12, 0xca, 0x85, 0xa8, 0x4a, 0x7c, 0x23, 0x96, 0xd0, 0xf5, 0xce, 0xc3, 0xa7, 0x0d, 0xe9, + 0xd1, 0xd3, 0x86, 0xf4, 0xc3, 0xd3, 0x86, 0x74, 0xef, 0x59, 0x63, 0xe6, 0xd1, 0xb3, 0xc6, 0xcc, + 0xd7, 0xcf, 0x1a, 0x33, 0x6f, 0xb5, 0x7b, 0x16, 0xdd, 0xe9, 0x77, 0x5b, 0x06, 0x76, 0xda, 0x5d, + 0xb7, 0x7b, 0x8e, 0xd5, 0x58, 0x3b, 0xf6, 0x55, 0xfc, 0x4e, 0xf2, 0xbb, 0x78, 0xb7, 0xc8, 0x66, + 0xa5, 0xf3, 0xbf, 0x05, 0x00, 0x00, 0xff, 0xff, 0xe9, 0x24, 0x2e, 0x76, 0xe2, 0x1f, 0x00, 0x00, } func (m *EventCreateBucket) Marshal() (dAtA []byte, err error) { @@ -2673,6 +2692,13 @@ func (m *EventCreateObject) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l + if m.LocalVirtualGroupId != 0 { + i = encodeVarintEvents(dAtA, i, uint64(m.LocalVirtualGroupId)) + i-- + dAtA[i] = 0x1 + i-- + dAtA[i] = 0x88 + } if len(m.Checksums) > 0 { for iNdEx := len(m.Checksums) - 1; iNdEx >= 0; iNdEx-- { i -= len(m.Checksums[iNdEx]) @@ -2925,6 +2951,11 @@ func (m *EventCopyObject) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l + if m.LocalVirtualGroupId != 0 { + i = encodeVarintEvents(dAtA, i, uint64(m.LocalVirtualGroupId)) + i-- + dAtA[i] = 0x40 + } { size := m.DstObjectId.Size() i -= size @@ -4326,6 +4357,9 @@ func (m *EventCreateObject) Size() (n int) { n += 2 + l + sovEvents(uint64(l)) } } + if m.LocalVirtualGroupId != 0 { + n += 2 + sovEvents(uint64(m.LocalVirtualGroupId)) + } return n } @@ -4417,6 +4451,9 @@ func (m *EventCopyObject) Size() (n int) { n += 1 + l + sovEvents(uint64(l)) l = m.DstObjectId.Size() n += 1 + l + sovEvents(uint64(l)) + if m.LocalVirtualGroupId != 0 { + n += 1 + sovEvents(uint64(m.LocalVirtualGroupId)) + } return n } @@ -6259,6 +6296,25 @@ func (m *EventCreateObject) Unmarshal(dAtA []byte) error { m.Checksums = append(m.Checksums, make([]byte, postIndex-iNdEx)) copy(m.Checksums[len(m.Checksums)-1], dAtA[iNdEx:postIndex]) iNdEx = postIndex + case 17: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field LocalVirtualGroupId", wireType) + } + m.LocalVirtualGroupId = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.LocalVirtualGroupId |= uint32(b&0x7F) << shift + if b < 0x80 { + break + } + } default: iNdEx = preIndex skippy, err := skipEvents(dAtA[iNdEx:]) @@ -6973,6 +7029,25 @@ func (m *EventCopyObject) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex + case 8: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field LocalVirtualGroupId", wireType) + } + m.LocalVirtualGroupId = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.LocalVirtualGroupId |= uint32(b&0x7F) << shift + if b < 0x80 { + break + } + } default: iNdEx = preIndex skippy, err := skipEvents(dAtA[iNdEx:])