From f7623b26f9d824d521eef2b452780fce49914411 Mon Sep 17 00:00:00 2001 From: nabarun Date: Thu, 14 Apr 2022 09:26:12 +0530 Subject: [PATCH] nameservice: return names with records query --- gql/resolver.go | 6 +- gql/util.go | 1 + init.sh | 2 +- .../nameservice/v1beta1/nameservice.proto | 3 + .../vulcanize/nameservice/v1beta1/query.proto | 4 +- x/nameservice/genesis.go | 11 +- x/nameservice/keeper/grpc_query.go | 10 +- x/nameservice/keeper/keeper.go | 34 ++- x/nameservice/keeper/record_keeper.go | 13 +- x/nameservice/types/nameservice.pb.go | 222 +++++++++++------- x/nameservice/types/query.pb.go | 213 ++++++++++------- x/nameservice/types/types.go | 1 + 12 files changed, 326 insertions(+), 194 deletions(-) diff --git a/gql/resolver.go b/gql/resolver.go index d8f48579..74abec0b 100644 --- a/gql/resolver.go +++ b/gql/resolver.go @@ -78,6 +78,7 @@ func (q queryResolver) ResolveNames(ctx context.Context, names []string) ([]*Rec for _, name := range names { res, err := nsQueryClient.ResolveWrn(context.Background(), &nstypes.QueryResolveWrn{Wrn: name}) if err != nil { + // Return nil for record not found. gqlResponse = append(gqlResponse, nil) } else { gqlRecord, err := getGQLRecord(context.Background(), q, *res.GetRecord()) @@ -99,7 +100,7 @@ func (q queryResolver) LookupNames(ctx context.Context, names []string) ([]*Name for _, name := range names { res, err := nsQueryClient.LookupWrn(context.Background(), &nstypes.QueryLookupWrn{Wrn: name}) if err != nil { - // Instead of throwing error for name not found, return nil similar to https://github.com/vulcanize/dxns/blob/main/gql/resolver.go#L191 + // Return nil for name not found. gqlResponse = append(gqlResponse, nil) } else { gqlRecord, err := getGQLNameRecord(res.GetName()) @@ -121,6 +122,7 @@ func (q queryResolver) QueryRecords(ctx context.Context, attributes []*KeyValueI context.Background(), &nstypes.QueryListRecordsRequest{ Attributes: parseRequestAttributes(attributes), + All: (all != nil && *all), }, ) @@ -148,9 +150,9 @@ func (q queryResolver) GetRecordsByIds(ctx context.Context, ids []string) ([]*Re gqlResponse := make([]*Record, len(ids)) for i, id := range ids { - // TODO: Implement HasRecord query similar to https://github.com/vulcanize/dxns/blob/main/gql/resolver.go#L325 res, err := nsQueryClient.GetRecord(context.Background(), &nstypes.QueryRecordByIdRequest{Id: id}) if err != nil { + // Return nil for record not found. gqlResponse[i] = nil } else { record, err := getGQLRecord(context.Background(), q, res.GetRecord()) diff --git a/gql/util.go b/gql/util.go index 33aac824..c25a0d19 100644 --- a/gql/util.go +++ b/gql/util.go @@ -76,6 +76,7 @@ func getGQLRecord(ctx context.Context, resolver QueryResolver, record nstypes.Re CreateTime: record.GetCreateTime(), ExpiryTime: record.GetExpiryTime(), Owners: record.GetOwners(), + Names: record.GetNames(), Attributes: attributes, References: references, }, nil diff --git a/init.sh b/init.sh index f240a412..e1026075 100755 --- a/init.sh +++ b/init.sh @@ -38,7 +38,7 @@ cat $HOME/.chibaclonkd/config/genesis.json | jq '.app_state["nameservice"]["para cat $HOME/.chibaclonkd/config/genesis.json | jq '.app_state["nameservice"]["params"]["authority_auction_reveal_fee"]["denom"]="aphoton"' > $HOME/.chibaclonkd/config/tmp_genesis.json && mv $HOME/.chibaclonkd/config/tmp_genesis.json $HOME/.chibaclonkd/config/genesis.json cat $HOME/.chibaclonkd/config/genesis.json | jq '.app_state["nameservice"]["params"]["authority_auction_minimum_bid"]["denom"]="aphoton"' > $HOME/.chibaclonkd/config/tmp_genesis.json && mv $HOME/.chibaclonkd/config/tmp_genesis.json $HOME/.chibaclonkd/config/genesis.json -if [[ "$AUCTION_ENABLED" == "true" ]]; then +if [[ "$TEST_AUCTION_ENABLED" == "true" ]]; then echo "Enabling auction and setting timers." cat $HOME/.chibaclonkd/config/genesis.json | jq '.app_state["nameservice"]["params"]["authority_auction_enabled"]=true' > $HOME/.chibaclonkd/config/tmp_genesis.json && mv $HOME/.chibaclonkd/config/tmp_genesis.json $HOME/.chibaclonkd/config/genesis.json diff --git a/proto/vulcanize/nameservice/v1beta1/nameservice.proto b/proto/vulcanize/nameservice/v1beta1/nameservice.proto index cfba853a..860dd91c 100644 --- a/proto/vulcanize/nameservice/v1beta1/nameservice.proto +++ b/proto/vulcanize/nameservice/v1beta1/nameservice.proto @@ -81,6 +81,9 @@ message Record { string attributes = 7 [ (gogoproto.moretags) = "json:\"attributes\" yaml:\"attributes\"" ]; + repeated string names = 8 [ + (gogoproto.moretags) = "json:\"names\" yaml:\"names\"" + ]; } // AuthorityEntry defines the nameservice module AuthorityEntries diff --git a/proto/vulcanize/nameservice/v1beta1/query.proto b/proto/vulcanize/nameservice/v1beta1/query.proto index f42e52dd..2dd1638e 100644 --- a/proto/vulcanize/nameservice/v1beta1/query.proto +++ b/proto/vulcanize/nameservice/v1beta1/query.proto @@ -78,8 +78,10 @@ message QueryListRecordsRequest{ } repeated KeyValueInput attributes = 1; + bool all = 2; + // pagination defines an optional pagination for the request. - cosmos.base.query.v1beta1.PageRequest pagination = 2; + cosmos.base.query.v1beta1.PageRequest pagination = 3; } // QueryListRecordsResponse is response type for nameservice records list diff --git a/x/nameservice/genesis.go b/x/nameservice/genesis.go index 026e1449..040eea5a 100644 --- a/x/nameservice/genesis.go +++ b/x/nameservice/genesis.go @@ -17,10 +17,13 @@ func InitGenesis(ctx sdk.Context, keeper keeper.Keeper, data types.GenesisState) // Add to record expiry queue if expiry time is in the future. expiryTime, err := time.Parse(time.RFC3339, record.ExpiryTime) - if err == nil { - if expiryTime.After(ctx.BlockTime()) { - keeper.InsertRecordExpiryQueue(ctx, record) - } + + if err != nil { + panic(err) + } + + if expiryTime.After(ctx.BlockTime()) { + keeper.InsertRecordExpiryQueue(ctx, record) } // Note: Bond genesis runs first, so bonds will already be present. diff --git a/x/nameservice/keeper/grpc_query.go b/x/nameservice/keeper/grpc_query.go index 9900854b..4913b592 100644 --- a/x/nameservice/keeper/grpc_query.go +++ b/x/nameservice/keeper/grpc_query.go @@ -29,11 +29,12 @@ func (q Querier) Params(c context.Context, _ *types.QueryParamsRequest) (*types. func (q Querier) ListRecords(c context.Context, req *types.QueryListRecordsRequest) (*types.QueryListRecordsResponse, error) { ctx := sdk.UnwrapSDKContext(c) attributes := req.GetAttributes() + all := req.GetAll() records := []types.Record{} if len(attributes) > 0 { records = q.Keeper.MatchRecords(ctx, func(record *types.RecordType) bool { - return MatchOnAttributes(record, attributes) + return MatchOnAttributes(record, attributes, all) }) } else { records = q.Keeper.ListRecords(ctx) @@ -139,12 +140,17 @@ func matchOnRecordField(record *types.RecordType, attr *types.QueryListRecordsRe return } -func MatchOnAttributes(record *types.RecordType, attributes []*types.QueryListRecordsRequest_KeyValueInput) bool { +func MatchOnAttributes(record *types.RecordType, attributes []*types.QueryListRecordsRequest_KeyValueInput, all bool) bool { // Filter deleted records. if record.Deleted { return false } + // If ONLY named records are requested, check for that condition first. + if !all && len(record.Names) == 0 { + return false + } + recAttrs := record.Attributes for _, attr := range attributes { diff --git a/x/nameservice/keeper/keeper.go b/x/nameservice/keeper/keeper.go index b4a3d631..6e16c96a 100644 --- a/x/nameservice/keeper/keeper.go +++ b/x/nameservice/keeper/keeper.go @@ -119,8 +119,7 @@ func (k Keeper) ListRecords(ctx sdk.Context) []types.Record { if bz != nil { var obj types.Record k.cdc.MustUnmarshal(bz, &obj) - //records = append(records, recordObjToRecord(store, k.cdc, obj)) - records = append(records, obj) + records = append(records, recordObjToRecord(store, k.cdc, obj)) } } @@ -139,8 +138,8 @@ func (k Keeper) MatchRecords(ctx sdk.Context, matchFn func(*types.RecordType) bo if bz != nil { var obj types.Record k.cdc.MustUnmarshal(bz, &obj) + obj = recordObjToRecord(store, k.cdc, obj) record := obj.ToRecordType() - // record := recordObjToRecord(store, codec, obj) if matchFn(&record) { records = append(records, obj) } @@ -223,8 +222,7 @@ func (k Keeper) processRecord(ctx sdk.Context, record *types.RecordType, isRenew } record.CreateTime = ctx.BlockHeader().Time.Format(time.RFC3339) - // record.ExpiryTime = ctx.BlockHeader().Time.Add(params.RecordRentDuration).Format(time.RFC3339) - record.ExpiryTime = ctx.BlockHeader().Time.Add(time.Minute).Format(time.RFC3339) + record.ExpiryTime = ctx.BlockHeader().Time.Add(params.RecordRentDuration).Format(time.RFC3339) record.Deleted = false k.PutRecord(ctx, record.ToRecordObj()) @@ -295,11 +293,13 @@ func (k Keeper) GetRecordExpiryQueueTimeSlice(ctx sdk.Context, timestamp time.Ti func (k Keeper) InsertRecordExpiryQueue(ctx sdk.Context, val types.Record) { expiryTime, err := time.Parse(time.RFC3339, val.ExpiryTime) - if err == nil { - timeSlice := k.GetRecordExpiryQueueTimeSlice(ctx, expiryTime) - timeSlice = append(timeSlice, val.Id) - k.SetRecordExpiryQueueTimeSlice(ctx, expiryTime, timeSlice) + if err != nil { + panic(err) } + + timeSlice := k.GetRecordExpiryQueueTimeSlice(ctx, expiryTime) + timeSlice = append(timeSlice, val.Id) + k.SetRecordExpiryQueueTimeSlice(ctx, expiryTime, timeSlice) } // GetModuleBalances gets the nameservice module account(s) balances. @@ -321,3 +321,19 @@ func (k Keeper) GetModuleBalances(ctx sdk.Context) []*types.AccountBalance { return balances } + +func recordObjToRecord(store sdk.KVStore, codec codec.BinaryCodec, record types.Record) types.Record { + reverseNameIndexKey := GetCIDToNamesIndexKey(record.Id) + + if store.Has(reverseNameIndexKey) { + names, err := helpers.BytesArrToStringArr(store.Get(reverseNameIndexKey)) + + if err != nil { + panic(err) + } + + record.Names = names + } + + return record +} diff --git a/x/nameservice/keeper/record_keeper.go b/x/nameservice/keeper/record_keeper.go index 3d50a758..2a856e32 100644 --- a/x/nameservice/keeper/record_keeper.go +++ b/x/nameservice/keeper/record_keeper.go @@ -145,8 +145,7 @@ func (k RecordKeeper) QueryRecordsByBond(ctx sdk.Context, bondID string) []types if bz != nil { var obj types.Record k.cdc.MustUnmarshal(bz, &obj) - //records = append(records, recordObjToRecord(store, k.cdc, obj)) - records = append(records, obj) + records = append(records, recordObjToRecord(store, k.cdc, obj)) } } @@ -163,10 +162,12 @@ func (k Keeper) ProcessRenewRecord(ctx sdk.Context, msg types.MsgRenewRecord) er record := k.GetRecord(ctx, msg.RecordId) expiryTime, err := time.Parse(time.RFC3339, record.ExpiryTime) - if err == nil { - if !record.Deleted || expiryTime.After(ctx.BlockTime()) { - return sdkerrors.Wrap(sdkerrors.ErrInvalidRequest, "Renewal not required.") - } + if err != nil { + panic(err) + } + + if !record.Deleted || expiryTime.After(ctx.BlockTime()) { + return sdkerrors.Wrap(sdkerrors.ErrInvalidRequest, "Renewal not required.") } recordType := record.ToRecordType() diff --git a/x/nameservice/types/nameservice.pb.go b/x/nameservice/types/nameservice.pb.go index a58f4bf1..655895e3 100644 --- a/x/nameservice/types/nameservice.pb.go +++ b/x/nameservice/types/nameservice.pb.go @@ -163,6 +163,7 @@ type Record struct { Deleted bool `protobuf:"varint,5,opt,name=deleted,proto3" json:"deleted,omitempty"` Owners []string `protobuf:"bytes,6,rep,name=owners,proto3" json:"owners,omitempty" json:"owners" yaml:"owners"` Attributes string `protobuf:"bytes,7,opt,name=attributes,proto3" json:"attributes,omitempty" json:"attributes" yaml:"attributes"` + Names []string `protobuf:"bytes,8,rep,name=names,proto3" json:"names,omitempty" json:"names" yaml:"names"` } func (m *Record) Reset() { *m = Record{} } @@ -247,6 +248,13 @@ func (m *Record) GetAttributes() string { return "" } +func (m *Record) GetNames() []string { + if m != nil { + return m.Names + } + return nil +} + // AuthorityEntry defines the nameservice module AuthorityEntries type AuthorityEntry struct { Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` @@ -764,89 +772,90 @@ func init() { } var fileDescriptor_c2009c2df775dbad = []byte{ - // 1299 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x57, 0xcd, 0x6e, 0x1b, 0x45, - 0x1c, 0xcf, 0xc6, 0x89, 0x13, 0x8f, 0x1b, 0x83, 0x86, 0xb4, 0x75, 0x02, 0xf5, 0x06, 0xa3, 0xaa, - 0xad, 0x42, 0xbc, 0x94, 0x1e, 0xca, 0x87, 0x10, 0xca, 0x26, 0x69, 0x1a, 0x10, 0x10, 0x26, 0xb9, - 0xc0, 0xc5, 0xcc, 0xee, 0x4e, 0xec, 0xa1, 0xde, 0x5d, 0x6b, 0x67, 0x36, 0xd4, 0x70, 0xe2, 0x0d, - 0x22, 0x71, 0xa9, 0x04, 0xe2, 0x05, 0x40, 0xe2, 0x31, 0xe8, 0xb1, 0x47, 0x84, 0x84, 0x41, 0xc9, - 0x1b, 0xf8, 0x09, 0xd0, 0xce, 0xcc, 0x7e, 0xda, 0xae, 0xa3, 0xf6, 0xb6, 0xff, 0xcf, 0xf9, 0xfd, - 0x3f, 0x67, 0x16, 0x18, 0xa7, 0x61, 0xcf, 0xc6, 0x1e, 0xfd, 0x9e, 0x18, 0x1e, 0x76, 0x09, 0x23, - 0xc1, 0x29, 0xb5, 0x89, 0x71, 0x7a, 0xd7, 0x22, 0x1c, 0xdf, 0xcd, 0xf2, 0x5a, 0xfd, 0xc0, 0xe7, - 0x3e, 0xbc, 0x91, 0x18, 0xb4, 0xb2, 0x42, 0x65, 0xb0, 0xde, 0xe8, 0xf8, 0x7e, 0xa7, 0x47, 0x0c, - 0xa1, 0x6c, 0x85, 0x27, 0x86, 0x13, 0x06, 0x98, 0x53, 0xdf, 0x93, 0xe6, 0xeb, 0x7a, 0x51, 0xce, - 0xa9, 0x4b, 0x18, 0xc7, 0x6e, 0x5f, 0x29, 0xac, 0x76, 0xfc, 0x8e, 0x2f, 0x3e, 0x8d, 0xe8, 0x4b, - 0x71, 0x1b, 0xb6, 0xcf, 0x5c, 0x9f, 0x19, 0x16, 0x66, 0x29, 0x38, 0xdb, 0xa7, 0xca, 0x6d, 0xf3, - 0x9f, 0x15, 0x50, 0x3e, 0xc4, 0x01, 0x76, 0x19, 0xa4, 0xa0, 0x1a, 0x10, 0xdb, 0x0f, 0x9c, 0x76, - 0x40, 0x3c, 0x5e, 0xd7, 0x36, 0xb4, 0xdb, 0xd5, 0x77, 0xd7, 0x5a, 0xd2, 0x41, 0x2b, 0x72, 0x10, - 0x83, 0x6d, 0xed, 0xf8, 0xd4, 0x33, 0xb7, 0x9e, 0x0e, 0xf5, 0xb9, 0xd1, 0x50, 0xbf, 0xf9, 0x2d, - 0xf3, 0xbd, 0x0f, 0x9a, 0x19, 0xdb, 0xe6, 0xc6, 0x00, 0xbb, 0xbd, 0x3c, 0x0b, 0x01, 0x49, 0x21, - 0xe2, 0x71, 0x78, 0xa6, 0x81, 0xd5, 0x8c, 0xb0, 0x1d, 0xc7, 0x5a, 0x9f, 0x57, 0x87, 0xca, 0x60, - 0x5b, 0x71, 0xb0, 0xad, 0x5d, 0xa5, 0x60, 0xee, 0xa8, 0x43, 0xef, 0x8f, 0x1d, 0x9a, 0x38, 0x99, - 0x70, 0x7a, 0x2a, 0x7b, 0xf2, 0xaf, 0xae, 0x21, 0x98, 0x42, 0x89, 0x1d, 0xc3, 0x10, 0xd4, 0x70, - 0xc8, 0xbb, 0x7e, 0x40, 0xf9, 0x40, 0x26, 0xa0, 0x34, 0x2b, 0x01, 0xf7, 0x14, 0x96, 0x4d, 0x89, - 0x25, 0x6f, 0x1e, 0xa3, 0x28, 0x70, 0xd1, 0x4a, 0xc2, 0x10, 0x99, 0xf8, 0x45, 0x03, 0xd7, 0xf3, - 0x2a, 0x69, 0x32, 0x16, 0x66, 0x25, 0xe3, 0x40, 0x01, 0xf8, 0x68, 0x12, 0x80, 0xb1, 0x7c, 0x4c, - 0x13, 0x8b, 0x94, 0x5c, 0xcd, 0xc1, 0x4a, 0xb2, 0xf2, 0x44, 0x03, 0xd7, 0x52, 0xbb, 0x4e, 0x80, - 0x6d, 0xd2, 0xee, 0x93, 0x80, 0xfa, 0x4e, 0x7d, 0x71, 0x16, 0xba, 0x7d, 0x85, 0xee, 0xc3, 0x22, - 0xba, 0xac, 0x9b, 0x71, 0x70, 0x39, 0xa9, 0xc0, 0xb6, 0x9a, 0x08, 0xf7, 0x23, 0xd9, 0xa1, 0x10, - 0xc1, 0x1f, 0x35, 0xb0, 0x96, 0x5a, 0xe1, 0xd0, 0x8e, 0x0e, 0x6d, 0x13, 0x0f, 0x5b, 0x3d, 0xe2, - 0xd4, 0xcb, 0x1b, 0xda, 0xed, 0x65, 0x73, 0x6f, 0x34, 0xd4, 0xb7, 0x8b, 0xc7, 0x17, 0x54, 0xc7, - 0x11, 0x14, 0x15, 0x50, 0x5a, 0xa1, 0x6d, 0x29, 0xda, 0x93, 0x12, 0xf8, 0xa7, 0x06, 0x26, 0xd8, - 0xd9, 0xbe, 0xeb, 0x52, 0xce, 0xd2, 0x42, 0x2e, 0xcd, 0x4a, 0x55, 0x5b, 0xa5, 0xea, 0x68, 0x1a, - 0xd6, 0xa2, 0xcb, 0xe9, 0xa0, 0xc7, 0x34, 0x45, 0x0a, 0xf5, 0x62, 0x04, 0x3b, 0x52, 0x2d, 0x29, - 0xf4, 0xe4, 0x48, 0x02, 0x72, 0x4a, 0x70, 0x2f, 0x13, 0xc9, 0xf2, 0x4b, 0x47, 0x52, 0x74, 0x39, - 0x3d, 0x92, 0x31, 0xcd, 0xc9, 0x91, 0x20, 0xa9, 0x96, 0x44, 0xf2, 0x9b, 0x06, 0xde, 0x98, 0x96, - 0x96, 0xf6, 0x09, 0x21, 0xf5, 0xca, 0xac, 0xb9, 0xfe, 0x42, 0xc5, 0xb0, 0xff, 0xfc, 0x6a, 0x44, - 0xce, 0x66, 0xd5, 0x41, 0xe8, 0xa0, 0xb5, 0xc9, 0xd9, 0x7f, 0x40, 0xc8, 0x14, 0xb4, 0x32, 0x74, - 0x81, 0x16, 0xbc, 0x34, 0xda, 0xd4, 0xd9, 0xac, 0x5c, 0x4f, 0x41, 0x2b, 0x33, 0x1c, 0xa1, 0xfd, - 0x43, 0x03, 0x37, 0xc6, 0x8d, 0x5d, 0xea, 0x51, 0x37, 0x74, 0xdb, 0x16, 0x75, 0xea, 0xd5, 0x59, - 0x70, 0xbf, 0x54, 0x70, 0x0f, 0xa6, 0xc1, 0xcd, 0x78, 0x9b, 0x8e, 0x37, 0xab, 0x84, 0xd6, 0x8b, - 0x80, 0x3f, 0x93, 0x52, 0x93, 0x3a, 0xcd, 0x9f, 0x4b, 0xa0, 0x8c, 0xc4, 0xb6, 0x87, 0xb7, 0xc0, - 0x3c, 0x75, 0xc4, 0xb5, 0x56, 0x31, 0xaf, 0x8f, 0x86, 0xfa, 0x6b, 0x12, 0x41, 0x7a, 0x4c, 0xe4, - 0x6b, 0x9e, 0x3a, 0xf0, 0x3d, 0xb0, 0x64, 0xf9, 0x9e, 0xd3, 0xa6, 0x8e, 0xb8, 0x8f, 0x2a, 0xa6, - 0x3e, 0x1a, 0xea, 0xaf, 0x4b, 0xed, 0x48, 0x70, 0x90, 0x58, 0x28, 0x0a, 0x95, 0xe5, 0x07, 0x7c, - 0x08, 0xaa, 0x76, 0x40, 0x30, 0x27, 0xed, 0xe8, 0x76, 0x16, 0x37, 0x48, 0xc5, 0xbc, 0x35, 0x1a, - 0xea, 0x6f, 0x49, 0x6b, 0x29, 0x3c, 0xa6, 0x6e, 0x52, 0x8a, 0x0c, 0x07, 0x81, 0x94, 0x88, 0x3c, - 0x91, 0xc7, 0x7d, 0x1a, 0x0c, 0xa4, 0xa7, 0x85, 0xa2, 0x27, 0x29, 0xcc, 0x7a, 0xca, 0x70, 0x10, - 0x48, 0x09, 0x58, 0x07, 0x4b, 0x0e, 0xe9, 0x11, 0x4e, 0xe4, 0xca, 0x5e, 0x46, 0x31, 0x09, 0xef, - 0x83, 0xb2, 0xff, 0x9d, 0x47, 0x02, 0x56, 0x2f, 0x6f, 0x94, 0xf2, 0x61, 0x4a, 0x7e, 0xec, 0x5a, - 0x51, 0x48, 0xa9, 0xc3, 0x7d, 0x00, 0x30, 0xe7, 0x01, 0xb5, 0x42, 0x4e, 0x98, 0xd8, 0x6e, 0x39, - 0x6c, 0xa9, 0x2c, 0x29, 0x60, 0xca, 0x41, 0x19, 0xd3, 0x66, 0x17, 0xd4, 0xb6, 0xe3, 0xda, 0xed, - 0x79, 0x3c, 0x18, 0x40, 0x08, 0x16, 0xa2, 0xd7, 0x91, 0x2c, 0x13, 0x12, 0xdf, 0xd0, 0x04, 0x8b, - 0x24, 0x12, 0xaa, 0xd7, 0xc1, 0xdb, 0xad, 0xe7, 0xbe, 0xa4, 0x5a, 0x9f, 0x63, 0x97, 0x24, 0x5e, - 0x91, 0x34, 0x6d, 0xfe, 0x5d, 0x02, 0x2b, 0x39, 0x01, 0xfc, 0x0a, 0xbc, 0x2a, 0xc2, 0x69, 0xf7, - 0x43, 0xab, 0x47, 0xed, 0xf6, 0x23, 0x32, 0x50, 0xcd, 0x61, 0xa4, 0x77, 0xba, 0xd0, 0x38, 0x14, - 0x0a, 0x9f, 0x92, 0x41, 0x2e, 0x1f, 0x29, 0x17, 0xd5, 0xf2, 0x0c, 0x78, 0x08, 0x56, 0xa4, 0x6b, - 0xec, 0x38, 0x01, 0x61, 0x4c, 0xb5, 0xd1, 0xe6, 0x68, 0xa8, 0xdf, 0xca, 0xf8, 0xdd, 0x96, 0xd2, - 0x9c, 0xd7, 0x98, 0x87, 0xae, 0x64, 0x49, 0x78, 0x0d, 0x94, 0xbb, 0x84, 0x76, 0xba, 0xf2, 0x55, - 0xb2, 0x80, 0x14, 0x15, 0xf1, 0x19, 0xc7, 0x3c, 0x64, 0xb2, 0x43, 0x90, 0xa2, 0xe0, 0x2e, 0x00, - 0xf1, 0xa8, 0x50, 0x59, 0xf7, 0x8a, 0x79, 0x73, 0x34, 0xd4, 0xdf, 0x8c, 0xa7, 0x4e, 0xc8, 0x0e, - 0x76, 0xd3, 0x09, 0x8b, 0x19, 0xa8, 0x12, 0x7f, 0xe7, 0x06, 0xa1, 0x3c, 0x71, 0x10, 0x76, 0x73, - 0x83, 0xb0, 0x9b, 0x0e, 0x42, 0x2f, 0xdf, 0xbe, 0xf2, 0x02, 0x5c, 0x1f, 0xbb, 0x36, 0x8e, 0xe3, - 0x37, 0xac, 0x69, 0xa8, 0xb5, 0x70, 0x99, 0xf6, 0x3e, 0x8b, 0xee, 0x81, 0x4c, 0x8b, 0x37, 0xbf, - 0x01, 0x95, 0xa8, 0xb6, 0xd3, 0x3b, 0xe8, 0xe3, 0x7c, 0x07, 0xdd, 0xb9, 0x44, 0x07, 0xc9, 0xa5, - 0x11, 0xb7, 0xcf, 0xaf, 0x1a, 0x00, 0x29, 0x17, 0x3e, 0x00, 0xe5, 0x1e, 0xe6, 0x84, 0xc5, 0xaf, - 0xe4, 0xd6, 0xa5, 0x1d, 0x0a, 0x8c, 0x48, 0x59, 0xc3, 0x87, 0x60, 0xa9, 0x4b, 0x19, 0xf7, 0x05, - 0xb2, 0xd2, 0x0b, 0x38, 0x8a, 0xcd, 0x9b, 0xef, 0x83, 0x57, 0x0a, 0x32, 0x58, 0x4b, 0xf7, 0x9d, - 0x58, 0x6b, 0x69, 0x0f, 0xcd, 0x67, 0x7b, 0xa8, 0x19, 0x80, 0xca, 0x11, 0xed, 0x78, 0x98, 0x87, - 0x01, 0x81, 0x9b, 0xa0, 0xc4, 0x68, 0x47, 0x0d, 0xc2, 0xda, 0x68, 0xa8, 0x5f, 0x95, 0x05, 0x61, - 0xb4, 0x13, 0x57, 0x22, 0xfa, 0x44, 0x91, 0x56, 0xd4, 0x1f, 0xfd, 0xd0, 0x12, 0x93, 0x33, 0xb6, - 0x28, 0xfb, 0xa1, 0x95, 0x99, 0x18, 0x45, 0xa1, 0xb2, 0xfa, 0xf8, 0x69, 0x1e, 0xd4, 0xcc, 0x9e, - 0x6f, 0x3f, 0xda, 0xe9, 0x62, 0xaf, 0x43, 0x8e, 0x08, 0xcf, 0xc0, 0x8b, 0x0e, 0x2f, 0x25, 0x2d, - 0x5e, 0x07, 0x4b, 0xf2, 0xb9, 0xce, 0x44, 0x8e, 0x2a, 0x28, 0x26, 0xe1, 0x3a, 0x58, 0x56, 0xbd, - 0xca, 0xea, 0x25, 0x21, 0x4a, 0x68, 0xf8, 0x03, 0xb8, 0x12, 0x0f, 0x80, 0x45, 0x9d, 0x68, 0x3c, - 0xa2, 0xf4, 0x6e, 0xcd, 0x48, 0xaf, 0xba, 0x3f, 0x4c, 0xea, 0x1c, 0x78, 0x27, 0xbe, 0x79, 0x27, - 0xfd, 0xbb, 0xc1, 0x89, 0x84, 0x15, 0x66, 0x46, 0xb0, 0x50, 0x35, 0x43, 0xc1, 0x0d, 0x50, 0x8d, - 0xaf, 0x24, 0x4a, 0x58, 0x7d, 0x51, 0x60, 0xcb, 0xb2, 0xe0, 0x2a, 0x58, 0x14, 0xe7, 0xcb, 0xcd, - 0x8b, 0x24, 0xd1, 0xfc, 0x5d, 0x8b, 0xf6, 0x61, 0x16, 0x42, 0x61, 0x90, 0xb5, 0x17, 0x1c, 0xe4, - 0x63, 0x50, 0xb3, 0xa8, 0xe3, 0x8c, 0x6d, 0xa4, 0xad, 0xd1, 0x50, 0xbf, 0xa3, 0xe6, 0x59, 0xc8, - 0x0b, 0x2b, 0x29, 0xcf, 0x44, 0x2b, 0x39, 0xda, 0xfc, 0xe4, 0xe9, 0x79, 0x43, 0x7b, 0x76, 0xde, - 0xd0, 0xfe, 0x3b, 0x6f, 0x68, 0x67, 0x17, 0x8d, 0xb9, 0x67, 0x17, 0x8d, 0xb9, 0xbf, 0x2e, 0x1a, - 0x73, 0x5f, 0xbf, 0xd3, 0xa1, 0xbc, 0x1b, 0x5a, 0x2d, 0xdb, 0x77, 0x0d, 0xde, 0xc5, 0x01, 0xa3, - 0xcc, 0x20, 0xbc, 0x4b, 0x02, 0x97, 0x7a, 0xdc, 0x78, 0x9c, 0xfb, 0x63, 0xe6, 0x83, 0x3e, 0x61, - 0x56, 0x59, 0xec, 0x84, 0x7b, 0xff, 0x07, 0x00, 0x00, 0xff, 0xff, 0x6a, 0x12, 0x43, 0x47, 0x57, - 0x0f, 0x00, 0x00, + // 1325 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x57, 0xdd, 0x6e, 0x1b, 0xc5, + 0x17, 0xcf, 0xc6, 0x89, 0x13, 0x4f, 0x1a, 0xff, 0xff, 0x1a, 0xd2, 0x76, 0x13, 0xa8, 0x37, 0x18, + 0x55, 0x6d, 0x55, 0xea, 0xa5, 0xf4, 0xa2, 0x7c, 0x08, 0xa1, 0x6c, 0xd2, 0xa6, 0x01, 0x01, 0x61, + 0xda, 0x1b, 0xb8, 0x31, 0xb3, 0xbb, 0x53, 0x7b, 0xa8, 0x77, 0xd7, 0xda, 0x99, 0x0d, 0x35, 0x5c, + 0xf1, 0x06, 0x95, 0xb8, 0xe9, 0x05, 0xe2, 0x05, 0x40, 0xe2, 0x31, 0xe8, 0x65, 0x2f, 0x11, 0x12, + 0x06, 0xb5, 0x6f, 0xe0, 0x27, 0x40, 0x3b, 0x1f, 0xfb, 0x65, 0xbb, 0x8e, 0xda, 0xbb, 0x3d, 0xe7, + 0x77, 0xce, 0x99, 0xdf, 0x9c, 0x39, 0xe7, 0xcc, 0x2c, 0xb0, 0x4f, 0x92, 0x81, 0x87, 0x43, 0xfa, + 0x3d, 0xb1, 0x43, 0x1c, 0x10, 0x46, 0xe2, 0x13, 0xea, 0x11, 0xfb, 0xe4, 0xba, 0x4b, 0x38, 0xbe, + 0x5e, 0xd4, 0x75, 0x86, 0x71, 0xc4, 0x23, 0x78, 0x21, 0x73, 0xe8, 0x14, 0x41, 0xe5, 0xb0, 0xd3, + 0xea, 0x45, 0x51, 0x6f, 0x40, 0x6c, 0x61, 0xec, 0x26, 0xf7, 0x6d, 0x3f, 0x89, 0x31, 0xa7, 0x51, + 0x28, 0xdd, 0x77, 0xac, 0x2a, 0xce, 0x69, 0x40, 0x18, 0xc7, 0xc1, 0x50, 0x19, 0x6c, 0xf5, 0xa2, + 0x5e, 0x24, 0x3e, 0xed, 0xf4, 0x4b, 0x69, 0x5b, 0x5e, 0xc4, 0x82, 0x88, 0xd9, 0x2e, 0x66, 0x39, + 0x39, 0x2f, 0xa2, 0x2a, 0x6c, 0xfb, 0xef, 0x4d, 0x50, 0x3f, 0xc6, 0x31, 0x0e, 0x18, 0xa4, 0x60, + 0x23, 0x26, 0x5e, 0x14, 0xfb, 0xdd, 0x98, 0x84, 0xdc, 0x34, 0x76, 0x8d, 0xcb, 0x1b, 0xef, 0x6e, + 0x77, 0x64, 0x80, 0x4e, 0x1a, 0x40, 0x93, 0xed, 0xec, 0x47, 0x34, 0x74, 0xae, 0x3d, 0x19, 0x5b, + 0x4b, 0x93, 0xb1, 0x75, 0xf1, 0x5b, 0x16, 0x85, 0x1f, 0xb4, 0x0b, 0xbe, 0xed, 0xdd, 0x11, 0x0e, + 0x06, 0x65, 0x15, 0x02, 0x52, 0x42, 0x24, 0xe4, 0xf0, 0x91, 0x01, 0xb6, 0x0a, 0x60, 0x57, 0xef, + 0xd5, 0x5c, 0x56, 0x8b, 0xca, 0xcd, 0x76, 0xf4, 0x66, 0x3b, 0x07, 0xca, 0xc0, 0xd9, 0x57, 0x8b, + 0xde, 0x9c, 0x5a, 0x34, 0x0b, 0x32, 0x63, 0xf5, 0x1c, 0x7b, 0xfc, 0x8f, 0x65, 0x20, 0x98, 0x53, + 0xd1, 0x81, 0x61, 0x02, 0x9a, 0x38, 0xe1, 0xfd, 0x28, 0xa6, 0x7c, 0x24, 0x13, 0x50, 0x5b, 0x94, + 0x80, 0x1b, 0x8a, 0xcb, 0x55, 0xc9, 0xa5, 0xec, 0xae, 0x59, 0x54, 0xb4, 0x68, 0x33, 0x53, 0x88, + 0x4c, 0xfc, 0x6c, 0x80, 0xf3, 0x65, 0x93, 0x3c, 0x19, 0x2b, 0x8b, 0x92, 0x71, 0xa4, 0x08, 0x7c, + 0x34, 0x8b, 0xc0, 0x54, 0x3e, 0xe6, 0xc1, 0x22, 0x25, 0x67, 0x4b, 0xb4, 0xb2, 0xac, 0x3c, 0x36, + 0xc0, 0xb9, 0xdc, 0xaf, 0x17, 0x63, 0x8f, 0x74, 0x87, 0x24, 0xa6, 0x91, 0x6f, 0xae, 0x2e, 0x62, + 0x77, 0xa8, 0xd8, 0x7d, 0x58, 0x65, 0x57, 0x0c, 0x33, 0x4d, 0xae, 0x84, 0x0a, 0x6e, 0x5b, 0x19, + 0x78, 0x98, 0x62, 0xc7, 0x02, 0x82, 0x3f, 0x1a, 0x60, 0x3b, 0xf7, 0xc2, 0x89, 0x97, 0x2e, 0xda, + 0x25, 0x21, 0x76, 0x07, 0xc4, 0x37, 0xeb, 0xbb, 0xc6, 0xe5, 0x75, 0xe7, 0xd6, 0x64, 0x6c, 0xed, + 0x55, 0x97, 0xaf, 0x98, 0x4e, 0x33, 0xa8, 0x1a, 0xa0, 0xfc, 0x84, 0xf6, 0x24, 0x74, 0x4b, 0x22, + 0xf0, 0x0f, 0x03, 0xcc, 0xf0, 0xf3, 0xa2, 0x20, 0xa0, 0x9c, 0xe5, 0x07, 0xb9, 0xb6, 0x28, 0x55, + 0x5d, 0x95, 0xaa, 0xbb, 0xf3, 0xb8, 0x56, 0x43, 0xce, 0x27, 0x3d, 0x65, 0x29, 0x52, 0x68, 0x55, + 0x77, 0xb0, 0x2f, 0xcd, 0xb2, 0x83, 0x9e, 0xbd, 0x93, 0x98, 0x9c, 0x10, 0x3c, 0x28, 0xec, 0x64, + 0xfd, 0x95, 0x77, 0x52, 0x0d, 0x39, 0x7f, 0x27, 0x53, 0x96, 0xb3, 0x77, 0x82, 0xa4, 0x59, 0xb6, + 0x93, 0x5f, 0x0d, 0xf0, 0xc6, 0xbc, 0xb4, 0x74, 0xef, 0x13, 0x62, 0x36, 0x16, 0xf5, 0xf5, 0x17, + 0x6a, 0x0f, 0x87, 0x2f, 0x3e, 0x8d, 0x34, 0xd8, 0xa2, 0x73, 0x10, 0x36, 0x68, 0x7b, 0x76, 0xf6, + 0x6f, 0x13, 0x32, 0x87, 0xad, 0xdc, 0xba, 0x60, 0x0b, 0x5e, 0x99, 0x6d, 0x1e, 0x6c, 0x51, 0xae, + 0xe7, 0xb0, 0x95, 0x19, 0x4e, 0xd9, 0xfe, 0x6e, 0x80, 0x0b, 0xd3, 0xce, 0x01, 0x0d, 0x69, 0x90, + 0x04, 0x5d, 0x97, 0xfa, 0xe6, 0xc6, 0x22, 0xba, 0x5f, 0x2a, 0xba, 0x47, 0xf3, 0xe8, 0x16, 0xa2, + 0xcd, 0xe7, 0x5b, 0x34, 0x42, 0x3b, 0x55, 0xc2, 0x9f, 0x49, 0xd4, 0xa1, 0x7e, 0xfb, 0x69, 0x0d, + 0xd4, 0x91, 0x98, 0xf6, 0xf0, 0x12, 0x58, 0xa6, 0xbe, 0xb8, 0xd6, 0x1a, 0xce, 0xf9, 0xc9, 0xd8, + 0x7a, 0x4d, 0x32, 0xc8, 0x97, 0x49, 0x63, 0x2d, 0x53, 0x1f, 0xbe, 0x07, 0xd6, 0xdc, 0x28, 0xf4, + 0xbb, 0xd4, 0x17, 0xf7, 0x51, 0xc3, 0xb1, 0x26, 0x63, 0xeb, 0x75, 0x69, 0x9d, 0x02, 0x47, 0x99, + 0x87, 0x92, 0x50, 0x5d, 0x7e, 0xc0, 0x3b, 0x60, 0xc3, 0x8b, 0x09, 0xe6, 0xa4, 0x9b, 0xde, 0xce, + 0xe2, 0x06, 0x69, 0x38, 0x97, 0x26, 0x63, 0xeb, 0x2d, 0xe9, 0x2d, 0xc1, 0x7b, 0x34, 0xc8, 0x8e, + 0xa2, 0xa0, 0x41, 0x20, 0x17, 0xd2, 0x48, 0xe4, 0xe1, 0x90, 0xc6, 0x23, 0x19, 0x69, 0xa5, 0x1a, + 0x49, 0x82, 0xc5, 0x48, 0x05, 0x0d, 0x02, 0xb9, 0x00, 0x4d, 0xb0, 0xe6, 0x93, 0x01, 0xe1, 0x44, + 0x8e, 0xec, 0x75, 0xa4, 0x45, 0x78, 0x13, 0xd4, 0xa3, 0xef, 0x42, 0x12, 0x33, 0xb3, 0xbe, 0x5b, + 0x2b, 0x6f, 0x53, 0xea, 0x75, 0x68, 0x25, 0x21, 0x65, 0x0e, 0x0f, 0x01, 0xc0, 0x9c, 0xc7, 0xd4, + 0x4d, 0x38, 0x61, 0x62, 0xba, 0x95, 0xb8, 0xe5, 0x58, 0x76, 0x80, 0xb9, 0x06, 0x15, 0x5c, 0xe1, + 0x0d, 0xb0, 0x2a, 0xde, 0x42, 0xe6, 0xba, 0x20, 0x70, 0x61, 0x32, 0xb6, 0xb6, 0x65, 0x0c, 0xa1, + 0xd6, 0xee, 0x52, 0x40, 0xd2, 0xb6, 0xdd, 0x07, 0xcd, 0x3d, 0x7d, 0xe0, 0xb7, 0x42, 0x1e, 0x8f, + 0x20, 0x04, 0x2b, 0x29, 0x24, 0xcf, 0x16, 0x89, 0x6f, 0xe8, 0x80, 0x55, 0x92, 0x82, 0xea, 0x49, + 0xf1, 0x76, 0xe7, 0x85, 0xcf, 0xaf, 0xce, 0xe7, 0x38, 0x20, 0x59, 0x54, 0x24, 0x5d, 0xdb, 0x7f, + 0xd5, 0xc0, 0x66, 0x09, 0x80, 0x5f, 0x81, 0xff, 0x8b, 0x1c, 0x74, 0x87, 0x89, 0x3b, 0xa0, 0x5e, + 0xf7, 0x01, 0x19, 0xa9, 0x8a, 0xb2, 0xf3, 0x87, 0x80, 0xb0, 0x38, 0x16, 0x06, 0x9f, 0x92, 0x51, + 0x29, 0x89, 0xb9, 0x16, 0x35, 0xcb, 0x0a, 0x78, 0x0c, 0x36, 0x65, 0x68, 0xec, 0xfb, 0x31, 0x61, + 0x4c, 0xd5, 0xde, 0xd5, 0xc9, 0xd8, 0xba, 0x54, 0x88, 0xbb, 0x27, 0xd1, 0x52, 0x54, 0xad, 0x43, + 0x67, 0x8a, 0x22, 0x3c, 0x07, 0xea, 0x7d, 0x42, 0x7b, 0x7d, 0xf9, 0x94, 0x59, 0x41, 0x4a, 0x4a, + 0xf5, 0x8c, 0x63, 0x9e, 0x30, 0x59, 0x56, 0x48, 0x49, 0xf0, 0x00, 0x00, 0xdd, 0x5f, 0x54, 0x16, + 0x4b, 0xc3, 0xb9, 0x38, 0x19, 0x5b, 0x6f, 0xea, 0x56, 0x15, 0xd8, 0xd1, 0x41, 0xde, 0x96, 0x5a, + 0x81, 0x1a, 0xfa, 0xbb, 0xd4, 0x3d, 0xf5, 0x99, 0xdd, 0x73, 0x50, 0xea, 0x9e, 0x83, 0xbc, 0x7b, + 0x06, 0xe5, 0x9a, 0x97, 0xb7, 0xe6, 0xce, 0xd4, 0x5d, 0x73, 0x4f, 0x3f, 0x7c, 0x1d, 0x5b, 0xcd, + 0x92, 0xd3, 0xf4, 0xc4, 0xa3, 0xf4, 0xf2, 0x28, 0xf4, 0x45, 0xfb, 0x1b, 0xd0, 0x48, 0xcf, 0x76, + 0x7e, 0x05, 0x7d, 0x5c, 0xae, 0xa0, 0x2b, 0xa7, 0xa8, 0x20, 0x39, 0x69, 0x74, 0xf9, 0xfc, 0x62, + 0x00, 0x90, 0x6b, 0xe1, 0x6d, 0x50, 0x1f, 0x60, 0x4e, 0x98, 0x7e, 0x5a, 0x77, 0x4e, 0x1d, 0x50, + 0x70, 0x44, 0xca, 0x1b, 0xde, 0x01, 0x6b, 0x7d, 0xca, 0x78, 0x24, 0x98, 0xd5, 0x5e, 0x22, 0x90, + 0x76, 0x6f, 0xbf, 0x0f, 0xfe, 0x57, 0xc1, 0x60, 0x33, 0x1f, 0x92, 0x62, 0x16, 0xe6, 0x35, 0xb4, + 0x5c, 0xac, 0xa1, 0x76, 0x0c, 0x1a, 0x77, 0x69, 0x2f, 0xc4, 0x3c, 0x89, 0x09, 0xbc, 0x0a, 0x6a, + 0x8c, 0xf6, 0x54, 0x23, 0x6c, 0x4f, 0xc6, 0xd6, 0x59, 0x79, 0x20, 0x8c, 0xf6, 0xf4, 0x49, 0xa4, + 0x9f, 0x28, 0xb5, 0x4a, 0xeb, 0x63, 0x98, 0xb8, 0xa2, 0x73, 0xa6, 0xa6, 0xeb, 0x30, 0x71, 0x0b, + 0x1d, 0xa3, 0x24, 0x54, 0x57, 0x1f, 0x3f, 0x2d, 0x83, 0xa6, 0x33, 0x88, 0xbc, 0x07, 0xfb, 0x7d, + 0x1c, 0xf6, 0xc8, 0x5d, 0xc2, 0x0b, 0xf4, 0xd2, 0xc5, 0x6b, 0x59, 0x89, 0x9b, 0x60, 0x4d, 0xbe, + 0xf1, 0x99, 0xc8, 0x51, 0x03, 0x69, 0x11, 0xee, 0x80, 0x75, 0x55, 0xab, 0xcc, 0xac, 0x09, 0x28, + 0x93, 0xe1, 0x0f, 0xe0, 0x8c, 0x6e, 0x00, 0x97, 0xfa, 0x69, 0x7b, 0xa4, 0xe9, 0xbd, 0xb6, 0x20, + 0xbd, 0xea, 0xd2, 0x71, 0xa8, 0x7f, 0x14, 0xde, 0x8f, 0x9c, 0x2b, 0xf9, 0x2f, 0x11, 0xce, 0x10, + 0x56, 0xe9, 0x19, 0xa1, 0x42, 0x1b, 0x05, 0x09, 0xee, 0x82, 0x0d, 0x7d, 0x8f, 0x51, 0xc2, 0xcc, + 0x55, 0xc1, 0xad, 0xa8, 0x82, 0x5b, 0x7a, 0x5a, 0x8a, 0x71, 0xad, 0xc7, 0xe1, 0x6f, 0x46, 0x3a, + 0x0f, 0x8b, 0x14, 0x2a, 0x8d, 0x6c, 0xbc, 0x64, 0x23, 0xdf, 0x03, 0x4d, 0x97, 0xfa, 0xfe, 0xd4, + 0x44, 0xba, 0x36, 0x19, 0x5b, 0x57, 0x54, 0x3f, 0x0b, 0xbc, 0x32, 0x92, 0xca, 0x4a, 0xb4, 0x59, + 0x92, 0x9d, 0x4f, 0x9e, 0x3c, 0x6b, 0x19, 0x4f, 0x9f, 0xb5, 0x8c, 0x7f, 0x9f, 0xb5, 0x8c, 0x47, + 0xcf, 0x5b, 0x4b, 0x4f, 0x9f, 0xb7, 0x96, 0xfe, 0x7c, 0xde, 0x5a, 0xfa, 0xfa, 0x9d, 0x1e, 0xe5, + 0xfd, 0xc4, 0xed, 0x78, 0x51, 0x60, 0xf3, 0x3e, 0x8e, 0x19, 0x65, 0x36, 0xe1, 0x7d, 0x12, 0x07, + 0x34, 0xe4, 0xf6, 0xc3, 0xd2, 0x6f, 0x36, 0x1f, 0x0d, 0x09, 0x73, 0xeb, 0x62, 0x26, 0xdc, 0xf8, + 0x2f, 0x00, 0x00, 0xff, 0xff, 0x7f, 0x95, 0x34, 0xdd, 0x8c, 0x0f, 0x00, 0x00, } func (m *Params) Marshal() (dAtA []byte, err error) { @@ -992,6 +1001,15 @@ func (m *Record) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l + if len(m.Names) > 0 { + for iNdEx := len(m.Names) - 1; iNdEx >= 0; iNdEx-- { + i -= len(m.Names[iNdEx]) + copy(dAtA[i:], m.Names[iNdEx]) + i = encodeVarintNameservice(dAtA, i, uint64(len(m.Names[iNdEx]))) + i-- + dAtA[i] = 0x42 + } + } if len(m.Attributes) > 0 { i -= len(m.Attributes) copy(dAtA[i:], m.Attributes) @@ -1518,6 +1536,12 @@ func (m *Record) Size() (n int) { if l > 0 { n += 1 + l + sovNameservice(uint64(l)) } + if len(m.Names) > 0 { + for _, s := range m.Names { + l = len(s) + n += 1 + l + sovNameservice(uint64(l)) + } + } return n } @@ -2347,6 +2371,38 @@ func (m *Record) Unmarshal(dAtA []byte) error { } m.Attributes = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex + case 8: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Names", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowNameservice + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthNameservice + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthNameservice + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Names = append(m.Names, string(dAtA[iNdEx:postIndex])) + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipNameservice(dAtA[iNdEx:]) diff --git a/x/nameservice/types/query.pb.go b/x/nameservice/types/query.pb.go index cfb3d364..c96e6f62 100644 --- a/x/nameservice/types/query.pb.go +++ b/x/nameservice/types/query.pb.go @@ -117,8 +117,9 @@ func (m *QueryParamsResponse) GetParams() *Params { // QueryListRecordsRequest is request type for nameservice records list type QueryListRecordsRequest struct { Attributes []*QueryListRecordsRequest_KeyValueInput `protobuf:"bytes,1,rep,name=attributes,proto3" json:"attributes,omitempty"` + All bool `protobuf:"varint,2,opt,name=all,proto3" json:"all,omitempty"` // pagination defines an optional pagination for the request. - Pagination *query.PageRequest `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"` + Pagination *query.PageRequest `protobuf:"bytes,3,opt,name=pagination,proto3" json:"pagination,omitempty"` } func (m *QueryListRecordsRequest) Reset() { *m = QueryListRecordsRequest{} } @@ -161,6 +162,13 @@ func (m *QueryListRecordsRequest) GetAttributes() []*QueryListRecordsRequest_Key return nil } +func (m *QueryListRecordsRequest) GetAll() bool { + if m != nil { + return m.All + } + return false +} + func (m *QueryListRecordsRequest) GetPagination() *query.PageRequest { if m != nil { return m.Pagination @@ -1316,90 +1324,90 @@ func init() { } var fileDescriptor_73d2465766c8f876 = []byte{ - // 1313 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x58, 0x4f, 0x6c, 0xdc, 0xc4, - 0x17, 0xce, 0x64, 0x9b, 0xf4, 0x97, 0xb7, 0xbf, 0x26, 0x64, 0x88, 0xda, 0xd4, 0x4d, 0x37, 0xc5, - 0xcd, 0x9f, 0x0d, 0x64, 0xed, 0x6c, 0x4a, 0xd3, 0x36, 0x15, 0x88, 0x6c, 0x1a, 0xa2, 0x94, 0x82, - 0x88, 0x41, 0x04, 0x71, 0xa0, 0xf2, 0xee, 0x0e, 0x1b, 0x93, 0x5d, 0xcf, 0xd6, 0x1e, 0x27, 0xdd, - 0x56, 0xbd, 0x70, 0x28, 0x57, 0x24, 0xce, 0x20, 0x90, 0x38, 0x55, 0x02, 0xae, 0xbd, 0x73, 0x89, - 0x38, 0x55, 0x82, 0x03, 0xa7, 0x80, 0x12, 0x24, 0xee, 0x3d, 0x72, 0x42, 0x1e, 0x8f, 0xbd, 0x76, - 0xb2, 0x89, 0xbd, 0x9b, 0x20, 0x71, 0x8a, 0x77, 0xe6, 0xfd, 0xf9, 0xbe, 0xf7, 0x66, 0x9e, 0x3f, - 0x07, 0xa6, 0x36, 0x9d, 0x6a, 0x49, 0x37, 0x8d, 0x07, 0x44, 0x35, 0xf5, 0x1a, 0xb1, 0x89, 0xb5, - 0x69, 0x94, 0x88, 0xba, 0x99, 0x2f, 0x12, 0xa6, 0xe7, 0xd5, 0x7b, 0x0e, 0xb1, 0x1a, 0x4a, 0xdd, - 0xa2, 0x8c, 0xe2, 0x8b, 0x81, 0xa9, 0x12, 0x32, 0x55, 0x84, 0xa9, 0xa4, 0x1e, 0x1d, 0x29, 0xec, - 0xc2, 0xe3, 0x49, 0x23, 0x15, 0x4a, 0x2b, 0x55, 0xa2, 0xea, 0x75, 0x43, 0xd5, 0x4d, 0x93, 0x32, - 0x9d, 0x19, 0xd4, 0xb4, 0xc5, 0xee, 0xcb, 0x25, 0x6a, 0xd7, 0xa8, 0xad, 0x16, 0x75, 0x9b, 0x78, - 0x30, 0x82, 0x50, 0x75, 0xbd, 0x62, 0x98, 0xdc, 0x58, 0xd8, 0x0e, 0x55, 0x68, 0x85, 0xf2, 0x47, - 0xd5, 0x7d, 0x12, 0xab, 0x99, 0x70, 0x04, 0xdf, 0xb7, 0x44, 0x0d, 0xe1, 0x25, 0x0f, 0x01, 0x5e, - 0x75, 0xe3, 0xbe, 0xab, 0x5b, 0x7a, 0xcd, 0xd6, 0xc8, 0x3d, 0x87, 0xd8, 0x4c, 0x7e, 0x1f, 0x5e, - 0x8c, 0xac, 0xda, 0x75, 0x6a, 0xda, 0x04, 0xbf, 0x06, 0xbd, 0x75, 0xbe, 0x32, 0x8c, 0x2e, 0xa1, - 0x6c, 0x7a, 0x76, 0x5c, 0x39, 0xb2, 0x1a, 0x8a, 0x70, 0x17, 0x4e, 0xf2, 0xe7, 0x29, 0x38, 0xc7, - 0xc3, 0xde, 0x31, 0x6c, 0xa6, 0x91, 0x12, 0xb5, 0xca, 0x7e, 0x46, 0x5c, 0x06, 0xd0, 0x19, 0xb3, - 0x8c, 0xa2, 0xc3, 0x88, 0x1b, 0x3e, 0x95, 0x4d, 0xcf, 0xde, 0x8a, 0x09, 0x7f, 0x48, 0x2c, 0xe5, - 0x2d, 0xd2, 0xf8, 0x40, 0xaf, 0x3a, 0x64, 0xc5, 0xac, 0x3b, 0x4c, 0x0b, 0xc5, 0xc5, 0x6f, 0x02, - 0x34, 0xeb, 0x36, 0xdc, 0xcd, 0x49, 0x4c, 0x28, 0x5e, 0x89, 0x14, 0xb7, 0x44, 0x8a, 0xd7, 0xeb, - 0x26, 0x81, 0x0a, 0x11, 0x51, 0xb5, 0x90, 0xa7, 0x54, 0x00, 0x68, 0x66, 0xc0, 0x23, 0xd0, 0x6b, - 0x33, 0xcb, 0x30, 0x2b, 0xbc, 0x2c, 0x7d, 0x85, 0x53, 0xdb, 0x3b, 0xa3, 0x48, 0x13, 0x6b, 0xf8, - 0x2c, 0xa4, 0x0c, 0x93, 0xf1, 0x64, 0x29, 0xb1, 0xe5, 0x2e, 0x48, 0x0f, 0xe0, 0x4c, 0x04, 0x28, - 0x7e, 0x01, 0x52, 0x1b, 0xa4, 0xe1, 0xc5, 0xd0, 0xdc, 0x47, 0xbc, 0x06, 0x3d, 0x9b, 0xee, 0xbe, - 0x40, 0xba, 0xd0, 0x61, 0x3d, 0x42, 0xc5, 0xf0, 0xe2, 0xc9, 0x4f, 0x10, 0x0c, 0x1f, 0xb4, 0x16, - 0x5d, 0x5e, 0x82, 0xd3, 0x96, 0xb7, 0x24, 0xfa, 0x10, 0xd7, 0x66, 0x2f, 0x00, 0xe7, 0xd6, 0xa5, - 0xf9, 0xbe, 0x78, 0xb9, 0x45, 0xad, 0x27, 0x63, 0x6b, 0xed, 0x61, 0x08, 0x17, 0x5b, 0xce, 0xc2, - 0x59, 0x8e, 0x55, 0xa4, 0x69, 0xac, 0x94, 0xfd, 0x43, 0xd3, 0x0f, 0xdd, 0x46, 0x59, 0x14, 0xac, - 0xdb, 0x28, 0xcb, 0x1f, 0x8b, 0xf3, 0x15, 0xb6, 0x14, 0xa4, 0x16, 0xa1, 0xd7, 0x03, 0x96, 0xf0, - 0xe8, 0x46, 0x38, 0x09, 0x57, 0x99, 0x81, 0x14, 0x89, 0x5f, 0xa0, 0x66, 0xf9, 0x50, 0x34, 0x27, - 0x75, 0xd8, 0xe4, 0xef, 0x11, 0x5c, 0x68, 0x99, 0xf6, 0x3f, 0xda, 0xaf, 0x31, 0x90, 0x97, 0x09, - 0x7b, 0x47, 0xaf, 0x91, 0xf7, 0xbc, 0xc4, 0x6f, 0xd3, 0xb2, 0x53, 0x25, 0x05, 0xbd, 0xaa, 0x9b, - 0x25, 0x9f, 0xa1, 0x5c, 0x87, 0xcb, 0x47, 0x5a, 0x09, 0x72, 0x2b, 0xf0, 0xbf, 0xa2, 0xb7, 0xe4, - 0xb3, 0xcb, 0xc5, 0xb0, 0x5b, 0x28, 0x95, 0xa8, 0x63, 0x32, 0x3f, 0x50, 0xe0, 0x2e, 0xff, 0x85, - 0xa0, 0x3f, 0xba, 0x89, 0xef, 0xc0, 0xff, 0x75, 0x6f, 0xe5, 0xae, 0x1b, 0x4a, 0xdc, 0xdf, 0xa9, - 0xe7, 0x3b, 0xa3, 0xe3, 0x9f, 0xda, 0xd4, 0x9c, 0x97, 0xc5, 0xae, 0x0b, 0x53, 0xbe, 0xd4, 0xd0, - 0x6b, 0xd5, 0xe8, 0x92, 0x96, 0x0e, 0xfd, 0xc2, 0x8f, 0x11, 0x9c, 0x16, 0xd9, 0x86, 0x53, 0x1c, - 0xeb, 0xf9, 0x48, 0xfd, 0x7c, 0x84, 0x8b, 0xd4, 0x30, 0x0b, 0xab, 0x6e, 0xf5, 0x9f, 0xef, 0x8c, - 0x5e, 0xf4, 0x12, 0x09, 0x3f, 0x3f, 0x89, 0xff, 0xf3, 0xc9, 0xef, 0xa3, 0xd9, 0x8a, 0xc1, 0xd6, - 0x9d, 0xa2, 0x52, 0xa2, 0x35, 0x55, 0x0c, 0x73, 0xef, 0x4f, 0xce, 0x2e, 0x6f, 0xa8, 0xac, 0x51, - 0x27, 0x36, 0x8f, 0x68, 0x6b, 0x7e, 0x72, 0x99, 0x88, 0x03, 0xe3, 0xde, 0x6e, 0x17, 0xd9, 0xbe, - 0x59, 0x1b, 0x3d, 0x98, 0xe8, 0x38, 0x07, 0x73, 0xa4, 0x75, 0x1e, 0xd1, 0xbc, 0x5b, 0xd0, 0xc3, - 0x3b, 0x24, 0x3a, 0x97, 0x8d, 0xe9, 0x9c, 0x1b, 0x62, 0xc9, 0x64, 0x56, 0x43, 0x1c, 0x4d, 0xcf, - 0xf9, 0xe4, 0x0e, 0xe6, 0x24, 0x0c, 0x72, 0xb8, 0x6b, 0xeb, 0xd4, 0x08, 0x8a, 0x81, 0xe1, 0x54, - 0xb3, 0xf5, 0x1a, 0x7f, 0x96, 0xbf, 0x42, 0xe2, 0xad, 0x28, 0x2c, 0x05, 0x9d, 0xc7, 0x08, 0xfa, - 0xdd, 0xfd, 0xbb, 0xba, 0xc3, 0xd6, 0xa9, 0x65, 0xb0, 0x86, 0x28, 0xde, 0x74, 0x02, 0x62, 0x0b, - 0xbe, 0x4f, 0x21, 0x2f, 0x3a, 0x3f, 0xe5, 0x75, 0xde, 0x0c, 0x6f, 0xfa, 0xfd, 0x8f, 0x2e, 0x6a, - 0x67, 0xa2, 0xbf, 0x65, 0xe8, 0xf7, 0xea, 0x4e, 0xe9, 0x86, 0x53, 0x5f, 0xb3, 0x4c, 0xf7, 0xdd, - 0xb1, 0x65, 0x99, 0xfe, 0xbb, 0x63, 0xcb, 0x32, 0xe5, 0x35, 0x31, 0x35, 0x03, 0x9b, 0xd0, 0x5b, - 0xbc, 0xc9, 0x38, 0x3d, 0x3b, 0x95, 0x00, 0xbb, 0xd7, 0x57, 0x51, 0x9c, 0xcb, 0x30, 0x20, 0xa6, - 0x91, 0x4d, 0xab, 0x9b, 0xa4, 0x75, 0xf6, 0x0f, 0x83, 0x49, 0xec, 0x1b, 0x85, 0x45, 0x44, 0x07, - 0x93, 0x38, 0x98, 0xc1, 0x25, 0x38, 0xcf, 0x23, 0x2f, 0x13, 0xf1, 0xe2, 0x5a, 0xba, 0x5f, 0x37, - 0xac, 0xc6, 0xaa, 0x43, 0x1c, 0x72, 0x62, 0x27, 0xfb, 0x29, 0x82, 0x97, 0x0e, 0xcd, 0x12, 0x30, - 0xb9, 0xbd, 0x7f, 0xf0, 0xce, 0xc4, 0x50, 0x89, 0x04, 0xe1, 0xac, 0x4e, 0x7e, 0xfa, 0xde, 0x80, - 0xc1, 0x03, 0x69, 0x0e, 0xbc, 0x9a, 0x86, 0x9a, 0xc2, 0x22, 0x95, 0xed, 0xf3, 0x55, 0xc1, 0x27, - 0xe2, 0x3a, 0x2f, 0x13, 0x16, 0x9c, 0xb5, 0x7f, 0xa3, 0xba, 0x3f, 0x21, 0x18, 0x3b, 0x2a, 0x51, - 0x50, 0x60, 0x0d, 0xd2, 0xfe, 0x55, 0x33, 0x48, 0xe7, 0x45, 0x0e, 0x07, 0x39, 0xb1, 0x42, 0xcf, - 0xfe, 0x3d, 0x00, 0x3d, 0x9c, 0x05, 0xfe, 0x1a, 0x41, 0xaf, 0x27, 0x75, 0x71, 0x3e, 0x89, 0x44, - 0x8b, 0x68, 0x6d, 0x69, 0xb6, 0x1d, 0x17, 0x0f, 0x87, 0x9c, 0xfb, 0xec, 0x97, 0x3f, 0xbf, 0xec, - 0x9e, 0xc4, 0xe3, 0x31, 0xdf, 0x1b, 0x9e, 0xf0, 0xc6, 0x3f, 0x20, 0x48, 0x87, 0x94, 0x1e, 0x9e, - 0xeb, 0x4c, 0x48, 0x4a, 0xd7, 0xda, 0xf6, 0x13, 0x78, 0x15, 0x8e, 0x37, 0x8b, 0x27, 0x62, 0xf0, - 0xfa, 0xb7, 0xe1, 0x47, 0x04, 0x7d, 0xc1, 0xd5, 0xc3, 0x57, 0x93, 0xa4, 0x3d, 0xa0, 0x0e, 0xa5, - 0xb9, 0x76, 0xdd, 0x04, 0xd8, 0x2b, 0x1c, 0x6c, 0x0e, 0xbf, 0x92, 0x0c, 0xac, 0xfa, 0xd0, 0x28, - 0x3f, 0xc2, 0x3f, 0x23, 0x18, 0x0c, 0x10, 0xfb, 0x12, 0x0d, 0xdf, 0x68, 0x07, 0x42, 0x44, 0x4d, - 0x4a, 0xf3, 0x9d, 0xb8, 0x0a, 0x06, 0xaf, 0x73, 0x06, 0xd7, 0xf1, 0x5c, 0x32, 0x06, 0xb9, 0x62, - 0x23, 0x57, 0xa4, 0x66, 0x39, 0x67, 0x94, 0x3d, 0x32, 0xbf, 0x22, 0xb8, 0x70, 0x84, 0x38, 0xc3, - 0x71, 0x1f, 0x22, 0xf1, 0xf2, 0x4f, 0x2a, 0x1c, 0x27, 0x44, 0x9b, 0xa7, 0x4a, 0xc8, 0x22, 0xfc, - 0x14, 0xc1, 0xc0, 0x3e, 0xa9, 0x82, 0xe7, 0x93, 0x1e, 0xe9, 0x83, 0x3a, 0x4a, 0xba, 0xd9, 0x91, - 0xaf, 0x00, 0x3f, 0xcd, 0xc1, 0x4f, 0xe0, 0xb1, 0x24, 0xff, 0x32, 0xc0, 0xdf, 0x22, 0xe8, 0xe1, - 0x62, 0x04, 0xcf, 0x24, 0x49, 0x1a, 0x56, 0x38, 0x52, 0xbe, 0x0d, 0x8f, 0x36, 0xaf, 0xc0, 0x96, - 0xeb, 0xa5, 0x3e, 0x74, 0xb7, 0x1e, 0xe1, 0x6f, 0x10, 0xf4, 0x35, 0x15, 0x49, 0x2e, 0x51, 0x71, - 0x7c, 0x73, 0xe9, 0x6a, 0x5b, 0xe6, 0x6d, 0x0f, 0xc2, 0x2a, 0xf7, 0xc4, 0xdf, 0x21, 0x80, 0x90, - 0x6e, 0x51, 0x92, 0xdd, 0x31, 0xdf, 0x3e, 0xe9, 0x44, 0xd9, 0x2f, 0x79, 0xda, 0x18, 0x7f, 0xdc, - 0x15, 0x6f, 0x23, 0x18, 0x6a, 0xa9, 0x6f, 0xae, 0x27, 0x01, 0xd0, 0xca, 0x53, 0x7a, 0xa3, 0x53, - 0xcf, 0x80, 0xc4, 0xab, 0x9c, 0x84, 0x82, 0xa7, 0x13, 0x0d, 0x95, 0x1c, 0xe1, 0x21, 0xdc, 0x51, - 0x72, 0xee, 0x30, 0x3d, 0x71, 0x33, 0x21, 0xa6, 0x56, 0xce, 0xd2, 0xe2, 0x31, 0x9c, 0x03, 0x4e, - 0xd7, 0x38, 0xa7, 0x3c, 0x56, 0x63, 0x38, 0x05, 0x82, 0x5f, 0xd0, 0x2a, 0xdc, 0xde, 0xde, 0xcd, - 0xa0, 0x67, 0xbb, 0x19, 0xf4, 0xc7, 0x6e, 0x06, 0x7d, 0xb1, 0x97, 0xe9, 0x7a, 0xb6, 0x97, 0xe9, - 0xfa, 0x6d, 0x2f, 0xd3, 0xf5, 0xd1, 0x4c, 0xe8, 0x73, 0x8d, 0xad, 0xeb, 0x96, 0x6d, 0xd8, 0x2a, - 0x61, 0xeb, 0xc4, 0xaa, 0x19, 0x26, 0x53, 0xef, 0x47, 0xc2, 0xf3, 0x8f, 0xb7, 0x62, 0x2f, 0xff, - 0x4f, 0xdc, 0x95, 0x7f, 0x02, 0x00, 0x00, 0xff, 0xff, 0x86, 0x11, 0x51, 0x16, 0x86, 0x14, 0x00, - 0x00, + // 1327 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x58, 0x4d, 0x6c, 0x1b, 0x45, + 0x14, 0xce, 0xc4, 0x4d, 0xda, 0x3c, 0xd3, 0x94, 0x0e, 0x51, 0x9b, 0x6e, 0x5b, 0xa7, 0x6c, 0xff, + 0x1c, 0x88, 0x77, 0x63, 0x97, 0xa6, 0x6d, 0x2a, 0x10, 0x71, 0x1a, 0xa2, 0x94, 0x82, 0xc8, 0x82, + 0x08, 0xe2, 0x40, 0xb5, 0xb6, 0x07, 0x67, 0x89, 0xbd, 0xe3, 0xee, 0xce, 0x26, 0x75, 0xab, 0x5e, + 0x38, 0xf4, 0x86, 0x84, 0xc4, 0x19, 0x04, 0x12, 0xa7, 0x4a, 0xc0, 0xb5, 0x77, 0x2e, 0x11, 0xa7, + 0x4a, 0x70, 0xe0, 0x14, 0x50, 0x82, 0xc4, 0xbd, 0x47, 0x4e, 0x68, 0x67, 0x66, 0xd7, 0xbb, 0x89, + 0x13, 0xaf, 0x9d, 0x20, 0x71, 0xf2, 0xee, 0xcc, 0xfb, 0xde, 0x7b, 0xdf, 0x7b, 0x6f, 0xde, 0xbc, + 0x35, 0x8c, 0xaf, 0x7a, 0xb5, 0xb2, 0x69, 0x5b, 0x0f, 0x88, 0x6e, 0x9b, 0x75, 0xe2, 0x12, 0x67, + 0xd5, 0x2a, 0x13, 0x7d, 0x35, 0x5f, 0x22, 0xcc, 0xcc, 0xeb, 0xf7, 0x3c, 0xe2, 0x34, 0xb5, 0x86, + 0x43, 0x19, 0xc5, 0x67, 0x43, 0x51, 0x2d, 0x22, 0xaa, 0x49, 0x51, 0x45, 0xdf, 0x5b, 0x53, 0x14, + 0xc2, 0xf5, 0x29, 0x67, 0xaa, 0x94, 0x56, 0x6b, 0x44, 0x37, 0x1b, 0x96, 0x6e, 0xda, 0x36, 0x65, + 0x26, 0xb3, 0xa8, 0xed, 0xca, 0xdd, 0x57, 0xca, 0xd4, 0xad, 0x53, 0x57, 0x2f, 0x99, 0x2e, 0x11, + 0x6e, 0x84, 0xaa, 0x1a, 0x66, 0xd5, 0xb2, 0xb9, 0xb0, 0x94, 0x1d, 0xa9, 0xd2, 0x2a, 0xe5, 0x8f, + 0xba, 0xff, 0x24, 0x57, 0x33, 0x51, 0x0d, 0x01, 0xb6, 0x4c, 0x2d, 0x89, 0x52, 0x47, 0x00, 0x2f, + 0xfa, 0x7a, 0xdf, 0x33, 0x1d, 0xb3, 0xee, 0x1a, 0xe4, 0x9e, 0x47, 0x5c, 0xa6, 0x7e, 0x00, 0x2f, + 0xc5, 0x56, 0xdd, 0x06, 0xb5, 0x5d, 0x82, 0x5f, 0x87, 0xc1, 0x06, 0x5f, 0x19, 0x45, 0xe7, 0x50, + 0x36, 0x5d, 0xb8, 0xa8, 0xed, 0x19, 0x0d, 0x4d, 0xc2, 0x25, 0x48, 0xfd, 0x22, 0x05, 0x27, 0xb9, + 0xda, 0x3b, 0x96, 0xcb, 0x0c, 0x52, 0xa6, 0x4e, 0x25, 0xb0, 0x88, 0x2b, 0x00, 0x26, 0x63, 0x8e, + 0x55, 0xf2, 0x18, 0xf1, 0xd5, 0xa7, 0xb2, 0xe9, 0xc2, 0xad, 0x0e, 0xea, 0x77, 0xd1, 0xa5, 0xbd, + 0x4d, 0x9a, 0x1f, 0x9a, 0x35, 0x8f, 0x2c, 0xd8, 0x0d, 0x8f, 0x19, 0x11, 0xbd, 0xf8, 0x45, 0x48, + 0x99, 0xb5, 0xda, 0x68, 0xff, 0x39, 0x94, 0x3d, 0x62, 0xf8, 0x8f, 0xf8, 0x2d, 0x80, 0x56, 0x24, + 0x47, 0x53, 0x9c, 0xd6, 0x25, 0x4d, 0x04, 0x4d, 0xf3, 0x83, 0xa6, 0x89, 0xec, 0xb7, 0x28, 0x55, + 0x89, 0xb4, 0x63, 0x44, 0x90, 0xca, 0x14, 0x40, 0xcb, 0x26, 0x3e, 0x01, 0x83, 0x2e, 0x73, 0x2c, + 0xbb, 0xca, 0x03, 0x35, 0x64, 0xc8, 0x37, 0xdf, 0xbe, 0x65, 0x33, 0x6e, 0x3f, 0x65, 0xf8, 0x8f, + 0xca, 0x03, 0x38, 0x1a, 0x73, 0xd7, 0x17, 0x59, 0x21, 0x4d, 0x89, 0xf3, 0x1f, 0xf1, 0x12, 0x0c, + 0xac, 0xfa, 0xfb, 0x1c, 0x96, 0x2e, 0xcc, 0xf4, 0x18, 0x95, 0x48, 0x48, 0x84, 0x3e, 0xf5, 0x09, + 0x82, 0xd1, 0x9d, 0xd2, 0x32, 0xd7, 0x73, 0x70, 0xd8, 0x11, 0x4b, 0x32, 0x1b, 0x9d, 0x92, 0x2d, + 0x14, 0x14, 0x0f, 0xad, 0x6f, 0x8c, 0xf5, 0x19, 0x01, 0x16, 0xcf, 0xc7, 0xe2, 0x2b, 0x18, 0x5c, + 0xee, 0x18, 0x5f, 0xe1, 0x43, 0x34, 0xc0, 0x6a, 0x16, 0x4e, 0x70, 0x5f, 0xa5, 0x99, 0xe6, 0x42, + 0x25, 0x28, 0x9d, 0x61, 0xe8, 0xb7, 0x2a, 0x32, 0x60, 0xfd, 0x56, 0x45, 0xfd, 0x44, 0x56, 0x59, + 0x54, 0x52, 0x92, 0x9a, 0x85, 0x41, 0xe1, 0x58, 0xc2, 0x02, 0x8e, 0x71, 0x92, 0x50, 0x95, 0x81, + 0x12, 0xd3, 0x5f, 0xa4, 0x76, 0x65, 0x57, 0x6f, 0xb6, 0x15, 0x58, 0x7f, 0xaf, 0x05, 0xa6, 0xfe, + 0x80, 0xe0, 0x74, 0x5b, 0xb3, 0xff, 0xd3, 0x7c, 0x5d, 0x00, 0x75, 0x9e, 0xb0, 0x77, 0xcd, 0x3a, + 0x79, 0x5f, 0x18, 0x7e, 0x87, 0x56, 0xbc, 0x1a, 0x29, 0x9a, 0x35, 0xd3, 0x2e, 0x07, 0x0c, 0xd5, + 0x06, 0x9c, 0xdf, 0x53, 0x4a, 0x92, 0x5b, 0x80, 0x23, 0x25, 0xb1, 0x14, 0xb0, 0xcb, 0x75, 0x60, + 0x37, 0x53, 0x2e, 0x53, 0xcf, 0x66, 0x81, 0xa2, 0x10, 0xae, 0xfe, 0x8d, 0x60, 0x38, 0xbe, 0x89, + 0xef, 0xc0, 0x0b, 0xa6, 0x58, 0xb9, 0xeb, 0xab, 0x12, 0xc9, 0x2b, 0x8e, 0x3f, 0xdf, 0x18, 0xbb, + 0xf8, 0x99, 0x4b, 0xed, 0x69, 0x55, 0xee, 0xfa, 0x6e, 0xaa, 0xe7, 0x9a, 0x66, 0xbd, 0x16, 0x5f, + 0x32, 0xd2, 0x91, 0x37, 0xfc, 0x18, 0xc1, 0x61, 0x69, 0x6d, 0x34, 0xc5, 0x7d, 0x3d, 0x15, 0x8b, + 0x5f, 0xe0, 0xe1, 0x2c, 0xb5, 0xec, 0xe2, 0xa2, 0x1f, 0xfd, 0xe7, 0x1b, 0x63, 0x67, 0x85, 0x21, + 0x89, 0x0b, 0x8c, 0x04, 0xaf, 0x4f, 0xfe, 0x18, 0xcb, 0x56, 0x2d, 0xb6, 0xec, 0x95, 0xb4, 0x32, + 0xad, 0xeb, 0xb2, 0xa5, 0x8b, 0x9f, 0x9c, 0x5b, 0x59, 0xd1, 0x59, 0xb3, 0x41, 0x5c, 0xae, 0xd1, + 0x35, 0x02, 0xe3, 0x2a, 0x91, 0x05, 0xe3, 0x9f, 0x6e, 0xdf, 0xb3, 0x6d, 0x1d, 0x37, 0x5e, 0x98, + 0x68, 0x3f, 0x85, 0x79, 0xa6, 0xbd, 0x1d, 0x99, 0xbc, 0x5b, 0x30, 0xc0, 0x33, 0x24, 0x33, 0x97, + 0xed, 0x90, 0x39, 0x5f, 0xc5, 0x9c, 0xcd, 0x9c, 0xa6, 0x2c, 0x4d, 0x01, 0x3e, 0xb8, 0xc2, 0xbc, + 0x0c, 0xc7, 0xb9, 0xbb, 0x4b, 0xcb, 0xd4, 0x0a, 0x83, 0x81, 0xe1, 0x50, 0x2b, 0xf5, 0x06, 0x7f, + 0x56, 0xbf, 0x46, 0xf2, 0x6e, 0x94, 0x92, 0x92, 0xce, 0x63, 0x04, 0xc3, 0xfe, 0xfe, 0x5d, 0xd3, + 0x63, 0xcb, 0xd4, 0xb1, 0x58, 0x53, 0x06, 0x6f, 0x22, 0x01, 0xb1, 0x99, 0x00, 0x53, 0xcc, 0xcb, + 0xcc, 0x8f, 0x8b, 0xcc, 0xdb, 0xd1, 0xcd, 0x20, 0xff, 0xf1, 0x45, 0xe3, 0x68, 0xfc, 0x5d, 0x85, + 0x61, 0x11, 0x77, 0x4a, 0x57, 0xbc, 0xc6, 0x92, 0x63, 0xfb, 0x77, 0xc7, 0x9a, 0x63, 0x07, 0x77, + 0xc7, 0x9a, 0x63, 0xab, 0x4b, 0xb2, 0x6b, 0x86, 0x32, 0x91, 0xbb, 0xbc, 0xc5, 0x38, 0x5d, 0x18, + 0x4f, 0xe0, 0xbb, 0xc8, 0xab, 0x0c, 0xce, 0x79, 0x38, 0x26, 0xbb, 0x91, 0x4b, 0x6b, 0xab, 0xa4, + 0xbd, 0xf5, 0x8f, 0xc2, 0x4e, 0x1c, 0x08, 0x45, 0x47, 0x89, 0x1e, 0x3a, 0x71, 0xd8, 0x83, 0xcb, + 0x70, 0x8a, 0x6b, 0x9e, 0x27, 0xf2, 0xe2, 0x9a, 0xbb, 0xdf, 0xb0, 0x9c, 0xe6, 0xa2, 0x47, 0x3c, + 0x72, 0x60, 0x95, 0xfd, 0x14, 0xc1, 0xcb, 0xbb, 0x5a, 0x09, 0x99, 0xdc, 0xde, 0xde, 0x78, 0x27, + 0x3b, 0x50, 0x89, 0x29, 0xe1, 0xac, 0x0e, 0xbe, 0xfb, 0xde, 0x80, 0xe3, 0x3b, 0xcc, 0xec, 0xb8, + 0x9a, 0x46, 0x5a, 0x83, 0x45, 0x2a, 0x3b, 0x14, 0x4c, 0x05, 0x9f, 0xca, 0xe3, 0x3c, 0x4f, 0x58, + 0x58, 0x6b, 0xff, 0x45, 0x74, 0x7f, 0x46, 0x70, 0x61, 0x2f, 0x43, 0x61, 0x80, 0x0d, 0x48, 0x07, + 0x47, 0xcd, 0x22, 0xbd, 0x07, 0x39, 0xaa, 0xe4, 0xc0, 0x02, 0x5d, 0xf8, 0xe7, 0x18, 0x0c, 0x70, + 0x16, 0xf8, 0x1b, 0x04, 0x83, 0x62, 0xe0, 0xc5, 0xf9, 0x24, 0x23, 0x5a, 0x6c, 0xe2, 0x56, 0x0a, + 0xdd, 0x40, 0x84, 0x1f, 0x6a, 0xee, 0xf3, 0x5f, 0xff, 0xfa, 0xaa, 0xff, 0x32, 0xbe, 0xd8, 0xe1, + 0xab, 0x43, 0x8c, 0xdf, 0xf8, 0x47, 0x04, 0xe9, 0xc8, 0xa4, 0x87, 0xa7, 0x7a, 0x1b, 0x24, 0x95, + 0x6b, 0x5d, 0xe3, 0xa4, 0xbf, 0x1a, 0xf7, 0x37, 0x8b, 0x2f, 0x75, 0xf0, 0x37, 0x38, 0x0d, 0x3f, + 0x21, 0x18, 0x0a, 0x8f, 0x1e, 0xbe, 0x9a, 0xc4, 0xec, 0x8e, 0xe9, 0x50, 0x99, 0xea, 0x16, 0x26, + 0x9d, 0xbd, 0xc2, 0x9d, 0xcd, 0xe1, 0x57, 0x93, 0x39, 0xab, 0x3f, 0xb4, 0x2a, 0x8f, 0xf0, 0x2f, + 0x08, 0x8e, 0x87, 0x1e, 0x07, 0x23, 0x1a, 0xbe, 0xd1, 0x8d, 0x0b, 0xb1, 0x69, 0x52, 0x99, 0xee, + 0x05, 0x2a, 0x19, 0xbc, 0xc1, 0x19, 0x5c, 0xc7, 0x53, 0xc9, 0x18, 0xe4, 0x4a, 0xcd, 0x5c, 0x89, + 0xda, 0x95, 0x9c, 0x55, 0x11, 0x64, 0x7e, 0x43, 0x70, 0x7a, 0x8f, 0xe1, 0x0c, 0x77, 0xfa, 0x10, + 0xe9, 0x3c, 0xfe, 0x29, 0xc5, 0xfd, 0xa8, 0xe8, 0xb2, 0xaa, 0xe4, 0x58, 0x84, 0x9f, 0x22, 0x38, + 0xb6, 0x6d, 0x54, 0xc1, 0xd3, 0x49, 0x4b, 0x7a, 0xe7, 0x1c, 0xa5, 0xdc, 0xec, 0x09, 0x2b, 0x9d, + 0x9f, 0xe0, 0xce, 0x5f, 0xc2, 0x17, 0x92, 0xfc, 0x71, 0x80, 0xbf, 0x43, 0x30, 0xc0, 0x87, 0x11, + 0x3c, 0x99, 0xc4, 0x68, 0x74, 0xc2, 0x51, 0xf2, 0x5d, 0x20, 0xba, 0x3c, 0x02, 0x6b, 0x3e, 0x4a, + 0x7f, 0xe8, 0x6f, 0x3d, 0xc2, 0xdf, 0x22, 0x18, 0x6a, 0x4d, 0x24, 0xb9, 0x44, 0xc1, 0x09, 0xc4, + 0x95, 0xab, 0x5d, 0x89, 0x77, 0xdd, 0x08, 0x6b, 0x1c, 0x89, 0xbf, 0x47, 0x00, 0x91, 0xb9, 0x45, + 0x4b, 0x76, 0xc6, 0x02, 0xf9, 0xa4, 0x1d, 0x65, 0xfb, 0xc8, 0xd3, 0x45, 0xfb, 0xe3, 0x50, 0xbc, + 0x8e, 0x60, 0xa4, 0xed, 0x7c, 0x73, 0x3d, 0x89, 0x03, 0xed, 0x90, 0xca, 0x9b, 0xbd, 0x22, 0x43, + 0x12, 0xaf, 0x71, 0x12, 0x1a, 0x9e, 0x48, 0xd4, 0x54, 0x72, 0x84, 0xab, 0xf0, 0x5b, 0xc9, 0xc9, + 0xdd, 0xe6, 0x89, 0x9b, 0x09, 0x7d, 0x6a, 0x07, 0x56, 0x66, 0xf7, 0x01, 0x0e, 0x39, 0x5d, 0xe3, + 0x9c, 0xf2, 0x58, 0xef, 0xc0, 0x29, 0x1c, 0xf8, 0x25, 0xad, 0xe2, 0xed, 0xf5, 0xcd, 0x0c, 0x7a, + 0xb6, 0x99, 0x41, 0x7f, 0x6e, 0x66, 0xd0, 0x97, 0x5b, 0x99, 0xbe, 0x67, 0x5b, 0x99, 0xbe, 0xdf, + 0xb7, 0x32, 0x7d, 0x1f, 0x4f, 0x46, 0x3e, 0xd7, 0xd8, 0xb2, 0xe9, 0xb8, 0x96, 0xab, 0x13, 0xb6, + 0x4c, 0x9c, 0xba, 0x65, 0x33, 0xfd, 0x7e, 0x4c, 0x3d, 0xff, 0x78, 0x2b, 0x0d, 0xf2, 0xff, 0xe3, + 0xae, 0xfc, 0x1b, 0x00, 0x00, 0xff, 0xff, 0xa9, 0x7d, 0xf0, 0x84, 0x8c, 0x14, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -1952,7 +1960,17 @@ func (m *QueryListRecordsRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) i = encodeVarintQuery(dAtA, i, uint64(size)) } i-- - dAtA[i] = 0x12 + dAtA[i] = 0x1a + } + if m.All { + i-- + if m.All { + dAtA[i] = 1 + } else { + dAtA[i] = 0 + } + i-- + dAtA[i] = 0x10 } if len(m.Attributes) > 0 { for iNdEx := len(m.Attributes) - 1; iNdEx >= 0; iNdEx-- { @@ -2884,6 +2902,9 @@ func (m *QueryListRecordsRequest) Size() (n int) { n += 1 + l + sovQuery(uint64(l)) } } + if m.All { + n += 2 + } if m.Pagination != nil { l = m.Pagination.Size() n += 1 + l + sovQuery(uint64(l)) @@ -3443,6 +3464,26 @@ func (m *QueryListRecordsRequest) Unmarshal(dAtA []byte) error { } iNdEx = postIndex case 2: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field All", wireType) + } + var v int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowQuery + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.All = bool(v != 0) + case 3: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Pagination", wireType) } diff --git a/x/nameservice/types/types.go b/x/nameservice/types/types.go index db8f6537..f60b0cea 100644 --- a/x/nameservice/types/types.go +++ b/x/nameservice/types/types.go @@ -56,6 +56,7 @@ func (r *Record) ToRecordType() RecordType { resourceObj.ExpiryTime = r.ExpiryTime resourceObj.Deleted = r.Deleted resourceObj.Owners = r.Owners + resourceObj.Names = r.Names resourceObj.Attributes = helpers.UnMarshalMapFromJSONBytes(helpers.BytesFromBase64(r.Attributes)) return resourceObj